diff --git a/.cursor/rules/graphify.mdc b/.cursor/rules/graphify.mdc new file mode 100644 index 000000000..35471a932 --- /dev/null +++ b/.cursor/rules/graphify.mdc @@ -0,0 +1,21 @@ +--- +description: graphify knowledge graph context +alwaysApply: true +--- + +This project has a graphify knowledge graph at graphify-out/. + +**MANDATORY: Before using Read, Grep, Glob, or Bash to explore the codebase, you MUST run graphify first:** +- `graphify query ""` — scoped subgraph for any codebase or architecture question +- `graphify path "" ""` — dependency path between two symbols +- `graphify explain ""` — all nodes related to a concept + +This applies to YOU and to every subagent you spawn. Include this rule explicitly in every subagent prompt that involves code exploration. Do not skip graphify because files are "already known" or because you are executing a plan — the graph surfaces cross-file dependencies and INFERRED edges that grep and Read cannot find. + +Only use Read/Grep/Glob directly when: +1. graphify has already oriented you and you need to modify or debug specific lines +2. `graphify-out/graph.json` does not exist yet + +- If `graphify-out/wiki/index.md` exists, navigate it instead of reading raw files +- Read `graphify-out/GRAPH_REPORT.md` only for broad architecture review when query/path/explain do not surface enough context +- After modifying code files, run `graphify update .` to keep the graph current (AST-only, no API cost) diff --git a/.gitignore b/.gitignore index 15c294348..43f06d908 100644 --- a/.gitignore +++ b/.gitignore @@ -40,3 +40,11 @@ code/packages/ingestion-core/src/*.js # Chromium extension Vite outDir (versioned per release, e.g. build55647) code/apps/extension-chromium/build*/ + +# graphify local/runtime sidecars (graph.json + report are committed) +graphify-out/cost.json +graphify-out/.graphify_python +graphify-out/.graphify_root +graphify-out/.needs_update +# AST cache lands under the scan root (code/); keep local only +code/graphify-out/ diff --git a/.graphifyignore b/.graphifyignore new file mode 100644 index 000000000..be9b31c08 --- /dev/null +++ b/.graphifyignore @@ -0,0 +1,34 @@ +# Initial graphify pass: codebase AST only. +# PDFs and documentation are excluded; add selectively later with /graphify --update. +*.pdf +**/*.pdf +*.md +**/*.md +*.mdx +**/*.mdx +*.txt +**/*.txt +*.html +**/*.html +*.rst +**/*.rst +*.qmd +**/*.qmd +*.yaml +**/*.yaml +*.yml +**/*.yml +*.png +**/*.png +*.jpg +**/*.jpg +*.jpeg +**/*.jpeg +*.webp +**/*.webp +*.gif +**/*.gif +*.svg +**/*.svg +**/THIRD_PARTY_LICENSES/** +**/docs/** diff --git a/code/.graphifyignore b/code/.graphifyignore new file mode 100644 index 000000000..be9b31c08 --- /dev/null +++ b/code/.graphifyignore @@ -0,0 +1,34 @@ +# Initial graphify pass: codebase AST only. +# PDFs and documentation are excluded; add selectively later with /graphify --update. +*.pdf +**/*.pdf +*.md +**/*.md +*.mdx +**/*.mdx +*.txt +**/*.txt +*.html +**/*.html +*.rst +**/*.rst +*.qmd +**/*.qmd +*.yaml +**/*.yaml +*.yml +**/*.yml +*.png +**/*.png +*.jpg +**/*.jpg +*.jpeg +**/*.jpeg +*.webp +**/*.webp +*.gif +**/*.gif +*.svg +**/*.svg +**/THIRD_PARTY_LICENSES/** +**/docs/** diff --git a/code/apps/electron-vite-project/electron/main/handshake/__tests__/internalSandboxesApi.canonicalRoles.regression.test.ts b/code/apps/electron-vite-project/electron/main/handshake/__tests__/internalSandboxesApi.canonicalRoles.regression.test.ts new file mode 100644 index 000000000..e2a5e85d8 --- /dev/null +++ b/code/apps/electron-vite-project/electron/main/handshake/__tests__/internalSandboxesApi.canonicalRoles.regression.test.ts @@ -0,0 +1,138 @@ +/** + * Regression: internalSandboxesApi Host/Sandbox decisions must use + * deriveInternalHostAiPeerRoles + assertRecordForServiceRpc, not local_role. + */ + +import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest' +import { HandshakeState, type HandshakeRecord, type SSOSession } from '../types' +import { + computeAuthoritativeDeviceInternalRole, + isEligibleActiveInternalHostSandboxRecord, +} from '../internalSandboxesApi' +import { localDeviceRole } from '../../internalInference/policy' +import { createHandshakeTestDb } from './handshakeTestDb' +import { insertHandshakeRecord } from '../db' +import { mockKeypairFields } from './mockKeypair' + +const getInstanceIdMock = vi.hoisted(() => vi.fn(() => 'dev-host-1')) +vi.mock('../../orchestrator/orchestratorModeStore', async (importOriginal) => { + const a = await importOriginal() + return { ...a, getInstanceId: () => getInstanceIdMock() } +}) + +const session: SSOSession = { + wrdesk_user_id: 'user-a', + email: 'a@example.com', + iss: 'https://id.example', + sub: 'sub-a', + email_verified: true, + plan: 'free', + currentHardwareAttestation: null, + currentDnsVerification: null, + currentWrStampStatus: null, + session_expires_at: new Date(Date.now() + 3600_000).toISOString(), +} + +function hostSandboxRow(overrides: Partial = {}): HandshakeRecord { + return { + handshake_id: 'hs-canon-1', + relationship_id: 'rel-1', + state: HandshakeState.ACTIVE, + handshake_type: 'internal', + // Misleading local_role view: claims initiator/host while this machine may be sandbox. + local_role: 'initiator', + initiator_device_role: 'host', + acceptor_device_role: 'sandbox', + initiator_coordination_device_id: 'dev-host-1', + acceptor_coordination_device_id: 'dev-sand-1', + internal_coordination_identity_complete: true, + p2p_endpoint: 'https://coord.example/beap', + local_x25519_public_key_b64: 'dGVzdC1sb2NhbC14MjU1MTktcHViLWtleQ==', + peer_x25519_public_key_b64: 'cGVlci14MjU1MTk=', + peer_mlkem768_public_key_b64: 'cGVlci1tbGtlbQ==', + initiator: { + email: 'a@example.com', + wrdesk_user_id: 'user-a', + iss: 'https://id.example', + sub: 'sub-a', + }, + acceptor: { + email: 'a@example.com', + wrdesk_user_id: 'user-a', + iss: 'https://id.example', + sub: 'sub-a', + }, + created_at: new Date().toISOString(), + activated_at: new Date().toISOString(), + sharing_mode: null, + reciprocal_allowed: true, + tier_snapshot: {} as any, + current_tier_signals: {} as any, + last_seq_sent: 0, + last_seq_received: 0, + last_capsule_hash_sent: '', + last_capsule_hash_received: '', + effective_policy: {} as any, + external_processing: 'none', + expires_at: null, + revoked_at: null, + revocation_source: null, + initiator_wrdesk_policy_hash: '', + initiator_wrdesk_policy_version: '1', + acceptor_wrdesk_policy_hash: null, + acceptor_wrdesk_policy_version: null, + initiator_context_commitment: null, + acceptor_context_commitment: null, + ...mockKeypairFields(), + ...overrides, + } as HandshakeRecord +} + +describe('internalSandboxesApi canonical Host-AI roles', () => { + let db: ReturnType + + beforeEach(() => { + db = createHandshakeTestDb() + getInstanceIdMock.mockReturnValue('dev-host-1') + }) + + afterEach(() => { + getInstanceIdMock.mockReturnValue('dev-host-1') + }) + + it('local_role host view must not make sandbox instance clone-eligible', () => { + getInstanceIdMock.mockReturnValue('dev-sand-1') + const rec = hostSandboxRow() + // Precondition: weaker local_role helper would still say "host". + expect(localDeviceRole(rec)).toBe('host') + expect(isEligibleActiveInternalHostSandboxRecord(rec, session)).toBe(false) + }) + + it('authoritative role uses coordination ids — sandbox instance is sandbox despite local_role', () => { + getInstanceIdMock.mockReturnValue('dev-sand-1') + insertHandshakeRecord(db, hostSandboxRow({ local_role: 'initiator' })) + expect(computeAuthoritativeDeviceInternalRole(db, session)).toBe('sandbox') + }) + + it('isEligible true for host instance even if local_role claims acceptor', () => { + getInstanceIdMock.mockReturnValue('dev-host-1') + const rec = hostSandboxRow({ + // Wrong per-device view: acceptor would map local_role helper to sandbox. + local_role: 'acceptor', + }) + expect(localDeviceRole(rec)).toBe('sandbox') + expect(isEligibleActiveInternalHostSandboxRecord(rec, session)).toBe(true) + }) + + it('authoritative role is host when coordination id matches host device', () => { + getInstanceIdMock.mockReturnValue('dev-host-1') + insertHandshakeRecord(db, hostSandboxRow({ local_role: 'acceptor' })) + expect(computeAuthoritativeDeviceInternalRole(db, session)).toBe('host') + }) + + it('service-RPC ineligible (identity incomplete) fails even when roles derive as host', () => { + getInstanceIdMock.mockReturnValue('dev-host-1') + const rec = hostSandboxRow({ internal_coordination_identity_complete: false }) + expect(isEligibleActiveInternalHostSandboxRecord(rec, session)).toBe(false) + }) +}) diff --git a/code/apps/electron-vite-project/electron/main/handshake/__tests__/ipc.rowSessionAuth.regression.test.ts b/code/apps/electron-vite-project/electron/main/handshake/__tests__/ipc.rowSessionAuth.regression.test.ts new file mode 100644 index 000000000..751fba5aa --- /dev/null +++ b/code/apps/electron-vite-project/electron/main/handshake/__tests__/ipc.rowSessionAuth.regression.test.ts @@ -0,0 +1,141 @@ +/** + * Regression: handshake.get / queryStatus / delete must apply row-level + * session visibility (same rules as handshake.list). Unauthorized or + * unauthenticated callers fail closed as HANDSHAKE_NOT_FOUND. + */ + +import { describe, test, expect, beforeEach } from 'vitest' +import { + handleHandshakeRPC, + setSSOSessionProvider, + _resetSSOSessionProvider, +} from '../ipc' +import { buildTestSession } from '../sessionFactory' +import { createHandshakeTestDb } from './handshakeTestDb' +import { migrateIngestionTables } from '../../ingestion/persistenceDb' +import { insertHandshakeRecord, getHandshakeRecord } from '../db' +import { mockKeypairFields } from './mockKeypair' +import { ReasonCode, type HandshakeRecord, type SSOSession } from '../types' + +const ISS = 'https://auth.optimando.ai' + +function partySession(user: 'a' | 'b' | 'c'): SSOSession { + return buildTestSession({ + wrdesk_user_id: `user-${user}`, + email: `${user}@test.com`, + sub: `sub-${user}`, + iss: ISS, + }) +} + +function standardHandshake(handshakeId: string): HandshakeRecord { + return { + handshake_id: handshakeId, + relationship_id: 'rel-row-auth', + state: 'ACTIVE', + handshake_type: 'standard', + initiator: { + wrdesk_user_id: 'user-a', + email: 'a@test.com', + iss: ISS, + sub: 'sub-a', + email_verified: true, + }, + acceptor: { + wrdesk_user_id: 'user-b', + email: 'b@test.com', + iss: ISS, + sub: 'sub-b', + email_verified: true, + }, + local_role: 'initiator', + sharing_mode: 'reciprocal', + reciprocal_allowed: true, + tier_snapshot: { plan: 'free' }, + current_tier_signals: {}, + last_seq_sent: 0, + last_seq_received: 0, + last_capsule_hash_sent: '', + last_capsule_hash_received: '', + effective_policy: {}, + external_processing: 'none', + created_at: new Date().toISOString(), + initiator_wrdesk_policy_hash: '', + initiator_wrdesk_policy_version: '1.0', + ...mockKeypairFields(), + } as HandshakeRecord +} + +describe('handshake IPC row-level session authorization', () => { + let db: ReturnType + + beforeEach(() => { + db = createHandshakeTestDb() + migrateIngestionTables(db) + _resetSSOSessionProvider() + insertHandshakeRecord(db, standardHandshake('hs-row-1')) + }) + + test('party session can get / queryStatus the row', async () => { + setSSOSessionProvider(() => partySession('a')) + const get = await handleHandshakeRPC('handshake.get', { handshake_id: 'hs-row-1' }, db) + expect(get.error).toBeUndefined() + expect(get.record?.handshake_id).toBe('hs-row-1') + + const status = await handleHandshakeRPC('handshake.queryStatus', { handshakeId: 'hs-row-1' }, db) + expect(status.reason).toBe(ReasonCode.OK) + expect(status.record?.handshake_id).toBe('hs-row-1') + }) + + test('unrelated session cannot get / queryStatus / delete (fail-closed NOT_FOUND)', async () => { + setSSOSessionProvider(() => partySession('c')) + + const get = await handleHandshakeRPC('handshake.get', { handshake_id: 'hs-row-1' }, db) + expect(get.error).toBe('Handshake not found') + expect(get.reason).toBe(ReasonCode.HANDSHAKE_NOT_FOUND) + expect(get.record).toBeUndefined() + + const status = await handleHandshakeRPC('handshake.queryStatus', { handshakeId: 'hs-row-1' }, db) + expect(status.reason).toBe(ReasonCode.HANDSHAKE_NOT_FOUND) + expect(status.record).toBeNull() + + const del = await handleHandshakeRPC('handshake.delete', { handshakeId: 'hs-row-1' }, db) + expect(del.success).toBe(false) + expect(del.reason).toBe(ReasonCode.HANDSHAKE_NOT_FOUND) + expect(getHandshakeRecord(db, 'hs-row-1')).not.toBeNull() + }) + + test('no SSO session cannot get / queryStatus / delete (fail-closed NOT_FOUND)', async () => { + _resetSSOSessionProvider() + + const get = await handleHandshakeRPC('handshake.get', { handshake_id: 'hs-row-1' }, db) + expect(get.reason).toBe(ReasonCode.HANDSHAKE_NOT_FOUND) + + const status = await handleHandshakeRPC('handshake.queryStatus', { handshakeId: 'hs-row-1' }, db) + expect(status.reason).toBe(ReasonCode.HANDSHAKE_NOT_FOUND) + expect(status.record).toBeNull() + + const del = await handleHandshakeRPC('handshake.delete', { handshakeId: 'hs-row-1' }, db) + expect(del.success).toBe(false) + expect(del.reason).toBe(ReasonCode.HANDSHAKE_NOT_FOUND) + expect(getHandshakeRecord(db, 'hs-row-1')).not.toBeNull() + }) + + test('party session can delete a revoked row after visibility check', async () => { + // deleteHandshakeRecord only allows REVOKED / EXPIRED / own PENDING_ACCEPT. + insertHandshakeRecord(db, { ...standardHandshake('hs-row-revoked'), state: 'REVOKED' }) + setSSOSessionProvider(() => partySession('b')) + const del = await handleHandshakeRPC('handshake.delete', { handshakeId: 'hs-row-revoked' }, db) + expect(del.success).toBe(true) + expect(del.reason).not.toBe(ReasonCode.HANDSHAKE_NOT_FOUND) + }) + + test('authorized party on ACTIVE gets delete policy error, not NOT_FOUND leak', async () => { + setSSOSessionProvider(() => partySession('a')) + const del = await handleHandshakeRPC('handshake.delete', { handshakeId: 'hs-row-1' }, db) + expect(del.success).toBe(false) + expect(del.reason).not.toBe(ReasonCode.HANDSHAKE_NOT_FOUND) + expect(String(del.error || '')).toMatch(/revoked|expired|pending/i) + expect(getHandshakeRecord(db, 'hs-row-1')).not.toBeNull() + }) +}) diff --git a/code/apps/electron-vite-project/electron/main/handshake/__tests__/regressionMatrix.relayHandshakeSandbox.test.ts b/code/apps/electron-vite-project/electron/main/handshake/__tests__/regressionMatrix.relayHandshakeSandbox.test.ts index 7ce1ca2c9..86cacb72c 100644 --- a/code/apps/electron-vite-project/electron/main/handshake/__tests__/regressionMatrix.relayHandshakeSandbox.test.ts +++ b/code/apps/electron-vite-project/electron/main/handshake/__tests__/regressionMatrix.relayHandshakeSandbox.test.ts @@ -16,7 +16,7 @@ * Constraints: no tests here mutate X25519/ML-KEM agreement, ACTIVE gate invariants, or accept/build capsule crypto. */ -import { describe, test, expect } from 'vitest' +import { describe, test, expect, vi } from 'vitest' import { mapSendResultToQueueOutcome, type SendCapsuleSuccessShape, @@ -30,6 +30,11 @@ import { getNextStateAfterInboundContextSync } from '../contextSyncActiveGate' import { assertVaultOwnerMatchesSession, VAULT_ACCOUNT_ERROR } from '../../vault/vaultOwnerIdentity' import { extractBeapRedirectSourceFromRow } from '../../email/beapRedirectSource' +vi.mock('../../orchestrator/orchestratorModeStore', async (importOriginal) => { + const a = await importOriginal() + return { ...a, getInstanceId: () => 'dev-host-1' } +}) + const sessionUserA: SSOSession = { wrdesk_user_id: 'user-a', email: 'a@example.com', @@ -58,12 +63,24 @@ function baseInternalHostSandboxRecord(overrides: Partial = {}) local_role: 'initiator', initiator_device_role: 'host', acceptor_device_role: 'sandbox', + initiator_coordination_device_id: 'dev-host-1', + acceptor_coordination_device_id: 'dev-sand-1', internal_coordination_identity_complete: true, p2p_endpoint: 'https://coord.example/beap', local_x25519_public_key_b64: 'dGVzdC1sb2NhbC14MjU1MTktcHViLWtleQ==', relationship_id: 'rel-1', - initiator: { email: 'a@example.com', wrdesk_user_id: 'user-a' }, - acceptor: { email: 'a@example.com', wrdesk_user_id: 'user-a' }, + initiator: { + email: 'a@example.com', + wrdesk_user_id: 'user-a', + iss: 'https://id.example', + sub: 'sub-a', + }, + acceptor: { + email: 'a@example.com', + wrdesk_user_id: 'user-a', + iss: 'https://id.example', + sub: 'sub-a', + }, ...overrides, } as HandshakeRecord } diff --git a/code/apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts b/code/apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts index f5716084c..1518c7c00 100644 --- a/code/apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts +++ b/code/apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts @@ -7,6 +7,11 @@ import { listHandshakeRecords } from './db' import { getQueueStatus } from './outboundQueue' import { getP2PHealth } from '../p2p/p2pHealth' import { handshakeRowVisibilityForSession } from './handshakeAccountIsolation' +import { getInstanceId } from '../orchestrator/orchestratorModeStore' +import { + assertRecordForServiceRpc, + deriveInternalHostAiPeerRoles, +} from '../internalInference/policy' import { HandshakeState, type HandshakeRecord, type SSOSession } from './types' /** P2P-ingested inbox rows (no IMAP `account_id`); see `beapEmailIngestion`. */ @@ -121,11 +126,18 @@ function sessionIsPartyOnVisibleHandshakeRow(record: HandshakeRecord, session: S return handshakeRowVisibilityForSession(record, session).ok } +/** + * Canonical Host-AI role mapping (coordination device ids), not `local_role`. + * `local_role` is a per-device view that can disagree with the ledger. + */ +function derivedHostAiRoles(record: HandshakeRecord) { + return deriveInternalHostAiPeerRoles(record, getInstanceId().trim()) +} + +/** This device is Host and peer is Sandbox per {@link deriveInternalHostAiPeerRoles}. */ function isLocalHostPeerSandbox(record: HandshakeRecord): boolean { - if (record.local_role === 'initiator') { - return record.initiator_device_role === 'host' && record.acceptor_device_role === 'sandbox' - } - return record.acceptor_device_role === 'host' && record.initiator_device_role === 'sandbox' + const dr = derivedHostAiRoles(record) + return dr.ok && dr.localRole === 'host' && dr.peerRole === 'sandbox' } /** @@ -133,23 +145,27 @@ function isLocalHostPeerSandbox(record: HandshakeRecord): boolean { * Used to suppress Host-only Sandbox UI even when `orchestratorMode` is mis-set to "host". */ function isLocalSandboxPeerHost(record: HandshakeRecord): boolean { - if (record.local_role === 'initiator') { - return record.initiator_device_role === 'sandbox' && record.acceptor_device_role === 'host' - } - return record.acceptor_device_role === 'sandbox' && record.initiator_device_role === 'host' + const dr = derivedHostAiRoles(record) + return dr.ok && dr.localRole === 'sandbox' && dr.peerRole === 'host' } function peerCoordinationOrLegacyId(record: HandshakeRecord): string { - if (record.local_role === 'initiator') { - return normId(record.acceptor_coordination_device_id) || record.internal_peer_device_id?.trim() || 'unknown / pending repair' + const dr = derivedHostAiRoles(record) + if (dr.ok && dr.peerCoordinationDeviceId) { + return dr.peerCoordinationDeviceId } - return normId(record.initiator_coordination_device_id) || record.internal_peer_device_id?.trim() || 'unknown / pending repair' + return record.internal_peer_device_id?.trim() || 'unknown / pending repair' } function peerDeviceName(record: HandshakeRecord): string | null { - const n = - record.local_role === 'initiator' ? record.acceptor_device_name : record.initiator_device_name - return n?.trim() || null + const dr = derivedHostAiRoles(record) + if (dr.ok) { + const peerIsAcceptor = + normId(record.acceptor_coordination_device_id) === dr.peerCoordinationDeviceId + const n = peerIsAcceptor ? record.acceptor_device_name : record.initiator_device_name + return n?.trim() || null + } + return null } function deriveDeliveryStatus(db: any, handshakeId: string): InternalSandboxListEntry['last_known_delivery_status'] { @@ -199,17 +215,17 @@ export function isBeapCloneEligibleForRecord( /** * Exported for `beapInbox` sandbox clone: ACTIVE internal host↔sandbox, same account, identity complete. + * Uses {@link assertRecordForServiceRpc} + canonical role derive (not `local_role`). */ export function isEligibleActiveInternalHostSandboxRecord( record: HandshakeRecord, session: SSOSession, ): boolean { - if (record.state !== HandshakeState.ACTIVE) return false - if (record.handshake_type !== 'internal') return false if (!sessionIsPartyOnVisibleHandshakeRow(record, session)) return false - if (!isLocalHostPeerSandbox(record)) return false - if (!record.internal_coordination_identity_complete) return false - return true + const ar = assertRecordForServiceRpc(record) + if (!ar.ok) return false + const dr = deriveInternalHostAiPeerRoles(ar.record, getInstanceId().trim()) + return dr.ok && dr.localRole === 'host' && dr.peerRole === 'sandbox' } /** diff --git a/code/apps/electron-vite-project/electron/main/handshake/ipc.ts b/code/apps/electron-vite-project/electron/main/handshake/ipc.ts index ca25f8fa8..6e1134665 100644 --- a/code/apps/electron-vite-project/electron/main/handshake/ipc.ts +++ b/code/apps/electron-vite-project/electron/main/handshake/ipc.ts @@ -99,7 +99,10 @@ import { getPairingCode as getOrchestratorPairingCode, } from '../orchestrator/orchestratorModeStore' import { safeFingerprint } from '../security/cryptoFingerprint' -import { filterHandshakeRecordsForCurrentSession } from './handshakeAccountIsolation' +import { + filterHandshakeRecordsForCurrentSession, + handshakeRowVisibilityForSession, +} from './handshakeAccountIsolation' /** Set `WR_P2P_SEND_KEY_DIAG=1` to log legacy key-substring diagnostics (default: fingerprint-only on errors). */ const P2P_SEND_KEY_DIAG = process.env.WR_P2P_SEND_KEY_DIAG === '1' @@ -697,6 +700,21 @@ function getCounterpartyEmail(record: HandshakeRecord, session: SSOSession): str return record.initiator.email } +/** + * Row-level session authorization for single-handshake IPC reads/deletes. + * Fail closed (treat as not found) when there is no SSO session or the session + * is not a visible party on the row — same rules as handshake.list filtering. + */ +function assertRecordVisibleToCurrentSession( + record: HandshakeRecord | null | undefined, +): { ok: true; record: HandshakeRecord } | { ok: false } { + if (!record) return { ok: false } + const session = getCurrentSession() + if (!session) return { ok: false } + if (!handshakeRowVisibilityForSession(record, session).ok) return { ok: false } + return { ok: true, record } +} + export async function handleHandshakeRPC( method: string, params: any, @@ -704,20 +722,22 @@ export async function handleHandshakeRPC( ): Promise { switch (method) { case 'handshake.queryStatus': { - const record = getHandshakeRecord(db, params.handshakeId) + const raw = getHandshakeRecord(db, params.handshakeId) + const gated = assertRecordVisibleToCurrentSession(raw) return { type: 'handshake-status', - record: record ?? null, - reason: record ? ReasonCode.OK : ReasonCode.HANDSHAKE_NOT_FOUND, + record: gated.ok ? gated.record : null, + reason: gated.ok ? ReasonCode.OK : ReasonCode.HANDSHAKE_NOT_FOUND, } } case 'handshake.get': { const { handshake_id } = params as { handshake_id: string } if (!handshake_id) return { error: 'handshake_id is required' } - const record = getHandshakeRecord(db, handshake_id) - if (!record) return { error: 'Handshake not found', reason: ReasonCode.HANDSHAKE_NOT_FOUND } - return { record } + const raw = getHandshakeRecord(db, handshake_id) + const gated = assertRecordVisibleToCurrentSession(raw) + if (!gated.ok) return { error: 'Handshake not found', reason: ReasonCode.HANDSHAKE_NOT_FOUND } + return { record: gated.record } } case 'handshake.getPendingP2PBeapMessages': { @@ -901,6 +921,11 @@ export async function handleHandshakeRPC( case 'handshake.delete': { const { handshakeId } = params as { handshakeId: string } if (!handshakeId) return { success: false, error: 'handshakeId is required' } + const raw = getHandshakeRecord(db, handshakeId) + const gated = assertRecordVisibleToCurrentSession(raw) + if (!gated.ok) { + return { success: false, error: 'Handshake not found', reason: ReasonCode.HANDSHAKE_NOT_FOUND } + } const result = deleteHandshakeRecord(db, handshakeId) return result.success ? { success: true } : { success: false, error: result.error } } diff --git a/code/apps/electron-vite-project/electron/main/internalInference/__tests__/p2pDcCapabilities.sandboxServiceRpc.regression.test.ts b/code/apps/electron-vite-project/electron/main/internalInference/__tests__/p2pDcCapabilities.sandboxServiceRpc.regression.test.ts new file mode 100644 index 000000000..36fc99ec3 --- /dev/null +++ b/code/apps/electron-vite-project/electron/main/internalInference/__tests__/p2pDcCapabilities.sandboxServiceRpc.regression.test.ts @@ -0,0 +1,174 @@ +/** + * Regression: sandbox inbound capabilities responses must pass + * assertRecordForServiceRpc (not role-derive alone). + */ + +import { afterEach, describe, expect, it, vi } from 'vitest' +import { HandshakeState, type HandshakeRecord, type PartyIdentity } from '../../handshake/types' +import { + clearPendingP2pCapabilitiesForTests, + handleP2pDcInferenceCapabilitiesAsSandbox, +} from '../p2pDc/p2pDcCapabilities' + +vi.mock('electron', () => ({ + app: { getPath: () => '/tmp/p2p-caps-sandbox-rpc', getAppPath: () => '/tmp' }, +})) + +const getInstanceIdMock = vi.hoisted(() => vi.fn(() => 'dev-sand-1')) +vi.mock('../../orchestrator/orchestratorModeStore', async (importOriginal) => { + const a = await importOriginal() + return { ...a, getInstanceId: () => getInstanceIdMock() } +}) + +const getHandshakeRecordMock = vi.hoisted(() => vi.fn()) +vi.mock('../../handshake/db', () => ({ + getHandshakeRecord: (...a: unknown[]) => getHandshakeRecordMock(...a), +})) + +const getLedgerDbMock = vi.hoisted(() => vi.fn(() => ({ _ledger: true }))) +vi.mock('../../handshake/ledger', () => ({ + getLedgerDb: () => getLedgerDbMock(), +})) + +vi.mock('../p2pSession/p2pInferenceSessionManager', () => ({ + getSessionState: () => null, +})) + +function party(uid = 'u1'): PartyIdentity { + return { email: 'a@a.com', wrdesk_user_id: uid, iss: 'i', sub: 's' } +} + +/** Coordination ids map local instance to sandbox; derive alone would accept. */ +function sandboxLedgerRow(overrides: Partial = {}): HandshakeRecord { + return { + handshake_id: 'hs-caps-1', + relationship_id: 'r', + state: HandshakeState.ACTIVE, + local_role: 'initiator', + initiator: party(), + acceptor: party(), + sharing_mode: null, + reciprocal_allowed: true, + tier_snapshot: {} as any, + current_tier_signals: {} as any, + last_seq_sent: 0, + last_seq_received: 0, + last_capsule_hash_sent: 'a', + last_capsule_hash_received: 'b', + effective_policy: {} as any, + external_processing: 'none' as any, + created_at: '2020-01-01', + activated_at: '2020-01-01', + expires_at: null, + revoked_at: null, + revocation_source: null, + initiator_wrdesk_policy_hash: 'h', + initiator_wrdesk_policy_version: '1', + acceptor_wrdesk_policy_hash: null, + acceptor_wrdesk_policy_version: null, + initiator_context_commitment: null, + acceptor_context_commitment: null, + initiator_device_role: 'sandbox', + acceptor_device_role: 'host', + initiator_device_name: 'S', + acceptor_device_name: 'H', + initiator_coordination_device_id: 'dev-sand-1', + acceptor_coordination_device_id: 'dev-host-1', + internal_coordination_identity_complete: true, + handshake_type: 'internal', + p2p_endpoint: 'https://relay.example/beap/x', + ...overrides, + } as HandshakeRecord +} + +describe('handleP2pDcInferenceCapabilitiesAsSandbox — service-RPC eligibility', () => { + afterEach(() => { + clearPendingP2pCapabilitiesForTests() + vi.clearAllMocks() + getInstanceIdMock.mockReturnValue('dev-sand-1') + getLedgerDbMock.mockReturnValue({ _ledger: true }) + }) + + it('rejects when ledger role would be sandbox but assertRecordForServiceRpc fails (not ACTIVE)', () => { + const log = vi.spyOn(console, 'log').mockImplementation(() => {}) + getHandshakeRecordMock.mockReturnValue( + sandboxLedgerRow({ state: HandshakeState.ACCEPTED }), + ) + const consumed = handleP2pDcInferenceCapabilitiesAsSandbox('sid-1', 'hs-caps-1', { + type: 'inference_capabilities_result', + request_id: 'r1', + handshake_id: 'hs-caps-1', + session_id: 'sid-1', + models: [], + }) + expect(consumed).toBe(false) + const reject = log.mock.calls + .map((c) => String(c[0])) + .find((line) => line.includes('HOST_AI_CAPS_RESPONSE_REJECT') && line.includes('service_rpc_ineligible')) + expect(reject).toBeTruthy() + log.mockRestore() + }) + + it('rejects when identity incomplete even if coordination ids map to sandbox', () => { + const log = vi.spyOn(console, 'log').mockImplementation(() => {}) + getHandshakeRecordMock.mockReturnValue( + sandboxLedgerRow({ internal_coordination_identity_complete: false }), + ) + const consumed = handleP2pDcInferenceCapabilitiesAsSandbox('sid-1', 'hs-caps-1', { + type: 'inference_error', + request_id: 'r2', + handshake_id: 'hs-caps-1', + session_id: 'sid-1', + code: 'x', + }) + expect(consumed).toBe(false) + const reject = log.mock.calls + .map((c) => String(c[0])) + .find((line) => line.includes('service_rpc_ineligible')) + expect(reject).toBeTruthy() + log.mockRestore() + }) + + it('rejects cross-principal internal rows (service RPC ineligible)', () => { + const log = vi.spyOn(console, 'log').mockImplementation(() => {}) + getHandshakeRecordMock.mockReturnValue( + sandboxLedgerRow({ + initiator: party('u1'), + acceptor: party('u2'), + }), + ) + const consumed = handleP2pDcInferenceCapabilitiesAsSandbox('sid-1', 'hs-caps-1', { + type: 'inference_capabilities_result', + request_id: 'r3', + handshake_id: 'hs-caps-1', + session_id: 'sid-1', + models: [], + }) + expect(consumed).toBe(false) + expect( + log.mock.calls.some((c) => String(c[0]).includes('service_rpc_ineligible')), + ).toBe(true) + log.mockRestore() + }) + + it('passes service-RPC gate for eligible sandbox (does not reject as service_rpc_ineligible)', () => { + const log = vi.spyOn(console, 'log').mockImplementation(() => {}) + getHandshakeRecordMock.mockReturnValue(sandboxLedgerRow()) + // No pending correlation → still false, but must not be service_rpc_ineligible. + const consumed = handleP2pDcInferenceCapabilitiesAsSandbox('sid-1', 'hs-caps-1', { + type: 'inference_error', + request_id: 'missing-pending', + handshake_id: 'hs-caps-1', + session_id: 'sid-1', + code: 'x', + }) + expect(consumed).toBe(false) + expect( + log.mock.calls.some((c) => String(c[0]).includes('service_rpc_ineligible')), + ).toBe(false) + expect( + log.mock.calls.some((c) => String(c[0]).includes('no_pending_or_unknown_correlation')), + ).toBe(true) + log.mockRestore() + }) +}) diff --git a/code/apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts b/code/apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts index 784ac8ba2..a669a11c3 100644 --- a/code/apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts +++ b/code/apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts @@ -743,7 +743,25 @@ export function handleP2pDcInferenceCapabilitiesAsSandbox( ) return false } - const sdr = deriveInternalHostAiPeerRoles(srec, getInstanceId().trim()) + // Same service-RPC eligibility gate as the Host handler (ACTIVE internal same-principal + // identity-complete Host↔Sandbox). Role derive alone is not sufficient. + const sar = assertRecordForServiceRpc(srec) + if (!sar.ok) { + console.log( + `[HOST_AI_CAPS_RESPONSE_REJECT] ${JSON.stringify({ + response_type: wireType, + handshake_id: handshakeId.trim(), + session_id: p2pSessionId.trim(), + correlation_id: ridEarly || null, + models_count: null, + reject_reason: 'service_rpc_ineligible', + policy_code: sar.code, + dc_phase: getSessionState(handshakeId.trim())?.phase ?? null, + })}`, + ) + return false + } + const sdr = deriveInternalHostAiPeerRoles(sar.record, getInstanceId().trim()) if (!sdr.ok || sdr.localRole !== 'sandbox') { console.log( `[HOST_AI_CAPS_RESPONSE_REJECT] ${JSON.stringify({ diff --git a/graphify-out/.graphify_labels.json b/graphify-out/.graphify_labels.json new file mode 100644 index 000000000..58500f04c --- /dev/null +++ b/graphify-out/.graphify_labels.json @@ -0,0 +1 @@ +{"0": "Internal Host Inference", "1": "Handshake Core Records", "2": "Host AI Relay Capsules", "3": "BEAP Crypto Depackaging", "4": "Extension Sidepanel Chat", "5": "Sealed Storage Lifecycle", "6": "P2P Inference Flags", "7": "Critical Jobs Dispatcher", "8": "Handshake IPC Governance", "9": "Email Inbox Orchestration", "10": "Capsule Session Builder", "11": "P2P Inference Sessions", "12": "Inbox LLM Providers", "13": "Coordination WS Relay", "14": "Email Gateway Providers", "15": "Sandbox Inference Targets", "16": "Electron Main Window", "17": "Ollama Direct Discovery", "18": "Dashboard UI Components", "19": "BEAP Inbox Sealed Read", "20": "Ingestion IPC Pipeline", "21": "Handshake Enforcement", "22": "QSO Remap Engine", "23": "Web MCP Insertion", "24": "Hypervisor Depackage Worker", "25": "Policy Schema Channels", "26": "BEAP Inbox Dashboard", "27": "Agent Mode Execution", "28": "Autofill DataVault", "29": "Analysis Canvas Email", "30": "Email Providers", "31": "Handshake Enforcement Scripts", "32": "Vault Autofill QSO", "33": "Custommodes UI Services", "34": "Beapmessages Services Handshake", "35": "UI Addmodewizard Steps", "36": "Vault Autofill", "37": "Handshake Sandbox Ingestioncore", "38": "Beapmessages Services", "39": "Handshake Shims Beapmessages", "40": "Sandboxclonefeedbackui", "41": "Email Domain Providers", "42": "Services Beapbuilder", "43": "Emailinboxbulkview", "44": "Email Quarantineblobstorage Sealed Storage", "45": "Schemas", "46": "Background", "47": "Beapmessages Services Beapbuilder", "48": "Email Domain", "49": "Services Shims Beapmessages", "50": "Vault Autofill Critical Jobs", "51": "Email BEAP Depackagingmicrovm", "52": "Depackagingmicrovm", "53": "UI Stores Docked", "54": "Handshake Policy", "55": "Email Critical Jobs", "56": "Beapbuilder Beapmessages Services", "57": "Internal Inference Email Ingestionpolltrigger", "58": "Policy Engine Schema", "59": "Vault Autofill #59", "60": "Critical Jobs Depackagingmicrovm Letter", "61": "LLM Inference Handshake", "62": "Storage Sharedextension", "63": "Vault", "64": "Services Automation Workflows", "65": "Relayserver", "66": "Email Providers #66", "67": "Emailinboxview", "68": "Email Providers Domain", "69": "Stores Chat Routing", "70": "Bundledtools", "71": "UI Ingress Handshake", "72": "Services", "73": "Vault #73", "74": "Vault Autofill #74", "75": "Orchestrator Handshake Internal Inference", "76": "Handshake", "77": "Vault Autofill #77", "78": "Beapmessages Services Beapbuilder #78", "79": "Handshake Beapmessages", "80": "Analysis", "81": "Stores", "82": "Finalacceptancehostaiinvariantstest", "83": "Scripts Session", "84": "Vault Handshake", "85": "Email Providers #85", "86": "Vault #86", "87": "UI Stores Security", "88": "LLM", "89": "Shims Stores", "90": "Watchdog Lmgtfy LLM", "91": "Beapmessages Audit Reconstruction", "92": "Schemas #92", "93": "Vault #93", "94": "Vault Autofill #94", "95": "Handshake #95", "96": "Community 96", "97": "Critical Jobs Remote", "98": "Vault #98", "99": "Analysis Dashboard Stores", "100": "Reconstruction", "101": "Inferenceselectionpersistence", "102": "Ingestioncore", "103": "Auth Vault", "104": "Vault Hscontext", "105": "Email Providers #105", "106": "Handshake Shims", "107": "Automation Workflows", "108": "Content UI", "109": "Internal Inference Transport", "110": "Audit", "111": "Automation Triggers", "112": "LLM Email", "113": "Handshake Servicerpc", "114": "Hostaiselectorcopy", "115": "Beapmessages Sandbox", "116": "Electronrpc", "117": "Community 117", "118": "Vault Autofill #118", "119": "Registrationservice", "120": "Internal Inference LLM Email", "121": "Auth", "122": "Analysis Dashboard", "123": "Mailguardcontentscript", "124": "Desktop", "125": "Analysis Dashboard #125", "126": "Mocks", "127": "Schemas #127", "128": "Beapbuilder", "129": "Llmsettings", "130": "Handshake #130", "131": "Analysis #131", "132": "Analysis #132", "133": "Schemas #133", "134": "Agenttypeschema", "135": "Email Ingestionpolltrigger", "136": "Policy", "137": "Sandbox", "138": "Vault #138", "139": "Handshake Beapbuilder Shims", "140": "Schemas #140", "141": "Automation Conditions", "142": "Email", "143": "Vault #143", "144": "Schemas #144", "145": "Schemas #145", "146": "Schemas #146", "147": "UI Stores", "148": "Email #148", "149": "LLM #149", "150": "Stores #150", "151": "Mocks Lmgtfy Email", "152": "Execution", "153": "Relationshipdetail", "154": "Beapmessages Services #154", "155": "Envelopeevaluation", "156": "LLM Critical Jobs Remote", "157": "Community 157", "158": "Inboxmessagesandboxclone", "159": "Hostaitargetconnectionpresentation", "160": "Schemas #160", "161": "Schemas #161", "162": "Schemas #162", "163": "Ingress", "164": "Coordinationservice", "165": "LLM #165", "166": "LLM #166", "167": "Beapbuilder #167", "168": "Diffwatcher", "169": "Email Providers #169", "170": "LLM #170", "171": "Handshake #171", "172": "Stores #172", "173": "Vault Hscontext Handshake", "174": "Ingestioncore #174", "175": "MailGuard", "176": "Vault #176", "177": "Vault #177", "178": "Scripts", "179": "Inboxaicloneclassification", "180": "Letterviewerport", "181": "Relayserver #181", "182": "Email #182", "183": "Email LLM Internal Inference", "184": "OCR", "185": "Analysis #185", "186": "Stores #186", "187": "Internalinferencep2ptransport", "188": "Handshake #188", "189": "Inference LLM", "190": "LLM #190", "191": "Structuredhscontextpanel", "192": "Schemas #192", "193": "Beapbuilder Handshake", "194": "Community 194", "195": "Handshake #195", "196": "Analysis #196", "197": "Sandboxreadcleanuphint", "198": "Wrguard", "199": "Canonicalagentconfig", "200": "Depackagingmicrovm #200", "201": "Email #201", "202": "Email #202", "203": "Vault #203", "204": "Inboxsessionartefact", "205": "Stores #205", "206": "Schemas #206", "207": "Beapbuilder Handshake #207", "208": "BEAP", "209": "Orchestratordb", "210": "Vault #210", "211": "Postexecutionverification", "212": "Userevocationbanner", "213": "Autooptimizationfingerprint", "214": "Viteenvd", "215": "Gridscript", "216": "Schemas #216", "217": "Schemas #217", "218": "Automation Conditions Triggers", "219": "Email #219", "220": "Libreoffice", "221": "Handshakecontextsection", "222": "Schemas #222", "223": "Tsconfig", "224": "Shims", "225": "Schemas #225", "226": "Schemas #226", "227": "Wrguard #227", "228": "Coordinationservice #228", "229": "Retention", "230": "Analysis Dashboard #230", "231": "Autosortsessionreview", "232": "Schemas #232", "233": "Schemas #233", "234": "Automation", "235": "Coordinationservice #235", "236": "Ingestioncore #236", "237": "Critical Jobs Remote Email", "238": "Devicekeys Orchestratordb", "239": "Letter", "240": "Schemas #240", "241": "Schemas #241", "242": "Schemas #242", "243": "Schemas #243", "244": "Vault Autofill #244", "245": "Beappod", "246": "Ingestioncore #246", "247": "Sharedbeapui", "248": "Internal Inference", "249": "OCR #249", "250": "Orchestratordb #250", "251": "Analysis #251", "252": "Inboxactionicons", "253": "Schemas #253", "254": "Schemas #254", "255": "Vault Autofill #255", "256": "Beappod #256", "257": "Ingestioncore #257", "258": "Handshake #258", "259": "Orchestratordb #259", "260": "Community 260", "261": "Ingestioncore #261", "262": "Ingestioncore #262", "263": "Sharedbeapui #263", "264": "Orchestratordb #264", "265": "Vault #265", "266": "Analysis Dashboard #266", "267": "Shims #267", "268": "Schemas #268", "269": "Automation Adapters", "270": "Beapbuilder #270", "271": "Coordinationservice #271", "272": "Coordinationservice #272", "273": "Sharedbeapui #273", "274": "Letter #274", "275": "LLM #275", "276": "Scripts Installer", "277": "Chat Routing Stores", "278": "Tsconfig #278", "279": "Community 279", "280": "Community 280", "281": "Gridscriptbackup", "282": "Schemas #282", "283": "Schemas #283", "284": "Aichatcaptureconfig", "285": "Canonicalagentconfig #285", "286": "Wrguard #286", "287": "Letter #287", "288": "Letter #288", "289": "Analysis #289", "290": "Stores #290", "291": "Uicontrasttokens", "292": "Optimizationcontextassembler", "293": "Tsconfig #293", "294": "Wrguard #294", "295": "Coordinationservice #295", "296": "Coordinationservice #296", "297": "Coordinationservice #297", "298": "Relayserver #298", "299": "Handshake #299", "300": "Stores #300", "301": "Schemas #301", "302": "Schemas #302", "303": "Schemas #303", "304": "Schemas #304", "305": "Automation Adapters #305", "306": "Automation Workflows #306", "307": "Vault Autofill #307", "308": "Vault Autofill #308", "309": "Email #309", "310": "Stores #310", "311": "Gridscriptv2", "312": "Automation Triggers #312", "313": "Policy Schema Domains", "314": "Services #314", "315": "Beappod #315", "316": "Email #316", "317": "Integrity", "318": "Scripts #318", "319": "Scripts Guest", "320": "Scripts #320", "321": "Handshakequickreview", "322": "Inboxclassificationreconcile", "323": "Policy Schema Domains #323", "324": "Canonicalagentboxconfig", "325": "Depackagingmicrovm #325", "326": "Depackagingmicrovm #326", "327": "Letter #327", "328": "Vault #328", "329": "Vault #329", "330": "Scripts #330", "331": "Debuglogclipboard", "332": "Ingestiondelegationmodal", "333": "Schemas #333", "334": "Schemas #334", "335": "Schemas #335", "336": "Schemas #336", "337": "Automation Workflows #337", "338": "Content", "339": "Services UI Optimization", "340": "Installpgadmin", "341": "Community 341", "342": "Ingestioncore #342", "343": "Email Sealed Storage", "344": "LLM #344", "345": "Beapdeliveryack", "346": "Vault #346", "347": "Viteconfig", "348": "Gridintegrationdefaultbadge", "349": "Schemas #349", "350": "Schemas #350", "351": "Schemas #351", "352": "Schemas #352", "353": "Schemas #353", "354": "Beapbuilder Handshake #354", "355": "Vault Autofill #355", "356": "Coordinationservice #356", "357": "Scripts #357", "358": "Electronbuilderconfig", "359": "Depackagingmicrovm #359", "360": "Email #360", "361": "Email #361", "362": "LLM #362", "363": "Hostaitargetuinormalization", "364": "Step8themecontrastregressionstest", "365": "Tsconfignode", "366": "Schemas #366", "367": "Schemas #367", "368": "Coordinationservice #368", "369": "Coordinationservice #369", "370": "Tsconfigbase", "371": "Email #371", "372": "Letter #372", "373": "LLM #373", "374": "Scripts #374", "375": "Scripts #375", "376": "Chat Routing", "377": "Coalescedlistinferencetargets", "378": "Schemas #378", "379": "Schemas #379", "380": "Schemas #380", "381": "Schemas #381", "382": "Orchestration", "383": "Ingestioncore #383", "384": "Scripts #384", "385": "Scripts Session #385", "386": "LLM #386", "387": "LLM #387", "388": "Scripts #388", "389": "Schemas #389", "390": "Schemas #390", "391": "Schemas #391", "392": "Errormessages", "393": "Vault Autofill #393", "394": "Vault Autofill #394", "395": "Ingestion", "396": "Desktop #396", "397": "Internal Inference Handshake Vault", "398": "LLM #398", "399": "LLM #399", "400": "LLM #400", "401": "Security", "402": "Scripts #402", "403": "Analysis Dashboard #403", "404": "Shims #404", "405": "Tsconfig #405", "406": "Community 406", "407": "Schemas #407", "408": "Schemas #408", "409": "Schemas #409", "410": "Schemas #410", "411": "Schemas #411", "412": "Schemas #412", "413": "Schemas #413", "414": "Schemas #414", "415": "Schemas #415", "416": "Schemas #416", "417": "Gridcontentscript", "418": "Community 418", "419": "Coordinationservice #419", "420": "Coordinationservice #420", "421": "Sharedextension", "422": "Letter #422", "423": "LLM #423", "424": "Scripts #424", "425": "Scripts #425", "426": "Gpuinferencebarbadge", "427": "Tsconfig #427", "428": "Schemas #428", "429": "Schemas #429", "430": "Schemas #430", "431": "Community 431", "432": "Email #432", "433": "Letter #433", "434": "LLM #434", "435": "Orchestratordb #435", "436": "Scripts #436", "437": "Scripts #437", "438": "Relaysetupwizard", "439": "Thisdevicecard", "440": "Inferencetargettypes", "441": "Shims #441", "442": "Community 442", "443": "Griddisplay", "444": "Schemas #444", "445": "Schemas #445", "446": "Schemas #446", "447": "Schemas #447", "448": "Schemas #448", "449": "Backendconfiglightbox", "450": "Eslintconfig", "451": "Hello", "452": "Hello #452", "453": "Sharedextension #453", "454": "Desktop #454", "455": "Electronenvd", "456": "Email #456", "457": "Email #457", "458": "Internal Inference #458", "459": "Internal Inference #459", "460": "Beapmessageuploadzone", "461": "Beapinboxuxsourceregressionstest", "462": "Buildbsandboxviewportuitest", "463": "Sandboxcomposergatetest", "464": "Step10wrchathostdiscoveryordercontractte", "465": "Shims #465", "466": "Tsconfig #466", "467": "Schemas #467", "468": "Schemas #468", "469": "Schemas #469", "470": "Schemas #470", "471": "Schemas #471", "472": "Schemas #472", "473": "Schemas #473", "474": "Schemas #474", "475": "Schemas #475", "476": "Schemas #476", "477": "Schemas #477", "478": "Schemas #478", "479": "Schemas #479", "480": "Schemas #480", "481": "Schemas #481", "482": "Schemas #482", "483": "Schemas #483", "484": "Schemas #484", "485": "Schemas #485", "486": "Schemas #486", "487": "Schemas #487", "488": "Schemas #488", "489": "Backendswitchernew", "490": "Agentexportimport", "491": "Vault Autofill #491", "492": "Debugsessiondata", "493": "Coordinationservice #493", "494": "Desktop #494", "495": "Depackagingmicrovm #495", "496": "Depackagingmicrovm #496", "497": "Depackagingmicrovm #497", "498": "Depackagingmicrovm #498", "499": "Email Ingestionpolltrigger #499", "500": "Email #500", "501": "Email #501", "502": "Execution #502", "503": "LLM #503", "504": "LLM #504", "505": "Webrtctransportpreload", "506": "Collapsiblesection", "507": "Composebuttons", "508": "Beapinboxvisiblesandboxclone", "509": "Viteconfig #509", "510": "Schemas #510", "511": "Schemas #511", "512": "Schemas #512", "513": "Schemas #513", "514": "Schemas #514", "515": "Schemas #515", "516": "Schemas #516", "517": "Schemas #517", "518": "Schemas #518", "519": "Schemas #519", "520": "Schemas #520", "521": "Schemas #521", "522": "Schemas #522", "523": "Schemas #523", "524": "Schemas #524", "525": "Schemas #525", "526": "Schemas #526", "527": "Schemas #527", "528": "Schemas #528", "529": "Schemas #529", "530": "Devtools", "531": "Hardwarewarningdialog", "532": "Fixbuttons", "533": "Fixcontextmemory", "534": "Handshake #534", "535": "Vault #535", "536": "Fixtabsandtext", "537": "Wpcontent Themes Blocksychild", "538": "Depackagingmicrovm #538", "539": "Depackagingmicrovm #539", "540": "Depackagingmicrovm #540", "541": "Email #541", "542": "Email #542", "543": "Internal Inference #543", "544": "LLM #544", "545": "Keyfingerprint", "546": "Community 546", "547": "Community 547", "548": "Community 548", "549": "Community 549", "550": "Community 550", "551": "Community 551", "552": "Community 552", "553": "Community 553", "554": "Community 554", "555": "Community 555", "556": "Community 556", "557": "Community 557", "558": "Rebuild", "559": "Scripts #559", "560": "Scripts #560", "561": "Letmegiraffethatforyouicons", "562": "Useingestionstatustest", "563": "Hybridchatragsuccessdisplaytest", "564": "Wrchatdashboardconstants", "565": "Tsconfig #565", "566": "Community 566", "567": "Community 567", "568": "Community 568", "569": "Community 569", "570": "Community 570", "571": "Contentscriptglobalsd", "572": "Services #572", "573": "Viteenvd #573", "574": "Ingestioncore #574", "575": "Sharedbeapui #575", "576": "Scripts #576", "577": "Scripts #577", "578": "Scripts #578", "579": "Setup", "580": "Vitestconfig", "581": "Desktop #581", "582": "Desktop #582", "583": "Desktop #583", "584": "Checksqlitedb", "585": "Email #585", "586": "Handshake #586", "587": "Ingestion #587", "588": "Internal Inference #588", "589": "Internal Inference #589", "590": "LLM #590", "591": "Eslintrc", "592": "Getlogs", "593": "Queryorchestratorapi", "594": "Readelectronlogs", "595": "Rebuildandrestart", "596": "Resetvault", "597": "Restartopengiraffe", "598": "Restartwithcpucheck", "599": "Scripts #599", "600": "Scripts #600", "601": "Startopengiraffe", "602": "Stopopengiraffe", "603": "Checkchromestorage", "604": "Orchestration #604", "605": "Contentscriptclean", "606": "BEAP #606", "607": "Vault Autofill #607", "608": "Vault Autofill #608", "609": "Vault Autofill #609", "610": "Vitestconfig #610", "611": "Newserversjson", "612": "Beappod #612", "613": "Coordinationservice #613", "614": "Hello #614", "615": "Ingestioncore #615", "616": "Relayserver #616", "617": "Scripts #617", "618": "Startdev", "619": "Startdevfull", "620": "Verifyheadless"} \ No newline at end of file diff --git a/graphify-out/GRAPH_REPORT.md b/graphify-out/GRAPH_REPORT.md new file mode 100644 index 000000000..97526e358 --- /dev/null +++ b/graphify-out/GRAPH_REPORT.md @@ -0,0 +1,2580 @@ +# Graph Report - code (2026-08-08) + +## Corpus Check +- Large corpus: 1992 files · ~2,456,974 words. Semantic extraction will be expensive (many Claude tokens). Consider running on a subfolder. + +## Summary +- 17565 nodes · 44871 edges · 621 communities (543 shown, 78 thin omitted) +- Extraction: 100% EXTRACTED · 0% INFERRED · 0% AMBIGUOUS · INFERRED: 150 edges (avg confidence: 0.59) +- Token cost: 0 input · 0 output + +## Community Hubs (Navigation) +- Internal Host Inference +- Handshake Core Records +- Host AI Relay Capsules +- BEAP Crypto Depackaging +- Extension Sidepanel Chat +- Sealed Storage Lifecycle +- P2P Inference Flags +- Critical Jobs Dispatcher +- Handshake IPC Governance +- Email Inbox Orchestration +- Capsule Session Builder +- P2P Inference Sessions +- Inbox LLM Providers +- Coordination WS Relay +- Email Gateway Providers +- Sandbox Inference Targets +- Electron Main Window +- Ollama Direct Discovery +- Dashboard UI Components +- BEAP Inbox Sealed Read +- Ingestion IPC Pipeline +- Handshake Enforcement +- QSO Remap Engine +- Web MCP Insertion +- Hypervisor Depackage Worker +- Policy Schema Channels +- BEAP Inbox Dashboard +- Agent Mode Execution +- Autofill DataVault +- Analysis Canvas Email +- Email Providers +- Handshake Enforcement Scripts +- Vault Autofill QSO +- Custommodes UI Services +- Beapmessages Services Handshake +- UI Addmodewizard Steps +- Vault Autofill +- Handshake Sandbox Ingestioncore +- Beapmessages Services +- Handshake Shims Beapmessages +- Sandboxclonefeedbackui +- Email Domain Providers +- Services Beapbuilder +- Emailinboxbulkview +- Email Quarantineblobstorage Sealed Storage +- Schemas +- Background +- Beapmessages Services Beapbuilder +- Email Domain +- Services Shims Beapmessages +- Vault Autofill Critical Jobs +- Email BEAP Depackagingmicrovm +- Depackagingmicrovm +- UI Stores Docked +- Handshake Policy +- Email Critical Jobs +- Beapbuilder Beapmessages Services +- Internal Inference Email Ingestionpolltrigger +- Policy Engine Schema +- Vault Autofill #59 +- Critical Jobs Depackagingmicrovm Letter +- LLM Inference Handshake +- Storage Sharedextension +- Vault +- Services Automation Workflows +- Relayserver +- Email Providers #66 +- Emailinboxview +- Email Providers Domain +- Stores Chat Routing +- Bundledtools +- UI Ingress Handshake +- Services +- Vault #73 +- Vault Autofill #74 +- Orchestrator Handshake Internal Inference +- Handshake +- Vault Autofill #77 +- Beapmessages Services Beapbuilder #78 +- Handshake Beapmessages +- Analysis +- Stores +- Finalacceptancehostaiinvariantstest +- Scripts Session +- Vault Handshake +- Email Providers #85 +- Vault #86 +- UI Stores Security +- LLM +- Shims Stores +- Watchdog Lmgtfy LLM +- Beapmessages Audit Reconstruction +- Schemas #92 +- Vault #93 +- Vault Autofill #94 +- Handshake #95 +- Community 96 +- Critical Jobs Remote +- Vault #98 +- Analysis Dashboard Stores +- Reconstruction +- Inferenceselectionpersistence +- Ingestioncore +- Auth Vault +- Vault Hscontext +- Email Providers #105 +- Handshake Shims +- Automation Workflows +- Content UI +- Internal Inference Transport +- Audit +- Automation Triggers +- LLM Email +- Handshake Servicerpc +- Hostaiselectorcopy +- Beapmessages Sandbox +- Electronrpc +- Community 117 +- Vault Autofill #118 +- Registrationservice +- Internal Inference LLM Email +- Auth +- Analysis Dashboard +- Mailguardcontentscript +- Desktop +- Analysis Dashboard #125 +- Mocks +- Schemas #127 +- Beapbuilder +- Llmsettings +- Handshake #130 +- Analysis #131 +- Analysis #132 +- Schemas #133 +- Agenttypeschema +- Email Ingestionpolltrigger +- Policy +- Sandbox +- Vault #138 +- Handshake Beapbuilder Shims +- Schemas #140 +- Automation Conditions +- Email +- Vault #143 +- Schemas #144 +- Schemas #145 +- Schemas #146 +- UI Stores +- Email #148 +- LLM #149 +- Stores #150 +- Mocks Lmgtfy Email +- Execution +- Relationshipdetail +- Beapmessages Services #154 +- Envelopeevaluation +- LLM Critical Jobs Remote +- Community 157 +- Inboxmessagesandboxclone +- Hostaitargetconnectionpresentation +- Schemas #160 +- Schemas #161 +- Schemas #162 +- Ingress +- Coordinationservice +- LLM #165 +- LLM #166 +- Beapbuilder #167 +- Diffwatcher +- Email Providers #169 +- LLM #170 +- Handshake #171 +- Stores #172 +- Vault Hscontext Handshake +- Ingestioncore #174 +- MailGuard +- Vault #176 +- Vault #177 +- Scripts +- Inboxaicloneclassification +- Letterviewerport +- Relayserver #181 +- Email #182 +- Email LLM Internal Inference +- OCR +- Analysis #185 +- Stores #186 +- Internalinferencep2ptransport +- Handshake #188 +- Inference LLM +- LLM #190 +- Structuredhscontextpanel +- Schemas #192 +- Beapbuilder Handshake +- Community 194 +- Handshake #195 +- Analysis #196 +- Sandboxreadcleanuphint +- Wrguard +- Canonicalagentconfig +- Depackagingmicrovm #200 +- Email #201 +- Email #202 +- Vault #203 +- Inboxsessionartefact +- Stores #205 +- Schemas #206 +- Beapbuilder Handshake #207 +- BEAP +- Orchestratordb +- Vault #210 +- Postexecutionverification +- Userevocationbanner +- Autooptimizationfingerprint +- Viteenvd +- Gridscript +- Schemas #216 +- Schemas #217 +- Automation Conditions Triggers +- Email #219 +- Libreoffice +- Handshakecontextsection +- Schemas #222 +- Tsconfig +- Schemas #225 +- Schemas #226 +- Wrguard #227 +- Coordinationservice #228 +- Retention +- Analysis Dashboard #230 +- Autosortsessionreview +- Schemas #232 +- Schemas #233 +- Automation +- Coordinationservice #235 +- Ingestioncore #236 +- Critical Jobs Remote Email +- Devicekeys Orchestratordb +- Letter +- Schemas #240 +- Schemas #241 +- Schemas #242 +- Schemas #243 +- Vault Autofill #244 +- Beappod +- Ingestioncore #246 +- Sharedbeapui +- Internal Inference +- OCR #249 +- Orchestratordb #250 +- Analysis #251 +- Inboxactionicons +- Schemas #253 +- Schemas #254 +- Vault Autofill #255 +- Beappod #256 +- Ingestioncore #257 +- Handshake #258 +- Orchestratordb #259 +- Community 260 +- Ingestioncore #261 +- Ingestioncore #262 +- Sharedbeapui #263 +- Orchestratordb #264 +- Vault #265 +- Analysis Dashboard #266 +- Shims #267 +- Schemas #268 +- Automation Adapters +- Beapbuilder #270 +- Coordinationservice #271 +- Coordinationservice #272 +- Sharedbeapui #273 +- Letter #274 +- LLM #275 +- Scripts Installer +- Chat Routing Stores +- Tsconfig #278 +- Community 279 +- Community 280 +- Gridscriptbackup +- Schemas #282 +- Schemas #283 +- Aichatcaptureconfig +- Canonicalagentconfig #285 +- Wrguard #286 +- Letter #287 +- Letter #288 +- Analysis #289 +- Stores #290 +- Uicontrasttokens +- Optimizationcontextassembler +- Tsconfig #293 +- Wrguard #294 +- Coordinationservice #295 +- Coordinationservice #296 +- Coordinationservice #297 +- Relayserver #298 +- Handshake #299 +- Stores #300 +- Schemas #301 +- Schemas #302 +- Schemas #303 +- Schemas #304 +- Automation Adapters #305 +- Automation Workflows #306 +- Vault Autofill #307 +- Vault Autofill #308 +- Email #309 +- Stores #310 +- Gridscriptv2 +- Automation Triggers #312 +- Policy Schema Domains +- Services #314 +- Beappod #315 +- Email #316 +- Integrity +- Scripts #318 +- Scripts Guest +- Scripts #320 +- Handshakequickreview +- Inboxclassificationreconcile +- Policy Schema Domains #323 +- Canonicalagentboxconfig +- Depackagingmicrovm #325 +- Depackagingmicrovm #326 +- Letter #327 +- Vault #328 +- Vault #329 +- Scripts #330 +- Debuglogclipboard +- Ingestiondelegationmodal +- Schemas #333 +- Schemas #334 +- Schemas #335 +- Schemas #336 +- Automation Workflows #337 +- Content +- Services UI Optimization +- Installpgadmin +- Community 341 +- Ingestioncore #342 +- Email Sealed Storage +- LLM #344 +- Beapdeliveryack +- Vault #346 +- Viteconfig +- Gridintegrationdefaultbadge +- Schemas #349 +- Schemas #350 +- Schemas #351 +- Schemas #352 +- Schemas #353 +- Beapbuilder Handshake #354 +- Vault Autofill #355 +- Coordinationservice #356 +- Scripts #357 +- Electronbuilderconfig +- Depackagingmicrovm #359 +- Email #360 +- Email #361 +- LLM #362 +- Hostaitargetuinormalization +- Step8themecontrastregressionstest +- Tsconfignode +- Schemas #366 +- Schemas #367 +- Coordinationservice #368 +- Coordinationservice #369 +- Tsconfigbase +- Email #371 +- Letter #372 +- LLM #373 +- Scripts #374 +- Scripts #375 +- Chat Routing +- Coalescedlistinferencetargets +- Schemas #378 +- Schemas #379 +- Schemas #380 +- Schemas #381 +- Orchestration +- Ingestioncore #383 +- Scripts #384 +- Scripts Session #385 +- LLM #386 +- LLM #387 +- Scripts #388 +- Schemas #389 +- Schemas #390 +- Schemas #391 +- Errormessages +- Vault Autofill #393 +- Vault Autofill #394 +- Ingestion +- Desktop #396 +- Internal Inference Handshake Vault +- LLM #398 +- LLM #399 +- LLM #400 +- Security +- Scripts #402 +- Analysis Dashboard #403 +- Shims #404 +- Tsconfig #405 +- Community 406 +- Schemas #407 +- Schemas #408 +- Schemas #409 +- Schemas #410 +- Schemas #411 +- Schemas #412 +- Schemas #413 +- Schemas #414 +- Schemas #415 +- Schemas #416 +- Gridcontentscript +- Community 418 +- Coordinationservice #419 +- Coordinationservice #420 +- Sharedextension +- Letter #422 +- LLM #423 +- Scripts #424 +- Scripts #425 +- Gpuinferencebarbadge +- Tsconfig #427 +- Schemas #428 +- Schemas #429 +- Schemas #430 +- Community 431 +- Email #432 +- Letter #433 +- LLM #434 +- Orchestratordb #435 +- Scripts #436 +- Scripts #437 +- Relaysetupwizard +- Thisdevicecard +- Inferencetargettypes +- Community 442 +- Schemas #444 +- Schemas #445 +- Schemas #446 +- Schemas #447 +- Schemas #448 +- Backendconfiglightbox +- Eslintconfig +- Hello +- Hello #452 +- Sharedextension #453 +- Desktop #454 +- Electronenvd +- Email #457 +- Internal Inference #458 +- Internal Inference #459 +- Beapmessageuploadzone +- Beapinboxuxsourceregressionstest +- Buildbsandboxviewportuitest +- Sandboxcomposergatetest +- Step10wrchathostdiscoveryordercontractte +- Tsconfig #466 +- Schemas #467 +- Schemas #468 +- Schemas #469 +- Schemas #470 +- Schemas #471 +- Schemas #472 +- Schemas #473 +- Schemas #474 +- Schemas #475 +- Schemas #476 +- Schemas #477 +- Schemas #478 +- Schemas #479 +- Schemas #480 +- Schemas #481 +- Schemas #482 +- Schemas #483 +- Schemas #484 +- Schemas #485 +- Schemas #486 +- Schemas #487 +- Schemas #488 +- Backendswitchernew +- Agentexportimport +- Vault Autofill #491 +- Debugsessiondata +- Coordinationservice #493 +- Desktop #494 +- Depackagingmicrovm #495 +- Depackagingmicrovm #496 +- Depackagingmicrovm #497 +- Depackagingmicrovm #498 +- Email Ingestionpolltrigger #499 +- Email #500 +- Execution #502 +- LLM #503 +- LLM #504 +- Webrtctransportpreload +- Collapsiblesection +- Composebuttons +- Beapinboxvisiblesandboxclone +- Viteconfig #509 +- Schemas #510 +- Schemas #511 +- Schemas #512 +- Schemas #513 +- Schemas #514 +- Schemas #515 +- Schemas #516 +- Schemas #517 +- Schemas #518 +- Schemas #519 +- Schemas #520 +- Schemas #521 +- Schemas #522 +- Schemas #523 +- Schemas #524 +- Schemas #525 +- Schemas #526 +- Schemas #527 +- Schemas #528 +- Schemas #529 +- Devtools +- Hardwarewarningdialog +- Fixbuttons +- Fixcontextmemory +- Handshake #534 +- Vault #535 +- Fixtabsandtext +- Depackagingmicrovm #539 +- Internal Inference #543 +- LLM #544 +- Community 546 +- Community 547 +- Community 548 +- Community 549 +- Community 550 +- Community 551 +- Community 552 +- Community 553 +- Community 554 +- Community 555 +- Community 556 +- Community 557 +- Rebuild +- Scripts #559 +- Scripts #560 +- Wrchatdashboardconstants +- Tsconfig #565 +- Community 566 +- Community 567 +- Community 568 +- Community 569 +- Community 570 +- Contentscriptglobalsd +- Services #572 +- Viteenvd #573 +- Sharedbeapui #575 +- Scripts #576 +- Scripts #578 + +## God Nodes (most connected - your core abstractions) +1. `_buffer` - 268 edges +2. `getHandshakeRecord()` - 140 edges +3. `getInstanceId()` - 131 edges +4. `HandshakeRecord` - 124 edges +5. `handleHandshakeRPC()` - 122 edges +6. `listSandboxHostInternalInferenceTargets()` - 104 edges +7. `registerInboxHandlers()` - 100 edges +8. `VaultService` - 94 edges +9. `HandshakeState` - 90 edges +10. `LocalLlmManager` - 80 edges + +## Surprising Connections (you probably didn't know these) +- `request()` --references--> `_buffer` [EXTRACTED] + packages/coordination-service/__tests__/coordination.test.ts → apps/electron-vite-project/electron/main/email/extensionMergeRetryBuffer.ts +- `sealedServiceRpcCapsule()` --references--> `_buffer` [EXTRACTED] + packages/coordination-service/__tests__/coordination.test.ts → apps/electron-vite-project/electron/main/email/extensionMergeRetryBuffer.ts +- `request()` --references--> `_buffer` [EXTRACTED] + packages/coordination-service/__tests__/pairing-code.test.ts → apps/electron-vite-project/electron/main/email/extensionMergeRetryBuffer.ts +- `sealedServiceRpcCapsule()` --references--> `_buffer` [EXTRACTED] + packages/coordination-service/__tests__/sandboxEgressGuard.test.ts → apps/electron-vite-project/electron/main/email/extensionMergeRetryBuffer.ts +- `minimalSealedCapsule()` --references--> `_buffer` [EXTRACTED] + packages/ingestion-core/__tests__/sealedServiceRpcCapsuleValidation.test.ts → apps/electron-vite-project/electron/main/email/extensionMergeRetryBuffer.ts + +## Import Cycles +- 2-file cycle: `apps/electron-vite-project/electron/main/llm/aiExecutionTypes.ts -> apps/electron-vite-project/electron/main/llm/ollamaEmbeddingCapability.ts -> apps/electron-vite-project/electron/main/llm/aiExecutionTypes.ts` +- 2-file cycle: `apps/electron-vite-project/src/auth/session.ts -> apps/electron-vite-project/src/auth/sessionCache.ts -> apps/electron-vite-project/src/auth/session.ts` +- 3-file cycle: `apps/extension-chromium/src/ui/components/ModeRowAffordances.tsx -> apps/extension-chromium/src/ui/components/modeRowActions.ts -> apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx -> apps/extension-chromium/src/ui/components/ModeRowAffordances.tsx` +- 3-file cycle: `apps/extension-chromium/src/ui/components/WrChatWatchdogButton.tsx -> apps/extension-chromium/src/ui/components/wrMultiTrigger/index.ts -> apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx -> apps/extension-chromium/src/ui/components/WrChatWatchdogButton.tsx` +- 3-file cycle: `packages/coordination-service/src/auth.ts -> packages/coordination-service/src/tierResolution.ts -> packages/coordination-service/src/rateLimiter.ts -> packages/coordination-service/src/auth.ts` +- 3-file cycle: `apps/electron-vite-project/electron/main/llm/adaptiveWarmupStrategy.ts -> apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts -> apps/electron-vite-project/electron/main/llm/local-llm-manager.ts -> apps/electron-vite-project/electron/main/llm/adaptiveWarmupStrategy.ts` +- 3-file cycle: `apps/electron-vite-project/electron/main/internalInference/hostAiWebrtcOfferStart.ts -> apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts -> apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts -> apps/electron-vite-project/electron/main/internalInference/hostAiWebrtcOfferStart.ts` +- 3-file cycle: `apps/electron-vite-project/electron/main/internalInference/hostAiWebrtcOfferStart.ts -> apps/electron-vite-project/electron/main/p2p/coordinationWsHolder.ts -> apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts -> apps/electron-vite-project/electron/main/internalInference/hostAiWebrtcOfferStart.ts` +- 3-file cycle: `apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts -> apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts -> apps/electron-vite-project/electron/main/internalInference/sandboxOllamaDirectCapsRefresh.ts -> apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts` +- 3-file cycle: `apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts -> apps/electron-vite-project/electron/main/internalInference/sandboxOllamaDirectCapsRefresh.ts -> apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts -> apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts` +- 3-file cycle: `apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostIngestionPollCompletion.ts -> apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts -> apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostPendingStore.ts -> apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostIngestionPollCompletion.ts` +- 3-file cycle: `apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts -> apps/electron-vite-project/electron/main/email/sandboxIngestion.ts -> apps/electron-vite-project/electron/main/email/sandboxOpaqueFetchRouter.ts -> apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts` +- 3-file cycle: `apps/electron-vite-project/electron/main/email/credentials.ts -> apps/electron-vite-project/electron/main/email/providers/gmail.ts -> apps/electron-vite-project/electron/main/email/gmailOAuthResolve.ts -> apps/electron-vite-project/electron/main/email/credentials.ts` +- 4-file cycle: `apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts -> apps/electron-vite-project/electron/main/handshake/outboundQueue.ts -> apps/electron-vite-project/electron/main/p2p/coordinationWsHolder.ts -> apps/electron-vite-project/electron/main/p2p/coordinationWs.ts -> apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts` +- 4-file cycle: `apps/electron-vite-project/electron/main/handshake/ipc.ts -> apps/electron-vite-project/electron/main/handshake/revocation.ts -> apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts -> apps/electron-vite-project/electron/main/internalInference/dbAccess.ts -> apps/electron-vite-project/electron/main/handshake/ipc.ts` +- 4-file cycle: `apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts -> apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts -> apps/electron-vite-project/electron/main/internalInference/sandboxOllamaDirectCapsRefresh.ts -> apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts -> apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts` +- 4-file cycle: `apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts -> apps/electron-vite-project/electron/main/internalInference/sandboxOllamaDirectCapsRefresh.ts -> apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts -> apps/electron-vite-project/electron/main/internalInference/sandboxHostAiRouteSelectCaps.ts -> apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts` +- 5-file cycle: `apps/electron-vite-project/electron/main/handshake/ipc.ts -> apps/electron-vite-project/electron/main/vault/rpc.ts -> apps/electron-vite-project/electron/main/internalInference/orchestratorSandboxEmbedding.ts -> apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts -> apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts -> apps/electron-vite-project/electron/main/handshake/ipc.ts` +- 5-file cycle: `apps/electron-vite-project/electron/main/handshake/ipc.ts -> apps/electron-vite-project/electron/main/vault/rpc.ts -> apps/electron-vite-project/electron/main/internalInference/orchestratorSandboxEmbedding.ts -> apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts -> apps/electron-vite-project/electron/main/internalInference/dbAccess.ts -> apps/electron-vite-project/electron/main/handshake/ipc.ts` +- 5-file cycle: `apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts -> apps/electron-vite-project/electron/main/llm/local-llm-manager.ts -> apps/electron-vite-project/electron/main/llm/adaptiveWarmupStrategy.ts -> apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts -> apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectCandidate.ts -> apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts` + +## Communities (621 total, 78 thin omitted) + +### Community 0 - "Internal Host Inference" +Cohesion: 0.03 +Nodes (202): findActiveHostToSandboxHandshakeRecord(), buildProductionSandboxIngestionDeps(), findActiveSandboxToHostHandshakeRecord(), isValidX25519PubB64(), resolveSandboxCustodyPubKeyB64(), resolveSandboxHostDeliveryContext(), SandboxHostDeliveryContext, listHandshakeRecords() (+194 more) + +### Community 1 - "Handshake Core Records" +Cohesion: 0.02 +Nodes (191): classifyActiveHandshakeHealth(), coordinationCompleteForLog(), counterpartyP2pTokenSetForLog(), HandshakeHealthClassification, hasP2pTokenForLog(), listActiveHandshakeHealthIssues(), pairingDigits6(), peerDisplayNameForHealth() (+183 more) + +### Community 2 - "Host AI Relay Capsules" +Cohesion: 0.02 +Nodes (179): getLastHostIngestionPollAck(), HostIngestionPollAck, lastAckByAccount, recordHostIngestionPollAck(), recordHostIngestionPollUnreachable(), CompletionWaiter, finalizePendingIngestionPollSyncResult(), IngestionPollTriggerCounts (+171 more) + +### Community 3 - "BEAP Crypto Depackaging" +Cohesion: 0.03 +Nodes (188): SanitisedDecryptedPackage, ProjectedContent, AeadCiphertext, aeadDecrypt(), aeadEncrypt(), asBufferSource(), BeapCryptoMetadata, BeapPQMetadata (+180 more) + +### Community 4 - "Extension Sidepanel Chat" +Cohesion: 0.02 +Nodes (175): formatOversizeAttachmentRejection(), MAX_BEAP_DRAFT_ATTACHMENT_BYTES, AuthStatusResponse, BackendSwitcherInline(), BackendSwitcherInlineProps, TEXT_SCALES, TextSize, HandshakeManagementPanel() (+167 more) + +### Community 5 - "Sealed Storage Lifecycle" +Cohesion: 0.02 +Nodes (127): CORPUS, __dirname, initiate, internalDraft, provenance(), req(), _require, TestVault (+119 more) + +### Community 6 - "P2P Inference Flags" +Cohesion: 0.03 +Nodes (149): PartyIdentity, InternalInferenceErrorCode, logHostAiInferComplete(), logHostAiInferError(), logHostAiInferRequestReceived(), logHostAiInferRequestSend(), logHostAiInferResponseReceived(), hostAiP2pFlagsForLog() (+141 more) + +### Community 7 - "Critical Jobs Dispatcher" +Cohesion: 0.03 +Nodes (109): BuildContextOptions, buildResolutionContext(), detectLocalMicrovmAvailable(), parseArgvRole(), resolveExecOverride(), resolveRole(), roleFromMode(), VALID_ROLES (+101 more) + +### Community 8 - "Handshake IPC Governance" +Cohesion: 0.03 +Nodes (154): dispatchDashboardMethodRpc(), buildRevocationAuditEntry(), retrieveBlocks(), buildCloudSnippet(), SIGNATURE_SEPARATORS, getBlockCountForHandshake(), getPendingEmbeddingBlocks(), markEmbeddingComplete() (+146 more) + +### Community 9 - "Email Inbox Orchestration" +Cohesion: 0.03 +Nodes (166): autosortDiagLog(), AutosortDiagMainState, autosortTimingLog(), DEBUG_AUTOSORT_DIAGNOSTICS, DEBUG_AUTOSORT_TIMING, getAutosortDiagMainState(), isRecentVaultLock(), mainState (+158 more) + +### Community 10 - "Capsule Session Builder" +Cohesion: 0.04 +Nodes (131): USER_PACKAGE_BUILDER_SEND_SOURCE, AcceptBuildResult, buildAcceptCapsule(), buildContextSyncCapsule(), buildInitiateCapsule(), buildInitiateCapsuleCore(), buildInitiateCapsuleWithContent(), buildInitiateCapsuleWithKeypair() (+123 more) + +### Community 11 - "P2P Inference Sessions" +Cohesion: 0.03 +Nodes (141): InternalInferenceErrorCodeType, runHostAiInvalidationIfOrchestratorBuildChanged(), hostAiWebrtcOfferStartTestHooks, HostAiWebrtcStartError, startHostAiP2pWebrtcSessionOffer, startWebrtcAnswererForHostAiSession(), startWebrtcOfferForHostAiSession(), waitForCoordinationWebsocketForRelayIfNeeded() (+133 more) + +### Community 12 - "Inbox LLM Providers" +Cohesion: 0.03 +Nodes (106): ElectronMockState, firstCloudRagSettings(), INBOX_LLM_LOCAL_TIMEOUT_MS, INBOX_LLM_MAX_OUTPUT_TOKENS, INBOX_LLM_TIMEOUT_MS, inboxLlmChat(), InboxLlmChatParams, inboxSupportsOllamaStream() (+98 more) + +### Community 13 - "Coordination WS Relay" +Cohesion: 0.03 +Nodes (104): processBeapPackageInline(), makeTestDb(), buildContextSyncCapsuleWithContent(), migrateHandshakeTables(), needsCanonicalRelayDeviceIdForCoordination(), setOidcTokenProvider(), setOutboundQueueAuthRefresh(), createRealTestDb() (+96 more) + +### Community 14 - "Email Gateway Providers" +Cohesion: 0.03 +Nodes (86): AccountLedgerPurgeResult, purgeAccountLedgerState(), ProviderAccountDomainView, providerAccountDomainViewFromConfig(), providerAccountDomainViewsAllSlices(), ConnectedAccountIdentity, connectedAccountIdentityFromConfig(), getProviderAccountCapabilities() (+78 more) + +### Community 15 - "Sandbox Inference Targets" +Cohesion: 0.03 +Nodes (123): filterHandshakeRecordsForCurrentSession(), InferenceRoutingUnavailableError, rowProvesLocalSandboxToHostForHostAi(), clearHostAiPairingStateForHandshake(), DiskV1, ensureDisk(), entryFor(), EntryV1 (+115 more) + +### Community 16 - "Electron Main Window" +Cohesion: 0.03 +Nodes (112): startRegionStream(), CaptureEventPayload, CaptureMeta, CaptureMode, emitCapture(), LmgtfyChannels, registerHandler(), ensureDir() (+104 more) + +### Community 17 - "Ollama Direct Discovery" +Cohesion: 0.03 +Nodes (110): HostAiEndpointCandidate, HostAiEndpointResolutionCategory, HostAiEndpointSource, HostAiEndpointTrustLevel, HostAiSelectedEndpointProvenance, logHostAiEndpointSelect(), HOST_AI_OLLAMA_PROVIDER, HOST_AI_ROUTE_KIND_OLLAMA_DIRECT (+102 more) + +### Community 18 - "Dashboard UI Components" +Cohesion: 0.04 +Nodes (107): Accent, appendWrChatAssistant(), AutomationCardDef, ComposerIconPickerDialog(), composerIconPickerLabel(), DashboardAutomationHome(), DashboardAutomationHomeProps, getDashboardLaunchSecret() (+99 more) + +### Community 19 - "BEAP Inbox Sealed Read" +Cohesion: 0.03 +Nodes (99): BeapInboxCloneErrorCode, BeapInboxCloneNoSandboxDetails, BeapInboxClonePrepareOk, BeapInboxClonePrepareOptions, BeapInboxClonePrepareResult, CLONE_PREPARE_INNER_VAULT_USER_MESSAGE, CLONE_PREPARE_SEAL_GATE_USER_MESSAGE, CLONE_PREPARE_VAULT_UNAVAILABLE_MESSAGE (+91 more) + +### Community 20 - "Ingestion IPC Pipeline" +Cohesion: 0.03 +Nodes (80): unsealContextSyncCapsuleIfNeeded(), submitCapsule(), submitCapsule(), submitCapsule(), submitCapsule(), ingest(), ingest(), buildDefaultReceiverPolicy() (+72 more) + +### Community 21 - "Handshake Enforcement" +Cohesion: 0.05 +Nodes (84): insertSeenCapsuleHash(), computeInternalRoutingKey(), finalizeInternalHandshakePersistence(), isInternalCoordinationIdentityComplete(), validateInternalInitiateCapsuleWire(), runHandshakeVerification(), persistRecipientHandshakeRecord(), PersistRecipientResult (+76 more) + +### Community 22 - "QSO Remap Engine" +Cohesion: 0.04 +Nodes (107): handleQsoIconClick(), setQsoFillActive(), isHAEnforced(), auditLogSafe(), guardElement(), createCredentialFromPageInput(), deleteMapping(), domainsMatch() (+99 more) + +### Community 23 - "Web MCP Insertion" +Cohesion: 0.03 +Nodes (104): checkBoundingRectStable(), checkFingerprintValid(), checkFocusable(), checkNotDetached(), checkNotHiddenInput(), checkSameOrigin(), checkSessionNotExpired(), checkVisible() (+96 more) + +### Community 24 - "Hypervisor Depackage Worker" +Cohesion: 0.04 +Nodes (85): linked, recoveredSet(), DEPACKAGE_PARITY_CORPUS, eml(), ParityCase, pub(), realResult(), DepackageOutput (+77 more) + +### Community 25 - "Policy Schema Channels" +Cohesion: 0.04 +Nodes (101): ATTESTATION_TIERS, CHANNELS, ChannelsEditor(), ChannelsEditorProps, NETWORK_SCOPES, DERIVATION_CAPABILITIES, DerivationsEditor(), DerivationsEditorProps (+93 more) + +### Community 26 - "BEAP Inbox Dashboard" +Cohesion: 0.03 +Nodes (92): BeapInboxDashboardProps, THEME, TRUST_BADGE, URGENCY_DOT, BeapInboxFirstRun(), BeapInboxFirstRunProps, useBeapFileImport(), Window (+84 more) + +### Community 27 - "Agent Mode Execution" +Cohesion: 0.04 +Nodes (84): executeModeSessionRunDirectForDashboard(), CLOUD_DEFAULT_MODELS, isCloudProvider(), isLocalProvider(), LABEL_TO_ID, PROVIDER_API_KEY_NAMES, PROVIDER_IDS, PROVIDER_LABELS (+76 more) + +### Community 28 - "Autofill DataVault" +Cohesion: 0.04 +Nodes (93): getLastScan(), applyNlpBooster(), extractTextFeatures(), findNearbyButtonText(), findNearbyHeading(), getPageLanguage(), isNlpBoosterEnabled(), NLP_BOOSTER_WEIGHT (+85 more) + +### Community 29 - "Analysis Canvas Email" +Cohesion: 0.03 +Nodes (84): IngestionStatusResult, AiDraftContextRail(), AiDraftContextRailProps, DashboardEmailAccountRow, FALLBACK_SETUP, formatStatusDate(), ProjectSetupModalDraftBindings, ProjectSetupModalTab (+76 more) + +### Community 30 - "Email Providers" +Cohesion: 0.04 +Nodes (31): attachOauthDebug(), assertNoInlineParse(), INLINE_PARSE_FORBIDDEN_CODE, InlineParseForbiddenError, RawEmailMessage, hasLinkedDepackageSandbox(), isOpaqueIngestionActive(), __resetOpaqueIngestionCacheForTests() (+23 more) + +### Community 31 - "Handshake Enforcement Scripts" +Cohesion: 0.03 +Nodes (82): AuthorizationDenialReason, authorizeToolInvocation(), deny(), GRANTED_TOOLS, runAuthorization(), ToolAuthorizationResult, ToolInvocationRequest, buildDenialAuditEntry() (+74 more) + +### Community 32 - "Vault Autofill QSO" +Cohesion: 0.05 +Nodes (103): checkDomainMatchesAsync(), checkExactDuplicate(), filterPasswordCandidates(), findPasswordFieldOnPage(), findQsoAnchor(), forceScan(), guardedAutoSubmit(), handleFieldIconClick() (+95 more) + +### Community 33 - "Custommodes UI Services" +Cohesion: 0.05 +Nodes (83): broadcastCustomModesChanged(), backfillEmptyScamWatchdogFields(), backfillEmptyScamWatchdogSearchFocus(), backfillScamWatchdogChatOnlySearchFocus(), ensureBuiltInModes(), seedRow(), atomicWriteModes(), backupModesFileIfExists() (+75 more) + +### Community 34 - "Beapmessages Services Handshake" +Cohesion: 0.04 +Nodes (84): ReplyMode, AiAction, BatchToolbarProps, BeapBulkInbox, BeapBulkInboxProps, formatMs(), formatRelative(), getPreview() (+76 more) + +### Community 35 - "UI Addmodewizard Steps" +Cohesion: 0.06 +Nodes (80): fetchOllamaModelNamesFromEndpoint(), safeDraftString(), CUSTOM_MODE_INTERVAL_PRESET_OPTIONS, CUSTOM_MODE_INTERVAL_PRESET_SECONDS, CustomModeIntervalPresetSeconds, formatCustomModeIntervalPresetLabel(), isCustomModeIntervalPresetSeconds(), LABEL_BY_SECONDS (+72 more) + +### Community 36 - "Vault Autofill" +Cohesion: 0.04 +Nodes (81): getHAConfig(), getHAState(), haCheck(), handleHARequest(), _haState, initHASync(), _listeners, MSG_HA_STATE_CHANGED (+73 more) + +### Community 37 - "Handshake Sandbox Ingestioncore" +Cohesion: 0.05 +Nodes (83): electronMain, applyContextSyncInternalRoutingFromRecord(), collectInternalRelayWireGaps(), CoordinationPreHttpValidation, EnqueueOutboundCapsuleResult, isInternalRelayCapsuleEnvelope(), LOCAL_INTERNAL_RELAY_VALIDATION_FAILED, nz() (+75 more) + +### Community 38 - "Beapmessages Services" +Cohesion: 0.05 +Nodes (74): att(), assertBeapTabImportPayload(), BeapImportPayloadGuardResult, narrowBeapFallbackModel(), narrowBeapImportPayloadForBridge(), BEAP_EDIT_SESSION_IMPORT_TYPE, BeapSessionEditImportResponse, requestBeapSessionEditInActiveTab() (+66 more) + +### Community 39 - "Handshake Shims Beapmessages" +Cohesion: 0.04 +Nodes (66): acceptHandshake(), BeapDevicePublicKeyResultShape, classifyBeapGetDevicePublicKeyResultShape(), extractDevicePublicKeyB64(), LedgerParty, logNormalAcceptX25519ShimFailure(), mapLedgerHandshakeToRpc(), PendingP2PBeapEntry (+58 more) + +### Community 40 - "Sandboxclonefeedbackui" +Cohesion: 0.05 +Nodes (79): BeapMessageSafeLinkParts(), BeapMessageSafeLinkPartsProps, BeapSandboxCloneDialogProps, EmailInboxView(), InboxMessageRow(), InboxMessageRowProps, NativeBeapDraftData, depackagedFormatFromMessage() (+71 more) + +### Community 41 - "Email Domain Providers" +Cohesion: 0.04 +Nodes (77): broadcastOrchestratorSessionDisplayUpdated(), DiagnoseImapParams, DiagnoseImapResult, runDiagnoseImapStandalone(), imapUsesImplicitTls(), normalizeSecurityMode(), normKey(), smtpTransportTlsFlags() (+69 more) + +### Community 42 - "Services Beapbuilder" +Cohesion: 0.04 +Nodes (82): addAgent(), AgentEvent, AgentV2, boot(), ensureActiveSession(), ensureUI(), getCurrentSessionKey(), openOverlay() (+74 more) + +### Community 43 - "Emailinboxbulkview" +Cohesion: 0.03 +Nodes (83): AutosortRuntimeStatus(), EMPTY, GPU_COLOR, GPU_LABEL, StatusBadgeState, AutoSortSessionHistory(), AutoSortSessionHistoryProps, SessionRow (+75 more) + +### Community 44 - "Email Quarantineblobstorage Sealed Storage" +Cohesion: 0.05 +Nodes (75): AttachmentRowCrypto, decryptBlob(), encryptBlob(), EncryptedWriteResult, getAttachmentsBasePath(), readDecryptedAttachmentBuffer(), sanitizeFilename(), writeEncryptedAttachmentFile() (+67 more) + +### Community 45 - "Schemas" +Cohesion: 0.02 +Nodes (91): description, type, description, type, default, description, type, default (+83 more) + +### Community 46 - "Background" +Cohesion: 0.04 +Nodes (81): AUDIT_EXPORT_ALLOWED_PAGES, AUDIT_EXPORT_RESULT_VERSION, AuditExportErrorCode, _auditExportLog(), AuthStatusResponsePayload, BEAP_GRID_SURFACE_READY, _cacheVsbt(), calculateBackoff() (+73 more) + +### Community 47 - "Beapmessages Services Beapbuilder" +Cohesion: 0.04 +Nodes (81): assertNoSemanticContentInTransport(), computeContentHash(), computePolicyHash(), computeTemplateHash(), createBeapSignature(), deriveHandshakeSecretX25519(), resetDebugAadStats(), resetDebugSigningData() (+73 more) + +### Community 48 - "Email Domain" +Cohesion: 0.06 +Nodes (31): dedupeMailboxConfigsForDisplay(), dedupeMailboxInfosForDisplay(), findDuplicateMailboxGroups(), findExistingMailboxAccountInList(), hasBundledOauth(), MailboxDuplicateGroup, mailboxIdentityKey(), MailboxProvider (+23 more) + +### Community 49 - "Services Shims Beapmessages" +Cohesion: 0.04 +Nodes (63): clearModeTimer(), handleDashboardModeIntervalTick(), intervalSecondsByModeId, scheduleModeIntervalTimer(), syncDashboardModeIntervalSchedulers(), timersByModeId, dashboardModeRunDeps, handleDashboardRunModeAllocatedSession() (+55 more) + +### Community 50 - "Vault Autofill Critical Jobs" +Cohesion: 0.04 +Nodes (73): spec(), ADDRESS_AUTOCOMPLETE_HINTS, BoundedIterState, CHECKOUT_AUTOCOMPLETE_HINTS, classifyByFieldAndURL(), classifyFormIntent(), collectCandidates(), CONTACT_AUTOCOMPLETE_HINTS (+65 more) + +### Community 51 - "Email BEAP Depackagingmicrovm" +Cohesion: 0.05 +Nodes (72): auditLog, getAuditForMessage(), getAutoresponderAuditLog(), logAutoresponderDecision(), AutoresponderDecision, AutoresponderEvaluation, evaluateAutoresponder(), buildEnvelopeAadFields() (+64 more) + +### Community 52 - "Depackagingmicrovm" +Cohesion: 0.05 +Nodes (77): DEPACKAGE_DEFAULTS, DepackageFailure, DepackageFailureCode, DepackageLimits, Leaf, ParseOut, resolveMaxInputBytes(), RFC-822 (+69 more) + +### Community 53 - "UI Stores Docked" +Cohesion: 0.06 +Nodes (71): logImportEvent(), AI_ASSIST_ACTIONS, AIAssistAction, canPerformAction(), COMPOSER_BUTTONS, ComposerButtonConfig, generateMockAIResponse(), getEnabledComposerButtons() (+63 more) + +### Community 54 - "Handshake Policy" +Cohesion: 0.04 +Nodes (60): buildAcceptContextOptions(), BuildAcceptContextOptionsParams, buildInitiateContextOptions(), BuildInitiateContextOptionsParams, EmailAccount, HandshakeRequestForm(), HandshakeRequestFormProps, AUTOMATION_COLORS (+52 more) + +### Community 55 - "Email Critical Jobs" +Cohesion: 0.05 +Nodes (66): DepackageDispatchOutcome, DepackageInputForm, dispatchDepackageEmail(), GmailCreds, IngestionOwnership, FlowTokens, baseDir(), deleteRoleScopedTokens() (+58 more) + +### Community 56 - "Beapbuilder Beapmessages Services" +Cohesion: 0.04 +Nodes (50): BuildArtefactInput, BuildArtefactResult, ApplyResult, ArtefactPolicy, ArtefactPurpose, ArtefactSession, BuilderSource, CapabilityClass (+42 more) + +### Community 57 - "Internal Inference Email Ingestionpolltrigger" +Cohesion: 0.05 +Nodes (60): tryHandleRequest, tryHandleResult, getOutboundQueueAuthRefresh(), HOST_AI_DIRECT_BEAP_AD_SEALED_RELAY_ENDPOINT_PLACEHOLDER, hostAiDirectBeapAdEndpointUrlIsInertPlaceholder(), wireEndpointUrlForHostAiDirectBeapAd(), HostAiP2pSignalSchemaRejectKind, logHostAiSignalSchemaRejected() (+52 more) + +### Community 58 - "Policy Engine Schema" +Cohesion: 0.06 +Nodes (58): ConsentDialogProps, ConsentGrant, ConsentScope, getConsentAuditLog(), revokeConsentGrant(), CapabilityRow(), EffectivePreview(), EffectivePreviewProps (+50 more) + +### Community 59 - "Vault Autofill #59" +Cohesion: 0.06 +Nodes (73): addToDvDenylist(), buildFieldMap(), categoryToProfileType(), categoryToSection(), DataVaultProfile, DataVaultProfileSummary, DataVaultProfileType, DV_CATEGORIES (+65 more) + +### Community 60 - "Critical Jobs Depackagingmicrovm Letter" +Cohesion: 0.03 +Nodes (61): eml(), depackageSpec(), pubKey(), pubKey(), eml(), PUB, QBEAP_PKG, sandboxPubB64() (+53 more) + +### Community 61 - "LLM Inference Handshake" +Cohesion: 0.05 +Nodes (57): ollamaOptionsFromUserAndDisk(), CPU_SAFE_MODEL_PATTERNS, InferenceBackend, InferenceCapabilityInput, InferenceCapabilityResult, InferenceHardware, isCpuSafeModel(), resolveInferenceCapabilityFromInput() (+49 more) + +### Community 62 - "Storage Sharedextension" +Cohesion: 0.05 +Nodes (41): getConfig(), getPostgresAdapter(), redactPassword(), registerDbHandlers(), syncChromeDataToPostgres(), testConnection(), runMigrations(), PostgresAdapter (+33 more) + +### Community 63 - "Vault" +Cohesion: 0.09 +Nodes (9): deriveFieldKey(), simulateServiceGate(), VaultService, Container, VaultDocument, VaultItem, VaultSettings, canAccessCategory() (+1 more) + +### Community 64 - "Services Automation Workflows" +Cohesion: 0.07 +Nodes (31): EventTagRoutingBatch, EventTagRoutingInput, EventTagRoutingResult, OutputDestination, ResolvedExecutionConfig, ResolvedLlmConfig, ResolvedReasoningConfig, TriggerType (+23 more) + +### Community 65 - "Relayserver" +Cohesion: 0.07 +Nodes (59): extractBearerToken(), verifyHostAuth(), verifyIngestAuth(), loadFromEnv(), loadFromFile(), loadRelayConfig(), RelayConfig, getHealthPayload() (+51 more) + +### Community 66 - "Email Providers #66" +Cohesion: 0.07 +Nodes (61): buildGmailCredentialsCheckPayload(), GmailCredentialsCheckApiPayload, GmailOauthConnectDebug, GmailOauthConnectDebugStep, oauthDebugFromUnknown(), pickOauthDebugFromError(), assertBuiltinMetaConfigured(), defaultGmailOAuthCredentialSource() (+53 more) + +### Community 67 - "Emailinboxview" +Cohesion: 0.04 +Nodes (54): BeapMessageImportZone(), Props, Window, BeapSandboxUnavailableDialog(), BeapSandboxUnavailableDialogProps, BeapSandboxUnavailableVariant, DIALOG, analysisSoftNoticeBarStyle (+46 more) + +### Community 68 - "Email Providers Domain" +Cohesion: 0.07 +Nodes (24): imapFoldersMatchExact(), isLegacyImapMailboxLabel(), IMAP_PROVIDER_FETCH_MESSAGES_MS, FolderInfo, createSmtpTransport(), IMAP_SPECIAL_USE_ANCHORS, ImapClientWithNamespaces, ImapConnection (+16 more) + +### Community 69 - "Stores Chat Routing" +Cohesion: 0.05 +Nodes (61): ChatRouteDecision, ChatRouteKind, resolveChatRoute(), AvailableModel, ChatAttachment, ChatSource, ChatTurn, collectStringsFromJson() (+53 more) + +### Community 70 - "Bundledtools" +Cohesion: 0.06 +Nodes (62): ThirdPartyLicensesView(), ThirdPartyLicensesViewProps, ToolLicenseCardProps, assertToolAvailable(), assertToolsReady(), canParse(), canRasterize(), clearExecutionLog() (+54 more) + +### Community 71 - "UI Ingress Handshake" +Cohesion: 0.12 +Nodes (53): BackendConfigLightbox(), BackendConfigLightboxProps, PostgresConnectionConfig, IMPORTANT: Custom protocol launch (opengiraffe://start, wrcode://start) has…, NOTE: Protocol handler launch removed - it caused Windows "Open Electron?"…, RpcData, ImageEngineSettings(), HandshakeAcceptModal() (+45 more) + +### Community 72 - "Services" +Cohesion: 0.07 +Nodes (56): canRunOptimization(), hasLinkedSession(), resolveProject(), openSessionDisplayGridsFromDashboard(), SessionGridPresentSource, logOptimizationAgentBoxSend(), OPTIMIZATION_AGENT_DEFAULT_MODEL, optimizationDashboardAgentBoxSetAiExecutionContext() (+48 more) + +### Community 73 - "Vault #73" +Cohesion: 0.07 +Nodes (59): addLog(), apiCall(), checkHealth(), _clearVSBT(), connectVault(), createContainer(), createItem(), createVault() (+51 more) + +### Community 74 - "Vault Autofill #74" +Cohesion: 0.06 +Nodes (61): attachGuard(), buildParentChainSignature(), captureSnapshot(), ElementSnapshot, fnv1a(), GuardStatus, GuardViolation, MutationGuardHandle (+53 more) + +### Community 75 - "Orchestrator Handshake Internal Inference" +Cohesion: 0.07 +Nodes (54): updateHandshakeTopologyPairingKind(), findActiveInternalHostSandboxHandshake(), getLinkedPairingKindForHandshake(), hostnameFromP2pUrl(), inferSandboxPairingKindFromHandshake(), isHostLocalP2pTarget(), isLoopbackP2pHost(), pairingKindToTopologyKind() (+46 more) + +### Community 76 - "Handshake" +Cohesion: 0.06 +Nodes (47): ContextRetrievalResult, hybridSearch(), HybridSearchFilter, HybridSearchMetrics, HybridSearchResult, runStructuredPath(), ATTACHMENT_REQUIRES_SELECTION_PATTERNS, ChatIntent (+39 more) + +### Community 77 - "Vault Autofill #77" +Cohesion: 0.06 +Nodes (57): addToNeverSaveList(), buildSelector(), createCredential(), CredentialSaveResult, detectSubmitButtonSelector(), domainMatches(), executeCredentialSave(), extractFieldValue() (+49 more) + +### Community 78 - "Beapmessages Services Beapbuilder #78" +Cohesion: 0.06 +Nodes (41): BeapInlineComposerProps, draftSurface, LocalAttachment, OrchestratorSession, BeapDocumentReaderModal(), BeapDocumentReaderModalProps, splitToSyntheticPages(), BeapAttachmentReader() (+33 more) + +### Community 79 - "Handshake Beapmessages" +Cohesion: 0.07 +Nodes (46): CapsulePreview, Props, ChatMessage, HandshakeChatSidebar(), Props, HandshakeRecord, HandshakeViewProps, InternalHandshakeIdentityPanel() (+38 more) + +### Community 80 - "Analysis" +Cohesion: 0.07 +Nodes (58): ActionStatus, computePriorityAction(), DashboardState, getStatusColor(), getStatusLabel(), LiveExecutionSnapshot, PostExecutionSnapshot, PreExecutionSnapshot (+50 more) + +### Community 81 - "Stores" +Cohesion: 0.07 +Nodes (51): hydrationAfterGetMessageIpcError(), hydrationAfterGetMessageReject(), hydrationAfterGetMessageSuccess(), HydrationTerminal, AttachmentHydrationState, BulkInboxAttachmentsStrip(), formatKb(), isPdfAttachment() (+43 more) + +### Community 82 - "Finalacceptancehostaiinvariantstest" +Cohesion: 0.06 +Nodes (42): SandboxPeerRow, useHostToSandboxDirectReachability(), formatPairingDisplay(), HostInferenceCandidateRow, HostInferenceGavSync, PolicyState, targetsToCandidates(), useSandboxHostInference() (+34 more) + +### Community 83 - "Scripts Session" +Cohesion: 0.06 +Nodes (55): BUILDER_CFG, CODE_ROOT, ELECTRON_APP, { ensureRelayUp }, { execSync, spawnSync }, formatBuildLine(), { formatBuildLine, runOrchestratorBuild }, fs (+47 more) + +### Community 84 - "Vault Handshake" +Cohesion: 0.08 +Nodes (52): attachHandshakeProfilesAndSyncScope(), ConfidentialityScope, HandshakeClassification, linkHandshakeProfiles(), readHandshakeConfidentialityScope(), resolveInnerVaultDb(), scopeToClassification(), syncHandshakeConfidentialityScope() (+44 more) + +### Community 85 - "Email Providers #85" +Cohesion: 0.07 +Nodes (45): GMAIL_ALL_SCOPES, GMAIL_READ_SCOPES, GMAIL_SEND_SCOPES, imapCredentialFieldForRole(), OAuthScopeRole, OUTLOOK_ALL_SCOPES, OUTLOOK_BASE_SCOPES, OUTLOOK_READ_SCOPES (+37 more) + +### Community 86 - "Vault #86" +Cohesion: 0.06 +Nodes (36): CacheEntry, DecryptCache, DecryptCacheOptions, fakeGetItem(), FakeRow, mockedOpenRecord, AAD_SCHEMA_VERSION, decryptRecord() (+28 more) + +### Community 87 - "UI Stores Security" +Cohesion: 0.06 +Nodes (43): customModeDiffWatcherId(), getLaunchSecret(), isModeOwnedDiffWatcherId(), modeDiffWatcherIdPrefix(), syncCustomModeDiffWatcher(), getCustomModeScopeFromMetadata(), createOnMain(), CustomModesState (+35 more) + +### Community 88 - "LLM" +Cohesion: 0.07 +Nodes (9): llamaServerLogPath(), LocalLlmManager, modelIdFromGgufFilename(), resolveGgufPathForModelId(), noteLocalLlmActiveModelChangedForBulkPrewarm(), ModelInstallResult, localLlmRuntimeGetInFlight(), DownloadProgress (+1 more) + +### Community 89 - "Shims Stores" +Cohesion: 0.06 +Nodes (39): DashboardTheme, WRChatDashboardView(), WRChatDashboardViewProps, WrChatModelOption, wrChatModelsForPersist(), getFirstAvailableHostModelId(), getHostActiveModelIdFromTargets(), HostAiSelectionSource (+31 more) + +### Community 90 - "Watchdog Lmgtfy LLM" +Cohesion: 0.07 +Nodes (26): captureScreenshot(), capturesRoot(), datedDir(), ensureDir(), activeOverlays, closeAllOverlays(), Selection, getModeById() (+18 more) + +### Community 91 - "Beapmessages Audit Reconstruction" +Cohesion: 0.09 +Nodes (44): BeapInboxView(), SIDEBAR_ITEMS, SidebarKey, THEME, ArchiveButtonProps, BeapDraftComposerProps, BeapMessageListViewProps, BeapMessagePreview() (+36 more) + +### Community 92 - "Schemas #92" +Cohesion: 0.04 +Nodes (56): type, type, type, type, type, type, type, type (+48 more) + +### Community 93 - "Vault #93" +Cohesion: 0.07 +Nodes (40): generateRandomKey(), closeVaultDB(), collectAllVaultBaseRows(), createSchema(), createVaultDB(), getVaultMetaPath(), getVaultPath(), getVaultRegistryPath() (+32 more) + +### Community 94 - "Vault Autofill #94" +Cohesion: 0.08 +Nodes (53): setPopoverFillActive(), buildPreviewCSS(), clearFillPreview(), createPreviewOverlay(), executePreviewFill(), FieldValueEntry, findMatchingField(), findSubmitButtonOnPage() (+45 more) + +### Community 95 - "Handshake #95" +Cohesion: 0.07 +Nodes (46): CanonicalContextBlock, canonicalRebuild(), CanonicalReceiverIdentity, CanonicalSealedContextBlocksEnvelope, CanonicalSenderIdentity, CanonicalTierSignals, DENIED_FIELDS, FIELD_RULES (+38 more) + +### Community 96 - "Community 96" +Cohesion: 0.04 +Nodes (53): dependencies, body-parser, bufferutil, canvas, docx, express, imap, is-electron (+45 more) + +### Community 97 - "Critical Jobs Remote" +Cohesion: 0.09 +Nodes (45): CriticalJobReceiverDepsFactory, defaultDepsFactory(), tryHandleCriticalJobServiceP2P(), writeJson(), CriticalJobReceiveOutcome, CriticalJobReceiverDeps, errorWire(), handleCriticalJobRequest() (+37 more) + +### Community 98 - "Vault #98" +Cohesion: 0.11 +Nodes (51): addAddButtonsToTree(), applyVaultTheme(), buildSidebarCategoriesHTML(), canUseHsContextProfiles(), copyToClipboard(), detectVaultTheme(), downloadDocument(), ensureConnected() (+43 more) + +### Community 99 - "Analysis Dashboard Stores" +Cohesion: 0.07 +Nodes (34): PROJECT_ICON_CHOICES, flashFieldEl(), flashMilestoneEl(), formatLinkedSessionRepeatCadence(), ModalMilestone, ProjectSetupModal(), ProjectSetupModalProps, TODO: extract PDF text via IPC when mimeType is application/pdf (+26 more) + +### Community 100 - "Reconstruction" +Cohesion: 0.12 +Nodes (40): RasterPreview(), RasterPreviewProps, ReconstructionStatus(), ReconstructionStatusProps, SafePreviewPanel(), SemanticPreview(), SemanticPreviewProps, canReconstruct() (+32 more) + +### Community 101 - "Inferenceselectionpersistence" +Cohesion: 0.09 +Nodes (43): GROUP_CLOUD, GROUP_INTERNAL_HOST, GROUP_LOCAL_MODELS, accountKeyFromSession(), clearOrchestratorInferenceSelection(), clearPersistedHostAiInferenceSelection(), clearWrChatInferenceSelection(), definitiveP2pSessionFailureCode() (+35 more) + +### Community 102 - "Ingestioncore" +Cohesion: 0.07 +Nodes (49): ARTEFACT_POLICY_KEYS, ARTEFACT_PURPOSE_KEYS, ARTEFACT_TOP_LEVEL_KEYS, CANONICAL_AGENT_BOX_CONFIG_TOP_KEYS, CANONICAL_AGENT_CONFIG_TOP_KEYS, checkNoUnknownKeys(), countFields(), createValidatedCapsule() (+41 more) + +### Community 103 - "Auth Vault" +Cohesion: 0.09 +Nodes (39): checkStartupSession(), getEffectiveTier(), getOidcToken(), logoutCleanupAsync(), refreshEntitlements(), resolveRequestTier(), BASE_PAYLOAD, makeJwt() (+31 more) + +### Community 104 - "Vault Hscontext" +Cohesion: 0.08 +Nodes (42): HsContextDocumentReader(), HsContextDocumentReaderProps, HsContextDocumentUpload(), Props, suggestLabelFromFilename(), suggestTypeFromFilename(), triggerDownload(), HsContextProfileList() (+34 more) + +### Community 105 - "Email Providers #105" +Cohesion: 0.10 +Nodes (43): clearBuiltinGoogleOAuthSupplement(), hasBuiltinGoogleOAuthSupplementForClientId(), loadBuiltinGoogleOAuthSupplementSecret(), normalizeSupplementDesktopSecret(), saveBuiltinGoogleOAuthSupplementSecret(), SaveBuiltinSupplementResult, supplementPath(), checkExistingCredentials() (+35 more) + +### Community 106 - "Handshake Shims" +Cohesion: 0.07 +Nodes (31): App(), DashboardView, emailAccountsListSignature(), ExtensionTheme, mapThemeToCss(), normalizeTheme(), HandshakeHealthOrchestratorBanner(), ExtensionTheme (+23 more) + +### Community 107 - "Automation Workflows" +Cohesion: 0.10 +Nodes (21): ActionResult, EventTagConditionType, EventTagTriggerConfig, MemoryContextSettings, ResolvedImageConfig, TriggerHandler, UnifiedListeningConfig, UnifiedReasoningConfig (+13 more) + +### Community 108 - "Content UI" +Cohesion: 0.09 +Nodes (20): bootstrap(), DEFAULT_OPTIONS, getSiteSpecificOptions(), initializeOverlay(), mountFrameOverlay(), safeInit(), setupDebugUtilities(), setupLifecycleHandlers() (+12 more) + +### Community 109 - "Internal Inference Transport" +Cohesion: 0.08 +Nodes (40): baseInput(), baseRecord(), baseInput(), baseRecord(), hostAiDcCapabilityResultBlocksHttpFallback(), HostAiProbeTerminalInput, HostAiResolvedRoute, HostAiRouteCandidate (+32 more) + +### Community 110 - "Audit" +Cohesion: 0.13 +Nodes (39): archiveMessage(), archiveRecords, checkArchiveEligibility(), computeHash(), getArchiveRecord(), isArchived(), storeArchiveRecord(), ArchiveButton() (+31 more) + +### Community 111 - "Automation Triggers" +Cohesion: 0.11 +Nodes (12): ReasoningCallback, BaseTrigger, TriggerCallback, ChatInput, ChatTrigger, CronSchedule, ScheduledJob, TriggerRegistry (+4 more) + +### Community 112 - "LLM Email" +Cohesion: 0.09 +Nodes (37): callInboxOllamaChat(), isOllamaAvailable(), dbg(), DEBUG_ACTIVE_LOCAL_MODEL, getStoredActiveLocalModelId(), readRaw(), resolveEffectiveLocalModel(), setStoredActiveLocalModelId() (+29 more) + +### Community 113 - "Handshake Servicerpc" +Cohesion: 0.07 +Nodes (37): ContextBlockProof, AcceptOptions, ContextSyncOptions, HandshakeCapsuleWire, InitiateOptions, RefreshOptions, computeBlockHash(), ContextBlockForCommitment (+29 more) + +### Community 114 - "Hostaiselectorcopy" +Cohesion: 0.07 +Nodes (40): HOST_AI_CHECKING_TOOLTIP, HOST_AI_MVP_P2P_ENDPOINT_INVALID_TOOLTIP, HOST_AI_OPTION_TOOLTIP, HOST_AI_P2P_OFFLINE_DETAIL_TOOLTIP, HOST_AI_PATH_UNAVAILABLE_TOOLTIP, HOST_AI_SELECTOR_ICON_CLASS, HOST_AI_STALE_INLINE, HOST_AI_UNREACHABLE_TOOLTIP (+32 more) + +### Community 115 - "Beapmessages Sandbox" +Cohesion: 0.11 +Nodes (36): buildFailure(), buildTimeoutPromise(), checkMemoryBudget(), classifyFailureStage(), deserialiseOptions(), handleDepackage(), handleDepackageWithTimeout(), handleMessage() (+28 more) + +### Community 116 - "Electronrpc" +Cohesion: 0.05 +Nodes (45): customModeDraftSchema, CustomModesCreate, CustomModesDelete, CustomModesGetMigrationStatus, CustomModesImport, CustomModesList, CustomModesUpdate, DashboardOpen (+37 more) + +### Community 117 - "Community 117" +Cohesion: 0.04 +Nodes (45): devDependencies, electron, electron-builder, electron-rebuild, eslint, eslint-plugin-react-hooks, eslint-plugin-react-refresh, node-addon-api (+37 more) + +### Community 118 - "Vault Autofill #118" +Cohesion: 0.09 +Nodes (43): haCheckSilent(), emitTelemetryEvent(), appendShowAllButton(), buildDropdownCSS(), buildIconCSS(), categoryIcon(), escapeHtml(), handleKeyDown() (+35 more) + +### Community 119 - "Registrationservice" +Cohesion: 0.12 +Nodes (36): PackageList(), PackageListProps, PackageListItem(), PackageListItemProps, STATUS_COLORS, STATUS_ICONS, acceptPendingPackage(), checkAutoRegister() (+28 more) + +### Community 120 - "Internal Inference LLM Email" +Cohesion: 0.09 +Nodes (29): InboxLlmTimeoutError, hostAiBeapAdLocalOllamaModelCount(), hostAiBeapAdLocalOllamaModelRoster(), HostAiBeapAdLocalOllamaModelRosterResult, HostAiBeapAdOllamaModelWireEntry, tryAcquireHostInferenceSlot(), buildHostInferenceErrorWire(), HostInferenceContext (+21 more) + +### Community 121 - "Auth" +Cohesion: 0.10 +Nodes (34): testLoginOnce(), DiscoveryError, DiscoveryResult, DiscoverySuccess, fetchDiscovery(), getCachedDiscovery(), getOidcDiscovery(), isCacheValid() (+26 more) + +### Community 122 - "Analysis Dashboard" +Cohesion: 0.09 +Nodes (36): ActiveAutomationWorkspace, ActiveAutomationWorkspaceProps, MonitorWorkspaceSubActions, ActivityFeedColumn(), ActivityFeedColumnProps, copyArtifactRefs(), EMPTY_POAE, formatArtifactChannel() (+28 more) + +### Community 123 - "Mailguardcontentscript" +Cohesion: 0.09 +Nodes (38): activateMailGuard(), blockEmailClick(), deactivateMailGuard(), dismissBanner(), EMAIL_LIST_CONTAINER_SELECTORS, EMAIL_ROW_SELECTORS, EMAIL_SELECTORS, EmailProvider (+30 more) + +### Community 124 - "Desktop" +Cohesion: 0.05 +Nodes (39): build, appId, directories, files, linux, mac, nsis, productName (+31 more) + +### Community 125 - "Analysis Dashboard #125" +Cohesion: 0.07 +Nodes (37): DashboardHandshakeSummarySectionProps, STATE_LABELS, STATE_ORDER, UrgentAutosortSessionSectionProps, categoryMatches(), deriveAutomationMetrics(), deriveQueueVelocity(), deriveThreatMetrics() (+29 more) + +### Community 126 - "Mocks" +Cohesion: 0.05 +Nodes (22): app, clipboard, contextBridge, dialog, electron, ipcMain, ipcRenderer, Menu (+14 more) + +### Community 127 - "Schemas #127" +Cohesion: 0.05 +Nodes (40): items, type, description, items, type, items, type, items (+32 more) + +### Community 128 - "Beapbuilder" +Cohesion: 0.11 +Nodes (33): BuilderRequiredReason, BuilderRequiredResult, NetworkConstraints, DELIVERY_METHODS, DeliveryOptions(), DeliveryOptionsProps, EnvelopeSection(), EnvelopeBadge() (+25 more) + +### Community 129 - "Llmsettings" +Cohesion: 0.06 +Nodes (33): BackendSwitcherProps, PostgresConnectionConfig, ImageEngineSettingsProps, NOTE: Local image engines (ComfyUI, Automatic1111, etc.) are intentionally NOT…, FALLBACK_CATALOG, HardwareInfo, InstalledModel, isBinaryStatusEntity() (+25 more) + +### Community 130 - "Handshake #130" +Cohesion: 0.08 +Nodes (25): buildHandshakeAcceptSafeOpts(), optString(), safeKeyAgreement(), safePolicySelections(), trimStr(), preflightLikeHandleHandshakeAccept(), wireX25519FromAcceptParams(), assertCustomMailboxPayload() (+17 more) + +### Community 131 - "Analysis #131" +Cohesion: 0.10 +Nodes (32): AnalysisOpenPayload, canClaimPoAE(), canClaimVerified(), CanvasEvent, CanvasEventType, CanvasState, createInitialCanvasState(), createInitialLiveExecutionState() (+24 more) + +### Community 132 - "Analysis #132" +Cohesion: 0.06 +Nodes (28): DrawerTabId, DeepLinkState, LiveDeepLink, AwaitingApproval, AwaitingApprovalsHeroProps, DeepLinkNotFoundBannerProps, getAlignmentStatusLabel(), getSeverityBadgeClass() (+20 more) + +### Community 133 - "Schemas #133" +Cohesion: 0.05 +Nodes (38): description, type, description, type, default, description, type, description (+30 more) + +### Community 134 - "Agenttypeschema" +Cohesion: 0.09 +Nodes (35): AgentExportFormat, AgentExportMetadata, AgentExportSection, AgentImportResult, exportAgentCompact(), exportAgentToJson(), exportTriggers(), processArrayWithSchema() (+27 more) + +### Community 135 - "Email Ingestionpolltrigger" +Cohesion: 0.09 +Nodes (25): hostAckIndicatesMissingReadProvider(), hostAckIndicatesPollUnreachable(), isSandboxPollUnreachableStatus(), isSandboxReadConsentMissingPollStatus(), sandboxDedicatedMissingReadProvider(), getLastHostIngestionPollAcks(), _resetHostIngestionPollAcksForTests(), IngestionAccountStatus (+17 more) + +### Community 136 - "Policy" +Cohesion: 0.08 +Nodes (21): getActiveLocalPolicy(), getAllAdminPackages(), getAllPolicyNodes(), getConsentGrantsForSender(), getDbPath(), initPolicyDb(), revokeConsentGrant(), saveAdminPackage() (+13 more) + +### Community 137 - "Sandbox" +Cohesion: 0.11 +Nodes (23): ConsumeResult, consumeResults(), EnqueueResult, enqueueTask(), _resetProcessor(), setTaskProcessor(), TaskProcessor, validateResult() (+15 more) + +### Community 138 - "Vault #138" +Cohesion: 0.11 +Nodes (31): buildAAD(), deleteDocument(), detectMimeType(), getDocument(), importDocument(), isBlockedExtension(), listDocuments(), rowToDocument() (+23 more) + +### Community 139 - "Handshake Beapbuilder Shims" +Cohesion: 0.09 +Nodes (28): ackToState(), BeapInlineComposer(), isPdfAttachment(), BeapRedirectDialog(), BeapRedirectDialogProps, BeapRedirectSourcePayload, buildProvenanceBlock(), BeapSandboxCloneDialog() (+20 more) + +### Community 140 - "Schemas #140" +Cohesion: 0.06 +Nodes (37): description, items, type, items, description, items, type, description (+29 more) + +### Community 141 - "Automation Conditions" +Cohesion: 0.13 +Nodes (13): ConditionEngine, isAllCondition(), isAnyCondition(), isFieldCondition(), isNotCondition(), evaluateOperator(), getNestedValue(), AllCondition (+5 more) + +### Community 142 - "Email" +Cohesion: 0.13 +Nodes (30): DELEGATED_HINT, formatIngestionPollTriggerPullHint(), IngestionPollTriggerCounts, mapIngestionPollTriggerHostFeedback(), mapIngestionPollTriggerPendingFeedback(), mapSkipReasonToIpcWarning(), PAUSED_HINT, SkipReasonIpcResult (+22 more) + +### Community 143 - "Vault #143" +Cohesion: 0.06 +Nodes (35): ActivateHARequest, AutofillSectionsSchema, ContainerSchema, ContainerTypeSchema, CreateContainerRequest, CreateItemRequest, CreateVaultRequest, DeactivateHARequest (+27 more) + +### Community 144 - "Schemas #144" +Cohesion: 0.06 +Nodes (36): items, type, description, items, type, type, properties, description (+28 more) + +### Community 145 - "Schemas #145" +Cohesion: 0.06 +Nodes (36): enum, type, description, items, type, type, properties, description (+28 more) + +### Community 146 - "Schemas #146" +Cohesion: 0.06 +Nodes (35): description, required, type, description, required, type, $defs, agent (+27 more) + +### Community 147 - "UI Stores" +Cohesion: 0.13 +Nodes (25): buildGlobalSessionContextPrefixOnly(), buildInferenceContextPrefix(), formatBlobSection(), formatGlobalSessionContextForLlmPrefix(), GLOBAL_SESSION_CONTEXT_MAX_CHARS, loadAndFormatGlobalSessionContextPrefix(), pdfAttachmentNote(), shouldApplyModeContextLayer() (+17 more) + +### Community 148 - "Email #148" +Cohesion: 0.12 +Nodes (29): extractPdfText(), ExtractPdfTextResult, getSupportedExtractionTypes(), isPdfFile(), loadPdfjs(), reconstructPageText(), supportsTextExtraction(), cleanWhitespace() (+21 more) + +### Community 149 - "LLM #149" +Cohesion: 0.14 +Nodes (30): assertGgufMagicHeader(), computeFileSha256Hex(), GGUF_MAGIC, isGgufMagicBuffer(), readSha256Sidecar(), removeSha256Sidecar(), sha256SidecarPath(), writeSha256Sidecar() (+22 more) + +### Community 150 - "Stores #150" +Cohesion: 0.10 +Nodes (26): baseProps, EmailInboxSyncControls(), EmailInboxSyncControlsProps, emailInboxSyncWindowSelectValue(), EmailInboxToolbar(), EmailInboxToolbarProps, FILTER_TABS, INBOX_FILTER_LABELS (+18 more) + +### Community 151 - "Mocks Lmgtfy Email" +Cohesion: 0.09 +Nodes (5): beginOverlay(), showStreamTriggerOverlay(), showGmailSetupDialog(), showOutlookSetupDialog(), BrowserWindow + +### Community 152 - "Execution" +Cohesion: 0.11 +Nodes (21): auditExecution(), checkParameterSize(), containsPoisonedKeys(), elapsed(), executeToolRequest(), fail(), POISONED_KEYS, sanitizeParameters() (+13 more) + +### Community 153 - "Relationshipdetail" +Cohesion: 0.10 +Nodes (24): HandshakeInitiateModal(), prefillRecipientEmail(), prefillRecipientEmailAsync(), Props, HandshakeRequestView(), prefillRecipientEmail(), Props, DEFAULT_AI_POLICY (+16 more) + +### Community 154 - "Beapmessages Services #154" +Cohesion: 0.12 +Nodes (33): detectAndMigrateEphemeralKey(), ArchivedVaultRecord, decryptKeypair(), deleteSigningKeyVault(), deriveEncryptionKey(), encryptKeypair(), fromBase64Vault(), generateRawEd25519() (+25 more) + +### Community 155 - "Envelopeevaluation" +Cohesion: 0.13 +Nodes (30): BoundaryCheckResult, checkBoundaries(), createEnvelopeSummary(), createMockIncomingMessage(), createRejection(), EnvelopeVerificationResult, evaluateIncomingMessage(), evaluateWRGuardIntersection() (+22 more) + +### Community 156 - "LLM Critical Jobs Remote" +Cohesion: 0.10 +Nodes (13): exec(), party(), record(), CPUCapabilities, DiskInfo, execAsync, HardwareCapabilityChecker, HardwareCapabilityResult (+5 more) + +### Community 157 - "Community 157" +Cohesion: 0.06 +Nodes (32): main, name, private, scripts, build, build:clean, build:nsis, build:portable (+24 more) + +### Community 158 - "Inboxmessagesandboxclone" +Cohesion: 0.11 +Nodes (25): cn(), InboxBeapSourceBadgeDetail(), InboxBeapSourceBadgeListRow(), metaRow(), Props, SandboxCloneDisclosure(), deriveInboxMessageKind(), extractSandboxCloneUiMeta() (+17 more) + +### Community 159 - "Hostaitargetconnectionpresentation" +Cohesion: 0.12 +Nodes (23): HostInferenceTargetRow, appendHostRowsFromListInference(), HostModelRow, HostModelRemoteLane, composeHostAiConnectionSubtitle(), computeHostInferenceGavRowPresentation(), deriveRawHostSelectorStateFromTarget(), hostAiConnectionStatusDetail() (+15 more) + +### Community 160 - "Schemas #160" +Cohesion: 0.06 +Nodes (33): description, type, description, type, description, type, description, type (+25 more) + +### Community 161 - "Schemas #161" +Cohesion: 0.07 +Nodes (33): default, items, type, default, items, type, default, items (+25 more) + +### Community 162 - "Schemas #162" +Cohesion: 0.07 +Nodes (33): properties, type, type, description, type, default, type, default (+25 more) + +### Community 163 - "Ingress" +Cohesion: 0.16 +Nodes (29): buildCapsuleMetadata(), buildEnvelopeSummary(), extractCapsuleHint(), extractEnvelopeHint(), getEmailCandidates(), importBeapMessage(), ImportFileProgressPhase, importFromEmail() (+21 more) + +### Community 164 - "Coordinationservice" +Cohesion: 0.06 +Nodes (32): dependencies, better-sqlite3, jose, @repo/ingestion-core, ws, devDependencies, @types/better-sqlite3, @types/node (+24 more) + +### Community 165 - "LLM #165" +Cohesion: 0.12 +Nodes (26): buildLlamaServerArgs(), computeMaxCtxForVram(), computeMaxCtxPerSlotForVram(), CTX_ABSOLUTE_MAX_TOKENS, CTX_MIN_TOKENS, estimateKvBytesPerTokenFromGgufBuffer(), estimateKvBytesPerTokenFromGgufFile(), execAsync (+18 more) + +### Community 166 - "LLM #166" +Cohesion: 0.14 +Nodes (24): AiModelCapability, fetchOllamaInstalledModelNames(), findInstalledExact(), isLikelyOllamaEmbeddingModel(), normalizeOllamaModelBaseName(), pickEmbeddingModelForTags(), resolveOllamaEmbeddingAtBaseUrl(), ResolveOllamaEmbeddingInput (+16 more) + +### Community 167 - "Beapbuilder #167" +Cohesion: 0.11 +Nodes (27): CapsuleAttachment, RasterProof, VisionFallbackButtonProps, DraftAttachmentParseItem, draftAttachmentParseRejectedUpdate(), DraftAttachmentParseUpdate, runDraftAttachmentParseWithFallback(), extractPdfText() (+19 more) + +### Community 168 - "Diffwatcher" +Cohesion: 0.13 +Nodes (15): binarySentinel(), buildUnifiedStyleDiff(), DEFAULT_ALLOWED_EXTENSIONS, DiffWatcherService, isAllowedExtension(), isBinaryBuffer(), parseBinarySentinel(), parsePathOnly() (+7 more) + +### Community 169 - "Email Providers #169" +Cohesion: 0.20 +Nodes (6): accountsHost(), buildZohoCompositeMessageId(), mailHost(), parseZohoCompositeMessageId(), unwrapData(), ZohoProvider + +### Community 170 - "LLM #170" +Cohesion: 0.13 +Nodes (12): DEFAULT_CONFIG, execAsync, HardwareService, ChatRequest, ChatResponse, HardwareInfo, LlmConfig, LlmModelConfig (+4 more) + +### Community 171 - "Handshake #171" +Cohesion: 0.11 +Nodes (24): BlockCard(), blockTitle(), ContextBlockWithVisibility, ContextGraphFilter, CopyableHash(), CryptoDetailsContent(), extractTextFromPayload(), formatDate() (+16 more) + +### Community 172 - "Stores #172" +Cohesion: 0.11 +Nodes (28): BuiltinTemplateField, combinedRecipientFieldText(), CompanyProfile, DEFAULT_COMPANY_PROFILE, findTemplateFieldForVaultApply(), isLegacyRecipientAddressField(), isLegacyRecipientNameField(), isLegacySenderAddressField() (+20 more) + +### Community 173 - "Vault Hscontext Handshake" +Cohesion: 0.14 +Nodes (24): resolveNameAfterDraftCreation(), shouldDeleteDraftOnCancel(), EMPTY_CUSTOMS, EMPTY_FIELDS, getCeoForContact(), getCompanyFieldValue(), HsContextProfileEditor(), mapCompanyToProfileFields() (+16 more) + +### Community 174 - "Ingestioncore #174" +Cohesion: 0.13 +Nodes (25): ContentValidationResult, classifySandboxOutboundCapsule(), createSandboxContextSyncRateLimiter(), deriveCapsuleTypeForEgress(), isSandboxAllowedOutboundType(), SANDBOX_CONTEXT_SYNC_MAX_BYTES, SANDBOX_CONTEXT_SYNC_MAX_PER_WINDOW, SANDBOX_CONTEXT_SYNC_RATE_WINDOW_MS (+17 more) + +### Community 175 - "MailGuard" +Cohesion: 0.11 +Nodes (24): buildAuthUrl(), decodeBase64Url(), deleteCredentialsFromDisk(), ensureValidToken(), exchangeCodeForTokens(), exportCredentials(), extractAttachmentsFromParts(), extractBodyFromParts() (+16 more) + +### Community 176 - "Vault #176" +Cohesion: 0.12 +Nodes (27): logoutFast(), clearEmbeddingServiceRef(), handleVaultRPC(), _haState, persistHAState(), ActivateHARequestSchema, CreateContainerSchema, CreateItemSchema (+19 more) + +### Community 177 - "Vault #177" +Cohesion: 0.12 +Nodes (20): constantTimeEqual(), decryptField(), DEFAULT_KDF_PARAMS, deriveKEK(), encryptField(), ensureSodiumReady(), generateSalt(), KDFParams (+12 more) + +### Community 178 - "Scripts" +Cohesion: 0.10 +Nodes (27): appDir, { clearBuildCaches }, distBuild, { execSync }, { existsSync, rmSync }, nativeBuildDirs, os, path (+19 more) + +### Community 179 - "Inboxaicloneclassification" +Cohesion: 0.15 +Nodes (28): inboxAnalyzeStreamPrivilegedBannerMessage(), InboxDetailAiPanel(), inboxFailureLooksEmbeddingOnly(), mapLedgerRecordToSelectedRecipient(), classifyInboxRowForAi(), collectReplyModeMetadataFromObject(), considerProvKeys(), firstString() (+20 more) + +### Community 180 - "Letterviewerport" +Cohesion: 0.13 +Nodes (29): applyReplyRecipientToTemplate(), averageConfidence(), buildCombinedNameAddressBlock(), combineSenderLinesForReplyRecipient(), ExtractedRow(), findBodyField(), findDateField(), findPrimaryRecipientField() (+21 more) + +### Community 181 - "Relayserver #181" +Cohesion: 0.07 +Nodes (29): dependencies, better-sqlite3, @repo/ingestion-core, devDependencies, @types/better-sqlite3, @types/node, typescript, vitest (+21 more) + +### Community 182 - "Email #182" +Cohesion: 0.12 +Nodes (23): collectReadOnlyDashboardSnapshot(), countInbox(), DashboardSnapshotAiSummary, DashboardSnapshotAutosortMessageRow, DashboardSnapshotLatestSession, InboxDashboardSnapshotCollectResult, parseAiSummaryJson(), buildInboxMessagesWhereClause() (+15 more) + +### Community 183 - "Email LLM Internal Inference" +Cohesion: 0.15 +Nodes (23): BEAP_ENDPOINT_CODES, buildInboxAiAnalyzeErrorPayload(), buildInboxAiDraftIpcFailure(), classifyInboxAiError(), errMsg(), failureCodeFrom(), INBOX_CONTEXT_OVERFLOW_USER_MESSAGE, inboxAiDevDebugEnabled() (+15 more) + +### Community 184 - "OCR" +Cohesion: 0.19 +Nodes (12): registerOCRHandlers(), unregisterOCRHandlers(), OCRService, VISION_PROVIDERS, OCRInput, OCRLanguage, OCRMethod, OCROptions (+4 more) + +### Community 185 - "Analysis #185" +Cohesion: 0.10 +Nodes (26): AlignmentRow, AlignmentStatus, ALL_DOMAINS, DEFAULT_CLAIMS, EVENT_TYPE_TO_DOMAIN, EventFilter, FocusState, FocusStickinessState (+18 more) + +### Community 186 - "Stores #186" +Cohesion: 0.12 +Nodes (22): BulkInboxAttachmentsStripProps, softenAnalysisBannerMessage(), canShowSandboxAction, CanShowSandboxCloneActionParams, canShowSandboxCloneIcon(), CanShowSandboxCloneIconParams, getSandboxCloneEligibilityDetail(), logOrchestratorRoleModeConflict() (+14 more) + +### Community 187 - "Internalinferencep2ptransport" +Cohesion: 0.18 +Nodes (28): addRemoteIce(), applyRemoteAnswer(), applyRemoteOffer(), attachDc(), clearIceToMainDrain(), closeOne(), createOne(), emitError() (+20 more) + +### Community 188 - "Handshake #188" +Cohesion: 0.13 +Nodes (19): HandshakeRowVisibility, handshakeRowVisibilityForSession(), isPendingAcceptorPartyForSession(), samePrincipalForInternal(), sessionMatchesParty(), AcceptHandshakeModal(), generateBlockId(), HandshakeRecord (+11 more) + +### Community 189 - "Inference LLM" +Cohesion: 0.13 +Nodes (25): buildTechnicalSummary(), CacheEntry, cacheKeyRemote(), clearGpuStatusCache(), detectNvidiaSmi(), execAsync, fetchJsonWithTimeout(), fetchPsRows() (+17 more) + +### Community 190 - "LLM #190" +Cohesion: 0.12 +Nodes (22): assertHttpsGithubReleaseAssetUrl(), LLAMA_CPP_GITHUB_OWNER_REPO, LLAMA_SERVER_RELEASE_ALLOWED_HOSTS, assetPatternForVariant(), copyAllFilesFlatIntoRoot(), downloadAssetToTemp(), extractZipWindows(), fetchLatestLlamaCppRelease() (+14 more) + +### Community 191 - "Structuredhscontextpanel" +Cohesion: 0.11 +Nodes (23): DocumentSearchMatch, getDefaultApi(), HsContextDocumentReader(), HsContextDocumentReaderApi, HsContextDocumentReaderProps, splitToSyntheticPages(), DialogKind, LINK_COPY (+15 more) + +### Community 192 - "Schemas #192" +Cohesion: 0.07 +Nodes (28): properties, description, maximum, minimum, type, description, pattern, type (+20 more) + +### Community 193 - "Beapbuilder Handshake" +Cohesion: 0.16 +Nodes (24): createDefaultBoundary(), EGRESS_DESTINATION_TYPES, EGRESS_PRESET_CONFIG, EgressDeclaration, EgressDestination, EgressDestinationType, EgressPreset, EnvelopeDisplaySummary (+16 more) + +### Community 194 - "Community 194" +Cohesion: 0.07 +Nodes (28): scripts, check:inbox-validator-gate, check:self-call-loopback, check:write-boundary, check:write-boundary:win, format, format:check, handshake:repair-counterparty (+20 more) + +### Community 195 - "Handshake #195" +Cohesion: 0.12 +Nodes (23): CHUNK_MAX_TOKENS, CHUNK_MIN_TOKENS, CHUNK_TARGET_TOKENS, chunkDocument(), computeChunkHash(), CustomFieldEntry, DAY_ORDER, extractBlocks() (+15 more) + +### Community 196 - "Analysis #196" +Cohesion: 0.10 +Nodes (17): ConsentEvidenceProps, CURRENT_FLAGS, DrawerTab, EvidenceDrawer(), EvidenceDrawerProps, EvidenceTabContent(), generateMockHash(), PackagingEvidence() (+9 more) + +### Community 197 - "Sandboxreadcleanuphint" +Cohesion: 0.09 +Nodes (22): AccountHint(), AccountHintProps, actionsStyle, bannerStyle, contentStyle, detailStyle, dismissBtnStyle, linkStyle (+14 more) + +### Community 198 - "Wrguard" +Cohesion: 0.14 +Nodes (23): isOnSupportedEmailSite(), ProtectedSitesListProps, SOURCE_LABELS, DEFAULT_POLICY_OVERVIEW, DEFAULT_PROTECTED_SITES, DEFAULT_RUNTIME_CONFIG, EmailProvider, EmailProviderType (+15 more) + +### Community 199 - "Canonicalagentconfig" +Cohesion: 0.09 +Nodes (24): AIChatCaptureConfig, CanonicalContextSettings, CanonicalDestination, CanonicalExecutionWorkflow, CanonicalListener, CanonicalMemorySettings, CanonicalReasoningWorkflow, DestinationKind (+16 more) + +### Community 200 - "Depackagingmicrovm #200" +Cohesion: 0.12 +Nodes (23): cleanWhitespace(), convertBlocksToBreaks(), convertLinksToText(), decodeHtmlEntities(), HTML_ENTITIES, htmlToSafeText(), isTrackingPixel(), IMPORTANT: keep this byte-for-byte equivalent to `email/sanitizer.ts`. Any (+15 more) + +### Community 201 - "Email #201" +Cohesion: 0.12 +Nodes (21): BeapSyncConfig, BeapSyncHandle, detectBeapInBody(), detectBeapInParsedJson(), detectBeapInSubject(), detectBeapMessagePackage(), EmailExtractAttachmentTextFn, EmailGetFn (+13 more) + +### Community 203 - "Vault #203" +Cohesion: 0.17 +Nodes (23): launchDBeaver(), require, buildExtractionFailureMessage(), ExtractionOptions, extractPdfMetadata(), extractPdfTextWithVisionApi(), extractTextDirect(), extractTextFromPdf() (+15 more) + +### Community 204 - "Inboxsessionartefact" +Cohesion: 0.15 +Nodes (19): BeapSessionAutomationPanel(), BeapSessionAutomationPanelProps, artefactToSessionRefs(), canShowInboxRunAutomation(), capabilitiesForSessionAttach(), decodePBeapCapsuleObject(), InboxSessionArtefactResolution, inboxValidationState() (+11 more) + +### Community 205 - "Stores #205" +Cohesion: 0.15 +Nodes (21): getMessageAiPreviewLine(), AdaptiveState, scheduleIdle(), useInboxPreloadQueue(), autosortDiagLog(), useEmailInboxStore, ScamWatchdogResult, assembleScamWatchdog() (+13 more) + +### Community 206 - "Schemas #206" +Cohesion: 0.08 +Nodes (25): $defs, eventTagCondition, trigger, triggerCondition, description, description, type, $id (+17 more) + +### Community 207 - "Beapbuilder Handshake #207" +Cohesion: 0.12 +Nodes (24): BeapCapsule, CapsuleBuilderContext, ChatDeliveryConfig, DeliveryAttempt, DeliveryConfig, DeliveryMethod, DeliveryStatus, DispatchResult (+16 more) + +### Community 208 - "BEAP" +Cohesion: 0.18 +Nodes (22): ALLOWED_IMPORT_EXTENSIONS, BEAP_ENCRYPTED_CAPSULE_EXT, BEAP_ENCRYPTED_CAPSULE_MIME, BEAP_MIN_MARKER_TYPE, BEAP_PACKAGE_EXT, BEAP_PACKAGE_MIME, BEAP_VERSION_CURRENT, NON_IMPORTABLE_EXTENSIONS (+14 more) + +### Community 209 - "Orchestratordb" +Cohesion: 0.19 +Nodes (20): applySQLCipherConfig(), applySQLCipherKey(), assertSafeStorageAvailable(), createOrchestratorDB(), createSchema(), deriveLegacyDEK(), generateAndPersistDEK(), getElectronDataDir() (+12 more) + +### Community 210 - "Vault #210" +Cohesion: 0.13 +Nodes (22): ALL_ITEM_CATEGORIES, AttachBlockReason, AttachEvalResult, canAttachContext(), CategoryUILabel, DEFAULT_BINDING_POLICY, getAccessibleRecordTypes(), HandshakeBindingPolicy (+14 more) + +### Community 211 - "Postexecutionverification" +Cohesion: 0.09 +Nodes (17): AIAgent, getPoAEEventTypeLabel(), mockArtefactEvidence, mockCapsuleEvidence, mockExecutionRecord, mockPoAELogHistory, mockPoAEPlaceholder, mockPolicySnapshot (+9 more) + +### Community 212 - "Userevocationbanner" +Cohesion: 0.12 +Nodes (19): bannerStyle, contentStyle, COPY, detailStyle, dismissBtnStyle, Props, RevocationNoticeBanner(), titleStyle (+11 more) + +### Community 213 - "Autooptimizationfingerprint" +Cohesion: 0.15 +Nodes (19): newRunId(), runTrigger(), startAutoOptimization(), stopAutoOptimization(), triggerOptimizationRun(), triggerSnapshotOptimization(), clearLastFingerprint(), computeDomFingerprint() (+11 more) + +### Community 214 - "Viteenvd" +Cohesion: 0.08 +Nodes (24): AnalysisDashboardBridge, AppShellBridge, AutosortBlockReason, BeapBridge, CapturePresetPayload, CustomModesBridge, DebugLogsBridge, GpuStatusForUi (+16 more) + +### Community 215 - "Gridscript" +Cohesion: 0.11 +Nodes (15): calculateNextBoxNumber(), escOpt(), fetchLocalModelNames(), fillModelSelect(), findMaxBoxNumber(), getSessionFromHttpApi(), inlineMarkdown(), modelOptionsStatic() (+7 more) + +### Community 216 - "Schemas #216" +Cohesion: 0.09 +Nodes (25): default, description, type, default, description, type, description, properties (+17 more) + +### Community 217 - "Schemas #217" +Cohesion: 0.08 +Nodes (25): agent, augmented_overlay, button_click, direct_tag, dom_change, dom_event, dom_parser, interval (+17 more) + +### Community 218 - "Automation Conditions Triggers" +Cohesion: 0.17 +Nodes (9): EventTagMatcher, MatchResult, TriggerValidationResult, BodyKeywordsCondition, EventTagCondition, NormalizedEvent, SenderWhitelistCondition, WebsiteFilterCondition (+1 more) + +### Community 219 - "Email #219" +Cohesion: 0.13 +Nodes (9): findAvailablePort(), isPortAvailable(), OAuthCallbackResult, OAuthFlowSession, OAuthServerManager, OAuthState, PendingOAuthRequest, ZOHO_OAUTH_AUTH_URL (+1 more) + +### Community 220 - "Libreoffice" +Cohesion: 0.17 +Nodes (23): clearPersistedManualPath(), collectWindowsRegistrySofficeCandidates(), convertToDocx(), convertToPdf(), dedupeCandidates(), detectLibreOffice(), execAsync, execFileAsync (+15 more) + +### Community 221 - "Handshakecontextsection" +Cohesion: 0.13 +Nodes (18): buildDataWrapper(), ContextItemGovernance, escapeAttr(), escapeXml(), prepareContextForLLM(), VerifiedContextBlock, CONTENT_TYPES, ContextItemEditor() (+10 more) + +### Community 222 - "Schemas #222" +Cohesion: 0.08 +Nodes (24): description, items, type, description, items, minItems, type, reasoningSection (+16 more) + +### Community 223 - "Tsconfig" +Cohesion: 0.08 +Nodes (23): compilerOptions, allowSyntheticDefaultImports, baseUrl, esModuleInterop, jsx, lib, module, moduleResolution (+15 more) + +### Community 225 - "Schemas #225" +Cohesion: 0.09 +Nodes (23): description, items, type, uniqueItems, enum, all, api, chat (+15 more) + +### Community 226 - "Schemas #226" +Cohesion: 0.09 +Nodes (22): agentId, agentNumber, boxNumber, color, enabled, gridSessionId, _helper, id (+14 more) + +### Community 227 - "Wrguard #227" +Cohesion: 0.21 +Nodes (17): EmailAccount, PoliciesOverviewSection(), PoliciesOverviewSectionProps, ProtectedSitesList(), ProtectedSitesSection(), ProtectedSitesSectionProps, RuntimeControlsSection(), RuntimeControlsSectionProps (+9 more) + +### Community 228 - "Coordinationservice #228" +Cohesion: 0.11 +Nodes (4): ConnectedClient, createWsManager(), logOrphanedPendingForUser(), WsManagerAdapter + +### Community 229 - "Retention" +Cohesion: 0.17 +Nodes (13): DEFAULT_RETENTION_CONFIG, RetentionConfig, batchDelete(), daysAgo(), enforceRowCap(), enforceRowCapFiltered(), purgeAuditLog(), purgeQuarantine() (+5 more) + +### Community 230 - "Analysis Dashboard #230" +Cohesion: 0.19 +Nodes (17): compactUrgentReason(), formatTimeCompact(), participantDisplay(), toSessionReviewRow(), triageMetaLine(), UrgentAutosortSessionSection(), compactUrgentReason(), formatTimeCompact() (+9 more) + +### Community 231 - "Autosortsessionreview" +Cohesion: 0.17 +Nodes (18): AiSummaryParsed, AutoSortSessionReview(), AutoSortSessionReviewProps, bucketUrgency(), CATEGORY_COLORS, formatCategoryLabel(), MessageListRow(), SessionRow (+10 more) + +### Community 232 - "Schemas #232" +Cohesion: 0.10 +Nodes (22): executionSection, items, type, executionSection.executionMode, default, enum, type, description (+14 more) + +### Community 233 - "Schemas #233" +Cohesion: 0.10 +Nodes (22): agentBox.side, agentBox.source, display_grid, left, master_tab, right, _source, _schemaInfo (+14 more) + +### Community 234 - "Automation" +Cohesion: 0.16 +Nodes (3): ListenerManager, AutomationConfig, ProcessingResult + +### Community 235 - "Coordinationservice #235" +Cohesion: 0.19 +Nodes (20): createAuth(), hasSandboxEntitlement(), SANDBOX_ENTITLED_TIERS, createHandshakeRegistry(), createHealth(), p2pSignalMessageId(), createPairingCodeRegistry(), createRateLimiter() (+12 more) + +### Community 236 - "Ingestioncore #236" +Cohesion: 0.13 +Nodes (20): AcceptCapsulePayload, ArtefactValidationResult, CandidateCapsuleEnvelope, CapsulePayloadBase, CapsuleType, ContentTypeDiscriminator, ContextSyncCapsulePayload, DistributionDecision (+12 more) + +### Community 237 - "Critical Jobs Remote Email" +Cohesion: 0.13 +Nodes (16): defaultHostWriter(), isSandboxEmailDeliveryShape(), nextDeliveryId(), postSandboxEmailDelivery(), SANDBOX_EMAIL_DELIVERY_SCHEMA_VERSION, SANDBOX_EMAIL_DELIVERY_TYPE, SandboxDeliveryHostWriter, SandboxDeliveryTransport (+8 more) + +### Community 238 - "Devicekeys Orchestratordb" +Cohesion: 0.18 +Nodes (17): computeKeyId(), ExtensionRpcSender, generateNewDeviceKeyPair(), migrateDeviceKeyFromExtension(), requestExtensionDeleteDeviceKey(), requestExtensionDeviceKey(), decryptPrivateKey(), deriveColumnKey() (+9 more) + +### Community 239 - "Letter" +Cohesion: 0.25 +Nodes (20): assertAllowedDocxPath(), assertAllowedLetterComposerPdfPath(), assertAllowedLetterPath(), assertAllowedTemplatePath(), convertedPdfDir(), ensureLetterComposerDirs(), exportStagingDir(), FillFieldPayload (+12 more) + +### Community 240 - "Schemas #240" +Cohesion: 0.10 +Nodes (21): description, items, type, description, items, type, description, items (+13 more) + +### Community 241 - "Schemas #241" +Cohesion: 0.10 +Nodes (21): description, type, description, type, description, properties, type, exampleFiles (+13 more) + +### Community 242 - "Schemas #242" +Cohesion: 0.12 +Nodes (21): agent.listening.sources, destination.kind, agentBox, all, api, chat, docs, dom (+13 more) + +### Community 243 - "Schemas #243" +Cohesion: 0.15 +Nodes (21): trigger.parserTrigger, trigger.type, agent, augmented_overlay, button_click, direct_tag, dom_change, dom_event (+13 more) + +### Community 244 - "Vault Autofill #244" +Cohesion: 0.11 +Nodes (11): ALL_WEBMCP_ERROR_CODES_LOCAL, AUDIT_EXPORT_ALLOWED_PAGES, BG_WEBMCP_ERROR_CODES_LOCAL, CircuitBreakerState, isExtensionUiContext(), isVaultUnlocked(), isWebMcpResultV1Local(), simulateExportHandler() (+3 more) + +### Community 245 - "Beappod" +Cohesion: 0.10 +Nodes (20): dependencies, devDependencies, @types/node, typescript, vitest, engines, node, @types/node (+12 more) + +### Community 246 - "Ingestioncore #246" +Cohesion: 0.10 +Nodes (20): devDependencies, @types/node, typescript, vitest, engines, node, exports, @types/node (+12 more) + +### Community 247 - "Sharedbeapui" +Cohesion: 0.20 +Nodes (14): AttachmentPicker(), AttachmentPickerProps, BeapIdentityBadge(), BeapIdentityBadgeProps, BeapMessageBody(), BeapMessageBodyProps, CapsuleFields(), CapsuleFieldsProps (+6 more) + +### Community 248 - "Internal Inference" +Cohesion: 0.17 +Nodes (16): ALL_P2P_SIGNAL_TYPES, evaluateWebRtcInferenceSignalLifetime(), extractHandshakeId(), FORBIDDEN_KEYS, isWireSchemaVersionOne(), logDropped(), logHostAiSignalTtl(), P2pSignalDrop (+8 more) + +### Community 249 - "OCR #249" +Cohesion: 0.19 +Nodes (6): bootstrapOcrRouterFromOrchestratorKeys(), cloudConfigFromOptimandoApiKeysRecord(), VISION_KEY_ORDER, OCRRouter, CloudAIConfig, VisionProvider + +### Community 250 - "Orchestratordb #250" +Cohesion: 0.16 +Nodes (15): closeOrchestratorDB(), TODO: Implement UI state export if needed, TODO: Implement templates export when template feature is added, isOrchestratorKvSessionKey(), kvBlobToOrchestratorSession(), nonEmptyString(), parseKvSessionTimestamp(), resolveOrchestratorSessionDisplayName() (+7 more) + +### Community 251 - "Analysis #251" +Cohesion: 0.12 +Nodes (19): ExecutionStatusHero(), ExecutionStatusHeroProps, getDefaultStatusIcon(), HeroKPIStrip(), HeroKPIStripProps, KPICard(), KPICardProps, KPIData (+11 more) + +### Community 252 - "Inboxactionicons" +Cohesion: 0.13 +Nodes (14): BeapActionIconButton(), BeapActionIconButtonProps, BeapActionIconKind, BeapInboxRedirectIcon(), BeapInboxRunAutomationIcon(), BeapInboxSandboxCloneIcon(), InboxRedirectActionIcon(), InboxRunAutomationActionIcon() (+6 more) + +### Community 253 - "Schemas #253" +Cohesion: 0.10 +Nodes (20): default, description, type, default, description, type, description, properties (+12 more) + +### Community 254 - "Schemas #254" +Cohesion: 0.12 +Nodes (19): description, $id, agentNumber, boxNumber, enabled, id, identifier, number (+11 more) + +### Community 255 - "Vault Autofill #255" +Cohesion: 0.24 +Nodes (19): applySiteLearningBoosts(), buildFieldFingerprint(), bumpUsageAsync(), chromeLocalRemove(), clearLearnedMappings(), ensureOriginInIndex(), fastHash(), fingerprintMatchScore() (+11 more) + +### Community 256 - "Beappod #256" +Cohesion: 0.19 +Nodes (16): ACCEPTED_ENCODINGS, ACCEPTED_VERSIONS, countFields(), measureDepth(), POISONED_KEYS, sha256Hex(), SIZE_LIMITS, StructuralValidationResult (+8 more) + +### Community 257 - "Ingestioncore #257" +Cohesion: 0.22 +Nodes (16): routeValidatedCapsule(), ingestInput(), PipelineResult, prepareCoordinationRelayNativeBeapRawInput(), validateInput(), buildPlainDraftPayload(), buildProvenanceMetadata(), buildTransportMetadata() (+8 more) + +### Community 258 - "Handshake #258" +Cohesion: 0.15 +Nodes (12): applySchema(), closeLedger(), deriveKeyFromSessionToken(), getLedgerPath(), LedgerContextBlock, LedgerHandshake, loadSQLite(), moduleDir (+4 more) + +### Community 259 - "Orchestratordb #259" +Cohesion: 0.26 +Nodes (3): OrchestratorService, ExportData, Session + +### Community 260 - "Community 260" +Cohesion: 0.11 +Nodes (19): eslint-config-prettier, husky, lint-staged, devDependencies, eslint, eslint-config-prettier, husky, lint-staged (+11 more) + +### Community 261 - "Ingestioncore #261" +Cohesion: 0.20 +Nodes (18): BEAP_HEADER_KEYS, BEAP_MIME_TYPES, checkAttachmentMetadata(), checkHeaderMarkers(), checkJsonStructure(), checkJsonStructureMessagePackage(), checkMimeType(), detectBeapCapsule() (+10 more) + +### Community 262 - "Ingestioncore #262" +Cohesion: 0.11 +Nodes (18): compilerOptions, declaration, declarationMap, module, moduleResolution, outDir, rootDir, skipLibCheck (+10 more) + +### Community 263 - "Sharedbeapui #263" +Cohesion: 0.11 +Nodes (18): devDependencies, react, @types/react, typescript, exports, react, react-dom, @types/react (+10 more) + +### Community 264 - "Orchestratordb #264" +Cohesion: 0.18 +Nodes (14): BEAP_DESKTOP_RUN_AUTOMATION_RESULT_WS_TYPE, BEAP_DESKTOP_RUN_AUTOMATION_WS_TYPE, BeapSessionImportRunDeps, BeapSessionImportRunRequest, BeapSessionImportRunResult, importAndRunBeapSessionFromArtefact(), readHandshakeIdFromBinding(), isFullSessionExportContent() (+6 more) + +### Community 265 - "Vault #265" +Cohesion: 0.18 +Nodes (15): buildCombinedContextText(), ContactEntry, HsContextProfile, normalizeAdHocContext(), normalizeProfileToText(), OpeningHoursEntry, PaymentMethod, PaymentMethodBankAccount (+7 more) + +### Community 266 - "Analysis Dashboard #266" +Cohesion: 0.14 +Nodes (12): AutosortCard(), formatDateTime(), formatDDMM(), getCatColor(), IntelligenceDashboard(), IntelligenceDashboardProps, TODO: wire to a dedicated suspicious/malicious category once model ships those…, TODO: wire to real link-opened-off-band tracking when that feature ships (+4 more) + +### Community 268 - "Schemas #268" +Cohesion: 0.11 +Nodes (18): description, type, description, maximum, minimum, type, description, items (+10 more) + +### Community 269 - "Automation Adapters" +Cohesion: 0.24 +Nodes (9): adaptLegacyConfig(), adaptLegacySource(), extractPatterns(), inferModalities(), legacyAdapter, LegacyConfigAdapter, LegacyAgentConfig, ListenerMode (+1 more) + +### Community 270 - "Beapbuilder #270" +Cohesion: 0.21 +Nodes (14): getAnthropicApiKey(), hasAnthropicApiKey(), saveAnthropicApiKey(), validateAnthropicApiKey(), VisionFallbackButton(), EXTRACT_PROMPT, extractPageWithVision(), extractPdfTextWithVision() (+6 more) + +### Community 271 - "Coordinationservice #271" +Cohesion: 0.18 +Nodes (10): RESOLVER_VERSION, ValidatedIdentity, RateLimiterAdapter, TIER_LIMITS, TierLimits, CANONICAL_TIER_ORDER, highestTierFromRoles(), isKnownTier() (+2 more) + +### Community 273 - "Sharedbeapui #273" +Cohesion: 0.11 +Nodes (17): compilerOptions, declaration, esModuleInterop, jsx, lib, module, moduleResolution, outDir (+9 more) + +### Community 274 - "Letter #274" +Cohesion: 0.20 +Nodes (14): extractPdfTextForIpc(), clamp01(), DetectedFieldShape, detectTemplateFieldsFromPdfPath(), extractPositionedItemsAsync(), loadPdfjs(), normalizeDetected(), PositionedItem (+6 more) + +### Community 275 - "LLM #275" +Cohesion: 0.24 +Nodes (12): DEFAULT_LOCAL_LLM_SERVER_CONFIG, getLocalLlmServerConfig(), LOCAL_LLM_CTX_LONG, LOCAL_LLM_CTX_STANDARD, LocalLlmCtxMode, LocalLlmServerConfig, sanitizeLocalLlmServerConfig(), setLocalLlmServerConfig() (+4 more) + +### Community 276 - "Scripts Installer" +Cohesion: 0.15 +Nodes (12): __dirname, EDITION_PS1, HYPERV_PS1, INSTALLER_DIR, INSTALLER_NSH, SEED_PS1, classifyWindowsEdition(), HOME_EDITION_IDS (+4 more) + +### Community 277 - "Chat Routing Stores" +Cohesion: 0.25 +Nodes (15): assembleStructuredAddress(), canAccessLetterVaultCategory(), fetchAndMapVaultItem(), fetchLetterVaultData(), isVaultRpcSuccess(), LetterVaultListCategory, listLetterVaultItems(), mapVaultFieldsToLetterData() (+7 more) + +### Community 278 - "Tsconfig #278" +Cohesion: 0.12 +Nodes (17): paths, ../../packages/shared/src/*, @ext/*, @ext/audit, @ext/envelope-evaluation, @ext/handshake/handshakeRpc, @ext/ingress, @ext/reconstruction (+9 more) + +### Community 279 - "Community 279" +Cohesion: 0.12 +Nodes (17): dependencies, @noble/curves, pdfjs-dist, react-markdown, webextension-polyfill, wink-nlp, ws, zod (+9 more) + +### Community 280 - "Community 280" +Cohesion: 0.12 +Nodes (17): devDependencies, @crxjs/vite-plugin, @types/chrome, @types/react, @types/react-dom, typescript, vite, @vitejs/plugin-react (+9 more) + +### Community 281 - "Gridscriptbackup" +Cohesion: 0.26 +Nodes (16): fallbackExitFullscreen(), fallbackFullscreen(), handleFullscreenClick(), handleKeydown(), init(), initializeWebSocket(), loadGridConfig(), nextSlide() (+8 more) + +### Community 282 - "Schemas #282" +Cohesion: 0.12 +Nodes (17): description, properties, type, type, items, type, type, type (+9 more) + +### Community 283 - "Schemas #283" +Cohesion: 0.12 +Nodes (17): type, description, properties, type, expectedContext, listening, sources, tags (+9 more) + +### Community 284 - "Aichatcaptureconfig" +Cohesion: 0.21 +Nodes (15): downloadAgentAsJson(), exportAgentToJsonString(), AIChatCaptureConfig, AutoDetectedSelectors, ContextCaptureConfig, DebugCaptureResult, fromLegacyTriggerData(), getDefaultAIChatCaptureConfig() (+7 more) + +### Community 285 - "Canonicalagentconfig #285" +Cohesion: 0.18 +Nodes (15): validateAgentConfig(), validateExecutionSection(), validateReasoningSection(), validateTrigger(), ValidationError, ValidationResult, CanonicalExecution, CanonicalReasoning (+7 more) + +### Community 286 - "Wrguard #286" +Cohesion: 0.18 +Nodes (11): accountConnectionBadge(), EmailProvidersSection(), EmailProvidersSectionProps, pausedRowNoteStyle(), providerDisplayLabel(), gmailAccount, deriveScenario(), ExplainerScenario (+3 more) + +### Community 287 - "Letter #287" +Cohesion: 0.23 +Nodes (15): LetterScanRawExtraction, afterSalutationTrim(), clamp01(), coerceRaw(), emptyFields(), fallbackNormalizedFromRaw(), isRecord(), LETTER_EXTRACT_OUTPUT_KEYS (+7 more) + +### Community 288 - "Letter #288" +Cohesion: 0.21 +Nodes (13): LetterScanPage, mimeForImageExt(), pngDataUrlToBuffer(), processImageFileForLetterViewer(), processPdfForLetterViewer(), bootstrapSource(), copyDirSync(), pdfjsBuildDir() (+5 more) + +### Community 289 - "Analysis #289" +Cohesion: 0.15 +Nodes (9): AnalysisPhase, getMockDashboardState(), DashboardHome(), DashboardHomeProps, EventAnalysisModalProps, mockSystemEvents, SnapshotCardProps, SystemEvent (+1 more) + +### Community 290 - "Stores #290" +Cohesion: 0.18 +Nodes (14): ComposeFieldsForm(), ComposeFieldsFormProps, FieldGroup, GROUP_ORDER, GROUP_TITLES, LANGUAGE_DEFAULTS, LANGUAGE_NAMES, normalizeDetectedLang() (+6 more) + +### Community 291 - "Uicontrasttokens" +Cohesion: 0.15 +Nodes (13): chip, isAuthRelatedError(), P2PHealthStatus, P2PStatusBadge(), CARD, SandboxLinkInfoDialog(), SandboxLinkInfoDialogProps, UI_BADGE (+5 more) + +### Community 292 - "Optimizationcontextassembler" +Cohesion: 0.26 +Nodes (15): assembleOptimizationContext(), AssembleOptimizationContextParams, cloneCtx(), estimateContextTokens(), estimateTokens(), mapProjectToSection(), trimAgentExistingBoxOutputs(), trimAgentSystemPrompts() (+7 more) + +### Community 293 - "Tsconfig #293" +Cohesion: 0.12 +Nodes (16): compilerOptions, allowImportingTsExtensions, baseUrl, isolatedModules, jsx, module, moduleResolution, noEmit (+8 more) + +### Community 294 - "Wrguard #294" +Cohesion: 0.23 +Nodes (14): checkAndApplyProtection(), createBlockOverlay(), initializeOverlayProtection(), logBypassEvent(), protectAttachments(), protectAutomationTriggers(), ProtectionState, protectLinks() (+6 more) + +### Community 295 - "Coordinationservice #295" +Cohesion: 0.20 +Nodes (6): CleanupAdapter, createCleanup(), CoordinationConfig, loadConfig(), main(), request() + +### Community 296 - "Coordinationservice #296" +Cohesion: 0.18 +Nodes (12): coerceCandidateField(), coerceSchemaVersion(), FORBIDDEN_TOP_LEVEL_KEYS, P2P_SIGNAL_EXPIRY_PARSE_GRACE_MS, P2P_SIGNAL_MAX_BODY_BYTES, P2P_SIGNAL_TYPES, P2pSignalParseFail, P2pSignalParseOk (+4 more) + +### Community 297 - "Coordinationservice #297" +Cohesion: 0.12 +Nodes (15): compilerOptions, declaration, module, moduleResolution, outDir, rootDir, skipLibCheck, strict (+7 more) + +### Community 298 - "Relayserver #298" +Cohesion: 0.12 +Nodes (15): compilerOptions, declaration, module, moduleResolution, outDir, rootDir, skipLibCheck, strict (+7 more) + +### Community 299 - "Handshake #299" +Cohesion: 0.18 +Nodes (13): blockIdToTitle(), BlockIndexEntry, buildPrompt(), BuildPromptOptions, buildRagPrompt(), BuildRagPromptOptions, ConversationContext, DEFAULT_TOP_K (+5 more) + +### Community 300 - "Stores #300" +Cohesion: 0.21 +Nodes (14): clamp01(), clampRect(), FieldMappingOverlay(), FieldMappingOverlayProps, fixedPointForCorner(), getFieldColor(), getTextInRect(), normalizeDrawRect() (+6 more) + +### Community 301 - "Schemas #301" +Cohesion: 0.13 +Nodes (14): agentContextFiles, description, enabled, executionSections, _exportedAt, _helper, icon, id (+6 more) + +### Community 302 - "Schemas #302" +Cohesion: 0.13 +Nodes (14): agentContextFiles, description, enabled, executionSections, _exportedAt, _helper, icon, id (+6 more) + +### Community 303 - "Schemas #303" +Cohesion: 0.15 +Nodes (15): default, type, default, type, properties, type, properties, type (+7 more) + +### Community 304 - "Schemas #304" +Cohesion: 0.13 +Nodes (15): description, type, destination, description, properties, required, type, type (+7 more) + +### Community 305 - "Automation Adapters #305" +Cohesion: 0.27 +Nodes (7): ListeningMigrationResult, MigrationResult, TriggerMigration, EventChannel, LegacyListeningConfig, LegacyTrigger, UnifiedTriggerConfig + +### Community 307 - "Vault Autofill #307" +Cohesion: 0.18 +Nodes (14): _availableKinds, createDvIcon(), DvIconClickHandler, getDvIconCount(), _iconBtns, _iconElements, _icons, positionDvIcon() (+6 more) + +### Community 308 - "Vault Autofill #308" +Cohesion: 0.14 +Nodes (5): assertNoInputValuesChanged(), EXTENSION_PATH, FIXTURE_DIR, FIXTURES, getAllInputValues() + +### Community 309 - "Email #309" +Cohesion: 0.15 +Nodes (4): buildValidSealForRowId(), makeSuccessOutcome(), require, TEST_DEK + +### Community 310 - "Stores #310" +Cohesion: 0.22 +Nodes (11): PortSelectButton(), BODY_LINE_WIDTHS, coerceFieldType(), letterComposerPdfFriendlyError(), LetterTemplatePort(), BUILTIN_TEMPLATES, BuiltinLayout, BuiltinTemplate (+3 more) + +### Community 311 - "Gridscriptv2" +Cohesion: 0.22 +Nodes (10): calculateNextBoxNumber(), findMaxBoxNumber(), getCurrentSessionKey(), getSessionFromHttpApi(), inlineMarkdown(), IMPORTANT: Save the identifier BEFORE clearing the config, renderMarkdown(), showV2Dialog() (+2 more) + +### Community 313 - "Policy Schema Domains" +Cohesion: 0.19 +Nodes (13): AutomationRiskClass, AutomationRiskClassSchema, canRememberConsent(), CAPABILITY_RISK_MAP, ExecutionPhase, ExecutionPhaseSchema, getCapabilityRiskClass(), getPresetLimits() (+5 more) + +### Community 314 - "Services #314" +Cohesion: 0.25 +Nodes (12): buildConnectionInfo(), convertToCanonicalFormat(), createMasterSchema(), createUnifiedTemplate(), downloadJson(), downloadMasterSchema(), downloadUnifiedTemplate(), getMasterSchema() (+4 more) + +### Community 315 - "Beappod #315" +Cohesion: 0.14 +Nodes (13): compilerOptions, module, moduleResolution, outDir, rootDir, skipLibCheck, strict, target (+5 more) + +### Community 316 - "Email #316" +Cohesion: 0.19 +Nodes (7): customUserDataPath, applyCustomUserDataPath(), ElectronMockState, installElectronMock(), makeElectronMock(), runBootstrapModule(), markUserDataPathBootstrapped() + +### Community 317 - "Integrity" +Cohesion: 0.26 +Nodes (11): checkConfigHashes(), checkGitCommit(), checkMinisignSignature(), checkSelfHash(), getManifestPath(), getPublicKeyPath(), getResourcesPath(), IntegrityCheck (+3 more) + +### Community 318 - "Scripts #318" +Cohesion: 0.26 +Nodes (12): checkElectronProcess(), checkPort(), __dirname, __filename, generateReport(), loadPgModule(), parseArgs(), results (+4 more) + +### Community 319 - "Scripts Guest" +Cohesion: 0.24 +Nodes (10): HypervisorKind, resolveHypervisorFromPaths(), shouldCreateVm(), shouldReconvergePortForwards(), UBUNTU_CLOUD_IMAGE_MANIFEST, WRDESK_COORDINATION_PORT, WRDESK_GUEST_PORTS, WRDESK_P2P_INGEST_PORT (+2 more) + +### Community 320 - "Scripts #320" +Cohesion: 0.15 +Nodes (9): { basename, executableName }, exePath, expectedConfigured, fs, mz, path, peers, REQUIRED_PEER_FILES (+1 more) + +### Community 321 - "Handshakequickreview" +Cohesion: 0.21 +Nodes (10): BlockCard(), blockTitle(), ContextBlockWithVisibility, DataSectionProps, extractTextFromPayload(), HandshakeQuickReview(), HandshakeQuickReviewProps, isBlockStructured() (+2 more) + +### Community 322 - "Inboxclassificationreconcile" +Cohesion: 0.29 +Nodes (11): applySortSourceWeighting(), combinedClassificationText(), detectPromotionalAndHighStakes(), ESCALATED_CATEGORIES, HIGH_STAKES_RE, PROMOTIONAL_RE, reconcileAnalyzeTriage(), ReconcileClassifyInput (+3 more) + +### Community 323 - "Policy Schema Domains #323" +Cohesion: 0.15 +Nodes (10): HandshakeAutomationPermissions, HandshakeAutomationPermissionsSchema, HandshakeEgressPermissions, HandshakeEgressPermissionsSchema, HandshakeIngressPermissions, HandshakeIngressPermissionsSchema, HandshakeOverridesCollection, HandshakeOverridesCollectionSchema (+2 more) + +### Community 324 - "Canonicalagentboxconfig" +Cohesion: 0.17 +Nodes (10): AgentBoxProvider, AgentBoxProviderValues, AgentBoxSide, AgentBoxSideValues, AgentBoxSource, AgentBoxSourceValues, AgentWithBoxesExport, findConnectedAgentBoxes() (+2 more) + +### Community 325 - "Depackagingmicrovm #325" +Cohesion: 0.17 +Nodes (8): cleaned, here, inputs, lockfile, markerFile, outfile, provenance, provenanceFile + +### Community 326 - "Depackagingmicrovm #326" +Cohesion: 0.18 +Nodes (10): bundle, checkResult(), eml, emlB64, graphJson, here, RFC-822, paths (+2 more) + +### Community 327 - "Letter #327" +Cohesion: 0.30 +Nodes (11): DATE_PATTERNS, EMPTY_RAW, extractFirstDate(), extractIdentificationHints(), extractRawFromScanText(), findReference(), findSalutationLine(), findSubjectLine() (+3 more) + +### Community 329 - "Vault #329" +Cohesion: 0.27 +Nodes (7): bindSocket(), gateCheck(), MockVaultService, simulateHttpMiddleware(), simulateWsVsbtGate(), VSBT_EXEMPT_PATHS, VSBT_EXEMPT_RPC + +### Community 330 - "Scripts #330" +Cohesion: 0.17 +Nodes (7): envId, envSecret, fs, path, root, targetId, targetSecret + +### Community 331 - "Debuglogclipboard" +Cohesion: 0.30 +Nodes (8): DebugLogViewer(), MainProcessLogEntry, buildClipboardText(), filterLogEntries(), formatLineDisplay(), formatLinePlain(), LogEntry, MIXED_LOGS + +### Community 332 - "Ingestiondelegationmodal" +Cohesion: 0.18 +Nodes (9): bodyStyle, cardStyle, ctaButtonStyle, ctaRowStyle, IngestionDelegationModal(), MODAL_COPY, overlayStyle, Props (+1 more) + +### Community 333 - "Schemas #333" +Cohesion: 0.17 +Nodes (12): items, type, type, items, type, deprecatedFields, enums, numericFields (+4 more) + +### Community 334 - "Schemas #334" +Cohesion: 0.17 +Nodes (12): listening.sources, all, api, docs, pdf, screenshot, stream, video (+4 more) + +### Community 335 - "Schemas #335" +Cohesion: 0.17 +Nodes (12): executionSection.executionMode, agent_workflow, direct_response, hybrid, maxWaitTimeMs, number, parserInterval, quietPeriodMs (+4 more) + +### Community 336 - "Schemas #336" +Cohesion: 0.17 +Nodes (12): listening.sources, all, api, docs, pdf, screenshot, stream, video (+4 more) + +### Community 338 - "Content" +Cohesion: 0.29 +Nodes (11): bootstrap(), DEFAULT_LAYOUT, isDisabled(), Layout, makeStyle(), mountOverlay(), readLayout(), saveLayout() (+3 more) + +### Community 339 - "Services UI Optimization" +Cohesion: 0.29 +Nodes (7): requestDomSnapshot(), captureDomSnapshot(), domSnapshotCaptureInjected(), AgentRunResult, DomSlotCapture, DomSnapshot, AgentOptimizationResultProps + +### Community 340 - "Installpgadmin" +Cohesion: 0.20 +Nodes (3): Get-WingetPackageId(), Install-PgAdminWinget(), Install-PostgreSQLWinget() + +### Community 341 - "Community 341" +Cohesion: 0.17 +Nodes (11): dependencies, canvas, canvas, lint-staged, *.{js,jsx,ts,tsx,json,css,md}, name, packageManager, private (+3 more) + +### Community 342 - "Ingestioncore #342" +Cohesion: 0.33 +Nodes (11): CONTENT_VALIDATOR_VERSION, ok(), PLAIN_EMAIL_REQUIRED_STRINGS, QUARANTINE_REQUIRED_STRINGS, RFC-3339, validateAiAnalysisField(), validateAttachmentsCanonical(), validateBeapMessageContent() (+3 more) + +### Community 343 - "Email Sealed Storage" +Cohesion: 0.33 +Nodes (10): buildProvenance(), InboxSealedRow, parseCanonical(), PdfExtractionData, readCanonicalForReseal(), ResealResult, resealWithAiAnalysis(), resealWithPdfExtraction() (+2 more) + +### Community 344 - "LLM #344" +Cohesion: 0.45 +Nodes (4): GgufCursor, parseGgufKvMetadata(), readScalar(), skipValue() + +### Community 345 - "Beapdeliveryack" +Cohesion: 0.25 +Nodes (9): BeapDeliveryAckPayload, DeliveryAckWaiter, deliveryAckWaiters, recentAckByHandshake, removeDeliveryAckWaiter(), resetBeapDeliveryAckWaitersForTests(), setBeapDeliveryAckNotifier(), takeRecentAck() (+1 more) + +### Community 347 - "Viteconfig" +Cohesion: 0.18 +Nodes (5): BASE_ORCHESTRATOR_BUILD_STAMP, BUILD_TIMESTAMP_ISO, __dirname, extSrc, RUNTIME_IDENTITY_GIT_META + +### Community 348 - "Gridintegrationdefaultbadge" +Cohesion: 0.44 +Nodes (10): attachStorageListenerOnce(), collectRowsForSession(), debugEnabled(), logDebug(), logWarn(), parseRoot(), removeBadge(), renderBadge() (+2 more) + +### Community 349 - "Schemas #349" +Cohesion: 0.18 +Nodes (11): trigger.responseReadyMode, first_change, maxWaitTimeMs, number, parserInterval, quiet_period, quietPeriodMs, selector_signal (+3 more) + +### Community 350 - "Schemas #350" +Cohesion: 0.18 +Nodes (11): $defs, llmProvider, description, properties, type, description, type, models (+3 more) + +### Community 351 - "Schemas #351" +Cohesion: 0.20 +Nodes (11): capabilities, execution, listening, reasoning, deprecatedFields, activeEnabled, applyFor, passiveEnabled (+3 more) + +### Community 352 - "Schemas #352" +Cohesion: 0.27 +Nodes (11): agentBox.provider, Claude, Gemini, Grok, Image AI, Local AI, OpenAI, provider (+3 more) + +### Community 353 - "Schemas #353" +Cohesion: 0.18 +Nodes (10): agentBoxes, agents, connectionInfo, agentToBoxMapping, _exportedAt, _helper, miniApps, $schema (+2 more) + +### Community 354 - "Beapbuilder Handshake #354" +Cohesion: 0.27 +Nodes (9): buildContextBlockProofs(), buildContextBlocks, computeBlockHash(), generateBlockId(), HandshakeRefreshResult, sendViaHandshakeRefresh(), UserMessage, mockSendMessage (+1 more) + +### Community 355 - "Vault Autofill #355" +Cohesion: 0.18 +Nodes (7): ADAPTER_PATH, adapterSource, allImports, allSpecifiers, AUTOFILL_DIR, valueImports, valueSpecifiers + +### Community 356 - "Coordinationservice #356" +Cohesion: 0.18 +Nodes (6): AuthAdapter, HealthAdapter, HealthResult, HostAiP2pSignalingCapability, startTime, P2P_SIGNAL_SCHEMA_VERSION + +### Community 357 - "Scripts #357" +Cohesion: 0.25 +Nodes (10): ALLOWLIST_SUFFIXES, checkFile(), RFC-1918, CODE_ROOT, fs, isAllowlisted(), main(), path (+2 more) + +### Community 358 - "Electronbuilderconfig" +Cohesion: 0.22 +Nodes (8): extraResources, findFile(), fs, path, tesseractCoreWasmPath(), tesseractLang, wasm, workspaceRoot + +### Community 359 - "Depackagingmicrovm #359" +Cohesion: 0.24 +Nodes (5): BEAP_CARRIER_PATTERNS, CODE_CONSTRUCT_PATTERNS, DetectionCategory, DetectionFinding, DetectionResult + +### Community 360 - "Email #360" +Cohesion: 0.22 +Nodes (5): buildValidSealForRowId(), makeSealedOutcome(), PACKAGE_JSON, require, TEST_DEK + +### Community 361 - "Email #361" +Cohesion: 0.20 +Nodes (4): CS, Init, MsgPkg, require + +### Community 363 - "Hostaitargetuinormalization" +Cohesion: 0.40 +Nodes (7): areNormalizedHostAiTargetListsEqual(), HostRowExtras, normalizeHostAiTargetForUi(), serializeMergedSelectorModelsForStableUi(), serializeNormalizedHostAiTargetListUi(), stripVolatileShallow(), VOLATILE_ROOT_KEYS + +### Community 364 - "Step8themecontrastregressionstest" +Cohesion: 0.27 +Nodes (7): channelLuminance(), contrastRatio(), __dir, hexToRgb(), MANUAL_STEP8_THEME_SCREENSHOTS, relativeLuminance(), srcRoot + +### Community 365 - "Tsconfignode" +Cohesion: 0.20 +Nodes (9): compilerOptions, allowSyntheticDefaultImports, composite, module, moduleResolution, skipLibCheck, strict, include (+1 more) + +### Community 366 - "Schemas #366" +Cohesion: 0.20 +Nodes (10): dom, listening, exampleFiles, expectedContext, sources, tags, unifiedTriggers, website (+2 more) + +### Community 367 - "Schemas #367" +Cohesion: 0.20 +Nodes (10): default, type, default, type, properties, accountContext, agentContext, sessionContext (+2 more) + +### Community 368 - "Coordinationservice #368" +Cohesion: 0.20 +Nodes (3): HandshakeEntry, HandshakeRegistryAdapter, RecipientRoute + +### Community 369 - "Coordinationservice #369" +Cohesion: 0.24 +Nodes (5): request(), samePrincipalCapsule(), sandboxCapsule(), sealedServiceRpcCapsule(), validBeapCapsule() + +### Community 370 - "Tsconfigbase" +Cohesion: 0.20 +Nodes (9): compilerOptions, module, moduleResolution, noEmit, skipLibCheck, strict, target, types (+1 more) + +### Community 371 - "Email #371" +Cohesion: 0.22 +Nodes (5): require, RIG, SANDBOX_OWNER, SESSION, TEST_DEK + +### Community 372 - "Letter #372" +Cohesion: 0.39 +Nodes (8): collectWtMatches(), effectiveSearch(), escapeXmlText(), FillDocxField, fillDocxPlaceholders(), replaceAllInXml(), replaceFirstAcrossRuns(), WtMatch + +### Community 373 - "LLM #373" +Cohesion: 0.33 +Nodes (6): DeclaredModelResolution, isOllamaModelInstalled(), logModelFallbackLine(), ModelFallbackReason, ModelFallbackWire, resolveDeclaredLocalOllamaModel() + +### Community 374 - "Scripts #374" +Cohesion: 0.22 +Nodes (6): appDir, appNodeModules, fs, packages, path, searchPaths + +### Community 375 - "Scripts #375" +Cohesion: 0.22 +Nodes (8): ebEnv, { existsSync, rmSync }, forwardArgs, path, releaseDir, result, root, { spawnSync } + +### Community 376 - "Chat Routing" +Cohesion: 0.39 +Nodes (7): FALLBACK_FIELD, formatReferenceDataFromLetter(), handleLetterComposerChat(), LETTER_REFERENCE_PROMPT_KEYS, buildLetterComposerSystemPrompt(), buildLetterComposerUserPrompt(), nonEmpty() + +### Community 377 - "Coalescedlistinferencetargets" +Cohesion: 0.33 +Nodes (7): cacheKey(), CoalescedListInferenceInvokeOpts, coalescedListInferenceTargetsInvoke(), handshakeLogLabel(), inFlight, recentlyCompleted, resetCoalescedListInferenceTargetsForTests() + +### Community 378 - "Schemas #378" +Cohesion: 0.22 +Nodes (9): trigger.type, agent, augmented_overlay, direct_tag, dom_event, dom_parser, miniapp, tag_and_condition (+1 more) + +### Community 379 - "Schemas #379" +Cohesion: 0.22 +Nodes (9): trigger.type, agent, augmented_overlay, direct_tag, dom_event, dom_parser, miniapp, tag_and_condition (+1 more) + +### Community 380 - "Schemas #380" +Cohesion: 0.28 +Nodes (9): description, items, type, agent.capabilities, enum, execution, listening, reasoning (+1 more) + +### Community 381 - "Schemas #381" +Cohesion: 0.22 +Nodes (9): trigger.type, agent, augmented_overlay, direct_tag, dom_event, dom_parser, miniapp, tag_and_condition (+1 more) + +### Community 382 - "Orchestration" +Cohesion: 0.22 +Nodes (8): AgentContext, AgentMemory, AIAgent, DisplaySlot, OrchestrationConfig, OrchestrationTemplate, RuntimeInjection, WorkflowStep + +### Community 383 - "Ingestioncore #383" +Cohesion: 0.31 +Nodes (5): emptyTransport, RFC-3339, validImportOnlyArtefact(), validRunArtefact(), validSession() + +### Community 384 - "Scripts #384" +Cohesion: 0.22 +Nodes (8): DEFAULT_FILES, electronBin, files, path, WHY: `better-sqlite3` is electron-rebuilt to Electron's ABI for the app, so it, res, { spawnSync }, vitestEntry + +### Community 385 - "Scripts Session #385" +Cohesion: 0.36 +Nodes (8): buildLedgerSessionToken(), crypto, decodeJwtPayload(), loadIdentity(), main(), openLedger(), path, upsertCoordination() + +### Community 386 - "LLM #386" +Cohesion: 0.39 +Nodes (7): estimateAvailableModelMemoryGb(), estimateMaxResidentModels(), fetchLocalLlmModelSizeBytesByName(), fetchOllamaModelSizeBytesByName, logVramDetect(), modelSizeGb(), VramCapacityEstimate + +### Community 388 - "Scripts #388" +Cohesion: 0.25 +Nodes (7): appDir, { createRequire }, fs, path, { pathToFileURL }, requireFromPkg, worker + +### Community 389 - "Schemas #389" +Cohesion: 0.25 +Nodes (8): first_change, quiet_period, selector_signal, responseReadyMode, default, description, enum, type + +### Community 390 - "Schemas #390" +Cohesion: 0.25 +Nodes (8): dom, listening, exampleFiles, expectedContext, sources, tags, unifiedTriggers, website + +### Community 391 - "Schemas #391" +Cohesion: 0.43 +Nodes (8): provider, Claude, Gemini, Grok, Image AI, Local AI, OpenAI, enum + +### Community 392 - "Errormessages" +Cohesion: 0.32 +Nodes (6): ERROR_MESSAGES, ERROR_PATTERNS, formatError(), formatErrorForNotification(), getErrorMessage(), isConnectionError() + +### Community 394 - "Vault Autofill #394" +Cohesion: 0.25 +Nodes (3): EXTENSION_PATH, FIXTURE_DIR, FIXTURE_FILE + +### Community 395 - "Ingestion" +Cohesion: 0.25 +Nodes (6): DistributionTarget, IngestionIPCResult, InputClassification, OriginClassification, SourceType, ValidationReasonCode + +### Community 396 - "Desktop #396" +Cohesion: 0.29 +Nodes (3): { app, BrowserWindow, Tray, Menu }, path, WebSocket + +### Community 397 - "Internal Inference Handshake Vault" +Cohesion: 0.43 +Nodes (6): backfillLocalX25519PublicKey(), getOrCreateEmbeddingService(), wrapOllamaEmbeddingServiceForSandbox(), defaultOllamaEmbeddingProvider(), getOrCreateOrchestratorEmbeddingService(), setupEmbeddingServiceRef() + +### Community 398 - "LLM #398" +Cohesion: 0.33 +Nodes (6): createPhi3Low(), { exec }, execAsync, fs, path, { promisify } + +### Community 399 - "LLM #399" +Cohesion: 0.29 +Nodes (6): getHandshakeDbMock, getModeByIdMock, isEffectiveSandboxNodeMock, resolveDeclaredModelMock, resolveStrategyMock, warmModelMock + +### Community 400 - "LLM #400" +Cohesion: 0.29 +Nodes (6): getHandshakeDbMock, isEffectiveSandboxNodeMock, resolveAiMock, resolveStrategyMock, waitUntilReadyMock, warmModelMock + +### Community 401 - "Security" +Cohesion: 0.29 +Nodes (5): SecureOperationFailure, SecureOperationReason, SecureOperationResult, SecureOperationState, SecureOperationSuccess + +### Community 402 - "Scripts #402" +Cohesion: 0.29 +Nodes (5): appRoot, eb, path, rebuild, { spawnSync } + +### Community 403 - "Analysis Dashboard #403" +Cohesion: 0.48 +Nodes (6): DashboardTopCardsRow(), formatShortDate(), formatSortComposition(), humanizeCategory(), Props, showCount() + +### Community 405 - "Tsconfig #405" +Cohesion: 0.29 +Nodes (7): include, electron, src, ../extension-chromium/src/beap-messages, ../extension-chromium/src/handshake, ../extension-chromium/src/shared, ../extension-chromium/src/vault/hsContextProfilesRpc.ts + +### Community 406 - "Community 406" +Cohesion: 0.29 +Nodes (7): scripts, build, dev, preview, test, test:watch, test:wrchat + +### Community 407 - "Schemas #407" +Cohesion: 0.29 +Nodes (7): destination.kind, agentBox, chat, email, notification, storage, webhook + +### Community 408 - "Schemas #408" +Cohesion: 0.29 +Nodes (7): deprecatedFields, buttonSelector, inputSelector, outputSelector, outputWaitDelay, outputWaitMethod, tagName + +### Community 409 - "Schemas #409" +Cohesion: 0.33 +Nodes (7): side, left, right, side, description, enum, type + +### Community 410 - "Schemas #410" +Cohesion: 0.33 +Nodes (7): source, display_grid, master_tab, _source, description, enum, type + +### Community 411 - "Schemas #411" +Cohesion: 0.29 +Nodes (7): default, items, type, Image AI, DALL·E 3, Flux Schnell, Nano Banana Pro + +### Community 412 - "Schemas #412" +Cohesion: 0.29 +Nodes (7): destination.kind, agentBox, chat, email, notification, storage, webhook + +### Community 413 - "Schemas #413" +Cohesion: 0.38 +Nodes (7): trigger.responseReadyMode, first_change, quiet_period, selector_signal, responseReadyMode, enum, type + +### Community 414 - "Schemas #414" +Cohesion: 0.29 +Nodes (7): agentBox.provider, Claude, Gemini, Grok, Image AI, Local AI, OpenAI + +### Community 415 - "Schemas #415" +Cohesion: 0.29 +Nodes (7): destination.kind, agentBox, chat, email, notification, storage, webhook + +### Community 416 - "Schemas #416" +Cohesion: 0.29 +Nodes (7): trigger.responseReadyMode, first_change, quiet_period, selector_signal, _schemaInfo, connectionLogic, enums + +### Community 417 - "Gridcontentscript" +Cohesion: 0.52 +Nodes (6): applyConfiguration(), initGridContentScript(), loadGridConfiguration(), saveGridConfiguration(), showErrorNotification(), showSuccessNotification() + +### Community 418 - "Community 418" +Cohesion: 0.29 +Nodes (7): electron, electron, pnpm, onlyBuiltDependencies, overrides, canvas, esbuild + +### Community 419 - "Coordinationservice #419" +Cohesion: 0.29 +Nodes (3): PairingCodeEntry, PairingCodeRegistryAdapter, RegisterResult + +### Community 420 - "Coordinationservice #420" +Cohesion: 0.33 +Nodes (3): registerSandboxHandshake(), request(), sealedServiceRpcCapsule() + +### Community 421 - "Sharedextension" +Cohesion: 0.29 +Nodes (6): main, name, private, type, types, version + +### Community 422 - "Letter #422" +Cohesion: 0.47 +Nodes (5): convertOdtBufferToHtml(), convertOdtXmlToHtml(), stripResidualOdfTags(), pizzip, pizzip + +### Community 424 - "Scripts #424" +Cohesion: 0.33 +Nodes (4): basename, fs, path, winUnpacked + +### Community 425 - "Scripts #425" +Cohesion: 0.33 +Nodes (5): appDir, dirs, { execSync }, { existsSync, rmSync }, path + +### Community 426 - "Gpuinferencebarbadge" +Cohesion: 0.40 +Nodes (5): BadgeVariant, BG, GpuInferenceBarBadge(), LABEL, toVariant() + +### Community 427 - "Tsconfig #427" +Cohesion: 0.33 +Nodes (5): exclude, **/__tests__/**, references, **/*.spec.ts, **/*.test.ts + +### Community 428 - "Schemas #428" +Cohesion: 0.33 +Nodes (6): trigger.parserTrigger, button_click, dom_change, interval, manual, page_load + +### Community 429 - "Schemas #429" +Cohesion: 0.33 +Nodes (6): trigger.parserTrigger, button_click, dom_change, interval, manual, page_load + +### Community 430 - "Schemas #430" +Cohesion: 0.33 +Nodes (6): trigger.parserTrigger, button_click, dom_change, interval, manual, page_load + +### Community 431 - "Community 431" +Cohesion: 0.33 +Nodes (5): main, name, type, types, version + +### Community 432 - "Email #432" +Cohesion: 0.40 +Nodes (4): bulkViewPath, __dirname, __filename, ipcPath + +### Community 433 - "Letter #433" +Cohesion: 0.50 +Nodes (3): escapeHtml(), extractTextFromDoc(), plainTextLinesToParagraphHtml() + +### Community 434 - "LLM #434" +Cohesion: 0.40 +Nodes (4): enableSupervisionMock, ensureManagedMock, isSandboxModeMock, shutdownMock + +### Community 436 - "Scripts #436" +Cohesion: 0.40 +Nodes (4): path, result, { spawnSync }, workspaceRoot + +### Community 437 - "Scripts #437" +Cohesion: 0.40 +Nodes (4): dirs, { existsSync, rmSync }, path, root + +### Community 439 - "Thisdevicecard" +Cohesion: 0.60 +Nodes (3): formatPairingCode(), ThisDeviceCard(), ThisDeviceCardProps + +### Community 442 - "Community 442" +Cohesion: 0.40 +Nodes (4): name, private, type, version + +### Community 444 - "Schemas #444" +Cohesion: 0.40 +Nodes (5): executionSection.executionMode, agent_workflow, direct_response, hybrid, workflow_only + +### Community 445 - "Schemas #445" +Cohesion: 0.40 +Nodes (5): description, maximum, minimum, type, agentNumber + +### Community 446 - "Schemas #446" +Cohesion: 0.40 +Nodes (5): description, maximum, minimum, type, boxNumber + +### Community 447 - "Schemas #447" +Cohesion: 0.40 +Nodes (5): type, tools, description, items, type + +### Community 448 - "Schemas #448" +Cohesion: 0.40 +Nodes (5): executionSection.executionMode, agent_workflow, direct_response, hybrid, workflow_only + +### Community 451 - "Hello" +Cohesion: 0.40 +Nodes (4): name, scripts, test, version + +### Community 452 - "Hello #452" +Cohesion: 0.40 +Nodes (4): extends, include, src, ../../tsconfig.base.json + +### Community 453 - "Sharedextension #453" +Cohesion: 0.40 +Nodes (3): Msg, Ping, Pong + +### Community 454 - "Desktop #454" +Cohesion: 0.50 +Nodes (3): electronProcess, path, { spawn } + +### Community 455 - "Electronenvd" +Cohesion: 0.50 +Nodes (3): NodeJS, ProcessEnv, Window + +### Community 458 - "Internal Inference #458" +Cohesion: 0.50 +Nodes (3): getHostInternalInferencePolicyMock, getLocalLlmProviderStatusMock, resolveModelForInternalInferenceMock + +### Community 459 - "Internal Inference #459" +Cohesion: 0.50 +Nodes (3): getPolicy, ledgerPairing, ledgerSummary + +### Community 464 - "Step10wrchathostdiscoveryordercontractte" +Cohesion: 0.50 +Nodes (3): content, __dir, src + +### Community 466 - "Tsconfig #466" +Cohesion: 0.50 +Nodes (4): lib, DOM, DOM.Iterable, ES2020 + +### Community 467 - "Schemas #467" +Cohesion: 0.50 +Nodes (4): default, description, type, autoDetectSelectors + +### Community 468 - "Schemas #468" +Cohesion: 0.50 +Nodes (4): default, description, type, captureInput + +### Community 469 - "Schemas #469" +Cohesion: 0.50 +Nodes (4): default, description, type, captureOutput + +### Community 470 - "Schemas #470" +Cohesion: 0.50 +Nodes (4): default, description, type, enterKeyIgnoreShift + +### Community 471 - "Schemas #471" +Cohesion: 0.50 +Nodes (4): default, description, type, maxWaitTimeMs + +### Community 472 - "Schemas #472" +Cohesion: 0.50 +Nodes (4): default, description, type, overlayModeElement + +### Community 473 - "Schemas #473" +Cohesion: 0.50 +Nodes (4): description, minimum, type, parserInterval + +### Community 474 - "Schemas #474" +Cohesion: 0.50 +Nodes (4): sanitizeRemoveBoilerplate, default, description, type + +### Community 475 - "Schemas #475" +Cohesion: 0.50 +Nodes (4): sanitizeStripMarkdown, default, description, type + +### Community 476 - "Schemas #476" +Cohesion: 0.50 +Nodes (4): triggerOnEnterKey, default, description, type + +### Community 477 - "Schemas #477" +Cohesion: 0.50 +Nodes (4): capabilities, execution, listening, reasoning + +### Community 478 - "Schemas #478" +Cohesion: 0.50 +Nodes (4): contextSettings, accountContext, agentContext, sessionContext + +### Community 479 - "Schemas #479" +Cohesion: 0.50 +Nodes (4): memorySettings, accountEnabled, agentEnabled, sessionEnabled + +### Community 480 - "Schemas #480" +Cohesion: 0.50 +Nodes (4): description, pattern, type, color + +### Community 481 - "Schemas #481" +Cohesion: 0.50 +Nodes (4): default, description, type, enabled + +### Community 482 - "Schemas #482" +Cohesion: 0.50 +Nodes (4): description, format, type, _exportedAt + +### Community 483 - "Schemas #483" +Cohesion: 0.50 +Nodes (4): description, pattern, type, identifier + +### Community 484 - "Schemas #484" +Cohesion: 0.50 +Nodes (4): description, pattern, type, masterTabId + +### Community 485 - "Schemas #485" +Cohesion: 0.50 +Nodes (4): description, minimum, type, number + +### Community 486 - "Schemas #486" +Cohesion: 0.50 +Nodes (4): contextSettings, accountContext, agentContext, sessionContext + +### Community 487 - "Schemas #487" +Cohesion: 0.50 +Nodes (4): trigger.responseReadyMode, first_change, quiet_period, selector_signal + +### Community 488 - "Schemas #488" +Cohesion: 0.50 +Nodes (4): memorySettings, accountEnabled, agentEnabled, sessionEnabled + +### Community 490 - "Agentexportimport" +Cohesion: 0.67 +Nodes (4): extractValue(), importAgentFromJson(), importTriggers(), readAgentFromFile() + +### Community 492 - "Debugsessiondata" +Cohesion: 0.50 +Nodes (3): agentModelKeys, extensionActive, sessionKeys + +### Community 493 - "Coordinationservice #493" +Cohesion: 0.50 +Nodes (3): __dirname, distServer, pkgRoot + +### Community 510 - "Schemas #510" +Cohesion: 0.67 +Nodes (3): description, type, channel + +### Community 511 - "Schemas #511" +Cohesion: 0.67 +Nodes (3): description, type, command + +### Community 512 - "Schemas #512" +Cohesion: 0.67 +Nodes (3): description, type, domParserRules + +### Community 513 - "Schemas #513" +Cohesion: 0.67 +Nodes (3): description, type, domParseSelector + +### Community 514 - "Schemas #514" +Cohesion: 0.67 +Nodes (3): description, type, domParseTarget + +### Community 515 - "Schemas #515" +Cohesion: 0.67 +Nodes (3): description, type, outputSelector + +### Community 516 - "Schemas #516" +Cohesion: 0.67 +Nodes (3): type, integer, string + +### Community 517 - "Schemas #517" +Cohesion: 0.67 +Nodes (3): description, type, outputWaitMethod + +### Community 518 - "Schemas #518" +Cohesion: 0.67 +Nodes (3): description, type, overlayButtonLabel + +### Community 519 - "Schemas #519" +Cohesion: 0.67 +Nodes (3): description, type, overlayModeEmpty + +### Community 520 - "Schemas #520" +Cohesion: 0.67 +Nodes (3): description, type, overlayModeSelection + +### Community 521 - "Schemas #521" +Cohesion: 0.67 +Nodes (3): description, type, overlayPayloadCoords + +### Community 522 - "Schemas #522" +Cohesion: 0.67 +Nodes (3): description, type, overlayPayloadSelection + +### Community 523 - "Schemas #523" +Cohesion: 0.67 +Nodes (3): description, type, overlayPhrases + +### Community 524 - "Schemas #524" +Cohesion: 0.67 +Nodes (3): description, type, overlayUrlPattern + +### Community 525 - "Schemas #525" +Cohesion: 0.67 +Nodes (3): workflowId, description, type + +### Community 526 - "Schemas #526" +Cohesion: 0.67 +Nodes (3): description, type, _helper + +### Community 527 - "Schemas #527" +Cohesion: 0.67 +Nodes (3): description, type, model + +### Community 528 - "Schemas #528" +Cohesion: 0.67 +Nodes (3): $schema, description, type + +### Community 529 - "Schemas #529" +Cohesion: 0.67 +Nodes (3): title, description, type + +## Knowledge Gaps +- **4095 isolated node(s):** `{ app, BrowserWindow, Tray, Menu }`, `path`, `WebSocket`, `name`, `version` (+4090 more) + These have ≤1 connection - possible missing edges or undocumented components. +- **78 thin communities (<3 nodes) omitted from report** — run `graphify query` to explore isolated nodes. + +## Suggested Questions +_Questions this graph is uniquely positioned to answer:_ + +- **Why does `_buffer` connect `Critical Jobs Depackagingmicrovm Letter` to `Internal Host Inference`, `Beappod #256`, `Host AI Relay Capsules`, `Ingestioncore #257`, `Scripts Session #385`, `Sealed Storage Lifecycle`, `P2P Inference Flags`, `Critical Jobs Dispatcher`, `Handshake IPC Governance`, `Capsule Session Builder`, `Vault #138`, `Coordination WS Relay`, `Email Gateway Providers`, `Internal Inference Handshake Vault`, `Electron Main Window`, `Letter #274`, `LLM #149`, `Hypervisor Depackage Worker`, `Execution`, `Email Providers`, `Letter #288`, `Coordinationservice #420`, `Handshake Sandbox Ingestioncore`, `LLM #165`, `LLM #423`, `Diffwatcher`, `Email Domain Providers`, `Email Providers #169`, `Coordinationservice #295`, `Email Quarantineblobstorage Sealed Storage`, `Ingestioncore #174`, `MailGuard`, `Vault #176`, `Letter #433`, `Vault Autofill Critical Jobs`, `Email BEAP Depackagingmicrovm`, `Depackagingmicrovm`, `Vault #177`, `Email Critical Jobs`, `OCR`, `Internal Inference Email Ingestionpolltrigger`, `Email #316`, `Vault`, `Relayserver`, `Email Providers #66`, `Handshake #195`, `Depackagingmicrovm #200`, `Vault #328`, `Orchestratordb`, `Vault Handshake`, `Email Providers #85`, `Vault #86`, `LLM #344`, `Libreoffice`, `Vault #93`, `Handshake #95`, `Critical Jobs Remote`, `Ingestioncore`, `Auth Vault`, `Email Providers #105`, `Coordinationservice #235`, `Critical Jobs Remote Email`, `Devicekeys Orchestratordb`, `Letter`, `Coordinationservice #369`, `Internal Inference LLM Email`, `Auth`?** + _High betweenness centrality (0.093) - this node is a cross-community bridge._ +- **Why does `registerLetterComposerIpcHandlers()` connect `Letter` to `Letter #288`, `Letter #422`, `Letter #327`, `LLM Email`, `Letter #433`, `Letter #274`, `Libreoffice`, `Letter #372`, `Mocks Lmgtfy Email`, `Critical Jobs Depackagingmicrovm Letter`, `Letter #287`?** + _High betweenness centrality (0.058) - this node is a cross-community bridge._ +- **Why does `dependencies` connect `Community 96` to `Community 547`, `Community 548`, `Community 549`, `Letter #422`, `Community 550`, `Community 551`, `Community 552`, `Community 553`, `Community 554`, `Community 555`, `Community 556`, `Community 557`, `Community 157`?** + _High betweenness centrality (0.041) - this node is a cross-community bridge._ +- **Are the 3 inferred relationships involving `getHandshakeRecord()` (e.g. with `handleIngestionRPC()` and `registerIngestionRoutes()`) actually correct?** + _`getHandshakeRecord()` has 3 INFERRED edges - model-reasoned connections that need verification._ +- **What connects `{ app, BrowserWindow, Tray, Menu }`, `path`, `WebSocket` to the rest of the system?** + _4095 weakly-connected nodes found - possible documentation gaps or missing edges._ +- **Should `Internal Host Inference` be split into smaller, more focused modules?** + _Cohesion score 0.02593606630161314 - nodes in this community are weakly interconnected._ +- **Should `Handshake Core Records` be split into smaller, more focused modules?** + _Cohesion score 0.0220214568040655 - nodes in this community are weakly interconnected._ \ No newline at end of file diff --git a/graphify-out/cache/stat-index.json b/graphify-out/cache/stat-index.json new file mode 100644 index 000000000..3cb78197b --- /dev/null +++ b/graphify-out/cache/stat-index.json @@ -0,0 +1 @@ +{".github/workflows/tests.yml":{"size":1246,"mtime_ns":1786206352118715391,"word_count":129},".github/workflows/webmcp-ci.yml":{"size":2482,"mtime_ns":1786206352118715391,"word_count":235},".husky/pre-commit":{"size":66,"mtime_ns":1786206352118715391,"word_count":8},"Annex I \u2013 BEAP\u2122 Protocol Enforcement Mechanics.pdf":{"size":4243912,"mtime_ns":1786206352142711715,"word_count":0},"Annex II \u2014 Relational Automation, Graph Routing, and Gateway Mechanics.pdf":{"size":136821,"mtime_ns":1786206352142711715,"word_count":0},"Annex III \u2014 Proof of Authoritative Capability (PoAC\u2122).pdf":{"size":122295,"mtime_ns":1786206352142711715,"word_count":0},"Annex IV \u2014 Industrial Field Operation and Governed Synchronization of the WR Graph\u2122.pdf":{"size":3881158,"mtime_ns":1786206352174706812,"word_count":0},"Annex IX \u2014 Public Handshakes and Contract-Bound Web Interaction.pdf":{"size":2559890,"mtime_ns":1786206352186704973,"word_count":0},"Annex V \u2014 Media Reconstruction and Secure Presentation.pdf":{"size":1128784,"mtime_ns":1786206352194703747,"word_count":0},"Annex VI \u2014 WR Preparation Stages.pdf":{"size":1385468,"mtime_ns":1786206352202702522,"word_count":0},"Annex VII \u2014 Handshake Core, Profiles, Capability Manifests, Grants, and pBEAP\u2122.pdf":{"size":315203,"mtime_ns":1786206352206701909,"word_count":0},"Annex VIII \u2014 Perceived Real-Time Visual Information Delivery.pdf":{"size":3009740,"mtime_ns":1786206352226698844,"word_count":0},"Annex X \u2014 WR Guard\u2122 and Capability-Governed Information Flow for Hybrid AI.pdf":{"size":229404,"mtime_ns":1786206352226698844,"word_count":0},"Annex XI - WR Pointer & Augmented Overlay.pdf":{"size":3357484,"mtime_ns":1786206352242696393,"word_count":0},"Annex XII \u2014 Real-Time P2P Coordination Contexts.pdf":{"size":812172,"mtime_ns":1786206352246695780,"word_count":0},"Annex XIII \u2014 Hybrid AI in Inhomogeneous Corporate Environments.pdf":{"size":1808512,"mtime_ns":1786206352258693941,"word_count":0},"Annex XIV \u2014 Scoped Worlds.pdf":{"size":1721980,"mtime_ns":1786206352266692716,"word_count":0},"Annex XV \u2014 Physical-World Object Designation.pdf":{"size":921810,"mtime_ns":1786206352274691490,"word_count":0},"Annex XVI \u2014 WR Code\u00ae - Transport-Agnostic Reference and Resolution Architecture.pdf":{"size":1550937,"mtime_ns":1786206352282690264,"word_count":0},"Annex XVII \u2014 WR Entries\u2122 and the Publisher Console.pdf":{"size":568286,"mtime_ns":1786206352286689652,"word_count":0},"CANONCIAL-SPECIFICATION LICENSE(CSL1.2).txt":{"size":5730,"mtime_ns":1786206352286689652,"word_count":719},"CANONCIAL-SPECIFICATION LICENSE(CSL1.3).txt":{"size":5787,"mtime_ns":1786206352286689652,"word_count":727},"CANONCIAL-SPECIFICATION LICENSE(CSL1.4).txt":{"size":5842,"mtime_ns":1786206352286689652,"word_count":729},"COMPOSE_MODE_DIAGNOSIS.md":{"size":15472,"mtime_ns":1786206352286689652,"word_count":1825},"DOCUMENTATION-LICENSE.pdf":{"size":686822,"mtime_ns":1786206352290689039,"word_count":0},"GOVERNANCE-1.1.txt":{"size":5197,"mtime_ns":1786206352290689039,"word_count":629},"GOVERNANCE-1.2.txt":{"size":5197,"mtime_ns":1786206352290689039,"word_count":629},"GOVERNANCE-1.3.txt":{"size":5197,"mtime_ns":1786206352290689039,"word_count":629},"GOVERNANCE-1.4.txt":{"size":5197,"mtime_ns":1786206352290689039,"word_count":629},"GOVERNANCE-1.5.txt":{"size":5197,"mtime_ns":1786206352290689039,"word_count":629},"GOVERNANCE-1.6.txt":{"size":5197,"mtime_ns":1786206352290689039,"word_count":629},"GOVERNANCE-1.7.txt":{"size":5197,"mtime_ns":1786206352290689039,"word_count":629},"GOVERNANCE-1.8.txt":{"size":5197,"mtime_ns":1786206352290689039,"word_count":629},"GOVERNANCE-1.9.txt":{"size":5298,"mtime_ns":1786206352290689039,"word_count":644},"GOVERNANCE-2.0.txt":{"size":5295,"mtime_ns":1786206352290689039,"word_count":644},"GOVERNANCE-2.1.txt":{"size":5461,"mtime_ns":1786206352294688426,"word_count":654},"GOVERNANCE.txt":{"size":4841,"mtime_ns":1786206352294688426,"word_count":599},"High-Impact_Examples_Optirando_System.pdf":{"size":459232,"mtime_ns":1786206352294688426,"word_count":0},"OpenGiraffeUI.pdf":{"size":323977,"mtime_ns":1786206352298687813,"word_count":0},"Optimandoai-research-paper-v201.pdf":{"size":11922507,"mtime_ns":1786206352362678007,"word_count":0},"Optirando.png":{"size":90423,"mtime_ns":1786206352362678007,"word_count":429},"SURFACE_FAILURE_REPORT.md":{"size":11644,"mtime_ns":1786206352362678007,"word_count":1434},"SiliconCargo-research-paper-v202-r2.pdf":{"size":13280635,"mtime_ns":1786206352434666976,"word_count":0},"TRIAGE_REPORT.md":{"size":14516,"mtime_ns":1786206352434666976,"word_count":1743},"WRCODE-CANNONCIAL-SPECIFICATION LICENSE(CSL1.0).txt":{"size":5525,"mtime_ns":1786206352434666976,"word_count":703},"annex-ai-v10.pdf":{"size":277118,"mtime_ns":1786206352438666363,"word_count":0},"annexA1-v4.pdf":{"size":207213,"mtime_ns":1786206352438666363,"word_count":0},"annexa1-v5.pdf":{"size":211485,"mtime_ns":1786206352438666363,"word_count":0},"annexa1-v8.pdf":{"size":257571,"mtime_ns":1786206352442665750,"word_count":0},"code/ADDLISTENER_CRASH_ANALYSIS.md":{"size":10060,"mtime_ns":1786206352442665750,"word_count":1095},"code/ANALYSIS_AI_AGENT_SESSION_STORAGE.md":{"size":10193,"mtime_ns":1786206352442665750,"word_count":1220},"code/ANALYSIS_CANVAS_CRASH_REPORT.md":{"size":6010,"mtime_ns":1786206352442665750,"word_count":808},"code/ARCHITECTURE_VAULT.md":{"size":24938,"mtime_ns":1786206352442665750,"word_count":2662},"code/ATTACHMENT_CONSISTENCY_FIX.md":{"size":6854,"mtime_ns":1786206352442665750,"word_count":812},"code/ATTACHMENT_NO_CONTENT_DIAGNOSIS.md":{"size":10519,"mtime_ns":1786206352442665750,"word_count":1391},"code/ATTACHMENT_UX_FIX_SUMMARY.md":{"size":6075,"mtime_ns":1786206352442665750,"word_count":869},"code/AUTOSTART_FIX.md":{"size":3422,"mtime_ns":1786206352442665750,"word_count":505},"code/BEAP_CODEBASE_ANALYSIS.md":{"size":15388,"mtime_ns":1786206352442665750,"word_count":1968},"code/BEAP_DIAGNOSTIC_ANALYSIS.md":{"size":20648,"mtime_ns":1786206352442665750,"word_count":2385},"code/BEAP_ERROR_STRINGS_AUDIT.md":{"size":14015,"mtime_ns":1786206352442665750,"word_count":2068},"code/BEAP_FEEDBACK_AUDIT.md":{"size":6440,"mtime_ns":1786206352442665750,"word_count":933},"code/BEAP_HANDSHAKE_FULL_AUDIT.md":{"size":7715,"mtime_ns":1786206352442665750,"word_count":1123},"code/BEAP_INBOX_HANDSHAKE_TYPE_FILTER_ANALYSIS.md":{"size":17845,"mtime_ns":1786206352442665750,"word_count":2178},"code/BEAP_INBOX_REVERIFICATION_AUDIT.md":{"size":14074,"mtime_ns":1786206352442665750,"word_count":1650},"code/BEAP_LINUX_DIAGNOSTIC_AUDIT.md":{"size":5980,"mtime_ns":1786206352442665750,"word_count":732},"code/BEAP_P2P_DELIVERY_DIAGNOSTIC.md":{"size":8627,"mtime_ns":1786206352442665750,"word_count":1045},"code/BEAP_QBEAP_PQ_DIAGNOSTIC_REPORT.md":{"size":6143,"mtime_ns":1786206352442665750,"word_count":855},"code/BEAP_ROUNDTRIP_DIAGNOSTIC.md":{"size":7166,"mtime_ns":1786206352442665750,"word_count":841},"code/BEAP_WRDESK_STATUS_REPORT.md":{"size":19399,"mtime_ns":1786206352442665750,"word_count":2469},"code/CHAT_EMPTY_RESPONSE_DIAGNOSIS.md":{"size":6826,"mtime_ns":1786206352442665750,"word_count":907},"code/CHAT_NO_SELECTION_FIX.md":{"size":5519,"mtime_ns":1786206352442665750,"word_count":764},"code/CHAT_RETRIEVAL_ANALYSIS.md":{"size":12437,"mtime_ns":1786206352442665750,"word_count":1594},"code/CHAT_RETRIEVAL_PATCH.md":{"size":20722,"mtime_ns":1786206352442665750,"word_count":2086},"code/CHAT_RETRIEVAL_VERIFICATION.md":{"size":6969,"mtime_ns":1786206352442665750,"word_count":924},"code/CODE_REVIEW_SYSTEM_TAB.md":{"size":11677,"mtime_ns":1786206352442665750,"word_count":1538},"code/COMPANY_DATA_HS_PROFILE_FIELD_COMPARISON.md":{"size":20032,"mtime_ns":1786206352442665750,"word_count":3014},"code/COMPLETE_FIELD_DISPLAY.md":{"size":6553,"mtime_ns":1786206352442665750,"word_count":876},"code/COMPLETE_FIX_GUIDE.md":{"size":11828,"mtime_ns":1786206352442665750,"word_count":1454},"code/COORDINATION_SECURITY_AUDIT.md":{"size":12393,"mtime_ns":1786206352442665750,"word_count":1945},"code/CRITICAL_STORAGE_ISSUE.md":{"size":5373,"mtime_ns":1786206352442665750,"word_count":716},"code/CURSOR_WORKSPACE_ROOT.txt":{"size":756,"mtime_ns":1786206352442665750,"word_count":94},"code/DASHBOARD_ARCHITECTURE.md":{"size":30319,"mtime_ns":1786206352442665750,"word_count":3410},"code/DEPACKAGING_PIPELINE_TRACE.md":{"size":13588,"mtime_ns":1786206352442665750,"word_count":1625},"code/DEV_STARTUP.md":{"size":4560,"mtime_ns":1786206352442665750,"word_count":580},"code/DOCUMENT_VAULT.md":{"size":9772,"mtime_ns":1786206352442665750,"word_count":1110},"code/EMAIL_PROVIDER_ROADMAP.md":{"size":1679,"mtime_ns":1786206352442665750,"word_count":234},"code/EMPTY_STATES_AUDIT.md":{"size":9160,"mtime_ns":1786206352442665750,"word_count":1354},"code/ENCRYPTED_SQLITE_BACKEND.md":{"size":5605,"mtime_ns":1786206352442665750,"word_count":753},"code/ENTITLEMENT_FLOW_DIAGNOSIS.md":{"size":9527,"mtime_ns":1786206352442665750,"word_count":1534},"code/EXPORT_IMPLEMENTATION.md":{"size":5146,"mtime_ns":1786206352442665750,"word_count":676},"code/EXTENDED_HIGH_ASSURANCE_REPORT.md":{"size":24789,"mtime_ns":1786206352442665750,"word_count":3511},"code/FINAL_TEST_GUIDE.md":{"size":4662,"mtime_ns":1786206352442665750,"word_count":794},"code/FINAL_VAULT_IMPLEMENTATION_REPORT.md":{"size":33328,"mtime_ns":1786206352446665138,"word_count":3986},"code/FINE_GRAINED_GOVERNANCE_IMPLEMENTATION_PLAN.md":{"size":4205,"mtime_ns":1786206352446665138,"word_count":433},"code/FINE_GRAINED_GOVERNANCE_VERIFICATION.md":{"size":5967,"mtime_ns":1786206352446665138,"word_count":650},"code/FINE_GRAINED_POLICY_ROOT_CAUSE_ANALYSIS.md":{"size":10792,"mtime_ns":1786206352446665138,"word_count":1260},"code/FIX_AGENT_BOX_ALLOCATION_LOGIC.md":{"size":6579,"mtime_ns":1786206352446665138,"word_count":990},"code/FIX_CONFIG_PARSING.md":{"size":6082,"mtime_ns":1786206352446665138,"word_count":780},"code/GPU_DIAGNOSIS.md":{"size":10266,"mtime_ns":1786206352446665138,"word_count":1403},"code/GRID_V2_TEST_GUIDE.md":{"size":5471,"mtime_ns":1786206352446665138,"word_count":907},"code/HANDSHAKE_ACCEPTANCE_TEST_GUIDE.md":{"size":5710,"mtime_ns":1786206352446665138,"word_count":771},"code/HANDSHAKE_ACCEPTED_TO_ACTIVE_TRACE.md":{"size":11152,"mtime_ns":1786206352446665138,"word_count":1267},"code/HANDSHAKE_ARCHITECTURE_AUDIT.md":{"size":19734,"mtime_ns":1786206352446665138,"word_count":1565},"code/HANDSHAKE_CONTEXT.md":{"size":8017,"mtime_ns":1786206352446665138,"word_count":956},"code/HANDSHAKE_CONTEXT_ARCHITECTURE_ANALYSIS.md":{"size":23579,"mtime_ns":1786206352446665138,"word_count":2699},"code/HANDSHAKE_CONTEXT_DRAFT_UPLOAD_QA_ANALYSIS.md":{"size":18121,"mtime_ns":1786206352446665138,"word_count":2372},"code/HANDSHAKE_CONTEXT_REGRESSION_ANALYSIS.md":{"size":19155,"mtime_ns":1786206352446665138,"word_count":2395},"code/HANDSHAKE_CONTEXT_VAULT_UI_REGRESSION_ANALYSIS.md":{"size":21630,"mtime_ns":1786206352446665138,"word_count":2659},"code/HANDSHAKE_DIAGNOSIS_WINDOWS.md":{"size":5052,"mtime_ns":1786206352446665138,"word_count":761},"code/HANDSHAKE_ENFORCEMENT.md":{"size":11812,"mtime_ns":1786206352446665138,"word_count":1332},"code/HANDSHAKE_HASHING_ANALYSIS.md":{"size":14865,"mtime_ns":1786206352446665138,"word_count":1652},"code/HANDSHAKE_KEY_EXCHANGE_DIAGNOSIS.md":{"size":16499,"mtime_ns":1786206352446665138,"word_count":1872},"code/HANDSHAKE_RECEIVER_EMAIL_DESIGN_ANALYSIS.md":{"size":12894,"mtime_ns":1786206352446665138,"word_count":1693},"code/HANDSHAKE_RECEIVER_EMAIL_SECURITY_TRACE.md":{"size":12488,"mtime_ns":1786206352446665138,"word_count":1518},"code/HANDSHAKE_VAULT_POLICY_ARCHITECTURE_ANALYSIS.md":{"size":14520,"mtime_ns":1786206352446665138,"word_count":1836},"code/HARDENING_DRILL_REPORT.md":{"size":21539,"mtime_ns":1786206352446665138,"word_count":2888},"code/HARDENING_VSBT_VERIFICATION.md":{"size":9909,"mtime_ns":1786206352446665138,"word_count":1374},"code/HEADLESS_SERVICE_GUIDE.md":{"size":7162,"mtime_ns":1786206352446665138,"word_count":979},"code/HS_CONTEXT_IMPLEMENTATION_ANALYSIS.md":{"size":18303,"mtime_ns":1786206352446665138,"word_count":2085},"code/HS_CONTEXT_PDF_DOCUMENT_RESOLUTION_TRACE.md":{"size":13894,"mtime_ns":1786206352446665138,"word_count":1628},"code/HS_CONTEXT_PIPELINE_SENSITIVE_POLICY_ANALYSIS.md":{"size":36701,"mtime_ns":1786206352446665138,"word_count":4604},"code/HS_CONTEXT_PROFILES_IPC_REVIEW.md":{"size":7222,"mtime_ns":1786206352446665138,"word_count":777},"code/HS_CONTEXT_PROFILE_LINKING_ANALYSIS.md":{"size":12453,"mtime_ns":1786206352446665138,"word_count":1560},"code/HS_CONTEXT_REFACTOR_ANALYSIS_REPORT.md":{"size":26239,"mtime_ns":1786206352446665138,"word_count":3233},"code/HS_CONTEXT_REFACTOR_AUDIT_REPORT.md":{"size":19118,"mtime_ns":1786206352446665138,"word_count":2132},"code/HS_CONTEXT_THREE_ISSUES_ANALYSIS.md":{"size":13129,"mtime_ns":1786206352446665138,"word_count":1850},"code/HS_CONTEXT_VAULT_REF_LIFECYCLE.md":{"size":4349,"mtime_ns":1786206352446665138,"word_count":565},"code/HS_CONTEXT_WRVAULT_REGRESSION_ANALYSIS.md":{"size":32792,"mtime_ns":1786206352446665138,"word_count":4020},"code/HYBRID_SEARCH_LLM_WIRING_ANALYSIS.md":{"size":15412,"mtime_ns":1786206352446665138,"word_count":1943},"code/IMAP_EMAIL_CONNECTION_ARCHITECTURE_REPORT.md":{"size":20051,"mtime_ns":1786206352446665138,"word_count":2165},"code/IMAP_EXHAUSTIVE_CODE_ANALYSIS.md":{"size":50391,"mtime_ns":1786206352446665138,"word_count":4831},"code/IMAP_PDF_DEPACKAGING_DEEP_ANALYSIS.md":{"size":32308,"mtime_ns":1786206352446665138,"word_count":3427},"code/IMPLEMENTATION_PLAN.md":{"size":14647,"mtime_ns":1786206352446665138,"word_count":1802},"code/INGESTION_PATH_TRACE.md":{"size":11322,"mtime_ns":1786206352446665138,"word_count":1481},"code/INGESTION_PIPELINE.md":{"size":6827,"mtime_ns":1786206352446665138,"word_count":896},"code/INGESTOR_VALIDATOR_HARDENING_REPORT.md":{"size":14931,"mtime_ns":1786206352446665138,"word_count":1784},"code/KEYCLOAK_ENTITLEMENT_ANALYSIS.md":{"size":10732,"mtime_ns":1786206352446665138,"word_count":1638},"code/LLM_COMMAND_CHAT_INTEGRATION.md":{"size":5393,"mtime_ns":1786206352446665138,"word_count":767},"code/LOADING_STATES_AUDIT.md":{"size":7581,"mtime_ns":1786206352446665138,"word_count":1039},"code/MASTER_TAB_FILTERING_CHANGES.md":{"size":5651,"mtime_ns":1786206352446665138,"word_count":857},"code/MVP_LAYERED_ANALYSIS.md":{"size":16791,"mtime_ns":1786206352450664524,"word_count":1865},"code/New-ServersJson.ps1":{"size":4014,"mtime_ns":1786206352450664524,"word_count":429},"code/OUTBOUND_PATH_TRACE.md":{"size":8490,"mtime_ns":1786206352450664524,"word_count":1048},"code/OUTPUT_COORDINATOR_ENHANCEMENT.md":{"size":7097,"mtime_ns":1786206352450664524,"word_count":1002},"code/PDF_ATTACHMENTS_INBOX_DATE_ANALYSIS.md":{"size":13976,"mtime_ns":1786206352450664524,"word_count":1710},"code/POD_DEPLOYMENT_TRACE.md":{"size":7760,"mtime_ns":1786206352450664524,"word_count":1112},"code/POST_DEPACKAGING_AI_INBOX_TRACE.md":{"size":9948,"mtime_ns":1786206352450664524,"word_count":1242},"code/PREFLIGHT_ANALYSIS.md":{"size":56894,"mtime_ns":1786206352450664524,"word_count":6925},"code/REFACTOR_HANDSHAKE_VAULT_POLICY_REPORT.md":{"size":6874,"mtime_ns":1786206352450664524,"word_count":629},"code/REFINEMENT_CONTEXT_AND_OUTPUT.md":{"size":5427,"mtime_ns":1786206352450664524,"word_count":797},"code/REGRESSION_REPORT.md":{"size":12659,"mtime_ns":1786206352450664524,"word_count":1554},"code/RELAY_RECIPIENT_ID_FIX.md":{"size":4708,"mtime_ns":1786206352450664524,"word_count":591},"code/RELEASE_NOTES_WEBMCP.md":{"size":1224,"mtime_ns":1786206352450664524,"word_count":156},"code/RUNTIME_TIER_TRACE_DIAGNOSIS.md":{"size":15732,"mtime_ns":1786206352450664524,"word_count":2078},"code/SEARCH_WIRING_VERIFICATION_REPORT.md":{"size":9884,"mtime_ns":1786206352450664524,"word_count":1654},"code/SECURITY_AUDIT_WRVAULT.md":{"size":46810,"mtime_ns":1786206352450664524,"word_count":6136},"code/SECURITY_BINDING_VSBT.md":{"size":10465,"mtime_ns":1786206352450664524,"word_count":1140},"code/SECURITY_REGRESSION_PENTEST.md":{"size":12330,"mtime_ns":1786206352450664524,"word_count":1529},"code/SECURITY_REVIEW_AFTERTHOUGHT.md":{"size":20744,"mtime_ns":1786206352450664524,"word_count":2858},"code/SENT_BLOCKS_MISSING_ANALYSIS.md":{"size":5307,"mtime_ns":1786206352450664524,"word_count":673},"code/SSO_TIER_SIGNAL_ANALYSIS.md":{"size":13006,"mtime_ns":1786206352450664524,"word_count":1751},"code/SYSTEM_TAB_IMPLEMENTATION.md":{"size":5194,"mtime_ns":1786206352450664524,"word_count":714},"code/SYSTEM_TAB_WIRING_IMPLEMENTATION.md":{"size":6643,"mtime_ns":1786206352450664524,"word_count":872},"code/TAGGED_TRIGGERS_STUDY.md":{"size":6602,"mtime_ns":1786206352450664524,"word_count":844},"code/TEST_BOTH_FIXES.md":{"size":2720,"mtime_ns":1786206352450664524,"word_count":457},"code/THIRD_PARTY_LICENSES.md":{"size":31829,"mtime_ns":1786206352450664524,"word_count":3835},"code/THIRD_PARTY_LICENSES/README.md":{"size":1035,"mtime_ns":1786206352450664524,"word_count":149},"code/THIRD_PARTY_LICENSES/apache-tika-Apache-2.0.txt":{"size":11749,"mtime_ns":1786206352450664524,"word_count":1619},"code/THIRD_PARTY_LICENSES/electron-MIT.txt":{"size":1110,"mtime_ns":1786206352450664524,"word_count":173},"code/THIRD_PARTY_LICENSES/leptonica-BSD-2-Clause.txt":{"size":1303,"mtime_ns":1786206352450664524,"word_count":192},"code/THIRD_PARTY_LICENSES/pdfium-BSD-3-Clause.txt":{"size":1988,"mtime_ns":1786206352450664524,"word_count":269},"code/THIRD_PARTY_LICENSES/pdfjs-Apache-2.0.txt":{"size":6268,"mtime_ns":1786206352450664524,"word_count":846},"code/THIRD_PARTY_LICENSES/tensorflowjs-Apache-2.0.txt":{"size":9916,"mtime_ns":1786206352450664524,"word_count":1500},"code/THIRD_PARTY_LICENSES/tesseract-ocr-Apache-2.0.txt":{"size":11362,"mtime_ns":1786206352450664524,"word_count":1582},"code/THIRD_PARTY_LICENSES/tesseractjs-Apache-2.0.txt":{"size":6281,"mtime_ns":1786206352450664524,"word_count":839},"code/THIRD_PARTY_LICENSES/wink-nlp-MIT.txt":{"size":2312,"mtime_ns":1786206352450664524,"word_count":347},"code/THREAT_MODEL_INGESTION_VALIDATION.md":{"size":9323,"mtime_ns":1786206352450664524,"word_count":1097},"code/TIER_FORENSIC_TRACE.md":{"size":13368,"mtime_ns":1786206352450664524,"word_count":1808},"code/TIER_REFACTOR_ANALYSIS.md":{"size":14766,"mtime_ns":1786206352450664524,"word_count":1878},"code/TODO-HIGH-ASSURANCE.md":{"size":3278,"mtime_ns":1786206352450664524,"word_count":468},"code/TODO-NEXT.md":{"size":2601,"mtime_ns":1786206352450664524,"word_count":353},"code/TRIPLE_CHECK_BEFORE_IMPLEMENTATION.md":{"size":8307,"mtime_ns":1786206352450664524,"word_count":1249},"code/UI_CHANGELOG.md":{"size":9918,"mtime_ns":1786206352450664524,"word_count":1216},"code/VALIDATOR_PIPELINE_TRACE.md":{"size":8941,"mtime_ns":1786206352450664524,"word_count":1033},"code/VAULT_CAPABILITIES.md":{"size":6680,"mtime_ns":1786206352450664524,"word_count":728},"code/VAULT_CRYPTO.md":{"size":8447,"mtime_ns":1786206352450664524,"word_count":1096},"code/VAULT_UNLOCK_PROVIDERS.md":{"size":6269,"mtime_ns":1786206352450664524,"word_count":749},"code/WR_DESK_AUTOSORT_SESSION_CODEBASE_ANALYSIS.md":{"size":21325,"mtime_ns":1786206352450664524,"word_count":2569},"code/WR_DESK_AUTOSORT_SESSION_DIAGNOSTIC_WHAT_HAPPENED.md":{"size":18948,"mtime_ns":1786206352450664524,"word_count":2216},"code/WR_DESK_AUTOSORT_SESSION_REVIEW_PREFLIGHT_ANALYSIS.md":{"size":34343,"mtime_ns":1786206352450664524,"word_count":3451},"code/WR_DESK_AUTO_SORT_RUNAWAY_ANALYSIS.md":{"size":6723,"mtime_ns":1786206352450664524,"word_count":960},"code/WR_DESK_BULK_INBOX_ANALYSIS.md":{"size":13375,"mtime_ns":1786206352450664524,"word_count":1794},"code/WR_DESK_CODEBASE_ANALYSIS.md":{"size":21469,"mtime_ns":1786206352454663912,"word_count":2416},"code/WR_DESK_INBOX_AUDIT_FINDINGS.md":{"size":10508,"mtime_ns":1786206352454663912,"word_count":1413},"code/WR_DESK_INBOX_BULK_REGRESSION_ANALYSIS.md":{"size":23391,"mtime_ns":1786206352454663912,"word_count":3204},"code/WR_DESK_INBOX_DIAGNOSTIC_REPORT.md":{"size":22391,"mtime_ns":1786206352454663912,"word_count":3126},"code/WR_DESK_INBOX_FINAL_CLOSURE.md":{"size":4061,"mtime_ns":1786206352454663912,"word_count":503},"code/WR_DESK_INBOX_IMPLEMENTATION_GUIDE.md":{"size":9965,"mtime_ns":1786206352454663912,"word_count":1073},"code/WR_DESK_INBOX_POSTFLIGHT_AUDIT.md":{"size":6968,"mtime_ns":1786206352454663912,"word_count":1024},"code/WR_DESK_INBOX_SYSTEM_ANALYSIS.md":{"size":17663,"mtime_ns":1786206352454663912,"word_count":2032},"code/WR_DESK_INBOX_VALUE_OPTIMIZATION_AUDIT.md":{"size":22037,"mtime_ns":1786206352454663912,"word_count":3106},"code/ai-frame-reply-composer-analysis-1.md":{"size":10570,"mtime_ns":1786206352454663912,"word_count":1175},"code/app_css_895975c.txt":{"size":25776,"mtime_ns":1786206352454663912,"word_count":2669},"code/apps/desktop/create-shortcut-fixed.ps1":{"size":1267,"mtime_ns":1786206352454663912,"word_count":143},"code/apps/desktop/create-shortcut-with-icon.ps1":{"size":1267,"mtime_ns":1786206352454663912,"word_count":142},"code/apps/desktop/index.html":{"size":3030,"mtime_ns":1786206352454663912,"word_count":231},"code/apps/desktop/main.js":{"size":6399,"mtime_ns":1786206352454663912,"word_count":634},"code/apps/desktop/package.json":{"size":1062,"mtime_ns":1786206352454663912,"word_count":94},"code/apps/desktop/start-optimando.ps1":{"size":771,"mtime_ns":1786206352454663912,"word_count":104},"code/apps/desktop/start-server.js":{"size":703,"mtime_ns":1786206352454663912,"word_count":88},"code/apps/desktop/websocket-server.js":{"size":1422,"mtime_ns":1786206352454663912,"word_count":140},"code/apps/electron-vite-project/.eslintrc.cjs":{"size":436,"mtime_ns":1786206352454663912,"word_count":37},"code/apps/electron-vite-project/BLANK_DASHBOARD_DIAGNOSIS.md":{"size":3479,"mtime_ns":1786206352454663912,"word_count":419},"code/apps/electron-vite-project/CREATE_PHI3_LOW.md":{"size":1397,"mtime_ns":1786206352454663912,"word_count":202},"code/apps/electron-vite-project/FORENSIC_NODE_FETCH_REPORT.md":{"size":5367,"mtime_ns":1786206352454663912,"word_count":629},"code/apps/electron-vite-project/HARDENING_VERIFICATION_REPORT.md":{"size":4980,"mtime_ns":1786206352454663912,"word_count":915},"code/apps/electron-vite-project/INTENT_ROUTING_VERIFICATION_REPORT.md":{"size":3117,"mtime_ns":1786206352454663912,"word_count":419},"code/apps/electron-vite-project/LLM_INTEGRATION_V2.md":{"size":13575,"mtime_ns":1786206352454663912,"word_count":1881},"code/apps/electron-vite-project/NODE_FETCH_DIAGNOSIS.md":{"size":7199,"mtime_ns":1786206352454663912,"word_count":918},"code/apps/electron-vite-project/P2P_BETTER_SQLITE3_FIX_REPORT.md":{"size":2973,"mtime_ns":1786206352454663912,"word_count":551},"code/apps/electron-vite-project/P2P_P5_P8_TEST_REPORT.md":{"size":2885,"mtime_ns":1786206352454663912,"word_count":505},"code/apps/electron-vite-project/POST_FIX_VALIDATION_REPORT.md":{"size":4304,"mtime_ns":1786206352454663912,"word_count":537},"code/apps/electron-vite-project/README.md":{"size":1300,"mtime_ns":1786206352454663912,"word_count":119},"code/apps/electron-vite-project/RESILIENCE_AUDIT_REPORT.md":{"size":7713,"mtime_ns":1786206352454663912,"word_count":1085},"code/apps/electron-vite-project/RESTART_WITH_CPU_CHECK.ps1":{"size":800,"mtime_ns":1786206352454663912,"word_count":93},"code/apps/electron-vite-project/THIRD_PARTY_LICENSES/README.md":{"size":427,"mtime_ns":1786206352454663912,"word_count":53},"code/apps/electron-vite-project/THIRD_PARTY_LICENSES/electron-MIT.txt":{"size":1110,"mtime_ns":1786206352454663912,"word_count":173},"code/apps/electron-vite-project/THIRD_PARTY_LICENSES/leptonica-BSD-2-Clause.txt":{"size":1324,"mtime_ns":1786206352454663912,"word_count":195},"code/apps/electron-vite-project/THIRD_PARTY_LICENSES/llamacpp-MIT.txt":{"size":1268,"mtime_ns":1786206352454663912,"word_count":187},"code/apps/electron-vite-project/THIRD_PARTY_LICENSES/recharts-MIT.txt":{"size":1102,"mtime_ns":1786206352454663912,"word_count":169},"code/apps/electron-vite-project/THIRD_PARTY_LICENSES/tesseract-ocr-Apache-2.0.txt":{"size":10761,"mtime_ns":1786206352454663912,"word_count":1496},"code/apps/electron-vite-project/THIRD_PARTY_LICENSES/tesseractjs-Apache-2.0.txt":{"size":6281,"mtime_ns":1786206352454663912,"word_count":839},"code/apps/electron-vite-project/TRANSITIVE_DEPS_FIX.md":{"size":4904,"mtime_ns":1786206352454663912,"word_count":542},"code/apps/electron-vite-project/ULTRA_LIGHTWEIGHT_MODELS.md":{"size":3189,"mtime_ns":1786206352454663912,"word_count":386},"code/apps/electron-vite-project/check-sqlite-db.ps1":{"size":1896,"mtime_ns":1786206352454663912,"word_count":227},"code/apps/electron-vite-project/docs/HOST_AI_ARCHITECTURE_INVARIANTS.md":{"size":2966,"mtime_ns":1786206352458663299,"word_count":374},"code/apps/electron-vite-project/docs/HOST_AI_DIAGNOSTIC_LOGS.md":{"size":18838,"mtime_ns":1786206352458663299,"word_count":2171},"code/apps/electron-vite-project/docs/INBOX_AI_ANALYSIS_AUDIT_REPORT.md":{"size":4054,"mtime_ns":1786206352458663299,"word_count":503},"code/apps/electron-vite-project/docs/STEP10-production-readiness-acceptance.md":{"size":4527,"mtime_ns":1786206352458663299,"word_count":574},"code/apps/electron-vite-project/docs/host-ai-deferred-work.md":{"size":6380,"mtime_ns":1786206352458663299,"word_count":872},"code/apps/electron-vite-project/electron-builder.config.cjs":{"size":4415,"mtime_ns":1786206352458663299,"word_count":435},"code/apps/electron-vite-project/electron-builder.json":{"size":2153,"mtime_ns":1786206352458663299,"word_count":177},"code/apps/electron-vite-project/electron/WRExpert.default.md":{"size":6022,"mtime_ns":1786206352458663299,"word_count":893},"code/apps/electron-vite-project/electron/__tests__/handshakeAcceptSafeOpts.regression.test.ts":{"size":2645,"mtime_ns":1786206352458663299,"word_count":200},"code/apps/electron-vite-project/electron/bootstrapUserData.ts":{"size":1498,"mtime_ns":1786206352458663299,"word_count":186},"code/apps/electron-vite-project/electron/diffWatcher.ts":{"size":15372,"mtime_ns":1786206352458663299,"word_count":1755},"code/apps/electron-vite-project/electron/electron-env.d.ts":{"size":594,"mtime_ns":1786206352458663299,"word_count":75},"code/apps/electron-vite-project/electron/handshakeAcceptSafeOpts.ts":{"size":4215,"mtime_ns":1786206352458663299,"word_count":479},"code/apps/electron-vite-project/electron/ipc/db.ts":{"size":5172,"mtime_ns":1786206352458663299,"word_count":589},"code/apps/electron-vite-project/electron/lmgtfy/capture.ts":{"size":4268,"mtime_ns":1786206352458663299,"word_count":544},"code/apps/electron-vite-project/electron/lmgtfy/ipc.ts":{"size":1596,"mtime_ns":1786206352458663299,"word_count":133},"code/apps/electron-vite-project/electron/lmgtfy/overlay.ts":{"size":18054,"mtime_ns":1786206352458663299,"word_count":1364},"code/apps/electron-vite-project/electron/lmgtfy/presets.ts":{"size":4632,"mtime_ns":1786206352458663299,"word_count":553},"code/apps/electron-vite-project/electron/mailguard/gmail-api.ts":{"size":16445,"mtime_ns":1786206352458663299,"word_count":1749},"code/apps/electron-vite-project/electron/mailguard/overlay.ts":{"size":37861,"mtime_ns":1786206352458663299,"word_count":3866},"code/apps/electron-vite-project/electron/main.ts":{"size":552660,"mtime_ns":1786206352462662686,"word_count":53679},"code/apps/electron-vite-project/electron/main/__tests__/invariants.test.ts":{"size":10655,"mtime_ns":1786206352462662686,"word_count":993},"code/apps/electron-vite-project/electron/main/autosortDiagnostics.ts":{"size":2827,"mtime_ns":1786206352462662686,"word_count":329},"code/apps/electron-vite-project/electron/main/beap/autoresponderAudit.ts":{"size":889,"mtime_ns":1786206352462662686,"word_count":88},"code/apps/electron-vite-project/electron/main/beap/autoresponderEvaluator.ts":{"size":2785,"mtime_ns":1786206352462662686,"word_count":353},"code/apps/electron-vite-project/electron/main/beap/beapEnvelopeAad.ts":{"size":3579,"mtime_ns":1786206352462662686,"word_count":335},"code/apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts":{"size":25995,"mtime_ns":1786206352462662686,"word_count":2549},"code/apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.devbox.test.ts":{"size":5018,"mtime_ns":1786206352462662686,"word_count":483},"code/apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.test.ts":{"size":7398,"mtime_ns":1786206352462662686,"word_count":797},"code/apps/electron-vite-project/electron/main/critical-jobs/__tests__/depackageEmailCutover.test.ts":{"size":5314,"mtime_ns":1786206352462662686,"word_count":548},"code/apps/electron-vite-project/electron/main/critical-jobs/__tests__/depackageParity.test.ts":{"size":3647,"mtime_ns":1786206352462662686,"word_count":330},"code/apps/electron-vite-project/electron/main/critical-jobs/__tests__/depackageParityCorpus.ts":{"size":3116,"mtime_ns":1786206352462662686,"word_count":301},"code/apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.email.rig.test.ts":{"size":11024,"mtime_ns":1786206352462662686,"word_count":1096},"code/apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.rig.test.ts":{"size":5345,"mtime_ns":1786206352462662686,"word_count":495},"code/apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts":{"size":7993,"mtime_ns":1786206352462662686,"word_count":743},"code/apps/electron-vite-project/electron/main/critical-jobs/__tests__/envelope.test.ts":{"size":3455,"mtime_ns":1786206352462662686,"word_count":339},"code/apps/electron-vite-project/electron/main/critical-jobs/__tests__/inProcessExecutor.test.ts":{"size":2969,"mtime_ns":1786206352462662686,"word_count":261},"code/apps/electron-vite-project/electron/main/critical-jobs/__tests__/localMicrovmRouting.test.ts":{"size":10808,"mtime_ns":1786206352462662686,"word_count":1037},"code/apps/electron-vite-project/electron/main/critical-jobs/__tests__/resolution.test.ts":{"size":7818,"mtime_ns":1786206352462662686,"word_count":767},"code/apps/electron-vite-project/electron/main/critical-jobs/__tests__/sandboxEmailDelivery.test.ts":{"size":9263,"mtime_ns":1786206352462662686,"word_count":912},"code/apps/electron-vite-project/electron/main/critical-jobs/__tests__/verify.test.ts":{"size":4498,"mtime_ns":1786206352462662686,"word_count":452},"code/apps/electron-vite-project/electron/main/critical-jobs/context.ts":{"size":4743,"mtime_ns":1786206352462662686,"word_count":603},"code/apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts":{"size":6502,"mtime_ns":1786206352462662686,"word_count":663},"code/apps/electron-vite-project/electron/main/critical-jobs/executor.ts":{"size":1289,"mtime_ns":1786206352462662686,"word_count":164},"code/apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts":{"size":8530,"mtime_ns":1786206352462662686,"word_count":855},"code/apps/electron-vite-project/electron/main/critical-jobs/executors/microVmExecutor.ts":{"size":6698,"mtime_ns":1786206352462662686,"word_count":701},"code/apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts":{"size":8376,"mtime_ns":1786206352462662686,"word_count":898},"code/apps/electron-vite-project/electron/main/critical-jobs/featureFlags.ts":{"size":2839,"mtime_ns":1786206352462662686,"word_count":354},"code/apps/electron-vite-project/electron/main/critical-jobs/index.ts":{"size":1123,"mtime_ns":1786206352462662686,"word_count":124},"code/apps/electron-vite-project/electron/main/critical-jobs/liveDepackageCutover.ts":{"size":7227,"mtime_ns":1786206352462662686,"word_count":860},"code/apps/electron-vite-project/electron/main/critical-jobs/liveValidationCutover.ts":{"size":4091,"mtime_ns":1786206352462662686,"word_count":482},"code/apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/executor.test.ts":{"size":8639,"mtime_ns":1786206352462662686,"word_count":823},"code/apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.email.rig.test.ts":{"size":16015,"mtime_ns":1786206352462662686,"word_count":1379},"code/apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.test.ts":{"size":7961,"mtime_ns":1786206352462662686,"word_count":835},"code/apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/receiver.test.ts":{"size":8570,"mtime_ns":1786206352462662686,"word_count":745},"code/apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/relayExclusion.test.ts":{"size":1669,"mtime_ns":1786206352462662686,"word_count":187},"code/apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/roundtrip.test.ts":{"size":6768,"mtime_ns":1786206352462662686,"word_count":661},"code/apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/serialize.test.ts":{"size":4950,"mtime_ns":1786206352462662686,"word_count":477},"code/apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/topology.test.ts":{"size":3902,"mtime_ns":1786206352462662686,"word_count":389},"code/apps/electron-vite-project/electron/main/critical-jobs/remote/criticalJobServiceDispatch.ts":{"size":4009,"mtime_ns":1786206352462662686,"word_count":471},"code/apps/electron-vite-project/electron/main/critical-jobs/remote/receiver.ts":{"size":7989,"mtime_ns":1786206352462662686,"word_count":832},"code/apps/electron-vite-project/electron/main/critical-jobs/remote/receiverDispatcher.ts":{"size":1338,"mtime_ns":1786206352466662073,"word_count":167},"code/apps/electron-vite-project/electron/main/critical-jobs/remote/sandboxEmailDelivery.ts":{"size":13163,"mtime_ns":1786206352466662073,"word_count":1417},"code/apps/electron-vite-project/electron/main/critical-jobs/remote/send.ts":{"size":3946,"mtime_ns":1786206352466662073,"word_count":480},"code/apps/electron-vite-project/electron/main/critical-jobs/remote/serialize.ts":{"size":7522,"mtime_ns":1786206352466662073,"word_count":821},"code/apps/electron-vite-project/electron/main/critical-jobs/remote/wire.ts":{"size":5057,"mtime_ns":1786206352466662073,"word_count":573},"code/apps/electron-vite-project/electron/main/critical-jobs/resolution.ts":{"size":10952,"mtime_ns":1786206352466662073,"word_count":1291},"code/apps/electron-vite-project/electron/main/critical-jobs/topology.ts":{"size":5100,"mtime_ns":1786206352466662073,"word_count":673},"code/apps/electron-vite-project/electron/main/critical-jobs/types.ts":{"size":18713,"mtime_ns":1786206352466662073,"word_count":2238},"code/apps/electron-vite-project/electron/main/critical-jobs/verify.ts":{"size":8638,"mtime_ns":1786206352466662073,"word_count":932},"code/apps/electron-vite-project/electron/main/customModes/__tests__/builtInModes.test.ts":{"size":3610,"mtime_ns":1786206352466662073,"word_count":252},"code/apps/electron-vite-project/electron/main/customModes/__tests__/customModesStore.test.ts":{"size":9857,"mtime_ns":1786206352466662073,"word_count":926},"code/apps/electron-vite-project/electron/main/customModes/__tests__/scamWatchdogBuiltIn.test.ts":{"size":6736,"mtime_ns":1786206352466662073,"word_count":592},"code/apps/electron-vite-project/electron/main/customModes/broadcast.ts":{"size":782,"mtime_ns":1786206352466662073,"word_count":80},"code/apps/electron-vite-project/electron/main/customModes/builtInModes.ts":{"size":3337,"mtime_ns":1786206352466662073,"word_count":335},"code/apps/electron-vite-project/electron/main/customModes/customModesStore.ts":{"size":14652,"mtime_ns":1786206352466662073,"word_count":1516},"code/apps/electron-vite-project/electron/main/customModes/ipc.ts":{"size":3693,"mtime_ns":1786206352466662073,"word_count":482},"code/apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/blindCourier.invariant.test.ts":{"size":4144,"mtime_ns":1786206352466662073,"word_count":406},"code/apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmImageBundlePreflight.test.ts":{"size":5903,"mtime_ns":1786206352466662073,"word_count":603},"code/apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmProvider.rig.test.ts":{"size":9712,"mtime_ns":1786206352466662073,"word_count":886},"code/apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/defenseInDepthDetection.test.ts":{"size":8754,"mtime_ns":1786206352466662073,"word_count":727},"code/apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/depackagingService.test.ts":{"size":3443,"mtime_ns":1786206352466662073,"word_count":307},"code/apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/displayEnvelope.test.ts":{"size":5966,"mtime_ns":1786206352466662073,"word_count":559},"code/apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/emailDepackage.test.ts":{"size":6970,"mtime_ns":1786206352466662073,"word_count":655},"code/apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/emailResultSigning.test.ts":{"size":4745,"mtime_ns":1786206352466662073,"word_count":418},"code/apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/htmlToText.equivalence.test.ts":{"size":3146,"mtime_ns":1786206352466662073,"word_count":331},"code/apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/inertSinkAudit.test.ts":{"size":11813,"mtime_ns":1786206352466662073,"word_count":958},"code/apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/livePbeapTrust.test.ts":{"size":4066,"mtime_ns":1786206352466662073,"word_count":362},"code/apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/providerStructuredWalker.equivalence.test.ts":{"size":9745,"mtime_ns":1786206352466662073,"word_count":1066},"code/apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/revalidate.trust.repair.test.ts":{"size":4525,"mtime_ns":1786206352466662073,"word_count":421},"code/apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/textPurity.invariant.test.ts":{"size":3760,"mtime_ns":1786206352466662073,"word_count":331},"code/apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/vmIdentitySigning.test.ts":{"size":7934,"mtime_ns":1786206352466662073,"word_count":702},"code/apps/electron-vite-project/electron/main/depackaging-microvm/blindCourier.ts":{"size":2562,"mtime_ns":1786206352466662073,"word_count":344},"code/apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts":{"size":17673,"mtime_ns":1786206352466662073,"word_count":2174},"code/apps/electron-vite-project/electron/main/depackaging-microvm/defenseInDepthDetection.ts":{"size":4393,"mtime_ns":1786206352466662073,"word_count":424},"code/apps/electron-vite-project/electron/main/depackaging-microvm/depackageModel.ts":{"size":3660,"mtime_ns":1786206352466662073,"word_count":419},"code/apps/electron-vite-project/electron/main/depackaging-microvm/depackagingService.ts":{"size":3949,"mtime_ns":1786206352466662073,"word_count":500},"code/apps/electron-vite-project/electron/main/depackaging-microvm/depackagingWorker.ts":{"size":5550,"mtime_ns":1786206352466662073,"word_count":735},"code/apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts":{"size":13187,"mtime_ns":1786206352466662073,"word_count":1541},"code/apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts":{"size":25243,"mtime_ns":1786206352466662073,"word_count":2839},"code/apps/electron-vite-project/electron/main/depackaging-microvm/htmlToText.ts":{"size":7011,"mtime_ns":1786206352466662073,"word_count":707},"code/apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts":{"size":13281,"mtime_ns":1786206352466662073,"word_count":1621},"code/apps/electron-vite-project/electron/main/depackaging-microvm/legacyRepair.ts":{"size":2562,"mtime_ns":1786206352466662073,"word_count":332},"code/apps/electron-vite-project/electron/main/depackaging-microvm/livePbeapTrust.ts":{"size":2670,"mtime_ns":1786206352466662073,"word_count":329},"code/apps/electron-vite-project/electron/main/depackaging-microvm/mimeExtract.ts":{"size":5737,"mtime_ns":1786206352466662073,"word_count":671},"code/apps/electron-vite-project/electron/main/depackaging-microvm/pbeapTrust.ts":{"size":4292,"mtime_ns":1786206352466662073,"word_count":539},"code/apps/electron-vite-project/electron/main/depackaging-microvm/providerStructuredWalker.ts":{"size":11274,"mtime_ns":1786206352466662073,"word_count":1256},"code/apps/electron-vite-project/electron/main/depackaging-microvm/rig/PROVISIONING.md":{"size":9127,"mtime_ns":1786206352466662073,"word_count":1254},"code/apps/electron-vite-project/electron/main/depackaging-microvm/rig/README.md":{"size":31491,"mtime_ns":1786206352466662073,"word_count":4093},"code/apps/electron-vite-project/electron/main/depackaging-microvm/rig/build-golden-image.sh":{"size":6388,"mtime_ns":1786206352466662073,"word_count":767},"code/apps/electron-vite-project/electron/main/depackaging-microvm/rig/buildWorkerBundle.mjs":{"size":7971,"mtime_ns":1786206352466662073,"word_count":936},"code/apps/electron-vite-project/electron/main/depackaging-microvm/rig/crosvm-launch.sh":{"size":2494,"mtime_ns":1786206352466662073,"word_count":280},"code/apps/electron-vite-project/electron/main/depackaging-microvm/rig/guestEntry.ts":{"size":3667,"mtime_ns":1786206352466662073,"word_count":462},"code/apps/electron-vite-project/electron/main/depackaging-microvm/rig/host-setup-root.sh":{"size":2784,"mtime_ns":1786206352466662073,"word_count":375},"code/apps/electron-vite-project/electron/main/depackaging-microvm/rig/smokeTest.mjs":{"size":5134,"mtime_ns":1786206352466662073,"word_count":593},"code/apps/electron-vite-project/electron/main/depackaging-microvm/rig/vsock-echo.c":{"size":1608,"mtime_ns":1786206352466662073,"word_count":237},"code/apps/electron-vite-project/electron/main/depackaging-microvm/rig/vsock-echo.sh":{"size":3906,"mtime_ns":1786206352466662073,"word_count":436},"code/apps/electron-vite-project/electron/main/depackaging-microvm/rig/vsock-host-client.c":{"size":2613,"mtime_ns":1786206352466662073,"word_count":411},"code/apps/electron-vite-project/electron/main/depackaging-microvm/rig/vsock-job-server.c":{"size":3534,"mtime_ns":1786206352466662073,"word_count":509},"code/apps/electron-vite-project/electron/main/depackaging-microvm/safeText.ts":{"size":9328,"mtime_ns":1786206352466662073,"word_count":1117},"code/apps/electron-vite-project/electron/main/device-keys/deviceKeyMigration.ts":{"size":7869,"mtime_ns":1786206352466662073,"word_count":902},"code/apps/electron-vite-project/electron/main/device-keys/deviceKeyStore.ts":{"size":8019,"mtime_ns":1786206352470661460,"word_count":904},"code/apps/electron-vite-project/electron/main/email/CONNECT_EMAIL_AND_LIFECYCLE_TESTING.md":{"size":3945,"mtime_ns":1786206352470661460,"word_count":448},"code/apps/electron-vite-project/electron/main/email/DEFERRED.md":{"size":805,"mtime_ns":1786206352470661460,"word_count":115},"code/apps/electron-vite-project/electron/main/email/INBOX_LIFECYCLE.md":{"size":2564,"mtime_ns":1786206352470661460,"word_count":306},"code/apps/electron-vite-project/electron/main/email/MAILBOX_LIFECYCLE_MAPPING.md":{"size":3790,"mtime_ns":1786206352470661460,"word_count":478},"code/apps/electron-vite-project/electron/main/email/REMOTE_ORCHESTRATOR_SYNC.md":{"size":19177,"mtime_ns":1786206352470661460,"word_count":2328},"code/apps/electron-vite-project/electron/main/email/ROLLOUT_INBOX_REMOTE_LIFECYCLE.md":{"size":4660,"mtime_ns":1786206352470661460,"word_count":656},"code/apps/electron-vite-project/electron/main/email/__tests__/a2SandboxIngestion.test.ts":{"size":17406,"mtime_ns":1786206352470661460,"word_count":1762},"code/apps/electron-vite-project/electron/main/email/__tests__/accountDeleteAtomic.test.ts":{"size":5754,"mtime_ns":1786206352470661460,"word_count":524},"code/apps/electron-vite-project/electron/main/email/__tests__/autosortSessionReview.regression.test.ts":{"size":1597,"mtime_ns":1786206352470661460,"word_count":148},"code/apps/electron-vite-project/electron/main/email/__tests__/b2LiveIngestion.rig.test.ts":{"size":14596,"mtime_ns":1786206352470661460,"word_count":1429},"code/apps/electron-vite-project/electron/main/email/__tests__/b31GapClosure.test.ts":{"size":20786,"mtime_ns":1786206352470661460,"word_count":1749},"code/apps/electron-vite-project/electron/main/email/__tests__/b4P2PRelayMigration.test.ts":{"size":17676,"mtime_ns":1786206352470661460,"word_count":1529},"code/apps/electron-vite-project/electron/main/email/__tests__/b51ExtensionMergeBypass.test.ts":{"size":19892,"mtime_ns":1786206352470661460,"word_count":1675},"code/apps/electron-vite-project/electron/main/email/__tests__/b5ExtensionMerge.test.ts":{"size":23805,"mtime_ns":1786206352470661460,"word_count":2040},"code/apps/electron-vite-project/electron/main/email/__tests__/b71OperationalGate.test.ts":{"size":17829,"mtime_ns":1786206352470661460,"word_count":1840},"code/apps/electron-vite-project/electron/main/email/__tests__/b72DecryptedContentReseal.test.ts":{"size":18795,"mtime_ns":1786206352470661460,"word_count":1651},"code/apps/electron-vite-project/electron/main/email/__tests__/b7IpcContentUpdates.test.ts":{"size":21289,"mtime_ns":1786206352470661460,"word_count":1864},"code/apps/electron-vite-project/electron/main/email/__tests__/b9OutboundCloneIntegrity.test.ts":{"size":15159,"mtime_ns":1786206352470661460,"word_count":1415},"code/apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepare.test.ts":{"size":19466,"mtime_ns":1786206352470661460,"word_count":1529},"code/apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepareSealGate.test.ts":{"size":13582,"mtime_ns":1786206352470661460,"word_count":1138},"code/apps/electron-vite-project/electron/main/email/__tests__/beapInboxCloneVaultRequirement.test.ts":{"size":1799,"mtime_ns":1786206352470661460,"word_count":131},"code/apps/electron-vite-project/electron/main/email/__tests__/beapRedirectSource.inbox.test.ts":{"size":4485,"mtime_ns":1786206352470661460,"word_count":330},"code/apps/electron-vite-project/electron/main/email/__tests__/beapSync.test.ts":{"size":7573,"mtime_ns":1786206352470661460,"word_count":724},"code/apps/electron-vite-project/electron/main/email/__tests__/connectToDisplay.regression.test.ts":{"size":2629,"mtime_ns":1786206352470661460,"word_count":252},"code/apps/electron-vite-project/electron/main/email/__tests__/dedicatedSandboxReadProviderStatus.test.ts":{"size":1258,"mtime_ns":1786206352470661460,"word_count":96},"code/apps/electron-vite-project/electron/main/email/__tests__/dedicatedSandboxSelfTrigger.test.ts":{"size":8107,"mtime_ns":1786206352470661460,"word_count":695},"code/apps/electron-vite-project/electron/main/email/__tests__/emailInboxAttachmentInvariants.test.ts":{"size":2567,"mtime_ns":1786206352470661460,"word_count":272},"code/apps/electron-vite-project/electron/main/email/__tests__/emailSyncPauseAndImapScheduler.test.ts":{"size":3640,"mtime_ns":1786206352470661460,"word_count":405},"code/apps/electron-vite-project/electron/main/email/__tests__/imapBruteForceAutoSync.regression.test.ts":{"size":1637,"mtime_ns":1786206352470661460,"word_count":141},"code/apps/electron-vite-project/electron/main/email/__tests__/inboxAiErrorMapping.contextOverflow.test.ts":{"size":1205,"mtime_ns":1786206352470661460,"word_count":118},"code/apps/electron-vite-project/electron/main/email/__tests__/inboxAiTaskDedup.attach.test.ts":{"size":2595,"mtime_ns":1786206352470661460,"word_count":231},"code/apps/electron-vite-project/electron/main/email/__tests__/inboxAiTaskDedup.replay.test.ts":{"size":1492,"mtime_ns":1786206352470661460,"word_count":127},"code/apps/electron-vite-project/electron/main/email/__tests__/inboxLifecycleEngine.tick.test.ts":{"size":6711,"mtime_ns":1786206352470661460,"word_count":595},"code/apps/electron-vite-project/electron/main/email/__tests__/inboxOllamaAnalyzeStreamSandbox.regression.test.ts":{"size":4046,"mtime_ns":1786206352470661460,"word_count":365},"code/apps/electron-vite-project/electron/main/email/__tests__/inboxOrchestratorRemoteQueue.enqueue.test.ts":{"size":11088,"mtime_ns":1786206352470661460,"word_count":950},"code/apps/electron-vite-project/electron/main/email/__tests__/inboxPromptGuard.test.ts":{"size":1758,"mtime_ns":1786206352470661460,"word_count":157},"code/apps/electron-vite-project/electron/main/email/__tests__/inboxSealedRead.test.ts":{"size":4902,"mtime_ns":1786206352470661460,"word_count":461},"code/apps/electron-vite-project/electron/main/email/__tests__/ingestionOwnership.test.ts":{"size":8300,"mtime_ns":1786206352470661460,"word_count":641},"code/apps/electron-vite-project/electron/main/email/__tests__/ingestionStatus.test.ts":{"size":17826,"mtime_ns":1786206352470661460,"word_count":1199},"code/apps/electron-vite-project/electron/main/email/__tests__/inlineParseGuard.test.ts":{"size":3814,"mtime_ns":1786206352470661460,"word_count":429},"code/apps/electron-vite-project/electron/main/email/__tests__/ipcSyncResultShape.test.ts":{"size":8934,"mtime_ns":1786206352470661460,"word_count":738},"code/apps/electron-vite-project/electron/main/email/__tests__/localInboxDeletion.regression.test.ts":{"size":6598,"mtime_ns":1786206352470661460,"word_count":654},"code/apps/electron-vite-project/electron/main/email/__tests__/mergeExtensionDepackaged.validation.test.ts":{"size":9590,"mtime_ns":1786206352470661460,"word_count":931},"code/apps/electron-vite-project/electron/main/email/__tests__/messageRouter.depackageSeam.test.ts":{"size":17204,"mtime_ns":1786206352470661460,"word_count":1814},"code/apps/electron-vite-project/electron/main/email/__tests__/messageRouter.ingestTransaction.test.ts":{"size":8047,"mtime_ns":1786206352470661460,"word_count":796},"code/apps/electron-vite-project/electron/main/email/__tests__/oauthScopeSplit.test.ts":{"size":4490,"mtime_ns":1786206352470661460,"word_count":287},"code/apps/electron-vite-project/electron/main/email/__tests__/opaqueIngestion.test.ts":{"size":2670,"mtime_ns":1786206352470661460,"word_count":249},"code/apps/electron-vite-project/electron/main/email/__tests__/originMailboxDelete.regression.test.ts":{"size":6461,"mtime_ns":1786206352470661460,"word_count":520},"code/apps/electron-vite-project/electron/main/email/__tests__/outlookOpaqueFailClosed.test.ts":{"size":1986,"mtime_ns":1786206352470661460,"word_count":240},"code/apps/electron-vite-project/electron/main/email/__tests__/outlookRfc822Fidelity.test.ts":{"size":19611,"mtime_ns":1786206352470661460,"word_count":2083},"code/apps/electron-vite-project/electron/main/email/__tests__/pbeapTrustPersistence.regression.test.ts":{"size":13314,"mtime_ns":1786206352470661460,"word_count":1271},"code/apps/electron-vite-project/electron/main/email/__tests__/pbeapValidation.test.ts":{"size":8677,"mtime_ns":1786206352470661460,"word_count":897},"code/apps/electron-vite-project/electron/main/email/__tests__/pr22SecurityDeferrals.test.ts":{"size":12844,"mtime_ns":1786206352470661460,"word_count":1272},"code/apps/electron-vite-project/electron/main/email/__tests__/pr51DepackagerDeterminism.test.ts":{"size":11750,"mtime_ns":1786206352470661460,"word_count":1067},"code/apps/electron-vite-project/electron/main/email/__tests__/pr52CloneDeterminism.test.ts":{"size":23000,"mtime_ns":1786206352470661460,"word_count":1990},"code/apps/electron-vite-project/electron/main/email/__tests__/readConsentScopeGuard.test.ts":{"size":3159,"mtime_ns":1786206352470661460,"word_count":337},"code/apps/electron-vite-project/electron/main/email/__tests__/remoteDeletion.orphanAccount.test.ts":{"size":599,"mtime_ns":1786206352470661460,"word_count":48},"code/apps/electron-vite-project/electron/main/email/__tests__/roleAwareConsent.test.ts":{"size":10417,"mtime_ns":1786206352474660847,"word_count":1082},"code/apps/electron-vite-project/electron/main/email/__tests__/roleScopedTokenStore.test.ts":{"size":5735,"mtime_ns":1786206352474660847,"word_count":535},"code/apps/electron-vite-project/electron/main/email/__tests__/sandboxCloneInboxFilter.test.ts":{"size":2526,"mtime_ns":1786206352474660847,"word_count":210},"code/apps/electron-vite-project/electron/main/email/__tests__/sandboxCloneReceiveDisplay.test.ts":{"size":1590,"mtime_ns":1786206352474660847,"word_count":146},"code/apps/electron-vite-project/electron/main/email/__tests__/sandboxEmailFetch.oauth.test.ts":{"size":5224,"mtime_ns":1786206352474660847,"word_count":375},"code/apps/electron-vite-project/electron/main/email/__tests__/sandboxIngestionProduction.test.ts":{"size":13142,"mtime_ns":1786206352474660847,"word_count":1085},"code/apps/electron-vite-project/electron/main/email/__tests__/scamWatchdog.test.ts":{"size":4897,"mtime_ns":1786206352474660847,"word_count":443},"code/apps/electron-vite-project/electron/main/email/__tests__/setupFlow.topologyCondition.test.ts":{"size":3620,"mtime_ns":1786206352474660847,"word_count":315},"code/apps/electron-vite-project/electron/main/email/__tests__/syncOrchestrator.ingestionGate.test.ts":{"size":5853,"mtime_ns":1786206352474660847,"word_count":529},"code/apps/electron-vite-project/electron/main/email/__tests__/syncOrchestrator.processingPaused.test.ts":{"size":1971,"mtime_ns":1786206352474660847,"word_count":163},"code/apps/electron-vite-project/electron/main/email/__tests__/userDataBootstrapPersistence.test.ts":{"size":6771,"mtime_ns":1786206352474660847,"word_count":578},"code/apps/electron-vite-project/electron/main/email/accountDeletePersistence.ts":{"size":1646,"mtime_ns":1786206352474660847,"word_count":201},"code/apps/electron-vite-project/electron/main/email/attachmentBlobCrypto.ts":{"size":3758,"mtime_ns":1786206352474660847,"word_count":433},"code/apps/electron-vite-project/electron/main/email/autoSyncLoopRegistry.ts":{"size":952,"mtime_ns":1786206352474660847,"word_count":106},"code/apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts":{"size":69489,"mtime_ns":1786206352474660847,"word_count":6882},"code/apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts":{"size":27098,"mtime_ns":1786206352474660847,"word_count":2763},"code/apps/electron-vite-project/electron/main/email/beapInboxDashboardNotify.ts":{"size":740,"mtime_ns":1786206352474660847,"word_count":88},"code/apps/electron-vite-project/electron/main/email/beapRedirectSource.ts":{"size":10440,"mtime_ns":1786206352474660847,"word_count":1295},"code/apps/electron-vite-project/electron/main/email/beapSync.ts":{"size":15162,"mtime_ns":1786206352474660847,"word_count":1622},"code/apps/electron-vite-project/electron/main/email/builtinGoogleOAuthSupplement.ts":{"size":4088,"mtime_ns":1786206352474660847,"word_count":451},"code/apps/electron-vite-project/electron/main/email/credentials.ts":{"size":20948,"mtime_ns":1786206352474660847,"word_count":2417},"code/apps/electron-vite-project/electron/main/email/dashboardSnapshot.ts":{"size":10143,"mtime_ns":1786206352474660847,"word_count":1026},"code/apps/electron-vite-project/electron/main/email/dedicatedSandboxReadProviderStatus.ts":{"size":1341,"mtime_ns":1786206352474660847,"word_count":132},"code/apps/electron-vite-project/electron/main/email/diagnoseImapStandalone.ts":{"size":3542,"mtime_ns":1786206352474660847,"word_count":385},"code/apps/electron-vite-project/electron/main/email/domain/README.md":{"size":2001,"mtime_ns":1786206352474660847,"word_count":253},"code/apps/electron-vite-project/electron/main/email/domain/accountAggregate.ts":{"size":2254,"mtime_ns":1786206352474660847,"word_count":194},"code/apps/electron-vite-project/electron/main/email/domain/accountIdentity.ts":{"size":1043,"mtime_ns":1786206352474660847,"word_count":119},"code/apps/electron-vite-project/electron/main/email/domain/accountRowPicker.ts":{"size":722,"mtime_ns":1786206352474660847,"word_count":97},"code/apps/electron-vite-project/electron/main/email/domain/capabilitiesRegistry.ts":{"size":2591,"mtime_ns":1786206352474660847,"word_count":231},"code/apps/electron-vite-project/electron/main/email/domain/customImapSmtpPayloadValidation.test.ts":{"size":2496,"mtime_ns":1786206352474660847,"word_count":206},"code/apps/electron-vite-project/electron/main/email/domain/customImapSmtpPayloadValidation.ts":{"size":2605,"mtime_ns":1786206352474660847,"word_count":307},"code/apps/electron-vite-project/electron/main/email/domain/imapLegacyFolders.ts":{"size":850,"mtime_ns":1786206352474660847,"word_count":102},"code/apps/electron-vite-project/electron/main/email/domain/imapPullFolders.ts":{"size":1771,"mtime_ns":1786206352474660847,"word_count":223},"code/apps/electron-vite-project/electron/main/email/domain/index.ts":{"size":531,"mtime_ns":1786206352474660847,"word_count":67},"code/apps/electron-vite-project/electron/main/email/domain/mailboxAccountDedupe.test.ts":{"size":4794,"mtime_ns":1786206352474660847,"word_count":527},"code/apps/electron-vite-project/electron/main/email/domain/mailboxAccountDedupe.ts":{"size":5353,"mtime_ns":1786206352474660847,"word_count":664},"code/apps/electron-vite-project/electron/main/email/domain/mailboxLifecycleMapping.test.ts":{"size":5967,"mtime_ns":1786206352474660847,"word_count":386},"code/apps/electron-vite-project/electron/main/email/domain/mailboxLifecycleMapping.ts":{"size":7054,"mtime_ns":1786206352474660847,"word_count":666},"code/apps/electron-vite-project/electron/main/email/domain/mailboxResolution.ts":{"size":2770,"mtime_ns":1786206352474660847,"word_count":303},"code/apps/electron-vite-project/electron/main/email/domain/mailboxSyncPlan.ts":{"size":3496,"mtime_ns":1786206352474660847,"word_count":433},"code/apps/electron-vite-project/electron/main/email/domain/orchestratorRemoteTypes.ts":{"size":1419,"mtime_ns":1786206352474660847,"word_count":194},"code/apps/electron-vite-project/electron/main/email/domain/remoteLifecycleAbstraction.test.ts":{"size":2241,"mtime_ns":1786206352474660847,"word_count":147},"code/apps/electron-vite-project/electron/main/email/domain/remoteLifecycleAbstraction.ts":{"size":4608,"mtime_ns":1786206352474660847,"word_count":439},"code/apps/electron-vite-project/electron/main/email/domain/securityModeNormalize.test.ts":{"size":943,"mtime_ns":1786206352474660847,"word_count":69},"code/apps/electron-vite-project/electron/main/email/domain/securityModeNormalize.ts":{"size":1452,"mtime_ns":1786206352474660847,"word_count":227},"code/apps/electron-vite-project/electron/main/email/domain/smartSyncPrefs.ts":{"size":1649,"mtime_ns":1786206352474660847,"word_count":234},"code/apps/electron-vite-project/electron/main/email/domain/syncLastSyncAnchorPolicy.test.ts":{"size":1064,"mtime_ns":1786206352474660847,"word_count":113},"code/apps/electron-vite-project/electron/main/email/domain/syncLastSyncAnchorPolicy.ts":{"size":681,"mtime_ns":1786206352474660847,"word_count":93},"code/apps/electron-vite-project/electron/main/email/emailAuthErrors.ts":{"size":901,"mtime_ns":1786206352474660847,"word_count":80},"code/apps/electron-vite-project/electron/main/email/emailDebug.ts":{"size":2143,"mtime_ns":1786206352474660847,"word_count":254},"code/apps/electron-vite-project/electron/main/email/extensionMergeRetryBuffer.ts":{"size":2831,"mtime_ns":1786206352474660847,"word_count":384},"code/apps/electron-vite-project/electron/main/email/gateway.ts":{"size":109124,"mtime_ns":1786206352474660847,"word_count":10480},"code/apps/electron-vite-project/electron/main/email/gatewayOrphanAccountError.ts":{"size":354,"mtime_ns":1786206352474660847,"word_count":44},"code/apps/electron-vite-project/electron/main/email/gmailCredentialsCheckPayload.ts":{"size":2885,"mtime_ns":1786206352474660847,"word_count":208},"code/apps/electron-vite-project/electron/main/email/gmailOAuthConnectDebug.ts":{"size":1550,"mtime_ns":1786206352474660847,"word_count":182},"code/apps/electron-vite-project/electron/main/email/gmailOAuthResolve.test.ts":{"size":10411,"mtime_ns":1786206352474660847,"word_count":522},"code/apps/electron-vite-project/electron/main/email/gmailOAuthResolve.ts":{"size":9014,"mtime_ns":1786206352474660847,"word_count":774},"code/apps/electron-vite-project/electron/main/email/gmailOAuthRuntimeProof.ts":{"size":1521,"mtime_ns":1786206352474660847,"word_count":147},"code/apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.packaged.test.ts":{"size":11155,"mtime_ns":1786206352474660847,"word_count":882},"code/apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.test.ts":{"size":2461,"mtime_ns":1786206352474660847,"word_count":155},"code/apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts":{"size":28800,"mtime_ns":1786206352474660847,"word_count":2722},"code/apps/electron-vite-project/electron/main/email/imapLifecycleReconcile.ts":{"size":692,"mtime_ns":1786206352474660847,"word_count":97},"code/apps/electron-vite-project/electron/main/email/imapSyncTelemetry.ts":{"size":2078,"mtime_ns":1786206352474660847,"word_count":243},"code/apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts":{"size":9551,"mtime_ns":1786206352474660847,"word_count":1002},"code/apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts":{"size":14037,"mtime_ns":1786206352474660847,"word_count":1478},"code/apps/electron-vite-project/electron/main/email/inboxLifecycleEngine.ts":{"size":9321,"mtime_ns":1786206352474660847,"word_count":951},"code/apps/electron-vite-project/electron/main/email/inboxLlmChat.ts":{"size":17834,"mtime_ns":1786206352474660847,"word_count":1919},"code/apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts":{"size":16690,"mtime_ns":1786206352474660847,"word_count":1579},"code/apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts":{"size":67011,"mtime_ns":1786206352478660235,"word_count":7096},"code/apps/electron-vite-project/electron/main/email/inboxPromptGuard.ts":{"size":3913,"mtime_ns":1786206352478660235,"word_count":439},"code/apps/electron-vite-project/electron/main/email/inboxRowSealPolicy.ts":{"size":1991,"mtime_ns":1786206352478660235,"word_count":242},"code/apps/electron-vite-project/electron/main/email/inboxSealedRead.ts":{"size":6635,"mtime_ns":1786206352478660235,"word_count":740},"code/apps/electron-vite-project/electron/main/email/inboxWhereClause.ts":{"size":4443,"mtime_ns":1786206352478660235,"word_count":527},"code/apps/electron-vite-project/electron/main/email/index.ts":{"size":3158,"mtime_ns":1786206352478660235,"word_count":365},"code/apps/electron-vite-project/electron/main/email/ingestionOwnership.ts":{"size":9847,"mtime_ns":1786206352478660235,"word_count":1211},"code/apps/electron-vite-project/electron/main/email/ingestionPollTrigger/B1_CROSS_NETWORK_POLL_RUNBOOK.md":{"size":6463,"mtime_ns":1786206352478660235,"word_count":949},"code/apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/crossNetworkPollArchitecture.test.ts":{"size":2785,"mtime_ns":1786206352478660235,"word_count":221},"code/apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/dedicatedHostIngestionPollTrigger.test.ts":{"size":9249,"mtime_ns":1786206352478660235,"word_count":728},"code/apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/hostIngestionPollCompletion.test.ts":{"size":3702,"mtime_ns":1786206352478660235,"word_count":314},"code/apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayCapsuleHandler.test.ts":{"size":10122,"mtime_ns":1786206352478660235,"word_count":822},"code/apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayResultCapsuleHandler.test.ts":{"size":14122,"mtime_ns":1786206352478660235,"word_count":1159},"code/apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/sealedRelayHostPollTrigger.test.ts":{"size":9431,"mtime_ns":1786206352478660235,"word_count":674},"code/apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/sealedServiceRpcRelayDispatch.test.ts":{"size":4395,"mtime_ns":1786206352478660235,"word_count":315},"code/apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostAckStore.ts":{"size":1365,"mtime_ns":1786206352478660235,"word_count":139},"code/apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostIngestionPollCompletion.ts":{"size":3605,"mtime_ns":1786206352478660235,"word_count":337},"code/apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostPendingStore.ts":{"size":2630,"mtime_ns":1786206352478660235,"word_count":217},"code/apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts":{"size":9942,"mtime_ns":1786206352478660235,"word_count":879},"code/apps/electron-vite-project/electron/main/email/ingestionPollTrigger/pollIdempotencyCache.ts":{"size":2169,"mtime_ns":1786206352478660235,"word_count":224},"code/apps/electron-vite-project/electron/main/email/ingestionPollTrigger/receiver.ts":{"size":4746,"mtime_ns":1786206352478660235,"word_count":403},"code/apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts":{"size":11038,"mtime_ns":1786206352478660235,"word_count":937},"code/apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts":{"size":8040,"mtime_ns":1786206352478660235,"word_count":769},"code/apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relaySend.ts":{"size":3972,"mtime_ns":1786206352478660235,"word_count":387},"code/apps/electron-vite-project/electron/main/email/ingestionPollTrigger/sealedServiceRpcRelayDispatch.ts":{"size":2489,"mtime_ns":1786206352478660235,"word_count":188},"code/apps/electron-vite-project/electron/main/email/ingestionPollTrigger/wire.ts":{"size":2668,"mtime_ns":1786206352478660235,"word_count":265},"code/apps/electron-vite-project/electron/main/email/ingestionStatus.ts":{"size":10022,"mtime_ns":1786206352478660235,"word_count":1010},"code/apps/electron-vite-project/electron/main/email/inlineParseGuard.ts":{"size":2218,"mtime_ns":1786206352478660235,"word_count":296},"code/apps/electron-vite-project/electron/main/email/ipc.ts":{"size":280612,"mtime_ns":1786206352478660235,"word_count":28661},"code/apps/electron-vite-project/electron/main/email/ipcSyncResultShape.ts":{"size":7114,"mtime_ns":1786206352478660235,"word_count":853},"code/apps/electron-vite-project/electron/main/email/localInboxDeletion.ts":{"size":2815,"mtime_ns":1786206352478660235,"word_count":364},"code/apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts":{"size":25259,"mtime_ns":1786206352478660235,"word_count":2458},"code/apps/electron-vite-project/electron/main/email/messageRouter.ts":{"size":52661,"mtime_ns":1786206352478660235,"word_count":5670},"code/apps/electron-vite-project/electron/main/email/oauth-server.ts":{"size":13211,"mtime_ns":1786206352478660235,"word_count":1405},"code/apps/electron-vite-project/electron/main/email/oauthScopes.ts":{"size":6168,"mtime_ns":1786206352478660235,"word_count":722},"code/apps/electron-vite-project/electron/main/email/opaqueIngestion.ts":{"size":3717,"mtime_ns":1786206352478660235,"word_count":537},"code/apps/electron-vite-project/electron/main/email/originMailboxDelete.ts":{"size":4916,"mtime_ns":1786206352478660235,"word_count":470},"code/apps/electron-vite-project/electron/main/email/originMailboxDeleteCapability.ts":{"size":4829,"mtime_ns":1786206352478660235,"word_count":486},"code/apps/electron-vite-project/electron/main/email/pdf-extractor.ts":{"size":5926,"mtime_ns":1786206352478660235,"word_count":756},"code/apps/electron-vite-project/electron/main/email/plainEmailConverter.ts":{"size":11451,"mtime_ns":1786206352478660235,"word_count":1249},"code/apps/electron-vite-project/electron/main/email/providers/base.ts":{"size":8957,"mtime_ns":1786206352478660235,"word_count":1065},"code/apps/electron-vite-project/electron/main/email/providers/gmail.ts":{"size":57640,"mtime_ns":1786206352478660235,"word_count":4940},"code/apps/electron-vite-project/electron/main/email/providers/imap.ts":{"size":78066,"mtime_ns":1786206352478660235,"word_count":7643},"code/apps/electron-vite-project/electron/main/email/providers/imapFetchReliable.ts":{"size":8705,"mtime_ns":1786206352478660235,"word_count":843},"code/apps/electron-vite-project/electron/main/email/providers/outlook.ts":{"size":48608,"mtime_ns":1786206352482659621,"word_count":4930},"code/apps/electron-vite-project/electron/main/email/providers/zoho.ts":{"size":30113,"mtime_ns":1786206352482659621,"word_count":2983},"code/apps/electron-vite-project/electron/main/email/remoteDeletion.ts":{"size":11540,"mtime_ns":1786206352482659621,"word_count":1351},"code/apps/electron-vite-project/electron/main/email/resolveConnectOAuthScopeRole.ts":{"size":978,"mtime_ns":1786206352482659621,"word_count":114},"code/apps/electron-vite-project/electron/main/email/roleAwareConsent.ts":{"size":6707,"mtime_ns":1786206352482659621,"word_count":822},"code/apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts":{"size":7759,"mtime_ns":1786206352482659621,"word_count":936},"code/apps/electron-vite-project/electron/main/email/sandboxCloneInboxFilter.ts":{"size":2556,"mtime_ns":1786206352482659621,"word_count":271},"code/apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts":{"size":13784,"mtime_ns":1786206352482659621,"word_count":1386},"code/apps/electron-vite-project/electron/main/email/sandboxIngestion.ts":{"size":15863,"mtime_ns":1786206352482659621,"word_count":1755},"code/apps/electron-vite-project/electron/main/email/sandboxIngestionProduction.ts":{"size":4585,"mtime_ns":1786206352482659621,"word_count":475},"code/apps/electron-vite-project/electron/main/email/sandboxOpaqueFetchRouter.ts":{"size":2338,"mtime_ns":1786206352482659621,"word_count":251},"code/apps/electron-vite-project/electron/main/email/sanitizer.ts":{"size":11454,"mtime_ns":1786206352482659621,"word_count":1373},"code/apps/electron-vite-project/electron/main/email/scamWatchdog.ts":{"size":7033,"mtime_ns":1786206352482659621,"word_count":1023},"code/apps/electron-vite-project/electron/main/email/sealedContentUpdate.ts":{"size":21913,"mtime_ns":1786206352482659621,"word_count":2231},"code/apps/electron-vite-project/electron/main/email/secure-storage.ts":{"size":6795,"mtime_ns":1786206352482659621,"word_count":684},"code/apps/electron-vite-project/electron/main/email/syncOrchestrator.ts":{"size":47095,"mtime_ns":1786206352482659621,"word_count":4583},"code/apps/electron-vite-project/electron/main/email/syncPullLock.ts":{"size":1545,"mtime_ns":1786206352482659621,"word_count":198},"code/apps/electron-vite-project/electron/main/email/types.ts":{"size":25840,"mtime_ns":1786206352482659621,"word_count":2992},"code/apps/electron-vite-project/electron/main/enforcement/authorizeToolInvocation.ts":{"size":5128,"mtime_ns":1786206352482659621,"word_count":551},"code/apps/electron-vite-project/electron/main/execution/__tests__/executeToolRequest.test.ts":{"size":14901,"mtime_ns":1786206352482659621,"word_count":1322},"code/apps/electron-vite-project/electron/main/execution/__tests__/noBypass.test.ts":{"size":4305,"mtime_ns":1786206352482659621,"word_count":426},"code/apps/electron-vite-project/electron/main/execution/executeToolRequest.ts":{"size":6948,"mtime_ns":1786206352482659621,"word_count":759},"code/apps/electron-vite-project/electron/main/execution/toolRegistry.ts":{"size":992,"mtime_ns":1786206352482659621,"word_count":131},"code/apps/electron-vite-project/electron/main/execution/types.ts":{"size":1145,"mtime_ns":1786206352482659621,"word_count":137},"code/apps/electron-vite-project/electron/main/handshake/CAPSULE_IMPORT_INDEXING.md":{"size":1673,"mtime_ns":1786206352482659621,"word_count":202},"code/apps/electron-vite-project/electron/main/handshake/HYBRID_SEARCH_FLOW.md":{"size":4716,"mtime_ns":1786206352482659621,"word_count":394},"code/apps/electron-vite-project/electron/main/handshake/INGESTION_ARCHITECTURE.md":{"size":4513,"mtime_ns":1786206352482659621,"word_count":536},"code/apps/electron-vite-project/electron/main/handshake/QUERY_CACHE.md":{"size":1302,"mtime_ns":1786206352482659621,"word_count":163},"code/apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.internal.regression.test.ts":{"size":4610,"mtime_ns":1786206352482659621,"word_count":354},"code/apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.regression.test.ts":{"size":4800,"mtime_ns":1786206352482659621,"word_count":375},"code/apps/electron-vite-project/electron/main/handshake/__tests__/b81BeapInboxPagination.test.ts":{"size":12110,"mtime_ns":1786206352482659621,"word_count":1176},"code/apps/electron-vite-project/electron/main/handshake/__tests__/b8BeapInboxIpc.test.ts":{"size":18272,"mtime_ns":1786206352482659621,"word_count":1608},"code/apps/electron-vite-project/electron/main/handshake/__tests__/blockExtraction.customFields.test.ts":{"size":3421,"mtime_ns":1786206352482659621,"word_count":286},"code/apps/electron-vite-project/electron/main/handshake/__tests__/canonicalRebuild.test.ts":{"size":13492,"mtime_ns":1786206352482659621,"word_count":1083},"code/apps/electron-vite-project/electron/main/handshake/__tests__/capsuleBuilder.internalRelay.test.ts":{"size":2665,"mtime_ns":1786206352482659621,"word_count":183},"code/apps/electron-vite-project/electron/main/handshake/__tests__/chainIntegrity.test.ts":{"size":3469,"mtime_ns":1786206352482659621,"word_count":300},"code/apps/electron-vite-project/electron/main/handshake/__tests__/cloudSnippet.test.ts":{"size":2893,"mtime_ns":1786206352482659621,"word_count":320},"code/apps/electron-vite-project/electron/main/handshake/__tests__/contextBlocks.test.ts":{"size":3020,"mtime_ns":1786206352482659621,"word_count":274},"code/apps/electron-vite-project/electron/main/handshake/__tests__/contextGovernance.test.ts":{"size":5894,"mtime_ns":1786206352482659621,"word_count":494},"code/apps/electron-vite-project/electron/main/handshake/__tests__/contextHash.test.ts":{"size":6633,"mtime_ns":1786206352482659621,"word_count":607},"code/apps/electron-vite-project/electron/main/handshake/__tests__/contextIngestion.test.ts":{"size":8570,"mtime_ns":1786206352482659621,"word_count":837},"code/apps/electron-vite-project/electron/main/handshake/__tests__/contextSyncEnqueue.uxShape.test.ts":{"size":1433,"mtime_ns":1786206352482659621,"word_count":154},"code/apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyKeyBinding.regression.test.ts":{"size":10245,"mtime_ns":1786206352482659621,"word_count":904},"code/apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyRepair.test.ts":{"size":4222,"mtime_ns":1786206352482659621,"word_count":382},"code/apps/electron-vite-project/electron/main/handshake/__tests__/e2e.pipeline.test.ts":{"size":17194,"mtime_ns":1786206352482659621,"word_count":1536},"code/apps/electron-vite-project/electron/main/handshake/__tests__/e2e.roundtrip.test.ts":{"size":16379,"mtime_ns":1786206352482659621,"word_count":1375},"code/apps/electron-vite-project/electron/main/handshake/__tests__/emailTransport.test.ts":{"size":5046,"mtime_ns":1786206352486659009,"word_count":420},"code/apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.remoteRevoke.test.ts":{"size":7351,"mtime_ns":1786206352486659009,"word_count":688},"code/apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.test.ts":{"size":22704,"mtime_ns":1786206352486659009,"word_count":1930},"code/apps/electron-vite-project/electron/main/handshake/__tests__/externalProcessing.test.ts":{"size":4697,"mtime_ns":1786206352486659009,"word_count":376},"code/apps/electron-vite-project/electron/main/handshake/__tests__/handshake-e2e-hardened.test.ts":{"size":19172,"mtime_ns":1786206352486659009,"word_count":1513},"code/apps/electron-vite-project/electron/main/handshake/__tests__/handshakeAccountIsolation.test.ts":{"size":11053,"mtime_ns":1786206352486659009,"word_count":989},"code/apps/electron-vite-project/electron/main/handshake/__tests__/handshakeCrossSurface.regression.todo.test.ts":{"size":2713,"mtime_ns":1786206352486659009,"word_count":163},"code/apps/electron-vite-project/electron/main/handshake/__tests__/handshakeCrossSurface.regressionMatrix.md":{"size":15326,"mtime_ns":1786206352486659009,"word_count":1907},"code/apps/electron-vite-project/electron/main/handshake/__tests__/handshakeRefactorRegression.matrix.test.ts":{"size":6859,"mtime_ns":1786206352486659009,"word_count":633},"code/apps/electron-vite-project/electron/main/handshake/__tests__/handshakeTestDb.ts":{"size":13144,"mtime_ns":1786206352486659009,"word_count":1308},"code/apps/electron-vite-project/electron/main/handshake/__tests__/handshakeVerification.test.ts":{"size":6385,"mtime_ns":1786206352486659009,"word_count":481},"code/apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts":{"size":65631,"mtime_ns":1786206352486659009,"word_count":5412},"code/apps/electron-vite-project/electron/main/handshake/__tests__/helpers.ts":{"size":5803,"mtime_ns":1786206352486659009,"word_count":425},"code/apps/electron-vite-project/electron/main/handshake/__tests__/intentClassifier.test.ts":{"size":2707,"mtime_ns":1786206352486659009,"word_count":240},"code/apps/electron-vite-project/electron/main/handshake/__tests__/internalCoordinationWire.test.ts":{"size":4074,"mtime_ns":1786206352486659009,"word_count":271},"code/apps/electron-vite-project/electron/main/handshake/__tests__/internalDeviceIdentity.flow.test.ts":{"size":4235,"mtime_ns":1786206352486659009,"word_count":319},"code/apps/electron-vite-project/electron/main/handshake/__tests__/internalPersistence.test.ts":{"size":5021,"mtime_ns":1786206352486659009,"word_count":313},"code/apps/electron-vite-project/electron/main/handshake/__tests__/internalRelayOutboundGuards.test.ts":{"size":1634,"mtime_ns":1786206352486659009,"word_count":94},"code/apps/electron-vite-project/electron/main/handshake/__tests__/internalSamePrincipal.contextSync.regression.test.ts":{"size":4871,"mtime_ns":1786206352486659009,"word_count":399},"code/apps/electron-vite-project/electron/main/handshake/__tests__/ipc.handshake.test.ts":{"size":17984,"mtime_ns":1786206352486659009,"word_count":1523},"code/apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.accept.validation.test.ts":{"size":6325,"mtime_ns":1786206352486659009,"word_count":487},"code/apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.deviceId.test.ts":{"size":2326,"mtime_ns":1786206352486659009,"word_count":201},"code/apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.relayPush.test.ts":{"size":8756,"mtime_ns":1786206352486659009,"word_count":804},"code/apps/electron-vite-project/electron/main/handshake/__tests__/ipc.sandboxBeapSend.test.ts":{"size":4109,"mtime_ns":1786206352486659009,"word_count":385},"code/apps/electron-vite-project/electron/main/handshake/__tests__/mockKeypair.ts":{"size":915,"mtime_ns":1786206352486659009,"word_count":92},"code/apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.backoff.test.ts":{"size":26236,"mtime_ns":1786206352486659009,"word_count":1749},"code/apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.sandboxEgress.test.ts":{"size":4826,"mtime_ns":1786206352486659009,"word_count":437},"code/apps/electron-vite-project/electron/main/handshake/__tests__/p2pTransport.coordination.test.ts":{"size":3015,"mtime_ns":1786206352486659009,"word_count":295},"code/apps/electron-vite-project/electron/main/handshake/__tests__/p2pTransport.diagnostics.test.ts":{"size":10582,"mtime_ns":1786206352486659009,"word_count":790},"code/apps/electron-vite-project/electron/main/handshake/__tests__/pairingActivation.rig.test.ts":{"size":13342,"mtime_ns":1786206352486659009,"word_count":1202},"code/apps/electron-vite-project/electron/main/handshake/__tests__/pairingCodeRelayGap.rig.test.ts":{"size":8222,"mtime_ns":1786206352486659009,"word_count":826},"code/apps/electron-vite-project/electron/main/handshake/__tests__/parseDirectIngestHttpAck.test.ts":{"size":559,"mtime_ns":1786206352486659009,"word_count":54},"code/apps/electron-vite-project/electron/main/handshake/__tests__/pipeline.test.ts":{"size":4364,"mtime_ns":1786206352486659009,"word_count":425},"code/apps/electron-vite-project/electron/main/handshake/__tests__/policyResolution.test.ts":{"size":3236,"mtime_ns":1786206352486659009,"word_count":312},"code/apps/electron-vite-project/electron/main/handshake/__tests__/postAcceptContextSync.ingestPaths.regression.test.ts":{"size":9457,"mtime_ns":1786206352486659009,"word_count":797},"code/apps/electron-vite-project/electron/main/handshake/__tests__/qbeapTransports.rig.test.ts":{"size":4679,"mtime_ns":1786206352486659009,"word_count":474},"code/apps/electron-vite-project/electron/main/handshake/__tests__/regressionMatrix.relayHandshakeSandbox.test.ts":{"size":7685,"mtime_ns":1786206352486659009,"word_count":727},"code/apps/electron-vite-project/electron/main/handshake/__tests__/relayAllowlistSealedServiceRpc.test.ts":{"size":1612,"mtime_ns":1786206352486659009,"word_count":136},"code/apps/electron-vite-project/electron/main/handshake/__tests__/relayFailureMode.rig.test.ts":{"size":7840,"mtime_ns":1786206352486659009,"word_count":809},"code/apps/electron-vite-project/electron/main/handshake/__tests__/relayOutboundClassification.test.ts":{"size":1829,"mtime_ns":1786206352486659009,"word_count":129},"code/apps/electron-vite-project/electron/main/handshake/__tests__/relayQueueTransportOutcome.test.ts":{"size":1701,"mtime_ns":1786206352486659009,"word_count":133},"code/apps/electron-vite-project/electron/main/handshake/__tests__/resilience.chaos.test.ts":{"size":7347,"mtime_ns":1786206352486659009,"word_count":741},"code/apps/electron-vite-project/electron/main/handshake/__tests__/revocation.test.ts":{"size":1816,"mtime_ns":1786206352486659009,"word_count":148},"code/apps/electron-vite-project/electron/main/handshake/__tests__/revoke.outboundSeq.regression.test.ts":{"size":1881,"mtime_ns":1786206352486659009,"word_count":189},"code/apps/electron-vite-project/electron/main/handshake/__tests__/revokeRepair.rig.test.ts":{"size":6783,"mtime_ns":1786206352486659009,"word_count":698},"code/apps/electron-vite-project/electron/main/handshake/__tests__/rig/CROSS_MACHINE_RUNBOOK.md":{"size":15701,"mtime_ns":1786206352486659009,"word_count":2101},"code/apps/electron-vite-project/electron/main/handshake/__tests__/rig/DEFERRED.md":{"size":13426,"mtime_ns":1786206352486659009,"word_count":1683},"code/apps/electron-vite-project/electron/main/handshake/__tests__/rig/README.md":{"size":18073,"mtime_ns":1786206352486659009,"word_count":2187},"code/apps/electron-vite-project/electron/main/handshake/__tests__/rig/coordinationRelayHarness.ts":{"size":5978,"mtime_ns":1786206352486659009,"word_count":668},"code/apps/electron-vite-project/electron/main/handshake/__tests__/rig/pairingFlow.ts":{"size":6661,"mtime_ns":1786206352486659009,"word_count":604},"code/apps/electron-vite-project/electron/main/handshake/__tests__/rig/rig-evidence/2026-06-08/CHECKLIST.md":{"size":6427,"mtime_ns":1786206352486659009,"word_count":913},"code/apps/electron-vite-project/electron/main/handshake/__tests__/rig/rig-evidence/2026-06-08/README.md":{"size":1487,"mtime_ns":1786206352486659009,"word_count":187},"code/apps/electron-vite-project/electron/main/handshake/__tests__/rig/rig-evidence/2026-06-08/git-head-sandbox.txt":{"size":468,"mtime_ns":1786206352486659009,"word_count":31},"code/apps/electron-vite-project/electron/main/handshake/__tests__/rig/rig-evidence/2026-06-08/git-head-windows-host.txt":{"size":287,"mtime_ns":1786206352486659009,"word_count":32},"code/apps/electron-vite-project/electron/main/handshake/__tests__/rig/rig-evidence/2026-06-08/relay-registry.txt":{"size":1205,"mtime_ns":1786206352486659009,"word_count":73},"code/apps/electron-vite-project/electron/main/handshake/__tests__/rig/rig-evidence/2026-06-10/PREFLIGHT.md":{"size":3801,"mtime_ns":1786206352486659009,"word_count":510},"code/apps/electron-vite-project/electron/main/handshake/__tests__/rig/rig-evidence/2026-06-10/README.md":{"size":5605,"mtime_ns":1786206352486659009,"word_count":711},"code/apps/electron-vite-project/electron/main/handshake/__tests__/rig/rig-evidence/2026-06-10/build-identity.txt":{"size":274,"mtime_ns":1786206352486659009,"word_count":9},"code/apps/electron-vite-project/electron/main/handshake/__tests__/rig/rig-evidence/2026-06-10/git-head-mini-pc.txt":{"size":125,"mtime_ns":1786206352486659009,"word_count":13},"code/apps/electron-vite-project/electron/main/handshake/__tests__/sandboxTopologyKind.test.ts":{"size":6594,"mtime_ns":1786206352486659009,"word_count":506},"code/apps/electron-vite-project/electron/main/handshake/__tests__/semanticSearch.embedFailure.fallback.regression.test.ts":{"size":2814,"mtime_ns":1786206352486659009,"word_count":271},"code/apps/electron-vite-project/electron/main/handshake/__tests__/sharingMode.test.ts":{"size":8884,"mtime_ns":1786206352486659009,"word_count":701},"code/apps/electron-vite-project/electron/main/handshake/__tests__/signatureKeys.test.ts":{"size":2395,"mtime_ns":1786206352486659009,"word_count":237},"code/apps/electron-vite-project/electron/main/handshake/__tests__/stateMachine.test.ts":{"size":7250,"mtime_ns":1786206352486659009,"word_count":596},"code/apps/electron-vite-project/electron/main/handshake/__tests__/structuredQuery.test.ts":{"size":10349,"mtime_ns":1786206352486659009,"word_count":946},"code/apps/electron-vite-project/electron/main/handshake/__tests__/tierClassification.test.ts":{"size":3274,"mtime_ns":1786206352486659009,"word_count":342},"code/apps/electron-vite-project/electron/main/handshake/__tests__/topologyAutoWire.delegationCallback.test.ts":{"size":5837,"mtime_ns":1786206352486659009,"word_count":481},"code/apps/electron-vite-project/electron/main/handshake/__tests__/topologyAutoWire.test.ts":{"size":11827,"mtime_ns":1786206352486659009,"word_count":1000},"code/apps/electron-vite-project/electron/main/handshake/__tests__/vaultGating.test.ts":{"size":658,"mtime_ns":1786206352486659009,"word_count":80},"code/apps/electron-vite-project/electron/main/handshake/activeHandshakeHealth.ts":{"size":3942,"mtime_ns":1786206352486659009,"word_count":422},"code/apps/electron-vite-project/electron/main/handshake/aiProviders.ts":{"size":28544,"mtime_ns":1786206352490658396,"word_count":2812},"code/apps/electron-vite-project/electron/main/handshake/auditLog.ts":{"size":1842,"mtime_ns":1786206352490658396,"word_count":162},"code/apps/electron-vite-project/electron/main/handshake/blockExtraction.ts":{"size":12233,"mtime_ns":1786206352490658396,"word_count":1353},"code/apps/electron-vite-project/electron/main/handshake/blockRetrieval.ts":{"size":11646,"mtime_ns":1786206352490658396,"word_count":1337},"code/apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts":{"size":36931,"mtime_ns":1786206352490658396,"word_count":4330},"code/apps/electron-vite-project/electron/main/handshake/capsuleBlockIndexer.ts":{"size":5725,"mtime_ns":1786206352490658396,"word_count":624},"code/apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts":{"size":46839,"mtime_ns":1786206352490658396,"word_count":4482},"code/apps/electron-vite-project/electron/main/handshake/capsuleHash.ts":{"size":3876,"mtime_ns":1786206352118715391,"word_count":412},"code/apps/electron-vite-project/electron/main/handshake/capsuleTransport.ts":{"size":3932,"mtime_ns":1786206352118715391,"word_count":502},"code/apps/electron-vite-project/electron/main/handshake/cloudSnippet.ts":{"size":1832,"mtime_ns":1786206352118715391,"word_count":236},"code/apps/electron-vite-project/electron/main/handshake/contextBlocks.ts":{"size":6066,"mtime_ns":1786206352118715391,"word_count":668},"code/apps/electron-vite-project/electron/main/handshake/contextCommitment.ts":{"size":3408,"mtime_ns":1786206352118715391,"word_count":446},"code/apps/electron-vite-project/electron/main/handshake/contextGovernance.ts":{"size":9735,"mtime_ns":1786206352118715391,"word_count":955},"code/apps/electron-vite-project/electron/main/handshake/contextHash.ts":{"size":6841,"mtime_ns":1786206352118715391,"word_count":850},"code/apps/electron-vite-project/electron/main/handshake/contextIngestion.ts":{"size":7138,"mtime_ns":1786206352118715391,"word_count":785},"code/apps/electron-vite-project/electron/main/handshake/contextRetrievalTypes.ts":{"size":414,"mtime_ns":1786206352118715391,"word_count":54},"code/apps/electron-vite-project/electron/main/handshake/contextSyncActiveGate.ts":{"size":750,"mtime_ns":1786206352122714779,"word_count":84},"code/apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts":{"size":16759,"mtime_ns":1786206352122714779,"word_count":1683},"code/apps/electron-vite-project/electron/main/handshake/contextSyncSeal.ts":{"size":8335,"mtime_ns":1786206352122714779,"word_count":989},"code/apps/electron-vite-project/electron/main/handshake/counterpartyRepair.ts":{"size":7811,"mtime_ns":1786206352122714779,"word_count":878},"code/apps/electron-vite-project/electron/main/handshake/db.ts":{"size":111929,"mtime_ns":1786206352122714779,"word_count":11327},"code/apps/electron-vite-project/electron/main/handshake/emailTransport.ts":{"size":2821,"mtime_ns":1786206352122714779,"word_count":381},"code/apps/electron-vite-project/electron/main/handshake/embeddings.ts":{"size":10603,"mtime_ns":1786206352122714779,"word_count":1043},"code/apps/electron-vite-project/electron/main/handshake/enforcement.ts":{"size":47554,"mtime_ns":1786206352122714779,"word_count":4263},"code/apps/electron-vite-project/electron/main/handshake/handshakeAccountIsolation.ts":{"size":4497,"mtime_ns":1786206352122714779,"word_count":566},"code/apps/electron-vite-project/electron/main/handshake/handshakeConfidentiality.ts":{"size":4926,"mtime_ns":1786206352122714779,"word_count":577},"code/apps/electron-vite-project/electron/main/handshake/handshakeHealthRemoteCheck.ts":{"size":5099,"mtime_ns":1786206352122714779,"word_count":537},"code/apps/electron-vite-project/electron/main/handshake/handshakeHealthStartupLog.ts":{"size":3332,"mtime_ns":1786206352122714779,"word_count":334},"code/apps/electron-vite-project/electron/main/handshake/handshakeVerification.ts":{"size":6875,"mtime_ns":1786206352122714779,"word_count":692},"code/apps/electron-vite-project/electron/main/handshake/hybridSearch.ts":{"size":5313,"mtime_ns":1786206352122714779,"word_count":557},"code/apps/electron-vite-project/electron/main/handshake/index.ts":{"size":1039,"mtime_ns":1786206352122714779,"word_count":102},"code/apps/electron-vite-project/electron/main/handshake/initiatorPersist.ts":{"size":9946,"mtime_ns":1786206352122714779,"word_count":831},"code/apps/electron-vite-project/electron/main/handshake/intentClassifier.ts":{"size":4487,"mtime_ns":1786206352122714779,"word_count":351},"code/apps/electron-vite-project/electron/main/handshake/intentExecution.ts":{"size":4163,"mtime_ns":1786206352122714779,"word_count":470},"code/apps/electron-vite-project/electron/main/handshake/intentRouter.ts":{"size":1769,"mtime_ns":1786206352122714779,"word_count":185},"code/apps/electron-vite-project/electron/main/handshake/internalCoordinationWire.ts":{"size":2870,"mtime_ns":1786206352122714779,"word_count":256},"code/apps/electron-vite-project/electron/main/handshake/internalPersistence.ts":{"size":5465,"mtime_ns":1786206352122714779,"word_count":572},"code/apps/electron-vite-project/electron/main/handshake/internalRelayOutboundGuards.ts":{"size":10577,"mtime_ns":1786206352122714779,"word_count":1052},"code/apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts":{"size":12233,"mtime_ns":1786206352122714779,"word_count":1256},"code/apps/electron-vite-project/electron/main/handshake/ipc.ts":{"size":171426,"mtime_ns":1786206352126714166,"word_count":16100},"code/apps/electron-vite-project/electron/main/handshake/keyBindingDebug.ts":{"size":3223,"mtime_ns":1786206352126714166,"word_count":375},"code/apps/electron-vite-project/electron/main/handshake/keywordSearch.ts":{"size":6946,"mtime_ns":1786206352126714166,"word_count":782},"code/apps/electron-vite-project/electron/main/handshake/latencyInstrumentation.ts":{"size":4760,"mtime_ns":1786206352126714166,"word_count":385},"code/apps/electron-vite-project/electron/main/handshake/ledger.ts":{"size":15530,"mtime_ns":1786206352126714166,"word_count":1760},"code/apps/electron-vite-project/electron/main/handshake/llmStream.ts":{"size":13292,"mtime_ns":1786206352126714166,"word_count":1484},"code/apps/electron-vite-project/electron/main/handshake/outboundQueue.ts":{"size":55660,"mtime_ns":1786206352126714166,"word_count":5111},"code/apps/electron-vite-project/electron/main/handshake/p2pTokenBackfill.ts":{"size":4266,"mtime_ns":1786206352126714166,"word_count":415},"code/apps/electron-vite-project/electron/main/handshake/p2pTransport.ts":{"size":31942,"mtime_ns":1786206352126714166,"word_count":3127},"code/apps/electron-vite-project/electron/main/handshake/pipeline.ts":{"size":2143,"mtime_ns":1786206352126714166,"word_count":216},"code/apps/electron-vite-project/electron/main/handshake/policyHash.ts":{"size":2537,"mtime_ns":1786206352126714166,"word_count":300},"code/apps/electron-vite-project/electron/main/handshake/queryCache.ts":{"size":2907,"mtime_ns":1786206352126714166,"word_count":360},"code/apps/electron-vite-project/electron/main/handshake/recipientPersist.ts":{"size":9173,"mtime_ns":1786206352126714166,"word_count":870},"code/apps/electron-vite-project/electron/main/handshake/relationshipId.ts":{"size":2684,"mtime_ns":1786206352126714166,"word_count":350},"code/apps/electron-vite-project/electron/main/handshake/relayOutboundClassification.ts":{"size":2456,"mtime_ns":1786206352126714166,"word_count":283},"code/apps/electron-vite-project/electron/main/handshake/relayQueueTransportOutcome.ts":{"size":2437,"mtime_ns":1786206352126714166,"word_count":232},"code/apps/electron-vite-project/electron/main/handshake/remoteRevokeCallbackRegistry.ts":{"size":956,"mtime_ns":1786206352126714166,"word_count":122},"code/apps/electron-vite-project/electron/main/handshake/resolvePairingCode.ts":{"size":2817,"mtime_ns":1786206352126714166,"word_count":355},"code/apps/electron-vite-project/electron/main/handshake/retentionJob.ts":{"size":1695,"mtime_ns":1786206352126714166,"word_count":182},"code/apps/electron-vite-project/electron/main/handshake/revocation.ts":{"size":7004,"mtime_ns":1786206352126714166,"word_count":691},"code/apps/electron-vite-project/electron/main/handshake/sandboxTopologyKind.ts":{"size":5459,"mtime_ns":1786206352126714166,"word_count":620},"code/apps/electron-vite-project/electron/main/handshake/sanitize.ts":{"size":1802,"mtime_ns":1786206352126714166,"word_count":233},"code/apps/electron-vite-project/electron/main/handshake/sessionFactory.ts":{"size":3084,"mtime_ns":1786206352126714166,"word_count":357},"code/apps/electron-vite-project/electron/main/handshake/signatureKeys.ts":{"size":3965,"mtime_ns":1786206352126714166,"word_count":492},"code/apps/electron-vite-project/electron/main/handshake/steps/chainIntegrity.ts":{"size":2662,"mtime_ns":1786206352126714166,"word_count":358},"code/apps/electron-vite-project/electron/main/handshake/steps/contextBinding.ts":{"size":1064,"mtime_ns":1786206352126714166,"word_count":142},"code/apps/electron-vite-project/electron/main/handshake/steps/contextVersions.ts":{"size":584,"mtime_ns":1786206352126714166,"word_count":88},"code/apps/electron-vite-project/electron/main/handshake/steps/dedup.ts":{"size":411,"mtime_ns":1786206352126714166,"word_count":45},"code/apps/electron-vite-project/electron/main/handshake/steps/domain.ts":{"size":825,"mtime_ns":1786206352126714166,"word_count":96},"code/apps/electron-vite-project/electron/main/handshake/steps/expiry.ts":{"size":1145,"mtime_ns":1786206352126714166,"word_count":132},"code/apps/electron-vite-project/electron/main/handshake/steps/externalProcessing.ts":{"size":1777,"mtime_ns":1786206352126714166,"word_count":198},"code/apps/electron-vite-project/electron/main/handshake/steps/index.ts":{"size":2572,"mtime_ns":1786206352126714166,"word_count":212},"code/apps/electron-vite-project/electron/main/handshake/steps/inputLimits.ts":{"size":1421,"mtime_ns":1786206352126714166,"word_count":152},"code/apps/electron-vite-project/electron/main/handshake/steps/internalRoutingCapsule.ts":{"size":2792,"mtime_ns":1786206352126714166,"word_count":278},"code/apps/electron-vite-project/electron/main/handshake/steps/ownership.ts":{"size":3629,"mtime_ns":1786206352126714166,"word_count":347},"code/apps/electron-vite-project/electron/main/handshake/steps/policyAnchor.ts":{"size":1235,"mtime_ns":1786206352126714166,"word_count":153},"code/apps/electron-vite-project/electron/main/handshake/steps/policyResolution.ts":{"size":3318,"mtime_ns":1786206352126714166,"word_count":318},"code/apps/electron-vite-project/electron/main/handshake/steps/receiverBinding.ts":{"size":1019,"mtime_ns":1786206352126714166,"word_count":144},"code/apps/electron-vite-project/electron/main/handshake/steps/schemaCheck.ts":{"size":413,"mtime_ns":1786206352126714166,"word_count":47},"code/apps/electron-vite-project/electron/main/handshake/steps/scopePurpose.ts":{"size":937,"mtime_ns":1786206352126714166,"word_count":109},"code/apps/electron-vite-project/electron/main/handshake/steps/sharingMode.ts":{"size":2696,"mtime_ns":1786206352126714166,"word_count":292},"code/apps/electron-vite-project/electron/main/handshake/steps/stateTransition.ts":{"size":5150,"mtime_ns":1786206352126714166,"word_count":579},"code/apps/electron-vite-project/electron/main/handshake/steps/tierSteps.ts":{"size":2836,"mtime_ns":1786206352126714166,"word_count":266},"code/apps/electron-vite-project/electron/main/handshake/steps/timestamp.ts":{"size":1077,"mtime_ns":1786206352126714166,"word_count":143},"code/apps/electron-vite-project/electron/main/handshake/steps/verifyCapsuleHash.ts":{"size":4227,"mtime_ns":1786206352126714166,"word_count":408},"code/apps/electron-vite-project/electron/main/handshake/steps/verifyContextHash.ts":{"size":2375,"mtime_ns":1786206352126714166,"word_count":226},"code/apps/electron-vite-project/electron/main/handshake/structuredQuery.ts":{"size":22114,"mtime_ns":1786206352126714166,"word_count":2259},"code/apps/electron-vite-project/electron/main/handshake/tierClassification.ts":{"size":1878,"mtime_ns":1786206352126714166,"word_count":236},"code/apps/electron-vite-project/electron/main/handshake/topologyAutoWire.ts":{"size":9806,"mtime_ns":1786206352126714166,"word_count":1114},"code/apps/electron-vite-project/electron/main/handshake/types.ts":{"size":22154,"mtime_ns":1786206352126714166,"word_count":2285},"code/apps/electron-vite-project/electron/main/handshake/vaultGating.ts":{"size":2515,"mtime_ns":1786206352126714166,"word_count":267},"code/apps/electron-vite-project/electron/main/handshake/visibilityFilter.ts":{"size":1292,"mtime_ns":1786206352126714166,"word_count":193},"code/apps/electron-vite-project/electron/main/inference/__tests__/gpuStatus.test.ts":{"size":5824,"mtime_ns":1786206352126714166,"word_count":609},"code/apps/electron-vite-project/electron/main/inference/__tests__/inferenceCapabilityResolver.test.ts":{"size":10050,"mtime_ns":1786206352126714166,"word_count":831},"code/apps/electron-vite-project/electron/main/inference/__tests__/inferenceGate.test.ts":{"size":3110,"mtime_ns":1786206352126714166,"word_count":219},"code/apps/electron-vite-project/electron/main/inference/gpuStatus.ts":{"size":16666,"mtime_ns":1786206352130713553,"word_count":1909},"code/apps/electron-vite-project/electron/main/inference/inferenceCapabilityResolver.ts":{"size":8503,"mtime_ns":1786206352130713553,"word_count":950},"code/apps/electron-vite-project/electron/main/inference/inferenceGate.ts":{"size":3110,"mtime_ns":1786206352130713553,"word_count":339},"code/apps/electron-vite-project/electron/main/ingestion/ENTRYPOINT_AUDIT.md":{"size":5531,"mtime_ns":1786206352130713553,"word_count":664},"code/apps/electron-vite-project/electron/main/ingestion/__tests__/adversarial.test.ts":{"size":8586,"mtime_ns":1786206352130713553,"word_count":780},"code/apps/electron-vite-project/electron/main/ingestion/__tests__/authorization.test.ts":{"size":8626,"mtime_ns":1786206352130713553,"word_count":783},"code/apps/electron-vite-project/electron/main/ingestion/__tests__/beapDetection.test.ts":{"size":4843,"mtime_ns":1786206352130713553,"word_count":438},"code/apps/electron-vite-project/electron/main/ingestion/__tests__/distributionGate.test.ts":{"size":2498,"mtime_ns":1786206352130713553,"word_count":208},"code/apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.http.test.ts":{"size":6710,"mtime_ns":1786206352130713553,"word_count":602},"code/apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.ipc.test.ts":{"size":5565,"mtime_ns":1786206352130713553,"word_count":476},"code/apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.transport.test.ts":{"size":21801,"mtime_ns":1786206352130713553,"word_count":1784},"code/apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.websocket.test.ts":{"size":5557,"mtime_ns":1786206352130713553,"word_count":486},"code/apps/electron-vite-project/electron/main/ingestion/__tests__/entrypoint.guard.test.ts":{"size":11205,"mtime_ns":1786206352130713553,"word_count":1097},"code/apps/electron-vite-project/electron/main/ingestion/__tests__/entrypoints.guard.e2e.test.ts":{"size":9896,"mtime_ns":1786206352130713553,"word_count":912},"code/apps/electron-vite-project/electron/main/ingestion/__tests__/fixtures/capsules.ts":{"size":2061,"mtime_ns":1786206352130713553,"word_count":205},"code/apps/electron-vite-project/electron/main/ingestion/__tests__/hardening.test.ts":{"size":8308,"mtime_ns":1786206352130713553,"word_count":828},"code/apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testDb.ts":{"size":7795,"mtime_ns":1786206352130713553,"word_count":744},"code/apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testIpcHarness.ts":{"size":1145,"mtime_ns":1786206352130713553,"word_count":132},"code/apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testServer.ts":{"size":1440,"mtime_ns":1786206352130713553,"word_count":192},"code/apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testWsClient.ts":{"size":974,"mtime_ns":1786206352130713553,"word_count":128},"code/apps/electron-vite-project/electron/main/ingestion/__tests__/ingestor.test.ts":{"size":5898,"mtime_ns":1786206352130713553,"word_count":537},"code/apps/electron-vite-project/electron/main/ingestion/__tests__/integration.test.ts":{"size":5017,"mtime_ns":1786206352130713553,"word_count":452},"code/apps/electron-vite-project/electron/main/ingestion/__tests__/plainTransform.test.ts":{"size":1283,"mtime_ns":1786206352130713553,"word_count":110},"code/apps/electron-vite-project/electron/main/ingestion/__tests__/validator.test.ts":{"size":9511,"mtime_ns":1786206352130713553,"word_count":779},"code/apps/electron-vite-project/electron/main/ingestion/index.ts":{"size":1006,"mtime_ns":1786206352130713553,"word_count":72},"code/apps/electron-vite-project/electron/main/ingestion/ingestionErrors.ts":{"size":458,"mtime_ns":1786206352130713553,"word_count":52},"code/apps/electron-vite-project/electron/main/ingestion/ingestionPipeline.ts":{"size":6185,"mtime_ns":1786206352130713553,"word_count":492},"code/apps/electron-vite-project/electron/main/ingestion/ipc.ts":{"size":14532,"mtime_ns":1786206352130713553,"word_count":1181},"code/apps/electron-vite-project/electron/main/ingestion/persistenceDb.ts":{"size":7978,"mtime_ns":1786206352130713553,"word_count":841},"code/apps/electron-vite-project/electron/main/ingestion/sandboxStub.ts":{"size":905,"mtime_ns":1786206352130713553,"word_count":117},"code/apps/electron-vite-project/electron/main/ingestion/types.ts":{"size":6078,"mtime_ns":1786206352130713553,"word_count":603},"code/apps/electron-vite-project/electron/main/integrity/verifier.ts":{"size":8872,"mtime_ns":1786206352130713553,"word_count":1000},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/decideInternalInferenceTransport.test.ts":{"size":13178,"mtime_ns":1786206352130713553,"word_count":867},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/directP2pReachability.test.ts":{"size":5994,"mtime_ns":1786206352130713553,"word_count":504},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiBeapAdOllamaModelCount.regression.test.ts":{"size":3825,"mtime_ns":1786206352130713553,"word_count":355},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiCrossDeviceStateMachine.regression.test.ts":{"size":14050,"mtime_ns":1786206352130713553,"word_count":973},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiDirectBeapAdPublish.explicitPolicyDeny.test.ts":{"size":3111,"mtime_ns":1786206352130713553,"word_count":275},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiDirectBeapAdPublish.test.ts":{"size":7643,"mtime_ns":1786206352134712940,"word_count":651},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiDirectBeapAdWire.test.ts":{"size":1295,"mtime_ns":1786206352134712940,"word_count":73},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiE2eSandboxToHostSuccess.integration.test.ts":{"size":13813,"mtime_ns":1786206352134712940,"word_count":1169},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiEffectiveRole.test.ts":{"size":3514,"mtime_ns":1786206352134712940,"word_count":266},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiInternalPairingLedger.test.ts":{"size":3025,"mtime_ns":1786206352134712940,"word_count":271},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiInternalPeerRoles.test.ts":{"size":7633,"mtime_ns":1786206352134712940,"word_count":651},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiLogContracts.validation.test.ts":{"size":7648,"mtime_ns":1786206352134712940,"word_count":603},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiP2pSessionSingleOwner.test.ts":{"size":3470,"mtime_ns":1786206352134712940,"word_count":321},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiP2pSignalSchemaRejectLog.test.ts":{"size":1815,"mtime_ns":1786206352134712940,"word_count":118},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiP2pStaleSessionNoReuse.test.ts":{"size":5019,"mtime_ns":1786206352134712940,"word_count":391},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiPairingStateStore.test.ts":{"size":1245,"mtime_ns":1786206352134712940,"word_count":110},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiPeerEndpointAndAdvertisement.test.ts":{"size":5515,"mtime_ns":1786206352134712940,"word_count":418},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiPeerLivePresence.test.ts":{"size":5957,"mtime_ns":1786206352134712940,"word_count":472},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiProviderAdvertisementBlockedReason.test.ts":{"size":2583,"mtime_ns":1786206352134712940,"word_count":182},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiProviderAdvertisementLog.test.ts":{"size":5243,"mtime_ns":1786206352134712940,"word_count":366},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRemoteInferencePolicyResolve.test.ts":{"size":4607,"mtime_ns":1786206352134712940,"word_count":339},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRouteCandidate.predicates.test.ts":{"size":6363,"mtime_ns":1786206352134712940,"word_count":344},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRouteResolve.test.ts":{"size":6291,"mtime_ns":1786206352134712940,"word_count":495},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRoutingCorrectness.regression.test.ts":{"size":23415,"mtime_ns":1786206352134712940,"word_count":1827},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiSealedInferenceRelayResultHandler.test.ts":{"size":7291,"mtime_ns":1786206352134712940,"word_count":568},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiStageLog.test.ts":{"size":1738,"mtime_ns":1786206352134712940,"word_count":135},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiStaleDatachannelOpenRecovery.test.ts":{"size":7545,"mtime_ns":1786206352134712940,"word_count":543},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiTargetAvailabilityGating.test.ts":{"size":7250,"mtime_ns":1786206352134712940,"word_count":590},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiTransportDecideLog.test.ts":{"size":1570,"mtime_ns":1786206352134712940,"word_count":122},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiTransportMatrix.test.ts":{"size":2088,"mtime_ns":1786206352134712940,"word_count":180},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiUnifiedRelayRegistration.test.ts":{"size":1790,"mtime_ns":1786206352134712940,"word_count":120},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiUnifiedServiceRpcRelay.test.ts":{"size":5833,"mtime_ns":1786206352134712940,"word_count":470},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/hostInferenceCore.policy.test.ts":{"size":9876,"mtime_ns":1786206352134712940,"word_count":827},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/hostInferenceExecute.modelAlias.test.ts":{"size":4042,"mtime_ns":1786206352134712940,"word_count":385},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/hostInferenceRequestRateLimit.test.ts":{"size":773,"mtime_ns":1786206352134712940,"word_count":57},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/inferenceHandshakeTrust.test.ts":{"size":19423,"mtime_ns":1786206352134712940,"word_count":1370},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/internalInference.directHost.regression.test.ts":{"size":20340,"mtime_ns":1786206352134712940,"word_count":1818},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceLogRedact.test.ts":{"size":784,"mtime_ns":1786206352134712940,"word_count":55},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceService.test.ts":{"size":21276,"mtime_ns":1786206352134712940,"word_count":2042},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceTransport.decide.test.ts":{"size":3884,"mtime_ns":1786206352134712940,"word_count":260},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/listHostCapabilities.hostAiRoute.test.ts":{"size":8739,"mtime_ns":1786206352134712940,"word_count":698},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/listInferenceIpc.modelSelectorLifecycle.test.ts":{"size":4071,"mtime_ns":1786206352134712940,"word_count":364},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/listInferenceTargets.step8.test.ts":{"size":62064,"mtime_ns":1786206352134712940,"word_count":4205},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/p2pDcCapabilities.roleGate.test.ts":{"size":5012,"mtime_ns":1786206352134712940,"word_count":400},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/p2pEndpointRepair.hostAi.test.ts":{"size":17856,"mtime_ns":1786206352134712940,"word_count":1347},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/p2pInferenceFlags.test.ts":{"size":4937,"mtime_ns":1786206352134712940,"word_count":240},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/p2pInferenceFlagsTestSetup.ts":{"size":756,"mtime_ns":1786206352134712940,"word_count":64},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/p2pSessionWait.test.ts":{"size":4587,"mtime_ns":1786206352134712940,"word_count":401},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/p2pSignalRelayCircuit.test.ts":{"size":1116,"mtime_ns":1786206352134712940,"word_count":70},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/p2pSignalRelayPost.test.ts":{"size":16168,"mtime_ns":1786206352134712940,"word_count":1270},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.electronMain.transportAndHostPolicy.test.ts":{"size":9798,"mtime_ns":1786206352134712940,"word_count":806},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.p2pDcWire.test.ts":{"size":2475,"mtime_ns":1786206352134712940,"word_count":220},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.p2pSessionManager.test.ts":{"size":6616,"mtime_ns":1786206352134712940,"word_count":550},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/phase3SealedBoundary.regression.test.ts":{"size":2064,"mtime_ns":1786206352134712940,"word_count":194},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/policy.internalInference.test.ts":{"size":8039,"mtime_ns":1786206352134712940,"word_count":639},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/policy.internalInferencePolicyGetRole.test.ts":{"size":2401,"mtime_ns":1786206352134712940,"word_count":217},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/postHostAiDirectBeapAd403Recovery.test.ts":{"size":3988,"mtime_ns":1786206352134712940,"word_count":359},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/relayP2pSignalHandler.republishRequest.test.ts":{"size":5674,"mtime_ns":1786206352134712940,"word_count":447},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/relayP2pSignalHandler.stale.test.ts":{"size":3499,"mtime_ns":1786206352134712940,"word_count":302},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/resolveSandboxInferenceTarget.test.ts":{"size":8011,"mtime_ns":1786206352134712940,"word_count":683},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/sandboxHostAiDirectBeapAdRequest.test.ts":{"size":7443,"mtime_ns":1786206352134712940,"word_count":596},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/sandboxHostAiOllamaDirectSyntheticProbe.test.ts":{"size":2403,"mtime_ns":1786206352134712940,"word_count":190},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/sandboxHostRosterSelectionMigration.test.ts":{"size":3181,"mtime_ns":1786206352134712940,"word_count":295},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing.regression.test.ts":{"size":15654,"mtime_ns":1786206352138712327,"word_count":1233},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/serviceRpcGatesAndLifecycle.rig.test.ts":{"size":6135,"mtime_ns":1786206352138712327,"word_count":587},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/transportDecide.unifiedRelay.test.ts":{"size":1671,"mtime_ns":1786206352138712327,"word_count":129},"code/apps/electron-vite-project/electron/main/internalInference/__tests__/unifiedServiceRpcRelayFlags.test.ts":{"size":1825,"mtime_ns":1786206352138712327,"word_count":109},"code/apps/electron-vite-project/electron/main/internalInference/beapContentAiRoute.ts":{"size":2697,"mtime_ns":1786206352138712327,"word_count":311},"code/apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts":{"size":10176,"mtime_ns":1786206352138712327,"word_count":960},"code/apps/electron-vite-project/electron/main/internalInference/dbAccess.ts":{"size":1644,"mtime_ns":1786206352138712327,"word_count":210},"code/apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts":{"size":8968,"mtime_ns":1786206352138712327,"word_count":1032},"code/apps/electron-vite-project/electron/main/internalInference/errors.ts":{"size":11705,"mtime_ns":1786206352138712327,"word_count":1234},"code/apps/electron-vite-project/electron/main/internalInference/hostAiBeapAdOllamaModelCount.ts":{"size":4137,"mtime_ns":1786206352138712327,"word_count":430},"code/apps/electron-vite-project/electron/main/internalInference/hostAiCapsRoleGateLog.ts":{"size":680,"mtime_ns":1786206352138712327,"word_count":74},"code/apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts":{"size":15947,"mtime_ns":1786206352138712327,"word_count":1223},"code/apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdWire.ts":{"size":1108,"mtime_ns":1786206352138712327,"word_count":128},"code/apps/electron-vite-project/electron/main/internalInference/hostAiEffectiveRole.ts":{"size":4591,"mtime_ns":1786206352138712327,"word_count":518},"code/apps/electron-vite-project/electron/main/internalInference/hostAiEndpointCandidate.ts":{"size":1825,"mtime_ns":1786206352138712327,"word_count":207},"code/apps/electron-vite-project/electron/main/internalInference/hostAiEndpointSelectLog.ts":{"size":1968,"mtime_ns":1786206352138712327,"word_count":211},"code/apps/electron-vite-project/electron/main/internalInference/hostAiHostOrchestratorHealth.ts":{"size":3305,"mtime_ns":1786206352138712327,"word_count":357},"code/apps/electron-vite-project/electron/main/internalInference/hostAiInferLog.ts":{"size":1669,"mtime_ns":1786206352138712327,"word_count":145},"code/apps/electron-vite-project/electron/main/internalInference/hostAiInternalPairingLedger.ts":{"size":4682,"mtime_ns":1786206352138712327,"word_count":540},"code/apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirect.ts":{"size":2471,"mtime_ns":1786206352138712327,"word_count":231},"code/apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectAdvertisement.ts":{"size":5854,"mtime_ns":1786206352138712327,"word_count":503},"code/apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts":{"size":6931,"mtime_ns":1786206352138712327,"word_count":881},"code/apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectProactiveRefresh.ts":{"size":3533,"mtime_ns":1786206352138712327,"word_count":327},"code/apps/electron-vite-project/electron/main/internalInference/hostAiOllamaNativeDiscovery.ts":{"size":10144,"mtime_ns":1786206352138712327,"word_count":1031},"code/apps/electron-vite-project/electron/main/internalInference/hostAiOrchestratorBuildSync.ts":{"size":1564,"mtime_ns":1786206352138712327,"word_count":153},"code/apps/electron-vite-project/electron/main/internalInference/hostAiP2pSignalSchemaRejectLog.ts":{"size":2299,"mtime_ns":1786206352138712327,"word_count":252},"code/apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts":{"size":6355,"mtime_ns":1786206352138712327,"word_count":789},"code/apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts":{"size":10862,"mtime_ns":1786206352138712327,"word_count":1125},"code/apps/electron-vite-project/electron/main/internalInference/hostAiProbeRouteLog.ts":{"size":735,"mtime_ns":1786206352138712327,"word_count":81},"code/apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementBlockedReason.ts":{"size":2642,"mtime_ns":1786206352138712327,"word_count":225},"code/apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementLog.ts":{"size":13021,"mtime_ns":1786206352138712327,"word_count":1101},"code/apps/electron-vite-project/electron/main/internalInference/hostAiRelayCapability.ts":{"size":3582,"mtime_ns":1786206352138712327,"word_count":388},"code/apps/electron-vite-project/electron/main/internalInference/hostAiRemoteInferencePolicyResolve.ts":{"size":9541,"mtime_ns":1786206352138712327,"word_count":839},"code/apps/electron-vite-project/electron/main/internalInference/hostAiRoleGateLog.ts":{"size":1320,"mtime_ns":1786206352138712327,"word_count":155},"code/apps/electron-vite-project/electron/main/internalInference/hostAiRouteSelectLog.ts":{"size":2132,"mtime_ns":1786206352138712327,"word_count":232},"code/apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts":{"size":8610,"mtime_ns":1786206352138712327,"word_count":648},"code/apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayResultHandler.ts":{"size":3708,"mtime_ns":1786206352138712327,"word_count":320},"code/apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelaySend.ts":{"size":5248,"mtime_ns":1786206352138712327,"word_count":491},"code/apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayWire.ts":{"size":6673,"mtime_ns":1786206352138712327,"word_count":692},"code/apps/electron-vite-project/electron/main/internalInference/hostAiStageLog.ts":{"size":3812,"mtime_ns":1786206352138712327,"word_count":402},"code/apps/electron-vite-project/electron/main/internalInference/hostAiTargetStatus.ts":{"size":364,"mtime_ns":1786206352138712327,"word_count":42},"code/apps/electron-vite-project/electron/main/internalInference/hostAiTransportDecideLog.ts":{"size":1713,"mtime_ns":1786206352138712327,"word_count":195},"code/apps/electron-vite-project/electron/main/internalInference/hostAiTransportMatrix.ts":{"size":3106,"mtime_ns":1786206352138712327,"word_count":406},"code/apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedRelayRegistration.ts":{"size":920,"mtime_ns":1786206352138712327,"word_count":105},"code/apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelay.ts":{"size":4259,"mtime_ns":1786206352138712327,"word_count":394},"code/apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayHandler.ts":{"size":6136,"mtime_ns":1786206352138712327,"word_count":539},"code/apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayWire.ts":{"size":3286,"mtime_ns":1786206352138712327,"word_count":357},"code/apps/electron-vite-project/electron/main/internalInference/hostAiWebrtcOfferStart.ts":{"size":7140,"mtime_ns":1786206352138712327,"word_count":621},"code/apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts":{"size":14299,"mtime_ns":1786206352138712327,"word_count":1117},"code/apps/electron-vite-project/electron/main/internalInference/hostInferenceConcurrency.ts":{"size":769,"mtime_ns":1786206352138712327,"word_count":102},"code/apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts":{"size":19605,"mtime_ns":1786206352138712327,"word_count":1826},"code/apps/electron-vite-project/electron/main/internalInference/hostInferenceExecute.ts":{"size":10462,"mtime_ns":1786206352138712327,"word_count":879},"code/apps/electron-vite-project/electron/main/internalInference/hostInferencePolicyStore.ts":{"size":7448,"mtime_ns":1786206352138712327,"word_count":781},"code/apps/electron-vite-project/electron/main/internalInference/hostInferenceRequestRateLimit.ts":{"size":923,"mtime_ns":1786206352138712327,"word_count":126},"code/apps/electron-vite-project/electron/main/internalInference/inferenceRoutingIpcPayload.ts":{"size":1859,"mtime_ns":1786206352138712327,"word_count":194},"code/apps/electron-vite-project/electron/main/internalInference/internalInferenceLogRedact.ts":{"size":981,"mtime_ns":1786206352138712327,"word_count":121},"code/apps/electron-vite-project/electron/main/internalInference/internalP2pHandshakeInspect.ts":{"size":6122,"mtime_ns":1786206352138712327,"word_count":586},"code/apps/electron-vite-project/electron/main/internalInference/ipc.ts":{"size":13424,"mtime_ns":1786206352138712327,"word_count":1277},"code/apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts":{"size":159482,"mtime_ns":1786206352138712327,"word_count":12439},"code/apps/electron-vite-project/electron/main/internalInference/logging.ts":{"size":1260,"mtime_ns":1786206352142711715,"word_count":132},"code/apps/electron-vite-project/electron/main/internalInference/orchestratorSandboxEmbedding.ts":{"size":1183,"mtime_ns":1786206352142711715,"word_count":119},"code/apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts":{"size":51413,"mtime_ns":1786206352142711715,"word_count":4310},"code/apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts":{"size":13001,"mtime_ns":1786206352142711715,"word_count":1304},"code/apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts":{"size":43292,"mtime_ns":1786206352142711715,"word_count":4004},"code/apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts":{"size":10225,"mtime_ns":1786206352142711715,"word_count":954},"code/apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts":{"size":10010,"mtime_ns":1786206352142711715,"word_count":881},"code/apps/electron-vite-project/electron/main/internalInference/p2pInferenceTransportLog.ts":{"size":1131,"mtime_ns":1786206352142711715,"word_count":112},"code/apps/electron-vite-project/electron/main/internalInference/p2pReachabilityGet.ts":{"size":6076,"mtime_ns":1786206352142711715,"word_count":567},"code/apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts":{"size":11055,"mtime_ns":1786206352142711715,"word_count":1006},"code/apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts":{"size":58316,"mtime_ns":1786206352142711715,"word_count":5544},"code/apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pSessionWait.ts":{"size":3914,"mtime_ns":1786206352142711715,"word_count":433},"code/apps/electron-vite-project/electron/main/internalInference/p2pSessionManagerStub.ts":{"size":3564,"mtime_ns":1786206352142711715,"word_count":373},"code/apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayCircuit.ts":{"size":1569,"mtime_ns":1786206352142711715,"word_count":180},"code/apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts":{"size":36006,"mtime_ns":1786206352142711715,"word_count":3477},"code/apps/electron-vite-project/electron/main/internalInference/p2pSignalWireSchemaVersion.ts":{"size":792,"mtime_ns":1786206352142711715,"word_count":73},"code/apps/electron-vite-project/electron/main/internalInference/pendingRequests.ts":{"size":1635,"mtime_ns":1786206352142711715,"word_count":177},"code/apps/electron-vite-project/electron/main/internalInference/policy.ts":{"size":15675,"mtime_ns":1786206352142711715,"word_count":1903},"code/apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts":{"size":14816,"mtime_ns":1786206352142711715,"word_count":1543},"code/apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts":{"size":12512,"mtime_ns":1786206352142711715,"word_count":1136},"code/apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts":{"size":10152,"mtime_ns":1786206352142711715,"word_count":877},"code/apps/electron-vite-project/electron/main/internalInference/sandboxHostAiListRefreshDecision.ts":{"size":617,"mtime_ns":1786206352142711715,"word_count":57},"code/apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectCandidate.ts":{"size":8534,"mtime_ns":1786206352142711715,"word_count":860},"code/apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectSyntheticProbe.ts":{"size":4147,"mtime_ns":1786206352142711715,"word_count":388},"code/apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts":{"size":11187,"mtime_ns":1786206352142711715,"word_count":994},"code/apps/electron-vite-project/electron/main/internalInference/sandboxHostAiRouteSelectCaps.ts":{"size":5275,"mtime_ns":1786206352142711715,"word_count":473},"code/apps/electron-vite-project/electron/main/internalInference/sandboxHostChat.ts":{"size":6626,"mtime_ns":1786206352142711715,"word_count":654},"code/apps/electron-vite-project/electron/main/internalInference/sandboxHostRosterSelectionMigration.ts":{"size":2350,"mtime_ns":1786206352142711715,"word_count":239},"code/apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts":{"size":58148,"mtime_ns":1786206352142711715,"word_count":4944},"code/apps/electron-vite-project/electron/main/internalInference/sandboxOllamaDirectCapsRefresh.ts":{"size":1611,"mtime_ns":1786206352142711715,"word_count":167},"code/apps/electron-vite-project/electron/main/internalInference/sandboxOllamaDirectTransport.ts":{"size":1346,"mtime_ns":1786206352142711715,"word_count":171},"code/apps/electron-vite-project/electron/main/internalInference/sandboxRequest.ts":{"size":2808,"mtime_ns":1786206352142711715,"word_count":333},"code/apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts":{"size":42531,"mtime_ns":1786206352142711715,"word_count":3982},"code/apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteCandidate.ts":{"size":7169,"mtime_ns":1786206352142711715,"word_count":737},"code/apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts":{"size":15519,"mtime_ns":1786206352142711715,"word_count":1348},"code/apps/electron-vite-project/electron/main/internalInference/transport/hostAiTransportLog.ts":{"size":1642,"mtime_ns":1786206352142711715,"word_count":148},"code/apps/electron-vite-project/electron/main/internalInference/transport/hostAiTransportTypes.ts":{"size":698,"mtime_ns":1786206352142711715,"word_count":77},"code/apps/electron-vite-project/electron/main/internalInference/transport/inferenceDirectHttpTrust.ts":{"size":5483,"mtime_ns":1786206352142711715,"word_count":684},"code/apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts":{"size":57402,"mtime_ns":1786206352142711715,"word_count":4482},"code/apps/electron-vite-project/electron/main/internalInference/transport/transportDecide.ts":{"size":4139,"mtime_ns":1786206352142711715,"word_count":416},"code/apps/electron-vite-project/electron/main/internalInference/types.ts":{"size":4902,"mtime_ns":1786206352142711715,"word_count":517},"code/apps/electron-vite-project/electron/main/internalInference/unifiedServiceRpcRelayFlags.ts":{"size":1754,"mtime_ns":1786206352142711715,"word_count":238},"code/apps/electron-vite-project/electron/main/internalInference/webrtc/p2pSignalOutbound.ts":{"size":2202,"mtime_ns":1786206352146711101,"word_count":229},"code/apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts":{"size":12138,"mtime_ns":1786206352146711101,"word_count":1221},"code/apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportWindow.ts":{"size":2979,"mtime_ns":1786206352146711101,"word_count":339},"code/apps/electron-vite-project/electron/main/letter/builtinTemplateRenderer.ts":{"size":11144,"mtime_ns":1786206352146711101,"word_count":1255},"code/apps/electron-vite-project/electron/main/letter/fillDocxPlaceholders.ts":{"size":3550,"mtime_ns":1786206352146711101,"word_count":492},"code/apps/electron-vite-project/electron/main/letter/legacyDocumentToHtml.ts":{"size":1896,"mtime_ns":1786206352146711101,"word_count":215},"code/apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts":{"size":36937,"mtime_ns":1786206352146711101,"word_count":3850},"code/apps/electron-vite-project/electron/main/letter/letterScanExtract.ts":{"size":7863,"mtime_ns":1786206352146711101,"word_count":799},"code/apps/electron-vite-project/electron/main/letter/letterScanNormalize.ts":{"size":23073,"mtime_ns":1786206352146711101,"word_count":2589},"code/apps/electron-vite-project/electron/main/letter/letterScanProcessing.ts":{"size":4338,"mtime_ns":1786206352146711101,"word_count":545},"code/apps/electron-vite-project/electron/main/letter/odtToHtml.ts":{"size":2519,"mtime_ns":1786206352146711101,"word_count":244},"code/apps/electron-vite-project/electron/main/letter/renderPdfPagesInBrowser.ts":{"size":5139,"mtime_ns":1786206352146711101,"word_count":585},"code/apps/electron-vite-project/electron/main/letter/templateFieldDetect.ts":{"size":7227,"mtime_ns":1786206352146711101,"word_count":998},"code/apps/electron-vite-project/electron/main/letter/templatePdfPreviewRender.ts":{"size":448,"mtime_ns":1786206352146711101,"word_count":53},"code/apps/electron-vite-project/electron/main/letter/templatePdfTextLayer.ts":{"size":2436,"mtime_ns":1786206352146711101,"word_count":333},"code/apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts":{"size":20659,"mtime_ns":1786206352146711101,"word_count":2266},"code/apps/electron-vite-project/electron/main/llm/__tests__/adaptiveWarmupStrategy.test.ts":{"size":2138,"mtime_ns":1786206352146711101,"word_count":165},"code/apps/electron-vite-project/electron/main/llm/__tests__/detectVramCapacity.test.ts":{"size":3461,"mtime_ns":1786206352146711101,"word_count":357},"code/apps/electron-vite-project/electron/main/llm/__tests__/diagnostics.test.ts":{"size":7267,"mtime_ns":1786206352146711101,"word_count":665},"code/apps/electron-vite-project/electron/main/llm/__tests__/hardware-capability.test.ts":{"size":10943,"mtime_ns":1786206352146711101,"word_count":1136},"code/apps/electron-vite-project/electron/main/llm/__tests__/internalHostInferenceOllama.resolveModel.test.ts":{"size":3236,"mtime_ns":1786206352146711101,"word_count":310},"code/apps/electron-vite-project/electron/main/llm/__tests__/llamaChatResponseContent.test.ts":{"size":1890,"mtime_ns":1786206352146711101,"word_count":189},"code/apps/electron-vite-project/electron/main/llm/__tests__/llamaContextOverflow.test.ts":{"size":909,"mtime_ns":1786206352146711101,"word_count":79},"code/apps/electron-vite-project/electron/main/llm/__tests__/llamaServerArgs.test.ts":{"size":10312,"mtime_ns":1786206352146711101,"word_count":912},"code/apps/electron-vite-project/electron/main/llm/__tests__/llamaServerBinaryInstall.assets.test.ts":{"size":3996,"mtime_ns":1786206352146711101,"word_count":353},"code/apps/electron-vite-project/electron/main/llm/__tests__/local-llm-manager.probeCache.test.ts":{"size":4121,"mtime_ns":1786206352146711101,"word_count":448},"code/apps/electron-vite-project/electron/main/llm/__tests__/localLlmLifecycle.test.ts":{"size":1825,"mtime_ns":1786206352146711101,"word_count":162},"code/apps/electron-vite-project/electron/main/llm/__tests__/localLlmModelInstall.download.test.ts":{"size":9085,"mtime_ns":1786206352146711101,"word_count":944},"code/apps/electron-vite-project/electron/main/llm/__tests__/localLlmModelInstall.test.ts":{"size":1112,"mtime_ns":1786206352146711101,"word_count":80},"code/apps/electron-vite-project/electron/main/llm/__tests__/localLlmServerConfig.test.ts":{"size":2326,"mtime_ns":1786206352146711101,"word_count":216},"code/apps/electron-vite-project/electron/main/llm/__tests__/localModelIdentity.test.ts":{"size":2941,"mtime_ns":1786206352146711101,"word_count":246},"code/apps/electron-vite-project/electron/main/llm/__tests__/modeModelWarmupTrigger.test.ts":{"size":4432,"mtime_ns":1786206352146711101,"word_count":328},"code/apps/electron-vite-project/electron/main/llm/__tests__/ollamaManager.inferenceGate.contract.test.ts":{"size":1450,"mtime_ns":1786206352146711101,"word_count":149},"code/apps/electron-vite-project/electron/main/llm/__tests__/resolveAiExecutionContext.effectiveSandbox.test.ts":{"size":2979,"mtime_ns":1786206352146711101,"word_count":267},"code/apps/electron-vite-project/electron/main/llm/__tests__/resolveDeclaredModelAvailability.test.ts":{"size":1955,"mtime_ns":1786206352146711101,"word_count":161},"code/apps/electron-vite-project/electron/main/llm/__tests__/startupWarmup.test.ts":{"size":3464,"mtime_ns":1786206352146711101,"word_count":260},"code/apps/electron-vite-project/electron/main/llm/__tests__/warmupOnServerHealthy.test.ts":{"size":3088,"mtime_ns":1786206352146711101,"word_count":323},"code/apps/electron-vite-project/electron/main/llm/activeLocalModelStore.ts":{"size":3089,"mtime_ns":1786206352146711101,"word_count":361},"code/apps/electron-vite-project/electron/main/llm/activeOllamaModelStore.test.ts":{"size":1904,"mtime_ns":1786206352146711101,"word_count":185},"code/apps/electron-vite-project/electron/main/llm/adaptiveWarmupStrategy.ts":{"size":1642,"mtime_ns":1786206352146711101,"word_count":182},"code/apps/electron-vite-project/electron/main/llm/aiExecutionContextStore.ts":{"size":3766,"mtime_ns":1786206352146711101,"word_count":427},"code/apps/electron-vite-project/electron/main/llm/aiExecutionTypes.ts":{"size":1196,"mtime_ns":1786206352146711101,"word_count":150},"code/apps/electron-vite-project/electron/main/llm/broadcastActiveModel.ts":{"size":870,"mtime_ns":1786206352146711101,"word_count":107},"code/apps/electron-vite-project/electron/main/llm/broadcastModelsChanged.ts":{"size":414,"mtime_ns":1786206352146711101,"word_count":51},"code/apps/electron-vite-project/electron/main/llm/config.ts":{"size":11992,"mtime_ns":1786206352146711101,"word_count":1318},"code/apps/electron-vite-project/electron/main/llm/create-phi3-low.js":{"size":2213,"mtime_ns":1786206352146711101,"word_count":227},"code/apps/electron-vite-project/electron/main/llm/detectVramCapacity.ts":{"size":4009,"mtime_ns":1786206352146711101,"word_count":464},"code/apps/electron-vite-project/electron/main/llm/ggufFileUtils.ts":{"size":1814,"mtime_ns":1786206352146711101,"word_count":201},"code/apps/electron-vite-project/electron/main/llm/handshakeAvailableModelsCompute.ts":{"size":14131,"mtime_ns":1786206352146711101,"word_count":1267},"code/apps/electron-vite-project/electron/main/llm/hardware-capability-check.ts":{"size":14721,"mtime_ns":1786206352150710489,"word_count":1599},"code/apps/electron-vite-project/electron/main/llm/hardware-diagnostics.ts":{"size":10475,"mtime_ns":1786206352150710489,"word_count":1055},"code/apps/electron-vite-project/electron/main/llm/hardware.ts":{"size":15519,"mtime_ns":1786206352150710489,"word_count":1785},"code/apps/electron-vite-project/electron/main/llm/huggingFaceModelDownloadAllowlist.ts":{"size":1248,"mtime_ns":1786206352150710489,"word_count":148},"code/apps/electron-vite-project/electron/main/llm/inboxAutosortRuntime.ts":{"size":9359,"mtime_ns":1786206352150710489,"word_count":866},"code/apps/electron-vite-project/electron/main/llm/internalHostInferenceLocal.ts":{"size":6718,"mtime_ns":1786206352150710489,"word_count":719},"code/apps/electron-vite-project/electron/main/llm/ipc.ts":{"size":23688,"mtime_ns":1786206352150710489,"word_count":2595},"code/apps/electron-vite-project/electron/main/llm/llamaChatResponseContent.ts":{"size":2047,"mtime_ns":1786206352150710489,"word_count":285},"code/apps/electron-vite-project/electron/main/llm/llamaContextOverflow.ts":{"size":1777,"mtime_ns":1786206352150710489,"word_count":186},"code/apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts":{"size":19343,"mtime_ns":1786206352150710489,"word_count":2181},"code/apps/electron-vite-project/electron/main/llm/llamaServerBinaryDownloadAllowlist.ts":{"size":1412,"mtime_ns":1786206352150710489,"word_count":163},"code/apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts":{"size":16275,"mtime_ns":1786206352150710489,"word_count":1840},"code/apps/electron-vite-project/electron/main/llm/llamaServerLog.ts":{"size":2052,"mtime_ns":1786206352150710489,"word_count":259},"code/apps/electron-vite-project/electron/main/llm/llamacppHttpBases.ts":{"size":1291,"mtime_ns":1786206352150710489,"word_count":145},"code/apps/electron-vite-project/electron/main/llm/local-llm-manager.ts":{"size":40911,"mtime_ns":1786206352150710489,"word_count":4140},"code/apps/electron-vite-project/electron/main/llm/localLlmBulkPrewarm.ts":{"size":3003,"mtime_ns":1786206352150710489,"word_count":315},"code/apps/electron-vite-project/electron/main/llm/localLlmLifecycle.ts":{"size":1789,"mtime_ns":1786206352150710489,"word_count":185},"code/apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts":{"size":14809,"mtime_ns":1786206352150710489,"word_count":1700},"code/apps/electron-vite-project/electron/main/llm/localLlmPaths.ts":{"size":549,"mtime_ns":1786206352150710489,"word_count":61},"code/apps/electron-vite-project/electron/main/llm/localLlmProviderStatus.ts":{"size":2693,"mtime_ns":1786206352150710489,"word_count":309},"code/apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts":{"size":5313,"mtime_ns":1786206352150710489,"word_count":538},"code/apps/electron-vite-project/electron/main/llm/localLlmRuntimeStatus.ts":{"size":8613,"mtime_ns":1786206352150710489,"word_count":843},"code/apps/electron-vite-project/electron/main/llm/localLlmServerConfig.ts":{"size":3740,"mtime_ns":1786206352150710489,"word_count":469},"code/apps/electron-vite-project/electron/main/llm/localLlmServerConfigApi.ts":{"size":3154,"mtime_ns":1786206352150710489,"word_count":331},"code/apps/electron-vite-project/electron/main/llm/localModelIdentity.ts":{"size":2415,"mtime_ns":1786206352150710489,"word_count":326},"code/apps/electron-vite-project/electron/main/llm/modeModelWarmupTrigger.ts":{"size":2545,"mtime_ns":1786206352154709876,"word_count":255},"code/apps/electron-vite-project/electron/main/llm/ollamaEmbeddingCapability.ts":{"size":5609,"mtime_ns":1786206352154709876,"word_count":571},"code/apps/electron-vite-project/electron/main/llm/openAiSseChatStream.ts":{"size":732,"mtime_ns":1786206352154709876,"word_count":99},"code/apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts":{"size":13648,"mtime_ns":1786206352154709876,"word_count":1351},"code/apps/electron-vite-project/electron/main/llm/resolveDeclaredModelAvailability.ts":{"size":3287,"mtime_ns":1786206352154709876,"word_count":346},"code/apps/electron-vite-project/electron/main/llm/rotating-logger.ts":{"size":3616,"mtime_ns":1786206352154709876,"word_count":419},"code/apps/electron-vite-project/electron/main/llm/startupWarmup.ts":{"size":2680,"mtime_ns":1786206352154709876,"word_count":274},"code/apps/electron-vite-project/electron/main/llm/types.ts":{"size":4758,"mtime_ns":1786206352154709876,"word_count":577},"code/apps/electron-vite-project/electron/main/llm/warmModel.ts":{"size":2747,"mtime_ns":1786206352154709876,"word_count":328},"code/apps/electron-vite-project/electron/main/llm/warmupOnServerHealthy.ts":{"size":3586,"mtime_ns":1786206352154709876,"word_count":415},"code/apps/electron-vite-project/electron/main/mainWindowAccessor.ts":{"size":490,"mtime_ns":1786206352154709876,"word_count":63},"code/apps/electron-vite-project/electron/main/ocr/cloudConfigFromOptimandoKeys.ts":{"size":2055,"mtime_ns":1786206352154709876,"word_count":249},"code/apps/electron-vite-project/electron/main/ocr/index.ts":{"size":268,"mtime_ns":1786206352154709876,"word_count":37},"code/apps/electron-vite-project/electron/main/ocr/ipc.ts":{"size":5812,"mtime_ns":1786206352154709876,"word_count":656},"code/apps/electron-vite-project/electron/main/ocr/ocr-service.ts":{"size":12265,"mtime_ns":1786206352154709876,"word_count":1325},"code/apps/electron-vite-project/electron/main/ocr/router.ts":{"size":14370,"mtime_ns":1786206352154709876,"word_count":1527},"code/apps/electron-vite-project/electron/main/ocr/types.ts":{"size":3894,"mtime_ns":1786206352154709876,"word_count":549},"code/apps/electron-vite-project/electron/main/orchestrator-db/__tests__/beapSessionImportRun.test.ts":{"size":6286,"mtime_ns":1786206352154709876,"word_count":566},"code/apps/electron-vite-project/electron/main/orchestrator-db/__tests__/sessionKeyUtils.test.ts":{"size":1397,"mtime_ns":1786206352154709876,"word_count":104},"code/apps/electron-vite-project/electron/main/orchestrator-db/beapRunAutomationWaiter.ts":{"size":1063,"mtime_ns":1786206352154709876,"word_count":110},"code/apps/electron-vite-project/electron/main/orchestrator-db/beapSessionImportRun.ts":{"size":5605,"mtime_ns":1786206352154709876,"word_count":579},"code/apps/electron-vite-project/electron/main/orchestrator-db/db.ts":{"size":17398,"mtime_ns":1786206352154709876,"word_count":1952},"code/apps/electron-vite-project/electron/main/orchestrator-db/service.ts":{"size":16786,"mtime_ns":1786206352154709876,"word_count":1691},"code/apps/electron-vite-project/electron/main/orchestrator-db/sessionImportArtefactUnwrap.ts":{"size":4433,"mtime_ns":1786206352154709876,"word_count":483},"code/apps/electron-vite-project/electron/main/orchestrator-db/sessionKeyUtils.ts":{"size":2034,"mtime_ns":1786206352154709876,"word_count":251},"code/apps/electron-vite-project/electron/main/orchestrator-db/types.ts":{"size":2057,"mtime_ns":1786206352154709876,"word_count":265},"code/apps/electron-vite-project/electron/main/orchestrator/broadcastModeChange.ts":{"size":402,"mtime_ns":1786206352154709876,"word_count":47},"code/apps/electron-vite-project/electron/main/orchestrator/ipc.ts":{"size":4403,"mtime_ns":1786206352154709876,"word_count":445},"code/apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts":{"size":17959,"mtime_ns":1786206352154709876,"word_count":2239},"code/apps/electron-vite-project/electron/main/p2p/__tests__/beapDeliveryAck.test.ts":{"size":974,"mtime_ns":1786206352154709876,"word_count":79},"code/apps/electron-vite-project/electron/main/p2p/__tests__/coordination-client.test.ts":{"size":10532,"mtime_ns":1786206352154709876,"word_count":872},"code/apps/electron-vite-project/electron/main/p2p/__tests__/coordinationSamePrincipalInbound.test.ts":{"size":4729,"mtime_ns":1786206352154709876,"word_count":436},"code/apps/electron-vite-project/electron/main/p2p/__tests__/coordinationUrlLocalDial.test.ts":{"size":2031,"mtime_ns":1786206352154709876,"word_count":115},"code/apps/electron-vite-project/electron/main/p2p/__tests__/relay-integration.test.ts":{"size":11841,"mtime_ns":1786206352154709876,"word_count":1025},"code/apps/electron-vite-project/electron/main/p2p/__tests__/relayPull.deviceRegister.test.ts":{"size":3298,"mtime_ns":1786206352154709876,"word_count":283},"code/apps/electron-vite-project/electron/main/p2p/__tests__/relayPull.messageRelay.test.ts":{"size":5215,"mtime_ns":1786206352154709876,"word_count":477},"code/apps/electron-vite-project/electron/main/p2p/__tests__/relaySync.coordination403.test.ts":{"size":1060,"mtime_ns":1786206352154709876,"word_count":80},"code/apps/electron-vite-project/electron/main/p2p/beapDeliveryAck.ts":{"size":3181,"mtime_ns":1786206352154709876,"word_count":364},"code/apps/electron-vite-project/electron/main/p2p/beapIngressLog.ts":{"size":1870,"mtime_ns":1786206352154709876,"word_count":231},"code/apps/electron-vite-project/electron/main/p2p/beapRecipientNotify.ts":{"size":557,"mtime_ns":1786206352154709876,"word_count":71},"code/apps/electron-vite-project/electron/main/p2p/coordinationFlushQueued.ts":{"size":1624,"mtime_ns":1786206352154709876,"word_count":197},"code/apps/electron-vite-project/electron/main/p2p/coordinationHandshakePostIngest.ts":{"size":395,"mtime_ns":1786206352154709876,"word_count":42},"code/apps/electron-vite-project/electron/main/p2p/coordinationSamePrincipalInbound.ts":{"size":1987,"mtime_ns":1786206352154709876,"word_count":269},"code/apps/electron-vite-project/electron/main/p2p/coordinationUrlLocalDial.ts":{"size":3979,"mtime_ns":1786206352154709876,"word_count":439},"code/apps/electron-vite-project/electron/main/p2p/coordinationWs.ts":{"size":46907,"mtime_ns":1786206352154709876,"word_count":4182},"code/apps/electron-vite-project/electron/main/p2p/coordinationWsHolder.ts":{"size":2041,"mtime_ns":1786206352154709876,"word_count":207},"code/apps/electron-vite-project/electron/main/p2p/coordinationWsLifecycle.test.ts":{"size":1212,"mtime_ns":1786206352154709876,"word_count":106},"code/apps/electron-vite-project/electron/main/p2p/p2pConfig.ts":{"size":8682,"mtime_ns":1786206352154709876,"word_count":892},"code/apps/electron-vite-project/electron/main/p2p/p2pHealth.ts":{"size":6997,"mtime_ns":1786206352154709876,"word_count":752},"code/apps/electron-vite-project/electron/main/p2p/peerDeliveryAck.ts":{"size":4660,"mtime_ns":1786206352154709876,"word_count":504},"code/apps/electron-vite-project/electron/main/p2p/rateLimiter.ts":{"size":4369,"mtime_ns":1786206352154709876,"word_count":598},"code/apps/electron-vite-project/electron/main/p2p/relayDeviceBinding.ts":{"size":642,"mtime_ns":1786206352154709876,"word_count":83},"code/apps/electron-vite-project/electron/main/p2p/relayIdentity.test.ts":{"size":441,"mtime_ns":1786206352154709876,"word_count":49},"code/apps/electron-vite-project/electron/main/p2p/relayIdentity.ts":{"size":2991,"mtime_ns":1786206352154709876,"word_count":383},"code/apps/electron-vite-project/electron/main/p2p/relayPull.ts":{"size":20600,"mtime_ns":1786206352154709876,"word_count":1757},"code/apps/electron-vite-project/electron/main/p2p/relaySync.ts":{"size":11446,"mtime_ns":1786206352154709876,"word_count":1112},"code/apps/electron-vite-project/electron/main/pdfjsWorkerSrc.ts":{"size":953,"mtime_ns":1786206352154709876,"word_count":102},"code/apps/electron-vite-project/electron/main/platform.ts":{"size":2027,"mtime_ns":1786206352154709876,"word_count":221},"code/apps/electron-vite-project/electron/main/policy/db.ts":{"size":7370,"mtime_ns":1786206352154709876,"word_count":857},"code/apps/electron-vite-project/electron/main/policy/index.ts":{"size":176,"mtime_ns":1786206352154709876,"word_count":28},"code/apps/electron-vite-project/electron/main/policy/service.ts":{"size":6477,"mtime_ns":1786206352154709876,"word_count":692},"code/apps/electron-vite-project/electron/main/policy/types.ts":{"size":2068,"mtime_ns":1786206352154709876,"word_count":224},"code/apps/electron-vite-project/electron/main/projects/optimizerHttpInvoke.ts":{"size":4289,"mtime_ns":1786206352154709876,"word_count":546},"code/apps/electron-vite-project/electron/main/projects/triggerProjectList.ts":{"size":5909,"mtime_ns":1786206352154709876,"word_count":651},"code/apps/electron-vite-project/electron/main/quarantine-blob-storage/index.ts":{"size":3778,"mtime_ns":1786206352154709876,"word_count":495},"code/apps/electron-vite-project/electron/main/quarantine-encrypt/index.ts":{"size":7005,"mtime_ns":1786206352154709876,"word_count":803},"code/apps/electron-vite-project/electron/main/retention/__tests__/retentionJob.test.ts":{"size":9998,"mtime_ns":1786206352154709876,"word_count":1066},"code/apps/electron-vite-project/electron/main/retention/retentionConfig.ts":{"size":777,"mtime_ns":1786206352158709263,"word_count":77},"code/apps/electron-vite-project/electron/main/retention/retentionJob.ts":{"size":6200,"mtime_ns":1786206352158709263,"word_count":744},"code/apps/electron-vite-project/electron/main/sandbox/SANDBOX_INTERFACE.md":{"size":5249,"mtime_ns":1786206352158709263,"word_count":708},"code/apps/electron-vite-project/electron/main/sandbox/__tests__/sandboxInterface.test.ts":{"size":10347,"mtime_ns":1786206352158709263,"word_count":942},"code/apps/electron-vite-project/electron/main/sandbox/__tests__/sandboxOutboundPolicy.test.ts":{"size":7270,"mtime_ns":1786206352158709263,"word_count":601},"code/apps/electron-vite-project/electron/main/sandbox/__tests__/sandboxProcess.test.ts":{"size":8082,"mtime_ns":1786206352158709263,"word_count":802},"code/apps/electron-vite-project/electron/main/sandbox/sandboxClient.ts":{"size":4933,"mtime_ns":1786206352158709263,"word_count":558},"code/apps/electron-vite-project/electron/main/sandbox/sandboxOutboundPolicy.ts":{"size":10823,"mtime_ns":1786206352158709263,"word_count":1338},"code/apps/electron-vite-project/electron/main/sandbox/sandboxProcessBridge.ts":{"size":3023,"mtime_ns":1786206352158709263,"word_count":353},"code/apps/electron-vite-project/electron/main/sandbox/sandboxServiceStub.ts":{"size":850,"mtime_ns":1786206352158709263,"word_count":113},"code/apps/electron-vite-project/electron/main/sandbox/sandboxWorker.ts":{"size":1356,"mtime_ns":1786206352158709263,"word_count":154},"code/apps/electron-vite-project/electron/main/sandbox/types.ts":{"size":1307,"mtime_ns":1786206352158709263,"word_count":145},"code/apps/electron-vite-project/electron/main/sealed-storage/__tests__/b73AttachmentHashVerification.test.ts":{"size":18642,"mtime_ns":1786206352158709263,"word_count":1712},"code/apps/electron-vite-project/electron/main/sealed-storage/__tests__/sealedQueryDualProvider.test.ts":{"size":5301,"mtime_ns":1786206352158709263,"word_count":516},"code/apps/electron-vite-project/electron/main/sealed-storage/__tests__/structural-property.test.ts":{"size":28756,"mtime_ns":1786206352158709263,"word_count":2702},"code/apps/electron-vite-project/electron/main/sealed-storage/index.ts":{"size":44841,"mtime_ns":1786206352158709263,"word_count":4628},"code/apps/electron-vite-project/electron/main/sealed-storage/ledgerSealKey.ts":{"size":1221,"mtime_ns":1786206352158709263,"word_count":180},"code/apps/electron-vite-project/electron/main/security/__tests__/ed25519WeakKey.test.ts":{"size":3440,"mtime_ns":1786206352158709263,"word_count":353},"code/apps/electron-vite-project/electron/main/security/cryptoFingerprint.ts":{"size":256,"mtime_ns":1786206352158709263,"word_count":29},"code/apps/electron-vite-project/electron/main/security/ed25519WeakKey.ts":{"size":2216,"mtime_ns":1786206352158709263,"word_count":302},"code/apps/electron-vite-project/electron/main/security/secureOperationResult.ts":{"size":1254,"mtime_ns":1786206352158709263,"word_count":127},"code/apps/electron-vite-project/electron/main/serviceRpc/__tests__/sealedServiceRpc.deviceKeyOpen.test.ts":{"size":5775,"mtime_ns":1786206352158709263,"word_count":527},"code/apps/electron-vite-project/electron/main/serviceRpc/__tests__/sealedServiceRpc.test.ts":{"size":7500,"mtime_ns":1786206352158709263,"word_count":578},"code/apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts":{"size":13799,"mtime_ns":1786206352158709263,"word_count":1387},"code/apps/electron-vite-project/electron/main/utils/keyFingerprint.ts":{"size":444,"mtime_ns":1786206352158709263,"word_count":67},"code/apps/electron-vite-project/electron/main/validator-process/__tests__/lifecycle.test.ts":{"size":27532,"mtime_ns":1786206352158709263,"word_count":2575},"code/apps/electron-vite-project/electron/main/validator-process/index.ts":{"size":12407,"mtime_ns":1786206352158709263,"word_count":1181},"code/apps/electron-vite-project/electron/main/validator-process/orchestrator.ts":{"size":15338,"mtime_ns":1786206352158709263,"word_count":1435},"code/apps/electron-vite-project/electron/main/validator-process/test-session.ts":{"size":10828,"mtime_ns":1786206352158709263,"word_count":1019},"code/apps/electron-vite-project/electron/main/validatorReadiness.ts":{"size":13404,"mtime_ns":1786206352158709263,"word_count":1494},"code/apps/electron-vite-project/electron/main/vault/atomicWrite.test.ts":{"size":5251,"mtime_ns":1786206352158709263,"word_count":465},"code/apps/electron-vite-project/electron/main/vault/atomicWrite.ts":{"size":1034,"mtime_ns":1786206352158709263,"word_count":162},"code/apps/electron-vite-project/electron/main/vault/cache.ts":{"size":3001,"mtime_ns":1786206352158709263,"word_count":403},"code/apps/electron-vite-project/electron/main/vault/capabilities.ts":{"size":217,"mtime_ns":1786206352158709263,"word_count":20},"code/apps/electron-vite-project/electron/main/vault/capabilityBroker.test.ts":{"size":15485,"mtime_ns":1786206352158709263,"word_count":1356},"code/apps/electron-vite-project/electron/main/vault/capabilityBroker.ts":{"size":6117,"mtime_ns":1786206352158709263,"word_count":645},"code/apps/electron-vite-project/electron/main/vault/capabilityGate.test.ts":{"size":5470,"mtime_ns":1786206352158709263,"word_count":570},"code/apps/electron-vite-project/electron/main/vault/challengeStore.test.ts":{"size":4758,"mtime_ns":1786206352158709263,"word_count":365},"code/apps/electron-vite-project/electron/main/vault/challengeStore.ts":{"size":2374,"mtime_ns":1786206352158709263,"word_count":291},"code/apps/electron-vite-project/electron/main/vault/crypto.ts":{"size":11089,"mtime_ns":1786206352158709263,"word_count":1443},"code/apps/electron-vite-project/electron/main/vault/db.ts":{"size":33786,"mtime_ns":1786206352158709263,"word_count":3633},"code/apps/electron-vite-project/electron/main/vault/documentService.test.ts":{"size":7081,"mtime_ns":1786206352158709263,"word_count":514},"code/apps/electron-vite-project/electron/main/vault/documentService.ts":{"size":11667,"mtime_ns":1786206352158709263,"word_count":1355},"code/apps/electron-vite-project/electron/main/vault/envelope.test.ts":{"size":6165,"mtime_ns":1786206352158709263,"word_count":613},"code/apps/electron-vite-project/electron/main/vault/envelope.ts":{"size":7914,"mtime_ns":1786206352158709263,"word_count":966},"code/apps/electron-vite-project/electron/main/vault/hsContextAccessService.test.ts":{"size":3740,"mtime_ns":1786206352158709263,"word_count":375},"code/apps/electron-vite-project/electron/main/vault/hsContextAccessService.ts":{"size":5748,"mtime_ns":1786206352158709263,"word_count":587},"code/apps/electron-vite-project/electron/main/vault/hsContextNormalize.test.ts":{"size":11328,"mtime_ns":1786206352158709263,"word_count":1160},"code/apps/electron-vite-project/electron/main/vault/hsContextNormalize.ts":{"size":13913,"mtime_ns":1786206352158709263,"word_count":1543},"code/apps/electron-vite-project/electron/main/vault/hsContextOcrJob.test.ts":{"size":6664,"mtime_ns":1786206352158709263,"word_count":653},"code/apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts":{"size":30201,"mtime_ns":1786206352158709263,"word_count":3495},"code/apps/electron-vite-project/electron/main/vault/hsContextProfileService.test.ts":{"size":13591,"mtime_ns":1786206352158709263,"word_count":1432},"code/apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts":{"size":29339,"mtime_ns":1786206352158709263,"word_count":3423},"code/apps/electron-vite-project/electron/main/vault/hsContextServiceRegression.test.ts":{"size":4113,"mtime_ns":1786206352158709263,"word_count":383},"code/apps/electron-vite-project/electron/main/vault/lazyDecrypt.test.ts":{"size":5439,"mtime_ns":1786206352158709263,"word_count":577},"code/apps/electron-vite-project/electron/main/vault/rpc.ts":{"size":22858,"mtime_ns":1786206352162708650,"word_count":2349},"code/apps/electron-vite-project/electron/main/vault/rpcAuth.test.ts":{"size":4954,"mtime_ns":1786206352162708650,"word_count":553},"code/apps/electron-vite-project/electron/main/vault/schemas.ts":{"size":6667,"mtime_ns":1786206352162708650,"word_count":606},"code/apps/electron-vite-project/electron/main/vault/security-regression.test.ts":{"size":18081,"mtime_ns":1786206352162708650,"word_count":1806},"code/apps/electron-vite-project/electron/main/vault/service.ts":{"size":71196,"mtime_ns":1786206352162708650,"word_count":7358},"code/apps/electron-vite-project/electron/main/vault/sessionLock.test.ts":{"size":3967,"mtime_ns":1786206352162708650,"word_count":426},"code/apps/electron-vite-project/electron/main/vault/sessionPlanExtraction.test.ts":{"size":7662,"mtime_ns":1786206352162708650,"word_count":692},"code/apps/electron-vite-project/electron/main/vault/tierResolution.test.ts":{"size":5023,"mtime_ns":1786206352162708650,"word_count":502},"code/apps/electron-vite-project/electron/main/vault/types.ts":{"size":6378,"mtime_ns":1786206352162708650,"word_count":812},"code/apps/electron-vite-project/electron/main/vault/unlockProvider.ts":{"size":7351,"mtime_ns":1786206352162708650,"word_count":909},"code/apps/electron-vite-project/electron/main/vault/vaultAccountGuards.ts":{"size":1744,"mtime_ns":1786206352162708650,"word_count":191},"code/apps/electron-vite-project/electron/main/vault/vaultAccountIsolation.test.ts":{"size":5201,"mtime_ns":1786206352162708650,"word_count":523},"code/apps/electron-vite-project/electron/main/vault/vaultApiKeyService.ts":{"size":5233,"mtime_ns":1786206352162708650,"word_count":636},"code/apps/electron-vite-project/electron/main/vault/vaultCanon.ts":{"size":3484,"mtime_ns":1786206352162708650,"word_count":493},"code/apps/electron-vite-project/electron/main/vault/vaultOwnerIdentity.ts":{"size":3594,"mtime_ns":1786206352162708650,"word_count":375},"code/apps/electron-vite-project/electron/main/vault/vsbt.test.ts":{"size":15405,"mtime_ns":1786206352162708650,"word_count":1531},"code/apps/electron-vite-project/electron/preload.ts":{"size":102049,"mtime_ns":1786206352162708650,"word_count":10239},"code/apps/electron-vite-project/electron/preload/webrtcTransportPreload.ts":{"size":814,"mtime_ns":1786206352162708650,"word_count":103},"code/apps/electron-vite-project/electron/storage/PostgresAdapter.ts":{"size":4073,"mtime_ns":1786206352162708650,"word_count":497},"code/apps/electron-vite-project/electron/storage/migrations.ts":{"size":1913,"mtime_ns":1786206352162708650,"word_count":232},"code/apps/electron-vite-project/electron/storage/migrations/001_kv_store.sql":{"size":1181,"mtime_ns":1786206352162708650,"word_count":147},"code/apps/electron-vite-project/electron/userDataBootstrapState.ts":{"size":575,"mtime_ns":1786206352162708650,"word_count":71},"code/apps/electron-vite-project/electron/watchdog/watchdogService.ts":{"size":26923,"mtime_ns":1786206352162708650,"word_count":2785},"code/apps/electron-vite-project/electron/wrChatSurface.ts":{"size":764,"mtime_ns":1786206352162708650,"word_count":92},"code/apps/electron-vite-project/get-logs.ps1":{"size":2703,"mtime_ns":1786206352162708650,"word_count":338},"code/apps/electron-vite-project/index.html":{"size":363,"mtime_ns":1786206352162708650,"word_count":29},"code/apps/electron-vite-project/main.js":{"size":445,"mtime_ns":1786206352162708650,"word_count":71},"code/apps/electron-vite-project/package.json":{"size":5719,"mtime_ns":1786206352162708650,"word_count":378},"code/apps/electron-vite-project/public/LOGO_README.md":{"size":467,"mtime_ns":1786206352162708650,"word_count":59},"code/apps/electron-vite-project/public/electron-vite.animate.svg":{"size":7047,"mtime_ns":1786206352162708650,"word_count":638},"code/apps/electron-vite-project/public/electron-vite.svg":{"size":6869,"mtime_ns":1786206352162708650,"word_count":625},"code/apps/electron-vite-project/public/giraffe.svg":{"size":2580,"mtime_ns":1786206352162708650,"word_count":275},"code/apps/electron-vite-project/public/vite.svg":{"size":1497,"mtime_ns":1786206352162708650,"word_count":90},"code/apps/electron-vite-project/public/wrdesk-logo.png":{"size":22112,"mtime_ns":1786206352162708650,"word_count":792},"code/apps/electron-vite-project/query-orchestrator-api.ps1":{"size":3179,"mtime_ns":1786206352162708650,"word_count":332},"code/apps/electron-vite-project/read-electron-logs.ps1":{"size":1177,"mtime_ns":1786206352162708650,"word_count":142},"code/apps/electron-vite-project/rebuild-and-restart.ps1":{"size":642,"mtime_ns":1786206352162708650,"word_count":71},"code/apps/electron-vite-project/rebuild.sh":{"size":287,"mtime_ns":1786206352162708650,"word_count":39},"code/apps/electron-vite-project/reset-vault.ps1":{"size":1168,"mtime_ns":1786206352162708650,"word_count":140},"code/apps/electron-vite-project/resources/google-oauth-client-id.txt":{"size":704,"mtime_ns":1786206352162708650,"word_count":77},"code/apps/electron-vite-project/restart-opengiraffe.ps1":{"size":233,"mtime_ns":1786206352162708650,"word_count":25},"code/apps/electron-vite-project/scripts/build-workspace-ingestion-core.cjs":{"size":840,"mtime_ns":1786206352162708650,"word_count":89},"code/apps/electron-vite-project/scripts/clean-windows-build-output.cjs":{"size":1039,"mtime_ns":1786206352162708650,"word_count":107},"code/apps/electron-vite-project/scripts/clean.cjs":{"size":3425,"mtime_ns":1786206352162708650,"word_count":439},"code/apps/electron-vite-project/scripts/clear-build-caches.cjs":{"size":4249,"mtime_ns":1786206352162708650,"word_count":476},"code/apps/electron-vite-project/scripts/copy-pnpm-transitive-deps.cjs":{"size":2070,"mtime_ns":1786206352162708650,"word_count":258},"code/apps/electron-vite-project/scripts/diagnose-websocket.js":{"size":16855,"mtime_ns":1786206352162708650,"word_count":1691},"code/apps/electron-vite-project/scripts/dist-clean-artifacts.cjs":{"size":803,"mtime_ns":1786206352162708650,"word_count":105},"code/apps/electron-vite-project/scripts/guest/__tests__/winHomeGuest.test.ts":{"size":5763,"mtime_ns":1786206352162708650,"word_count":399},"code/apps/electron-vite-project/scripts/guest/guestPorts.ts":{"size":1183,"mtime_ns":1786206352162708650,"word_count":128},"code/apps/electron-vite-project/scripts/installer/__tests__/winRoleInstaller.test.ts":{"size":7250,"mtime_ns":1786206352162708650,"word_count":539},"code/apps/electron-vite-project/scripts/installer/winRoleEdition.ts":{"size":1225,"mtime_ns":1786206352162708650,"word_count":119},"code/apps/electron-vite-project/scripts/kill-stale-build-output-processes.ps1":{"size":2801,"mtime_ns":1786206352162708650,"word_count":320},"code/apps/electron-vite-project/scripts/kill-wr-desk-unix.sh":{"size":1014,"mtime_ns":1786206352162708650,"word_count":155},"code/apps/electron-vite-project/scripts/kill-wr-desk.cjs":{"size":9001,"mtime_ns":1786206352162708650,"word_count":971},"code/apps/electron-vite-project/scripts/postinstall-native.cjs":{"size":1086,"mtime_ns":1786206352162708650,"word_count":124},"code/apps/electron-vite-project/scripts/prepare-google-oauth-resource.cjs":{"size":4820,"mtime_ns":1786206352162708650,"word_count":474},"code/apps/electron-vite-project/scripts/purge-build017.ps1":{"size":551,"mtime_ns":1786206352162708650,"word_count":53},"code/apps/electron-vite-project/scripts/rebuild.cjs":{"size":1763,"mtime_ns":1786206352162708650,"word_count":232},"code/apps/electron-vite-project/scripts/repair-handshake-counterparty.ts":{"size":4054,"mtime_ns":1786206352162708650,"word_count":456},"code/apps/electron-vite-project/scripts/restart.sh":{"size":582,"mtime_ns":1786206352162708650,"word_count":76},"code/apps/electron-vite-project/scripts/run-electron-builder.cjs":{"size":1760,"mtime_ns":1786206352162708650,"word_count":208},"code/apps/electron-vite-project/scripts/smoke-pdfjs-parser.cjs":{"size":1225,"mtime_ns":1786206352162708650,"word_count":130},"code/apps/electron-vite-project/scripts/verify-windows-unpacked.cjs":{"size":7407,"mtime_ns":1786206352162708650,"word_count":911},"code/apps/electron-vite-project/src/App.tsx":{"size":29014,"mtime_ns":1786206352166708037,"word_count":2430},"code/apps/electron-vite-project/src/ErrorBoundary.tsx":{"size":1993,"mtime_ns":1786206352166708037,"word_count":186},"code/apps/electron-vite-project/src/assets/react.svg":{"size":4126,"mtime_ns":1786206352166708037,"word_count":366},"code/apps/electron-vite-project/src/auth/README.md":{"size":625,"mtime_ns":1786206352166708037,"word_count":93},"code/apps/electron-vite-project/src/auth/capabilities.ts":{"size":8029,"mtime_ns":1786206352166708037,"word_count":1052},"code/apps/electron-vite-project/src/auth/discovery.ts":{"size":6296,"mtime_ns":1786206352166708037,"word_count":738},"code/apps/electron-vite-project/src/auth/jwtVerify.ts":{"size":2020,"mtime_ns":1786206352166708037,"word_count":263},"code/apps/electron-vite-project/src/auth/login.ts":{"size":15187,"mtime_ns":1786206352166708037,"word_count":1593},"code/apps/electron-vite-project/src/auth/logout.ts":{"size":374,"mtime_ns":1786206352166708037,"word_count":51},"code/apps/electron-vite-project/src/auth/loopback.ts":{"size":10603,"mtime_ns":1786206352166708037,"word_count":1199},"code/apps/electron-vite-project/src/auth/oidcConfig.ts":{"size":287,"mtime_ns":1786206352166708037,"word_count":32},"code/apps/electron-vite-project/src/auth/pkce.ts":{"size":1325,"mtime_ns":1786206352166708037,"word_count":183},"code/apps/electron-vite-project/src/auth/refresh.ts":{"size":1788,"mtime_ns":1786206352166708037,"word_count":188},"code/apps/electron-vite-project/src/auth/session.ts":{"size":15258,"mtime_ns":1786206352166708037,"word_count":1745},"code/apps/electron-vite-project/src/auth/sessionCache.ts":{"size":400,"mtime_ns":1786206352166708037,"word_count":55},"code/apps/electron-vite-project/src/auth/tokenStore.ts":{"size":1350,"mtime_ns":1786206352166708037,"word_count":177},"code/apps/electron-vite-project/src/chat/routing/letterComposerChat.ts":{"size":4958,"mtime_ns":1786206352166708037,"word_count":494},"code/apps/electron-vite-project/src/chat/routing/letterComposerPrompt.ts":{"size":3274,"mtime_ns":1786206352166708037,"word_count":430},"code/apps/electron-vite-project/src/chat/routing/letterVaultHelper.ts":{"size":8101,"mtime_ns":1786206352166708037,"word_count":1027},"code/apps/electron-vite-project/src/chat/routing/resolveChatRoute.ts":{"size":2794,"mtime_ns":1786206352166708037,"word_count":312},"code/apps/electron-vite-project/src/components/AcceptHandshakeModal.tsx":{"size":32467,"mtime_ns":1786206352166708037,"word_count":2494},"code/apps/electron-vite-project/src/components/AiDraftContextRail.tsx":{"size":5437,"mtime_ns":1786206352166708037,"word_count":528},"code/apps/electron-vite-project/src/components/AnalysisCanvas.tsx":{"size":19318,"mtime_ns":1786206352166708037,"word_count":1426},"code/apps/electron-vite-project/src/components/AutoSortSessionHistory.tsx":{"size":4704,"mtime_ns":1786206352166708037,"word_count":390},"code/apps/electron-vite-project/src/components/AutoSortSessionReview.tsx":{"size":20108,"mtime_ns":1786206352166708037,"word_count":1544},"code/apps/electron-vite-project/src/components/AutosortRuntimeStatus.tsx":{"size":4994,"mtime_ns":1786206352166708037,"word_count":497},"code/apps/electron-vite-project/src/components/BeapActionIconButton.tsx":{"size":1527,"mtime_ns":1786206352166708037,"word_count":159},"code/apps/electron-vite-project/src/components/BeapBulkInboxDashboard.tsx":{"size":13434,"mtime_ns":1786206352170707424,"word_count":1190},"code/apps/electron-vite-project/src/components/BeapInboxDashboard.tsx":{"size":26601,"mtime_ns":1786206352170707424,"word_count":2237},"code/apps/electron-vite-project/src/components/BeapInboxFirstRun.tsx":{"size":10484,"mtime_ns":1786206352170707424,"word_count":991},"code/apps/electron-vite-project/src/components/BeapInboxRedirectIcon.tsx":{"size":519,"mtime_ns":1786206352170707424,"word_count":48},"code/apps/electron-vite-project/src/components/BeapInboxRunAutomationIcon.tsx":{"size":506,"mtime_ns":1786206352170707424,"word_count":49},"code/apps/electron-vite-project/src/components/BeapInboxSandboxCloneIcon.tsx":{"size":660,"mtime_ns":1786206352170707424,"word_count":73},"code/apps/electron-vite-project/src/components/BeapInboxView.tsx":{"size":12728,"mtime_ns":1786206352170707424,"word_count":1274},"code/apps/electron-vite-project/src/components/BeapInlineComposer.tsx":{"size":60380,"mtime_ns":1786206352170707424,"word_count":4643},"code/apps/electron-vite-project/src/components/BeapMessageImportZone.tsx":{"size":6438,"mtime_ns":1786206352170707424,"word_count":624},"code/apps/electron-vite-project/src/components/BeapMessageSafeLinkParts.tsx":{"size":1208,"mtime_ns":1786206352170707424,"word_count":126},"code/apps/electron-vite-project/src/components/BeapMessageUploadZone.tsx":{"size":7196,"mtime_ns":1786206352170707424,"word_count":683},"code/apps/electron-vite-project/src/components/BeapRedirectDialog.tsx":{"size":11248,"mtime_ns":1786206352170707424,"word_count":963},"code/apps/electron-vite-project/src/components/BeapSandboxCloneDialog.tsx":{"size":6697,"mtime_ns":1786206352170707424,"word_count":571},"code/apps/electron-vite-project/src/components/BeapSandboxUnavailableDialog.tsx":{"size":6131,"mtime_ns":1786206352170707424,"word_count":546},"code/apps/electron-vite-project/src/components/BeapSessionAutomationPanel.tsx":{"size":3392,"mtime_ns":1786206352170707424,"word_count":278},"code/apps/electron-vite-project/src/components/BulkInboxAttachmentsStrip.tsx":{"size":10819,"mtime_ns":1786206352170707424,"word_count":849},"code/apps/electron-vite-project/src/components/BulkOllamaModelSelect.tsx":{"size":10943,"mtime_ns":1786206352170707424,"word_count":1213},"code/apps/electron-vite-project/src/components/CapsuleUploadZone.tsx":{"size":12468,"mtime_ns":1786206352170707424,"word_count":1229},"code/apps/electron-vite-project/src/components/CollapsibleSection.tsx":{"size":3232,"mtime_ns":1786206352170707424,"word_count":276},"code/apps/electron-vite-project/src/components/ComposeButtons.tsx":{"size":1711,"mtime_ns":1786206352170707424,"word_count":182},"code/apps/electron-vite-project/src/components/ComposeFieldsForm.tsx":{"size":24205,"mtime_ns":1786206352170707424,"word_count":2026},"code/apps/electron-vite-project/src/components/ComposerAttachmentButton.tsx":{"size":2481,"mtime_ns":1786206352170707424,"word_count":262},"code/apps/electron-vite-project/src/components/ContextItemEditor.tsx":{"size":7482,"mtime_ns":1786206352170707424,"word_count":673},"code/apps/electron-vite-project/src/components/DashboardBeapComposer.tsx":{"size":834,"mtime_ns":1786206352170707424,"word_count":92},"code/apps/electron-vite-project/src/components/DashboardEmailComposer.tsx":{"size":13163,"mtime_ns":1786206352170707424,"word_count":998},"code/apps/electron-vite-project/src/components/DashboardHome.tsx":{"size":25369,"mtime_ns":1786206352174706812,"word_count":1809},"code/apps/electron-vite-project/src/components/DebugLogViewer.tsx":{"size":10808,"mtime_ns":1786206352174706812,"word_count":1010},"code/apps/electron-vite-project/src/components/DraftRefineLabel.tsx":{"size":797,"mtime_ns":1786206352174706812,"word_count":88},"code/apps/electron-vite-project/src/components/EmailComposeOverlay.tsx":{"size":14076,"mtime_ns":1786206352174706812,"word_count":1199},"code/apps/electron-vite-project/src/components/EmailInboxBulkView.tsx":{"size":330745,"mtime_ns":1786206352174706812,"word_count":25508},"code/apps/electron-vite-project/src/components/EmailInboxSyncControls.dedicatedSandbox.test.tsx":{"size":4736,"mtime_ns":1786206352174706812,"word_count":340},"code/apps/electron-vite-project/src/components/EmailInboxSyncControls.tsx":{"size":4431,"mtime_ns":1786206352174706812,"word_count":445},"code/apps/electron-vite-project/src/components/EmailInboxToolbar.tsx":{"size":9721,"mtime_ns":1786206352174706812,"word_count":702},"code/apps/electron-vite-project/src/components/EmailInboxView.sandboxAffordances.test.tsx":{"size":17322,"mtime_ns":1786206352174706812,"word_count":1560},"code/apps/electron-vite-project/src/components/EmailInboxView.tsx":{"size":203852,"mtime_ns":1786206352174706812,"word_count":14956},"code/apps/electron-vite-project/src/components/EmailInlineComposer.tsx":{"size":19982,"mtime_ns":1786206352174706812,"word_count":1560},"code/apps/electron-vite-project/src/components/EmailMessageDetail.sandboxLockNotice.test.tsx":{"size":4220,"mtime_ns":1786206352174706812,"word_count":345},"code/apps/electron-vite-project/src/components/EmailMessageDetail.tsx":{"size":67123,"mtime_ns":1786206352174706812,"word_count":5349},"code/apps/electron-vite-project/src/components/FieldMappingOverlay.tsx":{"size":23108,"mtime_ns":1786206352174706812,"word_count":1998},"code/apps/electron-vite-project/src/components/GpuInferenceBarBadge.test.ts":{"size":2187,"mtime_ns":1786206352174706812,"word_count":221},"code/apps/electron-vite-project/src/components/GpuInferenceBarBadge.tsx":{"size":4803,"mtime_ns":1786206352174706812,"word_count":507},"code/apps/electron-vite-project/src/components/HandshakeBeapMessages.tsx":{"size":12224,"mtime_ns":1786206352178706198,"word_count":908},"code/apps/electron-vite-project/src/components/HandshakeChatSidebar.tsx":{"size":2961,"mtime_ns":1786206352178706198,"word_count":321},"code/apps/electron-vite-project/src/components/HandshakeContextSection.tsx":{"size":17214,"mtime_ns":1786206352178706198,"word_count":1609},"code/apps/electron-vite-project/src/components/HandshakeHealthOrchestratorBanner.tsx":{"size":2874,"mtime_ns":1786206352178706198,"word_count":247},"code/apps/electron-vite-project/src/components/HandshakeInitiateModal.tsx":{"size":11386,"mtime_ns":1786206352178706198,"word_count":1116},"code/apps/electron-vite-project/src/components/HandshakeQuickReview.tsx":{"size":22332,"mtime_ns":1786206352178706198,"word_count":2177},"code/apps/electron-vite-project/src/components/HandshakeRequestView.tsx":{"size":7805,"mtime_ns":1786206352178706198,"word_count":718},"code/apps/electron-vite-project/src/components/HandshakeView.tsx":{"size":26450,"mtime_ns":1786206352178706198,"word_count":2189},"code/apps/electron-vite-project/src/components/HandshakeWorkspace.tsx":{"size":58943,"mtime_ns":1786206352178706198,"word_count":5295},"code/apps/electron-vite-project/src/components/HsContextDocumentReader.tsx":{"size":29445,"mtime_ns":1786206352178706198,"word_count":2717},"code/apps/electron-vite-project/src/components/HybridSearch.tsx":{"size":169485,"mtime_ns":1786206352178706198,"word_count":13698},"code/apps/electron-vite-project/src/components/InboxActionIcons.tsx":{"size":1022,"mtime_ns":1786206352178706198,"word_count":114},"code/apps/electron-vite-project/src/components/InboxAttachmentRow.tsx":{"size":11950,"mtime_ns":1786206352178706198,"word_count":958},"code/apps/electron-vite-project/src/components/InboxBeapSourceBadge.tsx":{"size":1362,"mtime_ns":1786206352178706198,"word_count":122},"code/apps/electron-vite-project/src/components/InboxBulkActionsBar.tsx":{"size":7473,"mtime_ns":1786206352182705586,"word_count":601},"code/apps/electron-vite-project/src/components/InboxDocumentReaderModal.tsx":{"size":6717,"mtime_ns":1786206352182705586,"word_count":550},"code/apps/electron-vite-project/src/components/InboxHandshakeNavIcon.tsx":{"size":998,"mtime_ns":1786206352182705586,"word_count":93},"code/apps/electron-vite-project/src/components/InboxMessageKindSelect.tsx":{"size":1940,"mtime_ns":1786206352182705586,"word_count":211},"code/apps/electron-vite-project/src/components/InboxUrgencyMeter.tsx":{"size":2874,"mtime_ns":1786206352182705586,"word_count":349},"code/apps/electron-vite-project/src/components/IngestionDelegationModal.test.tsx":{"size":2850,"mtime_ns":1786206352182705586,"word_count":297},"code/apps/electron-vite-project/src/components/IngestionDelegationModal.tsx":{"size":3676,"mtime_ns":1786206352182705586,"word_count":347},"code/apps/electron-vite-project/src/components/IngestionStatusBanner.test.tsx":{"size":5449,"mtime_ns":1786206352182705586,"word_count":473},"code/apps/electron-vite-project/src/components/IngestionStatusBanner.tsx":{"size":7260,"mtime_ns":1786206352182705586,"word_count":702},"code/apps/electron-vite-project/src/components/InternalHandshakeIdentityPanel.tsx":{"size":5258,"mtime_ns":1786206352182705586,"word_count":459},"code/apps/electron-vite-project/src/components/LETmeGIRAFFETHATFORYOUIcons.tsx":{"size":3332,"mtime_ns":1786206352182705586,"word_count":343},"code/apps/electron-vite-project/src/components/LetterComposerPortSelectButton.tsx":{"size":688,"mtime_ns":1786206352182705586,"word_count":77},"code/apps/electron-vite-project/src/components/LetterComposerView.tsx":{"size":12748,"mtime_ns":1786206352182705586,"word_count":932},"code/apps/electron-vite-project/src/components/LetterTemplatePort.tsx":{"size":53970,"mtime_ns":1786206352182705586,"word_count":4382},"code/apps/electron-vite-project/src/components/LetterViewerPort.tsx":{"size":45186,"mtime_ns":1786206352182705586,"word_count":3812},"code/apps/electron-vite-project/src/components/LinkWarningDialog.tsx":{"size":5845,"mtime_ns":1786206352182705586,"word_count":552},"code/apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx":{"size":53575,"mtime_ns":1786206352182705586,"word_count":3910},"code/apps/electron-vite-project/src/components/P2PStatusBadge.tsx":{"size":5128,"mtime_ns":1786206352182705586,"word_count":568},"code/apps/electron-vite-project/src/components/PendingSlideOut.tsx":{"size":9269,"mtime_ns":1786206352182705586,"word_count":725},"code/apps/electron-vite-project/src/components/PolicyRadioGroup.tsx":{"size":3267,"mtime_ns":1786206352182705586,"word_count":351},"code/apps/electron-vite-project/src/components/PostExecutionVerification.tsx":{"size":49861,"mtime_ns":1786206352182705586,"word_count":3056},"code/apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx":{"size":52099,"mtime_ns":1786206352182705586,"word_count":3767},"code/apps/electron-vite-project/src/components/ProtectedAccessWarningDialog.tsx":{"size":4307,"mtime_ns":1786206352182705586,"word_count":410},"code/apps/electron-vite-project/src/components/RelationshipDetail.tsx":{"size":35725,"mtime_ns":1786206352182705586,"word_count":3002},"code/apps/electron-vite-project/src/components/RelaySetupWizard.tsx":{"size":39593,"mtime_ns":1786206352182705586,"word_count":3547},"code/apps/electron-vite-project/src/components/RevocationNoticeBanner.test.tsx":{"size":4873,"mtime_ns":1786206352182705586,"word_count":422},"code/apps/electron-vite-project/src/components/RevocationNoticeBanner.tsx":{"size":3795,"mtime_ns":1786206352182705586,"word_count":363},"code/apps/electron-vite-project/src/components/SandboxCloneDisclosure.tsx":{"size":2281,"mtime_ns":1786206352182705586,"word_count":197},"code/apps/electron-vite-project/src/components/SandboxCloneFeedbackBadge.tsx":{"size":2534,"mtime_ns":1786206352182705586,"word_count":236},"code/apps/electron-vite-project/src/components/SandboxLinkInfoDialog.tsx":{"size":3988,"mtime_ns":1786206352182705586,"word_count":416},"code/apps/electron-vite-project/src/components/SandboxLockSurface.test.tsx":{"size":4735,"mtime_ns":1786206352182705586,"word_count":399},"code/apps/electron-vite-project/src/components/SandboxLockSurface.tsx":{"size":2085,"mtime_ns":1786206352186704973,"word_count":223},"code/apps/electron-vite-project/src/components/SandboxReadCleanupHint.test.tsx":{"size":6612,"mtime_ns":1786206352186704973,"word_count":550},"code/apps/electron-vite-project/src/components/SandboxReadCleanupHint.tsx":{"size":7081,"mtime_ns":1786206352186704973,"word_count":659},"code/apps/electron-vite-project/src/components/SecureContextSyncPendingBanner.tsx":{"size":5009,"mtime_ns":1786206352186704973,"word_count":563},"code/apps/electron-vite-project/src/components/SessionImportDialog.tsx":{"size":2826,"mtime_ns":1786206352186704973,"word_count":241},"code/apps/electron-vite-project/src/components/StructuredHsContextPanel.tsx":{"size":26621,"mtime_ns":1786206352186704973,"word_count":2281},"code/apps/electron-vite-project/src/components/SyncFailureBanner.test.tsx":{"size":5385,"mtime_ns":1786206352186704973,"word_count":459},"code/apps/electron-vite-project/src/components/SyncFailureBanner.tsx":{"size":10979,"mtime_ns":1786206352186704973,"word_count":969},"code/apps/electron-vite-project/src/components/ThisDeviceCard.test.tsx":{"size":3916,"mtime_ns":1786206352186704973,"word_count":429},"code/apps/electron-vite-project/src/components/ThisDeviceCard.tsx":{"size":7019,"mtime_ns":1786206352186704973,"word_count":638},"code/apps/electron-vite-project/src/components/VaultStatusIndicator.tsx":{"size":4714,"mtime_ns":1786206352186704973,"word_count":520},"code/apps/electron-vite-project/src/components/WRChatDashboardView.tsx":{"size":33125,"mtime_ns":1786206352186704973,"word_count":2809},"code/apps/electron-vite-project/src/components/WrChatDashboardPanel.tsx":{"size":551,"mtime_ns":1786206352186704973,"word_count":55},"code/apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx":{"size":26264,"mtime_ns":1786206352186704973,"word_count":1759},"code/apps/electron-vite-project/src/components/analysis/HeroKPI.tsx":{"size":13098,"mtime_ns":1786206352186704973,"word_count":950},"code/apps/electron-vite-project/src/components/analysis/StatusBadge.tsx":{"size":3033,"mtime_ns":1786206352186704973,"word_count":321},"code/apps/electron-vite-project/src/components/analysis/canvasState.ts":{"size":11620,"mtime_ns":1786206352186704973,"word_count":1300},"code/apps/electron-vite-project/src/components/analysis/computePriorityAction.ts":{"size":11051,"mtime_ns":1786206352186704973,"word_count":1069},"code/apps/electron-vite-project/src/components/analysis/dashboard/ActiveAutomationWorkspace.tsx":{"size":9599,"mtime_ns":1786206352186704973,"word_count":706},"code/apps/electron-vite-project/src/components/analysis/dashboard/ActivityFeedColumn.tsx":{"size":2543,"mtime_ns":1786206352186704973,"word_count":187},"code/apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx":{"size":28189,"mtime_ns":1786206352186704973,"word_count":2317},"code/apps/electron-vite-project/src/components/analysis/dashboard/DashboardHandshakeSummarySection.tsx":{"size":2434,"mtime_ns":1786206352186704973,"word_count":189},"code/apps/electron-vite-project/src/components/analysis/dashboard/DashboardTopCardsRow.tsx":{"size":4964,"mtime_ns":1786206352186704973,"word_count":463},"code/apps/electron-vite-project/src/components/analysis/dashboard/IntelligenceDashboard.tsx":{"size":24697,"mtime_ns":1786206352186704973,"word_count":1961},"code/apps/electron-vite-project/src/components/analysis/dashboard/PoaeArchiveSection.tsx":{"size":7288,"mtime_ns":1786206352186704973,"word_count":565},"code/apps/electron-vite-project/src/components/analysis/dashboard/PoaeArtifactsPanel.tsx":{"size":10598,"mtime_ns":1786206352186704973,"word_count":929},"code/apps/electron-vite-project/src/components/analysis/dashboard/ProjectAssistantConfigModal.tsx":{"size":1860,"mtime_ns":1786206352186704973,"word_count":168},"code/apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx":{"size":78961,"mtime_ns":1786206352186704973,"word_count":6027},"code/apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupModal.tsx":{"size":24052,"mtime_ns":1786206352190704361,"word_count":1614},"code/apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupSection.tsx":{"size":27441,"mtime_ns":1786206352190704361,"word_count":1808},"code/apps/electron-vite-project/src/components/analysis/dashboard/StatusToggle.tsx":{"size":1077,"mtime_ns":1786206352190704361,"word_count":98},"code/apps/electron-vite-project/src/components/analysis/dashboard/UrgentAutosortSessionSection.tsx":{"size":8216,"mtime_ns":1786206352190704361,"word_count":717},"code/apps/electron-vite-project/src/components/analysis/dashboard/UrgentMessagesPanel.tsx":{"size":12267,"mtime_ns":1786206352190704361,"word_count":1093},"code/apps/electron-vite-project/src/components/analysis/dashboard/index.ts":{"size":2478,"mtime_ns":1786206352190704361,"word_count":220},"code/apps/electron-vite-project/src/components/analysis/dashboard/projectIconChoices.ts":{"size":1036,"mtime_ns":1786206352190704361,"word_count":66},"code/apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts":{"size":35206,"mtime_ns":1786206352190704361,"word_count":3710},"code/apps/electron-vite-project/src/components/analysis/index.ts":{"size":2701,"mtime_ns":1786206352190704361,"word_count":216},"code/apps/electron-vite-project/src/components/analysis/useCanvasState.ts":{"size":10147,"mtime_ns":1786206352190704361,"word_count":787},"code/apps/electron-vite-project/src/components/bulkInboxAttachmentHydration.test.ts":{"size":1444,"mtime_ns":1786206352190704361,"word_count":144},"code/apps/electron-vite-project/src/components/bulkInboxAttachmentHydration.ts":{"size":1079,"mtime_ns":1786206352190704361,"word_count":143},"code/apps/electron-vite-project/src/components/contextEscaping.ts":{"size":5194,"mtime_ns":1786206352190704361,"word_count":656},"code/apps/electron-vite-project/src/components/handshakeViewTypes.ts":{"size":41691,"mtime_ns":1786206352190704361,"word_count":4421},"code/apps/electron-vite-project/src/components/shared/EmailAccountSelector.tsx":{"size":7675,"mtime_ns":1786206352190704361,"word_count":661},"code/apps/electron-vite-project/src/hooks/useActiveHandshakeHealthBanner.ts":{"size":2901,"mtime_ns":1786206352190704361,"word_count":290},"code/apps/electron-vite-project/src/hooks/useDeleteFromProviderOnLocalDelete.ts":{"size":1701,"mtime_ns":1786206352190704361,"word_count":173},"code/apps/electron-vite-project/src/hooks/useHostToSandboxDirectReachability.ts":{"size":3139,"mtime_ns":1786206352190704361,"word_count":305},"code/apps/electron-vite-project/src/hooks/useInboxPreloadQueue.ts":{"size":11837,"mtime_ns":1786206352190704361,"word_count":1081},"code/apps/electron-vite-project/src/hooks/useIngestionStatus.test.ts":{"size":1876,"mtime_ns":1786206352190704361,"word_count":223},"code/apps/electron-vite-project/src/hooks/useIngestionStatus.ts":{"size":5467,"mtime_ns":1786206352190704361,"word_count":543},"code/apps/electron-vite-project/src/hooks/useInternalSandboxesList.ts":{"size":7370,"mtime_ns":1786206352118715391,"word_count":697},"code/apps/electron-vite-project/src/hooks/useOrchestratorMode.ts":{"size":5556,"mtime_ns":1786206352118715391,"word_count":498},"code/apps/electron-vite-project/src/hooks/useRevocationBanner.logic.test.ts":{"size":4872,"mtime_ns":1786206352118715391,"word_count":560},"code/apps/electron-vite-project/src/hooks/useRevocationBanner.ts":{"size":4013,"mtime_ns":1786206352118715391,"word_count":488},"code/apps/electron-vite-project/src/hooks/useSandboxHostInference.ts":{"size":17555,"mtime_ns":1786206352122714779,"word_count":1592},"code/apps/electron-vite-project/src/hooks/useSandboxReadCleanupHint.ts":{"size":2591,"mtime_ns":1786206352122714779,"word_count":287},"code/apps/electron-vite-project/src/hooks/useTopologyDelegationModal.ts":{"size":2228,"mtime_ns":1786206352122714779,"word_count":274},"code/apps/electron-vite-project/src/internal-inference-p2p-transport.html":{"size":302,"mtime_ns":1786206352122714779,"word_count":21},"code/apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts":{"size":12985,"mtime_ns":1786206352122714779,"word_count":1438},"code/apps/electron-vite-project/src/lib/__tests__/beapInboxActionTooltips.test.ts":{"size":1784,"mtime_ns":1786206352122714779,"word_count":138},"code/apps/electron-vite-project/src/lib/__tests__/beapInboxHostSandboxClickPolicy.test.ts":{"size":4057,"mtime_ns":1786206352122714779,"word_count":329},"code/apps/electron-vite-project/src/lib/__tests__/beapInboxSandboxVisibility.test.ts":{"size":4385,"mtime_ns":1786206352122714779,"word_count":402},"code/apps/electron-vite-project/src/lib/__tests__/beapInboxUxSourceRegressions.test.ts":{"size":6227,"mtime_ns":1786206352122714779,"word_count":477},"code/apps/electron-vite-project/src/lib/__tests__/beapInboxVisibleSandboxClone.test.ts":{"size":606,"mtime_ns":1786206352122714779,"word_count":49},"code/apps/electron-vite-project/src/lib/__tests__/beapSandboxCloneDeliverySemantics.test.ts":{"size":1525,"mtime_ns":1786206352122714779,"word_count":142},"code/apps/electron-vite-project/src/lib/__tests__/buildBSandboxViewportUi.test.ts":{"size":6213,"mtime_ns":1786206352122714779,"word_count":551},"code/apps/electron-vite-project/src/lib/__tests__/coalescedListInferenceTargets.test.ts":{"size":1886,"mtime_ns":1786206352122714779,"word_count":187},"code/apps/electron-vite-project/src/lib/__tests__/debugLogClipboard.test.ts":{"size":10571,"mtime_ns":1786206352122714779,"word_count":1101},"code/apps/electron-vite-project/src/lib/__tests__/dedicatedSandboxIngestionUi.test.ts":{"size":936,"mtime_ns":1786206352122714779,"word_count":58},"code/apps/electron-vite-project/src/lib/__tests__/fetchSelectorModelListFromHostDiscovery.test.ts":{"size":3000,"mtime_ns":1786206352122714779,"word_count":278},"code/apps/electron-vite-project/src/lib/__tests__/finalAcceptance.hostAiInvariants.test.ts":{"size":8431,"mtime_ns":1786206352122714779,"word_count":815},"code/apps/electron-vite-project/src/lib/__tests__/hostActiveModelSelection.test.ts":{"size":1263,"mtime_ns":1786206352122714779,"word_count":113},"code/apps/electron-vite-project/src/lib/__tests__/hostAiRemoteChatLane.test.ts":{"size":3096,"mtime_ns":1786206352122714779,"word_count":262},"code/apps/electron-vite-project/src/lib/__tests__/hostAiTargetConnectionPresentation.test.ts":{"size":5374,"mtime_ns":1786206352122714779,"word_count":402},"code/apps/electron-vite-project/src/lib/__tests__/hostAiTargetUiNormalization.test.ts":{"size":3947,"mtime_ns":1786206352122714779,"word_count":387},"code/apps/electron-vite-project/src/lib/__tests__/hostAiUiDiagnostics.test.ts":{"size":6162,"mtime_ns":1786206352122714779,"word_count":403},"code/apps/electron-vite-project/src/lib/__tests__/hostInferenceDirectReachabilityUi.test.ts":{"size":1021,"mtime_ns":1786206352122714779,"word_count":84},"code/apps/electron-vite-project/src/lib/__tests__/hostInferenceModelIds.test.ts":{"size":1642,"mtime_ns":1786206352122714779,"word_count":105},"code/apps/electron-vite-project/src/lib/__tests__/hostInferenceSelectorIntegration.test.ts":{"size":24321,"mtime_ns":1786206352122714779,"word_count":2336},"code/apps/electron-vite-project/src/lib/__tests__/hostInferenceSurface.regression.test.ts":{"size":1252,"mtime_ns":1786206352122714779,"word_count":135},"code/apps/electron-vite-project/src/lib/__tests__/hostInferenceUiGates.test.ts":{"size":1093,"mtime_ns":1786206352122714779,"word_count":89},"code/apps/electron-vite-project/src/lib/__tests__/hostModelSelectorRowUi.test.ts":{"size":5255,"mtime_ns":1786206352122714779,"word_count":488},"code/apps/electron-vite-project/src/lib/__tests__/hybridChatRagSuccessDisplay.test.ts":{"size":1286,"mtime_ns":1786206352122714779,"word_count":155},"code/apps/electron-vite-project/src/lib/__tests__/inboxAiCloneClassification.test.ts":{"size":10446,"mtime_ns":1786206352122714779,"word_count":771},"code/apps/electron-vite-project/src/lib/__tests__/inboxDetailAnalysisSelection.test.ts":{"size":3747,"mtime_ns":1786206352122714779,"word_count":311},"code/apps/electron-vite-project/src/lib/__tests__/inboxMessageActionable.test.ts":{"size":834,"mtime_ns":1786206352122714779,"word_count":80},"code/apps/electron-vite-project/src/lib/__tests__/inboxMessageSandboxClone.test.ts":{"size":4511,"mtime_ns":1786206352122714779,"word_count":380},"code/apps/electron-vite-project/src/lib/__tests__/inboxSessionArtefact.test.ts":{"size":3473,"mtime_ns":1786206352122714779,"word_count":306},"code/apps/electron-vite-project/src/lib/__tests__/inferenceSandboxVsHostContext.test.ts":{"size":1619,"mtime_ns":1786206352122714779,"word_count":153},"code/apps/electron-vite-project/src/lib/__tests__/inferenceSelectionPersistence.ollamaDirect.test.ts":{"size":3749,"mtime_ns":1786206352122714779,"word_count":323},"code/apps/electron-vite-project/src/lib/__tests__/modelSelectorHostRefreshVisibility.test.ts":{"size":3901,"mtime_ns":1786206352126714166,"word_count":356},"code/apps/electron-vite-project/src/lib/__tests__/phase11.beapRegression.test.ts":{"size":1673,"mtime_ns":1786206352126714166,"word_count":183},"code/apps/electron-vite-project/src/lib/__tests__/phase11.uiInvariants.test.ts":{"size":3200,"mtime_ns":1786206352126714166,"word_count":354},"code/apps/electron-vite-project/src/lib/__tests__/resolveActiveSandboxCloneTargets.test.ts":{"size":1513,"mtime_ns":1786206352126714166,"word_count":122},"code/apps/electron-vite-project/src/lib/__tests__/sandboxCloneEntitlementFeedback.test.ts":{"size":9850,"mtime_ns":1786206352126714166,"word_count":908},"code/apps/electron-vite-project/src/lib/__tests__/sandboxComposerGate.test.ts":{"size":9912,"mtime_ns":1786206352126714166,"word_count":923},"code/apps/electron-vite-project/src/lib/__tests__/step10.productionReadiness.acceptance.test.ts":{"size":5677,"mtime_ns":1786206352126714166,"word_count":600},"code/apps/electron-vite-project/src/lib/__tests__/step10.wrChatHostDiscoveryOrder.contract.test.ts":{"size":935,"mtime_ns":1786206352126714166,"word_count":110},"code/apps/electron-vite-project/src/lib/__tests__/step8.productionSafety.integration.test.ts":{"size":4523,"mtime_ns":1786206352126714166,"word_count":387},"code/apps/electron-vite-project/src/lib/__tests__/step8.productionSafety.regression.test.ts":{"size":2292,"mtime_ns":1786206352126714166,"word_count":224},"code/apps/electron-vite-project/src/lib/__tests__/step8.sandboxHostUiAndClone.test.ts":{"size":12858,"mtime_ns":1786206352126714166,"word_count":1104},"code/apps/electron-vite-project/src/lib/__tests__/step8.themeContrastRegressions.test.ts":{"size":8178,"mtime_ns":1786206352126714166,"word_count":897},"code/apps/electron-vite-project/src/lib/__tests__/step9.regression.test.ts":{"size":5551,"mtime_ns":1786206352126714166,"word_count":561},"code/apps/electron-vite-project/src/lib/aiExecutionContextFromSelection.ts":{"size":2264,"mtime_ns":1786206352126714166,"word_count":232},"code/apps/electron-vite-project/src/lib/appendHostRowsFromListInference.ts":{"size":3691,"mtime_ns":1786206352126714166,"word_count":432},"code/apps/electron-vite-project/src/lib/autoOptimizationEngine.ts":{"size":4456,"mtime_ns":1786206352126714166,"word_count":475},"code/apps/electron-vite-project/src/lib/autoOptimizationFingerprint.ts":{"size":4168,"mtime_ns":1786206352126714166,"word_count":471},"code/apps/electron-vite-project/src/lib/autoOptimizationGuards.ts":{"size":5522,"mtime_ns":1786206352126714166,"word_count":623},"code/apps/electron-vite-project/src/lib/autoSortSessionReviewCharts.test.ts":{"size":4666,"mtime_ns":1786206352126714166,"word_count":464},"code/apps/electron-vite-project/src/lib/autoSortSessionReviewCharts.ts":{"size":3699,"mtime_ns":1786206352126714166,"word_count":498},"code/apps/electron-vite-project/src/lib/autosortDiagnostics.ts":{"size":6983,"mtime_ns":1786206352126714166,"word_count":727},"code/apps/electron-vite-project/src/lib/beapInboxActionTooltips.ts":{"size":1909,"mtime_ns":1786206352126714166,"word_count":235},"code/apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts":{"size":22201,"mtime_ns":1786206352126714166,"word_count":1966},"code/apps/electron-vite-project/src/lib/beapInboxHostSandboxClickPolicy.ts":{"size":7253,"mtime_ns":1786206352126714166,"word_count":645},"code/apps/electron-vite-project/src/lib/beapInboxSandboxVisibility.ts":{"size":6887,"mtime_ns":1786206352126714166,"word_count":656},"code/apps/electron-vite-project/src/lib/beapInboxVisibleSandboxClone.ts":{"size":344,"mtime_ns":1786206352126714166,"word_count":47},"code/apps/electron-vite-project/src/lib/beapPackageAttachmentPreview.ts":{"size":2886,"mtime_ns":1786206352126714166,"word_count":366},"code/apps/electron-vite-project/src/lib/beapSandboxCloneDeliverySemantics.ts":{"size":783,"mtime_ns":1786206352126714166,"word_count":90},"code/apps/electron-vite-project/src/lib/buildProjectSetupChatPrefix.ts":{"size":2777,"mtime_ns":1786206352126714166,"word_count":299},"code/apps/electron-vite-project/src/lib/coalescedListInferenceTargets.ts":{"size":2519,"mtime_ns":1786206352126714166,"word_count":273},"code/apps/electron-vite-project/src/lib/debugLogClipboard.ts":{"size":1575,"mtime_ns":1786206352126714166,"word_count":197},"code/apps/electron-vite-project/src/lib/dedicatedSandboxIngestionUi.ts":{"size":1062,"mtime_ns":1786206352126714166,"word_count":140},"code/apps/electron-vite-project/src/lib/dedicatedSandboxMissingReadProviderCopy.ts":{"size":844,"mtime_ns":1786206352126714166,"word_count":116},"code/apps/electron-vite-project/src/lib/fetchAnalysisDashboardSnapshot.ts":{"size":10655,"mtime_ns":1786206352126714166,"word_count":1169},"code/apps/electron-vite-project/src/lib/handshakeHealthBannerCopy.ts":{"size":2041,"mtime_ns":1786206352126714166,"word_count":226},"code/apps/electron-vite-project/src/lib/handshakeRecipientMap.ts":{"size":1043,"mtime_ns":1786206352126714166,"word_count":82},"code/apps/electron-vite-project/src/lib/hostActiveModelSelection.ts":{"size":1916,"mtime_ns":1786206352126714166,"word_count":205},"code/apps/electron-vite-project/src/lib/hostAiRemoteChatLane.ts":{"size":1473,"mtime_ns":1786206352126714166,"word_count":171},"code/apps/electron-vite-project/src/lib/hostAiSelectorCopy.ts":{"size":12289,"mtime_ns":1786206352130713553,"word_count":1572},"code/apps/electron-vite-project/src/lib/hostAiTargetConnectionPresentation.ts":{"size":5175,"mtime_ns":1786206352130713553,"word_count":545},"code/apps/electron-vite-project/src/lib/hostAiTargetUiNormalization.ts":{"size":5885,"mtime_ns":1786206352130713553,"word_count":647},"code/apps/electron-vite-project/src/lib/hostAiUiDiagnostics.ts":{"size":12289,"mtime_ns":1786206352130713553,"word_count":1367},"code/apps/electron-vite-project/src/lib/hostInferenceModelIds.ts":{"size":3113,"mtime_ns":1786206352130713553,"word_count":386},"code/apps/electron-vite-project/src/lib/hostInferenceUiGates.ts":{"size":3114,"mtime_ns":1786206352130713553,"word_count":402},"code/apps/electron-vite-project/src/lib/hostModelSelectorRowUi.ts":{"size":10960,"mtime_ns":1786206352130713553,"word_count":1210},"code/apps/electron-vite-project/src/lib/hostRefreshFeedback.ts":{"size":4132,"mtime_ns":1786206352130713553,"word_count":506},"code/apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts":{"size":13306,"mtime_ns":1786206352130713553,"word_count":1420},"code/apps/electron-vite-project/src/lib/inboxAiUserMessages.ts":{"size":4352,"mtime_ns":1786206352130713553,"word_count":534},"code/apps/electron-vite-project/src/lib/inboxBeapOutbound.ts":{"size":502,"mtime_ns":1786206352130713553,"word_count":55},"code/apps/electron-vite-project/src/lib/inboxBeapRowEligibility.ts":{"size":2415,"mtime_ns":1786206352130713553,"word_count":297},"code/apps/electron-vite-project/src/lib/inboxClassificationReconcile.test.ts":{"size":5219,"mtime_ns":1786206352130713553,"word_count":493},"code/apps/electron-vite-project/src/lib/inboxClassificationReconcile.ts":{"size":6641,"mtime_ns":1786206352130713553,"word_count":658},"code/apps/electron-vite-project/src/lib/inboxDetailAnalysisSelection.ts":{"size":1440,"mtime_ns":1786206352130713553,"word_count":165},"code/apps/electron-vite-project/src/lib/inboxMessageActionable.ts":{"size":620,"mtime_ns":1786206352130713553,"word_count":92},"code/apps/electron-vite-project/src/lib/inboxMessageKind.ts":{"size":2510,"mtime_ns":1786206352130713553,"word_count":311},"code/apps/electron-vite-project/src/lib/inboxMessageSandboxClone.ts":{"size":7572,"mtime_ns":1786206352130713553,"word_count":914},"code/apps/electron-vite-project/src/lib/inboxSessionArtefact.ts":{"size":5404,"mtime_ns":1786206352130713553,"word_count":604},"code/apps/electron-vite-project/src/lib/inboxSessionReviewOpen.test.ts":{"size":2232,"mtime_ns":1786206352130713553,"word_count":194},"code/apps/electron-vite-project/src/lib/inboxSessionReviewOpen.ts":{"size":1359,"mtime_ns":1786206352130713553,"word_count":174},"code/apps/electron-vite-project/src/lib/inboxSortSourceWeighting.ts":{"size":2122,"mtime_ns":1786206352130713553,"word_count":275},"code/apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts":{"size":25391,"mtime_ns":1786206352130713553,"word_count":2589},"code/apps/electron-vite-project/src/lib/inferenceTargetRefreshLog.ts":{"size":3103,"mtime_ns":1786206352130713553,"word_count":346},"code/apps/electron-vite-project/src/lib/inferenceTargetTypes.ts":{"size":2966,"mtime_ns":1786206352130713553,"word_count":328},"code/apps/electron-vite-project/src/lib/ingestAiContextFiles.ts":{"size":1937,"mtime_ns":1786206352130713553,"word_count":237},"code/apps/electron-vite-project/src/lib/letterTemplateMultiVersion.ts":{"size":2415,"mtime_ns":1786206352130713553,"word_count":283},"code/apps/electron-vite-project/src/lib/modelSelectorHostRefreshVisibility.ts":{"size":3371,"mtime_ns":1786206352130713553,"word_count":358},"code/apps/electron-vite-project/src/lib/modelSelectorMerge.ts":{"size":3024,"mtime_ns":1786206352130713553,"word_count":281},"code/apps/electron-vite-project/src/lib/modelSelectorTargetsLog.ts":{"size":2150,"mtime_ns":1786206352130713553,"word_count":243},"code/apps/electron-vite-project/src/lib/openAppExternalUrl.ts":{"size":866,"mtime_ns":1786206352130713553,"word_count":123},"code/apps/electron-vite-project/src/lib/openSessionDisplayGridsFromDashboard.ts":{"size":2533,"mtime_ns":1786206352130713553,"word_count":292},"code/apps/electron-vite-project/src/lib/optimizationAgentBoxModel.ts":{"size":2329,"mtime_ns":1786206352130713553,"word_count":205},"code/apps/electron-vite-project/src/lib/optimizationAgentRunner.ts":{"size":2449,"mtime_ns":1786206352130713553,"word_count":254},"code/apps/electron-vite-project/src/lib/optimizationChainRunner.ts":{"size":3412,"mtime_ns":1786206352130713553,"word_count":336},"code/apps/electron-vite-project/src/lib/optimizationContextAssembler.ts":{"size":7395,"mtime_ns":1786206352130713553,"word_count":837},"code/apps/electron-vite-project/src/lib/optimizationLlmAdapter.ts":{"size":3188,"mtime_ns":1786206352130713553,"word_count":398},"code/apps/electron-vite-project/src/lib/optimizationPromptBuilder.ts":{"size":6704,"mtime_ns":1786206352130713553,"word_count":770},"code/apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts":{"size":18520,"mtime_ns":1786206352130713553,"word_count":1871},"code/apps/electron-vite-project/src/lib/orchestratorModeVsHandshake.ts":{"size":2699,"mtime_ns":1786206352130713553,"word_count":263},"code/apps/electron-vite-project/src/lib/orchestratorSessionClient.ts":{"size":1586,"mtime_ns":1786206352130713553,"word_count":186},"code/apps/electron-vite-project/src/lib/projectAssistantAiFieldContracts.test.ts":{"size":1343,"mtime_ns":1786206352130713553,"word_count":98},"code/apps/electron-vite-project/src/lib/projectAssistantAiFieldContracts.ts":{"size":2016,"mtime_ns":1786206352130713553,"word_count":237},"code/apps/electron-vite-project/src/lib/refreshHostInferenceTargets.ts":{"size":1003,"mtime_ns":1786206352130713553,"word_count":111},"code/apps/electron-vite-project/src/lib/refreshOrchestratorSessions.ts":{"size":1916,"mtime_ns":1786206352130713553,"word_count":246},"code/apps/electron-vite-project/src/lib/resolveActiveSandboxCloneTargets.ts":{"size":1390,"mtime_ns":1786206352130713553,"word_count":125},"code/apps/electron-vite-project/src/lib/runBeapSessionAutomation.ts":{"size":3071,"mtime_ns":1786206352130713553,"word_count":360},"code/apps/electron-vite-project/src/lib/sandboxCloneFeedbackUi.ts":{"size":3709,"mtime_ns":1786206352130713553,"word_count":386},"code/apps/electron-vite-project/src/lib/selectorModelListFromHostDiscovery.ts":{"size":7884,"mtime_ns":1786206352130713553,"word_count":775},"code/apps/electron-vite-project/src/lib/useAnalysisDashboardSnapshot.ts":{"size":1268,"mtime_ns":1786206352130713553,"word_count":137},"code/apps/electron-vite-project/src/lib/wrChatDashboardBootstrap.ts":{"size":3113,"mtime_ns":1786206352130713553,"word_count":331},"code/apps/electron-vite-project/src/lib/wrChatDashboardConstants.ts":{"size":190,"mtime_ns":1786206352130713553,"word_count":18},"code/apps/electron-vite-project/src/lib/wrChatDashboardLog.ts":{"size":450,"mtime_ns":1786206352130713553,"word_count":53},"code/apps/electron-vite-project/src/lib/wrChatDashboardSpeechContext.ts":{"size":1562,"mtime_ns":1786206352130713553,"word_count":169},"code/apps/electron-vite-project/src/lib/wrChatRuntimeMode.ts":{"size":742,"mtime_ns":1786206352130713553,"word_count":97},"code/apps/electron-vite-project/src/lib/wrDeskOptimizerHttpBridge.ts":{"size":5579,"mtime_ns":1786206352130713553,"word_count":565},"code/apps/electron-vite-project/src/lib/wrdeskUiEvents.ts":{"size":1713,"mtime_ns":1786206352130713553,"word_count":191},"code/apps/electron-vite-project/src/main.tsx":{"size":486,"mtime_ns":1786206352130713553,"word_count":44},"code/apps/electron-vite-project/src/shims/__tests__/handshakeRpc.acceptX25519.shim.regression.test.ts":{"size":3624,"mtime_ns":1786206352130713553,"word_count":281},"code/apps/electron-vite-project/src/shims/audit.ts":{"size":1240,"mtime_ns":1786206352130713553,"word_count":166},"code/apps/electron-vite-project/src/shims/envelope-evaluation.ts":{"size":432,"mtime_ns":1786206352130713553,"word_count":52},"code/apps/electron-vite-project/src/shims/handshakeRpc.ts":{"size":19806,"mtime_ns":1786206352130713553,"word_count":2068},"code/apps/electron-vite-project/src/shims/hsContextProfilesRpc.ts":{"size":1471,"mtime_ns":1786206352130713553,"word_count":169},"code/apps/electron-vite-project/src/shims/ingress.ts":{"size":284,"mtime_ns":1786206352130713553,"word_count":40},"code/apps/electron-vite-project/src/shims/reconstruction.ts":{"size":1087,"mtime_ns":1786206352130713553,"word_count":149},"code/apps/electron-vite-project/src/shims/wrChatDashboardChrome.ts":{"size":22349,"mtime_ns":1786206352130713553,"word_count":2398},"code/apps/electron-vite-project/src/shims/wrChatDashboardModeInterval.ts":{"size":2987,"mtime_ns":1786206352130713553,"word_count":270},"code/apps/electron-vite-project/src/shims/wrChatDashboardModeRunBridge.ts":{"size":4483,"mtime_ns":1786206352130713553,"word_count":372},"code/apps/electron-vite-project/src/stores/useAiDraftContextStore.ts":{"size":1065,"mtime_ns":1786206352130713553,"word_count":151},"code/apps/electron-vite-project/src/stores/useDraftRefineStore.ts":{"size":2425,"mtime_ns":1786206352134712940,"word_count":295},"code/apps/electron-vite-project/src/stores/useEmailInboxStore.ts":{"size":74896,"mtime_ns":1786206352134712940,"word_count":7978},"code/apps/electron-vite-project/src/stores/useLetterComposerStore.ts":{"size":51268,"mtime_ns":1786206352134712940,"word_count":5278},"code/apps/electron-vite-project/src/stores/useProjectSetupChatContextStore.ts":{"size":3910,"mtime_ns":1786206352134712940,"word_count":449},"code/apps/electron-vite-project/src/stores/useProjectStore.ts":{"size":19254,"mtime_ns":1786206352134712940,"word_count":1717},"code/apps/electron-vite-project/src/styles/uiContrastTokens.ts":{"size":2840,"mtime_ns":1786206352134712940,"word_count":355},"code/apps/electron-vite-project/src/types/analysisDashboardSnapshot.ts":{"size":17200,"mtime_ns":1786206352134712940,"word_count":2091},"code/apps/electron-vite-project/src/types/beapInboxClone.ts":{"size":3152,"mtime_ns":1786206352134712940,"word_count":290},"code/apps/electron-vite-project/src/types/inboxAi.ts":{"size":7517,"mtime_ns":1786206352134712940,"word_count":918},"code/apps/electron-vite-project/src/types/optimizationTypes.ts":{"size":3488,"mtime_ns":1786206352134712940,"word_count":427},"code/apps/electron-vite-project/src/types/projectTypes.ts":{"size":3785,"mtime_ns":1786206352134712940,"word_count":424},"code/apps/electron-vite-project/src/types/sandboxOrchestratorAvailability.ts":{"size":796,"mtime_ns":1786206352134712940,"word_count":67},"code/apps/electron-vite-project/src/utils/__tests__/validationState.test.ts":{"size":951,"mtime_ns":1786206352134712940,"word_count":72},"code/apps/electron-vite-project/src/utils/activeEmailAccountIdsForSync.test.ts":{"size":1213,"mtime_ns":1786206352134712940,"word_count":136},"code/apps/electron-vite-project/src/utils/contextBlockHash.ts":{"size":662,"mtime_ns":1786206352134712940,"word_count":76},"code/apps/electron-vite-project/src/utils/inboxNewMessagesBackgroundRefresh.test.ts":{"size":3659,"mtime_ns":1786206352134712940,"word_count":317},"code/apps/electron-vite-project/src/utils/inboxNewMessagesBackgroundRefresh.ts":{"size":1644,"mtime_ns":1786206352134712940,"word_count":182},"code/apps/electron-vite-project/src/utils/originDeleteFlow.ts":{"size":3847,"mtime_ns":1786206352134712940,"word_count":457},"code/apps/electron-vite-project/src/utils/parseInboxAiJson.test.ts":{"size":3056,"mtime_ns":1786206352134712940,"word_count":256},"code/apps/electron-vite-project/src/utils/parseInboxAiJson.ts":{"size":13085,"mtime_ns":1786206352134712940,"word_count":1395},"code/apps/electron-vite-project/src/utils/parseInboxAiScamWatchdog.test.ts":{"size":4842,"mtime_ns":1786206352134712940,"word_count":461},"code/apps/electron-vite-project/src/utils/safeLinks.ts":{"size":6735,"mtime_ns":1786206352134712940,"word_count":847},"code/apps/electron-vite-project/src/utils/syncFailureUi.test.ts":{"size":5018,"mtime_ns":1786206352134712940,"word_count":349},"code/apps/electron-vite-project/src/utils/syncFailureUi.ts":{"size":5115,"mtime_ns":1786206352134712940,"word_count":523},"code/apps/electron-vite-project/src/utils/validationState.ts":{"size":1582,"mtime_ns":1786206352134712940,"word_count":214},"code/apps/electron-vite-project/src/vite-env.d.ts":{"size":15567,"mtime_ns":1786206352134712940,"word_count":1918},"code/apps/electron-vite-project/start-opengiraffe.ps1":{"size":588,"mtime_ns":1786206352134712940,"word_count":63},"code/apps/electron-vite-project/stop-opengiraffe.ps1":{"size":1120,"mtime_ns":1786206352134712940,"word_count":126},"code/apps/electron-vite-project/tesseract-lang/README.md":{"size":1374,"mtime_ns":1786206352134712940,"word_count":168},"code/apps/electron-vite-project/test-electron-logs.md":{"size":1318,"mtime_ns":1786206352134712940,"word_count":192},"code/apps/electron-vite-project/tsconfig.json":{"size":1466,"mtime_ns":1786206352134712940,"word_count":85},"code/apps/electron-vite-project/tsconfig.node.json":{"size":233,"mtime_ns":1786206352134712940,"word_count":19},"code/apps/electron-vite-project/vite.config.ts":{"size":8724,"mtime_ns":1786206352134712940,"word_count":731},"code/apps/electron-vite-project/websocket-diagnostic-report.json":{"size":699,"mtime_ns":1786206352134712940,"word_count":61},"code/apps/extension-chromium/AGENT_BOX_IDENTITY_FIX.md":{"size":5518,"mtime_ns":1786206352134712940,"word_count":736},"code/apps/extension-chromium/AI_AGENT_LLM_INTEGRATION_COMPLETE_PLAN.md":{"size":0,"mtime_ns":1786206352134712940,"word_count":0},"code/apps/extension-chromium/BEAP_POST_FIX_VERIFICATION_AUDIT_REPORT.md":{"size":4854,"mtime_ns":1786206352134712940,"word_count":512},"code/apps/extension-chromium/README_WEBMCP.md":{"size":2347,"mtime_ns":1786206352134712940,"word_count":320},"code/apps/extension-chromium/TOGGLE_FEATURE_TEST_GUIDE.md":{"size":5249,"mtime_ns":1786206352134712940,"word_count":889},"code/apps/extension-chromium/WEBMCP_RELEASE_CHECKLIST.md":{"size":3418,"mtime_ns":1786206352134712940,"word_count":457},"code/apps/extension-chromium/check-chrome-storage.js":{"size":1275,"mtime_ns":1786206352134712940,"word_count":140},"code/apps/extension-chromium/content-script-diff.txt":{"size":1574,"mtime_ns":1786206352134712940,"word_count":129},"code/apps/extension-chromium/docs/beap-inbox-automation-import.md":{"size":3246,"mtime_ns":1786206352134712940,"word_count":355},"code/apps/extension-chromium/force-reload-instructions.txt":{"size":2575,"mtime_ns":1786206352134712940,"word_count":202},"code/apps/extension-chromium/manifest.config.ts":{"size":2589,"mtime_ns":1786206352138712327,"word_count":215},"code/apps/extension-chromium/package.json":{"size":1010,"mtime_ns":1786206352138712327,"word_count":78},"code/apps/extension-chromium/public/grid-display-v2.html":{"size":17286,"mtime_ns":1786206352138712327,"word_count":1463},"code/apps/extension-chromium/public/grid-display.html":{"size":1867,"mtime_ns":1786206352138712327,"word_count":171},"code/apps/extension-chromium/public/grid-display.js":{"size":18081,"mtime_ns":1786206352138712327,"word_count":1755},"code/apps/extension-chromium/public/grid-integration-default-badge.js":{"size":8477,"mtime_ns":1786206352138712327,"word_count":837},"code/apps/extension-chromium/public/grid-script-backup.js":{"size":21367,"mtime_ns":1786206352138712327,"word_count":2006},"code/apps/extension-chromium/public/grid-script-v2.js":{"size":45351,"mtime_ns":1786206352138712327,"word_count":3847},"code/apps/extension-chromium/public/grid-script.js":{"size":61442,"mtime_ns":1786206352138712327,"word_count":5159},"code/apps/extension-chromium/public/grid.html":{"size":10355,"mtime_ns":1786206352138712327,"word_count":926},"code/apps/extension-chromium/public/orchestration.html":{"size":25931,"mtime_ns":1786206352138712327,"word_count":1508},"code/apps/extension-chromium/public/orchestration.js":{"size":17464,"mtime_ns":1786206352138712327,"word_count":2657},"code/apps/extension-chromium/public/silent-launch.html":{"size":540,"mtime_ns":1786206352138712327,"word_count":52},"code/apps/extension-chromium/public/wrdesk-logo.png":{"size":22112,"mtime_ns":1786206352138712327,"word_count":792},"code/apps/extension-chromium/schemas/agent.schema.json":{"size":25836,"mtime_ns":1786206352138712327,"word_count":2363},"code/apps/extension-chromium/schemas/agent.template.json":{"size":6183,"mtime_ns":1786206352138712327,"word_count":501},"code/apps/extension-chromium/schemas/agentbox.schema.json":{"size":7674,"mtime_ns":1786206352138712327,"word_count":849},"code/apps/extension-chromium/schemas/agentbox.template.json":{"size":816,"mtime_ns":1786206352138712327,"word_count":96},"code/apps/extension-chromium/schemas/example-agent.json":{"size":5284,"mtime_ns":1786206352138712327,"word_count":414},"code/apps/extension-chromium/schemas/optimando.schema.json":{"size":15542,"mtime_ns":1786206352138712327,"word_count":1479},"code/apps/extension-chromium/schemas/optimando.template.json":{"size":4925,"mtime_ns":1786206352138712327,"word_count":397},"code/apps/extension-chromium/src/agent-manager-v2.ts":{"size":9663,"mtime_ns":1786206352138712327,"word_count":875},"code/apps/extension-chromium/src/audit/archivalService.ts":{"size":9097,"mtime_ns":1786206352138712327,"word_count":797},"code/apps/extension-chromium/src/audit/components/ArchiveButton.tsx":{"size":3566,"mtime_ns":1786206352138712327,"word_count":334},"code/apps/extension-chromium/src/audit/components/AuditTrailPanel.tsx":{"size":13545,"mtime_ns":1786206352138712327,"word_count":1248},"code/apps/extension-chromium/src/audit/components/index.ts":{"size":158,"mtime_ns":1786206352138712327,"word_count":22},"code/apps/extension-chromium/src/audit/exportService.ts":{"size":13040,"mtime_ns":1786206352138712327,"word_count":1274},"code/apps/extension-chromium/src/audit/index.ts":{"size":966,"mtime_ns":1786206352138712327,"word_count":91},"code/apps/extension-chromium/src/audit/types.ts":{"size":6652,"mtime_ns":1786206352138712327,"word_count":735},"code/apps/extension-chromium/src/audit/useAuditStore.ts":{"size":11685,"mtime_ns":1786206352138712327,"word_count":1076},"code/apps/extension-chromium/src/automation/ListenerManager.ts":{"size":18348,"mtime_ns":1786206352138712327,"word_count":1954},"code/apps/extension-chromium/src/automation/__tests__/ConditionEngine.test.ts":{"size":12199,"mtime_ns":1786206352138712327,"word_count":1318},"code/apps/extension-chromium/src/automation/__tests__/LegacyConfigAdapter.test.ts":{"size":8140,"mtime_ns":1786206352138712327,"word_count":713},"code/apps/extension-chromium/src/automation/__tests__/ListenerManager.test.ts":{"size":8388,"mtime_ns":1786206352138712327,"word_count":688},"code/apps/extension-chromium/src/automation/__tests__/TriggerRegistry.test.ts":{"size":8781,"mtime_ns":1786206352138712327,"word_count":737},"code/apps/extension-chromium/src/automation/__tests__/WorkflowRunner.test.ts":{"size":11482,"mtime_ns":1786206352138712327,"word_count":1070},"code/apps/extension-chromium/src/automation/adapters/LegacyConfigAdapter.ts":{"size":8135,"mtime_ns":1786206352138712327,"word_count":966},"code/apps/extension-chromium/src/automation/adapters/TriggerMigration.ts":{"size":10060,"mtime_ns":1786206352138712327,"word_count":1017},"code/apps/extension-chromium/src/automation/adapters/index.ts":{"size":130,"mtime_ns":1786206352138712327,"word_count":13},"code/apps/extension-chromium/src/automation/conditions/ConditionEngine.ts":{"size":7956,"mtime_ns":1786206352142711715,"word_count":978},"code/apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts":{"size":15496,"mtime_ns":1786206352142711715,"word_count":1630},"code/apps/extension-chromium/src/automation/conditions/index.ts":{"size":156,"mtime_ns":1786206352142711715,"word_count":19},"code/apps/extension-chromium/src/automation/conditions/operators.ts":{"size":4284,"mtime_ns":1786206352142711715,"word_count":516},"code/apps/extension-chromium/src/automation/index.ts":{"size":987,"mtime_ns":1786206352142711715,"word_count":116},"code/apps/extension-chromium/src/automation/triggers/BaseTrigger.ts":{"size":3032,"mtime_ns":1786206352142711715,"word_count":365},"code/apps/extension-chromium/src/automation/triggers/ChatTrigger.ts":{"size":3766,"mtime_ns":1786206352142711715,"word_count":484},"code/apps/extension-chromium/src/automation/triggers/CronTrigger.ts":{"size":8860,"mtime_ns":1786206352142711715,"word_count":1104},"code/apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts":{"size":6661,"mtime_ns":1786206352142711715,"word_count":746},"code/apps/extension-chromium/src/automation/triggers/index.ts":{"size":223,"mtime_ns":1786206352142711715,"word_count":30},"code/apps/extension-chromium/src/automation/types.ts":{"size":28362,"mtime_ns":1786206352142711715,"word_count":3679},"code/apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts":{"size":6933,"mtime_ns":1786206352142711715,"word_count":895},"code/apps/extension-chromium/src/automation/workflows/SensorWorkflow.ts":{"size":5736,"mtime_ns":1786206352142711715,"word_count":701},"code/apps/extension-chromium/src/automation/workflows/WorkflowRegistry.ts":{"size":4846,"mtime_ns":1786206352142711715,"word_count":566},"code/apps/extension-chromium/src/automation/workflows/WorkflowRunner.ts":{"size":10660,"mtime_ns":1786206352142711715,"word_count":1177},"code/apps/extension-chromium/src/automation/workflows/index.ts":{"size":244,"mtime_ns":1786206352142711715,"word_count":30},"code/apps/extension-chromium/src/background.ts":{"size":219982,"mtime_ns":1786206352142711715,"word_count":22495},"code/apps/extension-chromium/src/beap-builder/__tests__/buildSessionImportArtefact.test.ts":{"size":18599,"mtime_ns":1786206352142711715,"word_count":1598},"code/apps/extension-chromium/src/beap-builder/__tests__/draftAttachmentAutoParse.test.ts":{"size":1733,"mtime_ns":1786206352142711715,"word_count":145},"code/apps/extension-chromium/src/beap-builder/__tests__/handshakeRefresh.test.ts":{"size":3975,"mtime_ns":1786206352142711715,"word_count":383},"code/apps/extension-chromium/src/beap-builder/__tests__/parserService.test.ts":{"size":18977,"mtime_ns":1786206352142711715,"word_count":1542},"code/apps/extension-chromium/src/beap-builder/__tests__/pr41OrchestratorReads.test.ts":{"size":13939,"mtime_ns":1786206352142711715,"word_count":1360},"code/apps/extension-chromium/src/beap-builder/__tests__/pr4SenderPlumbing.test.ts":{"size":12840,"mtime_ns":1786206352142711715,"word_count":1114},"code/apps/extension-chromium/src/beap-builder/anthropicApiKeyStorage.ts":{"size":2749,"mtime_ns":1786206352142711715,"word_count":328},"code/apps/extension-chromium/src/beap-builder/boundary-types.ts":{"size":8752,"mtime_ns":1786206352142711715,"word_count":977},"code/apps/extension-chromium/src/beap-builder/buildSessionImportArtefact.ts":{"size":5380,"mtime_ns":1786206352142711715,"word_count":623},"code/apps/extension-chromium/src/beap-builder/canonical-types.ts":{"size":23399,"mtime_ns":1786206352142711715,"word_count":2903},"code/apps/extension-chromium/src/beap-builder/components/AttachmentStatusBadge.tsx":{"size":1239,"mtime_ns":1786206352142711715,"word_count":140},"code/apps/extension-chromium/src/beap-builder/components/BeapDocumentReaderModal.tsx":{"size":11354,"mtime_ns":1786206352142711715,"word_count":1007},"code/apps/extension-chromium/src/beap-builder/components/DeliveryOptions.tsx":{"size":11884,"mtime_ns":1786206352142711715,"word_count":1071},"code/apps/extension-chromium/src/beap-builder/components/EnvelopeSection.tsx":{"size":6965,"mtime_ns":1786206352146711101,"word_count":640},"code/apps/extension-chromium/src/beap-builder/components/EnvelopeSummaryPanel.tsx":{"size":11075,"mtime_ns":1786206352146711101,"word_count":981},"code/apps/extension-chromium/src/beap-builder/components/ExecutionBoundaryPanel.tsx":{"size":23093,"mtime_ns":1786206352146711101,"word_count":1542},"code/apps/extension-chromium/src/beap-builder/components/ExecutionBoundarySection.tsx":{"size":11853,"mtime_ns":1786206352146711101,"word_count":926},"code/apps/extension-chromium/src/beap-builder/components/VisionFallbackButton.tsx":{"size":8234,"mtime_ns":1786206352146711101,"word_count":740},"code/apps/extension-chromium/src/beap-builder/components/index.ts":{"size":737,"mtime_ns":1786206352146711101,"word_count":79},"code/apps/extension-chromium/src/beap-builder/dispatch-types.ts":{"size":6583,"mtime_ns":1786206352146711101,"word_count":746},"code/apps/extension-chromium/src/beap-builder/draftAttachmentAutoParse.ts":{"size":3370,"mtime_ns":1786206352146711101,"word_count":324},"code/apps/extension-chromium/src/beap-builder/handshakeRefresh.ts":{"size":2049,"mtime_ns":1786206352146711101,"word_count":220},"code/apps/extension-chromium/src/beap-builder/index.ts":{"size":2484,"mtime_ns":1786206352146711101,"word_count":225},"code/apps/extension-chromium/src/beap-builder/parserService.ts":{"size":20076,"mtime_ns":1786206352146711101,"word_count":2308},"code/apps/extension-chromium/src/beap-builder/requiresBuilder.ts":{"size":4322,"mtime_ns":1786206352146711101,"word_count":468},"code/apps/extension-chromium/src/beap-builder/types.ts":{"size":7096,"mtime_ns":1786206352146711101,"word_count":767},"code/apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts":{"size":14560,"mtime_ns":1786206352146711101,"word_count":1234},"code/apps/extension-chromium/src/beap-builder/useOutboxStore.ts":{"size":8962,"mtime_ns":1786206352146711101,"word_count":813},"code/apps/extension-chromium/src/beap-builder/visionExtractionService.ts":{"size":7978,"mtime_ns":1786206352146711101,"word_count":932},"code/apps/extension-chromium/src/beap-messages/__tests__/activationPipeline.test.ts":{"size":10470,"mtime_ns":1786206352146711101,"word_count":940},"code/apps/extension-chromium/src/beap-messages/__tests__/attachmentPickerLimits.test.ts":{"size":804,"mtime_ns":1786206352146711101,"word_count":71},"code/apps/extension-chromium/src/beap-messages/__tests__/b81InboxPagination.test.ts":{"size":11692,"mtime_ns":1786206352146711101,"word_count":870},"code/apps/extension-chromium/src/beap-messages/__tests__/b82PatchMode.test.ts":{"size":17659,"mtime_ns":1786206352146711101,"word_count":1567},"code/apps/extension-chromium/src/beap-messages/__tests__/b8InboxStoreMirror.test.ts":{"size":17873,"mtime_ns":1786206352146711101,"word_count":1386},"code/apps/extension-chromium/src/beap-messages/__tests__/beapInboxBridges.test.ts":{"size":2984,"mtime_ns":1786206352146711101,"word_count":272},"code/apps/extension-chromium/src/beap-messages/__tests__/beapModeRunEligibility.test.ts":{"size":1128,"mtime_ns":1786206352146711101,"word_count":125},"code/apps/extension-chromium/src/beap-messages/__tests__/beapSessionBridgeGuards.test.ts":{"size":1160,"mtime_ns":1786206352146711101,"word_count":82},"code/apps/extension-chromium/src/beap-messages/__tests__/integrationDefaultAutomationMetadata.test.ts":{"size":5020,"mtime_ns":1786206352146711101,"word_count":365},"code/apps/extension-chromium/src/beap-messages/__tests__/modeRunExecutionPipeline.test.ts":{"size":9487,"mtime_ns":1786206352146711101,"word_count":868},"code/apps/extension-chromium/src/beap-messages/__tests__/pr5InboxWiring.test.ts":{"size":15958,"mtime_ns":1786206352146711101,"word_count":1521},"code/apps/extension-chromium/src/beap-messages/__tests__/pr6ReplyPath.test.ts":{"size":17998,"mtime_ns":1786206352146711101,"word_count":1668},"code/apps/extension-chromium/src/beap-messages/__tests__/pr7BulkInbox.test.ts":{"size":18735,"mtime_ns":1786206352146711101,"word_count":1755},"code/apps/extension-chromium/src/beap-messages/__tests__/sessionImportPayloadResolver.test.ts":{"size":4698,"mtime_ns":1786206352146711101,"word_count":423},"code/apps/extension-chromium/src/beap-messages/attachmentPickerLimits.ts":{"size":710,"mtime_ns":1786206352146711101,"word_count":98},"code/apps/extension-chromium/src/beap-messages/beapInboxTypes.ts":{"size":13065,"mtime_ns":1786206352146711101,"word_count":1556},"code/apps/extension-chromium/src/beap-messages/beapSessionBridgeGuards.ts":{"size":1320,"mtime_ns":1786206352150710489,"word_count":149},"code/apps/extension-chromium/src/beap-messages/beapSessionEditBridge.ts":{"size":2275,"mtime_ns":1786206352150710489,"word_count":250},"code/apps/extension-chromium/src/beap-messages/beapSessionRunBridge.ts":{"size":6485,"mtime_ns":1786206352150710489,"word_count":653},"code/apps/extension-chromium/src/beap-messages/components/ActiveHandshakesView.tsx":{"size":12208,"mtime_ns":1786206352150710489,"word_count":1120},"code/apps/extension-chromium/src/beap-messages/components/AiEntryContent.tsx":{"size":6709,"mtime_ns":1786206352150710489,"word_count":597},"code/apps/extension-chromium/src/beap-messages/components/BeapAttachmentReader.tsx":{"size":4931,"mtime_ns":1786206352150710489,"word_count":472},"code/apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx":{"size":58815,"mtime_ns":1786206352150710489,"word_count":5125},"code/apps/extension-chromium/src/beap-messages/components/BeapDraftComposer.tsx":{"size":14000,"mtime_ns":1786206352150710489,"word_count":1140},"code/apps/extension-chromium/src/beap-messages/components/BeapInboxSidebar.tsx":{"size":24195,"mtime_ns":1786206352150710489,"word_count":2183},"code/apps/extension-chromium/src/beap-messages/components/BeapInboxView.tsx":{"size":17343,"mtime_ns":1786206352150710489,"word_count":1533},"code/apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx":{"size":66519,"mtime_ns":1786206352150710489,"word_count":5281},"code/apps/extension-chromium/src/beap-messages/components/BeapMessageListView.tsx":{"size":11793,"mtime_ns":1786206352150710489,"word_count":1002},"code/apps/extension-chromium/src/beap-messages/components/BeapMessagePreview.tsx":{"size":12776,"mtime_ns":1786206352150710489,"word_count":1101},"code/apps/extension-chromium/src/beap-messages/components/BeapMessageRow.tsx":{"size":6016,"mtime_ns":1786206352150710489,"word_count":581},"code/apps/extension-chromium/src/beap-messages/components/BeapReplyComposer.tsx":{"size":20635,"mtime_ns":1786206352150710489,"word_count":1686},"code/apps/extension-chromium/src/beap-messages/components/DeliveryMethodPanel.tsx":{"size":15207,"mtime_ns":1786206352150710489,"word_count":1332},"code/apps/extension-chromium/src/beap-messages/components/InboxErrorBoundary.tsx":{"size":5201,"mtime_ns":1786206352150710489,"word_count":458},"code/apps/extension-chromium/src/beap-messages/components/InboxMessagePreview.tsx":{"size":18070,"mtime_ns":1786206352150710489,"word_count":1476},"code/apps/extension-chromium/src/beap-messages/components/OutboxMessagePreview.tsx":{"size":16353,"mtime_ns":1786206352150710489,"word_count":1338},"code/apps/extension-chromium/src/beap-messages/components/ProtectedAccessWarningDialog.tsx":{"size":4262,"mtime_ns":1786206352150710489,"word_count":399},"code/apps/extension-chromium/src/beap-messages/components/RecipientHandshakeSelect.tsx":{"size":17175,"mtime_ns":1786206352150710489,"word_count":1400},"code/apps/extension-chromium/src/beap-messages/components/RecipientModeSwitch.tsx":{"size":4647,"mtime_ns":1786206352150710489,"word_count":456},"code/apps/extension-chromium/src/beap-messages/components/RejectedMessagePreview.tsx":{"size":13444,"mtime_ns":1786206352150710489,"word_count":1131},"code/apps/extension-chromium/src/beap-messages/components/index.ts":{"size":2675,"mtime_ns":1786206352150710489,"word_count":304},"code/apps/extension-chromium/src/beap-messages/hooks/index.ts":{"size":1804,"mtime_ns":1786206352150710489,"word_count":175},"code/apps/extension-chromium/src/beap-messages/hooks/useBeapDraftActions.ts":{"size":9141,"mtime_ns":1786206352150710489,"word_count":851},"code/apps/extension-chromium/src/beap-messages/hooks/useBeapMessageAi.ts":{"size":4314,"mtime_ns":1786206352150710489,"word_count":548},"code/apps/extension-chromium/src/beap-messages/hooks/useBeapSessionImportResolution.ts":{"size":867,"mtime_ns":1786206352150710489,"word_count":92},"code/apps/extension-chromium/src/beap-messages/hooks/useBulkClassification.ts":{"size":13542,"mtime_ns":1786206352150710489,"word_count":1222},"code/apps/extension-chromium/src/beap-messages/hooks/useBulkSend.ts":{"size":12549,"mtime_ns":1786206352150710489,"word_count":1290},"code/apps/extension-chromium/src/beap-messages/hooks/useInboxKeyboardNav.ts":{"size":7882,"mtime_ns":1786206352150710489,"word_count":825},"code/apps/extension-chromium/src/beap-messages/hooks/useMediaQuery.ts":{"size":1031,"mtime_ns":1786206352150710489,"word_count":127},"code/apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts":{"size":26999,"mtime_ns":1786206352154709876,"word_count":2718},"code/apps/extension-chromium/src/beap-messages/hooks/useViewOriginalArtefact.ts":{"size":2452,"mtime_ns":1786206352154709876,"word_count":282},"code/apps/extension-chromium/src/beap-messages/inboxRowToBeapMessage.ts":{"size":6458,"mtime_ns":1786206352154709876,"word_count":636},"code/apps/extension-chromium/src/beap-messages/index.ts":{"size":5466,"mtime_ns":1786206352154709876,"word_count":407},"code/apps/extension-chromium/src/beap-messages/initBeapPqAuth.ts":{"size":589,"mtime_ns":1786206352154709876,"word_count":73},"code/apps/extension-chromium/src/beap-messages/integrationDefaultAutomationMetadata.ts":{"size":7553,"mtime_ns":1786206352154709876,"word_count":700},"code/apps/extension-chromium/src/beap-messages/sandbox/index.ts":{"size":978,"mtime_ns":1786206352154709876,"word_count":103},"code/apps/extension-chromium/src/beap-messages/sandbox/sandbox.html":{"size":1334,"mtime_ns":1786206352154709876,"word_count":166},"code/apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts":{"size":15475,"mtime_ns":1786206352154709876,"word_count":1460},"code/apps/extension-chromium/src/beap-messages/sandbox/sandboxClient.ts":{"size":12276,"mtime_ns":1786206352154709876,"word_count":1299},"code/apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts":{"size":12876,"mtime_ns":1786206352154709876,"word_count":1566},"code/apps/extension-chromium/src/beap-messages/sanitisedPackageToBeapMessage.ts":{"size":7627,"mtime_ns":1786206352154709876,"word_count":826},"code/apps/extension-chromium/src/beap-messages/seedData.ts":{"size":13656,"mtime_ns":1786206352154709876,"word_count":1467},"code/apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts":{"size":103261,"mtime_ns":1786206352154709876,"word_count":11016},"code/apps/extension-chromium/src/beap-messages/services/__tests__/BeapPackageBuilder.test.ts":{"size":17023,"mtime_ns":1786206352154709876,"word_count":1485},"code/apps/extension-chromium/src/beap-messages/services/__tests__/beapCrypto.test.ts":{"size":14680,"mtime_ns":1786206352154709876,"word_count":1352},"code/apps/extension-chromium/src/beap-messages/services/__tests__/executeP2PAction.test.ts":{"size":9745,"mtime_ns":1786206352154709876,"word_count":747},"code/apps/extension-chromium/src/beap-messages/services/__tests__/sessionImportArtefact.test.ts":{"size":17059,"mtime_ns":1786206352154709876,"word_count":1555},"code/apps/extension-chromium/src/beap-messages/services/__tests__/transportChannelSafety.test.ts":{"size":2504,"mtime_ns":1786206352154709876,"word_count":256},"code/apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts":{"size":29903,"mtime_ns":1786206352154709876,"word_count":2914},"code/apps/extension-chromium/src/beap-messages/services/beapCrypto.ts":{"size":67763,"mtime_ns":1786206352154709876,"word_count":8082},"code/apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts":{"size":56189,"mtime_ns":1786206352154709876,"word_count":5706},"code/apps/extension-chromium/src/beap-messages/services/beapReplyAiProvider.ts":{"size":4757,"mtime_ns":1786206352154709876,"word_count":514},"code/apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts":{"size":50714,"mtime_ns":1786206352154709876,"word_count":5710},"code/apps/extension-chromium/src/beap-messages/services/eligibilityCheck.ts":{"size":9005,"mtime_ns":1786206352154709876,"word_count":1085},"code/apps/extension-chromium/src/beap-messages/services/index.ts":{"size":7226,"mtime_ns":1786206352154709876,"word_count":646},"code/apps/extension-chromium/src/beap-messages/services/outerEnvelope.ts":{"size":21623,"mtime_ns":1786206352154709876,"word_count":2601},"code/apps/extension-chromium/src/beap-messages/services/poae.ts":{"size":26065,"mtime_ns":1786206352154709876,"word_count":3091},"code/apps/extension-chromium/src/beap-messages/services/processingEventGate.ts":{"size":49954,"mtime_ns":1786206352154709876,"word_count":5695},"code/apps/extension-chromium/src/beap-messages/services/processingEvents.ts":{"size":33789,"mtime_ns":1786206352154709876,"word_count":3828},"code/apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts":{"size":21319,"mtime_ns":1786206352154709876,"word_count":2536},"code/apps/extension-chromium/src/beap-messages/services/stripAgentBoxesFromGrids.ts":{"size":2513,"mtime_ns":1786206352154709876,"word_count":285},"code/apps/extension-chromium/src/beap-messages/services/urlNormalizer.ts":{"size":12431,"mtime_ns":1786206352154709876,"word_count":1472},"code/apps/extension-chromium/src/beap-messages/services/x25519KeyAgreement.ts":{"size":9396,"mtime_ns":1786206352154709876,"word_count":1089},"code/apps/extension-chromium/src/beap-messages/sessionImportPayloadResolver.ts":{"size":10663,"mtime_ns":1786206352154709876,"word_count":1144},"code/apps/extension-chromium/src/beap-messages/types.ts":{"size":10830,"mtime_ns":1786206352154709876,"word_count":1202},"code/apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts":{"size":22207,"mtime_ns":1786206352154709876,"word_count":2357},"code/apps/extension-chromium/src/beap-messages/useBeapMessagesStore.ts":{"size":13027,"mtime_ns":1786206352154709876,"word_count":1273},"code/apps/extension-chromium/src/beap-messages/validation/beapBuildValidation.ts":{"size":12159,"mtime_ns":1786206352158709263,"word_count":1177},"code/apps/extension-chromium/src/beap-messages/validationState.ts":{"size":1573,"mtime_ns":1786206352158709263,"word_count":214},"code/apps/extension-chromium/src/bundled-tools/components/ThirdPartyLicensesView.tsx":{"size":11991,"mtime_ns":1786206352158709263,"word_count":1025},"code/apps/extension-chromium/src/bundled-tools/components/index.ts":{"size":155,"mtime_ns":1786206352158709263,"word_count":20},"code/apps/extension-chromium/src/bundled-tools/executor.ts":{"size":8168,"mtime_ns":1786206352158709263,"word_count":900},"code/apps/extension-chromium/src/bundled-tools/index.ts":{"size":1225,"mtime_ns":1786206352158709263,"word_count":128},"code/apps/extension-chromium/src/bundled-tools/licenses.ts":{"size":11525,"mtime_ns":1786206352158709263,"word_count":1468},"code/apps/extension-chromium/src/bundled-tools/registry.ts":{"size":9187,"mtime_ns":1786206352158709263,"word_count":935},"code/apps/extension-chromium/src/bundled-tools/types.ts":{"size":6072,"mtime_ns":1786206352158709263,"word_count":728},"code/apps/extension-chromium/src/components/BackendConfigLightbox.tsx":{"size":29910,"mtime_ns":1786206352158709263,"word_count":2513},"code/apps/extension-chromium/src/components/BackendSwitcher.tsx":{"size":32286,"mtime_ns":1786206352158709263,"word_count":2339},"code/apps/extension-chromium/src/components/BackendSwitcherInline.tsx":{"size":48786,"mtime_ns":1786206352158709263,"word_count":4081},"code/apps/extension-chromium/src/components/BackendSwitcherNew.tsx":{"size":14815,"mtime_ns":1786206352158709263,"word_count":1143},"code/apps/extension-chromium/src/components/DevTools.tsx":{"size":10267,"mtime_ns":1786206352166708037,"word_count":875},"code/apps/extension-chromium/src/components/HardwareWarningDialog.tsx":{"size":4508,"mtime_ns":1786206352166708037,"word_count":425},"code/apps/extension-chromium/src/components/ImageEngineSettings.tsx":{"size":20535,"mtime_ns":1786206352166708037,"word_count":1645},"code/apps/extension-chromium/src/components/LlmSettings.tsx":{"size":69375,"mtime_ns":1786206352166708037,"word_count":6327},"code/apps/extension-chromium/src/components/P2pOutboundDebugModal.tsx":{"size":8233,"mtime_ns":1786206352166708037,"word_count":580},"code/apps/extension-chromium/src/components/backend-config-lightbox-init.tsx":{"size":1903,"mtime_ns":1786206352166708037,"word_count":199},"code/apps/extension-chromium/src/constants/providers.ts":{"size":3674,"mtime_ns":1786206352166708037,"word_count":423},"code/apps/extension-chromium/src/content-script-clean.tsx":{"size":151,"mtime_ns":1786206352166708037,"word_count":27},"code/apps/extension-chromium/src/content-script-globals.d.ts":{"size":2041,"mtime_ns":1786206352166708037,"word_count":263},"code/apps/extension-chromium/src/content-script.tsx":{"size":1591152,"mtime_ns":1786206352170707424,"word_count":122546},"code/apps/extension-chromium/src/content/index.ts":{"size":8450,"mtime_ns":1786206352170707424,"word_count":862},"code/apps/extension-chromium/src/content/overlay.ts":{"size":9578,"mtime_ns":1786206352170707424,"word_count":1028},"code/apps/extension-chromium/src/content/types.d.ts":{"size":586,"mtime_ns":1786206352170707424,"word_count":80},"code/apps/extension-chromium/src/content/ui/FrameOverlay.ts":{"size":10815,"mtime_ns":1786206352170707424,"word_count":1001},"code/apps/extension-chromium/src/content/ui/frameStyles.ts":{"size":7023,"mtime_ns":1786206352170707424,"word_count":701},"code/apps/extension-chromium/src/envelope-evaluation/evaluateEnvelope.ts":{"size":16524,"mtime_ns":1786206352170707424,"word_count":1577},"code/apps/extension-chromium/src/envelope-evaluation/index.ts":{"size":300,"mtime_ns":1786206352170707424,"word_count":36},"code/apps/extension-chromium/src/envelope-evaluation/types.ts":{"size":6809,"mtime_ns":1786206352170707424,"word_count":760},"code/apps/extension-chromium/src/envelope-evaluation/useVerifyMessage.ts":{"size":7478,"mtime_ns":1786206352170707424,"word_count":661},"code/apps/extension-chromium/src/fix-buttons.mjs":{"size":4007,"mtime_ns":1786206352170707424,"word_count":361},"code/apps/extension-chromium/src/fix-context-memory.mjs":{"size":11352,"mtime_ns":1786206352170707424,"word_count":1012},"code/apps/extension-chromium/src/grid-content-script.ts":{"size":11159,"mtime_ns":1786206352170707424,"word_count":1126},"code/apps/extension-chromium/src/handshake/__tests__/buildInitiateContextOptions.test.ts":{"size":6456,"mtime_ns":1786206352170707424,"word_count":544},"code/apps/extension-chromium/src/handshake/__tests__/handshakeRpc.test.ts":{"size":12671,"mtime_ns":1786206352170707424,"word_count":989},"code/apps/extension-chromium/src/handshake/__tests__/migration.test.ts":{"size":7439,"mtime_ns":1786206352170707424,"word_count":650},"code/apps/extension-chromium/src/handshake/__tests__/pendingP2PBeapQueue.batched-refresh.test.ts":{"size":10427,"mtime_ns":1786206352174706812,"word_count":908},"code/apps/extension-chromium/src/handshake/buildInitiateContextOptions.ts":{"size":4635,"mtime_ns":1786206352174706812,"word_count":432},"code/apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx":{"size":27380,"mtime_ns":1786206352174706812,"word_count":2076},"code/apps/extension-chromium/src/handshake/components/HandshakeContextProfilePicker.tsx":{"size":14200,"mtime_ns":1786206352174706812,"word_count":1320},"code/apps/extension-chromium/src/handshake/components/HandshakeDetailsPanel.tsx":{"size":27137,"mtime_ns":1786206352174706812,"word_count":2159},"code/apps/extension-chromium/src/handshake/components/HandshakeManagementPanel.tsx":{"size":16529,"mtime_ns":1786206352174706812,"word_count":1458},"code/apps/extension-chromium/src/handshake/components/HandshakeRequestForm.tsx":{"size":38202,"mtime_ns":1786206352174706812,"word_count":3267},"code/apps/extension-chromium/src/handshake/components/HandshakeSelectItem.tsx":{"size":4285,"mtime_ns":1786206352174706812,"word_count":436},"code/apps/extension-chromium/src/handshake/components/InitiateHandshakeDialog.tsx":{"size":36211,"mtime_ns":1786206352174706812,"word_count":2963},"code/apps/extension-chromium/src/handshake/components/PackageHeaderMeta.tsx":{"size":3179,"mtime_ns":1786206352174706812,"word_count":311},"code/apps/extension-chromium/src/handshake/components/SendHandshakeDelivery.tsx":{"size":53990,"mtime_ns":1786206352174706812,"word_count":4733},"code/apps/extension-chromium/src/handshake/components/index.ts":{"size":528,"mtime_ns":1786206352174706812,"word_count":55},"code/apps/extension-chromium/src/handshake/fingerprint.ts":{"size":3996,"mtime_ns":1786206352174706812,"word_count":481},"code/apps/extension-chromium/src/handshake/handshakeRpc.ts":{"size":31965,"mtime_ns":1786206352174706812,"word_count":3234},"code/apps/extension-chromium/src/handshake/handshakeService.ts":{"size":4764,"mtime_ns":1786206352174706812,"word_count":530},"code/apps/extension-chromium/src/handshake/index.ts":{"size":919,"mtime_ns":1786206352174706812,"word_count":124},"code/apps/extension-chromium/src/handshake/microcopy.ts":{"size":4474,"mtime_ns":1786206352174706812,"word_count":410},"code/apps/extension-chromium/src/handshake/mlkemHandshakeStorage.ts":{"size":1242,"mtime_ns":1786206352174706812,"word_count":140},"code/apps/extension-chromium/src/handshake/pendingP2PBeapQueue.ts":{"size":6357,"mtime_ns":1786206352174706812,"word_count":719},"code/apps/extension-chromium/src/handshake/rpcTypes.ts":{"size":12414,"mtime_ns":1786206352174706812,"word_count":1472},"code/apps/extension-chromium/src/handshake/types.ts":{"size":7125,"mtime_ns":1786206352174706812,"word_count":756},"code/apps/extension-chromium/src/handshake/useHandshakes.ts":{"size":1651,"mtime_ns":1786206352174706812,"word_count":196},"code/apps/extension-chromium/src/handshake/usePendingP2PBeapIngestion.ts":{"size":3377,"mtime_ns":1786206352174706812,"word_count":368},"code/apps/extension-chromium/src/ingress/components/ImportEmailModal.tsx":{"size":9918,"mtime_ns":1786206352174706812,"word_count":778},"code/apps/extension-chromium/src/ingress/components/ImportFileModal.tsx":{"size":9235,"mtime_ns":1786206352174706812,"word_count":820},"code/apps/extension-chromium/src/ingress/components/ImportMessengerModal.tsx":{"size":6790,"mtime_ns":1786206352174706812,"word_count":578},"code/apps/extension-chromium/src/ingress/components/InboxImportBar.tsx":{"size":4369,"mtime_ns":1786206352174706812,"word_count":382},"code/apps/extension-chromium/src/ingress/components/index.ts":{"size":278,"mtime_ns":1786206352174706812,"word_count":34},"code/apps/extension-chromium/src/ingress/electronDepackagedSync.ts":{"size":5192,"mtime_ns":1786206352174706812,"word_count":529},"code/apps/extension-chromium/src/ingress/importPipeline.ts":{"size":29182,"mtime_ns":1786206352174706812,"word_count":2823},"code/apps/extension-chromium/src/ingress/index.ts":{"size":923,"mtime_ns":1786206352174706812,"word_count":86},"code/apps/extension-chromium/src/ingress/types.ts":{"size":6405,"mtime_ns":1786206352174706812,"word_count":715},"code/apps/extension-chromium/src/ingress/useIngressStore.ts":{"size":5546,"mtime_ns":1786206352174706812,"word_count":481},"code/apps/extension-chromium/src/lib/__tests__/declaredModelAvailability.test.ts":{"size":1481,"mtime_ns":1786206352174706812,"word_count":107},"code/apps/extension-chromium/src/lib/__tests__/globalSessionContextLlmPrefix.test.ts":{"size":2630,"mtime_ns":1786206352174706812,"word_count":242},"code/apps/extension-chromium/src/lib/__tests__/globalSessionContextLlmPrefixRunMode.test.ts":{"size":2244,"mtime_ns":1786206352174706812,"word_count":192},"code/apps/extension-chromium/src/lib/__tests__/resolveOrchestratorSessionKey.test.ts":{"size":2512,"mtime_ns":1786206352174706812,"word_count":178},"code/apps/extension-chromium/src/lib/agentBoxInferencePreSend.ts":{"size":2435,"mtime_ns":1786206352174706812,"word_count":208},"code/apps/extension-chromium/src/lib/declaredModelAvailability.ts":{"size":8162,"mtime_ns":1786206352174706812,"word_count":843},"code/apps/extension-chromium/src/lib/globalSessionContextLlmPrefix.ts":{"size":4069,"mtime_ns":1786206352174706812,"word_count":433},"code/apps/extension-chromium/src/lib/globalSessionContextStorage.ts":{"size":2542,"mtime_ns":1786206352174706812,"word_count":264},"code/apps/extension-chromium/src/lib/hostAiSelectorCopy.ts":{"size":1293,"mtime_ns":1786206352174706812,"word_count":181},"code/apps/extension-chromium/src/lib/hostInferenceRouteIds.ts":{"size":1874,"mtime_ns":1786206352174706812,"word_count":240},"code/apps/extension-chromium/src/lib/inferenceSubmitRouting.ts":{"size":8653,"mtime_ns":1786206352174706812,"word_count":1074},"code/apps/extension-chromium/src/lib/localModelIdentity.ts":{"size":2519,"mtime_ns":1786206352174706812,"word_count":337},"code/apps/extension-chromium/src/lib/resolveOrchestratorSessionKey.ts":{"size":5724,"mtime_ns":1786206352174706812,"word_count":529},"code/apps/extension-chromium/src/lib/wrChatExtensionAiContext.ts":{"size":1943,"mtime_ns":1786206352174706812,"word_count":223},"code/apps/extension-chromium/src/lib/wrChatExtensionModelPersistence.ts":{"size":3124,"mtime_ns":1786206352174706812,"word_count":337},"code/apps/extension-chromium/src/lib/wrChatExtensionPreSend.ts":{"size":3760,"mtime_ns":1786206352174706812,"word_count":321},"code/apps/extension-chromium/src/lib/wrChatHostInferenceShared.ts":{"size":10881,"mtime_ns":1786206352174706812,"word_count":1151},"code/apps/extension-chromium/src/lib/wrChatModelsFromLlmStatus.ts":{"size":2760,"mtime_ns":1786206352174706812,"word_count":310},"code/apps/extension-chromium/src/lib/wrChatSelectionHygiene.ts":{"size":6355,"mtime_ns":1786206352174706812,"word_count":726},"code/apps/extension-chromium/src/lib/wrdeskOptimizationEvents.ts":{"size":183,"mtime_ns":1786206352178706198,"word_count":14},"code/apps/extension-chromium/src/mailguard-content-script.ts":{"size":69598,"mtime_ns":1786206352178706198,"word_count":6964},"code/apps/extension-chromium/src/nlp/NlpClassifier.ts":{"size":13413,"mtime_ns":1786206352178706198,"word_count":1362},"code/apps/extension-chromium/src/nlp/__tests__/NlpClassifier.test.ts":{"size":8660,"mtime_ns":1786206352178706198,"word_count":714},"code/apps/extension-chromium/src/nlp/index.ts":{"size":414,"mtime_ns":1786206352178706198,"word_count":49},"code/apps/extension-chromium/src/nlp/types.ts":{"size":4551,"mtime_ns":1786206352178706198,"word_count":642},"code/apps/extension-chromium/src/packages/components/PackageList.tsx":{"size":2369,"mtime_ns":1786206352178706198,"word_count":227},"code/apps/extension-chromium/src/packages/components/PackageListItem.tsx":{"size":6003,"mtime_ns":1786206352178706198,"word_count":516},"code/apps/extension-chromium/src/packages/components/index.ts":{"size":135,"mtime_ns":1786206352178706198,"word_count":18},"code/apps/extension-chromium/src/packages/index.ts":{"size":1092,"mtime_ns":1786206352178706198,"word_count":117},"code/apps/extension-chromium/src/packages/registrationService.ts":{"size":11483,"mtime_ns":1786206352178706198,"word_count":1197},"code/apps/extension-chromium/src/packages/types.ts":{"size":8037,"mtime_ns":1786206352178706198,"word_count":986},"code/apps/extension-chromium/src/packages/usePackageStore.ts":{"size":18044,"mtime_ns":1786206352178706198,"word_count":1545},"code/apps/extension-chromium/src/policy/components/ConsentDialog.tsx":{"size":10706,"mtime_ns":1786206352178706198,"word_count":942},"code/apps/extension-chromium/src/policy/components/DomainEditor/ChannelsEditor.tsx":{"size":11816,"mtime_ns":1786206352178706198,"word_count":1108},"code/apps/extension-chromium/src/policy/components/DomainEditor/DerivationsEditor.tsx":{"size":14332,"mtime_ns":1786206352178706198,"word_count":1291},"code/apps/extension-chromium/src/policy/components/DomainEditor/EgressEditor.tsx":{"size":20613,"mtime_ns":1786206352178706198,"word_count":1759},"code/apps/extension-chromium/src/policy/components/DomainEditor/IngressEditor.tsx":{"size":13332,"mtime_ns":1786206352178706198,"word_count":1209},"code/apps/extension-chromium/src/policy/components/DomainEditor/PreVerificationEditor.tsx":{"size":13685,"mtime_ns":1786206352178706198,"word_count":1133},"code/apps/extension-chromium/src/policy/components/DomainEditor/index.ts":{"size":795,"mtime_ns":1786206352178706198,"word_count":105},"code/apps/extension-chromium/src/policy/components/EffectivePreview.tsx":{"size":10799,"mtime_ns":1786206352178706198,"word_count":918},"code/apps/extension-chromium/src/policy/components/LocalPolicyEditor.tsx":{"size":56991,"mtime_ns":1786206352178706198,"word_count":4730},"code/apps/extension-chromium/src/policy/components/PackageBuilderPolicy.tsx":{"size":13514,"mtime_ns":1786206352178706198,"word_count":1169},"code/apps/extension-chromium/src/policy/components/PolicyDiffView.tsx":{"size":10241,"mtime_ns":1786206352178706198,"word_count":963},"code/apps/extension-chromium/src/policy/components/PolicyLightbox.tsx":{"size":64954,"mtime_ns":1786206352178706198,"word_count":4068},"code/apps/extension-chromium/src/policy/components/RiskLabel.tsx":{"size":1596,"mtime_ns":1786206352178706198,"word_count":212},"code/apps/extension-chromium/src/policy/components/index.ts":{"size":487,"mtime_ns":1786206352178706198,"word_count":56},"code/apps/extension-chromium/src/policy/components/policy-lightbox-init.tsx":{"size":2202,"mtime_ns":1786206352178706198,"word_count":258},"code/apps/extension-chromium/src/policy/engine/__tests__/evaluator.test.ts":{"size":10469,"mtime_ns":1786206352178706198,"word_count":960},"code/apps/extension-chromium/src/policy/engine/__tests__/intersection.test.ts":{"size":7896,"mtime_ns":1786206352178706198,"word_count":693},"code/apps/extension-chromium/src/policy/engine/decisions.ts":{"size":2593,"mtime_ns":1786206352178706198,"word_count":328},"code/apps/extension-chromium/src/policy/engine/evaluator.ts":{"size":10925,"mtime_ns":1786206352178706198,"word_count":1117},"code/apps/extension-chromium/src/policy/engine/index.ts":{"size":608,"mtime_ns":1786206352178706198,"word_count":62},"code/apps/extension-chromium/src/policy/engine/intersection.ts":{"size":9643,"mtime_ns":1786206352178706198,"word_count":869},"code/apps/extension-chromium/src/policy/index.ts":{"size":468,"mtime_ns":1786206352178706198,"word_count":68},"code/apps/extension-chromium/src/policy/schema/domains/automation-risk.ts":{"size":6009,"mtime_ns":1786206352178706198,"word_count":627},"code/apps/extension-chromium/src/policy/schema/domains/channels.ts":{"size":6432,"mtime_ns":1786206352178706198,"word_count":621},"code/apps/extension-chromium/src/policy/schema/domains/derivations.ts":{"size":9508,"mtime_ns":1786206352178706198,"word_count":869},"code/apps/extension-chromium/src/policy/schema/domains/egress.ts":{"size":3533,"mtime_ns":1786206352178706198,"word_count":364},"code/apps/extension-chromium/src/policy/schema/domains/execution.ts":{"size":3608,"mtime_ns":1786206352178706198,"word_count":345},"code/apps/extension-chromium/src/policy/schema/domains/handshake-overrides.ts":{"size":7526,"mtime_ns":1786206352178706198,"word_count":668},"code/apps/extension-chromium/src/policy/schema/domains/identity.ts":{"size":3298,"mtime_ns":1786206352178706198,"word_count":314},"code/apps/extension-chromium/src/policy/schema/domains/index.ts":{"size":1156,"mtime_ns":1786206352182705586,"word_count":155},"code/apps/extension-chromium/src/policy/schema/domains/ingress.ts":{"size":3087,"mtime_ns":1786206352182705586,"word_count":327},"code/apps/extension-chromium/src/policy/schema/domains/pre-verification.ts":{"size":5864,"mtime_ns":1786206352182705586,"word_count":524},"code/apps/extension-chromium/src/policy/schema/domains/session-restrictions.ts":{"size":4716,"mtime_ns":1786206352182705586,"word_count":444},"code/apps/extension-chromium/src/policy/schema/domains/vault-access.ts":{"size":2961,"mtime_ns":1786206352182705586,"word_count":287},"code/apps/extension-chromium/src/policy/schema/index.ts":{"size":625,"mtime_ns":1786206352182705586,"word_count":70},"code/apps/extension-chromium/src/policy/schema/policy.schema.ts":{"size":11910,"mtime_ns":1786206352182705586,"word_count":1201},"code/apps/extension-chromium/src/policy/schema/types.ts":{"size":3285,"mtime_ns":1786206352182705586,"word_count":289},"code/apps/extension-chromium/src/policy/store/index.ts":{"size":85,"mtime_ns":1786206352182705586,"word_count":12},"code/apps/extension-chromium/src/policy/store/usePolicyStore.ts":{"size":4887,"mtime_ns":1786206352182705586,"word_count":465},"code/apps/extension-chromium/src/policy/templates/index.ts":{"size":2279,"mtime_ns":1786206352182705586,"word_count":252},"code/apps/extension-chromium/src/policy/templates/permissive.ts":{"size":6319,"mtime_ns":1786206352182705586,"word_count":616},"code/apps/extension-chromium/src/policy/templates/restrictive.ts":{"size":5817,"mtime_ns":1786206352182705586,"word_count":537},"code/apps/extension-chromium/src/policy/templates/standard.ts":{"size":5767,"mtime_ns":1786206352182705586,"word_count":527},"code/apps/extension-chromium/src/popup-chat.html":{"size":2822,"mtime_ns":1786206352182705586,"word_count":264},"code/apps/extension-chromium/src/popup-chat.tsx":{"size":120102,"mtime_ns":1786206352182705586,"word_count":10287},"code/apps/extension-chromium/src/reconstruction/components/RasterPreview.tsx":{"size":9272,"mtime_ns":1786206352182705586,"word_count":698},"code/apps/extension-chromium/src/reconstruction/components/ReconstructionStatus.tsx":{"size":6142,"mtime_ns":1786206352182705586,"word_count":542},"code/apps/extension-chromium/src/reconstruction/components/SafePreviewPanel.tsx":{"size":6202,"mtime_ns":1786206352182705586,"word_count":578},"code/apps/extension-chromium/src/reconstruction/components/SemanticPreview.tsx":{"size":7946,"mtime_ns":1786206352182705586,"word_count":580},"code/apps/extension-chromium/src/reconstruction/components/index.ts":{"size":283,"mtime_ns":1786206352182705586,"word_count":34},"code/apps/extension-chromium/src/reconstruction/index.ts":{"size":996,"mtime_ns":1786206352182705586,"word_count":85},"code/apps/extension-chromium/src/reconstruction/reconstructionService.ts":{"size":11631,"mtime_ns":1786206352182705586,"word_count":1223},"code/apps/extension-chromium/src/reconstruction/types.ts":{"size":6703,"mtime_ns":1786206352182705586,"word_count":752},"code/apps/extension-chromium/src/reconstruction/useReconstruction.ts":{"size":6406,"mtime_ns":1786206352182705586,"word_count":546},"code/apps/extension-chromium/src/reconstruction/useReconstructionStore.ts":{"size":6908,"mtime_ns":1786206352182705586,"word_count":575},"code/apps/extension-chromium/src/rpc/electronRpc.ts":{"size":20100,"mtime_ns":1786206352182705586,"word_count":2121},"code/apps/extension-chromium/src/services/InputCoordinator.ts":{"size":70625,"mtime_ns":1786206352182705586,"word_count":7126},"code/apps/extension-chromium/src/services/TypeSystemService.ts":{"size":25400,"mtime_ns":1786206352182705586,"word_count":2330},"code/apps/extension-chromium/src/services/__tests__/beapRunAutomationResult.test.ts":{"size":1401,"mtime_ns":1786206352182705586,"word_count":142},"code/apps/extension-chromium/src/services/__tests__/modeIntervalScheduler.test.ts":{"size":2689,"mtime_ns":1786206352182705586,"word_count":196},"code/apps/extension-chromium/src/services/__tests__/modeSessionRunInFlightExecute.test.ts":{"size":3154,"mtime_ns":1786206352182705586,"word_count":258},"code/apps/extension-chromium/src/services/__tests__/modeSessionRunResultReporting.test.ts":{"size":1040,"mtime_ns":1786206352182705586,"word_count":104},"code/apps/extension-chromium/src/services/__tests__/runModeAllocatedSessionAutomation.test.ts":{"size":7503,"mtime_ns":1786206352182705586,"word_count":595},"code/apps/extension-chromium/src/services/__tests__/sessionImportArtefactUnwrap.test.ts":{"size":1569,"mtime_ns":1786206352182705586,"word_count":122},"code/apps/extension-chromium/src/services/beapRunAutomationResult.ts":{"size":1828,"mtime_ns":1786206352182705586,"word_count":208},"code/apps/extension-chromium/src/services/customModesClient.ts":{"size":4311,"mtime_ns":1786206352182705586,"word_count":509},"code/apps/extension-chromium/src/services/customModesMigration.ts":{"size":4024,"mtime_ns":1786206352182705586,"word_count":414},"code/apps/extension-chromium/src/services/displayGridAgentSelection.ts":{"size":1718,"mtime_ns":1786206352182705586,"word_count":238},"code/apps/extension-chromium/src/services/domSnapshotBridge.ts":{"size":993,"mtime_ns":1786206352182705586,"word_count":120},"code/apps/extension-chromium/src/services/domSnapshotCapture.ts":{"size":7679,"mtime_ns":1786206352182705586,"word_count":861},"code/apps/extension-chromium/src/services/domSnapshotMessageTypes.ts":{"size":81,"mtime_ns":1786206352182705586,"word_count":7},"code/apps/extension-chromium/src/services/ensureLaunchSecretForElectronHttp.ts":{"size":1349,"mtime_ns":1786206352182705586,"word_count":176},"code/apps/extension-chromium/src/services/fetchOptimizerTrigger.ts":{"size":5746,"mtime_ns":1786206352182705586,"word_count":616},"code/apps/extension-chromium/src/services/fetchOrchestratorSession.ts":{"size":2781,"mtime_ns":1786206352182705586,"word_count":345},"code/apps/extension-chromium/src/services/fetchOrchestratorSessionsList.ts":{"size":4236,"mtime_ns":1786206352182705586,"word_count":453},"code/apps/extension-chromium/src/services/fetchTriggerProjects.ts":{"size":5369,"mtime_ns":1786206352182705586,"word_count":583},"code/apps/extension-chromium/src/services/localOllamaModels.ts":{"size":5250,"mtime_ns":1786206352182705586,"word_count":641},"code/apps/extension-chromium/src/services/modeIntervalRunner.ts":{"size":869,"mtime_ns":1786206352182705586,"word_count":100},"code/apps/extension-chromium/src/services/modeIntervalScheduler.ts":{"size":3876,"mtime_ns":1786206352182705586,"word_count":370},"code/apps/extension-chromium/src/services/modeModelWarmOnTrigger.ts":{"size":1826,"mtime_ns":1786206352182705586,"word_count":204},"code/apps/extension-chromium/src/services/modeRunExecution.ts":{"size":18051,"mtime_ns":1786206352186704973,"word_count":1692},"code/apps/extension-chromium/src/services/modeSessionRunInFlightExecute.ts":{"size":4750,"mtime_ns":1786206352186704973,"word_count":461},"code/apps/extension-chromium/src/services/modeSessionRunResultReporting.ts":{"size":675,"mtime_ns":1786206352186704973,"word_count":68},"code/apps/extension-chromium/src/services/optimizationSidebarChatSync.ts":{"size":1765,"mtime_ns":1786206352186704973,"word_count":193},"code/apps/extension-chromium/src/services/presentOrchestratorDisplayGridSession.ts":{"size":5724,"mtime_ns":1786206352186704973,"word_count":671},"code/apps/extension-chromium/src/services/processFlow.ts":{"size":54722,"mtime_ns":1786206352186704973,"word_count":5966},"code/apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts":{"size":8240,"mtime_ns":1786206352186704973,"word_count":841},"code/apps/extension-chromium/src/services/sessionActivationForOptimization.ts":{"size":7218,"mtime_ns":1786206352186704973,"word_count":814},"code/apps/extension-chromium/src/services/sessionImportArtefactUnwrap.ts":{"size":4462,"mtime_ns":1786206352186704973,"word_count":485},"code/apps/extension-chromium/src/services/sessionImportCore.ts":{"size":13050,"mtime_ns":1786206352186704973,"word_count":1391},"code/apps/extension-chromium/src/services/sessionOrigin.ts":{"size":1001,"mtime_ns":1786206352186704973,"word_count":160},"code/apps/extension-chromium/src/services/sessionSurfaceResolver.ts":{"size":2303,"mtime_ns":1786206352186704973,"word_count":267},"code/apps/extension-chromium/src/services/syncCustomModeDiffWatcher.ts":{"size":3428,"mtime_ns":1786206352186704973,"word_count":380},"code/apps/extension-chromium/src/shared/beap/ALIGNMENT_REPORT.ts":{"size":6105,"mtime_ns":1786206352186704973,"word_count":713},"code/apps/extension-chromium/src/shared/beap/constants.ts":{"size":2602,"mtime_ns":1786206352186704973,"word_count":307},"code/apps/extension-chromium/src/shared/beap/index.ts":{"size":2494,"mtime_ns":1786206352186704973,"word_count":254},"code/apps/extension-chromium/src/shared/beap/types.ts":{"size":5128,"mtime_ns":1786206352186704973,"word_count":573},"code/apps/extension-chromium/src/shared/beap/validators.ts":{"size":5866,"mtime_ns":1786206352186704973,"word_count":798},"code/apps/extension-chromium/src/shared/components/EmailConnectWizard.tsx":{"size":143281,"mtime_ns":1786206352186704973,"word_count":10921},"code/apps/extension-chromium/src/shared/email/ImapConnectionNotice.tsx":{"size":5606,"mtime_ns":1786206352186704973,"word_count":670},"code/apps/extension-chromium/src/shared/email/connectEmail.launch.test.ts":{"size":2016,"mtime_ns":1786206352186704973,"word_count":161},"code/apps/extension-chromium/src/shared/email/connectEmailFlow.tsx":{"size":4146,"mtime_ns":1786206352186704973,"word_count":416},"code/apps/extension-chromium/src/shared/email/connectEmailTypes.ts":{"size":1138,"mtime_ns":1786206352186704973,"word_count":112},"code/apps/extension-chromium/src/shared/email/pickDefaultAccountRow.ts":{"size":645,"mtime_ns":1786206352186704973,"word_count":82},"code/apps/extension-chromium/src/shared/ui/__tests__/customModeProfileFields.test.ts":{"size":6362,"mtime_ns":1786206352186704973,"word_count":556},"code/apps/extension-chromium/src/shared/ui/__tests__/customModeSystemInstructions.test.ts":{"size":4689,"mtime_ns":1786206352186704973,"word_count":404},"code/apps/extension-chromium/src/shared/ui/__tests__/isUserOwnedCustomMode.test.ts":{"size":897,"mtime_ns":1786206352186704973,"word_count":80},"code/apps/extension-chromium/src/shared/ui/__tests__/scamWatchdogBuiltIn.test.ts":{"size":2005,"mtime_ns":1786206352186704973,"word_count":153},"code/apps/extension-chromium/src/shared/ui/__tests__/uiStateDefaults.test.ts":{"size":382,"mtime_ns":1786206352186704973,"word_count":40},"code/apps/extension-chromium/src/shared/ui/__tests__/watchdogPromptsChatScanSplit.test.ts":{"size":1361,"mtime_ns":1786206352186704973,"word_count":101},"code/apps/extension-chromium/src/shared/ui/capabilities.ts":{"size":6976,"mtime_ns":1786206352186704973,"word_count":813},"code/apps/extension-chromium/src/shared/ui/customModeDisplay.ts":{"size":886,"mtime_ns":1786206352186704973,"word_count":131},"code/apps/extension-chromium/src/shared/ui/customModeIntervalPresets.ts":{"size":1758,"mtime_ns":1786206352186704973,"word_count":234},"code/apps/extension-chromium/src/shared/ui/customModePersistence.ts":{"size":6380,"mtime_ns":1786206352186704973,"word_count":778},"code/apps/extension-chromium/src/shared/ui/customModeRuntime.ts":{"size":3167,"mtime_ns":1786206352186704973,"word_count":362},"code/apps/extension-chromium/src/shared/ui/customModeTypes.ts":{"size":21285,"mtime_ns":1786206352186704973,"word_count":2465},"code/apps/extension-chromium/src/shared/ui/lightboxTheme.ts":{"size":15614,"mtime_ns":1786206352186704973,"word_count":1737},"code/apps/extension-chromium/src/shared/ui/scamWatchdogBuiltIn.ts":{"size":1805,"mtime_ns":1786206352186704973,"word_count":180},"code/apps/extension-chromium/src/shared/ui/uiState.ts":{"size":7545,"mtime_ns":1786206352186704973,"word_count":874},"code/apps/extension-chromium/src/shared/ui/watchdogPrompts.ts":{"size":3671,"mtime_ns":1786206352186704973,"word_count":411},"code/apps/extension-chromium/src/sidepanel.html":{"size":1098,"mtime_ns":1786206352186704973,"word_count":76},"code/apps/extension-chromium/src/sidepanel.tsx":{"size":550368,"mtime_ns":1786206352190704361,"word_count":44869},"code/apps/extension-chromium/src/storage/OrchestratorSQLiteAdapter.ts":{"size":7559,"mtime_ns":1786206352190704361,"word_count":797},"code/apps/extension-chromium/src/storage/getActiveAdapter.ts":{"size":7534,"mtime_ns":1786206352190704361,"word_count":717},"code/apps/extension-chromium/src/storage/migration.ts":{"size":7420,"mtime_ns":1786206352190704361,"word_count":818},"code/apps/extension-chromium/src/storage/storageWrapper.ts":{"size":13373,"mtime_ns":1786206352190704361,"word_count":1421},"code/apps/extension-chromium/src/stores/activeCustomModeRuntime.ts":{"size":1712,"mtime_ns":1786206352190704361,"word_count":197},"code/apps/extension-chromium/src/stores/chatFocusStore.ts":{"size":4373,"mtime_ns":1786206352190704361,"word_count":445},"code/apps/extension-chromium/src/stores/useCustomModesStore.ts":{"size":6030,"mtime_ns":1786206352190704361,"word_count":643},"code/apps/extension-chromium/src/stores/useUIStore.ts":{"size":3673,"mtime_ns":1786206352190704361,"word_count":385},"code/apps/extension-chromium/src/tests/SMOKE_TEST_CHECKLIST.md":{"size":3895,"mtime_ns":1786206352190704361,"word_count":631},"code/apps/extension-chromium/src/tests/agentBoxInferenceResolve.test.ts":{"size":2425,"mtime_ns":1786206352190704361,"word_count":198},"code/apps/extension-chromium/src/tests/modeRunExecution.test.ts":{"size":950,"mtime_ns":1786206352190704361,"word_count":80},"code/apps/extension-chromium/src/tests/wrChatExtensionModelPersistence.test.ts":{"size":1927,"mtime_ns":1786206352190704361,"word_count":152},"code/apps/extension-chromium/src/tests/wrChatPipeline.test.ts":{"size":9034,"mtime_ns":1786206352190704361,"word_count":888},"code/apps/extension-chromium/src/tests/wrChatSelectionHygiene.test.ts":{"size":5251,"mtime_ns":1786206352190704361,"word_count":441},"code/apps/extension-chromium/src/types/AIChatCaptureConfig.ts":{"size":12681,"mtime_ns":1786206352190704361,"word_count":1191},"code/apps/extension-chromium/src/types/AgentExportImport.ts":{"size":26926,"mtime_ns":1786206352190704361,"word_count":2414},"code/apps/extension-chromium/src/types/AgentTypeSchema.ts":{"size":50008,"mtime_ns":1786206352190704361,"word_count":5094},"code/apps/extension-chromium/src/types/AgentValidator.ts":{"size":12652,"mtime_ns":1786206352190704361,"word_count":1288},"code/apps/extension-chromium/src/types/CanonicalAgentBoxConfig.ts":{"size":12514,"mtime_ns":1786206352190704361,"word_count":1273},"code/apps/extension-chromium/src/types/CanonicalAgentConfig.ts":{"size":21507,"mtime_ns":1786206352190704361,"word_count":2141},"code/apps/extension-chromium/src/types/CanonicalDisplayGridConfig.ts":{"size":3730,"mtime_ns":1786206352190704361,"word_count":439},"code/apps/extension-chromium/src/types/imageProviders.ts":{"size":6188,"mtime_ns":1786206352190704361,"word_count":675},"code/apps/extension-chromium/src/types/index.ts":{"size":1392,"mtime_ns":1786206352190704361,"word_count":139},"code/apps/extension-chromium/src/types/optimizationTypes.ts":{"size":630,"mtime_ns":1786206352190704361,"word_count":77},"code/apps/extension-chromium/src/types/orchestration.ts":{"size":1921,"mtime_ns":1786206352190704361,"word_count":219},"code/apps/extension-chromium/src/types/triggerTypes.ts":{"size":2635,"mtime_ns":1786206352190704361,"word_count":339},"code/apps/extension-chromium/src/ui/components/AIAssistPopover.tsx":{"size":10123,"mtime_ns":1786206352190704361,"word_count":919},"code/apps/extension-chromium/src/ui/components/AddModeWizardHost.tsx":{"size":7409,"mtime_ns":1786206352190704361,"word_count":693},"code/apps/extension-chromium/src/ui/components/AdminPoliciesPlaceholder.tsx":{"size":7228,"mtime_ns":1786206352190704361,"word_count":643},"code/apps/extension-chromium/src/ui/components/ChatFocusBanner.tsx":{"size":4250,"mtime_ns":1786206352190704361,"word_count":467},"code/apps/extension-chromium/src/ui/components/CommandChatView.tsx":{"size":23353,"mtime_ns":1786206352190704361,"word_count":1987},"code/apps/extension-chromium/src/ui/components/ComposerToolbelt.tsx":{"size":4214,"mtime_ns":1786206352190704361,"word_count":394},"code/apps/extension-chromium/src/ui/components/CustomModeWizard.tsx":{"size":264,"mtime_ns":1786206352190704361,"word_count":31},"code/apps/extension-chromium/src/ui/components/DiffTriggerDialog.tsx":{"size":29256,"mtime_ns":1786206352190704361,"word_count":2178},"code/apps/extension-chromium/src/ui/components/GroupChatPlaceholder.tsx":{"size":6546,"mtime_ns":1786206352194703747,"word_count":607},"code/apps/extension-chromium/src/ui/components/ModeHeaderBadge.tsx":{"size":4370,"mtime_ns":1786206352194703747,"word_count":412},"code/apps/extension-chromium/src/ui/components/ModeRowAffordances.tsx":{"size":3090,"mtime_ns":1786206352194703747,"word_count":319},"code/apps/extension-chromium/src/ui/components/ModeSelect.tsx":{"size":8851,"mtime_ns":1786206352194703747,"word_count":785},"code/apps/extension-chromium/src/ui/components/OptimizationInfobox.tsx":{"size":4214,"mtime_ns":1786206352194703747,"word_count":376},"code/apps/extension-chromium/src/ui/components/P2PChatPlaceholder.tsx":{"size":4572,"mtime_ns":1786206352194703747,"word_count":433},"code/apps/extension-chromium/src/ui/components/P2PStreamPlaceholder.tsx":{"size":5844,"mtime_ns":1786206352194703747,"word_count":522},"code/apps/extension-chromium/src/ui/components/PopupChatView.tsx":{"size":174909,"mtime_ns":1786206352194703747,"word_count":15444},"code/apps/extension-chromium/src/ui/components/WatchdogIcon.tsx":{"size":1729,"mtime_ns":1786206352194703747,"word_count":196},"code/apps/extension-chromium/src/ui/components/WrChatCaptureButton.tsx":{"size":8389,"mtime_ns":1786206352194703747,"word_count":831},"code/apps/extension-chromium/src/ui/components/WrChatDiffButton.tsx":{"size":17333,"mtime_ns":1786206352194703747,"word_count":1695},"code/apps/extension-chromium/src/ui/components/WrChatWatchdogButton.tsx":{"size":10416,"mtime_ns":1786206352194703747,"word_count":1021},"code/apps/extension-chromium/src/ui/components/__tests__/modeRowActions.test.ts":{"size":2079,"mtime_ns":1786206352194703747,"word_count":161},"code/apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizard.tsx":{"size":13402,"mtime_ns":1786206352194703747,"word_count":1236},"code/apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizardStepBody.tsx":{"size":1962,"mtime_ns":1786206352194703747,"word_count":204},"code/apps/extension-chromium/src/ui/components/addModeWizard/addModeWizardTypes.ts":{"size":1115,"mtime_ns":1786206352194703747,"word_count":149},"code/apps/extension-chromium/src/ui/components/addModeWizard/addModeWizardValidation.ts":{"size":4483,"mtime_ns":1786206352194703747,"word_count":552},"code/apps/extension-chromium/src/ui/components/addModeWizard/customModeDraftDirty.ts":{"size":901,"mtime_ns":1786206352194703747,"word_count":113},"code/apps/extension-chromium/src/ui/components/addModeWizard/index.ts":{"size":404,"mtime_ns":1786206352194703747,"word_count":32},"code/apps/extension-chromium/src/ui/components/addModeWizard/steps/StepBasics.tsx":{"size":4566,"mtime_ns":1786206352194703747,"word_count":363},"code/apps/extension-chromium/src/ui/components/addModeWizard/steps/StepFocus.tsx":{"size":11569,"mtime_ns":1786206352194703747,"word_count":1023},"code/apps/extension-chromium/src/ui/components/addModeWizard/steps/StepModel.tsx":{"size":13357,"mtime_ns":1786206352194703747,"word_count":1166},"code/apps/extension-chromium/src/ui/components/addModeWizard/steps/StepProfileFields.tsx":{"size":17061,"mtime_ns":1786206352194703747,"word_count":1320},"code/apps/extension-chromium/src/ui/components/addModeWizard/steps/StepReview.tsx":{"size":4241,"mtime_ns":1786206352194703747,"word_count":472},"code/apps/extension-chromium/src/ui/components/addModeWizard/steps/StepRun.tsx":{"size":2257,"mtime_ns":1786206352194703747,"word_count":213},"code/apps/extension-chromium/src/ui/components/addModeWizard/steps/StepSession.tsx":{"size":4807,"mtime_ns":1786206352194703747,"word_count":521},"code/apps/extension-chromium/src/ui/components/addModeWizard/steps/WizardFieldError.tsx":{"size":468,"mtime_ns":1786206352194703747,"word_count":62},"code/apps/extension-chromium/src/ui/components/addModeWizard/wizardConstants.ts":{"size":447,"mtime_ns":1786206352194703747,"word_count":65},"code/apps/extension-chromium/src/ui/components/addModeWizard/wizardStyles.ts":{"size":1145,"mtime_ns":1786206352194703747,"word_count":125},"code/apps/extension-chromium/src/ui/components/index.ts":{"size":3020,"mtime_ns":1786206352194703747,"word_count":257},"code/apps/extension-chromium/src/ui/components/modeRowActions.ts":{"size":938,"mtime_ns":1786206352194703747,"word_count":107},"code/apps/extension-chromium/src/ui/components/optimization/AgentOptimizationResult.tsx":{"size":4029,"mtime_ns":1786206352194703747,"word_count":356},"code/apps/extension-chromium/src/ui/components/optimization/OptimizationRunHeader.tsx":{"size":1675,"mtime_ns":1786206352194703747,"word_count":180},"code/apps/extension-chromium/src/ui/components/wrChatCaptureDispatch.ts":{"size":4367,"mtime_ns":1786206352194703747,"word_count":438},"code/apps/extension-chromium/src/ui/components/wrChatSurface.ts":{"size":1068,"mtime_ns":1786206352194703747,"word_count":132},"code/apps/extension-chromium/src/ui/components/wrMultiTrigger/TriggerButtonShell.tsx":{"size":6124,"mtime_ns":1786206352194703747,"word_count":609},"code/apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx":{"size":31222,"mtime_ns":1786206352194703747,"word_count":2686},"code/apps/extension-chromium/src/ui/components/wrMultiTrigger/__tests__/dropdownSections.test.ts":{"size":3041,"mtime_ns":1786206352194703747,"word_count":250},"code/apps/extension-chromium/src/ui/components/wrMultiTrigger/automationUiKind.ts":{"size":1421,"mtime_ns":1786206352194703747,"word_count":182},"code/apps/extension-chromium/src/ui/components/wrMultiTrigger/dropdownSections.ts":{"size":4175,"mtime_ns":1786206352194703747,"word_count":366},"code/apps/extension-chromium/src/ui/components/wrMultiTrigger/index.ts":{"size":713,"mtime_ns":1786206352194703747,"word_count":43},"code/apps/extension-chromium/src/ui/docked/DockedCommandChat.tsx":{"size":5952,"mtime_ns":1786206352194703747,"word_count":585},"code/apps/extension-chromium/src/ui/docked/index.ts":{"size":103,"mtime_ns":1786206352194703747,"word_count":13},"code/apps/extension-chromium/src/utils/__tests__/chatFocusLlmPrefixScamWatchdog.test.ts":{"size":819,"mtime_ns":1786206352194703747,"word_count":75},"code/apps/extension-chromium/src/utils/__tests__/customModeLlmPrefixWrChat.test.ts":{"size":2486,"mtime_ns":1786206352194703747,"word_count":199},"code/apps/extension-chromium/src/utils/chatFocusLlmPrefix.ts":{"size":4668,"mtime_ns":1786206352194703747,"word_count":548},"code/apps/extension-chromium/src/utils/contextBlockHash.ts":{"size":650,"mtime_ns":1786206352194703747,"word_count":74},"code/apps/extension-chromium/src/utils/customModeLlmPrefix.ts":{"size":3344,"mtime_ns":1786206352194703747,"word_count":354},"code/apps/extension-chromium/src/utils/electronPickDirectory.ts":{"size":456,"mtime_ns":1786206352194703747,"word_count":63},"code/apps/extension-chromium/src/utils/errorMessages.ts":{"size":6218,"mtime_ns":1786206352194703747,"word_count":773},"code/apps/extension-chromium/src/utils/formatWatchdogAlert.ts":{"size":2352,"mtime_ns":1786206352194703747,"word_count":302},"code/apps/extension-chromium/src/utils/image-resolve.ts":{"size":5768,"mtime_ns":1786206352194703747,"word_count":720},"code/apps/extension-chromium/src/utils/mergeTaggedTriggersFromHost.ts":{"size":3891,"mtime_ns":1786206352194703747,"word_count":437},"code/apps/extension-chromium/src/utils/normaliseTriggerTag.ts":{"size":653,"mtime_ns":1786206352194703747,"word_count":83},"code/apps/extension-chromium/src/utils/parseWrExpertMarkdown.ts":{"size":1950,"mtime_ns":1786206352194703747,"word_count":218},"code/apps/extension-chromium/src/utils/pickWatchFolderPath.ts":{"size":557,"mtime_ns":1786206352194703747,"word_count":75},"code/apps/extension-chromium/src/utils/prependChatFocusToLastUser.ts":{"size":518,"mtime_ns":1786206352194703747,"word_count":82},"code/apps/extension-chromium/src/utils/sessionDisplayLabel.ts":{"size":1126,"mtime_ns":1786206352194703747,"word_count":155},"code/apps/extension-chromium/src/utils/watchdogDomExtract.ts":{"size":4823,"mtime_ns":1786206352194703747,"word_count":611},"code/apps/extension-chromium/src/vault/UnlockView.tsx":{"size":6688,"mtime_ns":1786206352194703747,"word_count":546},"code/apps/extension-chromium/src/vault/VaultUI.tsx":{"size":16975,"mtime_ns":1786206352198703134,"word_count":1345},"code/apps/extension-chromium/src/vault/__tests__/browser-safe-imports.test.ts":{"size":1369,"mtime_ns":1786206352198703134,"word_count":160},"code/apps/extension-chromium/src/vault/api.ts":{"size":16248,"mtime_ns":1786206352198703134,"word_count":1827},"code/apps/extension-chromium/src/vault/autofill/__tests__/acceptance-criteria.ts":{"size":29603,"mtime_ns":1786206352198703134,"word_count":2761},"code/apps/extension-chromium/src/vault/autofill/__tests__/audit-retention-export.test.ts":{"size":13138,"mtime_ns":1786206352198703134,"word_count":1347},"code/apps/extension-chromium/src/vault/autofill/__tests__/background-sender-gate.test.ts":{"size":75245,"mtime_ns":1786206352198703134,"word_count":7698},"code/apps/extension-chromium/src/vault/autofill/__tests__/datavault-classifier.test.ts":{"size":26563,"mtime_ns":1786206352198703134,"word_count":2540},"code/apps/extension-chromium/src/vault/autofill/__tests__/datavault-improvements.test.ts":{"size":17759,"mtime_ns":1786206352198703134,"word_count":1621},"code/apps/extension-chromium/src/vault/autofill/__tests__/e2e-autofill.spec.ts":{"size":21659,"mtime_ns":1786206352198703134,"word_count":2245},"code/apps/extension-chromium/src/vault/autofill/__tests__/e2e-security-regression.spec.ts":{"size":25587,"mtime_ns":1786206352198703134,"word_count":2602},"code/apps/extension-chromium/src/vault/autofill/__tests__/e2e-webmcp-no-write.spec.ts":{"size":19496,"mtime_ns":1786206352198703134,"word_count":2007},"code/apps/extension-chromium/src/vault/autofill/__tests__/e2e-webmcp-preview.spec.ts":{"size":8192,"mtime_ns":1786206352198703134,"word_count":880},"code/apps/extension-chromium/src/vault/autofill/__tests__/fixtures/checkout-address.html":{"size":1890,"mtime_ns":1786206352198703134,"word_count":162},"code/apps/extension-chromium/src/vault/autofill/__tests__/fixtures/classic-login.html":{"size":1008,"mtime_ns":1786206352198703134,"word_count":102},"code/apps/extension-chromium/src/vault/autofill/__tests__/fixtures/email-login.html":{"size":888,"mtime_ns":1786206352198703134,"word_count":88},"code/apps/extension-chromium/src/vault/autofill/__tests__/fixtures/evil-clickjack-layout.html":{"size":5247,"mtime_ns":1786206352198703134,"word_count":502},"code/apps/extension-chromium/src/vault/autofill/__tests__/fixtures/evil-dom-bloat.html":{"size":3320,"mtime_ns":1786206352198703134,"word_count":330},"code/apps/extension-chromium/src/vault/autofill/__tests__/fixtures/evil-iframe-lure.html":{"size":3498,"mtime_ns":1786206352198703134,"word_count":326},"code/apps/extension-chromium/src/vault/autofill/__tests__/fixtures/iframe-login.html":{"size":2431,"mtime_ns":1786206352198703134,"word_count":223},"code/apps/extension-chromium/src/vault/autofill/__tests__/fixtures/iframe-sandboxed.html":{"size":1257,"mtime_ns":1786206352198703134,"word_count":125},"code/apps/extension-chromium/src/vault/autofill/__tests__/fixtures/iframe-xorigin.html":{"size":1141,"mtime_ns":1786206352198703134,"word_count":139},"code/apps/extension-chromium/src/vault/autofill/__tests__/fixtures/signup.html":{"size":1173,"mtime_ns":1786206352198703134,"word_count":103},"code/apps/extension-chromium/src/vault/autofill/__tests__/fixtures/spa-login.html":{"size":1976,"mtime_ns":1786206352198703134,"word_count":198},"code/apps/extension-chromium/src/vault/autofill/__tests__/fixtures/vat-company.html":{"size":1366,"mtime_ns":1786206352198703134,"word_count":117},"code/apps/extension-chromium/src/vault/autofill/__tests__/fixtures/webmcp-login.html":{"size":1007,"mtime_ns":1786206352198703134,"word_count":101},"code/apps/extension-chromium/src/vault/autofill/__tests__/form-intent.test.ts":{"size":12826,"mtime_ns":1786206352198703134,"word_count":1204},"code/apps/extension-chromium/src/vault/autofill/__tests__/hardening.test.ts":{"size":17803,"mtime_ns":1786206352198703134,"word_count":1560},"code/apps/extension-chromium/src/vault/autofill/__tests__/log-redaction-proof.test.ts":{"size":13691,"mtime_ns":1786206352198703134,"word_count":1209},"code/apps/extension-chromium/src/vault/autofill/__tests__/meta-sanitization.test.ts":{"size":17444,"mtime_ns":1786206352198703134,"word_count":1806},"code/apps/extension-chromium/src/vault/autofill/__tests__/overlay-lifecycle.test.ts":{"size":11814,"mtime_ns":1786206352198703134,"word_count":1170},"code/apps/extension-chromium/src/vault/autofill/__tests__/qso-engine.test.ts":{"size":28428,"mtime_ns":1786206352198703134,"word_count":2602},"code/apps/extension-chromium/src/vault/autofill/__tests__/qso-isolation.test.ts":{"size":12104,"mtime_ns":1786206352198703134,"word_count":1209},"code/apps/extension-chromium/src/vault/autofill/__tests__/qso-remap.test.ts":{"size":30545,"mtime_ns":1786206352198703134,"word_count":2929},"code/apps/extension-chromium/src/vault/autofill/__tests__/qso-state-matrix.test.ts":{"size":5478,"mtime_ns":1786206352198703134,"word_count":519},"code/apps/extension-chromium/src/vault/autofill/__tests__/scan-dos-caps.test.ts":{"size":24586,"mtime_ns":1786206352198703134,"word_count":2477},"code/apps/extension-chromium/src/vault/autofill/__tests__/security-regression.test.ts":{"size":26877,"mtime_ns":1786206352198703134,"word_count":2490},"code/apps/extension-chromium/src/vault/autofill/__tests__/submit-guard.test.ts":{"size":12430,"mtime_ns":1786206352198703134,"word_count":1162},"code/apps/extension-chromium/src/vault/autofill/__tests__/unit-test-index.ts":{"size":20382,"mtime_ns":1786206352198703134,"word_count":2264},"code/apps/extension-chromium/src/vault/autofill/__tests__/webmcp-isolation.test.ts":{"size":12885,"mtime_ns":1786206352198703134,"word_count":1359},"code/apps/extension-chromium/src/vault/autofill/__tests__/writes-kill-switch.test.ts":{"size":13353,"mtime_ns":1786206352198703134,"word_count":1168},"code/apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts":{"size":32128,"mtime_ns":1786206352198703134,"word_count":3613},"code/apps/extension-chromium/src/vault/autofill/committer.test.ts":{"size":25643,"mtime_ns":1786206352198703134,"word_count":2429},"code/apps/extension-chromium/src/vault/autofill/committer.ts":{"size":36475,"mtime_ns":1786206352198703134,"word_count":4152},"code/apps/extension-chromium/src/vault/autofill/credentialStore.ts":{"size":17929,"mtime_ns":1786206352198703134,"word_count":2052},"code/apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts":{"size":11159,"mtime_ns":1786206352198703134,"word_count":1151},"code/apps/extension-chromium/src/vault/autofill/dataVaultFillEngine.ts":{"size":15030,"mtime_ns":1786206352198703134,"word_count":1731},"code/apps/extension-chromium/src/vault/autofill/dataVaultIcons.ts":{"size":10514,"mtime_ns":1786206352198703134,"word_count":1179},"code/apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts":{"size":24187,"mtime_ns":1786206352198703134,"word_count":2721},"code/apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts":{"size":31827,"mtime_ns":1786206352198703134,"word_count":3175},"code/apps/extension-chromium/src/vault/autofill/domFingerprint.ts":{"size":6904,"mtime_ns":1786206352202702522,"word_count":719},"code/apps/extension-chromium/src/vault/autofill/dvNlpBooster.ts":{"size":10124,"mtime_ns":1786206352202702522,"word_count":1127},"code/apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts":{"size":13191,"mtime_ns":1786206352202702522,"word_count":1511},"code/apps/extension-chromium/src/vault/autofill/fieldIcons.ts":{"size":14088,"mtime_ns":1786206352202702522,"word_count":1559},"code/apps/extension-chromium/src/vault/autofill/fieldScanner.test.ts":{"size":30939,"mtime_ns":1786206352118715391,"word_count":2993},"code/apps/extension-chromium/src/vault/autofill/fieldScanner.ts":{"size":45745,"mtime_ns":1786206352118715391,"word_count":5099},"code/apps/extension-chromium/src/vault/autofill/fillPreview.ts":{"size":12709,"mtime_ns":1786206352118715391,"word_count":1259},"code/apps/extension-chromium/src/vault/autofill/haGuard.ts":{"size":7129,"mtime_ns":1786206352118715391,"word_count":869},"code/apps/extension-chromium/src/vault/autofill/hardening.ts":{"size":50629,"mtime_ns":1786206352118715391,"word_count":5885},"code/apps/extension-chromium/src/vault/autofill/index.ts":{"size":11141,"mtime_ns":1786206352118715391,"word_count":1050},"code/apps/extension-chromium/src/vault/autofill/inlinePopover.ts":{"size":51471,"mtime_ns":1786206352118715391,"word_count":5151},"code/apps/extension-chromium/src/vault/autofill/microcopy.ts":{"size":7681,"mtime_ns":1786206352122714779,"word_count":927},"code/apps/extension-chromium/src/vault/autofill/moduleManifest.ts":{"size":22454,"mtime_ns":1786206352122714779,"word_count":2075},"code/apps/extension-chromium/src/vault/autofill/mutationGuard.ts":{"size":13317,"mtime_ns":1786206352122714779,"word_count":1543},"code/apps/extension-chromium/src/vault/autofill/overlayManager.ts":{"size":37558,"mtime_ns":1786206352122714779,"word_count":3991},"code/apps/extension-chromium/src/vault/autofill/overlayStyles.ts":{"size":14534,"mtime_ns":1786206352122714779,"word_count":1254},"code/apps/extension-chromium/src/vault/autofill/qso/mappingStore.ts":{"size":9092,"mtime_ns":1786206352122714779,"word_count":1044},"code/apps/extension-chromium/src/vault/autofill/qso/mappingWizard.ts":{"size":16959,"mtime_ns":1786206352122714779,"word_count":1685},"code/apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts":{"size":22200,"mtime_ns":1786206352122714779,"word_count":2444},"code/apps/extension-chromium/src/vault/autofill/qso/qsoIcon.ts":{"size":7482,"mtime_ns":1786206352122714779,"word_count":816},"code/apps/extension-chromium/src/vault/autofill/qso/qsoPicker.ts":{"size":8111,"mtime_ns":1786206352122714779,"word_count":764},"code/apps/extension-chromium/src/vault/autofill/qso/remapIcon.ts":{"size":8779,"mtime_ns":1786206352122714779,"word_count":945},"code/apps/extension-chromium/src/vault/autofill/qso/remapManager.ts":{"size":16994,"mtime_ns":1786206352122714779,"word_count":1789},"code/apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts":{"size":15835,"mtime_ns":1786206352122714779,"word_count":1936},"code/apps/extension-chromium/src/vault/autofill/qsoState.ts":{"size":2898,"mtime_ns":1786206352122714779,"word_count":354},"code/apps/extension-chromium/src/vault/autofill/quickSelect.ts":{"size":30350,"mtime_ns":1786206352122714779,"word_count":3007},"code/apps/extension-chromium/src/vault/autofill/saveBar.ts":{"size":24708,"mtime_ns":1786206352122714779,"word_count":2205},"code/apps/extension-chromium/src/vault/autofill/securityPosture.ts":{"size":15276,"mtime_ns":1786206352122714779,"word_count":1731},"code/apps/extension-chromium/src/vault/autofill/submitGuard.ts":{"size":12310,"mtime_ns":1786206352122714779,"word_count":1406},"code/apps/extension-chromium/src/vault/autofill/submitWatcher.ts":{"size":26512,"mtime_ns":1786206352122714779,"word_count":2815},"code/apps/extension-chromium/src/vault/autofill/tierConfig.ts":{"size":12612,"mtime_ns":1786206352122714779,"word_count":1322},"code/apps/extension-chromium/src/vault/autofill/toggleSync.ts":{"size":12013,"mtime_ns":1786206352122714779,"word_count":1311},"code/apps/extension-chromium/src/vault/autofill/vaultIndex.ts":{"size":15679,"mtime_ns":1786206352122714779,"word_count":2084},"code/apps/extension-chromium/src/vault/autofill/webMcpAdapter.test.ts":{"size":63037,"mtime_ns":1786206352122714779,"word_count":5355},"code/apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts":{"size":24957,"mtime_ns":1786206352122714779,"word_count":2799},"code/apps/extension-chromium/src/vault/autofill/webMcpConstants.ts":{"size":235,"mtime_ns":1786206352122714779,"word_count":33},"code/apps/extension-chromium/src/vault/autofill/writeBoundary.ts":{"size":1261,"mtime_ns":1786206352122714779,"word_count":146},"code/apps/extension-chromium/src/vault/autofill/writesKillSwitch.ts":{"size":4821,"mtime_ns":1786206352122714779,"word_count":498},"code/apps/extension-chromium/src/vault/capabilities.ts":{"size":214,"mtime_ns":1786206352122714779,"word_count":20},"code/apps/extension-chromium/src/vault/hsContext/HsContextDocumentReader.tsx":{"size":19355,"mtime_ns":1786206352122714779,"word_count":1598},"code/apps/extension-chromium/src/vault/hsContext/HsContextDocumentUpload.tsx":{"size":32491,"mtime_ns":1786206352122714779,"word_count":2871},"code/apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx":{"size":62088,"mtime_ns":1786206352122714779,"word_count":5413},"code/apps/extension-chromium/src/vault/hsContext/HsContextProfileList.tsx":{"size":11081,"mtime_ns":1786206352122714779,"word_count":979},"code/apps/extension-chromium/src/vault/hsContext/__tests__/hsContextDraftLogic.test.ts":{"size":1847,"mtime_ns":1786206352126714166,"word_count":204},"code/apps/extension-chromium/src/vault/hsContext/hsContextDraftLogic.ts":{"size":800,"mtime_ns":1786206352126714166,"word_count":112},"code/apps/extension-chromium/src/vault/hsContextProfilesRpc.ts":{"size":14533,"mtime_ns":1786206352126714166,"word_count":1617},"code/apps/extension-chromium/src/vault/types.ts":{"size":11553,"mtime_ns":1786206352126714166,"word_count":1501},"code/apps/extension-chromium/src/vault/vault-ui-typescript.ts":{"size":240019,"mtime_ns":1786206352130713553,"word_count":16701},"code/apps/extension-chromium/src/vite-env.d.ts":{"size":113,"mtime_ns":1786206352130713553,"word_count":11},"code/apps/extension-chromium/src/wrguard/components/EmailProvidersSection.remoteSyncBadge.test.tsx":{"size":2105,"mtime_ns":1786206352130713553,"word_count":199},"code/apps/extension-chromium/src/wrguard/components/EmailProvidersSection.tsx":{"size":25350,"mtime_ns":1786206352130713553,"word_count":2016},"code/apps/extension-chromium/src/wrguard/components/IngestionTopologyExplainer.tsx":{"size":12705,"mtime_ns":1786206352130713553,"word_count":1254},"code/apps/extension-chromium/src/wrguard/components/PoliciesOverviewSection.tsx":{"size":9791,"mtime_ns":1786206352130713553,"word_count":811},"code/apps/extension-chromium/src/wrguard/components/ProtectedSitesList.tsx":{"size":11080,"mtime_ns":1786206352130713553,"word_count":886},"code/apps/extension-chromium/src/wrguard/components/ProtectedSitesSection.tsx":{"size":13980,"mtime_ns":1786206352130713553,"word_count":1120},"code/apps/extension-chromium/src/wrguard/components/RuntimeConfigLightbox.tsx":{"size":5143,"mtime_ns":1786206352130713553,"word_count":431},"code/apps/extension-chromium/src/wrguard/components/RuntimeControlsSection.tsx":{"size":9348,"mtime_ns":1786206352130713553,"word_count":810},"code/apps/extension-chromium/src/wrguard/components/WRGuardWorkspace.tsx":{"size":8488,"mtime_ns":1786206352130713553,"word_count":674},"code/apps/extension-chromium/src/wrguard/components/index.ts":{"size":514,"mtime_ns":1786206352130713553,"word_count":54},"code/apps/extension-chromium/src/wrguard/index.ts":{"size":775,"mtime_ns":1786206352130713553,"word_count":93},"code/apps/extension-chromium/src/wrguard/overlayProtection.ts":{"size":13193,"mtime_ns":1786206352130713553,"word_count":1113},"code/apps/extension-chromium/src/wrguard/types.ts":{"size":11033,"mtime_ns":1786206352130713553,"word_count":1252},"code/apps/extension-chromium/src/wrguard/useWRGuardStore.ts":{"size":14748,"mtime_ns":1786206352130713553,"word_count":1199},"code/apps/extension-chromium/temp_historical.txt":{"size":704616,"mtime_ns":1786206352134712940,"word_count":92656},"code/apps/extension-chromium/test-overlay.html":{"size":9996,"mtime_ns":1786206352134712940,"word_count":815},"code/apps/extension-chromium/tsconfig.json":{"size":524,"mtime_ns":1786206352134712940,"word_count":38},"code/apps/extension-chromium/vite.config.ts":{"size":1363,"mtime_ns":1786206352134712940,"word_count":123},"code/apps/extension-chromium/vitest.config.ts":{"size":173,"mtime_ns":1786206352134712940,"word_count":19},"code/autoresponder-architecture-analysis-4.md":{"size":9825,"mtime_ns":1786206352134712940,"word_count":1059},"code/debug-session-data.js":{"size":1985,"mtime_ns":1786206352134712940,"word_count":188},"code/dev-server-log.txt":{"size":1238,"mtime_ns":1786206352134712940,"word_count":126},"code/docs/ANALYSIS_DASHBOARD_GLOBAL_UI_RULES.md":{"size":22123,"mtime_ns":1786206352134712940,"word_count":2342},"code/docs/BUILD_INSTRUCTIONS.md":{"size":4390,"mtime_ns":1786206352134712940,"word_count":604},"code/docs/BUTLER_RESPONSE_GUIDELINES.md":{"size":4936,"mtime_ns":1786206352134712940,"word_count":744},"code/docs/CPU_CAPABILITY_CHECK_IMPLEMENTATION.md":{"size":6839,"mtime_ns":1786206352134712940,"word_count":833},"code/docs/CPU_CHECK_SUMMARY.md":{"size":2859,"mtime_ns":1786206352134712940,"word_count":356},"code/docs/ELECTRON_PROTOCOL_FIX.md":{"size":5389,"mtime_ns":1786206352134712940,"word_count":691},"code/docs/ENTERPRISE_ANALYSIS_DASHBOARD_CONCEPT.md":{"size":11996,"mtime_ns":1786206352134712940,"word_count":1233},"code/docs/FLOW_DIAGRAM.txt":{"size":17730,"mtime_ns":1786206352134712940,"word_count":895},"code/docs/HANDSHAKE_SECURITY.md":{"size":15475,"mtime_ns":1786206352134712940,"word_count":1809},"code/docs/HARDWARE_CAPABILITY_IMPLEMENTATION.md":{"size":9243,"mtime_ns":1786206352134712940,"word_count":1205},"code/docs/IMPLEMENTATION_COMPLETE.md":{"size":8584,"mtime_ns":1786206352134712940,"word_count":1037},"code/docs/INTEGRATION_sidepanel.tsx.txt":{"size":2625,"mtime_ns":1786206352134712940,"word_count":272},"code/docs/OLLAMA_DIAGNOSTIC_IMPLEMENTATION.md":{"size":12592,"mtime_ns":1786206352134712940,"word_count":1616},"code/docs/PATCH_hardware_capability.txt":{"size":3420,"mtime_ns":1786206352138712327,"word_count":328},"code/docs/PATCH_main.ts.txt":{"size":2646,"mtime_ns":1786206352138712327,"word_count":260},"code/docs/POST_EXECUTION_VERIFICATION_UI_MOCK.md":{"size":48610,"mtime_ns":1786206352138712327,"word_count":2870},"code/docs/PRE_EXECUTION_ANALYSIS_UI_MOCK.md":{"size":28537,"mtime_ns":1786206352138712327,"word_count":2549},"code/docs/RELAY_INTEGRATION_ANALYSIS.md":{"size":12464,"mtime_ns":1786206352138712327,"word_count":1622},"code/docs/SSO_AUTHENTICATION_GUIDE.md":{"size":7961,"mtime_ns":1786206352138712327,"word_count":1035},"code/docs/analysis-acceptor-key-storage.md":{"size":13646,"mtime_ns":1786206352138712327,"word_count":1416},"code/docs/analysis-aesgcm-chunk-failure.md":{"size":15028,"mtime_ns":1786206352138712327,"word_count":1816},"code/docs/analysis-chat-ai-integration.md":{"size":15491,"mtime_ns":1786206352138712327,"word_count":1904},"code/docs/analysis-composer-popup-architecture.md":{"size":17189,"mtime_ns":1786206352138712327,"word_count":1924},"code/docs/analysis-composer-shared-code.md":{"size":12305,"mtime_ns":1786206352138712327,"word_count":1440},"code/docs/analysis-dashboard-layout.md":{"size":15443,"mtime_ns":1786206352138712327,"word_count":1780},"code/docs/analysis-handshake-deletion.md":{"size":9106,"mtime_ns":1786206352138712327,"word_count":1094},"code/docs/analysis-handshake-key-exchange.md":{"size":0,"mtime_ns":1786206352138712327,"word_count":0},"code/docs/analysis-inline-composer-issues.md":{"size":10716,"mtime_ns":1786206352138712327,"word_count":1299},"code/docs/analysis-key-sync-diagnostic.md":{"size":10200,"mtime_ns":1786206352138712327,"word_count":1218},"code/docs/analysis-linux-decrypt-failure.md":{"size":12605,"mtime_ns":1786206352138712327,"word_count":1603},"code/docs/analysis-outbox-architecture.md":{"size":7950,"mtime_ns":1786206352138712327,"word_count":1043},"code/docs/analysis-ui-contrast-audit.md":{"size":9330,"mtime_ns":1786206352138712327,"word_count":1300},"code/docs/analysis-x25519-key-identity.md":{"size":9937,"mtime_ns":1786206352138712327,"word_count":1188},"code/docs/analysis/bulk-autosort-regression/00-executive-summary.md":{"size":5816,"mtime_ns":1786206352138712327,"word_count":881},"code/docs/analysis/bulk-autosort-regression/01-current-autosort-flow.md":{"size":11625,"mtime_ns":1786206352138712327,"word_count":1301},"code/docs/analysis/bulk-autosort-regression/02-first-call-and-cold-start-analysis.md":{"size":10386,"mtime_ns":1786206352138712327,"word_count":1381},"code/docs/analysis/bulk-autosort-regression/03-performance-bottlenecks-ranking.md":{"size":12812,"mtime_ns":1786206352138712327,"word_count":1870},"code/docs/analysis/bulk-autosort-regression/04-renderer-store-and-refresh-analysis.md":{"size":12768,"mtime_ns":1786206352138712327,"word_count":1662},"code/docs/analysis/bulk-autosort-regression/05-main-process-llm-and-db-analysis.md":{"size":18236,"mtime_ns":1786206352138712327,"word_count":2290},"code/docs/analysis/bulk-autosort-regression/06-regression-hypotheses-and-rollback-candidates.md":{"size":11240,"mtime_ns":1786206352138712327,"word_count":1586},"code/docs/analysis/bulk-autosort-regression/07-recommended-stabilization-sequence.md":{"size":10205,"mtime_ns":1786206352138712327,"word_count":1375},"code/docs/analysis/bulk-autosort-regression/08-open-questions-and-needed-instrumentation.md":{"size":9382,"mtime_ns":1786206352138712327,"word_count":1291},"code/docs/analysis/bulk-autosort-regression/bulk-autosort-regression-analysis.md":{"size":36079,"mtime_ns":1786206352138712327,"word_count":4333},"code/docs/analysis/bulk-autosort-regression/ollama-gpu-runtime-analysis.md":{"size":7071,"mtime_ns":1786206352138712327,"word_count":929},"code/docs/analysis/composer-audit/00-index.md":{"size":6167,"mtime_ns":1786206352138712327,"word_count":561},"code/docs/analysis/composer-audit/01-entrypoints-and-routing.md":{"size":3225,"mtime_ns":1786206352138712327,"word_count":377},"code/docs/analysis/composer-audit/02-layout-shell-and-screen-composition.md":{"size":3327,"mtime_ns":1786206352138712327,"word_count":434},"code/docs/analysis/composer-audit/03-new-beap-composer-overview.md":{"size":2893,"mtime_ns":1786206352138712327,"word_count":306},"code/docs/analysis/composer-audit/04-new-email-composer-overview.md":{"size":2127,"mtime_ns":1786206352138712327,"word_count":253},"code/docs/analysis/composer-audit/05-old-builder-reference.md":{"size":3041,"mtime_ns":1786206352138712327,"word_count":365},"code/docs/analysis/composer-audit/06-parity-old-vs-new.md":{"size":2017,"mtime_ns":1786206352138712327,"word_count":278},"code/docs/analysis/composer-audit/07-handshake-selector.md":{"size":1979,"mtime_ns":1786206352138712327,"word_count":213},"code/docs/analysis/composer-audit/08-public-pbeap-field.md":{"size":1805,"mtime_ns":1786206352138712327,"word_count":221},"code/docs/analysis/composer-audit/09-private-qbeap-field.md":{"size":1585,"mtime_ns":1786206352142711715,"word_count":206},"code/docs/analysis/composer-audit/10-subject-session-attachments.md":{"size":2071,"mtime_ns":1786206352142711715,"word_count":245},"code/docs/analysis/composer-audit/11-left-column-list-coupling.md":{"size":1922,"mtime_ns":1786206352142711715,"word_count":245},"code/docs/analysis/composer-audit/12-right-rail-hints-and-ai-context.md":{"size":2536,"mtime_ns":1786206352142711715,"word_count":321},"code/docs/analysis/composer-audit/13-document-upload-and-ingestion.md":{"size":1972,"mtime_ns":1786206352142711715,"word_count":248},"code/docs/analysis/composer-audit/14-pdf-parser-and-text-extraction.md":{"size":2375,"mtime_ns":1786206352142711715,"word_count":302},"code/docs/analysis/composer-audit/15-ai-draft-generation-flow.md":{"size":2374,"mtime_ns":1786206352142711715,"word_count":279},"code/docs/analysis/composer-audit/16-send-flow-validation-and-errors.md":{"size":1666,"mtime_ns":1786206352142711715,"word_count":204},"code/docs/analysis/composer-audit/17-design-system-styling-and-spacing.md":{"size":1744,"mtime_ns":1786206352142711715,"word_count":216},"code/docs/analysis/composer-audit/18-state-management-and-data-flow.md":{"size":2113,"mtime_ns":1786206352142711715,"word_count":256},"code/docs/analysis/composer-audit/19-api-contracts-and-server-dependencies.md":{"size":1823,"mtime_ns":1786206352142711715,"word_count":239},"code/docs/analysis/composer-audit/20-regression-map.md":{"size":2757,"mtime_ns":1786206352142711715,"word_count":419},"code/docs/analysis/composer-audit/21-open-questions-and-risk-register.md":{"size":1673,"mtime_ns":1786206352142711715,"word_count":250},"code/docs/analysis/composer-audit/22-recommended-target-architecture.md":{"size":2028,"mtime_ns":1786206352142711715,"word_count":281},"code/docs/analysis/composer-audit/23-implementation-precheck.md":{"size":2044,"mtime_ns":1786206352142711715,"word_count":239},"code/docs/analysis/composer-audit/24-phase1-2-implementation-report.md":{"size":4900,"mtime_ns":1786206352142711715,"word_count":630},"code/docs/analysis/composer-audit/25-phase3-implementation-report.md":{"size":4731,"mtime_ns":1786206352142711715,"word_count":639},"code/docs/analysis/composer-audit/26-clarity-and-legacy-restoration-report.md":{"size":5985,"mtime_ns":1786206352142711715,"word_count":755},"code/docs/analysis/composer-audit/27-legacy-parser-reader-parity-audit/00-index.md":{"size":3623,"mtime_ns":1786206352142711715,"word_count":292},"code/docs/analysis/composer-audit/27-legacy-parser-reader-parity-audit/01-current-inline-attachment-flow.md":{"size":3659,"mtime_ns":1786206352142711715,"word_count":380},"code/docs/analysis/composer-audit/27-legacy-parser-reader-parity-audit/02-legacy-capsule-builder-attachment-flow.md":{"size":2755,"mtime_ns":1786206352142711715,"word_count":297},"code/docs/analysis/composer-audit/27-legacy-parser-reader-parity-audit/03-parsed-state-model.md":{"size":2309,"mtime_ns":1786206352142711715,"word_count":265},"code/docs/analysis/composer-audit/27-legacy-parser-reader-parity-audit/04-parsed-badge-rendering.md":{"size":1729,"mtime_ns":1786206352142711715,"word_count":201},"code/docs/analysis/composer-audit/27-legacy-parser-reader-parity-audit/05-text-reader-and-raw-text-view.md":{"size":1992,"mtime_ns":1786206352142711715,"word_count":220},"code/docs/analysis/composer-audit/27-legacy-parser-reader-parity-audit/06-page-thumbnail-navigation.md":{"size":2172,"mtime_ns":1786206352142711715,"word_count":278},"code/docs/analysis/composer-audit/27-legacy-parser-reader-parity-audit/07-parser-service-and-result-contracts.md":{"size":2995,"mtime_ns":1786206352142711715,"word_count":318},"code/docs/analysis/composer-audit/27-legacy-parser-reader-parity-audit/08-current-vs-legacy-parity-map.md":{"size":2573,"mtime_ns":1786206352142711715,"word_count":366},"code/docs/analysis/composer-audit/27-legacy-parser-reader-parity-audit/09-contrast-and-readability-audit.md":{"size":4017,"mtime_ns":1786206352142711715,"word_count":525},"code/docs/analysis/composer-audit/27-legacy-parser-reader-parity-audit/10-selected-field-indicator-hook-points.md":{"size":2566,"mtime_ns":1786206352142711715,"word_count":284},"code/docs/analysis/composer-audit/27-legacy-parser-reader-parity-audit/11-root-cause-summary.md":{"size":4978,"mtime_ns":1786206352142711715,"word_count":581},"code/docs/analysis/composer-audit/27-legacy-parser-reader-parity-audit/12-restoration-recommendation.md":{"size":3816,"mtime_ns":1786206352142711715,"word_count":464},"code/docs/analysis/composer-audit/27-legacy-parser-reader-parity-audit/COMPLETE-AUDIT.md":{"size":15689,"mtime_ns":1786206352142711715,"word_count":1673},"code/docs/analysis/composer-audit/27-legacy-parser-reader-parity-audit/blocks/01-beap-document-reader-modal.md":{"size":1730,"mtime_ns":1786206352142711715,"word_count":198},"code/docs/analysis/composer-audit/27-legacy-parser-reader-parity-audit/blocks/02-draft-attachment-auto-parse.md":{"size":2086,"mtime_ns":1786206352142711715,"word_count":205},"code/docs/analysis/composer-audit/27-legacy-parser-reader-parity-audit/blocks/03-attachment-status-badge.md":{"size":1461,"mtime_ns":1786206352142711715,"word_count":174},"code/docs/analysis/composer-audit/27-legacy-parser-reader-parity-audit/blocks/04-page-thumbnail-rail.md":{"size":1645,"mtime_ns":1786206352142711715,"word_count":194},"code/docs/analysis/composer-audit/27-legacy-parser-reader-parity-audit/blocks/05-parser-service-process-attachment.md":{"size":1794,"mtime_ns":1786206352142711715,"word_count":202},"code/docs/analysis/composer-audit/27-legacy-parser-reader-parity-audit/blocks/06-beap-inline-preview-helper.md":{"size":1605,"mtime_ns":1786206352142711715,"word_count":175},"code/docs/analysis/composer-audit/27-legacy-parser-reader-parity-audit/blocks/07-use-draft-refine-store.md":{"size":1473,"mtime_ns":1786206352142711715,"word_count":173},"code/docs/analysis/composer-audit/28-distribution-fingerprint-and-reader-parity/00-index.md":{"size":3646,"mtime_ns":1786206352142711715,"word_count":290},"code/docs/analysis/composer-audit/28-distribution-fingerprint-and-reader-parity/01-legacy-private-public-selector.md":{"size":2636,"mtime_ns":1786206352142711715,"word_count":296},"code/docs/analysis/composer-audit/28-distribution-fingerprint-and-reader-parity/02-current-private-public-selector.md":{"size":1784,"mtime_ns":1786206352142711715,"word_count":212},"code/docs/analysis/composer-audit/28-distribution-fingerprint-and-reader-parity/03-legacy-fingerprint-presentation.md":{"size":1970,"mtime_ns":1786206352142711715,"word_count":218},"code/docs/analysis/composer-audit/28-distribution-fingerprint-and-reader-parity/04-current-fingerprint-presentation.md":{"size":1781,"mtime_ns":1786206352142711715,"word_count":225},"code/docs/analysis/composer-audit/28-distribution-fingerprint-and-reader-parity/05-selector-and-fingerprint-parity-map.md":{"size":1451,"mtime_ns":1786206352142711715,"word_count":203},"code/docs/analysis/composer-audit/28-distribution-fingerprint-and-reader-parity/06-current-inline-attachment-parse-display-flow.md":{"size":1769,"mtime_ns":1786206352142711715,"word_count":186},"code/docs/analysis/composer-audit/28-distribution-fingerprint-and-reader-parity/07-legacy-attachment-parse-display-flow.md":{"size":1316,"mtime_ns":1786206352142711715,"word_count":134},"code/docs/analysis/composer-audit/28-distribution-fingerprint-and-reader-parity/08-parsed-badge-and-status-model.md":{"size":1045,"mtime_ns":1786206352142711715,"word_count":118},"code/docs/analysis/composer-audit/28-distribution-fingerprint-and-reader-parity/09-text-reader-and-page-navigation.md":{"size":1618,"mtime_ns":1786206352142711715,"word_count":193},"code/docs/analysis/composer-audit/28-distribution-fingerprint-and-reader-parity/10-active-field-indicator-hook-points.md":{"size":1749,"mtime_ns":1786206352142711715,"word_count":195},"code/docs/analysis/composer-audit/28-distribution-fingerprint-and-reader-parity/11-contrast-and-readability-root-causes.md":{"size":2775,"mtime_ns":1786206352142711715,"word_count":348},"code/docs/analysis/composer-audit/28-distribution-fingerprint-and-reader-parity/12-root-cause-summary.md":{"size":4140,"mtime_ns":1786206352142711715,"word_count":485},"code/docs/analysis/composer-audit/28-distribution-fingerprint-and-reader-parity/13-restoration-plan.md":{"size":3713,"mtime_ns":1786206352142711715,"word_count":481},"code/docs/analysis/composer-audit/28-distribution-fingerprint-and-reader-parity/COMPLETE-AUDIT.md":{"size":21775,"mtime_ns":1786206352142711715,"word_count":2423},"code/docs/analysis/composer-audit/28-distribution-fingerprint-and-reader-parity/blocks/01-recipient-mode-switch.md":{"size":1907,"mtime_ns":1786206352142711715,"word_count":227},"code/docs/analysis/composer-audit/28-distribution-fingerprint-and-reader-parity/blocks/02-popup-fingerprint-card.md":{"size":1668,"mtime_ns":1786206352142711715,"word_count":211},"code/docs/analysis/composer-audit/28-distribution-fingerprint-and-reader-parity/blocks/03-attachment-status-badge.md":{"size":1403,"mtime_ns":1786206352142711715,"word_count":164},"code/docs/analysis/composer-audit/28-distribution-fingerprint-and-reader-parity/blocks/04-beap-document-reader-modal.md":{"size":1672,"mtime_ns":1786206352142711715,"word_count":208},"code/docs/analysis/composer-audit/28-distribution-fingerprint-and-reader-parity/blocks/05-draft-refine-label.md":{"size":1506,"mtime_ns":1786206352142711715,"word_count":190},"code/docs/analysis/composer-audit/28-distribution-fingerprint-and-reader-parity/blocks/06-beap-inline-distribution-buttons.md":{"size":1464,"mtime_ns":1786206352142711715,"word_count":149},"code/docs/analysis/composer-audit/29-strict-legacy-parity-implementation-report.md":{"size":7165,"mtime_ns":1786206352142711715,"word_count":902},"code/docs/analysis/composer-audit/30-light-theme-parity-correction-report.md":{"size":5566,"mtime_ns":1786206352142711715,"word_count":717},"code/docs/analysis/composer-audit/31-parser-auth-and-reader-restoration-report.md":{"size":7428,"mtime_ns":1786206352142711715,"word_count":947},"code/docs/analysis/composer-audit/99-executive-summary.md":{"size":18644,"mtime_ns":1786206352142711715,"word_count":2140},"code/docs/analysis/composer-audit/FULL-AUDIT.md":{"size":67460,"mtime_ns":1786206352142711715,"word_count":8157},"code/docs/analysis/composer-audit/blocks/01-email-inbox-view-grid-shell.md":{"size":1056,"mtime_ns":1786206352142711715,"word_count":132},"code/docs/analysis/composer-audit/blocks/02-beap-inline-composer-root.md":{"size":1022,"mtime_ns":1786206352142711715,"word_count":132},"code/docs/analysis/composer-audit/blocks/03-email-inline-composer-root.md":{"size":942,"mtime_ns":1786206352142711715,"word_count":122},"code/docs/analysis/composer-audit/blocks/04-hybrid-search-chat-bar.md":{"size":1307,"mtime_ns":1786206352142711715,"word_count":153},"code/docs/analysis/composer-audit/blocks/05-use-draft-refine-store.md":{"size":1021,"mtime_ns":1786206352142711715,"word_count":127},"code/docs/analysis/composer-audit/blocks/06-extension-popup-chat-legacy-builder.md":{"size":1305,"mtime_ns":1786206352142711715,"word_count":162},"code/docs/analysis/composer-audit/blocks/07-handshake-select-native.md":{"size":874,"mtime_ns":1786206352146711101,"word_count":102},"code/docs/analysis/composer-audit/blocks/08-pbeap-textarea.md":{"size":792,"mtime_ns":1786206352146711101,"word_count":99},"code/docs/analysis/composer-audit/blocks/09-qbeap-textarea.md":{"size":865,"mtime_ns":1786206352146711101,"word_count":109},"code/docs/analysis/composer-audit/blocks/10-composer-hints-aside.md":{"size":922,"mtime_ns":1786206352146711101,"word_count":123},"code/docs/analysis/orchestrator-ui-stabilization-report.md":{"size":3781,"mtime_ns":1786206352146711101,"word_count":507},"code/docs/analysis/phase1-local-execution-baseline-report.md":{"size":11240,"mtime_ns":1786206352146711101,"word_count":1581},"code/docs/analysis/phase2-grid-box-equivalence-report.md":{"size":10884,"mtime_ns":1786206352146711101,"word_count":1543},"code/docs/analysis/phase3-ocr-aware-routing-report.md":{"size":9087,"mtime_ns":1786206352146711101,"word_count":1286},"code/docs/analysis/phase4-cloud-execution-report.md":{"size":10061,"mtime_ns":1786206352146711101,"word_count":1384},"code/docs/analysis/pre-implementation-orchestrator-scan/00-architecture-ground-truth.md":{"size":40487,"mtime_ns":1786206352146711101,"word_count":5301},"code/docs/analysis/pre-implementation-orchestrator-scan/01-orchestrator-agents-input-coordinator.md":{"size":7322,"mtime_ns":1786206352146711101,"word_count":814},"code/docs/analysis/pre-implementation-orchestrator-scan/01-repo-map-and-scan-plan.md":{"size":10799,"mtime_ns":1786206352146711101,"word_count":1263},"code/docs/analysis/pre-implementation-orchestrator-scan/01-system-map.md":{"size":15925,"mtime_ns":1786206352146711101,"word_count":2002},"code/docs/analysis/pre-implementation-orchestrator-scan/02-ai-agent-form.md":{"size":17321,"mtime_ns":1786206352146711101,"word_count":2163},"code/docs/analysis/pre-implementation-orchestrator-scan/02-responsibility-matrix.md":{"size":15372,"mtime_ns":1786206352146711101,"word_count":1973},"code/docs/analysis/pre-implementation-orchestrator-scan/02-wr-chat-pipeline-and-sidepanel.md":{"size":6902,"mtime_ns":1786206352146711101,"word_count":769},"code/docs/analysis/pre-implementation-orchestrator-scan/03-agentboxes-and-display-grids.md":{"size":13560,"mtime_ns":1786206352146711101,"word_count":1639},"code/docs/analysis/pre-implementation-orchestrator-scan/03-electron-llm-and-orchestrator-http.md":{"size":4766,"mtime_ns":1786206352146711101,"word_count":544},"code/docs/analysis/pre-implementation-orchestrator-scan/03-source-of-truth-matrix.md":{"size":15312,"mtime_ns":1786206352146711101,"word_count":2099},"code/docs/analysis/pre-implementation-orchestrator-scan/04-canonical-vs-duplicate-surfaces.md":{"size":12609,"mtime_ns":1786206352146711101,"word_count":1795},"code/docs/analysis/pre-implementation-orchestrator-scan/04-internal-wiring-end-to-end.md":{"size":15125,"mtime_ns":1786206352146711101,"word_count":1720},"code/docs/analysis/pre-implementation-orchestrator-scan/05-09-agent-contract-unified.md":{"size":38056,"mtime_ns":1786206352146711101,"word_count":5053},"code/docs/analysis/pre-implementation-orchestrator-scan/05-ai-agent-form-contract.md":{"size":13506,"mtime_ns":1786206352146711101,"word_count":1840},"code/docs/analysis/pre-implementation-orchestrator-scan/05-api-key-management-and-model-provider-wiring.md":{"size":14057,"mtime_ns":1786206352146711101,"word_count":1697},"code/docs/analysis/pre-implementation-orchestrator-scan/06-listener-reasoning-execution-runtime-usage.md":{"size":14817,"mtime_ns":1786206352146711101,"word_count":1903},"code/docs/analysis/pre-implementation-orchestrator-scan/06-wrchat-pipeline-precheck.md":{"size":13571,"mtime_ns":1786206352146711101,"word_count":1671},"code/docs/analysis/pre-implementation-orchestrator-scan/07-agent-box-contract-and-brain-binding.md":{"size":12086,"mtime_ns":1786206352146711101,"word_count":1754},"code/docs/analysis/pre-implementation-orchestrator-scan/07-open-questions-and-follow-up-plan.md":{"size":14036,"mtime_ns":1786206352146711101,"word_count":1816},"code/docs/analysis/pre-implementation-orchestrator-scan/08-session-json-schema-and-configuration-flow.md":{"size":12779,"mtime_ns":1786206352146711101,"word_count":1684},"code/docs/analysis/pre-implementation-orchestrator-scan/09-wr-experts-extension-point-analysis.md":{"size":12163,"mtime_ns":1786206352146711101,"word_count":1722},"code/docs/analysis/pre-implementation-orchestrator-scan/10-14-runtime-pipeline-unified.md":{"size":25411,"mtime_ns":1786206352146711101,"word_count":3411},"code/docs/analysis/pre-implementation-orchestrator-scan/10-wrchat-send-pipeline-current-state.md":{"size":9060,"mtime_ns":1786206352146711101,"word_count":1102},"code/docs/analysis/pre-implementation-orchestrator-scan/11-ocr-nlp-routing-and-input-coordinator.md":{"size":11482,"mtime_ns":1786206352146711101,"word_count":1492},"code/docs/analysis/pre-implementation-orchestrator-scan/12-agent-selection-reasoning-and-brain-resolution.md":{"size":9898,"mtime_ns":1786206352146711101,"word_count":1172},"code/docs/analysis/pre-implementation-orchestrator-scan/13-output-routing-to-agent-boxes-and-grids.md":{"size":10162,"mtime_ns":1786206352150710489,"word_count":1369},"code/docs/analysis/pre-implementation-orchestrator-scan/14-current-vs-intended-runtime-sequence.md":{"size":14283,"mtime_ns":1786206352150710489,"word_count":1834},"code/docs/analysis/pre-implementation-orchestrator-scan/15-19-final-synthesis.md":{"size":33258,"mtime_ns":1786206352150710489,"word_count":4568},"code/docs/analysis/pre-implementation-orchestrator-scan/15-gap-analysis-vs-product-intent.md":{"size":11894,"mtime_ns":1786206352150710489,"word_count":1586},"code/docs/analysis/pre-implementation-orchestrator-scan/16-risk-map-and-failure-modes.md":{"size":13039,"mtime_ns":1786206352150710489,"word_count":1722},"code/docs/analysis/pre-implementation-orchestrator-scan/17-normalization-requirements-before-full-wiring.md":{"size":11930,"mtime_ns":1786206352150710489,"word_count":1682},"code/docs/analysis/pre-implementation-orchestrator-scan/18-flexible-implementation-blueprint.md":{"size":14122,"mtime_ns":1786206352150710489,"word_count":1914},"code/docs/analysis/pre-implementation-orchestrator-scan/19-screenshot-validation-plan-for-opus-round.md":{"size":13143,"mtime_ns":1786206352150710489,"word_count":1828},"code/docs/analysis/pre-implementation-orchestrator-scan/opus-round/00-opus-round-unified.md":{"size":18227,"mtime_ns":1786206352150710489,"word_count":2720},"code/docs/analysis/pre-implementation-orchestrator-scan/opus-round/01-first-e2e-goal-definition.md":{"size":8153,"mtime_ns":1786206352150710489,"word_count":1296},"code/docs/analysis/pre-implementation-orchestrator-scan/opus-round/02-gap-map-against-first-e2e-goal.md":{"size":17587,"mtime_ns":1786206352150710489,"word_count":2456},"code/docs/analysis/pre-implementation-orchestrator-scan/opus-round/03-priority-order-high-to-low.md":{"size":17484,"mtime_ns":1786206352150710489,"word_count":2601},"code/docs/analysis/pre-implementation-orchestrator-scan/opus-round/04-minimum-viable-orchestrator-slice.md":{"size":8575,"mtime_ns":1786206352150710489,"word_count":1343},"code/docs/analysis/pre-implementation-orchestrator-scan/opus-round/05-can-defer-vs-cannot-defer.md":{"size":11394,"mtime_ns":1786206352150710489,"word_count":1737},"code/docs/analysis/pre-implementation-orchestrator-scan/opus-round/06-08-runtime-contracts-unified.md":{"size":17963,"mtime_ns":1786206352150710489,"word_count":2308},"code/docs/analysis/pre-implementation-orchestrator-scan/opus-round/06-runtime-chain-current-vs-required.md":{"size":20772,"mtime_ns":1786206352150710489,"word_count":2984},"code/docs/analysis/pre-implementation-orchestrator-scan/opus-round/07-normalization-blockers.md":{"size":21500,"mtime_ns":1786206352150710489,"word_count":2976},"code/docs/analysis/pre-implementation-orchestrator-scan/opus-round/08-provider-box-routing-contract.md":{"size":17873,"mtime_ns":1786206352150710489,"word_count":2476},"code/docs/analysis/pre-implementation-orchestrator-scan/opus-round/09-12-implementation-map-unified.md":{"size":18257,"mtime_ns":1786206352150710489,"word_count":2884},"code/docs/analysis/pre-implementation-orchestrator-scan/opus-round/09-first-implementation-phases.md":{"size":14985,"mtime_ns":1786206352150710489,"word_count":2225},"code/docs/analysis/pre-implementation-orchestrator-scan/opus-round/10-hotfixes-vs-refactors.md":{"size":14679,"mtime_ns":1786206352150710489,"word_count":1986},"code/docs/analysis/pre-implementation-orchestrator-scan/opus-round/11-runtime-backed-vs-persisted-only-controls.md":{"size":11926,"mtime_ns":1786206352150710489,"word_count":1781},"code/docs/analysis/pre-implementation-orchestrator-scan/opus-round/12-first-e2e-test-matrix.md":{"size":19553,"mtime_ns":1786206352150710489,"word_count":2938},"code/docs/analysis/pre-implementation-orchestrator-scan/opus-round/13-16-final-handoff-unified.md":{"size":48770,"mtime_ns":1786206352150710489,"word_count":7093},"code/docs/analysis/pre-implementation-orchestrator-scan/opus-round/13-final-blocker-summary.md":{"size":9175,"mtime_ns":1786206352150710489,"word_count":1335},"code/docs/analysis/pre-implementation-orchestrator-scan/opus-round/14-recommended-implementation-order.md":{"size":13665,"mtime_ns":1786206352150710489,"word_count":2028},"code/docs/analysis/pre-implementation-orchestrator-scan/opus-round/15-dangerous-false-assumptions.md":{"size":13914,"mtime_ns":1786206352150710489,"word_count":1989},"code/docs/analysis/pre-implementation-orchestrator-scan/opus-round/16-opus-implementation-brief.md":{"size":11709,"mtime_ns":1786206352150710489,"word_count":1670},"code/docs/analysis/session-persistence-regression-analysis.md":{"size":33469,"mtime_ns":1786206352150710489,"word_count":4311},"code/docs/automation-dashboard-architecture-analysis.md":{"size":25897,"mtime_ns":1786206352150710489,"word_count":3007},"code/docs/autosort-session-history-analysis.md":{"size":21032,"mtime_ns":1786206352154709876,"word_count":2616},"code/docs/beap-attachment-handling-codebase-analysis-report.md":{"size":21484,"mtime_ns":1786206352154709876,"word_count":2322},"code/docs/current-issues-analysis.md":{"size":37780,"mtime_ns":1786206352154709876,"word_count":3992},"code/docs/display-grid-integration-default-badge.md":{"size":5046,"mtime_ns":1786206352154709876,"word_count":637},"code/docs/display-grid-session-icon-analysis.md":{"size":16462,"mtime_ns":1786206352154709876,"word_count":2022},"code/docs/electron-qbeap-decryption-design.md":{"size":6714,"mtime_ns":1786206352154709876,"word_count":798},"code/docs/email-issues-analysis.md":{"size":32818,"mtime_ns":1786206352154709876,"word_count":3501},"code/docs/email-setup-ux.md":{"size":28350,"mtime_ns":1786206352154709876,"word_count":3961},"code/docs/email-sync-state-audit.md":{"size":8104,"mtime_ns":1786206352154709876,"word_count":971},"code/docs/fragile-contracts-guardrails.md":{"size":1389,"mtime_ns":1786206352154709876,"word_count":126},"code/docs/global-context-stage1-key-normalization.md":{"size":11121,"mtime_ns":1786206352154709876,"word_count":1345},"code/docs/global-context-stage2-injection-wiring.md":{"size":10946,"mtime_ns":1786206352154709876,"word_count":1404},"code/docs/host-ai-local-model-identity-backlog.md":{"size":1419,"mtime_ns":1786206352154709876,"word_count":167},"code/docs/imap-debug-report.md":{"size":18268,"mtime_ns":1786206352154709876,"word_count":2111},"code/docs/imap-final-analysis.md":{"size":15649,"mtime_ns":1786206352154709876,"word_count":1563},"code/docs/imap-final-final-analysis.md":{"size":16395,"mtime_ns":1786206352154709876,"word_count":1804},"code/docs/imap-manual-pull-call-chain.md":{"size":9293,"mtime_ns":1786206352154709876,"word_count":1164},"code/docs/imap-password-storage-analysis.md":{"size":9355,"mtime_ns":1786206352154709876,"word_count":1086},"code/docs/imap-password-trace.md":{"size":34005,"mtime_ns":1786206352154709876,"word_count":3286},"code/docs/imap-pipeline-analysis.md":{"size":42729,"mtime_ns":1786206352154709876,"word_count":4349},"code/docs/imap-sync-depackaging-analysis.md":{"size":22805,"mtime_ns":1786206352154709876,"word_count":2533},"code/docs/imap-sync-fix-summary.md":{"size":5463,"mtime_ns":1786206352154709876,"word_count":742},"code/docs/imap-test-vs-fetch.md":{"size":6301,"mtime_ns":1786206352154709876,"word_count":737},"code/docs/inbox-sync-api-verification.md":{"size":6295,"mtime_ns":1786206352154709876,"word_count":621},"code/docs/inbox-ui-refresh-analysis.md":{"size":6592,"mtime_ns":1786206352154709876,"word_count":753},"code/docs/installer-role-environment-spec.md":{"size":16646,"mtime_ns":1786206352154709876,"word_count":2042},"code/docs/listener-current-architecture.md":{"size":6691,"mtime_ns":1786206352154709876,"word_count":825},"code/docs/listener-new-architecture.md":{"size":17116,"mtime_ns":1786206352154709876,"word_count":1787},"code/docs/native-beap-post-flight-report.md":{"size":25081,"mtime_ns":1786206352154709876,"word_count":2892},"code/docs/nlp-pipeline.md":{"size":6815,"mtime_ns":1786206352154709876,"word_count":802},"code/docs/oauth-background-refresh-analysis.md":{"size":5457,"mtime_ns":1786206352154709876,"word_count":587},"code/docs/ollama-integration-guide.md":{"size":7846,"mtime_ns":1786206352154709876,"word_count":954},"code/docs/ollama-troubleshoot.md":{"size":8321,"mtime_ns":1786206352154709876,"word_count":1210},"code/docs/operational/gpu-detection-and-gate.md":{"size":2962,"mtime_ns":1786206352154709876,"word_count":381},"code/docs/orders/WR-Code-Email-E2E_Refactor-Order_v1.0.md":{"size":21577,"mtime_ns":1786206352154709876,"word_count":2890},"code/docs/phase-b/B-8-4-TEST-FAILURE-AUDIT.md":{"size":21029,"mtime_ns":1786206352154709876,"word_count":2650},"code/docs/phase-b/B-8-4a-CATEGORY2-INVESTIGATION.md":{"size":13830,"mtime_ns":1786206352154709876,"word_count":1679},"code/docs/phase-b/B-8-4d-DEFINITIVE-TRIAGE.md":{"size":16173,"mtime_ns":1786206352154709876,"word_count":2037},"code/docs/phase-b/B-8-4d-mini-triage-newly-unmasked.md":{"size":25213,"mtime_ns":1786206352158709263,"word_count":3441},"code/docs/phase-b/PHASE_B_CLOSURE.md":{"size":9833,"mtime_ns":1786206352158709263,"word_count":1396},"code/docs/phase-b/PHASE_B_COMPLETENESS_AUDIT.md":{"size":8679,"mtime_ns":1786206352158709263,"word_count":1146},"code/docs/phase-b/PHASE_B_DEFERRED_ITEMS.md":{"size":6081,"mtime_ns":1786206352158709263,"word_count":830},"code/docs/phase-b/PR-B-1.md":{"size":6285,"mtime_ns":1786206352158709263,"word_count":830},"code/docs/phase-b/PR-B-11.md":{"size":10557,"mtime_ns":1786206352158709263,"word_count":1346},"code/docs/phase-b/PR-B-2-breakage-inventory.md":{"size":7807,"mtime_ns":1786206352158709263,"word_count":1041},"code/docs/phase-b/PR-B-2.md":{"size":7709,"mtime_ns":1786206352158709263,"word_count":1089},"code/docs/phase-b/PR-B-3-1.md":{"size":11017,"mtime_ns":1786206352158709263,"word_count":1410},"code/docs/phase-b/PR-B-3.md":{"size":10760,"mtime_ns":1786206352158709263,"word_count":1235},"code/docs/phase-b/PR-B-4.md":{"size":10809,"mtime_ns":1786206352158709263,"word_count":1229},"code/docs/phase-b/PR-B-5-1.md":{"size":8086,"mtime_ns":1786206352158709263,"word_count":1032},"code/docs/phase-b/PR-B-5.md":{"size":9842,"mtime_ns":1786206352158709263,"word_count":1190},"code/docs/phase-b/PR-B-7-1.md":{"size":15878,"mtime_ns":1786206352158709263,"word_count":2020},"code/docs/phase-b/PR-B-7-2.md":{"size":11796,"mtime_ns":1786206352158709263,"word_count":1406},"code/docs/phase-b/PR-B-7-3.md":{"size":9171,"mtime_ns":1786206352158709263,"word_count":1190},"code/docs/phase-b/PR-B-7.md":{"size":10841,"mtime_ns":1786206352158709263,"word_count":1373},"code/docs/phase-b/PR-B-8-1.md":{"size":9307,"mtime_ns":1786206352158709263,"word_count":1364},"code/docs/phase-b/PR-B-8-2.md":{"size":12473,"mtime_ns":1786206352158709263,"word_count":1749},"code/docs/phase-b/PR-B-8-3.md":{"size":10350,"mtime_ns":1786206352158709263,"word_count":1357},"code/docs/phase-b/PR-B-8-4b.md":{"size":8610,"mtime_ns":1786206352158709263,"word_count":1039},"code/docs/phase-b/PR-B-8-4c.md":{"size":9207,"mtime_ns":1786206352158709263,"word_count":1157},"code/docs/phase-b/PR-B-8-4d-i.md":{"size":12138,"mtime_ns":1786206352158709263,"word_count":1353},"code/docs/phase-b/PR-B-8-4d-iii-5a.md":{"size":7611,"mtime_ns":1786206352158709263,"word_count":991},"code/docs/phase-b/PR-B-8-4d-iii-5b.md":{"size":9775,"mtime_ns":1786206352158709263,"word_count":1270},"code/docs/phase-b/PR-B-8.md":{"size":13260,"mtime_ns":1786206352158709263,"word_count":1641},"code/docs/phase-b/PR-B-9.md":{"size":12064,"mtime_ns":1786206352158709263,"word_count":1584},"code/docs/phase-b/PR-cpu-fix-3.md":{"size":3250,"mtime_ns":1786206352158709263,"word_count":444},"code/docs/phase-b/PR-cpu-fix-3b.md":{"size":4856,"mtime_ns":1786206352158709263,"word_count":641},"code/docs/phase-b/PR-cpu-runaway-fix-g2.md":{"size":6392,"mtime_ns":1786206352158709263,"word_count":926},"code/docs/phase-b/sealed-storage-test-harness.md":{"size":4693,"mtime_ns":1786206352158709263,"word_count":624},"code/docs/post-flight-report-2026-03-29.md":{"size":15622,"mtime_ns":1786206352158709263,"word_count":1952},"code/docs/post-flight-verification.md":{"size":15077,"mtime_ns":1786206352158709263,"word_count":1723},"code/docs/provider-account-toggle-and-imap-sync-analysis.md":{"size":36857,"mtime_ns":1786206352158709263,"word_count":4289},"code/docs/root-cause-analysis-imap-sync-and-gmail-refresh.md":{"size":21465,"mtime_ns":1786206352158709263,"word_count":2604},"code/docs/shared-sync-regression-analysis.md":{"size":8225,"mtime_ns":1786206352158709263,"word_count":913},"code/docs/sync-pipeline-shared-analysis.md":{"size":11766,"mtime_ns":1786206352158709263,"word_count":1397},"code/docs/sync-ui-refresh-timeout-analysis.md":{"size":10842,"mtime_ns":1786206352158709263,"word_count":1297},"code/docs/ui-refactor-analysis.md":{"size":36112,"mtime_ns":1786206352158709263,"word_count":3776},"code/docs/wrchat-dashboard-refactor-plan.md":{"size":6509,"mtime_ns":1786206352158709263,"word_count":751},"code/eslint.config.mjs":{"size":7981,"mtime_ns":1786206352190704361,"word_count":734},"code/fix-tabs-and-text.mjs":{"size":10042,"mtime_ns":1786206352190704361,"word_count":782},"code/install-pgadmin.ps1":{"size":16168,"mtime_ns":1786206352190704361,"word_count":1596},"code/message-display-analysis-3.md":{"size":10971,"mtime_ns":1786206352190704361,"word_count":1258},"code/native-beap-draft-refinement-1b-chat-bar-connection.md":{"size":14395,"mtime_ns":1786206352190704361,"word_count":1628},"code/native-beap-draft-refinement-1c-message-vs-draft-context.md":{"size":9983,"mtime_ns":1786206352190704361,"word_count":1230},"code/native-beap-draft-refinement-1d-usedraftrefine-store.md":{"size":8125,"mtime_ns":1786206352190704361,"word_count":944},"code/native-beap-draft-refinement-architecture-analysis.md":{"size":13209,"mtime_ns":1786206352190704361,"word_count":1344},"code/native-beap-draft-refinement-section-2-ai-capsule-draft-button.md":{"size":8187,"mtime_ns":1786206352190704361,"word_count":892},"code/native-beap-draft-refinement-section-3-design-spec.md":{"size":14319,"mtime_ns":1786206352190704361,"word_count":1731},"code/native-beap-draft-refinement-section-4-report-template.md":{"size":10607,"mtime_ns":1786206352190704361,"word_count":1102},"code/p2p-beap-delivery-failure-report.md":{"size":25902,"mtime_ns":1786206352190704361,"word_count":3408},"code/package.json":{"size":4898,"mtime_ns":1786206352194703747,"word_count":189},"code/packages/beap-pod/README.md":{"size":1233,"mtime_ns":1786206352194703747,"word_count":146},"code/packages/beap-pod/__tests__/beapStructuralValidator.test.ts":{"size":4339,"mtime_ns":1786206352194703747,"word_count":360},"code/packages/beap-pod/package.json":{"size":490,"mtime_ns":1786206352194703747,"word_count":50},"code/packages/beap-pod/pod.yaml":{"size":1235,"mtime_ns":1786206352194703747,"word_count":133},"code/packages/beap-pod/src/beapStructuralValidator.ts":{"size":9412,"mtime_ns":1786206352194703747,"word_count":1067},"code/packages/beap-pod/src/index.ts":{"size":640,"mtime_ns":1786206352194703747,"word_count":72},"code/packages/beap-pod/src/podServer.ts":{"size":4498,"mtime_ns":1786206352194703747,"word_count":525},"code/packages/beap-pod/tsconfig.json":{"size":279,"mtime_ns":1786206352194703747,"word_count":24},"code/packages/beap-pod/vitest.config.ts":{"size":141,"mtime_ns":1786206352194703747,"word_count":17},"code/packages/coordination-service/LINUX_COMPATIBILITY.md":{"size":2837,"mtime_ns":1786206352194703747,"word_count":389},"code/packages/coordination-service/REFACTOR_CHANGES.md":{"size":4307,"mtime_ns":1786206352194703747,"word_count":529},"code/packages/coordination-service/__tests__/coordination.test.ts":{"size":89315,"mtime_ns":1786206352194703747,"word_count":8016},"code/packages/coordination-service/__tests__/p2pSignalSchema.test.ts":{"size":9070,"mtime_ns":1786206352194703747,"word_count":790},"code/packages/coordination-service/__tests__/p2pSignalSchemaElectronAlignment.test.ts":{"size":516,"mtime_ns":1786206352194703747,"word_count":47},"code/packages/coordination-service/__tests__/pairing-code.test.ts":{"size":11879,"mtime_ns":1786206352194703747,"word_count":1082},"code/packages/coordination-service/__tests__/sandboxEgressGuard.test.ts":{"size":11679,"mtime_ns":1786206352194703747,"word_count":1087},"code/packages/coordination-service/__tests__/startup.test.ts":{"size":1130,"mtime_ns":1786206352194703747,"word_count":143},"code/packages/coordination-service/__tests__/tierResolution.test.ts":{"size":6425,"mtime_ns":1786206352194703747,"word_count":694},"code/packages/coordination-service/package.json":{"size":714,"mtime_ns":1786206352194703747,"word_count":65},"code/packages/coordination-service/src/auth.ts":{"size":5130,"mtime_ns":1786206352194703747,"word_count":570},"code/packages/coordination-service/src/cleanup.ts":{"size":1033,"mtime_ns":1786206352194703747,"word_count":112},"code/packages/coordination-service/src/config.ts":{"size":2042,"mtime_ns":1786206352194703747,"word_count":191},"code/packages/coordination-service/src/entitlements.ts":{"size":1216,"mtime_ns":1786206352194703747,"word_count":174},"code/packages/coordination-service/src/handshakeRegistry.ts":{"size":8069,"mtime_ns":1786206352194703747,"word_count":753},"code/packages/coordination-service/src/health.ts":{"size":2483,"mtime_ns":1786206352194703747,"word_count":255},"code/packages/coordination-service/src/index.ts":{"size":1618,"mtime_ns":1786206352194703747,"word_count":160},"code/packages/coordination-service/src/p2pSignal.ts":{"size":8022,"mtime_ns":1786206352194703747,"word_count":1050},"code/packages/coordination-service/src/pairingCodeRegistry.ts":{"size":4913,"mtime_ns":1786206352194703747,"word_count":576},"code/packages/coordination-service/src/rateLimiter.ts":{"size":3123,"mtime_ns":1786206352194703747,"word_count":332},"code/packages/coordination-service/src/server.ts":{"size":53429,"mtime_ns":1786206352194703747,"word_count":4758},"code/packages/coordination-service/src/store.ts":{"size":14952,"mtime_ns":1786206352194703747,"word_count":1593},"code/packages/coordination-service/src/tierResolution.ts":{"size":3404,"mtime_ns":1786206352194703747,"word_count":472},"code/packages/coordination-service/src/wsManager.ts":{"size":13139,"mtime_ns":1786206352194703747,"word_count":1321},"code/packages/coordination-service/tsconfig.json":{"size":317,"mtime_ns":1786206352194703747,"word_count":27},"code/packages/coordination-service/vitest.config.ts":{"size":807,"mtime_ns":1786206352194703747,"word_count":83},"code/packages/hello/package.json":{"size":97,"mtime_ns":1786206352194703747,"word_count":12},"code/packages/hello/src/index.test.ts":{"size":133,"mtime_ns":1786206352194703747,"word_count":21},"code/packages/hello/tsconfig.json":{"size":62,"mtime_ns":1786206352194703747,"word_count":6},"code/packages/ingestion-core/README.md":{"size":883,"mtime_ns":1786206352194703747,"word_count":113},"code/packages/ingestion-core/__tests__/ingestion-core.test.ts":{"size":38245,"mtime_ns":1786206352194703747,"word_count":3226},"code/packages/ingestion-core/__tests__/sandboxEgressClassification.test.ts":{"size":5776,"mtime_ns":1786206352194703747,"word_count":454},"code/packages/ingestion-core/__tests__/sealedServiceRpcCapsuleValidation.test.ts":{"size":2000,"mtime_ns":1786206352194703747,"word_count":159},"code/packages/ingestion-core/package.json":{"size":548,"mtime_ns":1786206352194703747,"word_count":51},"code/packages/ingestion-core/src/beapDetection.ts":{"size":10225,"mtime_ns":1786206352194703747,"word_count":1139},"code/packages/ingestion-core/src/contentValidator.ts":{"size":18182,"mtime_ns":1786206352194703747,"word_count":1953},"code/packages/ingestion-core/src/distributionGate.ts":{"size":1625,"mtime_ns":1786206352194703747,"word_count":165},"code/packages/ingestion-core/src/index.ts":{"size":2638,"mtime_ns":1786206352194703747,"word_count":196},"code/packages/ingestion-core/src/ingestor.ts":{"size":3026,"mtime_ns":1786206352194703747,"word_count":240},"code/packages/ingestion-core/src/pipeline.ts":{"size":3493,"mtime_ns":1786206352194703747,"word_count":322},"code/packages/ingestion-core/src/plainTransform.ts":{"size":440,"mtime_ns":1786206352194703747,"word_count":52},"code/packages/ingestion-core/src/provenanceMetadata.ts":{"size":1893,"mtime_ns":1786206352194703747,"word_count":152},"code/packages/ingestion-core/src/sandboxEgressClassification.ts":{"size":6989,"mtime_ns":1786206352194703747,"word_count":873},"code/packages/ingestion-core/src/sealedServiceRpcConstants.ts":{"size":676,"mtime_ns":1786206352194703747,"word_count":74},"code/packages/ingestion-core/src/sealedValidation.ts":{"size":7850,"mtime_ns":1786206352194703747,"word_count":702},"code/packages/ingestion-core/src/types.ts":{"size":9699,"mtime_ns":1786206352194703747,"word_count":947},"code/packages/ingestion-core/src/validator.ts":{"size":44633,"mtime_ns":1786206352194703747,"word_count":4479},"code/packages/ingestion-core/tsconfig.json":{"size":384,"mtime_ns":1786206352194703747,"word_count":31},"code/packages/ingestion-core/vitest.config.ts":{"size":383,"mtime_ns":1786206352194703747,"word_count":45},"code/packages/relay-server/__tests__/relay-server.test.ts":{"size":27344,"mtime_ns":1786206352194703747,"word_count":2538},"code/packages/relay-server/__tests__/sandboxEgressGuard.test.ts":{"size":8769,"mtime_ns":1786206352194703747,"word_count":870},"code/packages/relay-server/docker-compose.yml":{"size":915,"mtime_ns":1786206352194703747,"word_count":63},"code/packages/relay-server/package.json":{"size":993,"mtime_ns":1786206352194703747,"word_count":89},"code/packages/relay-server/src/auth.ts":{"size":759,"mtime_ns":1786206352194703747,"word_count":93},"code/packages/relay-server/src/config.ts":{"size":2866,"mtime_ns":1786206352194703747,"word_count":303},"code/packages/relay-server/src/health.ts":{"size":374,"mtime_ns":1786206352194703747,"word_count":44},"code/packages/relay-server/src/index.ts":{"size":1024,"mtime_ns":1786206352194703747,"word_count":103},"code/packages/relay-server/src/rateLimiter.ts":{"size":2693,"mtime_ns":1786206352194703747,"word_count":321},"code/packages/relay-server/src/server.ts":{"size":19026,"mtime_ns":1786206352194703747,"word_count":1874},"code/packages/relay-server/src/store.ts":{"size":7985,"mtime_ns":1786206352194703747,"word_count":1013},"code/packages/relay-server/tsconfig.json":{"size":331,"mtime_ns":1786206352194703747,"word_count":27},"code/packages/relay-server/vitest.config.ts":{"size":670,"mtime_ns":1786206352194703747,"word_count":65},"code/packages/shared-beap-ui/package.json":{"size":485,"mtime_ns":1786206352198703134,"word_count":46},"code/packages/shared-beap-ui/src/AttachmentPicker.tsx":{"size":2586,"mtime_ns":1786206352198703134,"word_count":214},"code/packages/shared-beap-ui/src/BeapIdentityBadge.tsx":{"size":1000,"mtime_ns":1786206352198703134,"word_count":95},"code/packages/shared-beap-ui/src/BeapMessageBody.tsx":{"size":3326,"mtime_ns":1786206352198703134,"word_count":252},"code/packages/shared-beap-ui/src/CapsuleFields.tsx":{"size":2391,"mtime_ns":1786206352198703134,"word_count":213},"code/packages/shared-beap-ui/src/SessionSelector.tsx":{"size":1344,"mtime_ns":1786206352198703134,"word_count":139},"code/packages/shared-beap-ui/src/css.d.ts":{"size":23,"mtime_ns":1786206352198703134,"word_count":3},"code/packages/shared-beap-ui/src/index.ts":{"size":880,"mtime_ns":1786206352198703134,"word_count":103},"code/packages/shared-beap-ui/src/types.ts":{"size":784,"mtime_ns":1786206352198703134,"word_count":108},"code/packages/shared-beap-ui/tsconfig.json":{"size":349,"mtime_ns":1786206352198703134,"word_count":31},"code/packages/shared-extension/package.json":{"size":148,"mtime_ns":1786206352198703134,"word_count":14},"code/packages/shared-extension/src/index.ts":{"size":262,"mtime_ns":1786206352198703134,"word_count":50},"code/packages/shared-extension/src/storage/ChromeStorageAdapter.ts":{"size":1596,"mtime_ns":1786206352198703134,"word_count":148},"code/packages/shared/package.json":{"size":124,"mtime_ns":1786206352198703134,"word_count":12},"code/packages/shared/src/handshake/activeHandshakeHealthIssue.ts":{"size":588,"mtime_ns":1786206352198703134,"word_count":66},"code/packages/shared/src/handshake/contextGovernance.ts":{"size":3565,"mtime_ns":1786206352198703134,"word_count":359},"code/packages/shared/src/handshake/hsContextFieldValidation.ts":{"size":5792,"mtime_ns":1786206352198703134,"word_count":883},"code/packages/shared/src/handshake/hsContextHardening.test.ts":{"size":5847,"mtime_ns":1786206352198703134,"word_count":506},"code/packages/shared/src/handshake/index.ts":{"size":193,"mtime_ns":1786206352198703134,"word_count":20},"code/packages/shared/src/handshake/internalEndpointValidation.test.ts":{"size":7481,"mtime_ns":1786206352198703134,"word_count":474},"code/packages/shared/src/handshake/internalEndpointValidation.ts":{"size":16999,"mtime_ns":1786206352198703134,"word_count":1931},"code/packages/shared/src/handshake/internalIdentityUi.test.ts":{"size":7732,"mtime_ns":1786206352198703134,"word_count":572},"code/packages/shared/src/handshake/internalIdentityUi.ts":{"size":9212,"mtime_ns":1786206352198703134,"word_count":1065},"code/packages/shared/src/handshake/linkValidation.ts":{"size":1672,"mtime_ns":1786206352198703134,"word_count":250},"code/packages/shared/src/handshake/policyUtils.test.ts":{"size":4296,"mtime_ns":1786206352198703134,"word_count":368},"code/packages/shared/src/handshake/policyUtils.ts":{"size":3625,"mtime_ns":1786206352198703134,"word_count":425},"code/packages/shared/src/handshake/receiverEmailValidation.test.ts":{"size":1836,"mtime_ns":1786206352198703134,"word_count":122},"code/packages/shared/src/handshake/receiverEmailValidation.ts":{"size":2734,"mtime_ns":1786206352198703134,"word_count":368},"code/packages/shared/src/handshake/types.ts":{"size":3021,"mtime_ns":1786206352198703134,"word_count":374},"code/packages/shared/src/index.ts":{"size":601,"mtime_ns":1786206352198703134,"word_count":65},"code/packages/shared/src/ingestion/index.ts":{"size":24,"mtime_ns":1786206352198703134,"word_count":4},"code/packages/shared/src/ingestion/types.ts":{"size":981,"mtime_ns":1786206352198703134,"word_count":91},"code/packages/shared/src/security/sanitizeReturnTo.test.ts":{"size":10439,"mtime_ns":1786206352198703134,"word_count":745},"code/packages/shared/src/security/sanitizeReturnTo.ts":{"size":6719,"mtime_ns":1786206352198703134,"word_count":862},"code/packages/shared/src/storage/StorageAdapter.ts":{"size":1009,"mtime_ns":1786206352198703134,"word_count":134},"code/packages/shared/src/vault/fieldTaxonomy.ts":{"size":53996,"mtime_ns":1786206352198703134,"word_count":4958},"code/packages/shared/src/vault/haMode.ts":{"size":20922,"mtime_ns":1786206352198703134,"word_count":2424},"code/packages/shared/src/vault/insertionPipeline.ts":{"size":59436,"mtime_ns":1786206352198703134,"word_count":5803},"code/packages/shared/src/vault/originPolicy.ts":{"size":13930,"mtime_ns":1786206352198703134,"word_count":1697},"code/packages/shared/src/vault/vaultCapabilities.test.ts":{"size":18404,"mtime_ns":1786206352198703134,"word_count":1449},"code/packages/shared/src/vault/vaultCapabilities.ts":{"size":19129,"mtime_ns":1786206352198703134,"word_count":2137},"code/packages/shared/src/wrChat/diffTrigger.ts":{"size":509,"mtime_ns":1786206352198703134,"word_count":71},"code/pnpm-workspace.yaml":{"size":154,"mtime_ns":1786206352202702522,"word_count":16},"code/release-manifest.json":{"size":7129,"mtime_ns":1786206352202702522,"word_count":171},"code/scripts/check-inbox-validator-gate.sh":{"size":5357,"mtime_ns":1786206352202702522,"word_count":691},"code/scripts/check-self-call-loopback.cjs":{"size":2932,"mtime_ns":1786206352202702522,"word_count":280},"code/scripts/check-write-boundary.ps1":{"size":4328,"mtime_ns":1786206352202702522,"word_count":495},"code/scripts/check-write-boundary.sh":{"size":3682,"mtime_ns":1786206352202702522,"word_count":484},"code/scripts/check_braces.py":{"size":1061,"mtime_ns":1786206352202702522,"word_count":130},"code/scripts/run-native-db-tests.cjs":{"size":1876,"mtime_ns":1786206352202702522,"word_count":227},"code/scripts/session-build.cjs":{"size":935,"mtime_ns":1786206352202702522,"word_count":105},"code/scripts/session-configure-remote.cjs":{"size":742,"mtime_ns":1786206352202702522,"word_count":67},"code/scripts/session-start.cjs":{"size":1056,"mtime_ns":1786206352202702522,"word_count":102},"code/scripts/session-stop.cjs":{"size":563,"mtime_ns":1786206352202702522,"word_count":69},"code/scripts/session/build.cjs":{"size":6027,"mtime_ns":1786206352202702522,"word_count":581},"code/scripts/session/configure-coordination-worker.cjs":{"size":3481,"mtime_ns":1786206352202702522,"word_count":319},"code/scripts/session/lib.cjs":{"size":7721,"mtime_ns":1786206352202702522,"word_count":858},"code/session-handling-analysis-2.md":{"size":11332,"mtime_ns":1786206352202702522,"word_count":1297},"code/start-dev-full.ps1":{"size":2395,"mtime_ns":1786206352202702522,"word_count":247},"code/start-dev.ps1":{"size":1372,"mtime_ns":1786206352202702522,"word_count":142},"code/test/harness/sealed-storage.test.ts":{"size":10405,"mtime_ns":1786206352202702522,"word_count":863},"code/test/harness/sealed-storage.ts":{"size":9394,"mtime_ns":1786206352202702522,"word_count":922},"code/test/mocks/electron.ts":{"size":14033,"mtime_ns":1786206352202702522,"word_count":1479},"code/test/setup.ts":{"size":3821,"mtime_ns":1786206352202702522,"word_count":467},"code/tsconfig.base.json":{"size":202,"mtime_ns":1786206352202702522,"word_count":19},"code/verify-headless.ps1":{"size":2063,"mtime_ns":1786206352202702522,"word_count":233},"code/vitest-5a-output.json":{"size":1764872,"mtime_ns":1786206352206701909,"word_count":88508},"code/vitest-audit-failure-lines.txt":{"size":39454,"mtime_ns":1786206352206701909,"word_count":4662},"code/vitest-audit-failures-flat.json":{"size":384813,"mtime_ns":1786206352206701909,"word_count":12732},"code/vitest-audit-failures1.json":{"size":198984,"mtime_ns":1786206352206701909,"word_count":7781},"code/vitest-audit-failures2.json":{"size":198984,"mtime_ns":1786206352206701909,"word_count":7781},"code/vitest-audit-run1.json":{"size":1577470,"mtime_ns":1786206352210701296,"word_count":79276},"code/vitest-audit-run2.json":{"size":1577380,"mtime_ns":1786206352214700683,"word_count":79276},"code/vitest-new81-failures.json":{"size":57802,"mtime_ns":1786206352214700683,"word_count":4196},"code/vitest-triage-buckets.json":{"size":30769,"mtime_ns":1786206352214700683,"word_count":2270},"code/vitest-triage-failures-flat.json":{"size":75920,"mtime_ns":1786206352214700683,"word_count":4490},"code/vitest-triage-output.json":{"size":1486127,"mtime_ns":1786206352214700683,"word_count":76936},"code/vitest.config.ts":{"size":3981,"mtime_ns":1786206352214700683,"word_count":455},"code/wp-content/themes/blocksy-child/functions.php":{"size":2176,"mtime_ns":1786206352214700683,"word_count":172},"cursor-guardrails.txt":{"size":523,"mtime_ns":1786206352214700683,"word_count":75},"docs/build-specs/0001-b1-contradiction-report.md":{"size":3391,"mtime_ns":1786206352214700683,"word_count":446},"docs/build-specs/0002-b1-amendment-1.md":{"size":4201,"mtime_ns":1786206352214700683,"word_count":610},"docs/build-specs/0003-b1-consolidated-spec.md":{"size":7196,"mtime_ns":1786206352214700683,"word_count":962},"docs/build-specs/0004-b1-closeout.md":{"size":1933,"mtime_ns":1786206352214700683,"word_count":294},"docs/build-specs/0005-b2-analysis-spec.md":{"size":9882,"mtime_ns":1786206352214700683,"word_count":1373},"docs/build-specs/0006-b2-analysis-report.md":{"size":33118,"mtime_ns":1786206352218700070,"word_count":4004},"docs/build-specs/0007-b2-build-spec.md":{"size":8453,"mtime_ns":1786206352218700070,"word_count":1157},"docs/build-specs/0008-b2-code-complete-report.md":{"size":13014,"mtime_ns":1786206352218700070,"word_count":1674},"docs/build-specs/0009-b2-verification-runbook.md":{"size":9573,"mtime_ns":1786206352218700070,"word_count":1282},"docs/build-specs/0010-b2.1-remainder-spec.md":{"size":4754,"mtime_ns":1786206352218700070,"word_count":684},"docs/build-specs/0011-b2-verification-report.md":{"size":8925,"mtime_ns":1786206352218700070,"word_count":1220},"docs/build-specs/0012-b2.1-remainder-report.md":{"size":11586,"mtime_ns":1786206352218700070,"word_count":1431},"docs/build-specs/0013-b2.2-envelope-clean-spec.md":{"size":4961,"mtime_ns":1786206352218700070,"word_count":639},"docs/build-specs/0014-b2.2-envelope-clean-report.md":{"size":11747,"mtime_ns":1786206352218700070,"word_count":1424},"docs/build-specs/0015-b2.2-acceptance-and-triage.md":{"size":3177,"mtime_ns":1786206352218700070,"word_count":442},"docs/build-specs/0016-test-debt-triage-report.md":{"size":16965,"mtime_ns":1786206352218700070,"word_count":2152},"docs/build-specs/0017-build-c-spec.md":{"size":7346,"mtime_ns":1786206352218700070,"word_count":962},"docs/build-specs/0018-build-c-report.md":{"size":17197,"mtime_ns":1786206352218700070,"word_count":2085},"docs/build-specs/0019-w-series-runbook.md":{"size":6818,"mtime_ns":1786206352218700070,"word_count":851},"docs/build-specs/0020-build-c-acceptance.md":{"size":3042,"mtime_ns":1786206352218700070,"word_count":394},"docs/build-specs/0021-fixspec-ab-hermetic-bundle-rig-provisioning.md":{"size":4228,"mtime_ns":1786206352218700070,"word_count":596},"docs/build-specs/0022-fixspec-ab-report.md":{"size":10311,"mtime_ns":1786206352218700070,"word_count":1361},"docs/build-specs/README.md":{"size":10328,"mtime_ns":1786206352218700070,"word_count":1225},"extension-tsc-errors.txt":{"size":36207,"mtime_ns":1786206352218700070,"word_count":2779},"makeeverythingsmart.txt":{"size":97565,"mtime_ns":1786206352218700070,"word_count":4820},"ogpl-1.0_license.txt":{"size":5096,"mtime_ns":1786206352218700070,"word_count":703},"ogpl-1.1_license.txt":{"size":5907,"mtime_ns":1786206352218700070,"word_count":787},"ogpl-1.2_license.txt":{"size":5973,"mtime_ns":1786206352218700070,"word_count":795},"ogpl-1.3_license.txt":{"size":6001,"mtime_ns":1786206352218700070,"word_count":800},"ogpl-1.4_license.txt":{"size":6010,"mtime_ns":1786206352218700070,"word_count":801},"optimandoai-research-paper-v117.pdf":{"size":6119343,"mtime_ns":1786206352314685362,"word_count":0},"optimandoai-research-paper-v118.pdf":{"size":6135048,"mtime_ns":1786206352322684136,"word_count":0},"optimandoai-research-paper-v119.pdf":{"size":6135185,"mtime_ns":1786206352330682910,"word_count":0},"optimandoai-research-paper-v120.pdf":{"size":6145006,"mtime_ns":1786206352334682298,"word_count":0},"optimandoai-research-paper-v121.pdf":{"size":6217174,"mtime_ns":1786206352338681684,"word_count":0},"optimandoai-research-paper-v122.pdf":{"size":6240569,"mtime_ns":1786206352346680459,"word_count":0},"optimandoai-research-paper-v123.pdf":{"size":6250785,"mtime_ns":1786206352350679846,"word_count":0},"optimandoai-research-paper-v124.pdf":{"size":6284526,"mtime_ns":1786206352354679233,"word_count":0},"optimandoai-research-paper-v125.pdf":{"size":6238938,"mtime_ns":1786206352362678007,"word_count":0},"optimandoai-research-paper-v126.pdf":{"size":6243085,"mtime_ns":1786206352378675556,"word_count":0},"optimandoai-research-paper-v127.pdf":{"size":6264784,"mtime_ns":1786206352394673105,"word_count":0},"optimandoai-research-paper-v128.pdf":{"size":6269148,"mtime_ns":1786206352406671266,"word_count":0},"optimandoai-research-paper-v129.pdf":{"size":6276723,"mtime_ns":1786206352414670041,"word_count":0},"optimandoai-research-paper-v130.pdf":{"size":6296328,"mtime_ns":1786206352422668814,"word_count":0},"optimandoai-research-paper-v131.pdf":{"size":6307427,"mtime_ns":1786206352426668202,"word_count":0},"optimandoai-research-paper-v133.pdf":{"size":6338691,"mtime_ns":1786206352450664524,"word_count":0},"optimandoai-research-paper-v134.pdf":{"size":6343656,"mtime_ns":1786206352454663912,"word_count":0},"optimandoai-research-paper-v135.pdf":{"size":6182822,"mtime_ns":1786206352462662686,"word_count":0},"optimandoai-research-paper-v136.pdf":{"size":6296786,"mtime_ns":1786206352478660235,"word_count":0},"optimandoai-research-paper-v137.pdf":{"size":6311676,"mtime_ns":1786206352518654106,"word_count":0},"optimandoai-research-paper-v138.pdf":{"size":6390232,"mtime_ns":1786206352530652267,"word_count":0},"optimandoai-research-paper-v139.pdf":{"size":6378489,"mtime_ns":1786206352546649816,"word_count":0},"optimandoai-research-paper-v140.pdf":{"size":6381958,"mtime_ns":1786206352558647978,"word_count":0},"optimandoai-research-paper-v141.pdf":{"size":6392204,"mtime_ns":1786206352566646752,"word_count":0},"optimandoai-research-paper-v142.pdf":{"size":6626395,"mtime_ns":1786206352582644300,"word_count":0},"optimandoai-research-paper-v143.pdf":{"size":6642107,"mtime_ns":1786206352598641849,"word_count":0},"optimandoai-research-paper-v144.pdf":{"size":6652663,"mtime_ns":1786206352606640624,"word_count":0},"optimandoai-research-paper-v145.pdf":{"size":6669798,"mtime_ns":1786206352618638785,"word_count":0},"optimandoai-research-paper-v147.pdf":{"size":6792351,"mtime_ns":1786206352630636946,"word_count":0},"optimandoai-research-paper-v148.pdf":{"size":6827718,"mtime_ns":1786206352634636333,"word_count":0},"optimandoai-research-paper-v149.pdf":{"size":6831329,"mtime_ns":1786206352654633269,"word_count":0},"optimandoai-research-paper-v150.pdf":{"size":6836225,"mtime_ns":1786206352670630818,"word_count":0},"optimandoai-research-paper-v151.pdf":{"size":6852633,"mtime_ns":1786206352682628979,"word_count":0},"optimandoai-research-paper-v152.pdf":{"size":6889357,"mtime_ns":1786206352694627140,"word_count":0},"optimandoai-research-paper-v153.pdf":{"size":6916366,"mtime_ns":1786206352710624689,"word_count":0},"optimandoai-research-paper-v154.pdf":{"size":6935886,"mtime_ns":1786206352722622850,"word_count":0},"optimandoai-research-paper-v155.pdf":{"size":7007134,"mtime_ns":1786206352734621012,"word_count":0},"optimandoai-research-paper-v157.pdf":{"size":7042764,"mtime_ns":1786206352750618561,"word_count":0},"optimandoai-research-paper-v158.pdf":{"size":7045632,"mtime_ns":1786206352754617947,"word_count":0},"optimandoai-research-paper-v159.pdf":{"size":6946004,"mtime_ns":1786206352766616109,"word_count":0},"optimandoai-research-paper-v160.pdf":{"size":6946653,"mtime_ns":1786206352782613658,"word_count":0},"optimandoai-research-paper-v161.pdf":{"size":6960086,"mtime_ns":1786206352794611819,"word_count":0},"optimandoai-research-paper-v162.pdf":{"size":6966300,"mtime_ns":1786206352810609368,"word_count":0},"optimandoai-research-paper-v163.pdf":{"size":6975001,"mtime_ns":1786206352818608142,"word_count":0},"optimandoai-research-paper-v164.pdf":{"size":6982151,"mtime_ns":1786206352834605690,"word_count":0},"optimandoai-research-paper-v165.pdf":{"size":7017929,"mtime_ns":1786206352850603239,"word_count":0},"optimandoai-research-paper-v166.pdf":{"size":7031109,"mtime_ns":1786206352862601401,"word_count":0},"optimandoai-research-paper-v167.pdf":{"size":7097139,"mtime_ns":1786206352874599562,"word_count":0},"optimandoai-research-paper-v168.pdf":{"size":7094878,"mtime_ns":1786206352890597110,"word_count":0},"optimandoai-research-paper-v169.pdf":{"size":7095100,"mtime_ns":1786206352910594047,"word_count":0},"optimandoai-research-paper-v171.pdf":{"size":7052882,"mtime_ns":1786206352922592208,"word_count":0},"optimandoai-research-paper-v172.pdf":{"size":7138554,"mtime_ns":1786206352930590982,"word_count":0},"optimandoai-research-paper-v173.pdf":{"size":7137062,"mtime_ns":1786206353006579352,"word_count":0},"optimandoai-research-paper-v174.pdf":{"size":7165085,"mtime_ns":1786206353022577147,"word_count":0},"optimandoai-research-paper-v176.pdf":{"size":7207400,"mtime_ns":1786206353042574391,"word_count":0},"optimandoai-research-paper-v177.pdf":{"size":7207664,"mtime_ns":1786206353058572186,"word_count":0},"optimandoai-research-paper-v178.pdf":{"size":7217374,"mtime_ns":1786206353078569429,"word_count":0},"optimandoai-research-paper-v179.pdf":{"size":7243717,"mtime_ns":1786206353094567224,"word_count":0},"optimandoai-research-paper-v180.pdf":{"size":7263300,"mtime_ns":1786206353110565020,"word_count":0},"optimandoai-research-paper-v181.pdf":{"size":7265745,"mtime_ns":1786206353126562814,"word_count":0},"optimandoai-research-paper-v182.pdf":{"size":7301840,"mtime_ns":1786206353138561160,"word_count":0},"optimandoai-research-paper-v183.pdf":{"size":7301897,"mtime_ns":1786206353146560058,"word_count":0},"optimandoai-research-paper-v184.pdf":{"size":7301969,"mtime_ns":1786206353154558955,"word_count":0},"optimandoai-research-paper-v185.pdf":{"size":7304224,"mtime_ns":1786206353158558404,"word_count":0},"optimandoai-research-paper-v186.pdf":{"size":7306930,"mtime_ns":1786206353174556199,"word_count":0},"optimandoai-research-paper-v187.pdf":{"size":7314171,"mtime_ns":1786206353194553443,"word_count":0},"optimandoai-research-paper-v188.pdf":{"size":7319167,"mtime_ns":1786206353210551238,"word_count":0},"optimandoai-research-paper-v189.pdf":{"size":7365831,"mtime_ns":1786206353226549032,"word_count":0},"optimandoai-research-paper-v190.pdf":{"size":7373013,"mtime_ns":1786206353230548481,"word_count":0},"optimandoai-research-paper-v191.pdf":{"size":7196202,"mtime_ns":1786206353318536354,"word_count":0},"optimandoai-research-paper-v192.pdf":{"size":7425249,"mtime_ns":1786206353370529188,"word_count":0},"optimandoai-research-paper-v193.pdf":{"size":8122742,"mtime_ns":1786206353394525879,"word_count":0},"optimandoai-research-paper-v194.pdf":{"size":8245526,"mtime_ns":1786206353410523675,"word_count":0},"optimandoai-research-paper-v195.pdf":{"size":8340409,"mtime_ns":1786206353422522021,"word_count":0},"optimandoai-research-paper-v196.pdf":{"size":8353507,"mtime_ns":1786206353450518162,"word_count":0},"optimandoai-research-paper-v197.pdf":{"size":8415454,"mtime_ns":1786206353474514855,"word_count":0},"optimandoai-research-paper-v198.pdf":{"size":8510756,"mtime_ns":1786206353486513200,"word_count":0},"optimandoai-research-paper-v199.pdf":{"size":8568986,"mtime_ns":1786206353502510995,"word_count":0},"optimandoai-research-paper-v200.pdf":{"size":11888338,"mtime_ns":1786206353574501073,"word_count":0},"optminadeai-research-paper-v146.pdf":{"size":6708540,"mtime_ns":1786206353586499419,"word_count":0},"readme.txt":{"size":17226,"mtime_ns":1786206353586499419,"word_count":2220},"wr-connect-settup-guide.txt":{"size":3696,"mtime_ns":1786206353586499419,"word_count":579},"wr-connect.php":{"size":23112,"mtime_ns":1786206353586499419,"word_count":2497},"wrcode_qr_gate_4outputs_colored.png":{"size":30623,"mtime_ns":1786206353586499419,"word_count":884},"wrcodeui.pdf":{"size":1085410,"mtime_ns":1786206353594498316,"word_count":0}} \ No newline at end of file diff --git a/graphify-out/graph.html b/graphify-out/graph.html new file mode 100644 index 000000000..192003094 --- /dev/null +++ b/graphify-out/graph.html @@ -0,0 +1,320 @@ + + + + +graphify - graphify-out/graph.html + + + + +
+ + + + + \ No newline at end of file diff --git a/graphify-out/graph.json b/graphify-out/graph.json new file mode 100644 index 000000000..c34452ebe --- /dev/null +++ b/graphify-out/graph.json @@ -0,0 +1,731241 @@ +{ + "directed": false, + "multigraph": false, + "graph": {}, + "nodes": [ + { + "label": "New-ServersJson.ps1", + "file_type": "code", + "source_file": "New-ServersJson.ps1", + "source_location": "L1", + "_origin": "ast", + "id": "new_serversjson", + "community": 611, + "community_name": "Newserversjson", + "norm_label": "new-serversjson.ps1" + }, + { + "label": "create-shortcut-fixed.ps1", + "file_type": "code", + "source_file": "apps/desktop/create-shortcut-fixed.ps1", + "source_location": "L1", + "_origin": "ast", + "id": "apps_desktop_create_shortcut_fixed", + "community": 581, + "community_name": "Desktop #581", + "norm_label": "create-shortcut-fixed.ps1" + }, + { + "label": "create-shortcut-with-icon.ps1", + "file_type": "code", + "source_file": "apps/desktop/create-shortcut-with-icon.ps1", + "source_location": "L1", + "_origin": "ast", + "id": "apps_desktop_create_shortcut_with_icon", + "community": 582, + "community_name": "Desktop #582", + "norm_label": "create-shortcut-with-icon.ps1" + }, + { + "label": "main.js", + "file_type": "code", + "source_file": "apps/desktop/main.js", + "source_location": "L1", + "_origin": "ast", + "id": "apps_desktop_main", + "community": 396, + "community_name": "Desktop #396", + "norm_label": "main.js" + }, + { + "label": "{ app, BrowserWindow, Tray, Menu }", + "file_type": "code", + "source_file": "apps/desktop/main.js", + "source_location": "L1", + "_origin": "ast", + "id": "apps_desktop_main_app_browserwindow_tray_menu", + "community": 396, + "community_name": "Desktop #396", + "norm_label": "{ app, browserwindow, tray, menu }" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/desktop/main.js", + "source_location": "L2", + "_origin": "ast", + "id": "apps_desktop_main_path", + "community": 396, + "community_name": "Desktop #396", + "norm_label": "path" + }, + { + "label": "WebSocket", + "file_type": "code", + "source_file": "apps/desktop/main.js", + "source_location": "L3", + "_origin": "ast", + "id": "apps_desktop_main_websocket", + "community": 396, + "community_name": "Desktop #396", + "norm_label": "websocket" + }, + { + "label": "createWindow()", + "file_type": "code", + "source_file": "apps/desktop/main.js", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "id": "apps_desktop_main_createwindow", + "community": 396, + "community_name": "Desktop #396", + "norm_label": "createwindow()" + }, + { + "label": "startWebSocketServer()", + "file_type": "code", + "source_file": "apps/desktop/main.js", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "id": "apps_desktop_main_startwebsocketserver", + "community": 396, + "community_name": "Desktop #396", + "norm_label": "startwebsocketserver()" + }, + { + "label": "createTray()", + "file_type": "code", + "source_file": "apps/desktop/main.js", + "source_location": "L153", + "_callable": true, + "_origin": "ast", + "id": "apps_desktop_main_createtray", + "community": 396, + "community_name": "Desktop #396", + "norm_label": "createtray()" + }, + { + "label": "desktop/package.json", + "file_type": "code", + "source_file": "apps/desktop/package.json", + "source_location": "L1", + "_origin": "ast", + "id": "apps_desktop_package", + "community": 124, + "community_name": "Desktop", + "norm_label": "desktop/package.json" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/desktop/package.json", + "source_location": "L2", + "_origin": "ast", + "id": "apps_desktop_package_name", + "community": 124, + "community_name": "Desktop", + "norm_label": "name" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/desktop/package.json", + "source_location": "L3", + "_origin": "ast", + "id": "apps_desktop_package_version", + "community": 124, + "community_name": "Desktop", + "norm_label": "version" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/desktop/package.json", + "source_location": "L4", + "_origin": "ast", + "id": "apps_desktop_package_description", + "community": 124, + "community_name": "Desktop", + "norm_label": "description" + }, + { + "label": "main", + "file_type": "code", + "source_file": "apps/desktop/package.json", + "source_location": "L5", + "_origin": "ast", + "id": "apps_desktop_package_main", + "community": 124, + "community_name": "Desktop", + "norm_label": "main" + }, + { + "label": "scripts", + "file_type": "code", + "source_file": "apps/desktop/package.json", + "source_location": "L6", + "_origin": "ast", + "id": "apps_desktop_package_scripts", + "community": 124, + "community_name": "Desktop", + "norm_label": "scripts" + }, + { + "label": "start", + "file_type": "code", + "source_file": "apps/desktop/package.json", + "source_location": "L7", + "_origin": "ast", + "id": "apps_desktop_package_scripts_start", + "community": 124, + "community_name": "Desktop", + "norm_label": "start" + }, + { + "label": "start-headless", + "file_type": "code", + "source_file": "apps/desktop/package.json", + "source_location": "L8", + "_origin": "ast", + "id": "apps_desktop_package_scripts_start_headless", + "community": 124, + "community_name": "Desktop", + "norm_label": "start-headless" + }, + { + "label": "dev", + "file_type": "code", + "source_file": "apps/desktop/package.json", + "source_location": "L9", + "_origin": "ast", + "id": "apps_desktop_package_scripts_dev", + "community": 124, + "community_name": "Desktop", + "norm_label": "dev" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/desktop/package.json", + "source_location": "L10", + "_origin": "ast", + "id": "apps_desktop_package_scripts_build", + "community": 124, + "community_name": "Desktop", + "norm_label": "build" + }, + { + "label": "dist", + "file_type": "code", + "source_file": "apps/desktop/package.json", + "source_location": "L11", + "_origin": "ast", + "id": "apps_desktop_package_scripts_dist", + "community": 124, + "community_name": "Desktop", + "norm_label": "dist" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/desktop/package.json", + "source_location": "L13", + "_origin": "ast", + "id": "apps_desktop_package_build", + "community": 124, + "community_name": "Desktop", + "norm_label": "build" + }, + { + "label": "appId", + "file_type": "code", + "source_file": "apps/desktop/package.json", + "source_location": "L14", + "_origin": "ast", + "id": "apps_desktop_package_build_appid", + "community": 124, + "community_name": "Desktop", + "norm_label": "appid" + }, + { + "label": "productName", + "file_type": "code", + "source_file": "apps/desktop/package.json", + "source_location": "L15", + "_origin": "ast", + "id": "apps_desktop_package_build_productname", + "community": 124, + "community_name": "Desktop", + "norm_label": "productname" + }, + { + "label": "directories", + "file_type": "code", + "source_file": "apps/desktop/package.json", + "source_location": "L16", + "_origin": "ast", + "id": "apps_desktop_package_build_directories", + "community": 124, + "community_name": "Desktop", + "norm_label": "directories" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/desktop/package.json", + "source_location": "L17", + "_origin": "ast", + "id": "apps_desktop_package_directories_output", + "community": 124, + "community_name": "Desktop", + "norm_label": "output" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/desktop/package.json", + "source_location": "L19", + "_origin": "ast", + "id": "apps_desktop_package_build_files", + "community": 124, + "community_name": "Desktop", + "norm_label": "files" + }, + { + "label": "main.js", + "file_type": "concept", + "source_file": "apps/desktop/package.json", + "source_location": "L19", + "_origin": "ast", + "id": "ref_main_js", + "community": 124, + "community_name": "Desktop", + "norm_label": "main.js" + }, + { + "label": "index.html", + "file_type": "concept", + "source_file": "apps/desktop/package.json", + "source_location": "L19", + "_origin": "ast", + "id": "ref_index_html", + "community": 124, + "community_name": "Desktop", + "norm_label": "index.html" + }, + { + "label": "desktop/package.json", + "file_type": "concept", + "source_file": "apps/desktop/package.json", + "source_location": "L19", + "_origin": "ast", + "id": "ref_package_json", + "community": 124, + "community_name": "Desktop", + "norm_label": "desktop/package.json" + }, + { + "label": "win", + "file_type": "code", + "source_file": "apps/desktop/package.json", + "source_location": "L24", + "_origin": "ast", + "id": "apps_desktop_package_build_win", + "community": 124, + "community_name": "Desktop", + "norm_label": "win" + }, + { + "label": "target", + "file_type": "code", + "source_file": "apps/desktop/package.json", + "source_location": "L25", + "_origin": "ast", + "id": "apps_desktop_package_win_target", + "community": 124, + "community_name": "Desktop", + "norm_label": "target" + }, + { + "label": "icon", + "file_type": "code", + "source_file": "apps/desktop/package.json", + "source_location": "L26", + "_origin": "ast", + "id": "apps_desktop_package_win_icon", + "community": 124, + "community_name": "Desktop", + "norm_label": "icon" + }, + { + "label": "nsis", + "file_type": "code", + "source_file": "apps/desktop/package.json", + "source_location": "L28", + "_origin": "ast", + "id": "apps_desktop_package_build_nsis", + "community": 124, + "community_name": "Desktop", + "norm_label": "nsis" + }, + { + "label": "oneClick", + "file_type": "code", + "source_file": "apps/desktop/package.json", + "source_location": "L29", + "_origin": "ast", + "id": "apps_desktop_package_nsis_oneclick", + "community": 124, + "community_name": "Desktop", + "norm_label": "oneclick" + }, + { + "label": "perMachine", + "file_type": "code", + "source_file": "apps/desktop/package.json", + "source_location": "L30", + "_origin": "ast", + "id": "apps_desktop_package_nsis_permachine", + "community": 124, + "community_name": "Desktop", + "norm_label": "permachine" + }, + { + "label": "createDesktopShortcut", + "file_type": "code", + "source_file": "apps/desktop/package.json", + "source_location": "L31", + "_origin": "ast", + "id": "apps_desktop_package_nsis_createdesktopshortcut", + "community": 124, + "community_name": "Desktop", + "norm_label": "createdesktopshortcut" + }, + { + "label": "createStartMenuShortcut", + "file_type": "code", + "source_file": "apps/desktop/package.json", + "source_location": "L32", + "_origin": "ast", + "id": "apps_desktop_package_nsis_createstartmenushortcut", + "community": 124, + "community_name": "Desktop", + "norm_label": "createstartmenushortcut" + }, + { + "label": "shortcutName", + "file_type": "code", + "source_file": "apps/desktop/package.json", + "source_location": "L33", + "_origin": "ast", + "id": "apps_desktop_package_nsis_shortcutname", + "community": 124, + "community_name": "Desktop", + "norm_label": "shortcutname" + }, + { + "label": "mac", + "file_type": "code", + "source_file": "apps/desktop/package.json", + "source_location": "L35", + "_origin": "ast", + "id": "apps_desktop_package_build_mac", + "community": 124, + "community_name": "Desktop", + "norm_label": "mac" + }, + { + "label": "target", + "file_type": "code", + "source_file": "apps/desktop/package.json", + "source_location": "L36", + "_origin": "ast", + "id": "apps_desktop_package_mac_target", + "community": 124, + "community_name": "Desktop", + "norm_label": "target" + }, + { + "label": "linux", + "file_type": "code", + "source_file": "apps/desktop/package.json", + "source_location": "L38", + "_origin": "ast", + "id": "apps_desktop_package_build_linux", + "community": 124, + "community_name": "Desktop", + "norm_label": "linux" + }, + { + "label": "target", + "file_type": "code", + "source_file": "apps/desktop/package.json", + "source_location": "L39", + "_origin": "ast", + "id": "apps_desktop_package_linux_target", + "community": 124, + "community_name": "Desktop", + "norm_label": "target" + }, + { + "label": "dependencies", + "file_type": "code", + "source_file": "apps/desktop/package.json", + "source_location": "L42", + "_origin": "ast", + "id": "apps_desktop_package_dependencies", + "community": 124, + "community_name": "Desktop", + "norm_label": "dependencies" + }, + { + "label": "ws", + "file_type": "code", + "source_file": "apps/desktop/package.json", + "source_location": "L43", + "_origin": "ast", + "id": "apps_desktop_package_dependencies_ws", + "community": 124, + "community_name": "Desktop", + "norm_label": "ws" + }, + { + "label": "ws", + "file_type": "concept", + "source_file": "apps/desktop/package.json", + "source_location": "L43", + "_origin": "ast", + "id": "apps_desktop_package_json_ws", + "community": 124, + "community_name": "Desktop", + "norm_label": "ws" + }, + { + "label": "devDependencies", + "file_type": "code", + "source_file": "apps/desktop/package.json", + "source_location": "L45", + "_origin": "ast", + "id": "apps_desktop_package_devdependencies", + "community": 124, + "community_name": "Desktop", + "norm_label": "devdependencies" + }, + { + "label": "electron", + "file_type": "code", + "source_file": "apps/desktop/package.json", + "source_location": "L46", + "_origin": "ast", + "id": "apps_desktop_package_devdependencies_electron", + "community": 124, + "community_name": "Desktop", + "norm_label": "electron" + }, + { + "label": "electron", + "file_type": "concept", + "source_file": "apps/desktop/package.json", + "source_location": "L46", + "_origin": "ast", + "id": "apps_desktop_package_json_electron", + "community": 124, + "community_name": "Desktop", + "norm_label": "electron" + }, + { + "label": "electron-builder", + "file_type": "code", + "source_file": "apps/desktop/package.json", + "source_location": "L47", + "_origin": "ast", + "id": "apps_desktop_package_devdependencies_electron_builder", + "community": 124, + "community_name": "Desktop", + "norm_label": "electron-builder" + }, + { + "label": "electron-builder", + "file_type": "concept", + "source_file": "apps/desktop/package.json", + "source_location": "L47", + "_origin": "ast", + "id": "apps_desktop_package_json_electron_builder", + "community": 124, + "community_name": "Desktop", + "norm_label": "electron-builder" + }, + { + "label": "start-optimando.ps1", + "file_type": "code", + "source_file": "apps/desktop/start-optimando.ps1", + "source_location": "L1", + "_origin": "ast", + "id": "apps_desktop_start_optimando", + "community": 583, + "community_name": "Desktop #583", + "norm_label": "start-optimando.ps1" + }, + { + "label": "start-server.js", + "file_type": "code", + "source_file": "apps/desktop/start-server.js", + "source_location": "L1", + "_origin": "ast", + "id": "apps_desktop_start_server", + "community": 454, + "community_name": "Desktop #454", + "norm_label": "start-server.js" + }, + { + "label": "{ spawn }", + "file_type": "code", + "source_file": "apps/desktop/start-server.js", + "source_location": "L3", + "_origin": "ast", + "id": "apps_desktop_start_server_spawn", + "community": 454, + "community_name": "Desktop #454", + "norm_label": "{ spawn }" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/desktop/start-server.js", + "source_location": "L4", + "_origin": "ast", + "id": "apps_desktop_start_server_path", + "community": 454, + "community_name": "Desktop #454", + "norm_label": "path" + }, + { + "label": "electronProcess", + "file_type": "code", + "source_file": "apps/desktop/start-server.js", + "source_location": "L9", + "_origin": "ast", + "id": "apps_desktop_start_server_electronprocess", + "community": 454, + "community_name": "Desktop #454", + "norm_label": "electronprocess" + }, + { + "label": "websocket-server.js", + "file_type": "code", + "source_file": "apps/desktop/websocket-server.js", + "source_location": "L1", + "_origin": "ast", + "id": "apps_desktop_websocket_server", + "community": 494, + "community_name": "Desktop #494", + "norm_label": "websocket-server.js" + }, + { + "label": "WebSocket", + "file_type": "code", + "source_file": "apps/desktop/websocket-server.js", + "source_location": "L1", + "_origin": "ast", + "id": "apps_desktop_websocket_server_websocket", + "community": 494, + "community_name": "Desktop #494", + "norm_label": "websocket" + }, + { + "label": "wss", + "file_type": "code", + "source_file": "apps/desktop/websocket-server.js", + "source_location": "L4", + "_origin": "ast", + "id": "apps_desktop_websocket_server_wss", + "community": 494, + "community_name": "Desktop #494", + "norm_label": "wss" + }, + { + "label": ".eslintrc.cjs", + "file_type": "code", + "source_file": "apps/electron-vite-project/.eslintrc.cjs", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_eslintrc", + "community": 591, + "community_name": "Eslintrc", + "norm_label": ".eslintrc.cjs" + }, + { + "label": "RESTART_WITH_CPU_CHECK.ps1", + "file_type": "code", + "source_file": "apps/electron-vite-project/RESTART_WITH_CPU_CHECK.ps1", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_restart_with_cpu_check", + "community": 598, + "community_name": "Restartwithcpucheck", + "norm_label": "restart_with_cpu_check.ps1" + }, + { + "label": "check-sqlite-db.ps1", + "file_type": "code", + "source_file": "apps/electron-vite-project/check-sqlite-db.ps1", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_check_sqlite_db", + "community": 584, + "community_name": "Checksqlitedb", + "norm_label": "check-sqlite-db.ps1" + }, + { + "label": "electron-builder.config.cjs", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron-builder.config.cjs", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_builder_config", + "community": 358, + "community_name": "Electronbuilderconfig", + "norm_label": "electron-builder.config.cjs" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron-builder.config.cjs", + "source_location": "L3", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_builder_config_path", + "community": 358, + "community_name": "Electronbuilderconfig", + "norm_label": "path" + }, + { + "label": "fs", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron-builder.config.cjs", + "source_location": "L4", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_builder_config_fs", + "community": 358, + "community_name": "Electronbuilderconfig", + "norm_label": "fs" + }, + { + "label": "windowsOutputDirMarker()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron-builder.config.cjs", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_builder_config_windowsoutputdirmarker", + "community": 358, + "community_name": "Electronbuilderconfig", + "norm_label": "windowsoutputdirmarker()" + }, + { + "label": "workspaceRoot", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron-builder.config.cjs", + "source_location": "L16", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_builder_config_workspaceroot", + "community": 358, + "community_name": "Electronbuilderconfig", + "norm_label": "workspaceroot" + }, + { + "label": "findFile()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron-builder.config.cjs", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_builder_config_findfile", + "community": 358, + "community_name": "Electronbuilderconfig", + "norm_label": "findfile()" + }, + { + "label": "tesseractCoreWasmPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron-builder.config.cjs", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_builder_config_tesseractcorewasmpath", + "community": 358, + "community_name": "Electronbuilderconfig", + "norm_label": "tesseractcorewasmpath()" + }, + { + "label": "extraResources", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron-builder.config.cjs", + "source_location": "L38", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_builder_config_extraresources", + "community": 358, + "community_name": "Electronbuilderconfig", + "norm_label": "extraresources" + }, + { + "label": "wasm", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron-builder.config.cjs", + "source_location": "L42", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_builder_config_wasm", + "community": 358, + "community_name": "Electronbuilderconfig", + "norm_label": "wasm" + }, + { + "label": "tesseractLang", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron-builder.config.cjs", + "source_location": "L50", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_builder_config_tesseractlang", + "community": 358, + "community_name": "Electronbuilderconfig", + "norm_label": "tesseractlang" + }, + { + "label": "handshakeAcceptSafeOpts.regression.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/__tests__/handshakeAcceptSafeOpts.regression.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_tests_handshakeacceptsafeopts_regression_test", + "community": 130, + "community_name": "Handshake #130", + "norm_label": "handshakeacceptsafeopts.regression.test.ts" + }, + { + "label": "bootstrapUserData.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/bootstrapUserData.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_bootstrapuserdata", + "community": 316, + "community_name": "Email #316", + "norm_label": "bootstrapuserdata.ts" + }, + { + "label": "getWrDeskUserDataPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/bootstrapUserData.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_bootstrapuserdata_getwrdeskuserdatapath", + "community": 316, + "community_name": "Email #316", + "norm_label": "getwrdeskuserdatapath()" + }, + { + "label": "customUserDataPath", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/bootstrapUserData.ts", + "source_location": "L29", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_bootstrapuserdata_customuserdatapath", + "community": 316, + "community_name": "Email #316", + "norm_label": "customuserdatapath" + }, + { + "label": "diffWatcher.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_diffwatcher", + "community": 168, + "community_name": "Diffwatcher", + "norm_label": "diffwatcher.ts" + }, + { + "label": "createDiffTriggerId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_diffwatcher_createdifftriggerid", + "community": 168, + "community_name": "Diffwatcher", + "norm_label": "createdifftriggerid()" + }, + { + "label": "WatcherEntry", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_diffwatcher_watcherentry", + "community": 168, + "community_name": "Diffwatcher", + "norm_label": "watcherentry" + }, + { + "label": "DEFAULT_ALLOWED_EXTENSIONS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L38", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_diffwatcher_default_allowed_extensions", + "community": 168, + "community_name": "Diffwatcher", + "norm_label": "default_allowed_extensions" + }, + { + "label": "isAllowedExtension()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_diffwatcher_isallowedextension", + "community": 168, + "community_name": "Diffwatcher", + "norm_label": "isallowedextension()" + }, + { + "label": "pathOnlySnapshot()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L66", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_diffwatcher_pathonlysnapshot", + "community": 168, + "community_name": "Diffwatcher", + "norm_label": "pathonlysnapshot()" + }, + { + "label": "parsePathOnly()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L70", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_diffwatcher_parsepathonly", + "community": 168, + "community_name": "Diffwatcher", + "norm_label": "parsepathonly()" + }, + { + "label": "isBinaryBuffer()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L76", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_diffwatcher_isbinarybuffer", + "community": 168, + "community_name": "Diffwatcher", + "norm_label": "isbinarybuffer()" + }, + { + "label": "binarySentinel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L84", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_diffwatcher_binarysentinel", + "community": 168, + "community_name": "Diffwatcher", + "norm_label": "binarysentinel()" + }, + { + "label": "parseBinarySentinel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L88", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_diffwatcher_parsebinarysentinel", + "community": 168, + "community_name": "Diffwatcher", + "norm_label": "parsebinarysentinel()" + }, + { + "label": "safeLstatSync()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L94", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_diffwatcher_safelstatsync", + "community": 168, + "community_name": "Diffwatcher", + "norm_label": "safelstatsync()" + }, + { + "label": "snapshotFile()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L110", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_diffwatcher_snapshotfile", + "community": 168, + "community_name": "Diffwatcher", + "norm_label": "snapshotfile()" + }, + { + "label": "buildUnifiedStyleDiff()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L133", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_diffwatcher_buildunifiedstylediff", + "community": 168, + "community_name": "Diffwatcher", + "norm_label": "buildunifiedstylediff()" + }, + { + "label": "truncateText()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L149", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_diffwatcher_truncatetext", + "community": 168, + "community_name": "Diffwatcher", + "norm_label": "truncatetext()" + }, + { + "label": "ScanResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L155", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_diffwatcher_scanresult", + "community": 168, + "community_name": "Diffwatcher", + "norm_label": "scanresult" + }, + { + "label": "scanFolderSnapshots()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L164", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_diffwatcher_scanfoldersnapshots", + "community": 168, + "community_name": "Diffwatcher", + "norm_label": "scanfoldersnapshots()" + }, + { + "label": "DiffWatcherService", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L214", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice", + "community": 168, + "community_name": "Diffwatcher", + "norm_label": "diffwatcherservice" + }, + { + "label": ".onDiffReady()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L217", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_ondiffready", + "community": 168, + "community_name": "Diffwatcher", + "norm_label": ".ondiffready()" + }, + { + "label": ".onError()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L219", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_onerror", + "community": 168, + "community_name": "Diffwatcher", + "norm_label": ".onerror()" + }, + { + "label": ".setOnDiffReady()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L221", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_setondiffready", + "community": 168, + "community_name": "Diffwatcher", + "norm_label": ".setondiffready()" + }, + { + "label": ".setOnError()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L225", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_setonerror", + "community": 168, + "community_name": "Diffwatcher", + "norm_label": ".setonerror()" + }, + { + "label": ".clearDebounce()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L229", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_cleardebounce", + "community": 168, + "community_name": "Diffwatcher", + "norm_label": ".cleardebounce()" + }, + { + "label": ".scheduleComputeDiff()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L236", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_schedulecomputediff", + "community": 168, + "community_name": "Diffwatcher", + "norm_label": ".schedulecomputediff()" + }, + { + "label": ".disableWatcher()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L255", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_disablewatcher", + "community": 168, + "community_name": "Diffwatcher", + "norm_label": ".disablewatcher()" + }, + { + "label": ".computeDiff()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L272", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_computediff", + "community": 168, + "community_name": "Diffwatcher", + "norm_label": ".computediff()" + }, + { + "label": ".start()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L376", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_start", + "community": 168, + "community_name": "Diffwatcher", + "norm_label": ".start()" + }, + { + "label": ".stop()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L457", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_stop", + "community": 168, + "community_name": "Diffwatcher", + "norm_label": ".stop()" + }, + { + "label": ".stopAll()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L469", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_stopall", + "community": 168, + "community_name": "Diffwatcher", + "norm_label": ".stopall()" + }, + { + "label": ".isWatching()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L475", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_iswatching", + "community": 168, + "community_name": "Diffwatcher", + "norm_label": ".iswatching()" + }, + { + "label": ".runNow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L484", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_runnow", + "community": 168, + "community_name": "Diffwatcher", + "norm_label": ".runnow()" + }, + { + "label": ".getStatus()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L498", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_getstatus", + "community": 168, + "community_name": "Diffwatcher", + "norm_label": ".getstatus()" + }, + { + "label": "electron-env.d.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/electron-env.d.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_electron_env_d", + "community": 455, + "community_name": "Electronenvd", + "norm_label": "electron-env.d.ts" + }, + { + "label": "NodeJS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/electron-env.d.ts", + "source_location": "L3", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_electron_env_d_nodejs", + "community": 455, + "community_name": "Electronenvd", + "norm_label": "nodejs" + }, + { + "label": "ProcessEnv", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/electron-env.d.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_electron_env_d_processenv", + "community": 455, + "community_name": "Electronenvd", + "norm_label": "processenv" + }, + { + "label": "Window", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/electron-env.d.ts", + "source_location": "L25", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_electron_env_d_window", + "community": 455, + "community_name": "Electronenvd", + "norm_label": "window" + }, + { + "label": "handshakeAcceptSafeOpts.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/handshakeAcceptSafeOpts.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_handshakeacceptsafeopts", + "community": 130, + "community_name": "Handshake #130", + "norm_label": "handshakeacceptsafeopts.ts" + }, + { + "label": "trimStr()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/handshakeAcceptSafeOpts.ts", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_handshakeacceptsafeopts_trimstr", + "community": 130, + "community_name": "Handshake #130", + "norm_label": "trimstr()" + }, + { + "label": "optString()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/handshakeAcceptSafeOpts.ts", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_handshakeacceptsafeopts_optstring", + "community": 130, + "community_name": "Handshake #130", + "norm_label": "optstring()" + }, + { + "label": "safeKeyAgreement()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/handshakeAcceptSafeOpts.ts", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_handshakeacceptsafeopts_safekeyagreement", + "community": 130, + "community_name": "Handshake #130", + "norm_label": "safekeyagreement()" + }, + { + "label": "safePolicySelections()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/handshakeAcceptSafeOpts.ts", + "source_location": "L41", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_handshakeacceptsafeopts_safepolicyselections", + "community": 130, + "community_name": "Handshake #130", + "norm_label": "safepolicyselections()" + }, + { + "label": "buildHandshakeAcceptSafeOpts()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/handshakeAcceptSafeOpts.ts", + "source_location": "L52", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_handshakeacceptsafeopts_buildhandshakeacceptsafeopts", + "community": 130, + "community_name": "Handshake #130", + "norm_label": "buildhandshakeacceptsafeopts()" + }, + { + "label": "ipc/db.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/ipc/db.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_ipc_db", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": "ipc/db.ts" + }, + { + "label": "getPostgresAdapter()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/ipc/db.ts", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_ipc_db_getpostgresadapter", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": "getpostgresadapter()" + }, + { + "label": "redactPassword()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/ipc/db.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_ipc_db_redactpassword", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": "redactpassword()" + }, + { + "label": "testConnection()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/ipc/db.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_ipc_db_testconnection", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": "testconnection()" + }, + { + "label": "syncChromeDataToPostgres()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/ipc/db.ts", + "source_location": "L123", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_ipc_db_syncchromedatatopostgres", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": "syncchromedatatopostgres()" + }, + { + "label": "getConfig()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/ipc/db.ts", + "source_location": "L165", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_ipc_db_getconfig", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": "getconfig()" + }, + { + "label": "registerDbHandlers()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/ipc/db.ts", + "source_location": "L196", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_ipc_db_registerdbhandlers", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": "registerdbhandlers()" + }, + { + "label": "capture.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/lmgtfy/capture.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_lmgtfy_capture", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": "capture.ts" + }, + { + "label": "capturesRoot()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/lmgtfy/capture.ts", + "source_location": "L6", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_lmgtfy_capture_capturesroot", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": "capturesroot()" + }, + { + "label": "ensureDir()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/lmgtfy/capture.ts", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_lmgtfy_capture_ensuredir", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": "ensuredir()" + }, + { + "label": "datedDir()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/lmgtfy/capture.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_lmgtfy_capture_dateddir", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": "dateddir()" + }, + { + "label": "captureScreenshot()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/lmgtfy/capture.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_lmgtfy_capture_capturescreenshot", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": "capturescreenshot()" + }, + { + "label": "startRegionStream()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/lmgtfy/capture.ts", + "source_location": "L80", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_lmgtfy_capture_startregionstream", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "startregionstream()" + }, + { + "label": "lmgtfy/ipc.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/lmgtfy/ipc.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_lmgtfy_ipc", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "lmgtfy/ipc.ts" + }, + { + "label": "LmgtfyChannels", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/lmgtfy/ipc.ts", + "source_location": "L3", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_lmgtfy_ipc_lmgtfychannels", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "lmgtfychannels" + }, + { + "label": "CaptureMode", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/lmgtfy/ipc.ts", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_lmgtfy_ipc_capturemode", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "capturemode" + }, + { + "label": "CaptureMeta", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/lmgtfy/ipc.ts", + "source_location": "L15", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_lmgtfy_ipc_capturemeta", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "capturemeta" + }, + { + "label": "CaptureEventPayload", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/lmgtfy/ipc.ts", + "source_location": "L26", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_lmgtfy_ipc_captureeventpayload", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "captureeventpayload" + }, + { + "label": "emitCapture()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/lmgtfy/ipc.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_lmgtfy_ipc_emitcapture", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "emitcapture()" + }, + { + "label": "registerHandler()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/lmgtfy/ipc.ts", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_lmgtfy_ipc_registerhandler", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "registerhandler()" + }, + { + "label": "unregisterAll()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/lmgtfy/ipc.ts", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_lmgtfy_ipc_unregisterall", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "unregisterall()" + }, + { + "label": "lmgtfy/overlay.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/lmgtfy/overlay.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_lmgtfy_overlay", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": "lmgtfy/overlay.ts" + }, + { + "label": "Selection", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/lmgtfy/overlay.ts", + "source_location": "L3", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_lmgtfy_overlay_selection", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": "selection" + }, + { + "label": "cancelActiveSelection()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/lmgtfy/overlay.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_lmgtfy_overlay_cancelactiveselection", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": "cancelactiveselection()" + }, + { + "label": "activeOverlays", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/lmgtfy/overlay.ts", + "source_location": "L27", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_lmgtfy_overlay_activeoverlays", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": "activeoverlays" + }, + { + "label": "closeAllOverlays()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/lmgtfy/overlay.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_lmgtfy_overlay_closealloverlays", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": "closealloverlays()" + }, + { + "label": "beginOverlay()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/lmgtfy/overlay.ts", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_lmgtfy_overlay_beginoverlay", + "community": 151, + "community_name": "Mocks Lmgtfy Email", + "norm_label": "beginoverlay()" + }, + { + "label": "showStreamTriggerOverlay()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/lmgtfy/overlay.ts", + "source_location": "L237", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_lmgtfy_overlay_showstreamtriggeroverlay", + "community": 151, + "community_name": "Mocks Lmgtfy Email", + "norm_label": "showstreamtriggeroverlay()" + }, + { + "label": "presets.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/lmgtfy/presets.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_lmgtfy_presets", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "presets.ts" + }, + { + "label": "RegionPreset", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/lmgtfy/presets.ts", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_lmgtfy_presets_regionpreset", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "regionpreset" + }, + { + "label": "PresetsFile", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/lmgtfy/presets.ts", + "source_location": "L25", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_lmgtfy_presets_presetsfile", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "presetsfile" + }, + { + "label": "getRootDir()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/lmgtfy/presets.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_lmgtfy_presets_getrootdir", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "getrootdir()" + }, + { + "label": "getFilePath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/lmgtfy/presets.ts", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_lmgtfy_presets_getfilepath", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "getfilepath()" + }, + { + "label": "getTaggedTriggersPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/lmgtfy/presets.ts", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_lmgtfy_presets_gettaggedtriggerspath", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "gettaggedtriggerspath()" + }, + { + "label": "getDiffWatchersPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/lmgtfy/presets.ts", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_lmgtfy_presets_getdiffwatcherspath", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "getdiffwatcherspath()" + }, + { + "label": "normalisePresetTag()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/lmgtfy/presets.ts", + "source_location": "L48", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_lmgtfy_presets_normalisepresettag", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "normalisepresettag()" + }, + { + "label": "ensureDir()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/lmgtfy/presets.ts", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_lmgtfy_presets_ensuredir", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "ensuredir()" + }, + { + "label": "loadPresets()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/lmgtfy/presets.ts", + "source_location": "L58", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_lmgtfy_presets_loadpresets", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "loadpresets()" + }, + { + "label": "savePresets()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/lmgtfy/presets.ts", + "source_location": "L71", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_lmgtfy_presets_savepresets", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "savepresets()" + }, + { + "label": "loadTaggedTriggersList()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/lmgtfy/presets.ts", + "source_location": "L76", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_lmgtfy_presets_loadtaggedtriggerslist", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "loadtaggedtriggerslist()" + }, + { + "label": "saveTaggedTriggersList()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/lmgtfy/presets.ts", + "source_location": "L100", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_lmgtfy_presets_savetaggedtriggerslist", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "savetaggedtriggerslist()" + }, + { + "label": "loadDiffWatchersList()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/lmgtfy/presets.ts", + "source_location": "L105", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_lmgtfy_presets_loaddiffwatcherslist", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "loaddiffwatcherslist()" + }, + { + "label": "saveDiffWatchersList()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/lmgtfy/presets.ts", + "source_location": "L129", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_lmgtfy_presets_savediffwatcherslist", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "savediffwatcherslist()" + }, + { + "label": "upsertRegion()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/lmgtfy/presets.ts", + "source_location": "L134", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_lmgtfy_presets_upsertregion", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "upsertregion()" + }, + { + "label": "gmail-api.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_mailguard_gmail_api", + "community": 175, + "community_name": "MailGuard", + "norm_label": "gmail-api.ts" + }, + { + "label": "OAUTH_CONFIG", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L17", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_mailguard_gmail_api_oauth_config", + "community": 175, + "community_name": "MailGuard", + "norm_label": "oauth_config" + }, + { + "label": "TokenData", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L27", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_mailguard_gmail_api_tokendata", + "community": 175, + "community_name": "MailGuard", + "norm_label": "tokendata" + }, + { + "label": "GmailMessage", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L33", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_mailguard_gmail_api_gmailmessage", + "community": 175, + "community_name": "MailGuard", + "norm_label": "gmailmessage" + }, + { + "label": "isGmailApiConfigured()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L51", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_mailguard_gmail_api_isgmailapiconfigured", + "community": 175, + "community_name": "MailGuard", + "norm_label": "isgmailapiconfigured()" + }, + { + "label": "isGmailApiAuthenticated()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_mailguard_gmail_api_isgmailapiauthenticated", + "community": 175, + "community_name": "MailGuard", + "norm_label": "isgmailapiauthenticated()" + }, + { + "label": "setOAuthCredentials()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L64", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_mailguard_gmail_api_setoauthcredentials", + "community": 175, + "community_name": "MailGuard", + "norm_label": "setoauthcredentials()" + }, + { + "label": "getOAuthCredentials()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L72", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_mailguard_gmail_api_getoauthcredentials", + "community": 175, + "community_name": "MailGuard", + "norm_label": "getoauthcredentials()" + }, + { + "label": "startOAuthFlow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L82", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_mailguard_gmail_api_startoauthflow", + "community": 175, + "community_name": "MailGuard", + "norm_label": "startoauthflow()" + }, + { + "label": "buildAuthUrl()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L144", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_mailguard_gmail_api_buildauthurl", + "community": 175, + "community_name": "MailGuard", + "norm_label": "buildauthurl()" + }, + { + "label": "startLocalServer()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L160", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_mailguard_gmail_api_startlocalserver", + "community": 175, + "community_name": "MailGuard", + "norm_label": "startlocalserver()" + }, + { + "label": "exchangeCodeForTokens()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L203", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_mailguard_gmail_api_exchangecodefortokens", + "community": 175, + "community_name": "MailGuard", + "norm_label": "exchangecodefortokens()" + }, + { + "label": "refreshAccessToken()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L253", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_mailguard_gmail_api_refreshaccesstoken", + "community": 175, + "community_name": "MailGuard", + "norm_label": "refreshaccesstoken()" + }, + { + "label": "ensureValidToken()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L307", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_mailguard_gmail_api_ensurevalidtoken", + "community": 175, + "community_name": "MailGuard", + "norm_label": "ensurevalidtoken()" + }, + { + "label": "fetchEmailById()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L323", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_mailguard_gmail_api_fetchemailbyid", + "community": 175, + "community_name": "MailGuard", + "norm_label": "fetchemailbyid()" + }, + { + "label": "searchEmails()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L361", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_mailguard_gmail_api_searchemails", + "community": 175, + "community_name": "MailGuard", + "norm_label": "searchemails()" + }, + { + "label": "findEmailByPreview()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L405", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_mailguard_gmail_api_findemailbypreview", + "community": 175, + "community_name": "MailGuard", + "norm_label": "findemailbypreview()" + }, + { + "label": "parseGmailMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L425", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_mailguard_gmail_api_parsegmailmessage", + "community": 175, + "community_name": "MailGuard", + "norm_label": "parsegmailmessage()" + }, + { + "label": "extractBodyFromParts()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L462", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_mailguard_gmail_api_extractbodyfromparts", + "community": 175, + "community_name": "MailGuard", + "norm_label": "extractbodyfromparts()" + }, + { + "label": "extractAttachmentsFromParts()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L482", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_mailguard_gmail_api_extractattachmentsfromparts", + "community": 175, + "community_name": "MailGuard", + "norm_label": "extractattachmentsfromparts()" + }, + { + "label": "decodeBase64Url()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L500", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_mailguard_gmail_api_decodebase64url", + "community": 175, + "community_name": "MailGuard", + "norm_label": "decodebase64url()" + }, + { + "label": "htmlToText()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L509", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_mailguard_gmail_api_htmltotext", + "community": 175, + "community_name": "MailGuard", + "norm_label": "htmltotext()" + }, + { + "label": "sanitizeEmailBody()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L533", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_mailguard_gmail_api_sanitizeemailbody", + "community": 175, + "community_name": "MailGuard", + "norm_label": "sanitizeemailbody()" + }, + { + "label": "disconnectGmailApi()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L544", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_mailguard_gmail_api_disconnectgmailapi", + "community": 175, + "community_name": "MailGuard", + "norm_label": "disconnectgmailapi()" + }, + { + "label": "exportCredentials()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L553", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_mailguard_gmail_api_exportcredentials", + "community": 175, + "community_name": "MailGuard", + "norm_label": "exportcredentials()" + }, + { + "label": "importCredentials()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L564", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_mailguard_gmail_api_importcredentials", + "community": 175, + "community_name": "MailGuard", + "norm_label": "importcredentials()" + }, + { + "label": "getCredentialsPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L573", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_mailguard_gmail_api_getcredentialspath", + "community": 175, + "community_name": "MailGuard", + "norm_label": "getcredentialspath()" + }, + { + "label": "saveCredentialsToDisk()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L581", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_mailguard_gmail_api_savecredentialstodisk", + "community": 175, + "community_name": "MailGuard", + "norm_label": "savecredentialstodisk()" + }, + { + "label": "loadCredentialsFromDisk()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L595", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_mailguard_gmail_api_loadcredentialsfromdisk", + "community": 175, + "community_name": "MailGuard", + "norm_label": "loadcredentialsfromdisk()" + }, + { + "label": "deleteCredentialsFromDisk()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L614", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_mailguard_gmail_api_deletecredentialsfromdisk", + "community": 175, + "community_name": "MailGuard", + "norm_label": "deletecredentialsfromdisk()" + }, + { + "label": "mailguard/overlay.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/mailguard/overlay.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_mailguard_overlay", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "mailguard/overlay.ts" + }, + { + "label": "browserWindowOffset", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/mailguard/overlay.ts", + "source_location": "L17", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_mailguard_overlay_browserwindowoffset", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "browserwindowoffset" + }, + { + "label": "ProtectedAreaBounds", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/mailguard/overlay.ts", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_mailguard_overlay_protectedareabounds", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "protectedareabounds" + }, + { + "label": "themeColors", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/mailguard/overlay.ts", + "source_location": "L38", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_mailguard_overlay_themecolors", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "themecolors" + }, + { + "label": "EmailRowRect", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/mailguard/overlay.ts", + "source_location": "L70", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_mailguard_overlay_emailrowrect", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "emailrowrect" + }, + { + "label": "WindowInfo", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/mailguard/overlay.ts", + "source_location": "L78", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_mailguard_overlay_windowinfo", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "windowinfo" + }, + { + "label": "SanitizedEmail", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/mailguard/overlay.ts", + "source_location": "L87", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_mailguard_overlay_sanitizedemail", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "sanitizedemail" + }, + { + "label": "activateMailGuard()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/mailguard/overlay.ts", + "source_location": "L102", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_mailguard_overlay_activatemailguard", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "activatemailguard()" + }, + { + "label": "deactivateMailGuard()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/mailguard/overlay.ts", + "source_location": "L222", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_mailguard_overlay_deactivatemailguard", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "deactivatemailguard()" + }, + { + "label": "hideOverlay()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/mailguard/overlay.ts", + "source_location": "L237", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_mailguard_overlay_hideoverlay", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "hideoverlay()" + }, + { + "label": "showOverlay()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/mailguard/overlay.ts", + "source_location": "L247", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_mailguard_overlay_showoverlay", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "showoverlay()" + }, + { + "label": "updateProtectedArea()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/mailguard/overlay.ts", + "source_location": "L259", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_mailguard_overlay_updateprotectedarea", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "updateprotectedarea()" + }, + { + "label": "updateWindowPosition()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/mailguard/overlay.ts", + "source_location": "L308", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_mailguard_overlay_updatewindowposition", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "updatewindowposition()" + }, + { + "label": "updateEmailRows()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/mailguard/overlay.ts", + "source_location": "L348", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_mailguard_overlay_updateemailrows", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "updateemailrows()" + }, + { + "label": "showSanitizedEmail()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/mailguard/overlay.ts", + "source_location": "L363", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_mailguard_overlay_showsanitizedemail", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "showsanitizedemail()" + }, + { + "label": "closeLightbox()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/mailguard/overlay.ts", + "source_location": "L373", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_mailguard_overlay_closelightbox", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "closelightbox()" + }, + { + "label": "isMailGuardActive()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/mailguard/overlay.ts", + "source_location": "L381", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_mailguard_overlay_ismailguardactive", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "ismailguardactive()" + }, + { + "label": "getOverlayHtml()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/mailguard/overlay.ts", + "source_location": "L388", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_mailguard_overlay_getoverlayhtml", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "getoverlayhtml()" + }, + { + "label": "IMPORTANT: Keep blocking mouse events - never allow passthrough", + "file_type": "rationale", + "source_file": "apps/electron-vite-project/electron/mailguard/overlay.ts", + "source_location": "L376", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_mailguard_overlay_rationale_376", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "important: keep blocking mouse events - never allow passthrough" + }, + { + "label": "main.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "main.ts" + }, + { + "label": "stripDataUriPrefixForLlm()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L51", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_stripdatauriprefixforllm", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "stripdatauriprefixforllm()" + }, + { + "label": "enrichHttpChatMessages()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L57", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_enrichhttpchatmessages", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "enrichhttpchatmessages()" + }, + { + "label": "formatMainLogArg()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L109", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_formatmainlogarg", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "formatmainlogarg()" + }, + { + "label": "broadcastMainProcessLog()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L118", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_broadcastmainprocesslog", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "broadcastmainprocesslog()" + }, + { + "label": "broadcastOrchestratorSessionDisplayUpdated()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L132", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_broadcastorchestratorsessiondisplayupdated", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "broadcastorchestratorsessiondisplayupdated()" + }, + { + "label": "logoutFast()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L170", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_logoutfast", + "community": 176, + "community_name": "Vault #176", + "norm_label": "logoutfast()" + }, + { + "label": "logoutCleanupAsync()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L259", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_logoutcleanupasync", + "community": 103, + "community_name": "Auth Vault", + "norm_label": "logoutcleanupasync()" + }, + { + "label": "refreshEntitlements()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L300", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_refreshentitlements", + "community": 103, + "community_name": "Auth Vault", + "norm_label": "refreshentitlements()" + }, + { + "label": "getEffectiveTier()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L337", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_geteffectivetier", + "community": 103, + "community_name": "Auth Vault", + "norm_label": "geteffectivetier()" + }, + { + "label": "resolveRequestTier()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L350", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_resolverequesttier", + "community": 103, + "community_name": "Auth Vault", + "norm_label": "resolverequesttier()" + }, + { + "label": "lockVaultIfLoaded()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L392", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_lockvaultifloaded", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "lockvaultifloaded()" + }, + { + "label": "testLoginOnce()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L432", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_testloginonce", + "community": 121, + "community_name": "Auth", + "norm_label": "testloginonce()" + }, + { + "label": "checkStartupSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L455", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_checkstartupsession", + "community": 103, + "community_name": "Auth Vault", + "norm_label": "checkstartupsession()" + }, + { + "label": "openDashboardWindow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L498", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_opendashboardwindow", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "opendashboardwindow()" + }, + { + "label": "requestLogin()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L551", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_requestlogin", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "requestlogin()" + }, + { + "label": "getAuthStatus()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L619", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_getauthstatus", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "getauthstatus()" + }, + { + "label": "gotTheLock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L629", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_gotthelock", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "gotthelock" + }, + { + "label": "debugLog()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L644", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_debuglog", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "debuglog()" + }, + { + "label": "LAUNCH_SECRET_BUF", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L671", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_launch_secret_buf", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "launch_secret_buf" + }, + { + "label": "launchSecretHex()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L677", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_launchsecrethex", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "launchsecrethex()" + }, + { + "label": "validateLaunchSecret()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L685", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validatelaunchsecret", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "validatelaunchsecret()" + }, + { + "label": "runtimeIdentityCommit()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L700", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_runtimeidentitycommit", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "runtimeidentitycommit()" + }, + { + "label": "runtimeIdentityBranch()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L706", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_runtimeidentitybranch", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "runtimeidentitybranch()" + }, + { + "label": "runtimeBuildTimestamp()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L712", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_runtimebuildtimestamp", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "runtimebuildtimestamp()" + }, + { + "label": "logRuntimeIdentityLine()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L719", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_logruntimeidentityline", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "logruntimeidentityline()" + }, + { + "label": "logLogIdentityLine()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L740", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_loglogidentityline", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "loglogidentityline()" + }, + { + "label": "orchestratorBuildMeta()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L757", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestratorbuildmeta", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "orchestratorbuildmeta()" + }, + { + "label": "CORS_ALLOWED_ORIGINS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L770", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_cors_allowed_origins", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "cors_allowed_origins" + }, + { + "label": "isLocalDevHttpOrigin()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L778", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_islocaldevhttporigin", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "islocaldevhttporigin()" + }, + { + "label": "isCorsAllowedOrigin()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L791", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_iscorsallowedorigin", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "iscorsallowedorigin()" + }, + { + "label": "corsPnaHeaders()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L798", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_corspnaheaders", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "corspnaheaders()" + }, + { + "label": "getHttpApiListenHost()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L814", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_gethttpapilistenhost", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "gethttpapilistenhost()" + }, + { + "label": "isPortAvailable()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L821", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_isportavailable", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "isportavailable()" + }, + { + "label": "killProcessOnPort()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L836", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_killprocessonport", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "killprocessonport()" + }, + { + "label": "killStaleProcesses()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L872", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_killstaleprocesses", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "killstaleprocesses()" + }, + { + "label": "ensurePortsAvailable()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L888", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ensureportsavailable", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "ensureportsavailable()" + }, + { + "label": "emailRowPreviewData", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L994", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_emailrowpreviewdata", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "emailrowpreviewdata" + }, + { + "label": "__dirname", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L999", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_dirname", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "__dirname" + }, + { + "label": "VITE_DEV_SERVER_URL", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1013", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vite_dev_server_url", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "vite_dev_server_url" + }, + { + "label": "MAIN_DIST", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1014", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_main_dist", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "main_dist" + }, + { + "label": "RENDERER_DIST", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1015", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_renderer_dist", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "renderer_dist" + }, + { + "label": "LmgtfyPromptSurface", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1025", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_lmgtfypromptsurface", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "lmgtfypromptsurface" + }, + { + "label": "resolveLmgtfyPromptSurfaceFromSource()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1030", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_resolvelmgtfypromptsurfacefromsource", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "resolvelmgtfypromptsurfacefromsource()" + }, + { + "label": "sourceForExecuteSurface()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1035", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sourceforexecutesurface", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "sourceforexecutesurface()" + }, + { + "label": "broadcastToExtensions()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1060", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_broadcasttoextensions", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "broadcasttoextensions()" + }, + { + "label": "persistDiffWatcherDisabled()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1079", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_persistdiffwatcherdisabled", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "persistdiffwatcherdisabled()" + }, + { + "label": "wireDiffWatcherHostCallbacks()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1091", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_wirediffwatcherhostcallbacks", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "wirediffwatcherhostcallbacks()" + }, + { + "label": "reconcileDiffWatchersAfterSave()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1138", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_reconcilediffwatchersaftersave", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "reconcilediffwatchersaftersave()" + }, + { + "label": "startPersistedDiffWatchers()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1159", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_startpersisteddiffwatchers", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "startpersisteddiffwatchers()" + }, + { + "label": "handleDeepLink()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1250", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handledeeplink", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "handledeeplink()" + }, + { + "label": "startHidden", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1296", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_starthidden", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "starthidden" + }, + { + "label": "enableDevTools", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1297", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_enabledevtools", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "enabledevtools" + }, + { + "label": "createWindow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1301", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_createwindow", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "createwindow()" + }, + { + "label": "createTray()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L2300", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_createtray", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "createtray()" + }, + { + "label": "updateTrayMenu()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L2335", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_updatetraymenu", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "updatetraymenu()" + }, + { + "label": "setupFileLogging()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L2532", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_setupfilelogging", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "setupfilelogging()" + }, + { + "label": "getDbeaverDataPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L2617", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_getdbeaverdatapath", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "getdbeaverdatapath()" + }, + { + "label": "launchDBeaver()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L2635", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_launchdbeaver", + "community": 203, + "community_name": "Vault #203", + "norm_label": "launchdbeaver()" + }, + { + "label": "fireSandboxReadCleanupHint()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L2828", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_firesandboxreadcleanuphint", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "firesandboxreadcleanuphint()" + }, + { + "label": "getHandshakeDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L3198", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_gethandshakedb", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "gethandshakedb()" + }, + { + "label": "getLedgerDbOrOpen()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L3224", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_getledgerdboropen", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "getledgerdboropen()" + }, + { + "label": "dispatchDashboardMethodRpc()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L3242", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_dispatchdashboardmethodrpc", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "dispatchdashboardmethodrpc()" + }, + { + "label": "beapSessionImportPolicyHook()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L3988", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_beapsessionimportpolicyhook", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "beapsessionimportpolicyhook()" + }, + { + "label": "mapInferenceRoutingError()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L4443", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_mapinferenceroutingerror", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "mapinferenceroutingerror()" + }, + { + "label": "registerWindowsTaskScheduler()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L5554", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_registerwindowstaskscheduler", + "community": 220, + "community_name": "Libreoffice", + "norm_label": "registerwindowstaskscheduler()" + }, + { + "label": "runDeviceKeyMigration()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L5894", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_rundevicekeymigration", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "rundevicekeymigration()" + }, + { + "label": "dispatchCloudChat()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L6995", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_dispatchcloudchat", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "dispatchcloudchat()" + }, + { + "label": "AiExecutionLane", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L10022", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_aiexecutionlane", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "aiexecutionlane" + }, + { + "label": "CloudAIConfig", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L10495", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_cloudaiconfig", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "cloudaiconfig" + }, + { + "label": "extractPdfTextForIpc()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L11226", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_extractpdftextforipc", + "community": 274, + "community_name": "Letter #274", + "norm_label": "extractpdftextforipc()" + }, + { + "label": "getOidcToken()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L11877", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_getoidctoken", + "community": 103, + "community_name": "Auth Vault", + "norm_label": "getoidctoken()" + }, + { + "label": "tryP2PStartup()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L11949", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_tryp2pstartup", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "tryp2pstartup()" + }, + { + "label": "postScreenshotToPopup()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L12160", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_postscreenshottopopup", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "postscreenshottopopup()" + }, + { + "label": "postStreamToPopup()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L12192", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_poststreamtopopup", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "poststreamtopopup()" + }, + { + "label": "executeTriggerFromExtension()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L12218", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_executetriggerfromextension", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "executetriggerfromextension()" + }, + { + "label": "NOTE: Only opened AFTER the window is shown via openDashboardWindow()", + "file_type": "rationale", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1386", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_rationale_1386", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "note: only opened after the window is shown via opendashboardwindow()" + }, + { + "label": "NOTE: Single-instance lock is handled at the top of this file", + "file_type": "rationale", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L2462", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_rationale_2462", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "note: single-instance lock is handled at the top of this file" + }, + { + "label": "IMPORTANT: Only enable autostart in production builds to avoid registering dev\u2026", + "file_type": "rationale", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L5501", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_rationale_5501", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "important: only enable autostart in production builds to avoid registering dev..." + }, + { + "label": "TODO: In production, store secretKey in vault with a keyId", + "file_type": "rationale", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L11596", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_rationale_11596", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "todo: in production, store secretkey in vault with a keyid" + }, + { + "label": "invariants.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/__tests__/invariants.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_tests_invariants_test", + "community": 152, + "community_name": "Execution", + "norm_label": "invariants.test.ts" + }, + { + "label": "ELECTRON_MAIN_DIR", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/__tests__/invariants.test.ts", + "source_location": "L17", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_tests_invariants_test_electron_main_dir", + "community": 152, + "community_name": "Execution", + "norm_label": "electron_main_dir" + }, + { + "label": "collectProductionFiles()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/__tests__/invariants.test.ts", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_tests_invariants_test_collectproductionfiles", + "community": 152, + "community_name": "Execution", + "norm_label": "collectproductionfiles()" + }, + { + "label": "makeMockDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/__tests__/invariants.test.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_tests_invariants_test_makemockdb", + "community": 152, + "community_name": "Execution", + "norm_label": "makemockdb()" + }, + { + "label": "makeHandshakeRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/__tests__/invariants.test.ts", + "source_location": "L52", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_tests_invariants_test_makehandshakerow", + "community": 152, + "community_name": "Execution", + "norm_label": "makehandshakerow()" + }, + { + "label": "main/autosortDiagnostics.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/autosortDiagnostics.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_autosortdiagnostics", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "main/autosortdiagnostics.ts" + }, + { + "label": "DEBUG_AUTOSORT_DIAGNOSTICS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/autosortDiagnostics.ts", + "source_location": "L12", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_autosortdiagnostics_debug_autosort_diagnostics", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "debug_autosort_diagnostics" + }, + { + "label": "DEBUG_AUTOSORT_TIMING", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/autosortDiagnostics.ts", + "source_location": "L15", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_autosortdiagnostics_debug_autosort_timing", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "debug_autosort_timing" + }, + { + "label": "autosortTimingLog()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/autosortDiagnostics.ts", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_autosortdiagnostics_autosorttiminglog", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "autosorttiminglog()" + }, + { + "label": "AutosortDiagMainState", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/autosortDiagnostics.ts", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_autosortdiagnostics_autosortdiagmainstate", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "autosortdiagmainstate" + }, + { + "label": "mainState", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/autosortDiagnostics.ts", + "source_location": "L28", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_autosortdiagnostics_mainstate", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "mainstate" + }, + { + "label": "setAutosortDiagMainState()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/autosortDiagnostics.ts", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_autosortdiagnostics_setautosortdiagmainstate", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "setautosortdiagmainstate()" + }, + { + "label": "getAutosortDiagMainState()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/autosortDiagnostics.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_autosortdiagnostics_getautosortdiagmainstate", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "getautosortdiagmainstate()" + }, + { + "label": "VaultLockRecord", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/autosortDiagnostics.ts", + "source_location": "L39", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_autosortdiagnostics_vaultlockrecord", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "vaultlockrecord" + }, + { + "label": "recordVaultLock()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/autosortDiagnostics.ts", + "source_location": "L46", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_autosortdiagnostics_recordvaultlock", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "recordvaultlock()" + }, + { + "label": "getLastVaultLock()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/autosortDiagnostics.ts", + "source_location": "L50", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_autosortdiagnostics_getlastvaultlock", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "getlastvaultlock()" + }, + { + "label": "isRecentVaultLock()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/autosortDiagnostics.ts", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_autosortdiagnostics_isrecentvaultlock", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "isrecentvaultlock()" + }, + { + "label": "autosortDiagLog()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/autosortDiagnostics.ts", + "source_location": "L59", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_autosortdiagnostics_autosortdiaglog", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "autosortdiaglog()" + }, + { + "label": "autoresponderAudit.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/beap/autoresponderAudit.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_beap_autoresponderaudit", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "autoresponderaudit.ts" + }, + { + "label": "auditLog", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/beap/autoresponderAudit.ts", + "source_location": "L11", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_beap_autoresponderaudit_auditlog", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "auditlog" + }, + { + "label": "logAutoresponderDecision()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/beap/autoresponderAudit.ts", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_beap_autoresponderaudit_logautoresponderdecision", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "logautoresponderdecision()" + }, + { + "label": "getAutoresponderAuditLog()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/beap/autoresponderAudit.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_beap_autoresponderaudit_getautoresponderauditlog", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "getautoresponderauditlog()" + }, + { + "label": "getAuditForMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/beap/autoresponderAudit.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_beap_autoresponderaudit_getauditformessage", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "getauditformessage()" + }, + { + "label": "autoresponderEvaluator.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/beap/autoresponderEvaluator.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_beap_autoresponderevaluator", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "autoresponderevaluator.ts" + }, + { + "label": "AutoresponderDecision", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/beap/autoresponderEvaluator.ts", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_beap_autoresponderevaluator_autoresponderdecision", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "autoresponderdecision" + }, + { + "label": "AutoresponderEvaluation", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/beap/autoresponderEvaluator.ts", + "source_location": "L24", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_beap_autoresponderevaluator_autoresponderevaluation", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "autoresponderevaluation" + }, + { + "label": "evaluateAutoresponder()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/beap/autoresponderEvaluator.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_beap_autoresponderevaluator_evaluateautoresponder", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "evaluateautoresponder()" + }, + { + "label": "beapEnvelopeAad.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/beap/beapEnvelopeAad.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_beap_beapenvelopeaad", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "beapenvelopeaad.ts" + }, + { + "label": "stableCanonicalize()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/beap/beapEnvelopeAad.ts", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_beap_beapenvelopeaad_stablecanonicalize", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "stablecanonicalize()" + }, + { + "label": "canonicalSerializeAAD()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/beap/beapEnvelopeAad.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_beap_beapenvelopeaad_canonicalserializeaad", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "canonicalserializeaad()" + }, + { + "label": "EnvelopeHeaderForAAD", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/beap/beapEnvelopeAad.ts", + "source_location": "L38", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_beap_beapenvelopeaad_envelopeheaderforaad", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "envelopeheaderforaad" + }, + { + "label": "buildEnvelopeAadFields()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/beap/beapEnvelopeAad.ts", + "source_location": "L65", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_beap_beapenvelopeaad_buildenvelopeaadfields", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "buildenvelopeaadfields()" + }, + { + "label": "computeEnvelopeAadBytes()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/beap/beapEnvelopeAad.ts", + "source_location": "L113", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_beap_beapenvelopeaad_computeenvelopeaadbytes", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "computeenvelopeaadbytes()" + }, + { + "label": "decryptQBeapPackage.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "decryptqbeappackage.ts" + }, + { + "label": "wc", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L16", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_wc", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "wc" + }, + { + "label": "hexPreview()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_hexpreview", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "hexpreview()" + }, + { + "label": "logGcmDecryptInputs()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_loggcmdecryptinputs", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "loggcmdecryptinputs()" + }, + { + "label": "DecryptedQBeapContent", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L67", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_decryptedqbeapcontent", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "decryptedqbeapcontent" + }, + { + "label": "fromBase64()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L90", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_frombase64", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "frombase64()" + }, + { + "label": "hkdfDerive()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L94", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_hkdfderive", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "hkdfderive()" + }, + { + "label": "aesGcmDecrypt()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L118", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_aesgcmdecrypt", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "aesgcmdecrypt()" + }, + { + "label": "sha256HexUtf8()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L142", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_sha256hexutf8", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "sha256hexutf8()" + }, + { + "label": "concatByteArrays()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L148", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_concatbytearrays", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "concatbytearrays()" + }, + { + "label": "EncryptedChunk", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L159", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_encryptedchunk", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "encryptedchunk" + }, + { + "label": "getPayloadChunks()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L168", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_getpayloadchunks", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "getpayloadchunks()" + }, + { + "label": "getArtefactChunks()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L183", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_getartefactchunks", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "getartefactchunks()" + }, + { + "label": "decryptChunkSequence()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L197", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_decryptchunksequence", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "decryptchunksequence()" + }, + { + "label": "DecryptQBeapCallOptions", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L222", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_decryptqbeapcalloptions", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "decryptqbeapcalloptions" + }, + { + "label": "decryptQBeapPackage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L230", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_decryptqbeappackage", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "decryptqbeappackage()" + }, + { + "label": "cutoverParity.devbox.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.devbox.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_devbox_test", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "cutoverparity.devbox.test.ts" + }, + { + "label": "_require", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.devbox.test.ts", + "source_location": "L23", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_devbox_test_require", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "_require" + }, + { + "label": "__dirname", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.devbox.test.ts", + "source_location": "L24", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_devbox_test_dirname", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "__dirname" + }, + { + "label": "WORKER_TS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.devbox.test.ts", + "source_location": "L25", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_devbox_test_worker_ts", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "worker_ts" + }, + { + "label": "TestVault", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.devbox.test.ts", + "source_location": "L27", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_devbox_test_testvault", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "testvault" + }, + { + "label": ".deriveApplicationKey()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.devbox.test.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_devbox_test_testvault_deriveapplicationkey", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": ".deriveapplicationkey()" + }, + { + "label": "provenance()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.devbox.test.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_devbox_test_provenance", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "provenance()" + }, + { + "label": "req()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.devbox.test.ts", + "source_location": "L46", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_devbox_test_req", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "req()" + }, + { + "label": "internalDraft", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.devbox.test.ts", + "source_location": "L55", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_devbox_test_internaldraft", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "internaldraft" + }, + { + "label": "initiate", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.devbox.test.ts", + "source_location": "L61", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_devbox_test_initiate", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "initiate" + }, + { + "label": "CORPUS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.devbox.test.ts", + "source_location": "L75", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_devbox_test_corpus", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "corpus" + }, + { + "label": "cutoverParity.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_test", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "cutoverparity.test.ts" + }, + { + "label": "sentinelResponse", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.test.ts", + "source_location": "L22", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_test_sentinelresponse", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "sentinelresponse" + }, + { + "label": "validateMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.test.ts", + "source_location": "L26", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_test_validatemock", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "validatemock" + }, + { + "label": "stripVolatile()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.test.ts", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_test_stripvolatile", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "stripvolatile()" + }, + { + "label": "makeProvenance()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.test.ts", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_test_makeprovenance", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "makeprovenance()" + }, + { + "label": "makeCandidate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.test.ts", + "source_location": "L73", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_test_makecandidate", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "makecandidate()" + }, + { + "label": "validInitiate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.test.ts", + "source_location": "L82", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_test_validinitiate", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "validinitiate()" + }, + { + "label": "NATIVE_BEAP_CORPUS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.test.ts", + "source_location": "L98", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_test_native_beap_corpus", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "native_beap_corpus" + }, + { + "label": "depackageEmailCutover.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/depackageEmailCutover.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_depackageemailcutover_test", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "depackageemailcutover.test.ts" + }, + { + "label": "sandboxPubB64()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/depackageEmailCutover.test.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_depackageemailcutover_test_sandboxpubb64", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "sandboxpubb64()" + }, + { + "label": "PUB", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/depackageEmailCutover.test.ts", + "source_location": "L19", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_depackageemailcutover_test_pub", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "pub" + }, + { + "label": "eml()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/depackageEmailCutover.test.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_depackageemailcutover_test_eml", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "eml()" + }, + { + "label": "QBEAP_PKG", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/depackageEmailCutover.test.ts", + "source_location": "L25", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_depackageemailcutover_test_qbeap_pkg", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "qbeap_pkg" + }, + { + "label": "depackageParity.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/depackageParity.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_depackageparity_test", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "depackageparity.test.ts" + }, + { + "label": "keys()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/depackageParity.test.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_depackageparity_test_keys", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "keys()" + }, + { + "label": "recoveredSet()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/depackageParity.test.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_depackageparity_test_recoveredset", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "recoveredset()" + }, + { + "label": "depackageParityCorpus.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/depackageParityCorpus.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_depackageparitycorpus", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "depackageparitycorpus.ts" + }, + { + "label": "eml()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/depackageParityCorpus.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_depackageparitycorpus_eml", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "eml()" + }, + { + "label": "ParityCase", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/depackageParityCorpus.ts", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_depackageparitycorpus_paritycase", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "paritycase" + }, + { + "label": "DEPACKAGE_PARITY_CORPUS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/depackageParityCorpus.ts", + "source_location": "L31", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_depackageparitycorpus_depackage_parity_corpus", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "depackage_parity_corpus" + }, + { + "label": "dispatcher.microvm.email.rig.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.email.rig.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_email_rig_test", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "dispatcher.microvm.email.rig.test.ts" + }, + { + "label": "home", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.email.rig.test.ts", + "source_location": "L28", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_email_rig_test_home", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "home" + }, + { + "label": "rig", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.email.rig.test.ts", + "source_location": "L29", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_email_rig_test_rig", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "rig" + }, + { + "label": "cfg", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.email.rig.test.ts", + "source_location": "L51", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_email_rig_test_cfg", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "cfg" + }, + { + "label": "rigAvailable()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.email.rig.test.ts", + "source_location": "L67", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_email_rig_test_rigavailable", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "rigavailable()" + }, + { + "label": "makeSandboxKeys()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.email.rig.test.ts", + "source_location": "L84", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_email_rig_test_makesandboxkeys", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "makesandboxkeys()" + }, + { + "label": "eml()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.email.rig.test.ts", + "source_location": "L92", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_email_rig_test_eml", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "eml()" + }, + { + "label": "QBEAP_PKG", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.email.rig.test.ts", + "source_location": "L96", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_email_rig_test_qbeap_pkg", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "qbeap_pkg" + }, + { + "label": "dispatcher.microvm.rig.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.rig.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_rig_test", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "dispatcher.microvm.rig.test.ts" + }, + { + "label": "home", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.rig.test.ts", + "source_location": "L24", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_rig_test_home", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "home" + }, + { + "label": "rig", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.rig.test.ts", + "source_location": "L25", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_rig_test_rig", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "rig" + }, + { + "label": "cfg", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.rig.test.ts", + "source_location": "L27", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_rig_test_cfg", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "cfg" + }, + { + "label": "rigAvailable()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.rig.test.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_rig_test_rigavailable", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "rigavailable()" + }, + { + "label": "makeSandboxKeys()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.rig.test.ts", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_rig_test_makesandboxkeys", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "makesandboxkeys()" + }, + { + "label": "dispatcher.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "dispatcher.test.ts" + }, + { + "label": "pub()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test_pub", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "pub()" + }, + { + "label": "FakeProvider", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L35", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test_fakeprovider", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "fakeprovider" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L37", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test_fakeprovider_constructor", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": ".constructor()" + }, + { + "label": ".isAvailable()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L41", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test_fakeprovider_isavailable", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": ".isavailable()" + }, + { + "label": ".runJob()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test_fakeprovider_runjob", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": ".runjob()" + }, + { + "label": "registry()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L50", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test_registry", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "registry()" + }, + { + "label": "ctx()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L58", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test_ctx", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "ctx()" + }, + { + "label": "CUSTODY", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L62", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test_custody", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "custody" + }, + { + "label": "depackageSpec()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L63", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test_depackagespec", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "depackagespec()" + }, + { + "label": "SlowExecutor", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L192", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test_slowexecutor", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "slowexecutor" + }, + { + "label": ".supports()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L194", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test_slowexecutor_supports", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": ".supports()" + }, + { + "label": ".isAvailable()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L197", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test_slowexecutor_isavailable", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": ".isavailable()" + }, + { + "label": ".run()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L200", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test_slowexecutor_run", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": ".run()" + }, + { + "label": "__tests__/envelope.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/envelope.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_envelope_test", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "__tests__/envelope.test.ts" + }, + { + "label": "specsOfEveryKind()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/envelope.test.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_envelope_test_specsofeverykind", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "specsofeverykind()" + }, + { + "label": "inProcessExecutor.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/inProcessExecutor.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_inprocessexecutor_test", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "inprocessexecutor.test.ts" + }, + { + "label": "pub()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/inProcessExecutor.test.ts", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_inprocessexecutor_test_pub", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "pub()" + }, + { + "label": "depackageSpec", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/inProcessExecutor.test.ts", + "source_location": "L14", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_inprocessexecutor_test_depackagespec", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "depackagespec" + }, + { + "label": "localMicrovmRouting.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/localMicrovmRouting.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "localmicrovmrouting.test.ts" + }, + { + "label": "pub()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/localMicrovmRouting.test.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test_pub", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "pub()" + }, + { + "label": "ctx()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/localMicrovmRouting.test.ts", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test_ctx", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "ctx()" + }, + { + "label": "FakeProvider", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/localMicrovmRouting.test.ts", + "source_location": "L44", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test_fakeprovider", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "fakeprovider" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/localMicrovmRouting.test.ts", + "source_location": "L46", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test_fakeprovider_constructor", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": ".constructor()" + }, + { + "label": ".isAvailable()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/localMicrovmRouting.test.ts", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test_fakeprovider_isavailable", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": ".isavailable()" + }, + { + "label": ".runJob()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/localMicrovmRouting.test.ts", + "source_location": "L50", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test_fakeprovider_runjob", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": ".runjob()" + }, + { + "label": "registry()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/localMicrovmRouting.test.ts", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test_registry", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "registry()" + }, + { + "label": "CUSTODY", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/localMicrovmRouting.test.ts", + "source_location": "L63", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test_custody", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "custody" + }, + { + "label": "depackageSpec()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/localMicrovmRouting.test.ts", + "source_location": "L64", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test_depackagespec", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "depackagespec()" + }, + { + "label": "depackageEmailSpec()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/localMicrovmRouting.test.ts", + "source_location": "L75", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test_depackageemailspec", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "depackageemailspec()" + }, + { + "label": "resolution.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/resolution.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_resolution_test", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "resolution.test.ts" + }, + { + "label": "ctx()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/resolution.test.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_resolution_test_ctx", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "ctx()" + }, + { + "label": "sandboxEmailDelivery.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/sandboxEmailDelivery.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_sandboxemaildelivery_test", + "community": 237, + "community_name": "Critical Jobs Remote Email", + "norm_label": "sandboxemaildelivery.test.ts" + }, + { + "label": "MockResHandle", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/sandboxEmailDelivery.test.ts", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_sandboxemaildelivery_test_mockreshandle", + "community": 237, + "community_name": "Critical Jobs Remote Email", + "norm_label": "mockreshandle" + }, + { + "label": "makeMockRes()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/sandboxEmailDelivery.test.ts", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_sandboxemaildelivery_test_makemockres", + "community": 237, + "community_name": "Critical Jobs Remote Email", + "norm_label": "makemockres()" + }, + { + "label": "makeWire()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/sandboxEmailDelivery.test.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_sandboxemaildelivery_test_makewire", + "community": 237, + "community_name": "Critical Jobs Remote Email", + "norm_label": "makewire()" + }, + { + "label": "makeBeapCarrierResult()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/sandboxEmailDelivery.test.ts", + "source_location": "L63", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_sandboxemaildelivery_test_makebeapcarrierresult", + "community": 237, + "community_name": "Critical Jobs Remote Email", + "norm_label": "makebeapcarrierresult()" + }, + { + "label": "fakeDb", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/sandboxEmailDelivery.test.ts", + "source_location": "L74", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_sandboxemaildelivery_test_fakedb", + "community": 237, + "community_name": "Critical Jobs Remote Email", + "norm_label": "fakedb" + }, + { + "label": "verify.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/verify.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_verify_test", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "verify.test.ts" + }, + { + "label": "pub()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/verify.test.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_verify_test_pub", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "pub()" + }, + { + "label": "realResult()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/verify.test.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_tests_verify_test_realresult", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "realresult()" + }, + { + "label": "context.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/context.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_context", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "context.ts" + }, + { + "label": "VALID_ROLES", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/context.ts", + "source_location": "L32", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_context_valid_roles", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "valid_roles" + }, + { + "label": "parseArgvRole()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/context.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_context_parseargvrole", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "parseargvrole()" + }, + { + "label": "roleFromMode()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/context.ts", + "source_location": "L46", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_context_rolefrommode", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "rolefrommode()" + }, + { + "label": "resolveRole()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/context.ts", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_context_resolverole", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "resolverole()" + }, + { + "label": "resolveExecOverride()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/context.ts", + "source_location": "L63", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_context_resolveexecoverride", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "resolveexecoverride()" + }, + { + "label": "detectLocalMicrovmAvailable()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/context.ts", + "source_location": "L79", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_context_detectlocalmicrovmavailable", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "detectlocalmicrovmavailable()" + }, + { + "label": "BuildContextOptions", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/context.ts", + "source_location": "L93", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_context_buildcontextoptions", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "buildcontextoptions" + }, + { + "label": "buildResolutionContext()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/context.ts", + "source_location": "L102", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_context_buildresolutioncontext", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "buildresolutioncontext()" + }, + { + "label": "dispatcher.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "dispatcher.ts" + }, + { + "label": "ExecutorRegistry", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L38", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_executorregistry", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "executorregistry" + }, + { + "label": "CriticalJobDispatcher", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L42", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "criticaljobdispatcher" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher_constructor", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": ".constructor()" + }, + { + "label": ".resolve()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher_resolve", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": ".resolve()" + }, + { + "label": ".dispatch()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L57", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher_dispatch", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": ".dispatch()" + }, + { + "label": ".runWithTimeout()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L141", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher_runwithtimeout", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": ".runwithtimeout()" + }, + { + "label": ".fail()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L163", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher_fail", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": ".fail()" + }, + { + "label": ".logOk()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L180", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher_logok", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": ".logok()" + }, + { + "label": "critical-jobs/executor.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executor.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_executor", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "critical-jobs/executor.ts" + }, + { + "label": "CriticalJobExecutor", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executor.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_executor_criticaljobexecutor", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "criticaljobexecutor" + }, + { + "label": ".supports()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executor.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_executor_criticaljobexecutor_supports", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": ".supports()" + }, + { + "label": ".isAvailable()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executor.ts", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_executor_criticaljobexecutor_isavailable", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": ".isavailable()" + }, + { + "label": ".run()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executor.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_executor_criticaljobexecutor_run", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": ".run()" + }, + { + "label": "inProcessExecutor.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "inprocessexecutor.ts" + }, + { + "label": "SUPPORTED", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L42", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_supported", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "supported" + }, + { + "label": "InProcessExecutor", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L50", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "inprocessexecutor" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor_constructor", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": ".constructor()" + }, + { + "label": ".supports()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor_supports", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": ".supports()" + }, + { + "label": ".isAvailable()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor_isavailable", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": ".isavailable()" + }, + { + "label": ".run()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L65", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor_run", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": ".run()" + }, + { + "label": ".runDepackage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L104", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor_rundepackage", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": ".rundepackage()" + }, + { + "label": ".runDepackageEmail()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L126", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor_rundepackageemail", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": ".rundepackageemail()" + }, + { + "label": ".runValidateDecryptedBeap()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L162", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor_runvalidatedecryptedbeap", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": ".runvalidatedecryptedbeap()" + }, + { + "label": ".runValidateNativeBeap()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L190", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor_runvalidatenativebeap", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": ".runvalidatenativebeap()" + }, + { + "label": "microVmExecutor.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/microVmExecutor.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "microvmexecutor.ts" + }, + { + "label": "MicroVMExecutor", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/microVmExecutor.ts", + "source_location": "L38", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor_microvmexecutor", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "microvmexecutor" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/microVmExecutor.ts", + "source_location": "L41", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor_microvmexecutor_constructor", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": ".constructor()" + }, + { + "label": ".supports()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/microVmExecutor.ts", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor_microvmexecutor_supports", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": ".supports()" + }, + { + "label": ".isAvailable()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/microVmExecutor.ts", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor_microvmexecutor_isavailable", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": ".isavailable()" + }, + { + "label": ".run()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/microVmExecutor.ts", + "source_location": "L62", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor_microvmexecutor_run", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": ".run()" + }, + { + "label": ".runProviderJob()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/microVmExecutor.ts", + "source_location": "L110", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor_microvmexecutor_runproviderjob", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": ".runproviderjob()" + }, + { + "label": ".runDepackageEmail()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/microVmExecutor.ts", + "source_location": "L121", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor_microvmexecutor_rundepackageemail", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": ".rundepackageemail()" + }, + { + "label": "createCrosvmMicroVmExecutor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/microVmExecutor.ts", + "source_location": "L173", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor_createcrosvmmicrovmexecutor", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "createcrosvmmicrovmexecutor()" + }, + { + "label": "remoteHandshakeExecutor.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "remotehandshakeexecutor.ts" + }, + { + "label": "RemoteHandshakeExecutorDeps", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L45", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_remotehandshakeexecutordeps", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "remotehandshakeexecutordeps" + }, + { + "label": "subordinateTimeout()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L59", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_subordinatetimeout", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "subordinatetimeout()" + }, + { + "label": "defaultGetRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L63", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_defaultgetrecord", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "defaultgetrecord()" + }, + { + "label": "defaultThisDeviceId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L71", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_defaultthisdeviceid", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "defaultthisdeviceid()" + }, + { + "label": "peerCoordinationId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L81", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_peercoordinationid", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "peercoordinationid()" + }, + { + "label": "RemoteHandshakeExecutor", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L89", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_remotehandshakeexecutor", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "remotehandshakeexecutor" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L98", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_remotehandshakeexecutor_constructor", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": ".constructor()" + }, + { + "label": ".supports()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L107", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_remotehandshakeexecutor_supports", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": ".supports()" + }, + { + "label": ".isAvailable()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L112", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_remotehandshakeexecutor_isavailable", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": ".isavailable()" + }, + { + "label": ".run()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L128", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_remotehandshakeexecutor_run", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": ".run()" + }, + { + "label": "featureFlags.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/featureFlags.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_featureflags", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "featureflags.ts" + }, + { + "label": "truthy()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/featureFlags.ts", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_featureflags_truthy", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "truthy()" + }, + { + "label": "readPersistedFlag()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/featureFlags.ts", + "source_location": "L37", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_featureflags_readpersistedflag", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "readpersistedflag()" + }, + { + "label": "isSeamValidationCutoverEnabled()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/featureFlags.ts", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_featureflags_isseamvalidationcutoverenabled", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "isseamvalidationcutoverenabled()" + }, + { + "label": "isSeamDepackageCutoverEnabled()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/featureFlags.ts", + "source_location": "L66", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_featureflags_isseamdepackagecutoverenabled", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "isseamdepackagecutoverenabled()" + }, + { + "label": "critical-jobs/index.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_index", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "critical-jobs/index.ts" + }, + { + "label": "liveDepackageCutover.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveDepackageCutover.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "livedepackagecutover.ts" + }, + { + "label": "DepackageDispatchOutcome", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveDepackageCutover.ts", + "source_location": "L43", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover_depackagedispatchoutcome", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "depackagedispatchoutcome" + }, + { + "label": "resolveExpectedBundleSha256()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveDepackageCutover.ts", + "source_location": "L62", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover_resolveexpectedbundlesha256", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "resolveexpectedbundlesha256()" + }, + { + "label": "resolveCrosvmConfig()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveDepackageCutover.ts", + "source_location": "L82", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover_resolvecrosvmconfig", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "resolvecrosvmconfig()" + }, + { + "label": "buildDispatcher()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveDepackageCutover.ts", + "source_location": "L99", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover_builddispatcher", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "builddispatcher()" + }, + { + "label": "DepackageInputForm", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveDepackageCutover.ts", + "source_location": "L120", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover_depackageinputform", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "depackageinputform" + }, + { + "label": "dispatchDepackageEmail()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveDepackageCutover.ts", + "source_location": "L135", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover_dispatchdepackageemail", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "dispatchdepackageemail()" + }, + { + "label": "RFC-822", + "file_type": "concept", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveDepackageCutover.ts", + "source_location": "L7", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover_ts_docref_rfc_822", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "rfc-822" + }, + { + "label": "liveValidationCutover.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveValidationCutover.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_livevalidationcutover", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "livevalidationcutover.ts" + }, + { + "label": "ValidationDispatchOutcome", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveValidationCutover.ts", + "source_location": "L41", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_livevalidationcutover_validationdispatchoutcome", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "validationdispatchoutcome" + }, + { + "label": "buildDispatcher()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveValidationCutover.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_livevalidationcutover_builddispatcher", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "builddispatcher()" + }, + { + "label": "dispatchValidateDecryptedBeap()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveValidationCutover.ts", + "source_location": "L64", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_livevalidationcutover_dispatchvalidatedecryptedbeap", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "dispatchvalidatedecryptedbeap()" + }, + { + "label": "dispatchValidateNativeBeap()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveValidationCutover.ts", + "source_location": "L83", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_livevalidationcutover_dispatchvalidatenativebeap", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "dispatchvalidatenativebeap()" + }, + { + "label": "executor.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/executor.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_executor_test", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "executor.test.ts" + }, + { + "label": "party()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/executor.test.ts", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_executor_test_party", + "community": 156, + "community_name": "LLM Critical Jobs Remote", + "norm_label": "party()" + }, + { + "label": "record()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/executor.test.ts", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_executor_test_record", + "community": 156, + "community_name": "LLM Critical Jobs Remote", + "norm_label": "record()" + }, + { + "label": "linked", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/executor.test.ts", + "source_location": "L42", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_executor_test_linked", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "linked" + }, + { + "label": "spec()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/executor.test.ts", + "source_location": "L46", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_executor_test_spec", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "spec()" + }, + { + "label": "resultTransport()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/executor.test.ts", + "source_location": "L57", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_executor_test_resulttransport", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "resulttransport()" + }, + { + "label": "exec()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/executor.test.ts", + "source_location": "L73", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_executor_test_exec", + "community": 156, + "community_name": "LLM Critical Jobs Remote", + "norm_label": "exec()" + }, + { + "label": "loopbackHttp.email.rig.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.email.rig.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "loopbackhttp.email.rig.test.ts" + }, + { + "label": "home", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.email.rig.test.ts", + "source_location": "L55", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test_home", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "home" + }, + { + "label": "rig", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.email.rig.test.ts", + "source_location": "L56", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test_rig", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "rig" + }, + { + "label": "cfg", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.email.rig.test.ts", + "source_location": "L70", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test_cfg", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "cfg" + }, + { + "label": "rigAvailable()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.email.rig.test.ts", + "source_location": "L80", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test_rigavailable", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "rigavailable()" + }, + { + "label": "party()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.email.rig.test.ts", + "source_location": "L101", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test_party", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "party()" + }, + { + "label": "internalRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.email.rig.test.ts", + "source_location": "L106", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test_internalrecord", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "internalrecord()" + }, + { + "label": "eml()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.email.rig.test.ts", + "source_location": "L121", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test_eml", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "eml()" + }, + { + "label": "startRigServer()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.email.rig.test.ts", + "source_location": "L126", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test_startrigserver", + "community": 97, + "community_name": "Critical Jobs Remote", + "norm_label": "startrigserver()" + }, + { + "label": "loopbackHttp.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_test", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "loopbackhttp.test.ts" + }, + { + "label": "party()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.test.ts", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_test_party", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "party()" + }, + { + "label": "internalRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.test.ts", + "source_location": "L51", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_test_internalrecord", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "internalrecord()" + }, + { + "label": "startServer()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.test.ts", + "source_location": "L66", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_test_startserver", + "community": 97, + "community_name": "Critical Jobs Remote", + "norm_label": "startserver()" + }, + { + "label": "receiver.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/receiver.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_receiver_test", + "community": 97, + "community_name": "Critical Jobs Remote", + "norm_label": "receiver.test.ts" + }, + { + "label": "party()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/receiver.test.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_receiver_test_party", + "community": 97, + "community_name": "Critical Jobs Remote", + "norm_label": "party()" + }, + { + "label": "record()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/receiver.test.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_receiver_test_record", + "community": 97, + "community_name": "Critical Jobs Remote", + "norm_label": "record()" + }, + { + "label": "pubKey()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/receiver.test.ts", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_receiver_test_pubkey", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "pubkey()" + }, + { + "label": "depackageSpec()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/receiver.test.ts", + "source_location": "L51", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_receiver_test_depackagespec", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "depackagespec()" + }, + { + "label": "requestWire()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/receiver.test.ts", + "source_location": "L63", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_receiver_test_requestwire", + "community": 97, + "community_name": "Critical Jobs Remote", + "norm_label": "requestwire()" + }, + { + "label": "sandboxDeps()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/receiver.test.ts", + "source_location": "L82", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_receiver_test_sandboxdeps", + "community": 97, + "community_name": "Critical Jobs Remote", + "norm_label": "sandboxdeps()" + }, + { + "label": "relayExclusion.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/relayExclusion.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_relayexclusion_test", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "relayexclusion.test.ts" + }, + { + "label": "electronMain", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/relayExclusion.test.ts", + "source_location": "L14", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_relayexclusion_test_electronmain", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "electronmain" + }, + { + "label": "roundtrip.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/roundtrip.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_roundtrip_test", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "roundtrip.test.ts" + }, + { + "label": "party()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/roundtrip.test.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_roundtrip_test_party", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "party()" + }, + { + "label": "record()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/roundtrip.test.ts", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_roundtrip_test_record", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "record()" + }, + { + "label": "pubKey()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/roundtrip.test.ts", + "source_location": "L50", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_roundtrip_test_pubkey", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "pubkey()" + }, + { + "label": "loopbackTransport()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/roundtrip.test.ts", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_roundtrip_test_loopbacktransport", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "loopbacktransport()" + }, + { + "label": "workstationDispatcher()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/roundtrip.test.ts", + "source_location": "L66", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_roundtrip_test_workstationdispatcher", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "workstationdispatcher()" + }, + { + "label": "LINKED", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/roundtrip.test.ts", + "source_location": "L83", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_roundtrip_test_linked", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "linked" + }, + { + "label": "multipartCarrier", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/roundtrip.test.ts", + "source_location": "L85", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_roundtrip_test_multipartcarrier", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "multipartcarrier" + }, + { + "label": "serialize.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/serialize.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_serialize_test", + "community": 97, + "community_name": "Critical Jobs Remote", + "norm_label": "serialize.test.ts" + }, + { + "label": "topology.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/topology.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_topology_test", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "topology.test.ts" + }, + { + "label": "criticalJobServiceDispatch.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/criticalJobServiceDispatch.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_criticaljobservicedispatch", + "community": 97, + "community_name": "Critical Jobs Remote", + "norm_label": "criticaljobservicedispatch.ts" + }, + { + "label": "writeJson()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/criticalJobServiceDispatch.ts", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_criticaljobservicedispatch_writejson", + "community": 97, + "community_name": "Critical Jobs Remote", + "norm_label": "writejson()" + }, + { + "label": "CriticalJobReceiverDepsFactory", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/criticalJobServiceDispatch.ts", + "source_location": "L36", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_criticaljobservicedispatch_criticaljobreceiverdepsfactory", + "community": 97, + "community_name": "Critical Jobs Remote", + "norm_label": "criticaljobreceiverdepsfactory" + }, + { + "label": "defaultDepsFactory()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/criticalJobServiceDispatch.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_criticaljobservicedispatch_defaultdepsfactory", + "community": 97, + "community_name": "Critical Jobs Remote", + "norm_label": "defaultdepsfactory()" + }, + { + "label": "_setCriticalJobReceiverDepsFactoryForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/criticalJobServiceDispatch.ts", + "source_location": "L46", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_criticaljobservicedispatch_setcriticaljobreceiverdepsfactoryfortests", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "_setcriticaljobreceiverdepsfactoryfortests()" + }, + { + "label": "tryHandleCriticalJobServiceP2P()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/criticalJobServiceDispatch.ts", + "source_location": "L50", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_criticaljobservicedispatch_tryhandlecriticaljobservicep2p", + "community": 97, + "community_name": "Critical Jobs Remote", + "norm_label": "tryhandlecriticaljobservicep2p()" + }, + { + "label": "remote/receiver.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiver.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver", + "community": 97, + "community_name": "Critical Jobs Remote", + "norm_label": "remote/receiver.ts" + }, + { + "label": "RECEIVER_MAX_INPUT_BYTES", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiver.ts", + "source_location": "L37", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver_receiver_max_input_bytes", + "community": 97, + "community_name": "Critical Jobs Remote", + "norm_label": "receiver_max_input_bytes" + }, + { + "label": "CriticalJobReceiverDeps", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiver.ts", + "source_location": "L39", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver_criticaljobreceiverdeps", + "community": 97, + "community_name": "Critical Jobs Remote", + "norm_label": "criticaljobreceiverdeps" + }, + { + "label": "CriticalJobReceiveOutcome", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiver.ts", + "source_location": "L54", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver_criticaljobreceiveoutcome", + "community": 97, + "community_name": "Critical Jobs Remote", + "norm_label": "criticaljobreceiveoutcome" + }, + { + "label": "seenJobIds", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiver.ts", + "source_location": "L58", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver_seenjobids", + "community": 97, + "community_name": "Critical Jobs Remote", + "norm_label": "seenjobids" + }, + { + "label": "_resetReplayForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiver.ts", + "source_location": "L60", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver_resetreplayfortests", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "_resetreplayfortests()" + }, + { + "label": "markSeen()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiver.ts", + "source_location": "L64", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver_markseen", + "community": 97, + "community_name": "Critical Jobs Remote", + "norm_label": "markseen()" + }, + { + "label": "errorWire()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiver.ts", + "source_location": "L73", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver_errorwire", + "community": 97, + "community_name": "Critical Jobs Remote", + "norm_label": "errorwire()" + }, + { + "label": "inputBytesLength()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiver.ts", + "source_location": "L92", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver_inputbyteslength", + "community": 97, + "community_name": "Critical Jobs Remote", + "norm_label": "inputbyteslength()" + }, + { + "label": "handleCriticalJobRequest()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiver.ts", + "source_location": "L105", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver_handlecriticaljobrequest", + "community": 97, + "community_name": "Critical Jobs Remote", + "norm_label": "handlecriticaljobrequest()" + }, + { + "label": "receiverDispatcher.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiverDispatcher.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiverdispatcher", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "receiverdispatcher.ts" + }, + { + "label": "buildReceiverDispatcher()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiverDispatcher.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiverdispatcher_buildreceiverdispatcher", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "buildreceiverdispatcher()" + }, + { + "label": "sandboxEmailDelivery.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/sandboxEmailDelivery.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery", + "community": 237, + "community_name": "Critical Jobs Remote Email", + "norm_label": "sandboxemaildelivery.ts" + }, + { + "label": "SANDBOX_EMAIL_DELIVERY_TYPE", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/sandboxEmailDelivery.ts", + "source_location": "L34", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery_sandbox_email_delivery_type", + "community": 237, + "community_name": "Critical Jobs Remote Email", + "norm_label": "sandbox_email_delivery_type" + }, + { + "label": "SANDBOX_EMAIL_DELIVERY_SCHEMA_VERSION", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/sandboxEmailDelivery.ts", + "source_location": "L35", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery_sandbox_email_delivery_schema_version", + "community": 237, + "community_name": "Critical Jobs Remote Email", + "norm_label": "sandbox_email_delivery_schema_version" + }, + { + "label": "SandboxEmailDeliveryWire", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/sandboxEmailDelivery.ts", + "source_location": "L37", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery_sandboxemaildeliverywire", + "community": 237, + "community_name": "Critical Jobs Remote Email", + "norm_label": "sandboxemaildeliverywire" + }, + { + "label": "isSandboxEmailDeliveryShape()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/sandboxEmailDelivery.ts", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery_issandboxemaildeliveryshape", + "community": 237, + "community_name": "Critical Jobs Remote Email", + "norm_label": "issandboxemaildeliveryshape()" + }, + { + "label": "SandboxDeliveryTransport", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/sandboxEmailDelivery.ts", + "source_location": "L70", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery_sandboxdeliverytransport", + "community": 237, + "community_name": "Critical Jobs Remote Email", + "norm_label": "sandboxdeliverytransport" + }, + { + "label": "nextDeliveryId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/sandboxEmailDelivery.ts", + "source_location": "L79", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery_nextdeliveryid", + "community": 237, + "community_name": "Critical Jobs Remote Email", + "norm_label": "nextdeliveryid()" + }, + { + "label": "postSandboxEmailDelivery()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/sandboxEmailDelivery.ts", + "source_location": "L87", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery_postsandboxemaildelivery", + "community": 237, + "community_name": "Critical Jobs Remote Email", + "norm_label": "postsandboxemaildelivery()" + }, + { + "label": "httpSandboxDeliveryTransport()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/sandboxEmailDelivery.ts", + "source_location": "L149", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery_httpsandboxdeliverytransport", + "community": 237, + "community_name": "Critical Jobs Remote Email", + "norm_label": "httpsandboxdeliverytransport()" + }, + { + "label": "SandboxDeliveryHostWriter", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/sandboxEmailDelivery.ts", + "source_location": "L172", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery_sandboxdeliveryhostwriter", + "community": 237, + "community_name": "Critical Jobs Remote Email", + "norm_label": "sandboxdeliveryhostwriter" + }, + { + "label": "writeJson()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/sandboxEmailDelivery.ts", + "source_location": "L179", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery_writejson", + "community": 237, + "community_name": "Critical Jobs Remote Email", + "norm_label": "writejson()" + }, + { + "label": "_setSandboxDeliveryHostWriterForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/sandboxEmailDelivery.ts", + "source_location": "L187", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery_setsandboxdeliveryhostwriterfortests", + "community": 237, + "community_name": "Critical Jobs Remote Email", + "norm_label": "_setsandboxdeliveryhostwriterfortests()" + }, + { + "label": "tryHandleSandboxEmailDelivery()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/sandboxEmailDelivery.ts", + "source_location": "L195", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery_tryhandlesandboxemaildelivery", + "community": 237, + "community_name": "Critical Jobs Remote Email", + "norm_label": "tryhandlesandboxemaildelivery()" + }, + { + "label": "defaultHostWriter()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/sandboxEmailDelivery.ts", + "source_location": "L250", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery_defaulthostwriter", + "community": 237, + "community_name": "Critical Jobs Remote Email", + "norm_label": "defaulthostwriter()" + }, + { + "label": "send.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/send.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_send", + "community": 97, + "community_name": "Critical Jobs Remote", + "norm_label": "send.ts" + }, + { + "label": "CriticalJobTransportArgs", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/send.ts", + "source_location": "L29", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_send_criticaljobtransportargs", + "community": 97, + "community_name": "Critical Jobs Remote", + "norm_label": "criticaljobtransportargs" + }, + { + "label": "CriticalJobTransportResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/send.ts", + "source_location": "L36", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_send_criticaljobtransportresult", + "community": 97, + "community_name": "Critical Jobs Remote", + "norm_label": "criticaljobtransportresult" + }, + { + "label": "CriticalJobTransport", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/send.ts", + "source_location": "L41", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_send_criticaljobtransport", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "criticaljobtransport" + }, + { + "label": "parseResponseBody()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/send.ts", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_send_parseresponsebody", + "community": 97, + "community_name": "Critical Jobs Remote", + "norm_label": "parseresponsebody()" + }, + { + "label": "httpCriticalJobTransport()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/send.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_send_httpcriticaljobtransport", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "httpcriticaljobtransport()" + }, + { + "label": "throwTransportError()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/send.ts", + "source_location": "L88", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_send_throwtransporterror", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "throwtransporterror()" + }, + { + "label": "serialize.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/serialize.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize", + "community": 97, + "community_name": "Critical Jobs Remote", + "norm_label": "serialize.ts" + }, + { + "label": "encodeBuffers()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/serialize.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize_encodebuffers", + "community": 97, + "community_name": "Critical Jobs Remote", + "norm_label": "encodebuffers()" + }, + { + "label": "decodeBuffers()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/serialize.ts", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize_decodebuffers", + "community": 97, + "community_name": "Critical Jobs Remote", + "norm_label": "decodebuffers()" + }, + { + "label": "ALLOWED_SPEC_TOP_KEYS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/serialize.ts", + "source_location": "L80", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize_allowed_spec_top_keys", + "community": 97, + "community_name": "Critical Jobs Remote", + "norm_label": "allowed_spec_top_keys" + }, + { + "label": "scanForKeyMaterial()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/serialize.ts", + "source_location": "L89", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize_scanforkeymaterial", + "community": 97, + "community_name": "Critical Jobs Remote", + "norm_label": "scanforkeymaterial()" + }, + { + "label": "assertNoKeyMaterialOnWire()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/serialize.ts", + "source_location": "L108", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize_assertnokeymaterialonwire", + "community": 97, + "community_name": "Critical Jobs Remote", + "norm_label": "assertnokeymaterialonwire()" + }, + { + "label": "serializeCriticalJobSpec()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/serialize.ts", + "source_location": "L123", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize_serializecriticaljobspec", + "community": 97, + "community_name": "Critical Jobs Remote", + "norm_label": "serializecriticaljobspec()" + }, + { + "label": "VALID_FLUSH", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/serialize.ts", + "source_location": "L141", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize_valid_flush", + "community": 97, + "community_name": "Critical Jobs Remote", + "norm_label": "valid_flush" + }, + { + "label": "deserializeCriticalJobSpec()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/serialize.ts", + "source_location": "L143", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize_deserializecriticaljobspec", + "community": 97, + "community_name": "Critical Jobs Remote", + "norm_label": "deserializecriticaljobspec()" + }, + { + "label": "serializeCriticalJobResult()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/serialize.ts", + "source_location": "L174", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize_serializecriticaljobresult", + "community": 97, + "community_name": "Critical Jobs Remote", + "norm_label": "serializecriticaljobresult()" + }, + { + "label": "deserializeCriticalJobResult()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/serialize.ts", + "source_location": "L180", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize_deserializecriticaljobresult", + "community": 97, + "community_name": "Critical Jobs Remote", + "norm_label": "deserializecriticaljobresult()" + }, + { + "label": "remote/wire.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/wire.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire", + "community": 97, + "community_name": "Critical Jobs Remote", + "norm_label": "remote/wire.ts" + }, + { + "label": "CRITICAL_JOB_SCHEMA_VERSION", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/wire.ts", + "source_location": "L25", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_critical_job_schema_version", + "community": 97, + "community_name": "Critical Jobs Remote", + "norm_label": "critical_job_schema_version" + }, + { + "label": "CriticalJobServiceMessageType", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/wire.ts", + "source_location": "L27", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_criticaljobservicemessagetype", + "community": 97, + "community_name": "Critical Jobs Remote", + "norm_label": "criticaljobservicemessagetype" + }, + { + "label": "CriticalJobServiceEnvelopeBase", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/wire.ts", + "source_location": "L33", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_criticaljobserviceenvelopebase", + "community": 97, + "community_name": "Critical Jobs Remote", + "norm_label": "criticaljobserviceenvelopebase" + }, + { + "label": "SerializedCriticalJobSpec", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/wire.ts", + "source_location": "L49", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_serializedcriticaljobspec", + "community": 97, + "community_name": "Critical Jobs Remote", + "norm_label": "serializedcriticaljobspec" + }, + { + "label": "SerializedCriticalJobResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/wire.ts", + "source_location": "L60", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_serializedcriticaljobresult", + "community": 97, + "community_name": "Critical Jobs Remote", + "norm_label": "serializedcriticaljobresult" + }, + { + "label": "CriticalJobRequestWire", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/wire.ts", + "source_location": "L62", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_criticaljobrequestwire", + "community": 97, + "community_name": "Critical Jobs Remote", + "norm_label": "criticaljobrequestwire" + }, + { + "label": "CriticalJobResultWire", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/wire.ts", + "source_location": "L70", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_criticaljobresultwire", + "community": 97, + "community_name": "Critical Jobs Remote", + "norm_label": "criticaljobresultwire" + }, + { + "label": "CriticalJobErrorWire", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/wire.ts", + "source_location": "L76", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_criticaljoberrorwire", + "community": 97, + "community_name": "Critical Jobs Remote", + "norm_label": "criticaljoberrorwire" + }, + { + "label": "CriticalJobServiceEnvelope", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/wire.ts", + "source_location": "L83", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_criticaljobserviceenvelope", + "community": 97, + "community_name": "Critical Jobs Remote", + "norm_label": "criticaljobserviceenvelope" + }, + { + "label": "isCriticalJobServiceType()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/wire.ts", + "source_location": "L88", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_iscriticaljobservicetype", + "community": 97, + "community_name": "Critical Jobs Remote", + "norm_label": "iscriticaljobservicetype()" + }, + { + "label": "isCriticalJobServiceRpcShape()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/wire.ts", + "source_location": "L97", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_iscriticaljobservicerpcshape", + "community": 97, + "community_name": "Critical Jobs Remote", + "norm_label": "iscriticaljobservicerpcshape()" + }, + { + "label": "isValidCriticalJobBaseEnvelope()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/wire.ts", + "source_location": "L103", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_isvalidcriticaljobbaseenvelope", + "community": 97, + "community_name": "Critical Jobs Remote", + "norm_label": "isvalidcriticaljobbaseenvelope()" + }, + { + "label": "resolution.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/resolution.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_resolution", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "resolution.ts" + }, + { + "label": "ResolutionContext", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/resolution.ts", + "source_location": "L29", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_resolution_resolutioncontext", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "resolutioncontext" + }, + { + "label": "ResolvedExecutor", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/resolution.ts", + "source_location": "L53", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_resolution_resolvedexecutor", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "resolvedexecutor" + }, + { + "label": "ResolutionRule", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/resolution.ts", + "source_location": "L65", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_resolution_resolutionrule", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "resolutionrule" + }, + { + "label": "ResolutionTable", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/resolution.ts", + "source_location": "L72", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_resolution_resolutiontable", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "resolutiontable" + }, + { + "label": "DEFAULT_RESOLUTION_TABLE", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/resolution.ts", + "source_location": "L80", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_resolution_default_resolution_table", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "default_resolution_table" + }, + { + "label": "lookupRule()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/resolution.ts", + "source_location": "L141", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_resolution_lookuprule", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "lookuprule()" + }, + { + "label": "resolve()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/resolution.ts", + "source_location": "L164", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_resolution_resolve", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "resolve()" + }, + { + "label": "validateResolutionTable()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/resolution.ts", + "source_location": "L199", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_resolution_validateresolutiontable", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "validateresolutiontable()" + }, + { + "label": "topology.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/topology.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_topology", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "topology.ts" + }, + { + "label": "LinkedRole", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/topology.ts", + "source_location": "L19", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_topology_linkedrole", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "linkedrole" + }, + { + "label": "LinkedTopologyEntry", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/topology.ts", + "source_location": "L21", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_topology_linkedtopologyentry", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "linkedtopologyentry" + }, + { + "label": "VALID_KINDS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/topology.ts", + "source_location": "L27", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_topology_valid_kinds", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "valid_kinds" + }, + { + "label": "LinkedEntryValidation", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/topology.ts", + "source_location": "L29", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_topology_linkedentryvalidation", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "linkedentryvalidation" + }, + { + "label": "validateLinkedEntry()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/topology.ts", + "source_location": "L37", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_topology_validatelinkedentry", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "validatelinkedentry()" + }, + { + "label": "validateLinkedTopology()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/topology.ts", + "source_location": "L78", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_topology_validatelinkedtopology", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "validatelinkedtopology()" + }, + { + "label": "loadLinkedTopology()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/topology.ts", + "source_location": "L104", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_topology_loadlinkedtopology", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "loadlinkedtopology()" + }, + { + "label": "safeParse()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/topology.ts", + "source_location": "L120", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_topology_safeparse", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "safeparse()" + }, + { + "label": "critical-jobs/types.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_types", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "critical-jobs/types.ts" + }, + { + "label": "CriticalJobKind", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L115", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobkind", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "criticaljobkind" + }, + { + "label": "Pipeline", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L118", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_types_pipeline", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "pipeline" + }, + { + "label": "KeyLocality", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L130", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_types_keylocality", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "keylocality" + }, + { + "label": "KindMetadata", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L132", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_types_kindmetadata", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "kindmetadata" + }, + { + "label": "KIND_METADATA", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L138", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_types_kind_metadata", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "kind_metadata" + }, + { + "label": "UNTRUSTED_CONTENT_KINDS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L154", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_types_untrusted_content_kinds", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "untrusted_content_kinds" + }, + { + "label": "TRANSITIONAL_INPROCESS_KINDS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L166", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_types_transitional_inprocess_kinds", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "transitional_inprocess_kinds" + }, + { + "label": "Role", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L170", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_types_role", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "role" + }, + { + "label": "Tier", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L173", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_types_tier", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "tier" + }, + { + "label": "ExecutorId", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L176", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_types_executorid", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "executorid" + }, + { + "label": "FlushMode", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L179", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_types_flushmode", + "community": 97, + "community_name": "Critical Jobs Remote", + "norm_label": "flushmode" + }, + { + "label": "DepackageOutput", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L184", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_types_depackageoutput", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "depackageoutput" + }, + { + "label": "RenderVerdict", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L194", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_types_renderverdict", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "renderverdict" + }, + { + "label": "JobInputMap", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L199", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_types_jobinputmap", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "jobinputmap" + }, + { + "label": "JobOutputMap", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L243", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_types_joboutputmap", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "joboutputmap" + }, + { + "label": "JobLimits", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L264", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_types_joblimits", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "joblimits" + }, + { + "label": "CriticalJobSpec", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L278", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobspec", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "criticaljobspec" + }, + { + "label": "ResultMeta", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L289", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_types_resultmeta", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "resultmeta" + }, + { + "label": "CriticalJobResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L296", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobresult", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "criticaljobresult" + }, + { + "label": "CriticalJobErrorCode", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L310", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljoberrorcode", + "community": 97, + "community_name": "Critical Jobs Remote", + "norm_label": "criticaljoberrorcode" + }, + { + "label": "CriticalJobError", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L331", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljoberror", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "criticaljoberror" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L332", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljoberror_constructor", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": ".constructor()" + }, + { + "label": "SAFE_TEXT_OUTPUT_KINDS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L342", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_types_safe_text_output_kinds", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "safe_text_output_kinds" + }, + { + "label": "RFC-822", + "file_type": "concept", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L204", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_types_ts_docref_rfc_822", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "rfc-822" + }, + { + "label": "verify.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/verify.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_verify", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "verify.ts" + }, + { + "label": "depackageJobResultToCriticalResult()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/verify.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_verify_depackagejobresulttocriticalresult", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "depackagejobresulttocriticalresult()" + }, + { + "label": "reconstructJobResult()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/verify.ts", + "source_location": "L63", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_verify_reconstructjobresult", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "reconstructjobresult()" + }, + { + "label": "depackageResultSignatureValid()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/verify.ts", + "source_location": "L88", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_verify_depackageresultsignaturevalid", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "depackageresultsignaturevalid()" + }, + { + "label": "DepackageVerification", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/verify.ts", + "source_location": "L92", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_verify_depackageverification", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "depackageverification" + }, + { + "label": "verifyDepackageResult()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/verify.ts", + "source_location": "L109", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_verify_verifydepackageresult", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "verifydepackageresult()" + }, + { + "label": "HostStageFailure", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/verify.ts", + "source_location": "L142", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_verify_hoststagefailure", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "hoststagefailure" + }, + { + "label": "runHostFinalStage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/verify.ts", + "source_location": "L157", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_verify_runhostfinalstage", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "runhostfinalstage()" + }, + { + "label": "DepackageEmailVerification", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/verify.ts", + "source_location": "L189", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_verify_depackageemailverification", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "depackageemailverification" + }, + { + "label": "verifyDepackageEmailResult()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/verify.ts", + "source_location": "L202", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_critical_jobs_verify_verifydepackageemailresult", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "verifydepackageemailresult()" + }, + { + "label": "builtInModes.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/customModes/__tests__/builtInModes.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_custommodes_tests_builtinmodes_test", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "builtinmodes.test.ts" + }, + { + "label": "customModesStore.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/customModes/__tests__/customModesStore.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_custommodes_tests_custommodesstore_test", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "custommodesstore.test.ts" + }, + { + "label": "makeMode()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/customModes/__tests__/customModesStore.test.ts", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_custommodes_tests_custommodesstore_test_makemode", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "makemode()" + }, + { + "label": "ElectronMockState", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/customModes/__tests__/customModesStore.test.ts", + "source_location": "L36", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_custommodes_tests_custommodesstore_test_electronmockstate", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "electronmockstate" + }, + { + "label": "makeElectronMock()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/customModes/__tests__/customModesStore.test.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_custommodes_tests_custommodesstore_test_makeelectronmock", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "makeelectronmock()" + }, + { + "label": "customModes/__tests__/scamWatchdogBuiltIn.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/customModes/__tests__/scamWatchdogBuiltIn.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_custommodes_tests_scamwatchdogbuiltin_test", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "custommodes/__tests__/scamwatchdogbuiltin.test.ts" + }, + { + "label": "makeElectronMock()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/customModes/__tests__/scamWatchdogBuiltIn.test.ts", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_custommodes_tests_scamwatchdogbuiltin_test_makeelectronmock", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "makeelectronmock()" + }, + { + "label": "broadcast.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/customModes/broadcast.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_custommodes_broadcast", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "broadcast.ts" + }, + { + "label": "setCustomModesExtensionBroadcast()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/customModes/broadcast.ts", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_custommodes_broadcast_setcustommodesextensionbroadcast", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "setcustommodesextensionbroadcast()" + }, + { + "label": "broadcastCustomModesChanged()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/customModes/broadcast.ts", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_custommodes_broadcast_broadcastcustommodeschanged", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "broadcastcustommodeschanged()" + }, + { + "label": "builtInModes.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/customModes/builtInModes.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_custommodes_builtinmodes", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "builtinmodes.ts" + }, + { + "label": "ensureBuiltInModes()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/customModes/builtInModes.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_custommodes_builtinmodes_ensurebuiltinmodes", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "ensurebuiltinmodes()" + }, + { + "label": "seedRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/customModes/builtInModes.ts", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_custommodes_builtinmodes_seedrow", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "seedrow()" + }, + { + "label": "backfillEmptyScamWatchdogFields()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/customModes/builtInModes.ts", + "source_location": "L63", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_custommodes_builtinmodes_backfillemptyscamwatchdogfields", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "backfillemptyscamwatchdogfields()" + }, + { + "label": "backfillScamWatchdogChatOnlySearchFocus()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/customModes/builtInModes.ts", + "source_location": "L135", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_custommodes_builtinmodes_backfillscamwatchdogchatonlysearchfocus", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "backfillscamwatchdogchatonlysearchfocus()" + }, + { + "label": "backfillEmptyScamWatchdogSearchFocus()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/customModes/builtInModes.ts", + "source_location": "L177", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_custommodes_builtinmodes_backfillemptyscamwatchdogsearchfocus", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "backfillemptyscamwatchdogsearchfocus()" + }, + { + "label": "customModesStore.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_custommodes_custommodesstore", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "custommodesstore.ts" + }, + { + "label": "persistBuiltInSeedIfNeeded()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_persistbuiltinseedifneeded", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "persistbuiltinseedifneeded()" + }, + { + "label": "CustomModesMigrationOrigin", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L56", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_custommodesmigrationorigin", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "custommodesmigrationorigin" + }, + { + "label": "CustomModesMigrationMeta", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L58", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_custommodesmigrationmeta", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "custommodesmigrationmeta" + }, + { + "label": "CustomModesFileEnvelope", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L67", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_custommodesfileenvelope", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "custommodesfileenvelope" + }, + { + "label": "StoreResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L73", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_storeresult", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "storeresult" + }, + { + "label": "writeLock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L77", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_writelock", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "writelock" + }, + { + "label": "withStoreLock()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L79", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_withstorelock", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "withstorelock()" + }, + { + "label": "modesPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L88", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_modespath", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "modespath()" + }, + { + "label": "metaPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L98", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_metapath", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "metapath()" + }, + { + "label": "modesBackupPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L102", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_modesbackuppath", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "modesbackuppath()" + }, + { + "label": "defaultMigrationMeta()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L106", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_defaultmigrationmeta", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "defaultmigrationmeta()" + }, + { + "label": "readMeta()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L110", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_readmeta", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "readmeta()" + }, + { + "label": "writeMeta()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L130", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_writemeta", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "writemeta()" + }, + { + "label": "backupModesFileIfExists()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L152", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_backupmodesfileifexists", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "backupmodesfileifexists()" + }, + { + "label": "atomicWriteModes()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L162", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_atomicwritemodes", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "atomicwritemodes()" + }, + { + "label": "normalizeModesFromRaw()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L185", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_normalizemodesfromraw", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "normalizemodesfromraw()" + }, + { + "label": "readModesEnvelope()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L194", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_readmodesenvelope", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "readmodesenvelope()" + }, + { + "label": "writeModes()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L264", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_writemodes", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "writemodes()" + }, + { + "label": "findDuplicateName()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L274", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_findduplicatename", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "findduplicatename()" + }, + { + "label": "mergeCustomModes()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L284", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_mergecustommodes", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "mergecustommodes()" + }, + { + "label": "mutateModes()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L325", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_mutatemodes", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "mutatemodes()" + }, + { + "label": "listModes()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L338", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_listmodes", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "listmodes()" + }, + { + "label": "getModeById()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L342", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_getmodebyid", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": "getmodebyid()" + }, + { + "label": "getMigrationStatus()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L346", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_getmigrationstatus", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "getmigrationstatus()" + }, + { + "label": "createMode()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L350", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_createmode", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "createmode()" + }, + { + "label": "updateMode()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L366", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_updatemode", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "updatemode()" + }, + { + "label": "deleteMode()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L399", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_deletemode", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "deletemode()" + }, + { + "label": "importModes()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L416", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_importmodes", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "importmodes()" + }, + { + "label": "resetCustomModesWriteLockForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L436", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_resetcustommodeswritelockfortests", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "resetcustommodeswritelockfortests()" + }, + { + "label": "readModesEnvelopeForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L441", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_readmodesenvelopefortests", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "readmodesenvelopefortests()" + }, + { + "label": "customModes/ipc.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/customModes/ipc.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_custommodes_ipc", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "custommodes/ipc.ts" + }, + { + "label": "IpcResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/customModes/ipc.ts", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_custommodes_ipc_ipcresult", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "ipcresult" + }, + { + "label": "isMigrationOrigin()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/customModes/ipc.ts", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_custommodes_ipc_ismigrationorigin", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "ismigrationorigin()" + }, + { + "label": "afterMutation()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/customModes/ipc.ts", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_custommodes_ipc_aftermutation", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "aftermutation()" + }, + { + "label": "registerCustomModesHandlers()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/customModes/ipc.ts", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_custommodes_ipc_registercustommodeshandlers", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "registercustommodeshandlers()" + }, + { + "label": "blindCourier.invariant.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/blindCourier.invariant.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_blindcourier_invariant_test", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "blindcourier.invariant.test.ts" + }, + { + "label": "makeSandboxKeys()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/blindCourier.invariant.test.ts", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_blindcourier_invariant_test_makesandboxkeys", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "makesandboxkeys()" + }, + { + "label": "craftEmailWithSecretAttachment()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/blindCourier.invariant.test.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_blindcourier_invariant_test_craftemailwithsecretattachment", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "craftemailwithsecretattachment()" + }, + { + "label": "crosvmImageBundlePreflight.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmImageBundlePreflight.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmimagebundlepreflight_test", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "crosvmimagebundlepreflight.test.ts" + }, + { + "label": "EXPECTED", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmImageBundlePreflight.test.ts", + "source_location": "L26", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmimagebundlepreflight_test_expected", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "expected" + }, + { + "label": "STALE", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmImageBundlePreflight.test.ts", + "source_location": "L27", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmimagebundlepreflight_test_stale", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "stale" + }, + { + "label": "cfg()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmImageBundlePreflight.test.ts", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmimagebundlepreflight_test_cfg", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "cfg()" + }, + { + "label": "depackageSpec", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmImageBundlePreflight.test.ts", + "source_location": "L55", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmimagebundlepreflight_test_depackagespec", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "depackagespec" + }, + { + "label": "crosvmProvider.rig.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmProvider.rig.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmprovider_rig_test", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "crosvmprovider.rig.test.ts" + }, + { + "label": "home", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmProvider.rig.test.ts", + "source_location": "L30", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmprovider_rig_test_home", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "home" + }, + { + "label": "rig", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmProvider.rig.test.ts", + "source_location": "L31", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmprovider_rig_test_rig", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "rig" + }, + { + "label": "cfg", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmProvider.rig.test.ts", + "source_location": "L33", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmprovider_rig_test_cfg", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "cfg" + }, + { + "label": "rigAvailable()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmProvider.rig.test.ts", + "source_location": "L41", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmprovider_rig_test_rigavailable", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "rigavailable()" + }, + { + "label": "makeSandboxKeys()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmProvider.rig.test.ts", + "source_location": "L58", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmprovider_rig_test_makesandboxkeys", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "makesandboxkeys()" + }, + { + "label": "eml()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmProvider.rig.test.ts", + "source_location": "L64", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmprovider_rig_test_eml", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "eml()" + }, + { + "label": "runOne()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmProvider.rig.test.ts", + "source_location": "L68", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmprovider_rig_test_runone", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "runone()" + }, + { + "label": "defenseInDepthDetection.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/defenseInDepthDetection.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_defenseindepthdetection_test", + "community": 359, + "community_name": "Depackagingmicrovm #359", + "norm_label": "defenseindepthdetection.test.ts" + }, + { + "label": "hasCategory()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/defenseInDepthDetection.test.ts", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_defenseindepthdetection_test_hascategory", + "community": 359, + "community_name": "Depackagingmicrovm #359", + "norm_label": "hascategory()" + }, + { + "label": "hasDetail()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/defenseInDepthDetection.test.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_defenseindepthdetection_test_hasdetail", + "community": 359, + "community_name": "Depackagingmicrovm #359", + "norm_label": "hasdetail()" + }, + { + "label": "depackagingService.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/depackagingService.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_depackagingservice_test", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "depackagingservice.test.ts" + }, + { + "label": "home", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/depackagingService.test.ts", + "source_location": "L42", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_depackagingservice_test_home", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "home" + }, + { + "label": "rig", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/depackagingService.test.ts", + "source_location": "L43", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_depackagingservice_test_rig", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "rig" + }, + { + "label": "rigAvailable()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/depackagingService.test.ts", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_depackagingservice_test_rigavailable", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "rigavailable()" + }, + { + "label": "displayEnvelope.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/displayEnvelope.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_displayenvelope_test", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "displayenvelope.test.ts" + }, + { + "label": "ewB()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/displayEnvelope.test.ts", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_displayenvelope_test_ewb", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "ewb()" + }, + { + "label": "headers()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/displayEnvelope.test.ts", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_displayenvelope_test_headers", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "headers()" + }, + { + "label": "RFC-2047", + "file_type": "concept", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/displayEnvelope.test.ts", + "source_location": "L3", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_displayenvelope_test_ts_docref_rfc_2047", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "rfc-2047" + }, + { + "label": "emailDepackage.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/emailDepackage.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_emaildepackage_test", + "community": 200, + "community_name": "Depackagingmicrovm #200", + "norm_label": "emaildepackage.test.ts" + }, + { + "label": "sandboxPubB64()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/emailDepackage.test.ts", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_emaildepackage_test_sandboxpubb64", + "community": 200, + "community_name": "Depackagingmicrovm #200", + "norm_label": "sandboxpubb64()" + }, + { + "label": "PUB", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/emailDepackage.test.ts", + "source_location": "L16", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_emaildepackage_test_pub", + "community": 200, + "community_name": "Depackagingmicrovm #200", + "norm_label": "pub" + }, + { + "label": "eml()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/emailDepackage.test.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_emaildepackage_test_eml", + "community": 200, + "community_name": "Depackagingmicrovm #200", + "norm_label": "eml()" + }, + { + "label": "QBEAP_PKG", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/emailDepackage.test.ts", + "source_location": "L22", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_emaildepackage_test_qbeap_pkg", + "community": 200, + "community_name": "Depackagingmicrovm #200", + "norm_label": "qbeap_pkg" + }, + { + "label": "PBEAP_PKG", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/emailDepackage.test.ts", + "source_location": "L27", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_emaildepackage_test_pbeap_pkg", + "community": 200, + "community_name": "Depackagingmicrovm #200", + "norm_label": "pbeap_pkg" + }, + { + "label": "emailResultSigning.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/emailResultSigning.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_emailresultsigning_test", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "emailresultsigning.test.ts" + }, + { + "label": "sandboxPubB64()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/emailResultSigning.test.ts", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_emailresultsigning_test_sandboxpubb64", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "sandboxpubb64()" + }, + { + "label": "eml()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/emailResultSigning.test.ts", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_emailresultsigning_test_eml", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "eml()" + }, + { + "label": "overTheWire()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/emailResultSigning.test.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_emailresultsigning_test_overthewire", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "overthewire()" + }, + { + "label": "PUB", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/emailResultSigning.test.ts", + "source_location": "L32", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_emailresultsigning_test_pub", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "pub" + }, + { + "label": "htmlToText.equivalence.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/htmlToText.equivalence.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_htmltotext_equivalence_test", + "community": 200, + "community_name": "Depackagingmicrovm #200", + "norm_label": "htmltotext.equivalence.test.ts" + }, + { + "label": "CORPUS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/htmlToText.equivalence.test.ts", + "source_location": "L18", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_htmltotext_equivalence_test_corpus", + "community": 200, + "community_name": "Depackagingmicrovm #200", + "norm_label": "corpus" + }, + { + "label": "inertSinkAudit.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/inertSinkAudit.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_inertsinkaudit_test", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "inertsinkaudit.test.ts" + }, + { + "label": "livePbeapTrust.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/livePbeapTrust.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_livepbeaptrust_test", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "livepbeaptrust.test.ts" + }, + { + "label": "providerStructuredWalker.equivalence.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/providerStructuredWalker.equivalence.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_providerstructuredwalker_equivalence_test", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "providerstructuredwalker.equivalence.test.ts" + }, + { + "label": "PUB", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/providerStructuredWalker.equivalence.test.ts", + "source_location": "L20", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_providerstructuredwalker_equivalence_test_pub", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "pub" + }, + { + "label": "eml()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/providerStructuredWalker.equivalence.test.ts", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_providerstructuredwalker_equivalence_test_eml", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "eml()" + }, + { + "label": "OUTLOOK", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/providerStructuredWalker.equivalence.test.ts", + "source_location": "L25", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_providerstructuredwalker_equivalence_test_outlook", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "outlook" + }, + { + "label": "QBEAP_PKG", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/providerStructuredWalker.equivalence.test.ts", + "source_location": "L27", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_providerstructuredwalker_equivalence_test_qbeap_pkg", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "qbeap_pkg" + }, + { + "label": "PBEAP_PKG", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/providerStructuredWalker.equivalence.test.ts", + "source_location": "L32", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_providerstructuredwalker_equivalence_test_pbeap_pkg", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "pbeap_pkg" + }, + { + "label": "project()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/providerStructuredWalker.equivalence.test.ts", + "source_location": "L46", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_providerstructuredwalker_equivalence_test_project", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "project()" + }, + { + "label": "graphJson()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/providerStructuredWalker.equivalence.test.ts", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_providerstructuredwalker_equivalence_test_graphjson", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "graphjson()" + }, + { + "label": "Pair", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/providerStructuredWalker.equivalence.test.ts", + "source_location": "L60", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_providerstructuredwalker_equivalence_test_pair", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "pair" + }, + { + "label": "ewB()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/providerStructuredWalker.equivalence.test.ts", + "source_location": "L66", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_providerstructuredwalker_equivalence_test_ewb", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "ewb()" + }, + { + "label": "CORPUS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/providerStructuredWalker.equivalence.test.ts", + "source_location": "L68", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_providerstructuredwalker_equivalence_test_corpus", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "corpus" + }, + { + "label": "RFC-822", + "file_type": "concept", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/providerStructuredWalker.equivalence.test.ts", + "source_location": "L4", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_providerstructuredwalker_equivalence_test_ts_docref_rfc_822", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "rfc-822" + }, + { + "label": "revalidate.trust.repair.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/revalidate.trust.repair.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_revalidate_trust_repair_test", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "revalidate.trust.repair.test.ts" + }, + { + "label": "counterparty()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/revalidate.trust.repair.test.ts", + "source_location": "L42", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_revalidate_trust_repair_test_counterparty", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "counterparty()" + }, + { + "label": "textPurity.invariant.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/textPurity.invariant.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_textpurity_invariant_test", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "textpurity.invariant.test.ts" + }, + { + "label": "sandboxPubB64()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/textPurity.invariant.test.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_textpurity_invariant_test_sandboxpubb64", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "sandboxpubb64()" + }, + { + "label": "craftMultipart()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/textPurity.invariant.test.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_textpurity_invariant_test_craftmultipart", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "craftmultipart()" + }, + { + "label": "vmIdentitySigning.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/vmIdentitySigning.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_vmidentitysigning_test", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "vmidentitysigning.test.ts" + }, + { + "label": "pub()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/vmIdentitySigning.test.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_vmidentitysigning_test_pub", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "pub()" + }, + { + "label": "makeCleanInput()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/vmIdentitySigning.test.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_vmidentitysigning_test_makecleaninput", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "makecleaninput()" + }, + { + "label": "hostKeypair()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/vmIdentitySigning.test.ts", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_vmidentitysigning_test_hostkeypair", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "hostkeypair()" + }, + { + "label": "blindCourier.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/blindCourier.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_blindcourier", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "blindcourier.ts" + }, + { + "label": "CourierArtifactRecord", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/blindCourier.ts", + "source_location": "L29", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_blindcourier_courierartifactrecord", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "courierartifactrecord" + }, + { + "label": "CourierRecord", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/blindCourier.ts", + "source_location": "L41", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_blindcourier_courierrecord", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "courierrecord" + }, + { + "label": "toCourierRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/blindCourier.ts", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_blindcourier_tocourierrecord", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "tocourierrecord()" + }, + { + "label": "crosvmProvider.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "crosvmprovider.ts" + }, + { + "label": "CrosvmProviderConfig", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L58", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmproviderconfig", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "crosvmproviderconfig" + }, + { + "label": "IMAGE_BUNDLE_MISMATCH_CODE", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L100", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_image_bundle_mismatch_code", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "image_bundle_mismatch_code" + }, + { + "label": "ImageBundleMismatchError", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L109", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_imagebundlemismatcherror", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "imagebundlemismatcherror" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L111", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_imagebundlemismatcherror_constructor", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": ".constructor()" + }, + { + "label": "buildCrosvmArgs()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L123", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_buildcrosvmargs", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "buildcrosvmargs()" + }, + { + "label": "CrosvmProvider", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L143", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "crosvmprovider" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L146", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider_constructor", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": ".constructor()" + }, + { + "label": ".isAvailable()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L148", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider_isavailable", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": ".isavailable()" + }, + { + "label": ".preflightImageBundle()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L180", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider_preflightimagebundle", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": ".preflightimagebundle()" + }, + { + "label": ".runJob()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L200", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider_runjob", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": ".runjob()" + }, + { + "label": ".allocateCid()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L322", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider_allocatecid", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": ".allocatecid()" + }, + { + "label": ".createEphemeralOverlay()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L326", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider_createephemeraloverlay", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": ".createephemeraloverlay()" + }, + { + "label": ".runHostClient()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L334", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider_runhostclient", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": ".runhostclient()" + }, + { + "label": ".runToCompletion()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L359", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider_runtocompletion", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": ".runtocompletion()" + }, + { + "label": ".terminate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L375", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider_terminate", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": ".terminate()" + }, + { + "label": ".bestEffortUnlink()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L383", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider_besteffortunlink", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": ".besteffortunlink()" + }, + { + "label": "defenseInDepthDetection.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/defenseInDepthDetection.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_defenseindepthdetection", + "community": 359, + "community_name": "Depackagingmicrovm #359", + "norm_label": "defenseindepthdetection.ts" + }, + { + "label": "DetectionCategory", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/defenseInDepthDetection.ts", + "source_location": "L19", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_defenseindepthdetection_detectioncategory", + "community": 359, + "community_name": "Depackagingmicrovm #359", + "norm_label": "detectioncategory" + }, + { + "label": "DetectionFinding", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/defenseInDepthDetection.ts", + "source_location": "L25", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_defenseindepthdetection_detectionfinding", + "community": 359, + "community_name": "Depackagingmicrovm #359", + "norm_label": "detectionfinding" + }, + { + "label": "DetectionResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/defenseInDepthDetection.ts", + "source_location": "L30", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_defenseindepthdetection_detectionresult", + "community": 359, + "community_name": "Depackagingmicrovm #359", + "norm_label": "detectionresult" + }, + { + "label": "escapeForRegex()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/defenseInDepthDetection.ts", + "source_location": "L37", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_defenseindepthdetection_escapeforregex", + "community": 359, + "community_name": "Depackagingmicrovm #359", + "norm_label": "escapeforregex()" + }, + { + "label": "CODE_CONSTRUCT_PATTERNS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/defenseInDepthDetection.ts", + "source_location": "L42", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_defenseindepthdetection_code_construct_patterns", + "community": 359, + "community_name": "Depackagingmicrovm #359", + "norm_label": "code_construct_patterns" + }, + { + "label": "BEAP_CARRIER_PATTERNS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/defenseInDepthDetection.ts", + "source_location": "L66", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_defenseindepthdetection_beap_carrier_patterns", + "community": 359, + "community_name": "Depackagingmicrovm #359", + "norm_label": "beap_carrier_patterns" + }, + { + "label": "detectThreats()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/defenseInDepthDetection.ts", + "source_location": "L77", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_defenseindepthdetection_detectthreats", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "detectthreats()" + }, + { + "label": "depackageModel.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackageModel.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagemodel", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "depackagemodel.ts" + }, + { + "label": "DepackageFailureCode", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackageModel.ts", + "source_location": "L19", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagemodel_depackagefailurecode", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "depackagefailurecode" + }, + { + "label": "DepackageFailure", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackageModel.ts", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagemodel_depackagefailure", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "depackagefailure" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackageModel.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagemodel_depackagefailure_constructor", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": ".constructor()" + }, + { + "label": "DepackageLimits", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackageModel.ts", + "source_location": "L37", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagemodel_depackagelimits", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "depackagelimits" + }, + { + "label": "DEPACKAGE_DEFAULTS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackageModel.ts", + "source_location": "L42", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagemodel_depackage_defaults", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "depackage_defaults" + }, + { + "label": "resolveMaxInputBytes()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackageModel.ts", + "source_location": "L52", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagemodel_resolvemaxinputbytes", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "resolvemaxinputbytes()" + }, + { + "label": "Leaf", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackageModel.ts", + "source_location": "L60", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagemodel_leaf", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "leaf" + }, + { + "label": "ParseOut", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackageModel.ts", + "source_location": "L76", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagemodel_parseout", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "parseout" + }, + { + "label": "RFC-822", + "file_type": "concept", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackageModel.ts", + "source_location": "L6", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagemodel_ts_docref_rfc_822", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "rfc-822" + }, + { + "label": "depackagingService.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingService.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingservice", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "depackagingservice.ts" + }, + { + "label": "resolveCrosvmConfig()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingService.ts", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingservice_resolvecrosvmconfig", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "resolvecrosvmconfig()" + }, + { + "label": "getDepackagingProvider()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingService.ts", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingservice_getdepackagingprovider", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "getdepackagingprovider()" + }, + { + "label": "_resetDepackagingProviderForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingService.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingservice_resetdepackagingproviderfortests", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "_resetdepackagingproviderfortests()" + }, + { + "label": "DepackageOutcome", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingService.ts", + "source_location": "L57", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingservice_depackageoutcome", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "depackageoutcome" + }, + { + "label": "depackageUntrustedBytes()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingService.ts", + "source_location": "L69", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingservice_depackageuntrustedbytes", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "depackageuntrustedbytes()" + }, + { + "label": "depackagingWorker.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingWorker.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "depackagingworker.ts" + }, + { + "label": "BlobArtifact", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingWorker.ts", + "source_location": "L34", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker_blobartifact", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "blobartifact" + }, + { + "label": "DepackagingOutput", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingWorker.ts", + "source_location": "L43", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker_depackagingoutput", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "depackagingoutput" + }, + { + "label": "depackage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingWorker.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker_depackage", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "depackage()" + }, + { + "label": "runDepackagingJob()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingWorker.ts", + "source_location": "L116", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker_rundepackagingjob", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "rundepackagingjob()" + }, + { + "label": "displayEnvelope.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "displayenvelope.ts" + }, + { + "label": "EnvelopeAddress", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L21", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_envelopeaddress", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "envelopeaddress" + }, + { + "label": "DisplayEnvelope", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L26", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_displayenvelope", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "displayenvelope" + }, + { + "label": "ENVELOPE_CAPS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L38", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_envelope_caps", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "envelope_caps" + }, + { + "label": "ThreadingHints", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L54", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_threadinghints", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "threadinghints" + }, + { + "label": "capMsgId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L60", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_capmsgid", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "capmsgid()" + }, + { + "label": "threadingFromHeaders()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L68", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_threadingfromheaders", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "threadingfromheaders()" + }, + { + "label": "threadingFromProvider()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L81", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_threadingfromprovider", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "threadingfromprovider()" + }, + { + "label": "decodeQ()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L96", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_decodeq", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "decodeq()" + }, + { + "label": "decodeOne()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L114", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_decodeone", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "decodeone()" + }, + { + "label": "decodeHeaderText()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L131", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_decodeheadertext", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "decodeheadertext()" + }, + { + "label": "capText()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L169", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_captext", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "captext()" + }, + { + "label": "stripQuotes()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L174", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_stripquotes", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "stripquotes()" + }, + { + "label": "splitAddressList()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L181", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_splitaddresslist", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "splitaddresslist()" + }, + { + "label": "parseOneAddress()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L201", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_parseoneaddress", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "parseoneaddress()" + }, + { + "label": "parseAddressList()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L226", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_parseaddresslist", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "parseaddresslist()" + }, + { + "label": "normalizeSubject()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L242", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_normalizesubject", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "normalizesubject()" + }, + { + "label": "normalizeDate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L250", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_normalizedate", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "normalizedate()" + }, + { + "label": "buildEnvelopeFromHeaders()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L261", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_buildenvelopefromheaders", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "buildenvelopefromheaders()" + }, + { + "label": "RawProviderAddress", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L279", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_rawprovideraddress", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "rawprovideraddress" + }, + { + "label": "RawProviderEnvelopeFields", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L283", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_rawproviderenvelopefields", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "rawproviderenvelopefields" + }, + { + "label": "normalizeProviderAddress()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L292", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_normalizeprovideraddress", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "normalizeprovideraddress()" + }, + { + "label": "normalizeProviderList()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L309", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_normalizeproviderlist", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "normalizeproviderlist()" + }, + { + "label": "buildEnvelopeFromFields()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L325", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_buildenvelopefromfields", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "buildenvelopefromfields()" + }, + { + "label": "RFC-2047", + "file_type": "concept", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L4", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_ts_docref_rfc_2047", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "rfc-2047" + }, + { + "label": "RFC-822", + "file_type": "concept", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L8", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_ts_docref_rfc_822", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "rfc-822" + }, + { + "label": "emailDepackage.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "emaildepackage.ts" + }, + { + "label": "SealedArtifact", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L54", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_sealedartifact", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "sealedartifact" + }, + { + "label": "OpaquePackage", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L67", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_opaquepackage", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "opaquepackage" + }, + { + "label": "DepackageEmailResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L78", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_depackageemailresult", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "depackageemailresult" + }, + { + "label": "parseHeaders()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L88", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_parseheaders", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "parseheaders()" + }, + { + "label": "decodeTransfer()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L101", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_decodetransfer", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "decodetransfer()" + }, + { + "label": "contentTypeOf()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L122", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_contenttypeof", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "contenttypeof()" + }, + { + "label": "splitHeaderBody()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L131", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_splitheaderbody", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "splitheaderbody()" + }, + { + "label": "parseEntity()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L140", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_parseentity", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "parseentity()" + }, + { + "label": "hardenedParse()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L189", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_hardenedparse", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "hardenedparse()" + }, + { + "label": "detectBeapCapsule()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L218", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_detectbeapcapsule", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "detectbeapcapsule()" + }, + { + "label": "detectBeapMessagePackage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L237", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_detectbeapmessagepackage", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "detectbeapmessagepackage()" + }, + { + "label": "detectBeapInJson()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L265", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_detectbeapinjson", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "detectbeapinjson()" + }, + { + "label": "isBeapAttachment()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L273", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_isbeapattachment", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "isbeapattachment()" + }, + { + "label": "isJsonAttachment()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L281", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_isjsonattachment", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "isjsonattachment()" + }, + { + "label": "encodingHintOf()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L289", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_encodinghintof", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "encodinghintof()" + }, + { + "label": "detectCarrierPackages()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L301", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_detectcarrierpackages", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "detectcarrierpackages()" + }, + { + "label": "sealArtifacts()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L368", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_sealartifacts", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "sealartifacts()" + }, + { + "label": "deriveBodyText()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L381", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_derivebodytext", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "derivebodytext()" + }, + { + "label": "buildResultFromParse()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L397", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_buildresultfromparse", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "buildresultfromparse()" + }, + { + "label": "toFailureResult()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L443", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_tofailureresult", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "tofailureresult()" + }, + { + "label": "depackageEmail()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L456", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_depackageemail", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "depackageemail()" + }, + { + "label": "depackageEmailStructured()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L476", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_depackageemailstructured", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "depackageemailstructured()" + }, + { + "label": "DepackageEmailJobInput", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L491", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_depackageemailjobinput", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "depackageemailjobinput" + }, + { + "label": "runDepackageEmailJob()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L514", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_rundepackageemailjob", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "rundepackageemailjob()" + }, + { + "label": "RFC-2047", + "file_type": "concept", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L198", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_ts_docref_rfc_2047", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "rfc-2047" + }, + { + "label": "RFC-822", + "file_type": "concept", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L394", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_ts_docref_rfc_822", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "rfc-822" + }, + { + "label": "htmlToText.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/htmlToText.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext", + "community": 200, + "community_name": "Depackagingmicrovm #200", + "norm_label": "htmltotext.ts" + }, + { + "label": "REMOVE_TAGS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/htmlToText.ts", + "source_location": "L23", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_remove_tags", + "community": 200, + "community_name": "Depackagingmicrovm #200", + "norm_label": "remove_tags" + }, + { + "label": "TRACKING_PATTERNS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/htmlToText.ts", + "source_location": "L30", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_tracking_patterns", + "community": 200, + "community_name": "Depackagingmicrovm #200", + "norm_label": "tracking_patterns" + }, + { + "label": "HTML_ENTITIES", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/htmlToText.ts", + "source_location": "L56", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_html_entities", + "community": 200, + "community_name": "Depackagingmicrovm #200", + "norm_label": "html_entities" + }, + { + "label": "decodeHtmlEntities()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/htmlToText.ts", + "source_location": "L82", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_decodehtmlentities", + "community": 200, + "community_name": "Depackagingmicrovm #200", + "norm_label": "decodehtmlentities()" + }, + { + "label": "isTrackingPixel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/htmlToText.ts", + "source_location": "L96", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_istrackingpixel", + "community": 200, + "community_name": "Depackagingmicrovm #200", + "norm_label": "istrackingpixel()" + }, + { + "label": "removeDangerousTags()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/htmlToText.ts", + "source_location": "L100", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_removedangeroustags", + "community": 200, + "community_name": "Depackagingmicrovm #200", + "norm_label": "removedangeroustags()" + }, + { + "label": "removeEventHandlers()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/htmlToText.ts", + "source_location": "L111", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_removeeventhandlers", + "community": 200, + "community_name": "Depackagingmicrovm #200", + "norm_label": "removeeventhandlers()" + }, + { + "label": "removeDangerousCss()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/htmlToText.ts", + "source_location": "L116", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_removedangerouscss", + "community": 200, + "community_name": "Depackagingmicrovm #200", + "norm_label": "removedangerouscss()" + }, + { + "label": "removeTrackingPixels()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/htmlToText.ts", + "source_location": "L124", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_removetrackingpixels", + "community": 200, + "community_name": "Depackagingmicrovm #200", + "norm_label": "removetrackingpixels()" + }, + { + "label": "SKIP_LINK_PATTERNS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/htmlToText.ts", + "source_location": "L137", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_skip_link_patterns", + "community": 200, + "community_name": "Depackagingmicrovm #200", + "norm_label": "skip_link_patterns" + }, + { + "label": "shouldSkipLink()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/htmlToText.ts", + "source_location": "L158", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_shouldskiplink", + "community": 200, + "community_name": "Depackagingmicrovm #200", + "norm_label": "shouldskiplink()" + }, + { + "label": "convertLinksToText()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/htmlToText.ts", + "source_location": "L163", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_convertlinkstotext", + "community": 200, + "community_name": "Depackagingmicrovm #200", + "norm_label": "convertlinkstotext()" + }, + { + "label": "convertBlocksToBreaks()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/htmlToText.ts", + "source_location": "L185", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_convertblockstobreaks", + "community": 200, + "community_name": "Depackagingmicrovm #200", + "norm_label": "convertblockstobreaks()" + }, + { + "label": "stripAllTags()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/htmlToText.ts", + "source_location": "L199", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_stripalltags", + "community": 200, + "community_name": "Depackagingmicrovm #200", + "norm_label": "stripalltags()" + }, + { + "label": "cleanWhitespace()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/htmlToText.ts", + "source_location": "L203", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_cleanwhitespace", + "community": 200, + "community_name": "Depackagingmicrovm #200", + "norm_label": "cleanwhitespace()" + }, + { + "label": "htmlToSafeText()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/htmlToText.ts", + "source_location": "L218", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_htmltosafetext", + "community": 200, + "community_name": "Depackagingmicrovm #200", + "norm_label": "htmltosafetext()" + }, + { + "label": "IMPORTANT: keep this byte-for-byte equivalent to `email/sanitizer.ts`. Any", + "file_type": "rationale", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/htmlToText.ts", + "source_location": "L14", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_rationale_14", + "community": 200, + "community_name": "Depackagingmicrovm #200", + "norm_label": "important: keep this byte-for-byte equivalent to `email/sanitizer.ts`. any" + }, + { + "label": "hypervisorProvider.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "hypervisorprovider.ts" + }, + { + "label": "JobKind", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts", + "source_location": "L41", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_jobkind", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "jobkind" + }, + { + "label": "JobSpec", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts", + "source_location": "L55", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_jobspec", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "jobspec" + }, + { + "label": "JobLimits", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts", + "source_location": "L80", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_joblimits", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "joblimits" + }, + { + "label": "JobResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts", + "source_location": "L89", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_jobresult", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "jobresult" + }, + { + "label": "DepackageEmailJobResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts", + "source_location": "L112", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_depackageemailjobresult", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "depackageemailjobresult" + }, + { + "label": "SandboxHypervisorProvider", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts", + "source_location": "L123", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_sandboxhypervisorprovider", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": "sandboxhypervisorprovider" + }, + { + "label": ".isAvailable()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts", + "source_location": "L127", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_sandboxhypervisorprovider_isavailable", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": ".isavailable()" + }, + { + "label": ".runJob()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts", + "source_location": "L138", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_sandboxhypervisorprovider_runjob", + "community": 7, + "community_name": "Critical Jobs Dispatcher", + "norm_label": ".runjob()" + }, + { + "label": "canonicalJobResultBytes()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts", + "source_location": "L148", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_canonicaljobresultbytes", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "canonicaljobresultbytes()" + }, + { + "label": "signJobResult()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts", + "source_location": "L166", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_signjobresult", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "signjobresult()" + }, + { + "label": "verifyJobResultSignature()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts", + "source_location": "L192", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_verifyjobresultsignature", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "verifyjobresultsignature()" + }, + { + "label": "stableStringify()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts", + "source_location": "L219", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_stablestringify", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "stablestringify()" + }, + { + "label": "canonicalDepackageEmailResultBytes()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts", + "source_location": "L244", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_canonicaldepackageemailresultbytes", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "canonicaldepackageemailresultbytes()" + }, + { + "label": "signDepackageEmailResult()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts", + "source_location": "L280", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_signdepackageemailresult", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "signdepackageemailresult()" + }, + { + "label": "verifyDepackageEmailResultSignature()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts", + "source_location": "L299", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_verifydepackageemailresultsignature", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "verifydepackageemailresultsignature()" + }, + { + "label": "RFC-822", + "file_type": "concept", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts", + "source_location": "L71", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_ts_docref_rfc_822", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "rfc-822" + }, + { + "label": "legacyRepair.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/legacyRepair.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_legacyrepair", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "legacyrepair.ts" + }, + { + "label": "HandshakeKeyView", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/legacyRepair.ts", + "source_location": "L15", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_legacyrepair_handshakekeyview", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "handshakekeyview" + }, + { + "label": "ERR_HANDSHAKE_LOCAL_KEY_MISSING", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/legacyRepair.ts", + "source_location": "L24", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_legacyrepair_err_handshake_local_key_missing", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "err_handshake_local_key_missing" + }, + { + "label": "RepairAffordance", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/legacyRepair.ts", + "source_location": "L26", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_legacyrepair_repairaffordance", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "repairaffordance" + }, + { + "label": "SandboxKeyReadiness", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/legacyRepair.ts", + "source_location": "L33", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_legacyrepair_sandboxkeyreadiness", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "sandboxkeyreadiness" + }, + { + "label": "isValidX25519PubB64()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/legacyRepair.ts", + "source_location": "L37", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_legacyrepair_isvalidx25519pubb64", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "isvalidx25519pubb64()" + }, + { + "label": "assessSandboxKeyReadiness()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/legacyRepair.ts", + "source_location": "L51", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_legacyrepair_assesssandboxkeyreadiness", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "assesssandboxkeyreadiness()" + }, + { + "label": "livePbeapTrust.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/livePbeapTrust.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_livepbeaptrust", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "livepbeaptrust.ts" + }, + { + "label": "LivePbeapTrustInput", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/livePbeapTrust.ts", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_livepbeaptrust_livepbeaptrustinput", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "livepbeaptrustinput" + }, + { + "label": "classifyLivePbeapTrust()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/livePbeapTrust.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_livepbeaptrust_classifylivepbeaptrust", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "classifylivepbeaptrust()" + }, + { + "label": "pbeapTrustMetadata()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/livePbeapTrust.ts", + "source_location": "L50", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_livepbeaptrust_pbeaptrustmetadata", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "pbeaptrustmetadata()" + }, + { + "label": "mimeExtract.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/mimeExtract.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_mimeextract", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "mimeextract.ts" + }, + { + "label": "MimePart", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/mimeExtract.ts", + "source_location": "L15", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_mimeextract_mimepart", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "mimepart" + }, + { + "label": "ExtractedMime", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/mimeExtract.ts", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_mimeextract_extractedmime", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "extractedmime" + }, + { + "label": "MIME_LIMITS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/mimeExtract.ts", + "source_location": "L30", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_mimeextract_mime_limits", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "mime_limits" + }, + { + "label": "parseHeaders()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/mimeExtract.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_mimeextract_parseheaders", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "parseheaders()" + }, + { + "label": "decodeTransfer()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/mimeExtract.ts", + "source_location": "L50", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_mimeextract_decodetransfer", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "decodetransfer()" + }, + { + "label": "contentTypeOf()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/mimeExtract.ts", + "source_location": "L66", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_mimeextract_contenttypeof", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "contenttypeof()" + }, + { + "label": "splitHeaderBody()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/mimeExtract.ts", + "source_location": "L79", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_mimeextract_splitheaderbody", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "splitheaderbody()" + }, + { + "label": "extractMime()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/mimeExtract.ts", + "source_location": "L92", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_mimeextract_extractmime", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "extractmime()" + }, + { + "label": "RFC-822", + "file_type": "concept", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/mimeExtract.ts", + "source_location": "L38", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_mimeextract_ts_docref_rfc_822", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "rfc-822" + }, + { + "label": "pbeapTrust.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/pbeapTrust.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_pbeaptrust", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "pbeaptrust.ts" + }, + { + "label": "PbeapTrustLevel", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/pbeapTrust.ts", + "source_location": "L33", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_pbeaptrust_pbeaptrustlevel", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "pbeaptrustlevel" + }, + { + "label": "PbeapTrustResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/pbeapTrust.ts", + "source_location": "L35", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_pbeaptrust_pbeaptrustresult", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "pbeaptrustresult" + }, + { + "label": "PbeapHeaderView", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/pbeapTrust.ts", + "source_location": "L43", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_pbeaptrust_pbeapheaderview", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "pbeapheaderview" + }, + { + "label": "KnownCounterparty", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/pbeapTrust.ts", + "source_location": "L50", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_pbeaptrust_knowncounterparty", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "knowncounterparty" + }, + { + "label": "ClassifyPbeapArgs", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/pbeapTrust.ts", + "source_location": "L58", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_pbeaptrust_classifypbeapargs", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "classifypbeapargs" + }, + { + "label": "classifyPbeapTrust()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/pbeapTrust.ts", + "source_location": "L74", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_pbeaptrust_classifypbeaptrust", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "classifypbeaptrust()" + }, + { + "label": "providerStructuredWalker.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/providerStructuredWalker.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "providerstructuredwalker.ts" + }, + { + "label": "assertJsonDepth()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/providerStructuredWalker.ts", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker_assertjsondepth", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "assertjsondepth()" + }, + { + "label": "decodeBase64Guarded()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/providerStructuredWalker.ts", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker_decodebase64guarded", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "decodebase64guarded()" + }, + { + "label": "WalkBudget", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/providerStructuredWalker.ts", + "source_location": "L58", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker_walkbudget", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "walkbudget" + }, + { + "label": "ProviderStructuredAdapter", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/providerStructuredWalker.ts", + "source_location": "L66", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker_providerstructuredadapter", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "providerstructuredadapter" + }, + { + "label": ".walk()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/providerStructuredWalker.ts", + "source_location": "L69", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker_providerstructuredadapter_walk", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": ".walk()" + }, + { + "label": "chargeBytes()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/providerStructuredWalker.ts", + "source_location": "L72", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker_chargebytes", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "chargebytes()" + }, + { + "label": "chargePart()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/providerStructuredWalker.ts", + "source_location": "L79", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker_chargepart", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "chargepart()" + }, + { + "label": "pushLeaf()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/providerStructuredWalker.ts", + "source_location": "L86", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker_pushleaf", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "pushleaf()" + }, + { + "label": "graphAddr()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/providerStructuredWalker.ts", + "source_location": "L104", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker_graphaddr", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "graphaddr()" + }, + { + "label": "graphList()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/providerStructuredWalker.ts", + "source_location": "L114", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker_graphlist", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "graphlist()" + }, + { + "label": "outlookAdapter", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/providerStructuredWalker.ts", + "source_location": "L124", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker_outlookadapter", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "outlookadapter" + }, + { + "label": "ADAPTERS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/providerStructuredWalker.ts", + "source_location": "L210", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker_adapters", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "adapters" + }, + { + "label": "walkProviderStructured()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/providerStructuredWalker.ts", + "source_location": "L221", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker_walkproviderstructured", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "walkproviderstructured()" + }, + { + "label": "RFC-822", + "file_type": "concept", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/providerStructuredWalker.ts", + "source_location": "L6", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker_ts_docref_rfc_822", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "rfc-822" + }, + { + "label": "build-golden-image.sh", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/build-golden-image.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "file" + }, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_build_golden_image", + "community": 495, + "community_name": "Depackagingmicrovm #495", + "norm_label": "build-golden-image.sh" + }, + { + "label": "build-golden-image.sh script", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/build-golden-image.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "bash_entrypoint" + }, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_build_golden_image_sh__entry", + "community": 495, + "community_name": "Depackagingmicrovm #495", + "norm_label": "build-golden-image.sh script" + }, + { + "label": "stage_mod()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/build-golden-image.sh", + "source_location": "L86", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_build_golden_image_stage_mod", + "community": 495, + "community_name": "Depackagingmicrovm #495", + "norm_label": "stage_mod()" + }, + { + "label": "buildWorkerBundle.mjs", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/buildWorkerBundle.mjs", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_buildworkerbundle", + "community": 325, + "community_name": "Depackagingmicrovm #325", + "norm_label": "buildworkerbundle.mjs" + }, + { + "label": "here", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/buildWorkerBundle.mjs", + "source_location": "L51", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_buildworkerbundle_here", + "community": 325, + "community_name": "Depackagingmicrovm #325", + "norm_label": "here" + }, + { + "label": "outfile", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/buildWorkerBundle.mjs", + "source_location": "L52", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_buildworkerbundle_outfile", + "community": 325, + "community_name": "Depackagingmicrovm #325", + "norm_label": "outfile" + }, + { + "label": "provenanceFile", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/buildWorkerBundle.mjs", + "source_location": "L53", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_buildworkerbundle_provenancefile", + "community": 325, + "community_name": "Depackagingmicrovm #325", + "norm_label": "provenancefile" + }, + { + "label": "markerFile", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/buildWorkerBundle.mjs", + "source_location": "L59", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_buildworkerbundle_markerfile", + "community": 325, + "community_name": "Depackagingmicrovm #325", + "norm_label": "markerfile" + }, + { + "label": "findLockfile()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/buildWorkerBundle.mjs", + "source_location": "L73", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_buildworkerbundle_findlockfile", + "community": 325, + "community_name": "Depackagingmicrovm #325", + "norm_label": "findlockfile()" + }, + { + "label": "sha256File()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/buildWorkerBundle.mjs", + "source_location": "L85", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_buildworkerbundle_sha256file", + "community": 325, + "community_name": "Depackagingmicrovm #325", + "norm_label": "sha256file()" + }, + { + "label": "stripModuleBanners()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/buildWorkerBundle.mjs", + "source_location": "L96", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_buildworkerbundle_stripmodulebanners", + "community": 325, + "community_name": "Depackagingmicrovm #325", + "norm_label": "stripmodulebanners()" + }, + { + "label": "cleaned", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/buildWorkerBundle.mjs", + "source_location": "L124", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_buildworkerbundle_cleaned", + "community": 325, + "community_name": "Depackagingmicrovm #325", + "norm_label": "cleaned" + }, + { + "label": "lockfile", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/buildWorkerBundle.mjs", + "source_location": "L130", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_buildworkerbundle_lockfile", + "community": 325, + "community_name": "Depackagingmicrovm #325", + "norm_label": "lockfile" + }, + { + "label": "inputs", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/buildWorkerBundle.mjs", + "source_location": "L135", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_buildworkerbundle_inputs", + "community": 325, + "community_name": "Depackagingmicrovm #325", + "norm_label": "inputs" + }, + { + "label": "provenance", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/buildWorkerBundle.mjs", + "source_location": "L143", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_buildworkerbundle_provenance", + "community": 325, + "community_name": "Depackagingmicrovm #325", + "norm_label": "provenance" + }, + { + "label": "crosvm-launch.sh", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/crosvm-launch.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "file" + }, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_crosvm_launch", + "community": 496, + "community_name": "Depackagingmicrovm #496", + "norm_label": "crosvm-launch.sh" + }, + { + "label": "crosvm-launch.sh script", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/crosvm-launch.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "bash_entrypoint" + }, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_crosvm_launch_sh__entry", + "community": 496, + "community_name": "Depackagingmicrovm #496", + "norm_label": "crosvm-launch.sh script" + }, + { + "label": "cleanup()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/crosvm-launch.sh", + "source_location": "L43", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_crosvm_launch_cleanup", + "community": 496, + "community_name": "Depackagingmicrovm #496", + "norm_label": "cleanup()" + }, + { + "label": "guestEntry.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/guestEntry.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_guestentry", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "guestentry.ts" + }, + { + "label": "GuestJobInput", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/guestEntry.ts", + "source_location": "L34", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_guestentry_guestjobinput", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "guestjobinput" + }, + { + "label": "readStdin()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/guestEntry.ts", + "source_location": "L48", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_guestentry_readstdin", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "readstdin()" + }, + { + "label": "main()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/guestEntry.ts", + "source_location": "L57", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_guestentry_main", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "main()" + }, + { + "label": "RFC-822", + "file_type": "concept", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/guestEntry.ts", + "source_location": "L40", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_guestentry_ts_docref_rfc_822", + "community": 52, + "community_name": "Depackagingmicrovm", + "norm_label": "rfc-822" + }, + { + "label": "host-setup-root.sh", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/host-setup-root.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "file" + }, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_host_setup_root", + "community": 497, + "community_name": "Depackagingmicrovm #497", + "norm_label": "host-setup-root.sh" + }, + { + "label": "host-setup-root.sh script", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/host-setup-root.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "bash_entrypoint" + }, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_host_setup_root_sh__entry", + "community": 497, + "community_name": "Depackagingmicrovm #497", + "norm_label": "host-setup-root.sh script" + }, + { + "label": "DEBIAN_FRONTEND", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/host-setup-root.sh", + "source_location": "L27", + "metadata": { + "language": "bash", + "kind": "code" + }, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_host_setup_root_debian_frontend", + "community": 497, + "community_name": "Depackagingmicrovm #497", + "norm_label": "debian_frontend" + }, + { + "label": "smokeTest.mjs", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/smokeTest.mjs", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_smoketest", + "community": 326, + "community_name": "Depackagingmicrovm #326", + "norm_label": "smoketest.mjs" + }, + { + "label": "here", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/smokeTest.mjs", + "source_location": "L20", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_smoketest_here", + "community": 326, + "community_name": "Depackagingmicrovm #326", + "norm_label": "here" + }, + { + "label": "bundle", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/smokeTest.mjs", + "source_location": "L21", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_smoketest_bundle", + "community": 326, + "community_name": "Depackagingmicrovm #326", + "norm_label": "bundle" + }, + { + "label": "sandboxPubB64", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/smokeTest.mjs", + "source_location": "L23", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_smoketest_sandboxpubb64", + "community": 326, + "community_name": "Depackagingmicrovm #326", + "norm_label": "sandboxpubb64" + }, + { + "label": "eml", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/smokeTest.mjs", + "source_location": "L27", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_smoketest_eml", + "community": 326, + "community_name": "Depackagingmicrovm #326", + "norm_label": "eml" + }, + { + "label": "emlB64", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/smokeTest.mjs", + "source_location": "L45", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_smoketest_emlb64", + "community": 326, + "community_name": "Depackagingmicrovm #326", + "norm_label": "emlb64" + }, + { + "label": "graphJson", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/smokeTest.mjs", + "source_location": "L48", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_smoketest_graphjson", + "community": 326, + "community_name": "Depackagingmicrovm #326", + "norm_label": "graphjson" + }, + { + "label": "unwrap()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/smokeTest.mjs", + "source_location": "L69", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_smoketest_unwrap", + "community": 326, + "community_name": "Depackagingmicrovm #326", + "norm_label": "unwrap()" + }, + { + "label": "runJob()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/smokeTest.mjs", + "source_location": "L74", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_smoketest_runjob", + "community": 326, + "community_name": "Depackagingmicrovm #326", + "norm_label": "runjob()" + }, + { + "label": "checkResult()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/smokeTest.mjs", + "source_location": "L86", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_smoketest_checkresult", + "community": 326, + "community_name": "Depackagingmicrovm #326", + "norm_label": "checkresult()" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/smokeTest.mjs", + "source_location": "L114", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_smoketest_paths", + "community": 326, + "community_name": "Depackagingmicrovm #326", + "norm_label": "paths" + }, + { + "label": "RFC-822", + "file_type": "concept", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/smokeTest.mjs", + "source_location": "L8", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_smoketest_mjs_docref_rfc_822", + "community": 326, + "community_name": "Depackagingmicrovm #326", + "norm_label": "rfc-822" + }, + { + "label": "vsock-echo.c", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/vsock-echo.c", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_vsock_echo_c_apps_electron_vite_project_electron_main_depackaging_microvm_rig_vsock_echo", + "community": 538, + "community_name": "Depackagingmicrovm #538", + "norm_label": "vsock-echo.c" + }, + { + "label": "main()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/vsock-echo.c", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_vsock_echo_main", + "community": 538, + "community_name": "Depackagingmicrovm #538", + "norm_label": "main()" + }, + { + "label": "vsock-echo.sh", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/vsock-echo.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "file" + }, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_vsock_echo_sh_apps_electron_vite_project_electron_main_depackaging_microvm_rig_vsock_echo", + "community": 539, + "community_name": "Depackagingmicrovm #539", + "norm_label": "vsock-echo.sh" + }, + { + "label": "vsock-echo.sh script", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/vsock-echo.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "bash_entrypoint" + }, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_vsock_echo_sh__entry", + "community": 539, + "community_name": "Depackagingmicrovm #539", + "norm_label": "vsock-echo.sh script" + }, + { + "label": "vsock-host-client.c", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/vsock-host-client.c", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_vsock_host_client", + "community": 540, + "community_name": "Depackagingmicrovm #540", + "norm_label": "vsock-host-client.c" + }, + { + "label": "main()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/vsock-host-client.c", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_vsock_host_client_main", + "community": 540, + "community_name": "Depackagingmicrovm #540", + "norm_label": "main()" + }, + { + "label": "vsock-job-server.c", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/vsock-job-server.c", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_vsock_job_server", + "community": 498, + "community_name": "Depackagingmicrovm #498", + "norm_label": "vsock-job-server.c" + }, + { + "label": "copy_until_eof()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/vsock-job-server.c", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_vsock_job_server_copy_until_eof", + "community": 498, + "community_name": "Depackagingmicrovm #498", + "norm_label": "copy_until_eof()" + }, + { + "label": "main()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/vsock-job-server.c", + "source_location": "L41", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_vsock_job_server_main", + "community": 498, + "community_name": "Depackagingmicrovm #498", + "norm_label": "main()" + }, + { + "label": "safeText.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/safeText.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "safetext.ts" + }, + { + "label": "SafeTextV1", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/safeText.ts", + "source_location": "L59", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext_safetextv1", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "safetextv1" + }, + { + "label": "SAFE_TEXT_SCHEMA", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/safeText.ts", + "source_location": "L69", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext_safe_text_schema", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "safe_text_schema" + }, + { + "label": "SAFE_TEXT_LIMITS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/safeText.ts", + "source_location": "L72", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext_safe_text_limits", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "safe_text_limits" + }, + { + "label": "toPlainTextField()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/safeText.ts", + "source_location": "L92", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext_toplaintextfield", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "toplaintextfield()" + }, + { + "label": "constructSafeText()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/safeText.ts", + "source_location": "L117", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext_constructsafetext", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "constructsafetext()" + }, + { + "label": "SafeTextValidation", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/safeText.ts", + "source_location": "L130", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext_safetextvalidation", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "safetextvalidation" + }, + { + "label": "ALLOWED_KEYS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/safeText.ts", + "source_location": "L135", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext_allowed_keys", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "allowed_keys" + }, + { + "label": "validateSafeText()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/safeText.ts", + "source_location": "L148", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext_validatesafetext", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "validatesafetext()" + }, + { + "label": "deviceKeyMigration.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyMigration.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_device_keys_devicekeymigration", + "community": 238, + "community_name": "Devicekeys Orchestratordb", + "norm_label": "devicekeymigration.ts" + }, + { + "label": "computeKeyId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyMigration.ts", + "source_location": "L41", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_device_keys_devicekeymigration_computekeyid", + "community": 238, + "community_name": "Devicekeys Orchestratordb", + "norm_label": "computekeyid()" + }, + { + "label": "ExtensionRpcSender", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyMigration.ts", + "source_location": "L57", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_device_keys_devicekeymigration_extensionrpcsender", + "community": 238, + "community_name": "Devicekeys Orchestratordb", + "norm_label": "extensionrpcsender" + }, + { + "label": "requestExtensionDeviceKey()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyMigration.ts", + "source_location": "L62", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_device_keys_devicekeymigration_requestextensiondevicekey", + "community": 238, + "community_name": "Devicekeys Orchestratordb", + "norm_label": "requestextensiondevicekey()" + }, + { + "label": "requestExtensionDeleteDeviceKey()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyMigration.ts", + "source_location": "L87", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_device_keys_devicekeymigration_requestextensiondeletedevicekey", + "community": 238, + "community_name": "Devicekeys Orchestratordb", + "norm_label": "requestextensiondeletedevicekey()" + }, + { + "label": "generateNewDeviceKeyPair()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyMigration.ts", + "source_location": "L98", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_device_keys_devicekeymigration_generatenewdevicekeypair", + "community": 238, + "community_name": "Devicekeys Orchestratordb", + "norm_label": "generatenewdevicekeypair()" + }, + { + "label": "migrateDeviceKeyFromExtension()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyMigration.ts", + "source_location": "L123", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_device_keys_devicekeymigration_migratedevicekeyfromextension", + "community": 238, + "community_name": "Devicekeys Orchestratordb", + "norm_label": "migratedevicekeyfromextension()" + }, + { + "label": "deviceKeyStore.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyStore.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_device_keys_devicekeystore", + "community": 238, + "community_name": "Devicekeys Orchestratordb", + "norm_label": "devicekeystore.ts" + }, + { + "label": "DeviceKeyNotFoundError", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyStore.ts", + "source_location": "L40", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_device_keys_devicekeystore_devicekeynotfounderror", + "community": 238, + "community_name": "Devicekeys Orchestratordb", + "norm_label": "devicekeynotfounderror" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyStore.ts", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_device_keys_devicekeystore_devicekeynotfounderror_constructor", + "community": 238, + "community_name": "Devicekeys Orchestratordb", + "norm_label": ".constructor()" + }, + { + "label": "DeviceKeyAlreadyExistsError", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyStore.ts", + "source_location": "L54", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_device_keys_devicekeystore_devicekeyalreadyexistserror", + "community": 238, + "community_name": "Devicekeys Orchestratordb", + "norm_label": "devicekeyalreadyexistserror" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyStore.ts", + "source_location": "L57", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_device_keys_devicekeystore_devicekeyalreadyexistserror_constructor", + "community": 238, + "community_name": "Devicekeys Orchestratordb", + "norm_label": ".constructor()" + }, + { + "label": "deriveColumnKey()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyStore.ts", + "source_location": "L77", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_device_keys_devicekeystore_derivecolumnkey", + "community": 238, + "community_name": "Devicekeys Orchestratordb", + "norm_label": "derivecolumnkey()" + }, + { + "label": "encryptPrivateKey()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyStore.ts", + "source_location": "L102", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_device_keys_devicekeystore_encryptprivatekey", + "community": 238, + "community_name": "Devicekeys Orchestratordb", + "norm_label": "encryptprivatekey()" + }, + { + "label": "decryptPrivateKey()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyStore.ts", + "source_location": "L111", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_device_keys_devicekeystore_decryptprivatekey", + "community": 238, + "community_name": "Devicekeys Orchestratordb", + "norm_label": "decryptprivatekey()" + }, + { + "label": "DeviceKeyPair", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyStore.ts", + "source_location": "L122", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_device_keys_devicekeystore_devicekeypair", + "community": 238, + "community_name": "Devicekeys Orchestratordb", + "norm_label": "devicekeypair" + }, + { + "label": "getDeviceX25519KeyPair()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyStore.ts", + "source_location": "L133", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_device_keys_devicekeystore_getdevicex25519keypair", + "community": 238, + "community_name": "Devicekeys Orchestratordb", + "norm_label": "getdevicex25519keypair()" + }, + { + "label": "getDeviceX25519PublicKey()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyStore.ts", + "source_location": "L164", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_device_keys_devicekeystore_getdevicex25519publickey", + "community": 238, + "community_name": "Devicekeys Orchestratordb", + "norm_label": "getdevicex25519publickey()" + }, + { + "label": "storeDeviceX25519KeyPair()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyStore.ts", + "source_location": "L183", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_device_keys_devicekeystore_storedevicex25519keypair", + "community": 238, + "community_name": "Devicekeys Orchestratordb", + "norm_label": "storedevicex25519keypair()" + }, + { + "label": "deviceKeyExists()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyStore.ts", + "source_location": "L222", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_device_keys_devicekeystore_devicekeyexists", + "community": 238, + "community_name": "Devicekeys Orchestratordb", + "norm_label": "devicekeyexists()" + }, + { + "label": "a2SandboxIngestion.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/a2SandboxIngestion.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_a2sandboxingestion_test", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "a2sandboxingestion.test.ts" + }, + { + "label": "require", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/a2SandboxIngestion.test.ts", + "source_location": "L25", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_a2sandboxingestion_test_require", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "require" + }, + { + "label": "SANDBOX_OWNER", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/a2SandboxIngestion.test.ts", + "source_location": "L32", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_a2sandboxingestion_test_sandbox_owner", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "sandbox_owner" + }, + { + "label": "HOST_NODE", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/a2SandboxIngestion.test.ts", + "source_location": "L39", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_a2sandboxingestion_test_host_node", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "host_node" + }, + { + "label": "FAKE_TOKENS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/a2SandboxIngestion.test.ts", + "source_location": "L47", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_a2sandboxingestion_test_fake_tokens", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "fake_tokens" + }, + { + "label": "FAKE_RECORD", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/a2SandboxIngestion.test.ts", + "source_location": "L48", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_a2sandboxingestion_test_fake_record", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "fake_record" + }, + { + "label": "TEST_DEK", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/a2SandboxIngestion.test.ts", + "source_location": "L221", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_a2sandboxingestion_test_test_dek", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "test_dek" + }, + { + "label": "SESSION", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/a2SandboxIngestion.test.ts", + "source_location": "L222", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_a2sandboxingestion_test_session", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "session" + }, + { + "label": "h", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/a2SandboxIngestion.test.ts", + "source_location": "L223", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_a2sandboxingestion_test_h", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "h" + }, + { + "label": "buildValidSealForRowId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/a2SandboxIngestion.test.ts", + "source_location": "L243", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_a2sandboxingestion_test_buildvalidsealforrowid", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "buildvalidsealforrowid()" + }, + { + "label": "createTestDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/a2SandboxIngestion.test.ts", + "source_location": "L250", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_a2sandboxingestion_test_createtestdb", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "createtestdb()" + }, + { + "label": "eml()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/a2SandboxIngestion.test.ts", + "source_location": "L285", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_a2sandboxingestion_test_eml", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "eml()" + }, + { + "label": "accountDeleteAtomic.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/accountDeleteAtomic.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_accountdeleteatomic_test", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "accountdeleteatomic.test.ts" + }, + { + "label": "makeElectronMock()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/accountDeleteAtomic.test.ts", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_accountdeleteatomic_test_makeelectronmock", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "makeelectronmock()" + }, + { + "label": "writeTwoAccountFixture()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/accountDeleteAtomic.test.ts", + "source_location": "L37", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_accountdeleteatomic_test_writetwoaccountfixture", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "writetwoaccountfixture()" + }, + { + "label": "autosortSessionReview.regression.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/autosortSessionReview.regression.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_autosortsessionreview_regression_test", + "community": 432, + "community_name": "Email #432", + "norm_label": "autosortsessionreview.regression.test.ts" + }, + { + "label": "__filename", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/autosortSessionReview.regression.test.ts", + "source_location": "L10", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_autosortsessionreview_regression_test_filename", + "community": 432, + "community_name": "Email #432", + "norm_label": "__filename" + }, + { + "label": "__dirname", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/autosortSessionReview.regression.test.ts", + "source_location": "L11", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_autosortsessionreview_regression_test_dirname", + "community": 432, + "community_name": "Email #432", + "norm_label": "__dirname" + }, + { + "label": "ipcPath", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/autosortSessionReview.regression.test.ts", + "source_location": "L13", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_autosortsessionreview_regression_test_ipcpath", + "community": 432, + "community_name": "Email #432", + "norm_label": "ipcpath" + }, + { + "label": "bulkViewPath", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/autosortSessionReview.regression.test.ts", + "source_location": "L14", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_autosortsessionreview_regression_test_bulkviewpath", + "community": 432, + "community_name": "Email #432", + "norm_label": "bulkviewpath" + }, + { + "label": "b2LiveIngestion.rig.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b2LiveIngestion.rig.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b2liveingestion_rig_test", + "community": 371, + "community_name": "Email #371", + "norm_label": "b2liveingestion.rig.test.ts" + }, + { + "label": "require", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b2LiveIngestion.rig.test.ts", + "source_location": "L41", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b2liveingestion_rig_test_require", + "community": 371, + "community_name": "Email #371", + "norm_label": "require" + }, + { + "label": "rigAvailable()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b2LiveIngestion.rig.test.ts", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b2liveingestion_rig_test_rigavailable", + "community": 371, + "community_name": "Email #371", + "norm_label": "rigavailable()" + }, + { + "label": "RIG", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b2LiveIngestion.rig.test.ts", + "source_location": "L64", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b2liveingestion_rig_test_rig", + "community": 371, + "community_name": "Email #371", + "norm_label": "rig" + }, + { + "label": "TEST_DEK", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b2LiveIngestion.rig.test.ts", + "source_location": "L68", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b2liveingestion_rig_test_test_dek", + "community": 371, + "community_name": "Email #371", + "norm_label": "test_dek" + }, + { + "label": "SESSION", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b2LiveIngestion.rig.test.ts", + "source_location": "L69", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b2liveingestion_rig_test_session", + "community": 371, + "community_name": "Email #371", + "norm_label": "session" + }, + { + "label": "buildValidSealForRowId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b2LiveIngestion.rig.test.ts", + "source_location": "L96", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b2liveingestion_rig_test_buildvalidsealforrowid", + "community": 371, + "community_name": "Email #371", + "norm_label": "buildvalidsealforrowid()" + }, + { + "label": "createTestDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b2LiveIngestion.rig.test.ts", + "source_location": "L103", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b2liveingestion_rig_test_createtestdb", + "community": 371, + "community_name": "Email #371", + "norm_label": "createtestdb()" + }, + { + "label": "SANDBOX_OWNER", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b2LiveIngestion.rig.test.ts", + "source_location": "L140", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b2liveingestion_rig_test_sandbox_owner", + "community": 371, + "community_name": "Email #371", + "norm_label": "sandbox_owner" + }, + { + "label": "b31GapClosure.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b31GapClosure.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b31gapclosure_test", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "b31gapclosure.test.ts" + }, + { + "label": "require", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b31GapClosure.test.ts", + "source_location": "L37", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b31gapclosure_test_require", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "require" + }, + { + "label": "SEAL_KEY", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b31GapClosure.test.ts", + "source_location": "L161", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b31gapclosure_test_seal_key", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "seal_key" + }, + { + "label": "makeSeal()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b31GapClosure.test.ts", + "source_location": "L163", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b31gapclosure_test_makeseal", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "makeseal()" + }, + { + "label": "buildSealParams()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b31GapClosure.test.ts", + "source_location": "L167", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b31gapclosure_test_buildsealparams", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "buildsealparams()" + }, + { + "label": "createTestDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b31GapClosure.test.ts", + "source_location": "L194", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b31gapclosure_test_createtestdb", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "createtestdb()" + }, + { + "label": "b4P2PRelayMigration.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b4P2PRelayMigration.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b4p2prelaymigration_test", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "b4p2prelaymigration.test.ts" + }, + { + "label": "require", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b4P2PRelayMigration.test.ts", + "source_location": "L34", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b4p2prelaymigration_test_require", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "require" + }, + { + "label": "makeEmptyDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b4P2PRelayMigration.test.ts", + "source_location": "L50", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b4p2prelaymigration_test_makeemptydb", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "makeemptydb()" + }, + { + "label": "makeTestDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b4P2PRelayMigration.test.ts", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b4p2prelaymigration_test_maketestdb", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "maketestdb()" + }, + { + "label": "TEST_DEK", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b4P2PRelayMigration.test.ts", + "source_location": "L110", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b4p2prelaymigration_test_test_dek", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "test_dek" + }, + { + "label": "buildValidSealForRowId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b4P2PRelayMigration.test.ts", + "source_location": "L116", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b4p2prelaymigration_test_buildvalidsealforrowid", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "buildvalidsealforrowid()" + }, + { + "label": "setupSealGate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b4P2PRelayMigration.test.ts", + "source_location": "L123", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b4p2prelaymigration_test_setupsealgate", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "setupsealgate()" + }, + { + "label": "teardownSealGate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b4P2PRelayMigration.test.ts", + "source_location": "L128", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b4p2prelaymigration_test_teardownsealgate", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "teardownsealgate()" + }, + { + "label": "makePBeapPackage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b4P2PRelayMigration.test.ts", + "source_location": "L136", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b4p2prelaymigration_test_makepbeappackage", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "makepbeappackage()" + }, + { + "label": "makeQBeapPackage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b4P2PRelayMigration.test.ts", + "source_location": "L153", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b4p2prelaymigration_test_makeqbeappackage", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "makeqbeappackage()" + }, + { + "label": "b51ExtensionMergeBypass.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b51ExtensionMergeBypass.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b51extensionmergebypass_test", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "b51extensionmergebypass.test.ts" + }, + { + "label": "mockFindPairedSandboxHandshake", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b51ExtensionMergeBypass.test.ts", + "source_location": "L51", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b51extensionmergebypass_test_mockfindpairedsandboxhandshake", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "mockfindpairedsandboxhandshake" + }, + { + "label": "require", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b51ExtensionMergeBypass.test.ts", + "source_location": "L95", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b51extensionmergebypass_test_require", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "require" + }, + { + "label": "TEST_DEK", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b51ExtensionMergeBypass.test.ts", + "source_location": "L110", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b51extensionmergebypass_test_test_dek", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "test_dek" + }, + { + "label": "makeDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b51ExtensionMergeBypass.test.ts", + "source_location": "L112", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b51extensionmergebypass_test_makedb", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "makedb()" + }, + { + "label": "insertShellRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b51ExtensionMergeBypass.test.ts", + "source_location": "L171", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b51extensionmergebypass_test_insertshellrow", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "insertshellrow()" + }, + { + "label": "getShellRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b51ExtensionMergeBypass.test.ts", + "source_location": "L177", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b51extensionmergebypass_test_getshellrow", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "getshellrow()" + }, + { + "label": "PACKAGE_JSON", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b51ExtensionMergeBypass.test.ts", + "source_location": "L181", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b51extensionmergebypass_test_package_json", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "package_json" + }, + { + "label": "makeSuccessOutcome()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b51ExtensionMergeBypass.test.ts", + "source_location": "L183", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b51extensionmergebypass_test_makesuccessoutcome", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "makesuccessoutcome()" + }, + { + "label": "makeRejectionOutcome()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b51ExtensionMergeBypass.test.ts", + "source_location": "L198", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b51extensionmergebypass_test_makerejectionoutcome", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "makerejectionoutcome()" + }, + { + "label": "makeQuarantineSuccessOutcome()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b51ExtensionMergeBypass.test.ts", + "source_location": "L221", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b51extensionmergebypass_test_makequarantinesuccessoutcome", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "makequarantinesuccessoutcome()" + }, + { + "label": "seedBuffer()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b51ExtensionMergeBypass.test.ts", + "source_location": "L429", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b51extensionmergebypass_test_seedbuffer", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "seedbuffer()" + }, + { + "label": "b5ExtensionMerge.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b5ExtensionMerge.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b5extensionmerge_test", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "b5extensionmerge.test.ts" + }, + { + "label": "buildValidSealForRowId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b5ExtensionMerge.test.ts", + "source_location": "L114", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b5extensionmerge_test_buildvalidsealforrowid", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "buildvalidsealforrowid()" + }, + { + "label": "makeDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b5ExtensionMerge.test.ts", + "source_location": "L121", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b5extensionmerge_test_makedb", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "makedb()" + }, + { + "label": "insertRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b5ExtensionMerge.test.ts", + "source_location": "L162", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b5extensionmerge_test_insertrow", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "insertrow()" + }, + { + "label": "getRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b5ExtensionMerge.test.ts", + "source_location": "L169", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b5extensionmerge_test_getrow", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "getrow()" + }, + { + "label": "getAttachments()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b5ExtensionMerge.test.ts", + "source_location": "L173", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b5extensionmerge_test_getattachments", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "getattachments()" + }, + { + "label": "makeSealedOutcome()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b5ExtensionMerge.test.ts", + "source_location": "L179", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b5extensionmerge_test_makesealedoutcome", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "makesealedoutcome()" + }, + { + "label": "makeRejectedOutcome()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b5ExtensionMerge.test.ts", + "source_location": "L195", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b5extensionmerge_test_makerejectedoutcome", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "makerejectedoutcome()" + }, + { + "label": "b71OperationalGate.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b71OperationalGate.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b71operationalgate_test", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "b71operationalgate.test.ts" + }, + { + "label": "require", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b71OperationalGate.test.ts", + "source_location": "L47", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b71operationalgate_test_require", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "require" + }, + { + "label": "TEST_DEK", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b71OperationalGate.test.ts", + "source_location": "L69", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b71operationalgate_test_test_dek", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "test_dek" + }, + { + "label": "makeDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b71OperationalGate.test.ts", + "source_location": "L71", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b71operationalgate_test_makedb", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "makedb()" + }, + { + "label": "skipIfNoBetterSqlite()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b71OperationalGate.test.ts", + "source_location": "L101", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b71operationalgate_test_skipifnobettersqlite", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "skipifnobettersqlite()" + }, + { + "label": "simulateClassify()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b71OperationalGate.test.ts", + "source_location": "L418", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b71operationalgate_test_simulateclassify", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "simulateclassify()" + }, + { + "label": "b72DecryptedContentReseal.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b72DecryptedContentReseal.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b72decryptedcontentreseal_test", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "b72decryptedcontentreseal.test.ts" + }, + { + "label": "require", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b72DecryptedContentReseal.test.ts", + "source_location": "L41", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b72decryptedcontentreseal_test_require", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "require" + }, + { + "label": "TEST_DEK", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b72DecryptedContentReseal.test.ts", + "source_location": "L60", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b72decryptedcontentreseal_test_test_dek", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "test_dek" + }, + { + "label": "buildValidSealForRowId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b72DecryptedContentReseal.test.ts", + "source_location": "L62", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b72decryptedcontentreseal_test_buildvalidsealforrowid", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "buildvalidsealforrowid()" + }, + { + "label": "makeDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b72DecryptedContentReseal.test.ts", + "source_location": "L69", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b72decryptedcontentreseal_test_makedb", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "makedb()" + }, + { + "label": "Db", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b72DecryptedContentReseal.test.ts", + "source_location": "L109", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b72decryptedcontentreseal_test_db", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "db" + }, + { + "label": "getRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b72DecryptedContentReseal.test.ts", + "source_location": "L111", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b72decryptedcontentreseal_test_getrow", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "getrow()" + }, + { + "label": "insertPendingRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b72DecryptedContentReseal.test.ts", + "source_location": "L115", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b72decryptedcontentreseal_test_insertpendingrow", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "insertpendingrow()" + }, + { + "label": "makeProvenance()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b72DecryptedContentReseal.test.ts", + "source_location": "L128", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b72decryptedcontentreseal_test_makeprovenance", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "makeprovenance()" + }, + { + "label": "makeSuccessOutcome()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b72DecryptedContentReseal.test.ts", + "source_location": "L140", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b72decryptedcontentreseal_test_makesuccessoutcome", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "makesuccessoutcome()" + }, + { + "label": "makeRejectionOutcome()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b72DecryptedContentReseal.test.ts", + "source_location": "L159", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b72decryptedcontentreseal_test_makerejectionoutcome", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "makerejectionoutcome()" + }, + { + "label": "b7IpcContentUpdates.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b7IpcContentUpdates.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b7ipccontentupdates_test", + "community": 309, + "community_name": "Email #309", + "norm_label": "b7ipccontentupdates.test.ts" + }, + { + "label": "require", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b7IpcContentUpdates.test.ts", + "source_location": "L56", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b7ipccontentupdates_test_require", + "community": 309, + "community_name": "Email #309", + "norm_label": "require" + }, + { + "label": "TEST_DEK", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b7IpcContentUpdates.test.ts", + "source_location": "L70", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b7ipccontentupdates_test_test_dek", + "community": 309, + "community_name": "Email #309", + "norm_label": "test_dek" + }, + { + "label": "buildValidSealForRowId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b7IpcContentUpdates.test.ts", + "source_location": "L72", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b7ipccontentupdates_test_buildvalidsealforrowid", + "community": 309, + "community_name": "Email #309", + "norm_label": "buildvalidsealforrowid()" + }, + { + "label": "makeDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b7IpcContentUpdates.test.ts", + "source_location": "L79", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b7ipccontentupdates_test_makedb", + "community": 309, + "community_name": "Email #309", + "norm_label": "makedb()" + }, + { + "label": "getRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b7IpcContentUpdates.test.ts", + "source_location": "L112", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b7ipccontentupdates_test_getrow", + "community": 309, + "community_name": "Email #309", + "norm_label": "getrow()" + }, + { + "label": "getAtt()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b7IpcContentUpdates.test.ts", + "source_location": "L116", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b7ipccontentupdates_test_getatt", + "community": 309, + "community_name": "Email #309", + "norm_label": "getatt()" + }, + { + "label": "makePlainEmail()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b7IpcContentUpdates.test.ts", + "source_location": "L125", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b7ipccontentupdates_test_makeplainemail", + "community": 309, + "community_name": "Email #309", + "norm_label": "makeplainemail()" + }, + { + "label": "makeBeapMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b7IpcContentUpdates.test.ts", + "source_location": "L134", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b7ipccontentupdates_test_makebeapmessage", + "community": 309, + "community_name": "Email #309", + "norm_label": "makebeapmessage()" + }, + { + "label": "seedSealedRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b7IpcContentUpdates.test.ts", + "source_location": "L197", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b7ipccontentupdates_test_seedsealedrow", + "community": 309, + "community_name": "Email #309", + "norm_label": "seedsealedrow()" + }, + { + "label": "seedUnsealedRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b7IpcContentUpdates.test.ts", + "source_location": "L204", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b7ipccontentupdates_test_seedunsealedrow", + "community": 309, + "community_name": "Email #309", + "norm_label": "seedunsealedrow()" + }, + { + "label": "makeSuccessOutcome()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b7IpcContentUpdates.test.ts", + "source_location": "L209", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b7ipccontentupdates_test_makesuccessoutcome", + "community": 309, + "community_name": "Email #309", + "norm_label": "makesuccessoutcome()" + }, + { + "label": "makeRejectionOutcome()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b7IpcContentUpdates.test.ts", + "source_location": "L225", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b7ipccontentupdates_test_makerejectionoutcome", + "community": 309, + "community_name": "Email #309", + "norm_label": "makerejectionoutcome()" + }, + { + "label": "seedParentAndAttachment()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b7IpcContentUpdates.test.ts", + "source_location": "L377", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b7ipccontentupdates_test_seedparentandattachment", + "community": 309, + "community_name": "Email #309", + "norm_label": "seedparentandattachment()" + }, + { + "label": "b9OutboundCloneIntegrity.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b9OutboundCloneIntegrity.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b9outboundcloneintegrity_test", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "b9outboundcloneintegrity.test.ts" + }, + { + "label": "{ listAvailableInternalSandboxes, getHandshakeRecord }", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b9OutboundCloneIntegrity.test.ts", + "source_location": "L33", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b9outboundcloneintegrity_test_listavailableinternalsandboxes_gethandshakerecord", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "{ listavailableinternalsandboxes, gethandshakerecord }" + }, + { + "label": "makeSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b9OutboundCloneIntegrity.test.ts", + "source_location": "L50", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b9outboundcloneintegrity_test_makesession", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "makesession()" + }, + { + "label": "makeHandshakeRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b9OutboundCloneIntegrity.test.ts", + "source_location": "L63", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b9outboundcloneintegrity_test_makehandshakerecord", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "makehandshakerecord()" + }, + { + "label": "makeEligibleEntry()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b9OutboundCloneIntegrity.test.ts", + "source_location": "L83", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b9outboundcloneintegrity_test_makeeligibleentry", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "makeeligibleentry()" + }, + { + "label": "mockHappyList()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b9OutboundCloneIntegrity.test.ts", + "source_location": "L102", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b9outboundcloneintegrity_test_mockhappylist", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "mockhappylist()" + }, + { + "label": "makeContent()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b9OutboundCloneIntegrity.test.ts", + "source_location": "L117", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_b9outboundcloneintegrity_test_makecontent", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "makecontent()" + }, + { + "label": "beapInboxClonePrepare.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepare.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_beapinboxcloneprepare_test", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "beapinboxcloneprepare.test.ts" + }, + { + "label": "{ listAvailableInternalSandboxes, getHandshakeRecord }", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepare.test.ts", + "source_location": "L6", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_beapinboxcloneprepare_test_listavailableinternalsandboxes_gethandshakerecord", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "{ listavailableinternalsandboxes, gethandshakerecord }" + }, + { + "label": "makeSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepare.test.ts", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_beapinboxcloneprepare_test_makesession", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "makesession()" + }, + { + "label": "makeHandshakeRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepare.test.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_beapinboxcloneprepare_test_makehandshakerecord", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "makehandshakerecord()" + }, + { + "label": "makeEligibleEntry()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepare.test.ts", + "source_location": "L65", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_beapinboxcloneprepare_test_makeeligibleentry", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "makeeligibleentry()" + }, + { + "label": "makeInboxDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepare.test.ts", + "source_location": "L85", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_beapinboxcloneprepare_test_makeinboxdb", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "makeinboxdb()" + }, + { + "label": "mockHappyList()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepare.test.ts", + "source_location": "L106", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_beapinboxcloneprepare_test_mockhappylist", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "mockhappylist()" + }, + { + "label": "beapInboxClonePrepareSealGate.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepareSealGate.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_beapinboxclonepreparesealgate_test", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "beapinboxclonepreparesealgate.test.ts" + }, + { + "label": "{ listAvailableInternalSandboxes, getHandshakeRecord }", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepareSealGate.test.ts", + "source_location": "L21", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_beapinboxclonepreparesealgate_test_listavailableinternalsandboxes_gethandshakerecord", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "{ listavailableinternalsandboxes, gethandshakerecord }" + }, + { + "label": "OUTER_KEY", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepareSealGate.test.ts", + "source_location": "L36", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_beapinboxclonepreparesealgate_test_outer_key", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "outer_key" + }, + { + "label": "makeSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepareSealGate.test.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_beapinboxclonepreparesealgate_test_makesession", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "makesession()" + }, + { + "label": "makeHandshakeRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepareSealGate.test.ts", + "source_location": "L51", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_beapinboxclonepreparesealgate_test_makehandshakerecord", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "makehandshakerecord()" + }, + { + "label": "makeEligibleEntry()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepareSealGate.test.ts", + "source_location": "L71", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_beapinboxclonepreparesealgate_test_makeeligibleentry", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "makeeligibleentry()" + }, + { + "label": "mockHappyList()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepareSealGate.test.ts", + "source_location": "L90", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_beapinboxclonepreparesealgate_test_mockhappylist", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "mockhappylist()" + }, + { + "label": "insertDirectBeapRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepareSealGate.test.ts", + "source_location": "L104", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_beapinboxclonepreparesealgate_test_insertdirectbeaprow", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "insertdirectbeaprow()" + }, + { + "label": "beapInboxCloneVaultRequirement.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxCloneVaultRequirement.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_beapinboxclonevaultrequirement_test", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "beapinboxclonevaultrequirement.test.ts" + }, + { + "label": "beapRedirectSource.inbox.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapRedirectSource.inbox.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_beapredirectsource_inbox_test", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "beapredirectsource.inbox.test.ts" + }, + { + "label": "beapSync.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapSync.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_beapsync_test", + "community": 201, + "community_name": "Email #201", + "norm_label": "beapsync.test.ts" + }, + { + "label": "makeSSOSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapSync.test.ts", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_beapsync_test_makessosession", + "community": 201, + "community_name": "Email #201", + "norm_label": "makessosession()" + }, + { + "label": "makeBeapMessageDetail()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapSync.test.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_beapsync_test_makebeapmessagedetail", + "community": 201, + "community_name": "Email #201", + "norm_label": "makebeapmessagedetail()" + }, + { + "label": "makeNonBeapMessageDetail()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapSync.test.ts", + "source_location": "L51", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_beapsync_test_makenonbeapmessagedetail", + "community": 201, + "community_name": "Email #201", + "norm_label": "makenonbeapmessagedetail()" + }, + { + "label": "makeMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapSync.test.ts", + "source_location": "L71", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_beapsync_test_makemessage", + "community": 201, + "community_name": "Email #201", + "norm_label": "makemessage()" + }, + { + "label": "connectToDisplay.regression.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/connectToDisplay.regression.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_connecttodisplay_regression_test", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "connecttodisplay.regression.test.ts" + }, + { + "label": "isSandboxMode", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/connectToDisplay.regression.test.ts", + "source_location": "L13", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_connecttodisplay_regression_test_issandboxmode", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "issandboxmode" + }, + { + "label": "ledgerProvesSandbox", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/connectToDisplay.regression.test.ts", + "source_location": "L14", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_connecttodisplay_regression_test_ledgerprovessandbox", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "ledgerprovessandbox" + }, + { + "label": "dedicatedSandboxReadProviderStatus.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/dedicatedSandboxReadProviderStatus.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_dedicatedsandboxreadproviderstatus_test", + "community": 135, + "community_name": "Email Ingestionpolltrigger", + "norm_label": "dedicatedsandboxreadproviderstatus.test.ts" + }, + { + "label": "dedicatedSandboxSelfTrigger.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/dedicatedSandboxSelfTrigger.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_dedicatedsandboxselftrigger_test", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "dedicatedsandboxselftrigger.test.ts" + }, + { + "label": "getAccountConfig", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/dedicatedSandboxSelfTrigger.test.ts", + "source_location": "L8", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_dedicatedsandboxselftrigger_test_getaccountconfig", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "getaccountconfig" + }, + { + "label": "getAccount", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/dedicatedSandboxSelfTrigger.test.ts", + "source_location": "L9", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_dedicatedsandboxselftrigger_test_getaccount", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "getaccount" + }, + { + "label": "runSandboxIngestionPoll", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/dedicatedSandboxSelfTrigger.test.ts", + "source_location": "L10", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_dedicatedsandboxselftrigger_test_runsandboxingestionpoll", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "runsandboxingestionpoll" + }, + { + "label": "dedicatedFetchNode", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/dedicatedSandboxSelfTrigger.test.ts", + "source_location": "L11", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_dedicatedsandboxselftrigger_test_dedicatedfetchnode", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "dedicatedfetchnode" + }, + { + "label": "topologyKind", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/dedicatedSandboxSelfTrigger.test.ts", + "source_location": "L12", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_dedicatedsandboxselftrigger_test_topologykind", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "topologykind" + }, + { + "label": "hostTriggerMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/dedicatedSandboxSelfTrigger.test.ts", + "source_location": "L13", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_dedicatedsandboxselftrigger_test_hosttriggermock", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "hosttriggermock" + }, + { + "label": "ownershipState", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/dedicatedSandboxSelfTrigger.test.ts", + "source_location": "L18", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_dedicatedsandboxselftrigger_test_ownershipstate", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "ownershipstate" + }, + { + "label": "makeDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/dedicatedSandboxSelfTrigger.test.ts", + "source_location": "L81", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_dedicatedsandboxselftrigger_test_makedb", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "makedb()" + }, + { + "label": "emailInboxAttachmentInvariants.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/emailInboxAttachmentInvariants.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_emailinboxattachmentinvariants_test", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "emailinboxattachmentinvariants.test.ts" + }, + { + "label": "emailSyncPauseAndImapScheduler.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/emailSyncPauseAndImapScheduler.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_emailsyncpauseandimapscheduler_test", + "community": 456, + "community_name": "Email #456", + "norm_label": "emailsyncpauseandimapscheduler.test.ts" + }, + { + "label": "imapPeriodicPullWouldInclude()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/emailSyncPauseAndImapScheduler.test.ts", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_emailsyncpauseandimapscheduler_test_imapperiodicpullwouldinclude", + "community": 456, + "community_name": "Email #456", + "norm_label": "imapperiodicpullwouldinclude()" + }, + { + "label": "dbAutoSyncTickWouldSync()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/emailSyncPauseAndImapScheduler.test.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_emailsyncpauseandimapscheduler_test_dbautosynctickwouldsync", + "community": 456, + "community_name": "Email #456", + "norm_label": "dbautosynctickwouldsync()" + }, + { + "label": "validateSetProcessingPausedArgs()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/emailSyncPauseAndImapScheduler.test.ts", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_emailsyncpauseandimapscheduler_test_validatesetprocessingpausedargs", + "community": 456, + "community_name": "Email #456", + "norm_label": "validatesetprocessingpausedargs()" + }, + { + "label": "imapBruteForceAutoSync.regression.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/imapBruteForceAutoSync.regression.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_imapbruteforceautosync_regression_test", + "community": 500, + "community_name": "Email #500", + "norm_label": "imapbruteforceautosync.regression.test.ts" + }, + { + "label": "__dirname", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/imapBruteForceAutoSync.regression.test.ts", + "source_location": "L10", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_imapbruteforceautosync_regression_test_dirname", + "community": 500, + "community_name": "Email #500", + "norm_label": "__dirname" + }, + { + "label": "ipcPath", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/imapBruteForceAutoSync.regression.test.ts", + "source_location": "L11", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_imapbruteforceautosync_regression_test_ipcpath", + "community": 500, + "community_name": "Email #500", + "norm_label": "ipcpath" + }, + { + "label": "inboxAiErrorMapping.contextOverflow.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inboxAiErrorMapping.contextOverflow.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_inboxaierrormapping_contextoverflow_test", + "community": 183, + "community_name": "Email LLM Internal Inference", + "norm_label": "inboxaierrormapping.contextoverflow.test.ts" + }, + { + "label": "inboxAiTaskDedup.attach.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inboxAiTaskDedup.attach.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_inboxaitaskdedup_attach_test", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "inboxaitaskdedup.attach.test.ts" + }, + { + "label": "inboxAiTaskDedup.replay.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inboxAiTaskDedup.replay.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_inboxaitaskdedup_replay_test", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "inboxaitaskdedup.replay.test.ts" + }, + { + "label": "inboxLifecycleEngine.tick.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inboxLifecycleEngine.tick.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_inboxlifecycleengine_tick_test", + "community": 541, + "community_name": "Email #541", + "norm_label": "inboxlifecycleengine.tick.test.ts" + }, + { + "label": "createDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inboxLifecycleEngine.tick.test.ts", + "source_location": "L67", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_inboxlifecycleengine_tick_test_createdb", + "community": 541, + "community_name": "Email #541", + "norm_label": "createdb()" + }, + { + "label": "inboxOllamaAnalyzeStreamSandbox.regression.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inboxOllamaAnalyzeStreamSandbox.regression.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_inboxollamaanalyzestreamsandbox_regression_test", + "community": 457, + "community_name": "Email #457", + "norm_label": "inboxollamaanalyzestreamsandbox.regression.test.ts" + }, + { + "label": "effSandboxMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inboxOllamaAnalyzeStreamSandbox.regression.test.ts", + "source_location": "L13", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_inboxollamaanalyzestreamsandbox_regression_test_effsandboxmock", + "community": 457, + "community_name": "Email #457", + "norm_label": "effsandboxmock" + }, + { + "label": "constructor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inboxOllamaAnalyzeStreamSandbox.regression.test.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_inboxollamaanalyzestreamsandbox_regression_test_constructor", + "community": 457, + "community_name": "Email #457", + "norm_label": "constructor()" + }, + { + "label": "getReader()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inboxOllamaAnalyzeStreamSandbox.regression.test.ts", + "source_location": "L80", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_inboxollamaanalyzestreamsandbox_regression_test_getreader", + "community": 457, + "community_name": "Email #457", + "norm_label": "getreader()" + }, + { + "label": "inboxOrchestratorRemoteQueue.enqueue.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inboxOrchestratorRemoteQueue.enqueue.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_inboxorchestratorremotequeue_enqueue_test", + "community": 501, + "community_name": "Email #501", + "norm_label": "inboxorchestratorremotequeue.enqueue.test.ts" + }, + { + "label": "makeDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inboxOrchestratorRemoteQueue.enqueue.test.ts", + "source_location": "L37", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_inboxorchestratorremotequeue_enqueue_test_makedb", + "community": 501, + "community_name": "Email #501", + "norm_label": "makedb()" + }, + { + "label": "makeLifecycleDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inboxOrchestratorRemoteQueue.enqueue.test.ts", + "source_location": "L173", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_inboxorchestratorremotequeue_enqueue_test_makelifecycledb", + "community": 501, + "community_name": "Email #501", + "norm_label": "makelifecycledb()" + }, + { + "label": "inboxPromptGuard.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inboxPromptGuard.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_inboxpromptguard_test", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "inboxpromptguard.test.ts" + }, + { + "label": "inboxSealedRead.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inboxSealedRead.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_inboxsealedread_test", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "inboxsealedread.test.ts" + }, + { + "label": "OUTER_KEY", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inboxSealedRead.test.ts", + "source_location": "L20", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_inboxsealedread_test_outer_key", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "outer_key" + }, + { + "label": "ingestionOwnership.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/ingestionOwnership.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_ingestionownership_test", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "ingestionownership.test.ts" + }, + { + "label": "hasLinkedDepackageSandbox", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/ingestionOwnership.test.ts", + "source_location": "L3", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_ingestionownership_test_haslinkeddepackagesandbox", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "haslinkeddepackagesandbox" + }, + { + "label": "getOrchestratorMode", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/ingestionOwnership.test.ts", + "source_location": "L4", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_ingestionownership_test_getorchestratormode", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "getorchestratormode" + }, + { + "label": "ingestionStatus.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/ingestionStatus.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_ingestionstatus_test", + "community": 135, + "community_name": "Email Ingestionpolltrigger", + "norm_label": "ingestionstatus.test.ts" + }, + { + "label": "mockResolveIngestionOwnership", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/ingestionStatus.test.ts", + "source_location": "L17", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_ingestionstatus_test_mockresolveingestionownership", + "community": 135, + "community_name": "Email Ingestionpolltrigger", + "norm_label": "mockresolveingestionownership" + }, + { + "label": "mockHasRoleScopedTokens", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/ingestionStatus.test.ts", + "source_location": "L18", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_ingestionstatus_test_mockhasrolescopedtokens", + "community": 135, + "community_name": "Email Ingestionpolltrigger", + "norm_label": "mockhasrolescopedtokens" + }, + { + "label": "mockGetLastSandboxPollOutcomes", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/ingestionStatus.test.ts", + "source_location": "L19", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_ingestionstatus_test_mockgetlastsandboxpolloutcomes", + "community": 135, + "community_name": "Email Ingestionpolltrigger", + "norm_label": "mockgetlastsandboxpolloutcomes" + }, + { + "label": "singleMachineOwnership()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/ingestionStatus.test.ts", + "source_location": "L37", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_ingestionstatus_test_singlemachineownership", + "community": 135, + "community_name": "Email Ingestionpolltrigger", + "norm_label": "singlemachineownership()" + }, + { + "label": "delegatedOwnershipOnHost()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/ingestionStatus.test.ts", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_ingestionstatus_test_delegatedownershiponhost", + "community": 135, + "community_name": "Email Ingestionpolltrigger", + "norm_label": "delegatedownershiponhost()" + }, + { + "label": "sandboxOwnsOnSandbox()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/ingestionStatus.test.ts", + "source_location": "L57", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_ingestionstatus_test_sandboxownsonsandbox", + "community": 135, + "community_name": "Email Ingestionpolltrigger", + "norm_label": "sandboxownsonsandbox()" + }, + { + "label": "pollOutcome()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/ingestionStatus.test.ts", + "source_location": "L67", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_ingestionstatus_test_polloutcome", + "community": 135, + "community_name": "Email Ingestionpolltrigger", + "norm_label": "polloutcome()" + }, + { + "label": "inlineParseGuard.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inlineParseGuard.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_inlineparseguard_test", + "community": 30, + "community_name": "Email Providers", + "norm_label": "inlineparseguard.test.ts" + }, + { + "label": "setFlag()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inlineParseGuard.test.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_inlineparseguard_test_setflag", + "community": 30, + "community_name": "Email Providers", + "norm_label": "setflag()" + }, + { + "label": "rawMsg", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inlineParseGuard.test.ts", + "source_location": "L26", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_inlineparseguard_test_rawmsg", + "community": 30, + "community_name": "Email Providers", + "norm_label": "rawmsg" + }, + { + "label": "ipcSyncResultShape.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/ipcSyncResultShape.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_ipcsyncresultshape_test", + "community": 142, + "community_name": "Email", + "norm_label": "ipcsyncresultshape.test.ts" + }, + { + "label": "localInboxDeletion.regression.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/localInboxDeletion.regression.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_localinboxdeletion_regression_test", + "community": 182, + "community_name": "Email #182", + "norm_label": "localinboxdeletion.regression.test.ts" + }, + { + "label": "deleteMessageMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/localInboxDeletion.regression.test.ts", + "source_location": "L19", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_localinboxdeletion_regression_test_deletemessagemock", + "community": 182, + "community_name": "Email #182", + "norm_label": "deletemessagemock" + }, + { + "label": "Row", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/localInboxDeletion.regression.test.ts", + "source_location": "L27", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_localinboxdeletion_regression_test_row", + "community": 182, + "community_name": "Email #182", + "norm_label": "row" + }, + { + "label": "makeMemoryDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/localInboxDeletion.regression.test.ts", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_localinboxdeletion_regression_test_makememorydb", + "community": 182, + "community_name": "Email #182", + "norm_label": "makememorydb()" + }, + { + "label": "mergeExtensionDepackaged.validation.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/mergeExtensionDepackaged.validation.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_mergeextensiondepackaged_validation_test", + "community": 360, + "community_name": "Email #360", + "norm_label": "mergeextensiondepackaged.validation.test.ts" + }, + { + "label": "require", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/mergeExtensionDepackaged.validation.test.ts", + "source_location": "L61", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_mergeextensiondepackaged_validation_test_require", + "community": 360, + "community_name": "Email #360", + "norm_label": "require" + }, + { + "label": "TEST_DEK", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/mergeExtensionDepackaged.validation.test.ts", + "source_location": "L80", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_mergeextensiondepackaged_validation_test_test_dek", + "community": 360, + "community_name": "Email #360", + "norm_label": "test_dek" + }, + { + "label": "buildValidSealForRowId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/mergeExtensionDepackaged.validation.test.ts", + "source_location": "L82", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_mergeextensiondepackaged_validation_test_buildvalidsealforrowid", + "community": 360, + "community_name": "Email #360", + "norm_label": "buildvalidsealforrowid()" + }, + { + "label": "makeDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/mergeExtensionDepackaged.validation.test.ts", + "source_location": "L89", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_mergeextensiondepackaged_validation_test_makedb", + "community": 360, + "community_name": "Email #360", + "norm_label": "makedb()" + }, + { + "label": "insertRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/mergeExtensionDepackaged.validation.test.ts", + "source_location": "L134", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_mergeextensiondepackaged_validation_test_insertrow", + "community": 360, + "community_name": "Email #360", + "norm_label": "insertrow()" + }, + { + "label": "getRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/mergeExtensionDepackaged.validation.test.ts", + "source_location": "L141", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_mergeextensiondepackaged_validation_test_getrow", + "community": 360, + "community_name": "Email #360", + "norm_label": "getrow()" + }, + { + "label": "PACKAGE_JSON", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/mergeExtensionDepackaged.validation.test.ts", + "source_location": "L145", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_mergeextensiondepackaged_validation_test_package_json", + "community": 360, + "community_name": "Email #360", + "norm_label": "package_json" + }, + { + "label": "makeSealedOutcome()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/mergeExtensionDepackaged.validation.test.ts", + "source_location": "L147", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_mergeextensiondepackaged_validation_test_makesealedoutcome", + "community": 360, + "community_name": "Email #360", + "norm_label": "makesealedoutcome()" + }, + { + "label": "makeRejectedOutcome()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/mergeExtensionDepackaged.validation.test.ts", + "source_location": "L164", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_mergeextensiondepackaged_validation_test_makerejectedoutcome", + "community": 360, + "community_name": "Email #360", + "norm_label": "makerejectedoutcome()" + }, + { + "label": "messageRouter.depackageSeam.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/messageRouter.depackageSeam.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_messagerouter_depackageseam_test", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "messagerouter.depackageseam.test.ts" + }, + { + "label": "require", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/messageRouter.depackageSeam.test.ts", + "source_location": "L15", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_messagerouter_depackageseam_test_require", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "require" + }, + { + "label": "TEST_DEK", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/messageRouter.depackageSeam.test.ts", + "source_location": "L23", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_messagerouter_depackageseam_test_test_dek", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "test_dek" + }, + { + "label": "h", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/messageRouter.depackageSeam.test.ts", + "source_location": "L32", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_messagerouter_depackageseam_test_h", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "h" + }, + { + "label": "SESSION", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/messageRouter.depackageSeam.test.ts", + "source_location": "L47", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_messagerouter_depackageseam_test_session", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "session" + }, + { + "label": "buildValidSealForRowId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/messageRouter.depackageSeam.test.ts", + "source_location": "L49", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_messagerouter_depackageseam_test_buildvalidsealforrowid", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "buildvalidsealforrowid()" + }, + { + "label": "createTestDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/messageRouter.depackageSeam.test.ts", + "source_location": "L91", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_messagerouter_depackageseam_test_createtestdb", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "createtestdb()" + }, + { + "label": "eml()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/messageRouter.depackageSeam.test.ts", + "source_location": "L126", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_messagerouter_depackageseam_test_eml", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "eml()" + }, + { + "label": "PBEAP_PKG", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/messageRouter.depackageSeam.test.ts", + "source_location": "L129", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_messagerouter_depackageseam_test_pbeap_pkg", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "pbeap_pkg" + }, + { + "label": "messageRouter.ingestTransaction.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/messageRouter.ingestTransaction.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_messagerouter_ingesttransaction_test", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "messagerouter.ingesttransaction.test.ts" + }, + { + "label": "require", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/messageRouter.ingestTransaction.test.ts", + "source_location": "L7", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_messagerouter_ingesttransaction_test_require", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "require" + }, + { + "label": "TEST_DEK", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/messageRouter.ingestTransaction.test.ts", + "source_location": "L20", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_messagerouter_ingesttransaction_test_test_dek", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "test_dek" + }, + { + "label": "buildValidSealForRowId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/messageRouter.ingestTransaction.test.ts", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_messagerouter_ingesttransaction_test_buildvalidsealforrowid", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "buildvalidsealforrowid()" + }, + { + "label": "createTestDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/messageRouter.ingestTransaction.test.ts", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_messagerouter_ingesttransaction_test_createtestdb", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "createtestdb()" + }, + { + "label": "oauthScopeSplit.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/oauthScopeSplit.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_oauthscopesplit_test", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "oauthscopesplit.test.ts" + }, + { + "label": "opaqueIngestion.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/opaqueIngestion.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_opaqueingestion_test", + "community": 30, + "community_name": "Email Providers", + "norm_label": "opaqueingestion.test.ts" + }, + { + "label": "clearEnv()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/opaqueIngestion.test.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_opaqueingestion_test_clearenv", + "community": 30, + "community_name": "Email Providers", + "norm_label": "clearenv()" + }, + { + "label": "originMailboxDelete.regression.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/originMailboxDelete.regression.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_originmailboxdelete_regression_test", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "originmailboxdelete.regression.test.ts" + }, + { + "label": "{ deleteMessageMock, getAccountConfigMock, isEffectiveSandboxNodeMock, loadRoleScopedTokensMock }", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/originMailboxDelete.regression.test.ts", + "source_location": "L12", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_originmailboxdelete_regression_test_deletemessagemock_getaccountconfigmock_iseffectivesandboxnodemock_loadrolescopedtokensmock", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "{ deletemessagemock, getaccountconfigmock, iseffectivesandboxnodemock, loadrolescopedtokensmock }" + }, + { + "label": "makeDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/originMailboxDelete.regression.test.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_originmailboxdelete_regression_test_makedb", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "makedb()" + }, + { + "label": "outlookOpaqueFailClosed.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/outlookOpaqueFailClosed.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_outlookopaquefailclosed_test", + "community": 30, + "community_name": "Email Providers", + "norm_label": "outlookopaquefailclosed.test.ts" + }, + { + "label": "clearEnv()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/outlookOpaqueFailClosed.test.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_outlookopaquefailclosed_test_clearenv", + "community": 30, + "community_name": "Email Providers", + "norm_label": "clearenv()" + }, + { + "label": "outlookRfc822Fidelity.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/outlookRfc822Fidelity.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_outlookrfc822fidelity_test", + "community": 30, + "community_name": "Email Providers", + "norm_label": "outlookrfc822fidelity.test.ts" + }, + { + "label": "RFC822_SIMPLE", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/outlookRfc822Fidelity.test.ts", + "source_location": "L43", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_outlookrfc822fidelity_test_rfc822_simple", + "community": 30, + "community_name": "Email Providers", + "norm_label": "rfc822_simple" + }, + { + "label": "PDF_MAGIC", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/outlookRfc822Fidelity.test.ts", + "source_location": "L57", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_outlookrfc822fidelity_test_pdf_magic", + "community": 30, + "community_name": "Email Providers", + "norm_label": "pdf_magic" + }, + { + "label": "BINARY_PAYLOAD", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/outlookRfc822Fidelity.test.ts", + "source_location": "L58", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_outlookrfc822fidelity_test_binary_payload", + "community": 30, + "community_name": "Email Providers", + "norm_label": "binary_payload" + }, + { + "label": "ATTACH_B64", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/outlookRfc822Fidelity.test.ts", + "source_location": "L59", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_outlookrfc822fidelity_test_attach_b64", + "community": 30, + "community_name": "Email Providers", + "norm_label": "attach_b64" + }, + { + "label": "RFC822_MULTIPART", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/outlookRfc822Fidelity.test.ts", + "source_location": "L60", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_outlookrfc822fidelity_test_rfc822_multipart", + "community": 30, + "community_name": "Email Providers", + "norm_label": "rfc822_multipart" + }, + { + "label": "RFC822_NONASCII_HEADER", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/outlookRfc822Fidelity.test.ts", + "source_location": "L83", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_outlookrfc822fidelity_test_rfc822_nonascii_header", + "community": 30, + "community_name": "Email Providers", + "norm_label": "rfc822_nonascii_header" + }, + { + "label": "makeProvider()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/outlookRfc822Fidelity.test.ts", + "source_location": "L97", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_outlookrfc822fidelity_test_makeprovider", + "community": 30, + "community_name": "Email Providers", + "norm_label": "makeprovider()" + }, + { + "label": "setOpaqueInput()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/outlookRfc822Fidelity.test.ts", + "source_location": "L101", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_outlookrfc822fidelity_test_setopaqueinput", + "community": 30, + "community_name": "Email Providers", + "norm_label": "setopaqueinput()" + }, + { + "label": "clearEnv()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/outlookRfc822Fidelity.test.ts", + "source_location": "L107", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_outlookrfc822fidelity_test_clearenv", + "community": 30, + "community_name": "Email Providers", + "norm_label": "clearenv()" + }, + { + "label": "mockGraphOnProvider()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/outlookRfc822Fidelity.test.ts", + "source_location": "L118", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_outlookrfc822fidelity_test_mockgraphonprovider", + "community": 30, + "community_name": "Email Providers", + "norm_label": "mockgraphonprovider()" + }, + { + "label": "makeRigProvider()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/outlookRfc822Fidelity.test.ts", + "source_location": "L322", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_outlookrfc822fidelity_test_makerigprovider", + "community": 30, + "community_name": "Email Providers", + "norm_label": "makerigprovider()" + }, + { + "label": "RFC-822", + "file_type": "concept", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/outlookRfc822Fidelity.test.ts", + "source_location": "L2", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_outlookrfc822fidelity_test_ts_docref_rfc_822", + "community": 30, + "community_name": "Email Providers", + "norm_label": "rfc-822" + }, + { + "label": "RFC-5322", + "file_type": "concept", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/outlookRfc822Fidelity.test.ts", + "source_location": "L23", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_outlookrfc822fidelity_test_ts_docref_rfc_5322", + "community": 30, + "community_name": "Email Providers", + "norm_label": "rfc-5322" + }, + { + "label": "RFC-2047", + "file_type": "concept", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/outlookRfc822Fidelity.test.ts", + "source_location": "L82", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_outlookrfc822fidelity_test_ts_docref_rfc_2047", + "community": 30, + "community_name": "Email Providers", + "norm_label": "rfc-2047" + }, + { + "label": "NOTE: `graphApiRequestRaw` contains the 429 retry loop internally", + "file_type": "rationale", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/outlookRfc822Fidelity.test.ts", + "source_location": "L285", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_outlookrfc822fidelity_test_rationale_285", + "community": 30, + "community_name": "Email Providers", + "norm_label": "note: `graphapirequestraw` contains the 429 retry loop internally" + }, + { + "label": "NOTE: graphApiRequestRaw is a real method \u2014 we don't stub it; it fires real\u2026", + "file_type": "rationale", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/outlookRfc822Fidelity.test.ts", + "source_location": "L345", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_outlookrfc822fidelity_test_rationale_345", + "community": 30, + "community_name": "Email Providers", + "norm_label": "note: graphapirequestraw is a real method \u2014 we don't stub it; it fires real..." + }, + { + "label": "pbeapTrustPersistence.regression.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapTrustPersistence.regression.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_pbeaptrustpersistence_regression_test", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "pbeaptrustpersistence.regression.test.ts" + }, + { + "label": "require", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapTrustPersistence.regression.test.ts", + "source_location": "L39", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_pbeaptrustpersistence_regression_test_require", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "require" + }, + { + "label": "TEST_DEK", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapTrustPersistence.regression.test.ts", + "source_location": "L83", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_pbeaptrustpersistence_regression_test_test_dek", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "test_dek" + }, + { + "label": "VERIFIED_BOUND()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapTrustPersistence.regression.test.ts", + "source_location": "L85", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_pbeaptrustpersistence_regression_test_verified_bound", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "verified_bound()" + }, + { + "label": "LESSER", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapTrustPersistence.regression.test.ts", + "source_location": "L90", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_pbeaptrustpersistence_regression_test_lesser", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "lesser" + }, + { + "label": "makeTestDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapTrustPersistence.regression.test.ts", + "source_location": "L96", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_pbeaptrustpersistence_regression_test_maketestdb", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "maketestdb()" + }, + { + "label": "makePBeapPackage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapTrustPersistence.regression.test.ts", + "source_location": "L106", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_pbeaptrustpersistence_regression_test_makepbeappackage", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "makepbeappackage()" + }, + { + "label": "mockValidator()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapTrustPersistence.regression.test.ts", + "source_location": "L117", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_pbeaptrustpersistence_regression_test_mockvalidator", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "mockvalidator()" + }, + { + "label": "readMeta()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapTrustPersistence.regression.test.ts", + "source_location": "L152", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_pbeaptrustpersistence_regression_test_readmeta", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "readmeta()" + }, + { + "label": "ingestEmail()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapTrustPersistence.regression.test.ts", + "source_location": "L185", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_pbeaptrustpersistence_regression_test_ingestemail", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "ingestemail()" + }, + { + "label": "pbeapValidation.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapValidation.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_pbeapvalidation_test", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "pbeapvalidation.test.ts" + }, + { + "label": "require", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapValidation.test.ts", + "source_location": "L67", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_pbeapvalidation_test_require", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "require" + }, + { + "label": "makeDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapValidation.test.ts", + "source_location": "L83", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_pbeapvalidation_test_makedb", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "makedb()" + }, + { + "label": "getRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapValidation.test.ts", + "source_location": "L144", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_pbeapvalidation_test_getrow", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "getrow()" + }, + { + "label": "makePBeapPackage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapValidation.test.ts", + "source_location": "L149", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_pbeapvalidation_test_makepbeappackage", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "makepbeappackage()" + }, + { + "label": "seedP2P()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapValidation.test.ts", + "source_location": "L164", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_pbeapvalidation_test_seedp2p", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "seedp2p()" + }, + { + "label": "validArtefact()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapValidation.test.ts", + "source_location": "L176", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_pbeapvalidation_test_validartefact", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "validartefact()" + }, + { + "label": "pr22SecurityDeferrals.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pr22SecurityDeferrals.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_pr22securitydeferrals_test", + "community": 361, + "community_name": "Email #361", + "norm_label": "pr22securitydeferrals.test.ts" + }, + { + "label": "require", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pr22SecurityDeferrals.test.ts", + "source_location": "L61", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_pr22securitydeferrals_test_require", + "community": 361, + "community_name": "Email #361", + "norm_label": "require" + }, + { + "label": "makeDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pr22SecurityDeferrals.test.ts", + "source_location": "L77", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_pr22securitydeferrals_test_makedb", + "community": 361, + "community_name": "Email #361", + "norm_label": "makedb()" + }, + { + "label": "getRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pr22SecurityDeferrals.test.ts", + "source_location": "L138", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_pr22securitydeferrals_test_getrow", + "community": 361, + "community_name": "Email #361", + "norm_label": "getrow()" + }, + { + "label": "makeOutboundQbeapPackage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pr22SecurityDeferrals.test.ts", + "source_location": "L143", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_pr22securitydeferrals_test_makeoutboundqbeappackage", + "community": 361, + "community_name": "Email #361", + "norm_label": "makeoutboundqbeappackage()" + }, + { + "label": "seedInboxAndPending()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pr22SecurityDeferrals.test.ts", + "source_location": "L157", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_pr22securitydeferrals_test_seedinboxandpending", + "community": 361, + "community_name": "Email #361", + "norm_label": "seedinboxandpending()" + }, + { + "label": "MsgPkg", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pr22SecurityDeferrals.test.ts", + "source_location": "L231", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_pr22securitydeferrals_test_msgpkg", + "community": 361, + "community_name": "Email #361", + "norm_label": "msgpkg" + }, + { + "label": "Init", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pr22SecurityDeferrals.test.ts", + "source_location": "L243", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_pr22securitydeferrals_test_init", + "community": 361, + "community_name": "Email #361", + "norm_label": "init" + }, + { + "label": "CS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pr22SecurityDeferrals.test.ts", + "source_location": "L252", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_pr22securitydeferrals_test_cs", + "community": 361, + "community_name": "Email #361", + "norm_label": "cs" + }, + { + "label": "runScript()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pr22SecurityDeferrals.test.ts", + "source_location": "L281", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_pr22securitydeferrals_test_runscript", + "community": 361, + "community_name": "Email #361", + "norm_label": "runscript()" + }, + { + "label": "pr51DepackagerDeterminism.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pr51DepackagerDeterminism.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_pr51depackagerdeterminism_test", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "pr51depackagerdeterminism.test.ts" + }, + { + "label": "getArtefactSessionRefs()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pr51DepackagerDeterminism.test.ts", + "source_location": "L164", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_pr51depackagerdeterminism_test_getartefactsessionrefs", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "getartefactsessionrefs()" + }, + { + "label": "pr52CloneDeterminism.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pr52CloneDeterminism.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_pr52clonedeterminism_test", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "pr52clonedeterminism.test.ts" + }, + { + "label": "{ listAvailableInternalSandboxes, getHandshakeRecord }", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pr52CloneDeterminism.test.ts", + "source_location": "L16", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_pr52clonedeterminism_test_listavailableinternalsandboxes_gethandshakerecord", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "{ listavailableinternalsandboxes, gethandshakerecord }" + }, + { + "label": "makeSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pr52CloneDeterminism.test.ts", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_pr52clonedeterminism_test_makesession", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "makesession()" + }, + { + "label": "makeHandshakeRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pr52CloneDeterminism.test.ts", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_pr52clonedeterminism_test_makehandshakerecord", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "makehandshakerecord()" + }, + { + "label": "makeEligibleEntry()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pr52CloneDeterminism.test.ts", + "source_location": "L76", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_pr52clonedeterminism_test_makeeligibleentry", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "makeeligibleentry()" + }, + { + "label": "mockHappyList()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pr52CloneDeterminism.test.ts", + "source_location": "L96", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_pr52clonedeterminism_test_mockhappylist", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "mockhappylist()" + }, + { + "label": "makeDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pr52CloneDeterminism.test.ts", + "source_location": "L110", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_pr52clonedeterminism_test_makedb", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "makedb()" + }, + { + "label": "session", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pr52CloneDeterminism.test.ts", + "source_location": "L126", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_pr52clonedeterminism_test_session", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "session" + }, + { + "label": "readConsentScopeGuard.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/readConsentScopeGuard.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_readconsentscopeguard_test", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "readconsentscopeguard.test.ts" + }, + { + "label": "NOTE: roleAwareConsent.ts imports from providers/gmail (Electron-coupled).", + "file_type": "rationale", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/readConsentScopeGuard.test.ts", + "source_location": "L20", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_readconsentscopeguard_test_rationale_20", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "note: roleawareconsent.ts imports from providers/gmail (electron-coupled)." + }, + { + "label": "remoteDeletion.orphanAccount.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/remoteDeletion.orphanAccount.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_remotedeletion_orphanaccount_test", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "remotedeletion.orphanaccount.test.ts" + }, + { + "label": "roleAwareConsent.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/roleAwareConsent.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_roleawareconsent_test", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "roleawareconsent.test.ts" + }, + { + "label": "isEffectiveSandbox", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/roleAwareConsent.test.ts", + "source_location": "L24", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_roleawareconsent_test_iseffectivesandbox", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "iseffectivesandbox" + }, + { + "label": "SecureStorageUnavailableError", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/roleAwareConsent.test.ts", + "source_location": "L31", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_roleawareconsent_test_securestorageunavailableerror", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "securestorageunavailableerror" + }, + { + "label": "roleScopedTokenStore.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/roleScopedTokenStore.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_rolescopedtokenstore_test", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "rolescopedtokenstore.test.ts" + }, + { + "label": "SecureStorageUnavailableError", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/roleScopedTokenStore.test.ts", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_rolescopedtokenstore_test_securestorageunavailableerror", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "securestorageunavailableerror" + }, + { + "label": "sandboxCloneInboxFilter.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/sandboxCloneInboxFilter.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_sandboxcloneinboxfilter_test", + "community": 182, + "community_name": "Email #182", + "norm_label": "sandboxcloneinboxfilter.test.ts" + }, + { + "label": "isSandboxMode", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/sandboxCloneInboxFilter.test.ts", + "source_location": "L9", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_sandboxcloneinboxfilter_test_issandboxmode", + "community": 182, + "community_name": "Email #182", + "norm_label": "issandboxmode" + }, + { + "label": "sandboxCloneReceiveDisplay.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/sandboxCloneReceiveDisplay.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_sandboxclonereceivedisplay_test", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "sandboxclonereceivedisplay.test.ts" + }, + { + "label": "sandboxEmailFetch.oauth.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/sandboxEmailFetch.oauth.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_sandboxemailfetch_oauth_test", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "sandboxemailfetch.oauth.test.ts" + }, + { + "label": "saveRoleScopedTokens", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/sandboxEmailFetch.oauth.test.ts", + "source_location": "L13", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_sandboxemailfetch_oauth_test_saverolescopedtokens", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "saverolescopedtokens" + }, + { + "label": "loadRoleScopedTokens", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/sandboxEmailFetch.oauth.test.ts", + "source_location": "L14", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_sandboxemailfetch_oauth_test_loadrolescopedtokens", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "loadrolescopedtokens" + }, + { + "label": "sandboxIngestionProduction.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/sandboxIngestionProduction.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_sandboxingestionproduction_test", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "sandboxingestionproduction.test.ts" + }, + { + "label": "h", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/sandboxIngestionProduction.test.ts", + "source_location": "L13", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_sandboxingestionproduction_test_h", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "h" + }, + { + "label": "scamWatchdog.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/scamWatchdog.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_scamwatchdog_test", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "scamwatchdog.test.ts" + }, + { + "label": "setupFlow.topologyCondition.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/setupFlow.topologyCondition.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_setupflow_topologycondition_test", + "community": 542, + "community_name": "Email #542", + "norm_label": "setupflow.topologycondition.test.ts" + }, + { + "label": "makeOwnershipDeps()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/setupFlow.topologyCondition.test.ts", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_setupflow_topologycondition_test_makeownershipdeps", + "community": 542, + "community_name": "Email #542", + "norm_label": "makeownershipdeps()" + }, + { + "label": "syncOrchestrator.ingestionGate.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/syncOrchestrator.ingestionGate.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_syncorchestrator_ingestiongate_test", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "syncorchestrator.ingestiongate.test.ts" + }, + { + "label": "getAccountConfig", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/syncOrchestrator.ingestionGate.test.ts", + "source_location": "L14", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_syncorchestrator_ingestiongate_test_getaccountconfig", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "getaccountconfig" + }, + { + "label": "getAccount", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/syncOrchestrator.ingestionGate.test.ts", + "source_location": "L15", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_syncorchestrator_ingestiongate_test_getaccount", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "getaccount" + }, + { + "label": "ownershipState", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/syncOrchestrator.ingestionGate.test.ts", + "source_location": "L27", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_syncorchestrator_ingestiongate_test_ownershipstate", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "ownershipstate" + }, + { + "label": "hostTriggerMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/syncOrchestrator.ingestionGate.test.ts", + "source_location": "L36", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_syncorchestrator_ingestiongate_test_hosttriggermock", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "hosttriggermock" + }, + { + "label": "HostReadPollForbiddenError", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/syncOrchestrator.ingestionGate.test.ts", + "source_location": "L45", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_syncorchestrator_ingestiongate_test_hostreadpollforbiddenerror", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "hostreadpollforbiddenerror" + }, + { + "label": "syncOrchestrator.processingPaused.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/syncOrchestrator.processingPaused.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_syncorchestrator_processingpaused_test", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "syncorchestrator.processingpaused.test.ts" + }, + { + "label": "getAccountConfig", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/syncOrchestrator.processingPaused.test.ts", + "source_location": "L3", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_syncorchestrator_processingpaused_test_getaccountconfig", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "getaccountconfig" + }, + { + "label": "getAccount", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/syncOrchestrator.processingPaused.test.ts", + "source_location": "L4", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_syncorchestrator_processingpaused_test_getaccount", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "getaccount" + }, + { + "label": "userDataBootstrapPersistence.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/userDataBootstrapPersistence.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_userdatabootstrappersistence_test", + "community": 316, + "community_name": "Email #316", + "norm_label": "userdatabootstrappersistence.test.ts" + }, + { + "label": "ElectronMockState", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/userDataBootstrapPersistence.test.ts", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_userdatabootstrappersistence_test_electronmockstate", + "community": 316, + "community_name": "Email #316", + "norm_label": "electronmockstate" + }, + { + "label": "makeElectronMock()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/userDataBootstrapPersistence.test.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_userdatabootstrappersistence_test_makeelectronmock", + "community": 316, + "community_name": "Email #316", + "norm_label": "makeelectronmock()" + }, + { + "label": "writeEmailAccountsFixture()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/userDataBootstrapPersistence.test.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_userdatabootstrappersistence_test_writeemailaccountsfixture", + "community": 316, + "community_name": "Email #316", + "norm_label": "writeemailaccountsfixture()" + }, + { + "label": "installElectronMock()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/userDataBootstrapPersistence.test.ts", + "source_location": "L104", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_userdatabootstrappersistence_test_installelectronmock", + "community": 316, + "community_name": "Email #316", + "norm_label": "installelectronmock()" + }, + { + "label": "applyCustomUserDataPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/userDataBootstrapPersistence.test.ts", + "source_location": "L108", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_userdatabootstrappersistence_test_applycustomuserdatapath", + "community": 316, + "community_name": "Email #316", + "norm_label": "applycustomuserdatapath()" + }, + { + "label": "runBootstrapModule()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/userDataBootstrapPersistence.test.ts", + "source_location": "L115", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_tests_userdatabootstrappersistence_test_runbootstrapmodule", + "community": 316, + "community_name": "Email #316", + "norm_label": "runbootstrapmodule()" + }, + { + "label": "accountDeletePersistence.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/accountDeletePersistence.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_accountdeletepersistence", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "accountdeletepersistence.ts" + }, + { + "label": "AccountLedgerPurgeResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/accountDeletePersistence.ts", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_accountdeletepersistence_accountledgerpurgeresult", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "accountledgerpurgeresult" + }, + { + "label": "purgeAccountLedgerState()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/accountDeletePersistence.ts", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_accountdeletepersistence_purgeaccountledgerstate", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "purgeaccountledgerstate()" + }, + { + "label": "attachmentBlobCrypto.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/attachmentBlobCrypto.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "attachmentblobcrypto.ts" + }, + { + "label": "encryptBlob()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/attachmentBlobCrypto.ts", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto_encryptblob", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "encryptblob()" + }, + { + "label": "decryptBlob()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/attachmentBlobCrypto.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto_decryptblob", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "decryptblob()" + }, + { + "label": "sanitizeFilename()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/attachmentBlobCrypto.ts", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto_sanitizefilename", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "sanitizefilename()" + }, + { + "label": "getAttachmentsBasePath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/attachmentBlobCrypto.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto_getattachmentsbasepath", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "getattachmentsbasepath()" + }, + { + "label": "EncryptedWriteResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/attachmentBlobCrypto.ts", + "source_location": "L35", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto_encryptedwriteresult", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "encryptedwriteresult" + }, + { + "label": "writeEncryptedAttachmentFile()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/attachmentBlobCrypto.ts", + "source_location": "L46", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto_writeencryptedattachmentfile", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "writeencryptedattachmentfile()" + }, + { + "label": "AttachmentRowCrypto", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/attachmentBlobCrypto.ts", + "source_location": "L76", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto_attachmentrowcrypto", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "attachmentrowcrypto" + }, + { + "label": "readDecryptedAttachmentBuffer()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/attachmentBlobCrypto.ts", + "source_location": "L88", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto_readdecryptedattachmentbuffer", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "readdecryptedattachmentbuffer()" + }, + { + "label": "autoSyncLoopRegistry.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/autoSyncLoopRegistry.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_autosyncloopregistry", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "autosyncloopregistry.ts" + }, + { + "label": "activeAutoSyncLoops", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/autoSyncLoopRegistry.ts", + "source_location": "L5", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_autosyncloopregistry_activeautosyncloops", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "activeautosyncloops" + }, + { + "label": "registerAutoSyncLoop()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/autoSyncLoopRegistry.ts", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_autosyncloopregistry_registerautosyncloop", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "registerautosyncloop()" + }, + { + "label": "stopAutoSyncLoopForAccount()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/autoSyncLoopRegistry.ts", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_autosyncloopregistry_stopautosyncloopforaccount", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "stopautosyncloopforaccount()" + }, + { + "label": "hasAutoSyncLoop()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/autoSyncLoopRegistry.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_autosyncloopregistry_hasautosyncloop", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "hasautosyncloop()" + }, + { + "label": "__clearAutoSyncLoopsForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/autoSyncLoopRegistry.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_autosyncloopregistry_clearautosyncloopsfortests", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "__clearautosyncloopsfortests()" + }, + { + "label": "beapEmailIngestion.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "beapemailingestion.ts" + }, + { + "label": "reportQbeapDecryptFailure()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapemailingestion_reportqbeapdecryptfailure", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "reportqbeapdecryptfailure()" + }, + { + "label": "finalizeDirectBeapInboxPersistence()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L64", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapemailingestion_finalizedirectbeapinboxpersistence", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "finalizedirectbeapinboxpersistence()" + }, + { + "label": "isOutboundQbeapEcho()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L90", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapemailingestion_isoutboundqbeapecho", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "isoutboundqbeapecho()" + }, + { + "label": "buildOutboundQbeapDepackagedJson()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L123", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapemailingestion_buildoutboundqbeapdepackagedjson", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "buildoutboundqbeapdepackagedjson()" + }, + { + "label": "getHandshakePartyEmails()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L161", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapemailingestion_gethandshakepartyemails", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "gethandshakepartyemails()" + }, + { + "label": "extractAttachmentsFromBeapPackageJson()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L187", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapemailingestion_extractattachmentsfrombeappackagejson", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "extractattachmentsfrombeappackagejson()" + }, + { + "label": "ensureInboxAttachmentsFromBeapPackageJson()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L283", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapemailingestion_ensureinboxattachmentsfrombeappackagejson", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "ensureinboxattachmentsfrombeappackagejson()" + }, + { + "label": "extractP2PBeapInboxPreview()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L326", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapemailingestion_extractp2pbeapinboxpreview", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "extractp2pbeapinboxpreview()" + }, + { + "label": "stripSandboxCloneLeadInBodyText()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L386", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapemailingestion_stripsandboxcloneleadinbodytext", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "stripsandboxcloneleadinbodytext()" + }, + { + "label": "applyDecryptedQBeapToInboxPreview()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L397", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapemailingestion_applydecryptedqbeaptoinboxpreview", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "applydecryptedqbeaptoinboxpreview()" + }, + { + "label": "buildEmailStyleDepackagedJsonFromDecrypt()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L418", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapemailingestion_buildemailstyledepackagedjsonfromdecrypt", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "buildemailstyledepackagedjsonfromdecrypt()" + }, + { + "label": "InboxRowFallback", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L437", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapemailingestion_inboxrowfallback", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "inboxrowfallback" + }, + { + "label": "BeapDepackagedPair", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L456", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapemailingestion_beapdepackagedpair", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "beapdepackagedpair" + }, + { + "label": "beapPackageToMainProcessDepackaged()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L461", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapemailingestion_beappackagetomainprocessdepackaged", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "beappackagetomainprocessdepackaged()" + }, + { + "label": "P2PInboxPlaceholderParams", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L634", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapemailingestion_p2pinboxplaceholderparams", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "p2pinboxplaceholderparams" + }, + { + "label": "writeP2PInboxPlaceholder()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L645", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapemailingestion_writep2pinboxplaceholder", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "writep2pinboxplaceholder()" + }, + { + "label": "P2PInlineResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L677", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapemailingestion_p2pinlineresult", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "p2pinlineresult" + }, + { + "label": "buildP2PProvenance()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L685", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapemailingestion_buildp2pprovenance", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "buildp2pprovenance()" + }, + { + "label": "P2PInboxWriteParams", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L705", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapemailingestion_p2pinboxwriteparams", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "p2pinboxwriteparams" + }, + { + "label": "writeP2PInboxRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L726", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapemailingestion_writep2pinboxrow", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "writep2pinboxrow()" + }, + { + "label": "P2PQuarantineWriteParams", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L771", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapemailingestion_p2pquarantinewriteparams", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "p2pquarantinewriteparams" + }, + { + "label": "writeP2PQuarantineRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L783", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapemailingestion_writep2pquarantinerow", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "writep2pquarantinerow()" + }, + { + "label": "processSandboxQuarantineReceiveInternal()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L893", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapemailingestion_processsandboxquarantinereceiveinternal", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "processsandboxquarantinereceiveinternal()" + }, + { + "label": "processBeapPackageInlineInternal()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L977", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapemailingestion_processbeappackageinlineinternal", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "processbeappackageinlineinternal()" + }, + { + "label": "processBeapPackageInline()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L1353", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapemailingestion_processbeappackageinline", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "processbeappackageinline()" + }, + { + "label": "processSandboxQuarantineReceive()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L1381", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapemailingestion_processsandboxquarantinereceive", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "processsandboxquarantinereceive()" + }, + { + "label": "retryPendingQbeapDecrypt()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L1433", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapemailingestion_retrypendingqbeapdecrypt", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "retrypendingqbeapdecrypt()" + }, + { + "label": "retryPendingInboxPlaceholders()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L1567", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapemailingestion_retrypendinginboxplaceholders", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "retrypendinginboxplaceholders()" + }, + { + "label": "extractPBeapCapsule()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L1663", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapemailingestion_extractpbeapcapsule", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "extractpbeapcapsule()" + }, + { + "label": "formatBeapInboxDbError()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L1677", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapemailingestion_formatbeapinboxdberror", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "formatbeapinboxdberror()" + }, + { + "label": "processPendingP2PBeapEmails()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L1688", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapemailingestion_processpendingp2pbeapemails", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "processpendingp2pbeapemails()" + }, + { + "label": "beapInboxClonePrepare.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "beapinboxcloneprepare.ts" + }, + { + "label": "BeapInboxClonePrepareOk", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_beapinboxcloneprepareok", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "beapinboxcloneprepareok" + }, + { + "label": "BeapInboxClonePrepareOptions", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L73", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_beapinboxcloneprepareoptions", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "beapinboxcloneprepareoptions" + }, + { + "label": "BeapInboxCloneErrorCode", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L82", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_beapinboxcloneerrorcode", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "beapinboxcloneerrorcode" + }, + { + "label": "CLONE_PREPARE_SEAL_GATE_USER_MESSAGE", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L98", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_clone_prepare_seal_gate_user_message", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "clone_prepare_seal_gate_user_message" + }, + { + "label": "CLONE_PREPARE_INNER_VAULT_USER_MESSAGE", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L102", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_clone_prepare_inner_vault_user_message", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "clone_prepare_inner_vault_user_message" + }, + { + "label": "probeInboxMessageSealKeySource()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L107", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_probeinboxmessagesealkeysource", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "probeinboxmessagesealkeysource()" + }, + { + "label": "depackagedFormatForCloneRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L131", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_depackagedformatforclonerow", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "depackagedformatforclonerow()" + }, + { + "label": "resolveClonePrepareResponsePath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L151", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_resolvecloneprepareresponsepath", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "resolvecloneprepareresponsepath()" + }, + { + "label": "rowHasNativeBeapSessionForClone()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L170", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_rowhasnativebeapsessionforclone", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "rowhasnativebeapsessionforclone()" + }, + { + "label": "cloneProvenanceOriginalInboxSourceType()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L177", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_cloneprovenanceoriginalinboxsourcetype", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "cloneprovenanceoriginalinboxsourcetype()" + }, + { + "label": "inboxCloneRequiresInnerVault()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L191", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_inboxclonerequiresinnervault", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "inboxclonerequiresinnervault()" + }, + { + "label": "inboxSealKeySourceRequiresInnerVault()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L203", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_inboxsealkeysourcerequiresinnervault", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "inboxsealkeysourcerequiresinnervault()" + }, + { + "label": "InboxCloneVaultRequirementProbe", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L208", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_inboxclonevaultrequirementprobe", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "inboxclonevaultrequirementprobe" + }, + { + "label": "probeInboxMessageCloneVaultRequirement()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L216", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_probeinboxmessageclonevaultrequirement", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "probeinboxmessageclonevaultrequirement()" + }, + { + "label": "CLONE_PREPARE_VAULT_UNAVAILABLE_MESSAGE", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L256", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_clone_prepare_vault_unavailable_message", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "clone_prepare_vault_unavailable_message" + }, + { + "label": "ClonePrepareSealGateResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L259", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_clonepreparesealgateresult", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "clonepreparesealgateresult" + }, + { + "label": "ensureSealedStorageReadyForSandboxClone()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L282", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_ensuresealedstoragereadyforsandboxclone", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "ensuresealedstoragereadyforsandboxclone()" + }, + { + "label": "BeapInboxCloneNoSandboxDetails", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L350", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_beapinboxclonenosandboxdetails", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "beapinboxclonenosandboxdetails" + }, + { + "label": "BeapInboxClonePrepareResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L360", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_beapinboxcloneprepareresult", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "beapinboxcloneprepareresult" + }, + { + "label": "ClonePrepareInboxRow", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L364", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_cloneprepareinboxrow", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "cloneprepareinboxrow" + }, + { + "label": "readInboxRowForClonePrepare()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L392", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_readinboxrowforcloneprepare", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "readinboxrowforcloneprepare()" + }, + { + "label": "prepareBeapInboxSandboxClone()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L489", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_preparebeapinboxsandboxclone", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "preparebeapinboxsandboxclone()" + }, + { + "label": "extractSourceSessionImportArtefact()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L700", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_extractsourcesessionimportartefact", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "extractsourcesessionimportartefact()" + }, + { + "label": "beapInboxDashboardNotify.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxDashboardNotify.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapinboxdashboardnotify", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "beapinboxdashboardnotify.ts" + }, + { + "label": "setBeapInboxDashboardNotifier()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxDashboardNotify.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapinboxdashboardnotify_setbeapinboxdashboardnotifier", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "setbeapinboxdashboardnotifier()" + }, + { + "label": "notifyBeapInboxDashboard()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxDashboardNotify.ts", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapinboxdashboardnotify_notifybeapinboxdashboard", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "notifybeapinboxdashboard()" + }, + { + "label": "beapRedirectSource.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapRedirectSource.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapredirectsource", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "beapredirectsource.ts" + }, + { + "label": "BeapRedirectSourceResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapRedirectSource.ts", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapredirectsource_beapredirectsourceresult", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "beapredirectsourceresult" + }, + { + "label": "InboxRow", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapRedirectSource.ts", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapredirectsource_inboxrow", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "inboxrow" + }, + { + "label": "depackagedFormatFromPair()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapRedirectSource.ts", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapredirectsource_depackagedformatfrompair", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "depackagedformatfrompair()" + }, + { + "label": "isReceivedBeapInboxSourceType()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapRedirectSource.ts", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapredirectsource_isreceivedbeapinboxsourcetype", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "isreceivedbeapinboxsourcetype()" + }, + { + "label": "depackFormatFromRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapRedirectSource.ts", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapredirectsource_depackformatfromrow", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "depackformatfromrow()" + }, + { + "label": "inboxRowIsReceivedBeapForRedirectOrClone()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapRedirectSource.ts", + "source_location": "L69", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapredirectsource_inboxrowisreceivedbeapforredirectorclone", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "inboxrowisreceivedbeapforredirectorclone()" + }, + { + "label": "extractBodyFromDepackaged()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapRedirectSource.ts", + "source_location": "L87", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapredirectsource_extractbodyfromdepackaged", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "extractbodyfromdepackaged()" + }, + { + "label": "tryExtractBeapStructuredText()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapRedirectSource.ts", + "source_location": "L102", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapredirectsource_tryextractbeapstructuredtext", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "tryextractbeapstructuredtext()" + }, + { + "label": "extractGenericInboxText()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapRedirectSource.ts", + "source_location": "L176", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapredirectsource_extractgenericinboxtext", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "extractgenericinboxtext()" + }, + { + "label": "extractClonePrepareSourceFromRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapRedirectSource.ts", + "source_location": "L221", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapredirectsource_extractclonepreparesourcefromrow", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "extractclonepreparesourcefromrow()" + }, + { + "label": "extractInboxMessageRedirectSourceFromRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapRedirectSource.ts", + "source_location": "L247", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapredirectsource_extractinboxmessageredirectsourcefromrow", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "extractinboxmessageredirectsourcefromrow()" + }, + { + "label": "extractBeapRedirectSourceFromRow", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapRedirectSource.ts", + "source_location": "L295", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapredirectsource_extractbeapredirectsourcefromrow", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "extractbeapredirectsourcefromrow" + }, + { + "label": "prepareInboxMessageRedirectSource", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapRedirectSource.ts", + "source_location": "L297", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapredirectsource_prepareinboxmessageredirectsource", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "prepareinboxmessageredirectsource" + }, + { + "label": "beapSync.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapsync", + "community": 201, + "community_name": "Email #201", + "norm_label": "beapsync.ts" + }, + { + "label": "BeapSyncConfig", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapsync_beapsyncconfig", + "community": 201, + "community_name": "Email #201", + "norm_label": "beapsyncconfig" + }, + { + "label": "EmailListFn", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L27", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapsync_emaillistfn", + "community": 201, + "community_name": "Email #201", + "norm_label": "emaillistfn" + }, + { + "label": "EmailGetFn", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L31", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapsync_emailgetfn", + "community": 201, + "community_name": "Email #201", + "norm_label": "emailgetfn" + }, + { + "label": "EmailListAttachmentsFn", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L35", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapsync_emaillistattachmentsfn", + "community": 201, + "community_name": "Email #201", + "norm_label": "emaillistattachmentsfn" + }, + { + "label": "EmailExtractAttachmentTextFn", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L39", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapsync_emailextractattachmenttextfn", + "community": 201, + "community_name": "Email #201", + "norm_label": "emailextractattachmenttextfn" + }, + { + "label": "BeapSyncHandle", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L43", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapsync_beapsynchandle", + "community": 201, + "community_name": "Email #201", + "norm_label": "beapsynchandle" + }, + { + "label": "setEmailFunctions()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L57", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapsync_setemailfunctions", + "community": 201, + "community_name": "Email #201", + "norm_label": "setemailfunctions()" + }, + { + "label": "_resetEmailFunctions()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L70", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapsync_resetemailfunctions", + "community": 201, + "community_name": "Email #201", + "norm_label": "_resetemailfunctions()" + }, + { + "label": "processedMessageIds", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L77", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapsync_processedmessageids", + "community": 201, + "community_name": "Email #201", + "norm_label": "processedmessageids" + }, + { + "label": "detectBeapInBody()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L82", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapsync_detectbeapinbody", + "community": 201, + "community_name": "Email #201", + "norm_label": "detectbeapinbody()" + }, + { + "label": "detectBeapMessagePackage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L110", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapsync_detectbeapmessagepackage", + "community": 201, + "community_name": "Email #201", + "norm_label": "detectbeapmessagepackage()" + }, + { + "label": "detectBeapInSubject()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L145", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapsync_detectbeapinsubject", + "community": 201, + "community_name": "Email #201", + "norm_label": "detectbeapinsubject()" + }, + { + "label": "isBeapAttachment()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L155", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapsync_isbeapattachment", + "community": 201, + "community_name": "Email #201", + "norm_label": "isbeapattachment()" + }, + { + "label": "isJsonAttachment()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L165", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapsync_isjsonattachment", + "community": 201, + "community_name": "Email #201", + "norm_label": "isjsonattachment()" + }, + { + "label": "detectBeapInParsedJson()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L174", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapsync_detectbeapinparsedjson", + "community": 201, + "community_name": "Email #201", + "norm_label": "detectbeapinparsedjson()" + }, + { + "label": "processEmailForBeap()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L185", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapsync_processemailforbeap", + "community": 201, + "community_name": "Email #201", + "norm_label": "processemailforbeap()" + }, + { + "label": "runBeapSyncCycle()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L362", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapsync_runbeapsynccycle", + "community": 201, + "community_name": "Email #201", + "norm_label": "runbeapsynccycle()" + }, + { + "label": "startBeapEmailSync()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L406", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapsync_startbeapemailsync", + "community": 201, + "community_name": "Email #201", + "norm_label": "startbeapemailsync()" + }, + { + "label": "_resetProcessedMessages()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L433", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_beapsync_resetprocessedmessages", + "community": 201, + "community_name": "Email #201", + "norm_label": "_resetprocessedmessages()" + }, + { + "label": "builtinGoogleOAuthSupplement.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/builtinGoogleOAuthSupplement.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_builtingoogleoauthsupplement", + "community": 105, + "community_name": "Email Providers #105", + "norm_label": "builtingoogleoauthsupplement.ts" + }, + { + "label": "supplementPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/builtinGoogleOAuthSupplement.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_builtingoogleoauthsupplement_supplementpath", + "community": 105, + "community_name": "Email Providers #105", + "norm_label": "supplementpath()" + }, + { + "label": "normalizeSupplementDesktopSecret()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/builtinGoogleOAuthSupplement.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_builtingoogleoauthsupplement_normalizesupplementdesktopsecret", + "community": 105, + "community_name": "Email Providers #105", + "norm_label": "normalizesupplementdesktopsecret()" + }, + { + "label": "loadBuiltinGoogleOAuthSupplementSecret()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/builtinGoogleOAuthSupplement.ts", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_builtingoogleoauthsupplement_loadbuiltingoogleoauthsupplementsecret", + "community": 105, + "community_name": "Email Providers #105", + "norm_label": "loadbuiltingoogleoauthsupplementsecret()" + }, + { + "label": "hasBuiltinGoogleOAuthSupplementForClientId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/builtinGoogleOAuthSupplement.ts", + "source_location": "L67", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_builtingoogleoauthsupplement_hasbuiltingoogleoauthsupplementforclientid", + "community": 105, + "community_name": "Email Providers #105", + "norm_label": "hasbuiltingoogleoauthsupplementforclientid()" + }, + { + "label": "SaveBuiltinSupplementResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/builtinGoogleOAuthSupplement.ts", + "source_location": "L71", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_builtingoogleoauthsupplement_savebuiltinsupplementresult", + "community": 105, + "community_name": "Email Providers #105", + "norm_label": "savebuiltinsupplementresult" + }, + { + "label": "saveBuiltinGoogleOAuthSupplementSecret()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/builtinGoogleOAuthSupplement.ts", + "source_location": "L76", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_builtingoogleoauthsupplement_savebuiltingoogleoauthsupplementsecret", + "community": 105, + "community_name": "Email Providers #105", + "norm_label": "savebuiltingoogleoauthsupplementsecret()" + }, + { + "label": "clearBuiltinGoogleOAuthSupplement()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/builtinGoogleOAuthSupplement.ts", + "source_location": "L106", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_builtingoogleoauthsupplement_clearbuiltingoogleoauthsupplement", + "community": 105, + "community_name": "Email Providers #105", + "norm_label": "clearbuiltingoogleoauthsupplement()" + }, + { + "label": "credentials.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_credentials", + "community": 105, + "community_name": "Email Providers #105", + "norm_label": "credentials.ts" + }, + { + "label": "credLog()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_credentials_credlog", + "community": 105, + "community_name": "Email Providers #105", + "norm_label": "credlog()" + }, + { + "label": "CredentialSource", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L35", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_credentials_credentialsource", + "community": 105, + "community_name": "Email Providers #105", + "norm_label": "credentialsource" + }, + { + "label": "GmailCreds", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L37", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_credentials_gmailcreds", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "gmailcreds" + }, + { + "label": "OutlookCreds", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L42", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_credentials_outlookcreds", + "community": 105, + "community_name": "Email Providers #105", + "norm_label": "outlookcreds" + }, + { + "label": "ZohoCreds", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L49", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_credentials_zohocreds", + "community": 105, + "community_name": "Email Providers #105", + "norm_label": "zohocreds" + }, + { + "label": "EmailCreds", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L56", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_credentials_emailcreds", + "community": 105, + "community_name": "Email Providers #105", + "norm_label": "emailcreds" + }, + { + "label": "CheckResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L58", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_credentials_checkresult", + "community": 105, + "community_name": "Email Providers #105", + "norm_label": "checkresult" + }, + { + "label": "getGmailConfigPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L73", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_credentials_getgmailconfigpath", + "community": 105, + "community_name": "Email Providers #105", + "norm_label": "getgmailconfigpath()" + }, + { + "label": "getOutlookConfigPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L77", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_credentials_getoutlookconfigpath", + "community": 105, + "community_name": "Email Providers #105", + "norm_label": "getoutlookconfigpath()" + }, + { + "label": "getZohoConfigPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L81", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_credentials_getzohoconfigpath", + "community": 105, + "community_name": "Email Providers #105", + "norm_label": "getzohoconfigpath()" + }, + { + "label": "getBackupPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L89", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_credentials_getbackuppath", + "community": 105, + "community_name": "Email Providers #105", + "norm_label": "getbackuppath()" + }, + { + "label": "writeBackupFile()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L102", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_credentials_writebackupfile", + "community": 105, + "community_name": "Email Providers #105", + "norm_label": "writebackupfile()" + }, + { + "label": "readBackupFile()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L112", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_credentials_readbackupfile", + "community": 105, + "community_name": "Email Providers #105", + "norm_label": "readbackupfile()" + }, + { + "label": "loadZohoOAuthConfig()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L136", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_credentials_loadzohooauthconfig", + "community": 105, + "community_name": "Email Providers #105", + "norm_label": "loadzohooauthconfig()" + }, + { + "label": "saveZohoOAuthConfig()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L155", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_credentials_savezohooauthconfig", + "community": 105, + "community_name": "Email Providers #105", + "norm_label": "savezohooauthconfig()" + }, + { + "label": "loadFromFile()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L172", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_credentials_loadfromfile", + "community": 105, + "community_name": "Email Providers #105", + "norm_label": "loadfromfile()" + }, + { + "label": "DEFAULT_TIER", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L186", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_credentials_default_tier", + "community": 105, + "community_name": "Email Providers #105", + "norm_label": "default_tier" + }, + { + "label": "loadFromVault()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L191", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_credentials_loadfromvault", + "community": 105, + "community_name": "Email Providers #105", + "norm_label": "loadfromvault()" + }, + { + "label": "saveToVault()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L242", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_credentials_savetovault", + "community": 105, + "community_name": "Email Providers #105", + "norm_label": "savetovault()" + }, + { + "label": "isVaultUnlocked()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L321", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_credentials_isvaultunlocked", + "community": 105, + "community_name": "Email Providers #105", + "norm_label": "isvaultunlocked()" + }, + { + "label": "checkExistingCredentials()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L340", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_credentials_checkexistingcredentials", + "community": 105, + "community_name": "Email Providers #105", + "norm_label": "checkexistingcredentials()" + }, + { + "label": "getCredentialsForOAuth()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L402", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_credentials_getcredentialsforoauth", + "community": 105, + "community_name": "Email Providers #105", + "norm_label": "getcredentialsforoauth()" + }, + { + "label": "saveCredentials()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L435", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_credentials_savecredentials", + "community": 105, + "community_name": "Email Providers #105", + "norm_label": "savecredentials()" + }, + { + "label": "deletePlainFile()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L477", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_credentials_deleteplainfile", + "community": 105, + "community_name": "Email Providers #105", + "norm_label": "deleteplainfile()" + }, + { + "label": "deleteAllCredentials()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L498", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_credentials_deleteallcredentials", + "community": 105, + "community_name": "Email Providers #105", + "norm_label": "deleteallcredentials()" + }, + { + "label": "NOTE: credentials are never deleted here. The backup file persists", + "file_type": "rationale", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L337", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_credentials_rationale_337", + "community": 105, + "community_name": "Email Providers #105", + "norm_label": "note: credentials are never deleted here. the backup file persists" + }, + { + "label": "dashboardSnapshot.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/dashboardSnapshot.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_dashboardsnapshot", + "community": 182, + "community_name": "Email #182", + "norm_label": "dashboardsnapshot.ts" + }, + { + "label": "DashboardSnapshotAutosortMessageRow", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/dashboardSnapshot.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_dashboardsnapshot_dashboardsnapshotautosortmessagerow", + "community": 182, + "community_name": "Email #182", + "norm_label": "dashboardsnapshotautosortmessagerow" + }, + { + "label": "DashboardSnapshotAiSummary", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/dashboardSnapshot.ts", + "source_location": "L27", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_dashboardsnapshot_dashboardsnapshotaisummary", + "community": 182, + "community_name": "Email #182", + "norm_label": "dashboardsnapshotaisummary" + }, + { + "label": "DashboardSnapshotLatestSession", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/dashboardSnapshot.ts", + "source_location": "L32", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_dashboardsnapshot_dashboardsnapshotlatestsession", + "community": 182, + "community_name": "Email #182", + "norm_label": "dashboardsnapshotlatestsession" + }, + { + "label": "InboxDashboardSnapshotCollectResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/dashboardSnapshot.ts", + "source_location": "L47", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_dashboardsnapshot_inboxdashboardsnapshotcollectresult", + "community": 182, + "community_name": "Email #182", + "norm_label": "inboxdashboardsnapshotcollectresult" + }, + { + "label": "countInbox()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/dashboardSnapshot.ts", + "source_location": "L97", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_dashboardsnapshot_countinbox", + "community": 182, + "community_name": "Email #182", + "norm_label": "countinbox()" + }, + { + "label": "parseAiSummaryJson()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/dashboardSnapshot.ts", + "source_location": "L103", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_dashboardsnapshot_parseaisummaryjson", + "community": 182, + "community_name": "Email #182", + "norm_label": "parseaisummaryjson()" + }, + { + "label": "collectReadOnlyDashboardSnapshot()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/dashboardSnapshot.ts", + "source_location": "L124", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_dashboardsnapshot_collectreadonlydashboardsnapshot", + "community": 182, + "community_name": "Email #182", + "norm_label": "collectreadonlydashboardsnapshot()" + }, + { + "label": "dedicatedSandboxReadProviderStatus.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/dedicatedSandboxReadProviderStatus.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_dedicatedsandboxreadproviderstatus", + "community": 135, + "community_name": "Email Ingestionpolltrigger", + "norm_label": "dedicatedsandboxreadproviderstatus.ts" + }, + { + "label": "isSandboxReadConsentMissingPollStatus()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/dedicatedSandboxReadProviderStatus.ts", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_dedicatedsandboxreadproviderstatus_issandboxreadconsentmissingpollstatus", + "community": 135, + "community_name": "Email Ingestionpolltrigger", + "norm_label": "issandboxreadconsentmissingpollstatus()" + }, + { + "label": "isSandboxPollUnreachableStatus()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/dedicatedSandboxReadProviderStatus.ts", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_dedicatedsandboxreadproviderstatus_issandboxpollunreachablestatus", + "community": 135, + "community_name": "Email Ingestionpolltrigger", + "norm_label": "issandboxpollunreachablestatus()" + }, + { + "label": "hostAckIndicatesMissingReadProvider()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/dedicatedSandboxReadProviderStatus.ts", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_dedicatedsandboxreadproviderstatus_hostackindicatesmissingreadprovider", + "community": 135, + "community_name": "Email Ingestionpolltrigger", + "norm_label": "hostackindicatesmissingreadprovider()" + }, + { + "label": "hostAckIndicatesPollUnreachable()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/dedicatedSandboxReadProviderStatus.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_dedicatedsandboxreadproviderstatus_hostackindicatespollunreachable", + "community": 135, + "community_name": "Email Ingestionpolltrigger", + "norm_label": "hostackindicatespollunreachable()" + }, + { + "label": "sandboxDedicatedMissingReadProvider()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/dedicatedSandboxReadProviderStatus.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_dedicatedsandboxreadproviderstatus_sandboxdedicatedmissingreadprovider", + "community": 135, + "community_name": "Email Ingestionpolltrigger", + "norm_label": "sandboxdedicatedmissingreadprovider()" + }, + { + "label": "diagnoseImapStandalone.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/diagnoseImapStandalone.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_diagnoseimapstandalone", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "diagnoseimapstandalone.ts" + }, + { + "label": "DiagnoseImapParams", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/diagnoseImapStandalone.ts", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_diagnoseimapstandalone_diagnoseimapparams", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "diagnoseimapparams" + }, + { + "label": "DiagnoseImapResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/diagnoseImapStandalone.ts", + "source_location": "L21", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_diagnoseimapstandalone_diagnoseimapresult", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "diagnoseimapresult" + }, + { + "label": "runDiagnoseImapStandalone()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/diagnoseImapStandalone.ts", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_diagnoseimapstandalone_rundiagnoseimapstandalone", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "rundiagnoseimapstandalone()" + }, + { + "label": "accountAggregate.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/accountAggregate.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_accountaggregate", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "accountaggregate.ts" + }, + { + "label": "ProviderAccountDomainView", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/accountAggregate.ts", + "source_location": "L15", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_accountaggregate_provideraccountdomainview", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "provideraccountdomainview" + }, + { + "label": "providerAccountDomainViewFromConfig()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/accountAggregate.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_accountaggregate_provideraccountdomainviewfromconfig", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "provideraccountdomainviewfromconfig()" + }, + { + "label": "providerAccountDomainViewsAllSlices()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/accountAggregate.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_accountaggregate_provideraccountdomainviewsallslices", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "provideraccountdomainviewsallslices()" + }, + { + "label": "accountIdentity.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/accountIdentity.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_accountidentity", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "accountidentity.ts" + }, + { + "label": "ConnectedAccountIdentity", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/accountIdentity.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_accountidentity_connectedaccountidentity", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "connectedaccountidentity" + }, + { + "label": "connectedAccountIdentityFromConfig()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/accountIdentity.ts", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_accountidentity_connectedaccountidentityfromconfig", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "connectedaccountidentityfromconfig()" + }, + { + "label": "accountRowPicker.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/accountRowPicker.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_accountrowpicker", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "accountrowpicker.ts" + }, + { + "label": "pickDefaultEmailAccountRowId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/accountRowPicker.ts", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_accountrowpicker_pickdefaultemailaccountrowid", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "pickdefaultemailaccountrowid()" + }, + { + "label": "capabilitiesRegistry.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/capabilitiesRegistry.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_capabilitiesregistry", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "capabilitiesregistry.ts" + }, + { + "label": "ProviderImplementationProfile", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/capabilitiesRegistry.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_capabilitiesregistry_providerimplementationprofile", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "providerimplementationprofile" + }, + { + "label": "PROVIDER_IMPLEMENTATION_PROFILE", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/capabilitiesRegistry.ts", + "source_location": "L22", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_capabilitiesregistry_provider_implementation_profile", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "provider_implementation_profile" + }, + { + "label": "getProviderAccountCapabilities()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/capabilitiesRegistry.ts", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_capabilitiesregistry_getprovideraccountcapabilities", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "getprovideraccountcapabilities()" + }, + { + "label": "customImapSmtpPayloadValidation.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/customImapSmtpPayloadValidation.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_customimapsmtppayloadvalidation_test", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "customimapsmtppayloadvalidation.test.ts" + }, + { + "label": "validBase()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/customImapSmtpPayloadValidation.test.ts", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_customimapsmtppayloadvalidation_test_validbase", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "validbase()" + }, + { + "label": "customImapSmtpPayloadValidation.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/customImapSmtpPayloadValidation.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_customimapsmtppayloadvalidation", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "customimapsmtppayloadvalidation.ts" + }, + { + "label": "assertPort()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/customImapSmtpPayloadValidation.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_customimapsmtppayloadvalidation_assertport", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "assertport()" + }, + { + "label": "assertOptionalImapLifecycleMailbox()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/customImapSmtpPayloadValidation.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_customimapsmtppayloadvalidation_assertoptionalimaplifecyclemailbox", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "assertoptionalimaplifecyclemailbox()" + }, + { + "label": "validateCustomImapSmtpPayload()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/customImapSmtpPayloadValidation.ts", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_customimapsmtppayloadvalidation_validatecustomimapsmtppayload", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "validatecustomimapsmtppayload()" + }, + { + "label": "imapLegacyFolders.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/imapLegacyFolders.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_imaplegacyfolders", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": "imaplegacyfolders.ts" + }, + { + "label": "imapFoldersMatchExact()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/imapLegacyFolders.ts", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_imaplegacyfolders_imapfoldersmatchexact", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": "imapfoldersmatchexact()" + }, + { + "label": "isLegacyImapMailboxLabel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/imapLegacyFolders.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_imaplegacyfolders_islegacyimapmailboxlabel", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": "islegacyimapmailboxlabel()" + }, + { + "label": "imapPullFolders.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/imapPullFolders.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_imappullfolders", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "imappullfolders.ts" + }, + { + "label": "resolveImapPullFolders()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/imapPullFolders.ts", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_imappullfolders_resolveimappullfolders", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "resolveimappullfolders()" + }, + { + "label": "domain/index.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_index", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "domain/index.ts" + }, + { + "label": "mailboxAccountDedupe.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxAccountDedupe.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_test", + "community": 48, + "community_name": "Email Domain", + "norm_label": "mailboxaccountdedupe.test.ts" + }, + { + "label": "row()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxAccountDedupe.test.ts", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_test_row", + "community": 48, + "community_name": "Email Domain", + "norm_label": "row()" + }, + { + "label": "probe()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxAccountDedupe.test.ts", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_test_probe", + "community": 48, + "community_name": "Email Domain", + "norm_label": "probe()" + }, + { + "label": "mailboxAccountDedupe.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxAccountDedupe.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe", + "community": 48, + "community_name": "Email Domain", + "norm_label": "mailboxaccountdedupe.ts" + }, + { + "label": "MailboxProvider", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxAccountDedupe.ts", + "source_location": "L19", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_mailboxprovider", + "community": 48, + "community_name": "Email Domain", + "norm_label": "mailboxprovider" + }, + { + "label": "RoleTokenProbe", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxAccountDedupe.ts", + "source_location": "L21", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_roletokenprobe", + "community": 48, + "community_name": "Email Domain", + "norm_label": "roletokenprobe" + }, + { + "label": "normalizeMailboxEmail()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxAccountDedupe.ts", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_normalizemailboxemail", + "community": 48, + "community_name": "Email Domain", + "norm_label": "normalizemailboxemail()" + }, + { + "label": "mailboxIdentityKey()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxAccountDedupe.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_mailboxidentitykey", + "community": 48, + "community_name": "Email Domain", + "norm_label": "mailboxidentitykey()" + }, + { + "label": "hasBundledOauth()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxAccountDedupe.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_hasbundledoauth", + "community": 48, + "community_name": "Email Domain", + "norm_label": "hasbundledoauth()" + }, + { + "label": "scoreMailboxRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxAccountDedupe.ts", + "source_location": "L42", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_scoremailboxrow", + "community": 48, + "community_name": "Email Domain", + "norm_label": "scoremailboxrow()" + }, + { + "label": "pickMailboxWinnerRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxAccountDedupe.ts", + "source_location": "L62", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_pickmailboxwinnerrow", + "community": 48, + "community_name": "Email Domain", + "norm_label": "pickmailboxwinnerrow()" + }, + { + "label": "dedupeMailboxConfigsForDisplay()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxAccountDedupe.ts", + "source_location": "L75", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_dedupemailboxconfigsfordisplay", + "community": 48, + "community_name": "Email Domain", + "norm_label": "dedupemailboxconfigsfordisplay()" + }, + { + "label": "dedupeMailboxInfosForDisplay()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxAccountDedupe.ts", + "source_location": "L102", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_dedupemailboxinfosfordisplay", + "community": 48, + "community_name": "Email Domain", + "norm_label": "dedupemailboxinfosfordisplay()" + }, + { + "label": "MailboxDuplicateGroup", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxAccountDedupe.ts", + "source_location": "L112", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_mailboxduplicategroup", + "community": 48, + "community_name": "Email Domain", + "norm_label": "mailboxduplicategroup" + }, + { + "label": "findDuplicateMailboxGroups()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxAccountDedupe.ts", + "source_location": "L118", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_findduplicatemailboxgroups", + "community": 48, + "community_name": "Email Domain", + "norm_label": "findduplicatemailboxgroups()" + }, + { + "label": "findExistingMailboxAccountInList()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxAccountDedupe.ts", + "source_location": "L144", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_findexistingmailboxaccountinlist", + "community": 48, + "community_name": "Email Domain", + "norm_label": "findexistingmailboxaccountinlist()" + }, + { + "label": "mailboxLifecycleMapping.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxLifecycleMapping.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_test", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "mailboxlifecyclemapping.test.ts" + }, + { + "label": "baseAccount()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxLifecycleMapping.test.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_test_baseaccount", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "baseaccount()" + }, + { + "label": "mailboxLifecycleMapping.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxLifecycleMapping.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "mailboxlifecyclemapping.ts" + }, + { + "label": "DEFAULT_ORCHESTRATOR_REMOTE_NAMES", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxLifecycleMapping.ts", + "source_location": "L18", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_default_orchestrator_remote_names", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "default_orchestrator_remote_names" + }, + { + "label": "ResolvedOrchestratorRemoteNames", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxLifecycleMapping.ts", + "source_location": "L53", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_resolvedorchestratorremotenames", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "resolvedorchestratorremotenames" + }, + { + "label": "coalesceTrim()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxLifecycleMapping.ts", + "source_location": "L81", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_coalescetrim", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "coalescetrim()" + }, + { + "label": "resolveOrchestratorRemoteNames()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxLifecycleMapping.ts", + "source_location": "L89", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_resolveorchestratorremotenames", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "resolveorchestratorremotenames()" + }, + { + "label": "orchestratorRemoteFromImapLifecycleFields()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxLifecycleMapping.ts", + "source_location": "L131", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_orchestratorremotefromimaplifecyclefields", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "orchestratorremotefromimaplifecyclefields()" + }, + { + "label": "describeOrchestratorRemoteOperation()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxLifecycleMapping.ts", + "source_location": "L151", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_describeorchestratorremoteoperation", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "describeorchestratorremoteoperation()" + }, + { + "label": "REMOTE_DELETION_TARGETS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxLifecycleMapping.ts", + "source_location": "L170", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_remote_deletion_targets", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "remote_deletion_targets" + }, + { + "label": "mailboxResolution.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxResolution.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_mailboxresolution", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "mailboxresolution.ts" + }, + { + "label": "ResolvedMailboxSlice", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxResolution.ts", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_mailboxresolution_resolvedmailboxslice", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "resolvedmailboxslice" + }, + { + "label": "mergeFolders()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxResolution.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_mailboxresolution_mergefolders", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "mergefolders()" + }, + { + "label": "pickImplicitLabel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxResolution.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_mailboxresolution_pickimplicitlabel", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "pickimplicitlabel()" + }, + { + "label": "resolveMailboxesForAccount()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxResolution.ts", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_mailboxresolution_resolvemailboxesforaccount", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "resolvemailboxesforaccount()" + }, + { + "label": "getDefaultMailboxSlice()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxResolution.ts", + "source_location": "L68", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_mailboxresolution_getdefaultmailboxslice", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "getdefaultmailboxslice()" + }, + { + "label": "getFoldersForAccountOperation()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxResolution.ts", + "source_location": "L76", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_mailboxresolution_getfoldersforaccountoperation", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "getfoldersforaccountoperation()" + }, + { + "label": "mailboxSyncPlan.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxSyncPlan.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_mailboxsyncplan", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "mailboxsyncplan.ts" + }, + { + "label": "MailboxSyncTargetRole", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxSyncPlan.ts", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_mailboxsyncplan_mailboxsynctargetrole", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "mailboxsynctargetrole" + }, + { + "label": "MailboxSyncTarget", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxSyncPlan.ts", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_mailboxsyncplan_mailboxsynctarget", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "mailboxsynctarget" + }, + { + "label": "MailboxSyncPlan", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxSyncPlan.ts", + "source_location": "L36", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_mailboxsyncplan_mailboxsyncplan", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "mailboxsyncplan" + }, + { + "label": "mailboxSyncPlanFromLegacyFolders()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxSyncPlan.ts", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_mailboxsyncplan_mailboxsyncplanfromlegacyfolders", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "mailboxsyncplanfromlegacyfolders()" + }, + { + "label": "legacyFoldersFromMailboxSyncPlan()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxSyncPlan.ts", + "source_location": "L93", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_mailboxsyncplan_legacyfoldersfrommailboxsyncplan", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "legacyfoldersfrommailboxsyncplan()" + }, + { + "label": "orchestratorRemoteTypes.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/orchestratorRemoteTypes.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "orchestratorremotetypes.ts" + }, + { + "label": "OrchestratorRemoteOperation", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/orchestratorRemoteTypes.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes_orchestratorremoteoperation", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "orchestratorremoteoperation" + }, + { + "label": "OrchestratorRemoteApplyContext", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/orchestratorRemoteTypes.ts", + "source_location": "L19", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes_orchestratorremoteapplycontext", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "orchestratorremoteapplycontext" + }, + { + "label": "OrchestratorRemoteApplyResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/orchestratorRemoteTypes.ts", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes_orchestratorremoteapplyresult", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "orchestratorremoteapplyresult" + }, + { + "label": "remoteLifecycleAbstraction.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/remoteLifecycleAbstraction.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_remotelifecycleabstraction_test", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "remotelifecycleabstraction.test.ts" + }, + { + "label": "baseAccount()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/remoteLifecycleAbstraction.test.ts", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_remotelifecycleabstraction_test_baseaccount", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "baseaccount()" + }, + { + "label": "remoteLifecycleAbstraction.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/remoteLifecycleAbstraction.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_remotelifecycleabstraction", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "remotelifecycleabstraction.ts" + }, + { + "label": "CANONICAL_LIFECYCLE_BUCKET_LABELS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/remoteLifecycleAbstraction.ts", + "source_location": "L21", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_remotelifecycleabstraction_canonical_lifecycle_bucket_labels", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "canonical_lifecycle_bucket_labels" + }, + { + "label": "RemoteLifecycleBackendKind", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/remoteLifecycleAbstraction.ts", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_remotelifecycleabstraction_remotelifecyclebackendkind", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "remotelifecyclebackendkind" + }, + { + "label": "remoteLifecycleBackendForProvider()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/remoteLifecycleAbstraction.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_remotelifecycleabstraction_remotelifecyclebackendforprovider", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "remotelifecyclebackendforprovider()" + }, + { + "label": "ResolvedRemoteLifecycleSnapshot", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/remoteLifecycleAbstraction.ts", + "source_location": "L52", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_remotelifecycleabstraction_resolvedremotelifecyclesnapshot", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "resolvedremotelifecyclesnapshot" + }, + { + "label": "resolveRemoteLifecycleSnapshot()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/remoteLifecycleAbstraction.ts", + "source_location": "L65", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_remotelifecycleabstraction_resolveremotelifecyclesnapshot", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "resolveremotelifecyclesnapshot()" + }, + { + "label": "RemoteLifecycleAdapter", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/remoteLifecycleAbstraction.ts", + "source_location": "L118", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_remotelifecycleabstraction_remotelifecycleadapter", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "remotelifecycleadapter" + }, + { + "label": ".ensureRemoteLifecycleTargets()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/remoteLifecycleAbstraction.ts", + "source_location": "L119", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_remotelifecycleabstraction_remotelifecycleadapter_ensureremotelifecycletargets", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": ".ensureremotelifecycletargets()" + }, + { + "label": ".applyRemoteLifecycleOperation()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/remoteLifecycleAbstraction.ts", + "source_location": "L120", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_remotelifecycleabstraction_remotelifecycleadapter_applyremotelifecycleoperation", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": ".applyremotelifecycleoperation()" + }, + { + "label": ".reconcileRemoteLifecycleState()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/remoteLifecycleAbstraction.ts", + "source_location": "L125", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_remotelifecycleabstraction_remotelifecycleadapter_reconcileremotelifecyclestate", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": ".reconcileremotelifecyclestate()" + }, + { + "label": "securityModeNormalize.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/securityModeNormalize.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_securitymodenormalize_test", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "securitymodenormalize.test.ts" + }, + { + "label": "securityModeNormalize.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/securityModeNormalize.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_securitymodenormalize", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "securitymodenormalize.ts" + }, + { + "label": "normKey()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/securityModeNormalize.ts", + "source_location": "L3", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_securitymodenormalize_normkey", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "normkey()" + }, + { + "label": "imapUsesImplicitTls()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/securityModeNormalize.ts", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_securitymodenormalize_imapusesimplicittls", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "imapusesimplicittls()" + }, + { + "label": "smtpTransportTlsFlags()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/securityModeNormalize.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_securitymodenormalize_smtptransporttlsflags", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "smtptransporttlsflags()" + }, + { + "label": "normalizeSecurityMode()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/securityModeNormalize.ts", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_securitymodenormalize_normalizesecuritymode", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "normalizesecuritymode()" + }, + { + "label": "smartSyncPrefs.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/smartSyncPrefs.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_smartsyncprefs", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "smartsyncprefs.ts" + }, + { + "label": "getEffectiveSyncWindowDays()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/smartSyncPrefs.ts", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_smartsyncprefs_geteffectivesyncwindowdays", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "geteffectivesyncwindowdays()" + }, + { + "label": "getMaxMessagesPerPull()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/smartSyncPrefs.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_smartsyncprefs_getmaxmessagesperpull", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "getmaxmessagesperpull()" + }, + { + "label": "getRemoteSyncReceivedAtLowerBoundIso()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/smartSyncPrefs.ts", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_smartsyncprefs_getremotesyncreceivedatlowerboundiso", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "getremotesyncreceivedatlowerboundiso()" + }, + { + "label": "syncLastSyncAnchorPolicy.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/syncLastSyncAnchorPolicy.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_synclastsyncanchorpolicy_test", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "synclastsyncanchorpolicy.test.ts" + }, + { + "label": "syncLastSyncAnchorPolicy.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/syncLastSyncAnchorPolicy.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_synclastsyncanchorpolicy", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "synclastsyncanchorpolicy.ts" + }, + { + "label": "shouldSkipAdvancingLastSyncAt()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/domain/syncLastSyncAnchorPolicy.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_domain_synclastsyncanchorpolicy_shouldskipadvancinglastsyncat", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "shouldskipadvancinglastsyncat()" + }, + { + "label": "emailAuthErrors.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/emailAuthErrors.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_emailautherrors", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "emailautherrors.ts" + }, + { + "label": "isLikelyEmailAuthError()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/emailAuthErrors.ts", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_emailautherrors_islikelyemailautherror", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "islikelyemailautherror()" + }, + { + "label": "emailDebug.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/emailDebug.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_emaildebug", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "emaildebug.ts" + }, + { + "label": "EMAIL_DEBUG", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/emailDebug.ts", + "source_location": "L18", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_emaildebug_email_debug", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "email_debug" + }, + { + "label": "EMAIL_ACCOUNTS_DEBUG", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/emailDebug.ts", + "source_location": "L21", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_emaildebug_email_accounts_debug", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "email_accounts_debug" + }, + { + "label": "DEBUG_GMAIL_PERSISTENCE", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/emailDebug.ts", + "source_location": "L25", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_emaildebug_debug_gmail_persistence", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "debug_gmail_persistence" + }, + { + "label": "gmailPersistenceDebugLog()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/emailDebug.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_emaildebug_gmailpersistencedebuglog", + "community": 48, + "community_name": "Email Domain", + "norm_label": "gmailpersistencedebuglog()" + }, + { + "label": "DIAGNOSE_IMAP_IPC_DEV", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/emailDebug.ts", + "source_location": "L36", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_emaildebug_diagnose_imap_ipc_dev", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "diagnose_imap_ipc_dev" + }, + { + "label": "emailDebugLog()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/emailDebug.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_emaildebug_emaildebuglog", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "emaildebuglog()" + }, + { + "label": "emailDebugWarn()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/emailDebug.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_emaildebug_emaildebugwarn", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "emaildebugwarn()" + }, + { + "label": "emailAccountsDebugLog()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/emailDebug.ts", + "source_location": "L52", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_emaildebug_emailaccountsdebuglog", + "community": 48, + "community_name": "Email Domain", + "norm_label": "emailaccountsdebuglog()" + }, + { + "label": "extensionMergeRetryBuffer.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/extensionMergeRetryBuffer.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "extensionmergeretrybuffer.ts" + }, + { + "label": "PendingExtensionMerge", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/extensionMergeRetryBuffer.ts", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_pendingextensionmerge", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "pendingextensionmerge" + }, + { + "label": "MAX_EXTENSION_MERGE_RETRY", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/extensionMergeRetryBuffer.ts", + "source_location": "L49", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_max_extension_merge_retry", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "max_extension_merge_retry" + }, + { + "label": "_buffer", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/extensionMergeRetryBuffer.ts", + "source_location": "L52", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "_buffer" + }, + { + "label": "addPendingMerge()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/extensionMergeRetryBuffer.ts", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_addpendingmerge", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "addpendingmerge()" + }, + { + "label": "removePendingMerge()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/extensionMergeRetryBuffer.ts", + "source_location": "L60", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_removependingmerge", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "removependingmerge()" + }, + { + "label": "getAllPendingMerges()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/extensionMergeRetryBuffer.ts", + "source_location": "L65", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_getallpendingmerges", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "getallpendingmerges()" + }, + { + "label": "getPendingMergeCount()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/extensionMergeRetryBuffer.ts", + "source_location": "L70", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_getpendingmergecount", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "getpendingmergecount()" + }, + { + "label": "clearPendingMergeBuffer()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/extensionMergeRetryBuffer.ts", + "source_location": "L75", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_clearpendingmergebuffer", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "clearpendingmergebuffer()" + }, + { + "label": "RFC-3339", + "file_type": "concept", + "source_file": "apps/electron-vite-project/electron/main/email/extensionMergeRetryBuffer.ts", + "source_location": "L41", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_ts_docref_rfc_3339", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "rfc-3339" + }, + { + "label": "gateway.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "gateway.ts" + }, + { + "label": "generateId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_generateid", + "community": 48, + "community_name": "Email Domain", + "norm_label": "generateid()" + }, + { + "label": "EmailAccountsCredentialDecryptIssue", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L83", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailaccountscredentialdecryptissue", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "emailaccountscredentialdecryptissue" + }, + { + "label": "EmailAccountsPersistenceDiagnostics", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L89", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailaccountspersistencediagnostics", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "emailaccountspersistencediagnostics" + }, + { + "label": "normalizeNewAccountSyncWindowDays()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L115", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_normalizenewaccountsyncwindowdays", + "community": 48, + "community_name": "Email Domain", + "norm_label": "normalizenewaccountsyncwindowdays()" + }, + { + "label": "newAccountSyncBlock()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L125", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_newaccountsyncblock", + "community": 48, + "community_name": "Email Domain", + "norm_label": "newaccountsyncblock()" + }, + { + "label": "isDiskEncryptedPasswordFlag()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L137", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_isdiskencryptedpasswordflag", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "isdiskencryptedpasswordflag()" + }, + { + "label": "isImapSmtpPasswordStillSealedForDisk()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L145", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_isimapsmtppasswordstillsealedfordisk", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "isimapsmtppasswordstillsealedfordisk()" + }, + { + "label": "assertImapCredentialsUsableForConnect()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L155", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_assertimapcredentialsusableforconnect", + "community": 48, + "community_name": "Email Domain", + "norm_label": "assertimapcredentialsusableforconnect()" + }, + { + "label": "decryptImapSmtpPasswords()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L171", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_decryptimapsmtppasswords", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "decryptimapsmtppasswords()" + }, + { + "label": "mergeImapSmtpCredentials()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L282", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_mergeimapsmtpcredentials", + "community": 48, + "community_name": "Email Domain", + "norm_label": "mergeimapsmtpcredentials()" + }, + { + "label": "encryptImapSmtpPasswordsForDisk()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L287", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_encryptimapsmtppasswordsfordisk", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "encryptimapsmtppasswordsfordisk()" + }, + { + "label": "getAccountsPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L370", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_getaccountspath", + "community": 48, + "community_name": "Email Domain", + "norm_label": "getaccountspath()" + }, + { + "label": "logStartupPersistenceOnce()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L386", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_logstartuppersistenceonce", + "community": 48, + "community_name": "Email Domain", + "norm_label": "logstartuppersistenceonce()" + }, + { + "label": "getAccountsBackupPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L402", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_getaccountsbackuppath", + "community": 48, + "community_name": "Email Domain", + "norm_label": "getaccountsbackuppath()" + }, + { + "label": "backupAccountsFileIfExists()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L407", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_backupaccountsfileifexists", + "community": 48, + "community_name": "Email Domain", + "norm_label": "backupaccountsfileifexists()" + }, + { + "label": "loadAccounts()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L421", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_loadaccounts", + "community": 48, + "community_name": "Email Domain", + "norm_label": "loadaccounts()" + }, + { + "label": "recordLoadCredentialDecryptIssue()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L608", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_recordloadcredentialdecryptissue", + "community": 48, + "community_name": "Email Domain", + "norm_label": "recordloadcredentialdecryptissue()" + }, + { + "label": "isAccountIdPresentOnDisk()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L612", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_isaccountidpresentondisk", + "community": 48, + "community_name": "Email Domain", + "norm_label": "isaccountidpresentondisk()" + }, + { + "label": "persistEmailAccounts()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L629", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_persistemailaccounts", + "community": 48, + "community_name": "Email Domain", + "norm_label": "persistemailaccounts()" + }, + { + "label": "EmailGateway", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L814", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "community": 48, + "community_name": "Email Domain", + "norm_label": "emailgateway" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L819", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_constructor", + "community": 48, + "community_name": "Email Domain", + "norm_label": ".constructor()" + }, + { + "label": ".findExistingMailboxAccount()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L832", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_findexistingmailboxaccount", + "community": 48, + "community_name": "Email Domain", + "norm_label": ".findexistingmailboxaccount()" + }, + { + "label": ".collapseDuplicateMailboxRowsOnDisk()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L840", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_collapseduplicatemailboxrowsondisk", + "community": 48, + "community_name": "Email Domain", + "norm_label": ".collapseduplicatemailboxrowsondisk()" + }, + { + "label": ".listAccounts()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L898", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_listaccounts", + "community": 48, + "community_name": "Email Domain", + "norm_label": ".listaccounts()" + }, + { + "label": ".getPersistenceDiagnostics()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L922", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getpersistencediagnostics", + "community": 48, + "community_name": "Email Domain", + "norm_label": ".getpersistencediagnostics()" + }, + { + "label": ".getAccount()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L931", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getaccount", + "community": 48, + "community_name": "Email Domain", + "norm_label": ".getaccount()" + }, + { + "label": ".getAccountConfig()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L937", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getaccountconfig", + "community": 48, + "community_name": "Email Domain", + "norm_label": ".getaccountconfig()" + }, + { + "label": ".getProviderSync()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L946", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getprovidersync", + "community": 48, + "community_name": "Email Domain", + "norm_label": ".getprovidersync()" + }, + { + "label": ".addAccount()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L954", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_addaccount", + "community": 48, + "community_name": "Email Domain", + "norm_label": ".addaccount()" + }, + { + "label": ".registerReadOnlyAccount()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1001", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_registerreadonlyaccount", + "community": 48, + "community_name": "Email Domain", + "norm_label": ".registerreadonlyaccount()" + }, + { + "label": ".registerSendOnlyAccount()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1039", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_registersendonlyaccount", + "community": 48, + "community_name": "Email Domain", + "norm_label": ".registersendonlyaccount()" + }, + { + "label": ".updateAccount()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1073", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_updateaccount", + "community": 48, + "community_name": "Email Domain", + "norm_label": ".updateaccount()" + }, + { + "label": ".patchAccountSyncPreferences()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1122", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_patchaccountsyncpreferences", + "community": 48, + "community_name": "Email Domain", + "norm_label": ".patchaccountsyncpreferences()" + }, + { + "label": ".setProcessingPaused()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1134", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_setprocessingpaused", + "community": 48, + "community_name": "Email Domain", + "norm_label": ".setprocessingpaused()" + }, + { + "label": ".setDeleteFromProviderOnLocalDelete()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1162", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_setdeletefromprovideronlocaldelete", + "community": 48, + "community_name": "Email Domain", + "norm_label": ".setdeletefromprovideronlocaldelete()" + }, + { + "label": ".deleteAccount()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1192", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_deleteaccount", + "community": 48, + "community_name": "Email Domain", + "norm_label": ".deleteaccount()" + }, + { + "label": ".testConnection()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1241", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_testconnection", + "community": 48, + "community_name": "Email Domain", + "norm_label": ".testconnection()" + }, + { + "label": ".getImapReconnectHints()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1313", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getimapreconnecthints", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": ".getimapreconnecthints()" + }, + { + "label": ".updateImapCredentials()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1350", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_updateimapcredentials", + "community": 48, + "community_name": "Email Domain", + "norm_label": ".updateimapcredentials()" + }, + { + "label": ".listMessages()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1410", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_listmessages", + "community": 48, + "community_name": "Email Domain", + "norm_label": ".listmessages()" + }, + { + "label": ".getMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1482", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getmessage", + "community": 48, + "community_name": "Email Domain", + "norm_label": ".getmessage()" + }, + { + "label": ".markAsRead()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1508", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_markasread", + "community": 48, + "community_name": "Email Domain", + "norm_label": ".markasread()" + }, + { + "label": ".markAsUnread()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1514", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_markasunread", + "community": 48, + "community_name": "Email Domain", + "norm_label": ".markasunread()" + }, + { + "label": ".flagMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1520", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_flagmessage", + "community": 48, + "community_name": "Email Domain", + "norm_label": ".flagmessage()" + }, + { + "label": ".deleteMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1526", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_deletemessage", + "community": 48, + "community_name": "Email Domain", + "norm_label": ".deletemessage()" + }, + { + "label": ".applyOrchestratorRemoteOperation()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1544", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_applyorchestratorremoteoperation", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": ".applyorchestratorremoteoperation()" + }, + { + "label": ".ensureConnectedForOrchestratorOperation()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1576", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_ensureconnectedfororchestratoroperation", + "community": 48, + "community_name": "Email Domain", + "norm_label": ".ensureconnectedfororchestratoroperation()" + }, + { + "label": ".forceReconnect()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1633", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_forcereconnect", + "community": 48, + "community_name": "Email Domain", + "norm_label": ".forcereconnect()" + }, + { + "label": ".isProviderSessionConnected()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1656", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_isprovidersessionconnected", + "community": 48, + "community_name": "Email Domain", + "norm_label": ".isprovidersessionconnected()" + }, + { + "label": ".pingImapSessionWithListFolders()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1666", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_pingimapsessionwithlistfolders", + "community": 48, + "community_name": "Email Domain", + "norm_label": ".pingimapsessionwithlistfolders()" + }, + { + "label": ".clearOrchestratorTransientAccountError()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1684", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_clearorchestratortransientaccounterror", + "community": 48, + "community_name": "Email Domain", + "norm_label": ".clearorchestratortransientaccounterror()" + }, + { + "label": ".listAttachments()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1710", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_listattachments", + "community": 48, + "community_name": "Email Domain", + "norm_label": ".listattachments()" + }, + { + "label": ".fetchAttachmentBuffer()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1751", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_fetchattachmentbuffer", + "community": 48, + "community_name": "Email Domain", + "norm_label": ".fetchattachmentbuffer()" + }, + { + "label": ".extractAttachmentText()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1776", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_extractattachmenttext", + "community": 48, + "community_name": "Email Domain", + "norm_label": ".extractattachmenttext()" + }, + { + "label": ".sendReply()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1881", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_sendreply", + "community": 48, + "community_name": "Email Domain", + "norm_label": ".sendreply()" + }, + { + "label": ".sendEmail()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1907", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_sendemail", + "community": 48, + "community_name": "Email Domain", + "norm_label": ".sendemail()" + }, + { + "label": ".syncAccount()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1978", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_syncaccount", + "community": 48, + "community_name": "Email Domain", + "norm_label": ".syncaccount()" + }, + { + "label": ".getSyncStatus()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2048", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getsyncstatus", + "community": 48, + "community_name": "Email Domain", + "norm_label": ".getsyncstatus()" + }, + { + "label": ".getOAuthUrl()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2063", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getoauthurl", + "community": 48, + "community_name": "Email Domain", + "norm_label": ".getoauthurl()" + }, + { + "label": ".handleOAuthCallback()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2068", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_handleoauthcallback", + "community": 48, + "community_name": "Email Domain", + "norm_label": ".handleoauthcallback()" + }, + { + "label": ".setGmailOAuthCredentials()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2079", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_setgmailoauthcredentials", + "community": 48, + "community_name": "Email Domain", + "norm_label": ".setgmailoauthcredentials()" + }, + { + "label": ".connectRoleScopedOAuthAccount()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2087", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectrolescopedoauthaccount", + "community": 48, + "community_name": "Email Domain", + "norm_label": ".connectrolescopedoauthaccount()" + }, + { + "label": ".connectGmailAccount()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2168", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectgmailaccount", + "community": 48, + "community_name": "Email Domain", + "norm_label": ".connectgmailaccount()" + }, + { + "label": ".connectOutlookAccount()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2267", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectoutlookaccount", + "community": 48, + "community_name": "Email Domain", + "norm_label": ".connectoutlookaccount()" + }, + { + "label": ".connectZohoAccount()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2318", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectzohoaccount", + "community": 48, + "community_name": "Email Domain", + "norm_label": ".connectzohoaccount()" + }, + { + "label": ".setOutlookOAuthCredentials()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2360", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_setoutlookoauthcredentials", + "community": 48, + "community_name": "Email Domain", + "norm_label": ".setoutlookoauthcredentials()" + }, + { + "label": ".setZohoOAuthCredentials()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2365", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_setzohooauthcredentials", + "community": 105, + "community_name": "Email Providers #105", + "norm_label": ".setzohooauthcredentials()" + }, + { + "label": ".connectImapAccount()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2377", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectimapaccount", + "community": 48, + "community_name": "Email Domain", + "norm_label": ".connectimapaccount()" + }, + { + "label": ".connectCustomImapSmtpAccount()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2442", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectcustomimapsmtpaccount", + "community": 48, + "community_name": "Email Domain", + "norm_label": ".connectcustomimapsmtpaccount()" + }, + { + "label": ".validateImapLifecycleRemote()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2569", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_validateimaplifecycleremote", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": ".validateimaplifecycleremote()" + }, + { + "label": ".resolveImapPullFoldersExpanded()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2607", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_resolveimappullfoldersexpanded", + "community": 48, + "community_name": "Email Domain", + "norm_label": ".resolveimappullfoldersexpanded()" + }, + { + "label": ".ensureImapLifecycleFoldersForDrain()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2641", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_ensureimaplifecyclefoldersfordrain", + "community": 48, + "community_name": "Email Domain", + "norm_label": ".ensureimaplifecyclefoldersfordrain()" + }, + { + "label": ".verifyImapRemoteFolders()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2667", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_verifyimapremotefolders", + "community": 48, + "community_name": "Email Domain", + "norm_label": ".verifyimapremotefolders()" + }, + { + "label": ".findAccount()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2700", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_findaccount", + "community": 48, + "community_name": "Email Domain", + "norm_label": ".findaccount()" + }, + { + "label": ".getProvider()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2708", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getprovider", + "community": 48, + "community_name": "Email Domain", + "norm_label": ".getprovider()" + }, + { + "label": ".getConnectedProvider()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2731", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getconnectedprovider", + "community": 48, + "community_name": "Email Domain", + "norm_label": ".getconnectedprovider()" + }, + { + "label": ".buildAccountInfo()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2821", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_buildaccountinfo", + "community": 48, + "community_name": "Email Domain", + "norm_label": ".buildaccountinfo()" + }, + { + "label": ".toAccountInfo()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2837", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_toaccountinfo", + "community": 48, + "community_name": "Email Domain", + "norm_label": ".toaccountinfo()" + }, + { + "label": ".sanitizeMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2877", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_sanitizemessage", + "community": 148, + "community_name": "Email #148", + "norm_label": ".sanitizemessage()" + }, + { + "label": ".sanitizeMessageDetail()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2919", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_sanitizemessagedetail", + "community": 148, + "community_name": "Email #148", + "norm_label": ".sanitizemessagedetail()" + }, + { + "label": ".formatDate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2955", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_formatdate", + "community": 148, + "community_name": "Email #148", + "norm_label": ".formatdate()" + }, + { + "label": "gatewayOrphanAccountError.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gatewayOrphanAccountError.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gatewayorphanaccounterror", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "gatewayorphanaccounterror.ts" + }, + { + "label": "isGatewayOrphanAccountError()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gatewayOrphanAccountError.ts", + "source_location": "L6", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gatewayorphanaccounterror_isgatewayorphanaccounterror", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "isgatewayorphanaccounterror()" + }, + { + "label": "gmailCredentialsCheckPayload.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gmailCredentialsCheckPayload.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gmailcredentialscheckpayload", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "gmailcredentialscheckpayload.ts" + }, + { + "label": "GmailCredentialsCheckApiPayload", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gmailCredentialsCheckPayload.ts", + "source_location": "L16", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gmailcredentialscheckpayload_gmailcredentialscheckapipayload", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "gmailcredentialscheckapipayload" + }, + { + "label": "buildGmailCredentialsCheckPayload()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gmailCredentialsCheckPayload.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gmailcredentialscheckpayload_buildgmailcredentialscheckpayload", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "buildgmailcredentialscheckpayload()" + }, + { + "label": "gmailOAuthConnectDebug.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthConnectDebug.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gmailoauthconnectdebug", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "gmailoauthconnectdebug.ts" + }, + { + "label": "GmailOauthConnectDebugStep", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthConnectDebug.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gmailoauthconnectdebug_gmailoauthconnectdebugstep", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "gmailoauthconnectdebugstep" + }, + { + "label": "GmailOauthConnectDebug", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthConnectDebug.ts", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gmailoauthconnectdebug_gmailoauthconnectdebug", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "gmailoauthconnectdebug" + }, + { + "label": "attachOauthDebug()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthConnectDebug.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gmailoauthconnectdebug_attachoauthdebug", + "community": 30, + "community_name": "Email Providers", + "norm_label": "attachoauthdebug()" + }, + { + "label": "oauthDebugFromUnknown()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthConnectDebug.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gmailoauthconnectdebug_oauthdebugfromunknown", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "oauthdebugfromunknown()" + }, + { + "label": "pickOauthDebugFromError()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthConnectDebug.ts", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gmailoauthconnectdebug_pickoauthdebugfromerror", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "pickoauthdebugfromerror()" + }, + { + "label": "gmailOAuthResolve.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthResolve.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gmailoauthresolve_test", + "community": 585, + "community_name": "Email #585", + "norm_label": "gmailoauthresolve.test.ts" + }, + { + "label": "gmailOAuthResolve.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthResolve.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gmailoauthresolve", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "gmailoauthresolve.ts" + }, + { + "label": "GmailAuthMode", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthResolve.ts", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gmailoauthresolve_gmailauthmode", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "gmailauthmode" + }, + { + "label": "GmailOAuthCredentialSource", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthResolve.ts", + "source_location": "L25", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gmailoauthresolve_gmailoauthcredentialsource", + "community": 48, + "community_name": "Email Domain", + "norm_label": "gmailoauthcredentialsource" + }, + { + "label": "GmailOAuthResolutionTag", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthResolve.ts", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gmailoauthresolve_gmailoauthresolutiontag", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "gmailoauthresolutiontag" + }, + { + "label": "ResolvedGmailOAuth", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthResolve.ts", + "source_location": "L30", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gmailoauthresolve_resolvedgmailoauth", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "resolvedgmailoauth" + }, + { + "label": "isBuiltinGmailOAuthAvailable()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthResolve.ts", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gmailoauthresolve_isbuiltingmailoauthavailable", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "isbuiltingmailoauthavailable()" + }, + { + "label": "defaultGmailOAuthCredentialSource()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthResolve.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gmailoauthresolve_defaultgmailoauthcredentialsource", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "defaultgmailoauthcredentialsource()" + }, + { + "label": "assertBuiltinMetaConfigured()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthResolve.ts", + "source_location": "L57", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gmailoauthresolve_assertbuiltinmetaconfigured", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "assertbuiltinmetaconfigured()" + }, + { + "label": "logGmailOAuthResolvedConfig()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthResolve.ts", + "source_location": "L67", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gmailoauthresolve_loggmailoauthresolvedconfig", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "loggmailoauthresolvedconfig()" + }, + { + "label": "resolveGmailOAuthForConnect()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthResolve.ts", + "source_location": "L83", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gmailoauthresolve_resolvegmailoauthforconnect", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "resolvegmailoauthforconnect()" + }, + { + "label": "resolveGmailOAuthClientIdForRefresh()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthResolve.ts", + "source_location": "L213", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gmailoauthresolve_resolvegmailoauthclientidforrefresh", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "resolvegmailoauthclientidforrefresh()" + }, + { + "label": "gmailOAuthRuntimeProof.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthRuntimeProof.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gmailoauthruntimeproof", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "gmailoauthruntimeproof.ts" + }, + { + "label": "GmailStandardConnectRuntimeProof", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthRuntimeProof.ts", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gmailoauthruntimeproof_gmailstandardconnectruntimeproof", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "gmailstandardconnectruntimeproof" + }, + { + "label": "getLastGmailStandardConnectRuntimeProof()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthRuntimeProof.ts", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gmailoauthruntimeproof_getlastgmailstandardconnectruntimeproof", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "getlastgmailstandardconnectruntimeproof()" + }, + { + "label": "setLastGmailStandardConnectRuntimeProof()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthRuntimeProof.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gmailoauthruntimeproof_setlastgmailstandardconnectruntimeproof", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "setlastgmailstandardconnectruntimeproof()" + }, + { + "label": "clearLastGmailStandardConnectRuntimeProof()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthRuntimeProof.ts", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_gmailoauthruntimeproof_clearlastgmailstandardconnectruntimeproof", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "clearlastgmailstandardconnectruntimeproof()" + }, + { + "label": "googleOAuthBuiltin.packaged.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.packaged.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_packaged_test", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "googleoauthbuiltin.packaged.test.ts" + }, + { + "label": "oauthTestState", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.packaged.test.ts", + "source_location": "L13", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_packaged_test_oauthteststate", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "oauthteststate" + }, + { + "label": "NOTE: `vi.mock('path', ...)` below is required to bypass the vite-electron-\u2026", + "file_type": "rationale", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.packaged.test.ts", + "source_location": "L5", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_packaged_test_rationale_5", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "note: `vi.mock('path', ...)` below is required to bypass the vite-electron-..." + }, + { + "label": "googleOAuthBuiltin.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_test", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "googleoauthbuiltin.test.ts" + }, + { + "label": "googleOAuthBuiltin.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "googleoauthbuiltin.ts" + }, + { + "label": "ENV_KEYS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L41", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_env_keys", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "env_keys" + }, + { + "label": "ENV_SECRET_KEYS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L43", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_env_secret_keys", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "env_secret_keys" + }, + { + "label": "BuiltinOAuthClientSourceKind", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L52", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_builtinoauthclientsourcekind", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "builtinoauthclientsourcekind" + }, + { + "label": "BuiltinGoogleOAuthClientResolution", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L61", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_builtingoogleoauthclientresolution", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "builtingoogleoauthclientresolution" + }, + { + "label": "isPackagedProductionGmailStandardConnect()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L80", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_ispackagedproductiongmailstandardconnect", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "ispackagedproductiongmailstandardconnect()" + }, + { + "label": "getGoogleOauthClientIdEnvVarNamesPresent()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L89", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_getgoogleoauthclientidenvvarnamespresent", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "getgoogleoauthclientidenvvarnamespresent()" + }, + { + "label": "getGoogleOauthClientSecretEnvVarNamesPresent()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L94", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_getgoogleoauthclientsecretenvvarnamespresent", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "getgoogleoauthclientsecretenvvarnamespresent()" + }, + { + "label": "attachIgnoredEnvNames()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L98", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_attachignoredenvnames", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "attachignoredenvnames()" + }, + { + "label": "resolvePackagedStandardConnectNoEnvFirst()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L107", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolvepackagedstandardconnectnoenvfirst", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "resolvepackagedstandardconnectnoenvfirst()" + }, + { + "label": "readFirstNonCommentLine()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L117", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_readfirstnoncommentline", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "readfirstnoncommentline()" + }, + { + "label": "normalizeGoogleOAuthClientId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L139", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_normalizegoogleoauthclientid", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "normalizegoogleoauthclientid()" + }, + { + "label": "isPlaceholderGoogleOAuthClientId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L160", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_isplaceholdergoogleoauthclientid", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "isplaceholdergoogleoauthclientid()" + }, + { + "label": "getBuildTimeGoogleOAuthClientId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L164", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_getbuildtimegoogleoauthclientid", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "getbuildtimegoogleoauthclientid()" + }, + { + "label": "normalizeGoogleOAuthClientSecret()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L176", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_normalizegoogleoauthclientsecret", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "normalizegoogleoauthclientsecret()" + }, + { + "label": "getBuildTimeGoogleOAuthClientSecret()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L198", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_getbuildtimegoogleoauthclientsecret", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "getbuildtimegoogleoauthclientsecret()" + }, + { + "label": "resolveBuiltinGoogleOAuthClientSecret()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L210", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolvebuiltingoogleoauthclientsecret", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "resolvebuiltingoogleoauthclientsecret()" + }, + { + "label": "isEmailDeveloperModeEnabled()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L310", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_isemaildevelopermodeenabled", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "isemaildevelopermodeenabled()" + }, + { + "label": "resolutionFromEnv()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L320", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolutionfromenv", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "resolutionfromenv()" + }, + { + "label": "resolutionFromBuildTime()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L343", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolutionfrombuildtime", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "resolutionfrombuildtime()" + }, + { + "label": "tryPackagedResourceFile()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L357", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_trypackagedresourcefile", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "trypackagedresourcefile()" + }, + { + "label": "tryDevResourceFiles()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L377", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_trydevresourcefiles", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "trydevresourcefiles()" + }, + { + "label": "trySidecar()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L412", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_trysidecar", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "trysidecar()" + }, + { + "label": "ResolveBuiltinGoogleOAuthOptions", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L431", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolvebuiltingoogleoauthoptions", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "resolvebuiltingoogleoauthoptions" + }, + { + "label": "resolveBuiltinGoogleOAuthClientWithMeta()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L442", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolvebuiltingoogleoauthclientwithmeta", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "resolvebuiltingoogleoauthclientwithmeta()" + }, + { + "label": "resolveBuiltinGoogleOAuthClientId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L473", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolvebuiltingoogleoauthclientid", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "resolvebuiltingoogleoauthclientid()" + }, + { + "label": "getBuiltinGmailOAuthClientId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L482", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_getbuiltingmailoauthclientid", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "getbuiltingmailoauthclientid()" + }, + { + "label": "isBuiltinGmailOAuthConfigured()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L487", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_isbuiltingmailoauthconfigured", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "isbuiltingmailoauthconfigured()" + }, + { + "label": "isBuiltinStandardConnectReady()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L495", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_isbuiltinstandardconnectready", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "isbuiltinstandardconnectready()" + }, + { + "label": "GmailBuiltinProviderStatus", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L501", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_gmailbuiltinproviderstatus", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "gmailbuiltinproviderstatus" + }, + { + "label": "getGmailBuiltinProviderStatus()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L503", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_getgmailbuiltinproviderstatus", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "getgmailbuiltinproviderstatus()" + }, + { + "label": "getStandardConnectBuiltinClientDiagnostics()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L524", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_getstandardconnectbuiltinclientdiagnostics", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "getstandardconnectbuiltinclientdiagnostics()" + }, + { + "label": "getPackagedResourceGoogleOAuthClientId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L541", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_getpackagedresourcegoogleoauthclientid", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "getpackagedresourcegoogleoauthclientid()" + }, + { + "label": "BUILTIN_GMAIL_OAUTH_SECRET_MISSING_WARN", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L551", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_builtin_gmail_oauth_secret_missing_warn", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "builtin_gmail_oauth_secret_missing_warn" + }, + { + "label": "warnOnceGmailOAuthBuiltinSecretMissing()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L558", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_warnoncegmailoauthbuiltinsecretmissing", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "warnoncegmailoauthbuiltinsecretmissing()" + }, + { + "label": "bundledSecretResourceIsValid()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L564", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_bundledsecretresourceisvalid", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "bundledsecretresourceisvalid()" + }, + { + "label": "warnOnceIfBuiltinGmailOAuthClientSecretMissingOrPlaceholder()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L578", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_warnonceifbuiltingmailoauthclientsecretmissingorplaceholder", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "warnonceifbuiltingmailoauthclientsecretmissingorplaceholder()" + }, + { + "label": "GmailOAuthPackagedStartupDiagnostics", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L610", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_gmailoauthpackagedstartupdiagnostics", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "gmailoauthpackagedstartupdiagnostics" + }, + { + "label": "getGmailOAuthPackagedStartupDiagnostics()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L623", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_getgmailoauthpackagedstartupdiagnostics", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "getgmailoauthpackagedstartupdiagnostics()" + }, + { + "label": "assertBuiltinPublicClientMatchesShippedResource()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L674", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_assertbuiltinpublicclientmatchesshippedresource", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "assertbuiltinpublicclientmatchesshippedresource()" + }, + { + "label": "oauthClientIdFingerprint()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L698", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_oauthclientidfingerprint", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "oauthclientidfingerprint()" + }, + { + "label": "OAUTH_DIAG_WHITELIST_KEYS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L706", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_oauth_diag_whitelist_keys", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "oauth_diag_whitelist_keys" + }, + { + "label": "logOAuthDiagnostic()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L761", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_logoauthdiagnostic", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "logoauthdiagnostic()" + }, + { + "label": "imapLifecycleReconcile.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/imapLifecycleReconcile.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_imaplifecyclereconcile", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "imaplifecyclereconcile.ts" + }, + { + "label": "ImapLifecycleReconcileResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/imapLifecycleReconcile.ts", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_imaplifecyclereconcile_imaplifecyclereconcileresult", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "imaplifecyclereconcileresult" + }, + { + "label": "reconcileImapLifecycleFromLocalState()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/imapLifecycleReconcile.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_imaplifecyclereconcile_reconcileimaplifecyclefromlocalstate", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "reconcileimaplifecyclefromlocalstate()" + }, + { + "label": "imapSyncTelemetry.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/imapSyncTelemetry.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_imapsynctelemetry", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "imapsynctelemetry.ts" + }, + { + "label": "IMAP_SYNC_FOLDER_EXPAND_MS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/imapSyncTelemetry.ts", + "source_location": "L7", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_imapsynctelemetry_imap_sync_folder_expand_ms", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "imap_sync_folder_expand_ms" + }, + { + "label": "IMAP_SYNC_LIST_MESSAGES_MS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/imapSyncTelemetry.ts", + "source_location": "L13", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_imapsynctelemetry_imap_sync_list_messages_ms", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "imap_sync_list_messages_ms" + }, + { + "label": "IMAP_PROVIDER_FETCH_MESSAGES_MS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/imapSyncTelemetry.ts", + "source_location": "L18", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_imapsynctelemetry_imap_provider_fetch_messages_ms", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": "imap_provider_fetch_messages_ms" + }, + { + "label": "IMAP_FETCH_RELIABLE_MS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/imapSyncTelemetry.ts", + "source_location": "L21", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_imapsynctelemetry_imap_fetch_reliable_ms", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "imap_fetch_reliable_ms" + }, + { + "label": "ImapSyncProgressSnapshot", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/imapSyncTelemetry.ts", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_imapsynctelemetry_imapsyncprogresssnapshot", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "imapsyncprogresssnapshot" + }, + { + "label": "setImapSyncProgress()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/imapSyncTelemetry.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_imapsynctelemetry_setimapsyncprogress", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "setimapsyncprogress()" + }, + { + "label": "clearImapSyncProgress()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/imapSyncTelemetry.ts", + "source_location": "L51", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_imapsynctelemetry_clearimapsyncprogress", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "clearimapsyncprogress()" + }, + { + "label": "getImapSyncProgressSnapshot()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/imapSyncTelemetry.ts", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_imapsynctelemetry_getimapsyncprogresssnapshot", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "getimapsyncprogresssnapshot()" + }, + { + "label": "formatImapSyncPhaseLine()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/imapSyncTelemetry.ts", + "source_location": "L60", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_imapsynctelemetry_formatimapsyncphaseline", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "formatimapsyncphaseline()" + }, + { + "label": "inboxAiErrorMapping.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxaierrormapping", + "community": 183, + "community_name": "Email LLM Internal Inference", + "norm_label": "inboxaierrormapping.ts" + }, + { + "label": "InboxAiErrorCode", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_inboxaierrorcode", + "community": 183, + "community_name": "Email LLM Internal Inference", + "norm_label": "inboxaierrorcode" + }, + { + "label": "InboxAiErrorDebug", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L31", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_inboxaierrordebug", + "community": 183, + "community_name": "Email LLM Internal Inference", + "norm_label": "inboxaierrordebug" + }, + { + "label": "inboxAiDevDebugEnabled()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_inboxaidevdebugenabled", + "community": 183, + "community_name": "Email LLM Internal Inference", + "norm_label": "inboxaidevdebugenabled()" + }, + { + "label": "REMOTE_OLLAMA_CODES", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L47", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_remote_ollama_codes", + "community": 183, + "community_name": "Email LLM Internal Inference", + "norm_label": "remote_ollama_codes" + }, + { + "label": "BEAP_ENDPOINT_CODES", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L57", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_beap_endpoint_codes", + "community": 183, + "community_name": "Email LLM Internal Inference", + "norm_label": "beap_endpoint_codes" + }, + { + "label": "errMsg()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L66", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_errmsg", + "community": 183, + "community_name": "Email LLM Internal Inference", + "norm_label": "errmsg()" + }, + { + "label": "failureCodeFrom()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L70", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_failurecodefrom", + "community": 183, + "community_name": "Email LLM Internal Inference", + "norm_label": "failurecodefrom()" + }, + { + "label": "looksLikeLocalUrl()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L76", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_lookslikelocalurl", + "community": 183, + "community_name": "Email LLM Internal Inference", + "norm_label": "lookslikelocalurl()" + }, + { + "label": "transportFailureMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L81", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_transportfailuremessage", + "community": 183, + "community_name": "Email LLM Internal Inference", + "norm_label": "transportfailuremessage()" + }, + { + "label": "legacyAnalyzeErrorField()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L88", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_legacyanalyzeerrorfield", + "community": 183, + "community_name": "Email LLM Internal Inference", + "norm_label": "legacyanalyzeerrorfield()" + }, + { + "label": "INBOX_CONTEXT_OVERFLOW_USER_MESSAGE", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L96", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_inbox_context_overflow_user_message", + "community": 183, + "community_name": "Email LLM Internal Inference", + "norm_label": "inbox_context_overflow_user_message" + }, + { + "label": "inboxAiUserMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L99", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_inboxaiusermessage", + "community": 183, + "community_name": "Email LLM Internal Inference", + "norm_label": "inboxaiusermessage()" + }, + { + "label": "classifyInboxAiError()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L109", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_classifyinboxaierror", + "community": 183, + "community_name": "Email LLM Internal Inference", + "norm_label": "classifyinboxaierror()" + }, + { + "label": "buildInboxAiAnalyzeErrorPayload()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L220", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_buildinboxaianalyzeerrorpayload", + "community": 183, + "community_name": "Email LLM Internal Inference", + "norm_label": "buildinboxaianalyzeerrorpayload()" + }, + { + "label": "buildInboxAiDraftIpcFailure()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L254", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_buildinboxaidraftipcfailure", + "community": 183, + "community_name": "Email LLM Internal Inference", + "norm_label": "buildinboxaidraftipcfailure()" + }, + { + "label": "inboxAiTaskDedup.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "inboxaitaskdedup.ts" + }, + { + "label": "InboxAiStreamInvokeOpts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_inboxaistreaminvokeopts", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "inboxaistreaminvokeopts" + }, + { + "label": "buildInboxAiTaskKey()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_buildinboxaitaskkey", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "buildinboxaitaskkey()" + }, + { + "label": "syncInboxAiSelectionForTaskKey()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_syncinboxaiselectionfortaskkey", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "syncinboxaiselectionfortaskkey()" + }, + { + "label": "InflightEntry", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L30", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_inflightentry", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "inflightentry" + }, + { + "label": "inboxAiTaskInflight", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L39", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_inboxaitaskinflight", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "inboxaitaskinflight" + }, + { + "label": "localOllamaBlocked()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L59", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_localollamablocked", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "localollamablocked()" + }, + { + "label": "recordLocalOllamaOutcome()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L89", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_recordlocalollamaoutcome", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "recordlocalollamaoutcome()" + }, + { + "label": "AnalysisStreamReplayState", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L104", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_analysisstreamreplaystate", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "analysisstreamreplaystate" + }, + { + "label": "analysisStreamReplayByTaskKey", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L112", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_analysisstreamreplaybytaskkey", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "analysisstreamreplaybytaskkey" + }, + { + "label": "analyzeStreamAbortByMessageId", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L114", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_analyzestreamabortbymessageid", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "analyzestreamabortbymessageid" + }, + { + "label": "abortAnalyzeStreamForMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L116", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_abortanalyzestreamformessage", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "abortanalyzestreamformessage()" + }, + { + "label": "draftReplyGenerationByMessageId", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L128", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_draftreplygenerationbymessageid", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "draftreplygenerationbymessageid" + }, + { + "label": "bumpDraftReplySupersedeGeneration()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L130", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_bumpdraftreplysupersedegeneration", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "bumpdraftreplysupersedegeneration()" + }, + { + "label": "getDraftReplyGeneration()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L134", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_getdraftreplygeneration", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "getdraftreplygeneration()" + }, + { + "label": "removeInflightKeysWithPrefix()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L138", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_removeinflightkeyswithprefix", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "removeinflightkeyswithprefix()" + }, + { + "label": "clearAnalysisStreamReplayPrefix()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L144", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_clearanalysisstreamreplayprefix", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "clearanalysisstreamreplayprefix()" + }, + { + "label": "initAnalysisStreamReplay()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L150", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_initanalysisstreamreplay", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "initanalysisstreamreplay()" + }, + { + "label": "appendAnalysisStreamReplayChunk()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L159", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_appendanalysisstreamreplaychunk", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "appendanalysisstreamreplaychunk()" + }, + { + "label": "markAnalysisStreamReplayDone()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L170", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_markanalysisstreamreplaydone", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "markanalysisstreamreplaydone()" + }, + { + "label": "markAnalysisStreamReplayError()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L175", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_markanalysisstreamreplayerror", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "markanalysisstreamreplayerror()" + }, + { + "label": "replayAnalysisStreamState()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L180", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_replayanalysisstreamstate", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "replayanalysisstreamstate()" + }, + { + "label": "tryAttachManualInboxAnalysisToRunningAuto()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L211", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_tryattachmanualinboxanalysistorunningauto", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "tryattachmanualinboxanalysistorunningauto()" + }, + { + "label": "waitForInboxAiTask()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L232", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_waitforinboxaitask", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "waitforinboxaitask()" + }, + { + "label": "classifyTerminalState()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L250", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_classifyterminalstate", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "classifyterminalstate()" + }, + { + "label": "logInboxAiTaskTerminal()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L257", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_loginboxaitaskterminal", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "loginboxaitaskterminal()" + }, + { + "label": "isDraftReplyRunStale()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L264", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_isdraftreplyrunstale", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "isdraftreplyrunstale()" + }, + { + "label": "runInboxAiTaskWithDedup()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L273", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_runinboxaitaskwithdedup", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "runinboxaitaskwithdedup()" + }, + { + "label": "inboxLifecycleEngine.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLifecycleEngine.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxlifecycleengine", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "inboxlifecycleengine.ts" + }, + { + "label": "PENDING_REVIEW_RETENTION_MS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLifecycleEngine.ts", + "source_location": "L27", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxlifecycleengine_pending_review_retention_ms", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "pending_review_retention_ms" + }, + { + "label": "PENDING_DELETE_RETENTION_MS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLifecycleEngine.ts", + "source_location": "L28", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxlifecycleengine_pending_delete_retention_ms", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "pending_delete_retention_ms" + }, + { + "label": "LifecycleTickResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLifecycleEngine.ts", + "source_location": "L30", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxlifecycleengine_lifecycletickresult", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "lifecycletickresult" + }, + { + "label": "utcNowIso()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLifecycleEngine.ts", + "source_location": "L46", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxlifecycleengine_utcnowiso", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "utcnowiso()" + }, + { + "label": "reviewExpiryCutoffIso()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLifecycleEngine.ts", + "source_location": "L50", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxlifecycleengine_reviewexpirycutoffiso", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "reviewexpirycutoffiso()" + }, + { + "label": "pendingDeleteExpiryCutoffIso()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLifecycleEngine.ts", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxlifecycleengine_pendingdeleteexpirycutoffiso", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "pendingdeleteexpirycutoffiso()" + }, + { + "label": "runInboxLifecycleTick()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLifecycleEngine.ts", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxlifecycleengine_runinboxlifecycletick", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "runinboxlifecycletick()" + }, + { + "label": "inboxLlmChat.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxllmchat", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "inboxllmchat.ts" + }, + { + "label": "INBOX_LLM_TIMEOUT_MS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L27", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxllmchat_inbox_llm_timeout_ms", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "inbox_llm_timeout_ms" + }, + { + "label": "INBOX_LLM_LOCAL_TIMEOUT_MS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L35", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxllmchat_inbox_llm_local_timeout_ms", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "inbox_llm_local_timeout_ms" + }, + { + "label": "INBOX_LLM_MAX_OUTPUT_TOKENS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L42", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxllmchat_inbox_llm_max_output_tokens", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "inbox_llm_max_output_tokens" + }, + { + "label": "isAbortError()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxllmchat_isaborterror", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "isaborterror()" + }, + { + "label": "InboxLlmTimeoutError", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L61", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxllmchat_inboxllmtimeouterror", + "community": 120, + "community_name": "Internal Inference LLM Email", + "norm_label": "inboxllmtimeouterror" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L62", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxllmchat_inboxllmtimeouterror_constructor", + "community": 120, + "community_name": "Internal Inference LLM Email", + "norm_label": ".constructor()" + }, + { + "label": "VISION_TO_RAG", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L68", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxllmchat_vision_to_rag", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "vision_to_rag" + }, + { + "label": "firstCloudRagSettings()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L75", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxllmchat_firstcloudragsettings", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "firstcloudragsettings()" + }, + { + "label": "resolveInboxLlmSettings()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L85", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxllmchat_resolveinboxllmsettings", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "resolveinboxllmsettings()" + }, + { + "label": "visionForRagSettings()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L115", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxllmchat_visionforragsettings", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "visionforragsettings()" + }, + { + "label": "isLlmAvailable()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L131", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxllmchat_isllmavailable", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "isllmavailable()" + }, + { + "label": "inboxSupportsOllamaStream()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L145", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxllmchat_inboxsupportsollamastream", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "inboxsupportsollamastream()" + }, + { + "label": "ResolvedLlmContext", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L164", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxllmchat_resolvedllmcontext", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "resolvedllmcontext" + }, + { + "label": "preResolveInboxLlm()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L183", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxllmchat_preresolveinboxllm", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "preresolveinboxllm()" + }, + { + "label": "InboxLlmChatParams", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L204", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxllmchat_inboxllmchatparams", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "inboxllmchatparams" + }, + { + "label": "inboxLlmChat()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L228", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxllmchat_inboxllmchat", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "inboxllmchat()" + }, + { + "label": "inboxOllamaChatStreamSandbox.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "inboxollamachatstreamsandbox.ts" + }, + { + "label": "InboxOllamaGpuChatGate", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox_inboxollamagpuchatgate", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "inboxollamagpuchatgate" + }, + { + "label": "InboxOllamaStreamFetchDiag", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts", + "source_location": "L32", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox_inboxollamastreamfetchdiag", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "inboxollamastreamfetchdiag" + }, + { + "label": "mergeAbortSignals()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox_mergeabortsignals", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "mergeabortsignals()" + }, + { + "label": "logStreamFetchErr()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts", + "source_location": "L66", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox_logstreamfetcherr", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "logstreamfetcherr()" + }, + { + "label": "logStreamEvent()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts", + "source_location": "L91", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox_logstreamevent", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "logstreamevent()" + }, + { + "label": "streamLocalLlmChatSseFromBaseUrl()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts", + "source_location": "L95", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox_streamlocalllmchatssefrombaseurl", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "streamlocalllmchatssefrombaseurl()" + }, + { + "label": "streamInboxOllamaAnalyzeWithSandboxRouting()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts", + "source_location": "L327", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox_streaminboxollamaanalyzewithsandboxrouting", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "streaminboxollamaanalyzewithsandboxrouting()" + }, + { + "label": "inboxOrchestratorRemoteQueue.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "inboxorchestratorremotequeue.ts" + }, + { + "label": "OrchestratorDrainProgressPayload", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L39", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_orchestratordrainprogresspayload", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "orchestratordrainprogresspayload" + }, + { + "label": "setOrchestratorDrainProgressReporter()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L48", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_setorchestratordrainprogressreporter", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "setorchestratordrainprogressreporter()" + }, + { + "label": "BATCH", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L56", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_batch", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "batch" + }, + { + "label": "isPermanentOrchestratorTerminalError()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L66", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_ispermanentorchestratorterminalerror", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "ispermanentorchestratorterminalerror()" + }, + { + "label": "isTransientOrchestratorRemoteConnectionError()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L82", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_istransientorchestratorremoteconnectionerror", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "istransientorchestratorremoteconnectionerror()" + }, + { + "label": "interRemoteOpDelayMs()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L99", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_interremoteopdelayms", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "interremoteopdelayms()" + }, + { + "label": "sleepMs()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L108", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_sleepms", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "sleepms()" + }, + { + "label": "RemoteLifecycleBucket", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L113", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_remotelifecyclebucket", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "remotelifecyclebucket" + }, + { + "label": "localRowToExpectedBucket()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L115", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_localrowtoexpectedbucket", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "localrowtoexpectedbucket()" + }, + { + "label": "formatLifecycleSkipReason()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L138", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_formatlifecycleskipreason", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "formatlifecycleskipreason()" + }, + { + "label": "observedRemoteBucketFromImapColumn()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L161", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_observedremotebucketfromimapcolumn", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "observedremotebucketfromimapcolumn()" + }, + { + "label": "bucketToTargetOp()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L204", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_buckettotargetop", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "buckettotargetop()" + }, + { + "label": "ClearStaleStmts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L212", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_clearstalestmts", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "clearstalestmts" + }, + { + "label": "prepareClearStaleLifecycleQueueOps()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L218", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_prepareclearstalelifecyclequeueops", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "prepareclearstalelifecyclequeueops()" + }, + { + "label": "clearStaleLifecycleQueueOpsExcept()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L234", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_clearstalelifecyclequeueopsexcept", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "clearstalelifecyclequeueopsexcept()" + }, + { + "label": "EnqueueOrchestratorRemoteResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L248", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_enqueueorchestratorremoteresult", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "enqueueorchestratorremoteresult" + }, + { + "label": "enqueueOrchestratorRemoteMutations()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L258", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_enqueueorchestratorremotemutations", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "enqueueorchestratorremotemutations()" + }, + { + "label": "ProcessOrchestratorRemoteBatchResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L396", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_processorchestratorremotebatchresult", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "processorchestratorremotebatchresult" + }, + { + "label": "processOrchestratorRemoteQueueBatch()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L407", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_processorchestratorremotequeuebatch", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "processorchestratorremotequeuebatch()" + }, + { + "label": "EnqueueUnmirroredClassifiedResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L784", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_enqueueunmirroredclassifiedresult", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "enqueueunmirroredclassifiedresult" + }, + { + "label": "enqueueUnmirroredClassifiedLifecycleMessages()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L794", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_enqueueunmirroredclassifiedlifecyclemessages", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "enqueueunmirroredclassifiedlifecyclemessages()" + }, + { + "label": "markOrphanPendingQueueRowsAsFailed()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L840", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_markorphanpendingqueuerowsasfailed", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "markorphanpendingqueuerowsasfailed()" + }, + { + "label": "purgeImapRemoteQueueRows()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L880", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_purgeimapremotequeuerows", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "purgeimapremotequeuerows()" + }, + { + "label": "ensureOrchestratorRemoteDrainWatchdog()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L901", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_ensureorchestratorremotedrainwatchdog", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "ensureorchestratorremotedrainwatchdog()" + }, + { + "label": "enqueueRemoteOpsForLocalLifecycleState()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L953", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_enqueueremoteopsforlocallifecyclestate", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "enqueueremoteopsforlocallifecyclestate()" + }, + { + "label": "EnqueueFullRemoteSyncResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1130", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_enqueuefullremotesyncresult", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "enqueuefullremotesyncresult" + }, + { + "label": "enqueueFullRemoteSync()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1140", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_enqueuefullremotesync", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "enqueuefullremotesync()" + }, + { + "label": "enqueueFullRemoteSyncForAccountsTouchingMessages()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1196", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_enqueuefullremotesyncforaccountstouchingmessages", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "enqueuefullremotesyncforaccountstouchingmessages()" + }, + { + "label": "DrainOrchestratorRemoteBoundedResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1220", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_drainorchestratorremoteboundedresult", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "drainorchestratorremoteboundedresult" + }, + { + "label": "DrainOrchestratorRemoteBoundedOptions", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1228", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_drainorchestratorremoteboundedoptions", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "drainorchestratorremoteboundedoptions" + }, + { + "label": "drainOrchestratorRemoteQueueBounded()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1242", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_drainorchestratorremotequeuebounded", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "drainorchestratorremotequeuebounded()" + }, + { + "label": "setSimpleOrchestratorRemoteDrainPrimary()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1317", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_setsimpleorchestratorremotedrainprimary", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "setsimpleorchestratorremotedrainprimary()" + }, + { + "label": "forceDrainRestart()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1333", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_forcedrainrestart", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "forcedrainrestart()" + }, + { + "label": "scheduleOrchestratorRemoteDrain()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1341", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_scheduleorchestratorremotedrain", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "scheduleorchestratorremotedrain()" + }, + { + "label": "resetFailedOrchestratorRemoteQueueRows()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1438", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_resetfailedorchestratorremotequeuerows", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "resetfailedorchestratorremotequeuerows()" + }, + { + "label": "normalizeAccountEmailForQueueCleanup()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1468", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_normalizeaccountemailforqueuecleanup", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "normalizeaccountemailforqueuecleanup()" + }, + { + "label": "clearFailedOrchestratorRemoteQueueForAccount()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1478", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_clearfailedorchestratorremotequeueforaccount", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "clearfailedorchestratorremotequeueforaccount()" + }, + { + "label": "cleanupStaleFailedRemoteQueueOnReconnect()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1498", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_cleanupstalefailedremotequeueonreconnect", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "cleanupstalefailedremotequeueonreconnect()" + }, + { + "label": "getDistinctOrphanInboxAccountIds()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1556", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_getdistinctorphaninboxaccountids", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "getdistinctorphaninboxaccountids()" + }, + { + "label": "orphanInboxHasRecipientHintForEmail()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1571", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_orphaninboxhasrecipienthintforemail", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "orphaninboxhasrecipienthintforemail()" + }, + { + "label": "GatewayAccountInboxDiag", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1593", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_gatewayaccountinboxdiag", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "gatewayaccountinboxdiag" + }, + { + "label": "OrphanInboxDiag", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1601", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_orphaninboxdiag", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "orphaninboxdiag" + }, + { + "label": "getInboxAccountMigrationDiagnostics()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1612", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_getinboxaccountmigrationdiagnostics", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "getinboxaccountmigrationdiagnostics()" + }, + { + "label": "migrateInboxAccountIdAndClearQueue()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1664", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_migrateinboxaccountidandclearqueue", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "migrateinboxaccountidandclearqueue()" + }, + { + "label": "tryAutoMigrateInboxAccountOnReconnect()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1713", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_tryautomigrateinboxaccountonreconnect", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "tryautomigrateinboxaccountonreconnect()" + }, + { + "label": "listRemoteOrchestratorQueueRows()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1765", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_listremoteorchestratorqueuerows", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "listremoteorchestratorqueuerows()" + }, + { + "label": "inboxPromptGuard.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxPromptGuard.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxpromptguard", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "inboxpromptguard.ts" + }, + { + "label": "INBOX_PROMPT_TEMPLATE_OVERHEAD_TOKENS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxPromptGuard.ts", + "source_location": "L10", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxpromptguard_inbox_prompt_template_overhead_tokens", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "inbox_prompt_template_overhead_tokens" + }, + { + "label": "estimateTextTokens()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxPromptGuard.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxpromptguard_estimatetexttokens", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "estimatetexttokens()" + }, + { + "label": "truncateMiddle()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxPromptGuard.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxpromptguard_truncatemiddle", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "truncatemiddle()" + }, + { + "label": "truncateEmailLikeContent()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxPromptGuard.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxpromptguard_truncateemaillikecontent", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "truncateemaillikecontent()" + }, + { + "label": "guardInboxPromptForCtxSlot()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxPromptGuard.ts", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxpromptguard_guardinboxpromptforctxslot", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "guardinboxpromptforctxslot()" + }, + { + "label": "inboxRowSealPolicy.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxRowSealPolicy.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxrowsealpolicy", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "inboxrowsealpolicy.ts" + }, + { + "label": "isDepackagedEmailInboxSourceType()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxRowSealPolicy.ts", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxrowsealpolicy_isdepackagedemailinboxsourcetype", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "isdepackagedemailinboxsourcetype()" + }, + { + "label": "inboxRowRequiresInnerVault()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxRowSealPolicy.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxrowsealpolicy_inboxrowrequiresinnervault", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "inboxrowrequiresinnervault()" + }, + { + "label": "effectiveInboxRowSealKeySource()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxRowSealPolicy.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxrowsealpolicy_effectiveinboxrowsealkeysource", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "effectiveinboxrowsealkeysource()" + }, + { + "label": "verificationKeySourcesForInboxRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxRowSealPolicy.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxrowsealpolicy_verificationkeysourcesforinboxrow", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "verificationkeysourcesforinboxrow()" + }, + { + "label": "allowsLegacyOuterReseal()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxRowSealPolicy.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxrowsealpolicy_allowslegacyouterreseal", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "allowslegacyouterreseal()" + }, + { + "label": "inboxSealedRead.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxsealedread", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "inboxsealedread.ts" + }, + { + "label": "InboxPlaceholderRow", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L25", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxsealedread_inboxplaceholderrow", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "inboxplaceholderrow" + }, + { + "label": "isInboxPlaceholderRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxsealedread_isinboxplaceholderrow", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "isinboxplaceholderrow()" + }, + { + "label": "SENSITIVE_LIST_FIELDS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L38", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxsealedread_sensitive_list_fields", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "sensitive_list_fields" + }, + { + "label": "deferredReasonForRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L48", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxsealedread_deferredreasonforrow", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "deferredreasonforrow()" + }, + { + "label": "toDeferredInboxListRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L58", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxsealedread_todeferredinboxlistrow", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "todeferredinboxlistrow()" + }, + { + "label": "tryVerifyWithKeySource()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L70", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxsealedread_tryverifywithkeysource", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "tryverifywithkeysource()" + }, + { + "label": "resealInboxRowToLedger()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L81", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxsealedread_resealinboxrowtoledger", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "resealinboxrowtoledger()" + }, + { + "label": "tryLegacyOuterReseal()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L106", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxsealedread_trylegacyouterreseal", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "trylegacyouterreseal()" + }, + { + "label": "verifyInboxMessageRowOrNull()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L126", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxsealedread_verifyinboxmessagerowornull", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "verifyinboxmessagerowornull()" + }, + { + "label": "loadVerifiedInboxMessageById()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L177", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxsealedread_loadverifiedinboxmessagebyid", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "loadverifiedinboxmessagebyid()" + }, + { + "label": "filterInboxRowsWithVerifiedSeals()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L188", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxsealedread_filterinboxrowswithverifiedseals", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "filterinboxrowswithverifiedseals()" + }, + { + "label": "inboxWhereClause.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxWhereClause.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxwhereclause", + "community": 182, + "community_name": "Email #182", + "norm_label": "inboxwhereclause.ts" + }, + { + "label": "InboxListFilterOptions", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxWhereClause.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxwhereclause_inboxlistfilteroptions", + "community": 182, + "community_name": "Email #182", + "norm_label": "inboxlistfilteroptions" + }, + { + "label": "buildInboxMessagesWhereClause()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inboxWhereClause.ts", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inboxwhereclause_buildinboxmessageswhereclause", + "community": 182, + "community_name": "Email #182", + "norm_label": "buildinboxmessageswhereclause()" + }, + { + "label": "email/index.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_index", + "community": 148, + "community_name": "Email #148", + "norm_label": "email/index.ts" + }, + { + "label": "ingestionOwnership.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionOwnership.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionownership", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "ingestionownership.ts" + }, + { + "label": "IngestionOwner", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionOwnership.ts", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionownership_ingestionowner", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "ingestionowner" + }, + { + "label": "NodeRole", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionOwnership.ts", + "source_location": "L29", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionownership_noderole", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "noderole" + }, + { + "label": "IngestionOwnership", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionOwnership.ts", + "source_location": "L31", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionownership_ingestionownership", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "ingestionownership" + }, + { + "label": "resolveNodeRole()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionOwnership.ts", + "source_location": "L51", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionownership_resolvenoderole", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "resolvenoderole()" + }, + { + "label": "resolveIngestionOwnership()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionOwnership.ts", + "source_location": "L76", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionownership_resolveingestionownership", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "resolveingestionownership()" + }, + { + "label": "resolveIngestionOwnershipWithLedger()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionOwnership.ts", + "source_location": "L132", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionownership_resolveingestionownershipwithledger", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "resolveingestionownershipwithledger()" + }, + { + "label": "INGESTION_HOST_TRIGGERED_ONLY_SKIP", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionOwnership.ts", + "source_location": "L146", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionownership_ingestion_host_triggered_only_skip", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "ingestion_host_triggered_only_skip" + }, + { + "label": "isDedicatedSandboxFetchNode()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionOwnership.ts", + "source_location": "L153", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionownership_isdedicatedsandboxfetchnode", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "isdedicatedsandboxfetchnode()" + }, + { + "label": "HostReadPollForbiddenError", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionOwnership.ts", + "source_location": "L165", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionownership_hostreadpollforbiddenerror", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "hostreadpollforbiddenerror" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionOwnership.ts", + "source_location": "L167", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionownership_hostreadpollforbiddenerror_constructor", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": ".constructor()" + }, + { + "label": "assertHostMayReadPoll()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionOwnership.ts", + "source_location": "L183", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionownership_asserthostmayreadpoll", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "asserthostmayreadpoll()" + }, + { + "label": "SANDBOX_REMOTE_MUTATIONS_HOST_ONLY", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionOwnership.ts", + "source_location": "L190", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionownership_sandbox_remote_mutations_host_only", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "sandbox_remote_mutations_host_only" + }, + { + "label": "thisNodeMayPerformRemoteProviderMutations()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionOwnership.ts", + "source_location": "L196", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionownership_thisnodemayperformremoteprovidermutations", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "thisnodemayperformremoteprovidermutations()" + }, + { + "label": "mayTriggerRemoteProviderMutationAtIpc()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionOwnership.ts", + "source_location": "L210", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionownership_maytriggerremoteprovidermutationatipc", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "maytriggerremoteprovidermutationatipc()" + }, + { + "label": "crossNetworkPollArchitecture.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/crossNetworkPollArchitecture.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_crossnetworkpollarchitecture_test", + "community": 499, + "community_name": "Email Ingestionpolltrigger #499", + "norm_label": "crossnetworkpollarchitecture.test.ts" + }, + { + "label": "TRIGGER_DIR", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/crossNetworkPollArchitecture.test.ts", + "source_location": "L12", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_crossnetworkpollarchitecture_test_trigger_dir", + "community": 499, + "community_name": "Email Ingestionpolltrigger #499", + "norm_label": "trigger_dir" + }, + { + "label": "readModule()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/crossNetworkPollArchitecture.test.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_crossnetworkpollarchitecture_test_readmodule", + "community": 499, + "community_name": "Email Ingestionpolltrigger #499", + "norm_label": "readmodule()" + }, + { + "label": "dedicatedHostIngestionPollTrigger.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/dedicatedHostIngestionPollTrigger.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_dedicatedhostingestionpolltrigger_test", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "dedicatedhostingestionpolltrigger.test.ts" + }, + { + "label": "party()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/dedicatedHostIngestionPollTrigger.test.ts", + "source_location": "L81", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_dedicatedhostingestionpolltrigger_test_party", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "party()" + }, + { + "label": "hostToSandboxRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/dedicatedHostIngestionPollTrigger.test.ts", + "source_location": "L85", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_dedicatedhostingestionpolltrigger_test_hosttosandboxrecord", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "hosttosandboxrecord()" + }, + { + "label": "hostIngestionPollCompletion.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/hostIngestionPollCompletion.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_hostingestionpollcompletion_test", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "hostingestionpollcompletion.test.ts" + }, + { + "label": "relayCapsuleHandler.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayCapsuleHandler.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relaycapsulehandler_test", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "relaycapsulehandler.test.ts" + }, + { + "label": "getInstanceId", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayCapsuleHandler.test.ts", + "source_location": "L25", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relaycapsulehandler_test_getinstanceid", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "getinstanceid" + }, + { + "label": "sendSealedRelay", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayCapsuleHandler.test.ts", + "source_location": "L26", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relaycapsulehandler_test_sendsealedrelay", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "sendsealedrelay" + }, + { + "label": "makeX25519Pair()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayCapsuleHandler.test.ts", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relaycapsulehandler_test_makex25519pair", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "makex25519pair()" + }, + { + "label": "hostKeys", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayCapsuleHandler.test.ts", + "source_location": "L49", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relaycapsulehandler_test_hostkeys", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "hostkeys" + }, + { + "label": "sandboxKeys", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayCapsuleHandler.test.ts", + "source_location": "L50", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relaycapsulehandler_test_sandboxkeys", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "sandboxkeys" + }, + { + "label": "party()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayCapsuleHandler.test.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relaycapsulehandler_test_party", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "party()" + }, + { + "label": "hostRecord", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayCapsuleHandler.test.ts", + "source_location": "L57", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relaycapsulehandler_test_hostrecord", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "hostrecord" + }, + { + "label": "sandboxRecord", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayCapsuleHandler.test.ts", + "source_location": "L75", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relaycapsulehandler_test_sandboxrecord", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "sandboxrecord" + }, + { + "label": "sealHostRequest()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayCapsuleHandler.test.ts", + "source_location": "L93", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relaycapsulehandler_test_sealhostrequest", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "sealhostrequest()" + }, + { + "label": "relayResultCapsuleHandler.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayResultCapsuleHandler.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relayresultcapsulehandler_test", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "relayresultcapsulehandler.test.ts" + }, + { + "label": "party()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayResultCapsuleHandler.test.ts", + "source_location": "L71", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relayresultcapsulehandler_test_party", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "party()" + }, + { + "label": "sealSandboxResult()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayResultCapsuleHandler.test.ts", + "source_location": "L111", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relayresultcapsulehandler_test_sealsandboxresult", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "sealsandboxresult()" + }, + { + "label": "makeResultWire()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayResultCapsuleHandler.test.ts", + "source_location": "L122", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relayresultcapsulehandler_test_makeresultwire", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "makeresultwire()" + }, + { + "label": "sealedRelayHostPollTrigger.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/sealedRelayHostPollTrigger.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_sealedrelayhostpolltrigger_test", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "sealedrelayhostpolltrigger.test.ts" + }, + { + "label": "makeX25519Pair()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/sealedRelayHostPollTrigger.test.ts", + "source_location": "L83", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_sealedrelayhostpolltrigger_test_makex25519pair", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "makex25519pair()" + }, + { + "label": "party()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/sealedRelayHostPollTrigger.test.ts", + "source_location": "L95", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_sealedrelayhostpolltrigger_test_party", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "party()" + }, + { + "label": "hostToSandboxRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/sealedRelayHostPollTrigger.test.ts", + "source_location": "L99", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_sealedrelayhostpolltrigger_test_hosttosandboxrecord", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "hosttosandboxrecord()" + }, + { + "label": "sealedServiceRpcRelayDispatch.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/sealedServiceRpcRelayDispatch.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_sealedservicerpcrelaydispatch_test", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "sealedservicerpcrelaydispatch.test.ts" + }, + { + "label": "tryHandleResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/sealedServiceRpcRelayDispatch.test.ts", + "source_location": "L10", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_sealedservicerpcrelaydispatch_test_tryhandleresult", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "tryhandleresult" + }, + { + "label": "tryHandleRequest", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/sealedServiceRpcRelayDispatch.test.ts", + "source_location": "L11", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_sealedservicerpcrelaydispatch_test_tryhandlerequest", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "tryhandlerequest" + }, + { + "label": "hostAckStore.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostAckStore.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostackstore", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "hostackstore.ts" + }, + { + "label": "HostIngestionPollAck", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostAckStore.ts", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostackstore_hostingestionpollack", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "hostingestionpollack" + }, + { + "label": "lastAckByAccount", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostAckStore.ts", + "source_location": "L18", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostackstore_lastackbyaccount", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "lastackbyaccount" + }, + { + "label": "recordHostIngestionPollAck()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostAckStore.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostackstore_recordhostingestionpollack", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "recordhostingestionpollack()" + }, + { + "label": "recordHostIngestionPollUnreachable()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostAckStore.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostackstore_recordhostingestionpollunreachable", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "recordhostingestionpollunreachable()" + }, + { + "label": "getLastHostIngestionPollAck()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostAckStore.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostackstore_getlasthostingestionpollack", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "getlasthostingestionpollack()" + }, + { + "label": "getLastHostIngestionPollAcks()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostAckStore.ts", + "source_location": "L42", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostackstore_getlasthostingestionpollacks", + "community": 135, + "community_name": "Email Ingestionpolltrigger", + "norm_label": "getlasthostingestionpollacks()" + }, + { + "label": "_resetHostIngestionPollAcksForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostAckStore.ts", + "source_location": "L46", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostackstore_resethostingestionpollacksfortests", + "community": 135, + "community_name": "Email Ingestionpolltrigger", + "norm_label": "_resethostingestionpollacksfortests()" + }, + { + "label": "hostIngestionPollCompletion.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostIngestionPollCompletion.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostingestionpollcompletion", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "hostingestionpollcompletion.ts" + }, + { + "label": "IngestionPollTriggerCounts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostIngestionPollCompletion.ts", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostingestionpollcompletion_ingestionpolltriggercounts", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "ingestionpolltriggercounts" + }, + { + "label": "PendingIngestionPollSyncSlice", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostIngestionPollCompletion.ts", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostingestionpollcompletion_pendingingestionpollsyncslice", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "pendingingestionpollsyncslice" + }, + { + "label": "CompletionWaiter", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostIngestionPollCompletion.ts", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostingestionpollcompletion_completionwaiter", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "completionwaiter" + }, + { + "label": "waitersByRequestId", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostIngestionPollCompletion.ts", + "source_location": "L29", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostingestionpollcompletion_waitersbyrequestid", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "waitersbyrequestid" + }, + { + "label": "waitForHostIngestionPollResult()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostIngestionPollCompletion.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostingestionpollcompletion_waitforhostingestionpollresult", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "waitforhostingestionpollresult()" + }, + { + "label": "resolveHostIngestionPollCompletion()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostIngestionPollCompletion.ts", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostingestionpollcompletion_resolvehostingestionpollcompletion", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "resolvehostingestionpollcompletion()" + }, + { + "label": "rejectHostIngestionPollCompletion()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostIngestionPollCompletion.ts", + "source_location": "L64", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostingestionpollcompletion_rejecthostingestionpollcompletion", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "rejecthostingestionpollcompletion()" + }, + { + "label": "finalizePendingIngestionPollSyncResult()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostIngestionPollCompletion.ts", + "source_location": "L74", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostingestionpollcompletion_finalizependingingestionpollsyncresult", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "finalizependingingestionpollsyncresult()" + }, + { + "label": "_resetHostIngestionPollCompletionForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostIngestionPollCompletion.ts", + "source_location": "L118", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostingestionpollcompletion_resethostingestionpollcompletionfortests", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "_resethostingestionpollcompletionfortests()" + }, + { + "label": "hostPendingStore.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostPendingStore.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostpendingstore", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "hostpendingstore.ts" + }, + { + "label": "HostIngestionPollPendingEntry", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostPendingStore.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostpendingstore_hostingestionpollpendingentry", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "hostingestionpollpendingentry" + }, + { + "label": "pendingByRequestId", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostPendingStore.ts", + "source_location": "L15", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostpendingstore_pendingbyrequestid", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "pendingbyrequestid" + }, + { + "label": "timersByRequestId", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostPendingStore.ts", + "source_location": "L16", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostpendingstore_timersbyrequestid", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "timersbyrequestid" + }, + { + "label": "registerHostIngestionPollPending()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostPendingStore.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostpendingstore_registerhostingestionpollpending", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "registerhostingestionpollpending()" + }, + { + "label": "cancelHostIngestionPollPending()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostPendingStore.ts", + "source_location": "L51", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostpendingstore_cancelhostingestionpollpending", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "cancelhostingestionpollpending()" + }, + { + "label": "resolveHostIngestionPollPending()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostPendingStore.ts", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostpendingstore_resolvehostingestionpollpending", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "resolvehostingestionpollpending()" + }, + { + "label": "getHostIngestionPollPending()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostPendingStore.ts", + "source_location": "L68", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostpendingstore_gethostingestionpollpending", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "gethostingestionpollpending()" + }, + { + "label": "_resetHostIngestionPollPendingForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostPendingStore.ts", + "source_location": "L72", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostpendingstore_resethostingestionpollpendingfortests", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "_resethostingestionpollpendingfortests()" + }, + { + "label": "hostTrigger.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "hosttrigger.ts" + }, + { + "label": "DEFAULT_INGESTION_POLL_TRIGGER_TIMEOUT_MS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L33", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_default_ingestion_poll_trigger_timeout_ms", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "default_ingestion_poll_trigger_timeout_ms" + }, + { + "label": "IngestionPollTriggerCounts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L38", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_ingestionpolltriggercounts", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "ingestionpolltriggercounts" + }, + { + "label": "SendDedicatedSandboxIngestionPollTriggerResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L47", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_senddedicatedsandboxingestionpolltriggerresult", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "senddedicatedsandboxingestionpolltriggerresult" + }, + { + "label": "IngestionTriggerDecision", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L51", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_ingestiontriggerdecision", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "ingestiontriggerdecision" + }, + { + "label": "IngestionTriggerDecisionContext", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L53", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_ingestiontriggerdecisioncontext", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "ingestiontriggerdecisioncontext" + }, + { + "label": "SealedRelayPollTriggerDeps", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L60", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_sealedrelaypolltriggerdeps", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "sealedrelaypolltriggerdeps" + }, + { + "label": "peerCoordinationId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L69", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_peercoordinationid", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "peercoordinationid()" + }, + { + "label": "buildIngestionPollRequestWire()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L77", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_buildingestionpollrequestwire", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "buildingestionpollrequestwire()" + }, + { + "label": "pendingTriggerCounts()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L99", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_pendingtriggercounts", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "pendingtriggercounts()" + }, + { + "label": "classifySendFailureOutcome()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L110", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_classifysendfailureoutcome", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "classifysendfailureoutcome()" + }, + { + "label": "shouldRecordUnreachableOnSendFailure()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L114", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_shouldrecordunreachableonsendfailure", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "shouldrecordunreachableonsendfailure()" + }, + { + "label": "findActiveHostToSandboxHandshakeRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L123", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_findactivehosttosandboxhandshakerecord", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "findactivehosttosandboxhandshakerecord()" + }, + { + "label": "evaluateHostIngestionPollTriggerDecision()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L141", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_evaluatehostingestionpolltriggerdecision", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "evaluatehostingestionpolltriggerdecision()" + }, + { + "label": "logIngestionTriggerDecision()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L159", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_logingestiontriggerdecision", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "logingestiontriggerdecision()" + }, + { + "label": "shouldHostTriggerDedicatedSandboxPoll()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L172", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_shouldhosttriggerdedicatedsandboxpoll", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "shouldhosttriggerdedicatedsandboxpoll()" + }, + { + "label": "sendDedicatedSandboxIngestionPollTrigger()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L188", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_senddedicatedsandboxingestionpolltrigger", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "senddedicatedsandboxingestionpolltrigger()" + }, + { + "label": "pollIdempotencyCache.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/pollIdempotencyCache.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_pollidempotencycache", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "pollidempotencycache.ts" + }, + { + "label": "CachedPollOutcome", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/pollIdempotencyCache.ts", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_pollidempotencycache_cachedpolloutcome", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "cachedpolloutcome" + }, + { + "label": "DEFAULT_POLL_IDEMPOTENCY_TTL_MS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/pollIdempotencyCache.ts", + "source_location": "L10", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_pollidempotencycache_default_poll_idempotency_ttl_ms", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "default_poll_idempotency_ttl_ms" + }, + { + "label": "CacheEntry", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/pollIdempotencyCache.ts", + "source_location": "L15", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_pollidempotencycache_cacheentry", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "cacheentry" + }, + { + "label": "cacheByRequestId", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/pollIdempotencyCache.ts", + "source_location": "L20", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_pollidempotencycache_cachebyrequestid", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "cachebyrequestid" + }, + { + "label": "timersByRequestId", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/pollIdempotencyCache.ts", + "source_location": "L21", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_pollidempotencycache_timersbyrequestid", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "timersbyrequestid" + }, + { + "label": "getPollOutcomeFromIdempotencyCache()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/pollIdempotencyCache.ts", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_pollidempotencycache_getpolloutcomefromidempotencycache", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "getpolloutcomefromidempotencycache()" + }, + { + "label": "evictPollOutcomeFromIdempotencyCache()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/pollIdempotencyCache.ts", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_pollidempotencycache_evictpolloutcomefromidempotencycache", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "evictpolloutcomefromidempotencycache()" + }, + { + "label": "storePollOutcomeInIdempotencyCache()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/pollIdempotencyCache.ts", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_pollidempotencycache_storepolloutcomeinidempotencycache", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "storepolloutcomeinidempotencycache()" + }, + { + "label": "_resetPollIdempotencyCacheForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/pollIdempotencyCache.ts", + "source_location": "L63", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_pollidempotencycache_resetpollidempotencycachefortests", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "_resetpollidempotencycachefortests()" + }, + { + "label": "ingestionPollTrigger/receiver.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/receiver.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_receiver", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "ingestionpolltrigger/receiver.ts" + }, + { + "label": "IngestionPollReceiverDeps", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/receiver.ts", + "source_location": "L21", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_receiver_ingestionpollreceiverdeps", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "ingestionpollreceiverdeps" + }, + { + "label": "errorWire()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/receiver.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_receiver_errorwire", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "errorwire()" + }, + { + "label": "resultWire()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/receiver.ts", + "source_location": "L48", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_receiver_resultwire", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "resultwire()" + }, + { + "label": "handleIngestionPollRequest()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/receiver.ts", + "source_location": "L73", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_receiver_handleingestionpollrequest", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "handleingestionpollrequest()" + }, + { + "label": "makeIngestionPollRequestWire()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/receiver.ts", + "source_location": "L123", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_receiver_makeingestionpollrequestwire", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "makeingestionpollrequestwire()" + }, + { + "label": "relayCapsuleHandler.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "relaycapsulehandler.ts" + }, + { + "label": "isSealedServiceRpcRelayCapsule()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_issealedservicerpcrelaycapsule", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "issealedservicerpcrelaycapsule()" + }, + { + "label": "parseSealedServiceRpcEnvelopeFromRelayCapsule()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_parsesealedservicerpcenvelopefromrelaycapsule", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "parsesealedservicerpcenvelopefromrelaycapsule()" + }, + { + "label": "IngestionPollRelayCapsuleContext", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L74", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_ingestionpollrelaycapsulecontext", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "ingestionpollrelaycapsulecontext" + }, + { + "label": "IngestionPollRelayHandlerDeps", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L83", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_ingestionpollrelayhandlerdeps", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "ingestionpollrelayhandlerdeps" + }, + { + "label": "_setIngestionPollRelayHandlerDepsForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L97", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_setingestionpollrelayhandlerdepsfortests", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "_setingestionpollrelayhandlerdepsfortests()" + }, + { + "label": "buildProtocolErrorWire()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L101", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_buildprotocolerrorwire", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "buildprotocolerrorwire()" + }, + { + "label": "sealAndSendPollOutcome()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L121", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_sealandsendpolloutcome", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "sealandsendpolloutcome()" + }, + { + "label": "executePollWithIdempotency()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L173", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_executepollwithidempotency", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "executepollwithidempotency()" + }, + { + "label": "handleIngestionPollRelayCapsule()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L196", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_handleingestionpollrelaycapsule", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "handleingestionpollrelaycapsule()" + }, + { + "label": "tryHandleIngestionPollRelayCapsule()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L291", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_tryhandleingestionpollrelaycapsule", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "tryhandleingestionpollrelaycapsule()" + }, + { + "label": "relayResultCapsuleHandler.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "relayresultcapsulehandler.ts" + }, + { + "label": "mapIngestionPollWireToHostAck()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler_mapingestionpollwiretohostack", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "mapingestionpollwiretohostack()" + }, + { + "label": "IngestionPollResultRelayHandlerDeps", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts", + "source_location": "L70", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler_ingestionpollresultrelayhandlerdeps", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "ingestionpollresultrelayhandlerdeps" + }, + { + "label": "_setIngestionPollResultRelayHandlerDepsForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts", + "source_location": "L77", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler_setingestionpollresultrelayhandlerdepsfortests", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "_setingestionpollresultrelayhandlerdepsfortests()" + }, + { + "label": "notifyHostIngestionPollAsyncComplete()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts", + "source_location": "L83", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler_notifyhostingestionpollasynccomplete", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "notifyhostingestionpollasynccomplete()" + }, + { + "label": "tryHandleIngestionPollResultRelayCapsule()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts", + "source_location": "L109", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler_tryhandleingestionpollresultrelaycapsule", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "tryhandleingestionpollresultrelaycapsule()" + }, + { + "label": "relaySend.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relaySend.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "relaysend.ts" + }, + { + "label": "SealedRelaySendResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relaySend.ts", + "source_location": "L19", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend_sealedrelaysendresult", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "sealedrelaysendresult" + }, + { + "label": "SealedRelayCapsuleSender", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relaySend.ts", + "source_location": "L21", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend_sealedrelaycapsulesender", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "sealedrelaycapsulesender" + }, + { + "label": "CoordinationOidcTokenProvider", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relaySend.ts", + "source_location": "L29", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend_coordinationoidctokenprovider", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "coordinationoidctokenprovider" + }, + { + "label": "buildSealedServiceRpcRelayCapsule()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relaySend.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend_buildsealedservicerpcrelaycapsule", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "buildsealedservicerpcrelaycapsule()" + }, + { + "label": "sealServiceRpcForRelay()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relaySend.ts", + "source_location": "L46", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend_sealservicerpcforrelay", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "sealservicerpcforrelay()" + }, + { + "label": "sendSealedServiceRpcViaCoordinationRelay()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relaySend.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend_sendsealedservicerpcviacoordinationrelay", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "sendsealedservicerpcviacoordinationrelay()" + }, + { + "label": "sealedServiceRpcRelayDispatch.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/sealedServiceRpcRelayDispatch.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_sealedservicerpcrelaydispatch", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "sealedservicerpcrelaydispatch.ts" + }, + { + "label": "isPlaintextIngestionPollRelayCapsule()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/sealedServiceRpcRelayDispatch.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_sealedservicerpcrelaydispatch_isplaintextingestionpollrelaycapsule", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "isplaintextingestionpollrelaycapsule()" + }, + { + "label": "tryHandleSealedServiceRpcRelayCapsule()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/sealedServiceRpcRelayDispatch.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_sealedservicerpcrelaydispatch_tryhandlesealedservicerpcrelaycapsule", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "tryhandlesealedservicerpcrelaycapsule()" + }, + { + "label": "ingestionPollTrigger/wire.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/wire.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "ingestionpolltrigger/wire.ts" + }, + { + "label": "INGESTION_POLL_SCHEMA_VERSION", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/wire.ts", + "source_location": "L9", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_ingestion_poll_schema_version", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "ingestion_poll_schema_version" + }, + { + "label": "IngestionPollServiceMessageType", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/wire.ts", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_ingestionpollservicemessagetype", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "ingestionpollservicemessagetype" + }, + { + "label": "IngestionPollServiceEnvelopeBase", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/wire.ts", + "source_location": "L16", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_ingestionpollserviceenvelopebase", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "ingestionpollserviceenvelopebase" + }, + { + "label": "IngestionPollRequestWire", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/wire.ts", + "source_location": "L26", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_ingestionpollrequestwire", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "ingestionpollrequestwire" + }, + { + "label": "IngestionPollResultWire", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/wire.ts", + "source_location": "L34", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_ingestionpollresultwire", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "ingestionpollresultwire" + }, + { + "label": "IngestionPollErrorWire", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/wire.ts", + "source_location": "L44", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_ingestionpollerrorwire", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "ingestionpollerrorwire" + }, + { + "label": "IngestionPollServiceEnvelope", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/wire.ts", + "source_location": "L50", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_ingestionpollserviceenvelope", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "ingestionpollserviceenvelope" + }, + { + "label": "isIngestionPollServiceType()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/wire.ts", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_isingestionpollservicetype", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "isingestionpollservicetype()" + }, + { + "label": "isIngestionPollServiceRpcShape()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/wire.ts", + "source_location": "L59", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_isingestionpollservicerpcshape", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "isingestionpollservicerpcshape()" + }, + { + "label": "isValidIngestionPollBaseEnvelope()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/wire.ts", + "source_location": "L64", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_isvalidingestionpollbaseenvelope", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "isvalidingestionpollbaseenvelope()" + }, + { + "label": "ingestionStatus.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionStatus.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionstatus", + "community": 135, + "community_name": "Email Ingestionpolltrigger", + "norm_label": "ingestionstatus.ts" + }, + { + "label": "IngestionStatusCode", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionStatus.ts", + "source_location": "L51", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionstatus_ingestionstatuscode", + "community": 135, + "community_name": "Email Ingestionpolltrigger", + "norm_label": "ingestionstatuscode" + }, + { + "label": "IngestionAccountStatus", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionStatus.ts", + "source_location": "L60", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionstatus_ingestionaccountstatus", + "community": 135, + "community_name": "Email Ingestionpolltrigger", + "norm_label": "ingestionaccountstatus" + }, + { + "label": "IngestionStatusResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionStatus.ts", + "source_location": "L79", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionstatus_ingestionstatusresult", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "ingestionstatusresult" + }, + { + "label": "_setIngestionStatusTopologyKindForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionStatus.ts", + "source_location": "L106", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionstatus_setingestionstatustopologykindfortests", + "community": 135, + "community_name": "Email Ingestionpolltrigger", + "norm_label": "_setingestionstatustopologykindfortests()" + }, + { + "label": "readSandboxTopologyKind()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionStatus.ts", + "source_location": "L110", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionstatus_readsandboxtopologykind", + "community": 135, + "community_name": "Email Ingestionpolltrigger", + "norm_label": "readsandboxtopologykind()" + }, + { + "label": "resolveIngestionStatus()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionStatus.ts", + "source_location": "L122", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ingestionstatus_resolveingestionstatus", + "community": 135, + "community_name": "Email Ingestionpolltrigger", + "norm_label": "resolveingestionstatus()" + }, + { + "label": "inlineParseGuard.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inlineParseGuard.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inlineparseguard", + "community": 30, + "community_name": "Email Providers", + "norm_label": "inlineparseguard.ts" + }, + { + "label": "INLINE_PARSE_FORBIDDEN_CODE", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inlineParseGuard.ts", + "source_location": "L23", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inlineparseguard_inline_parse_forbidden_code", + "community": 30, + "community_name": "Email Providers", + "norm_label": "inline_parse_forbidden_code" + }, + { + "label": "InlineParseForbiddenError", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inlineParseGuard.ts", + "source_location": "L26", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inlineparseguard_inlineparseforbiddenerror", + "community": 30, + "community_name": "Email Providers", + "norm_label": "inlineparseforbiddenerror" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inlineParseGuard.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inlineparseguard_inlineparseforbiddenerror_constructor", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".constructor()" + }, + { + "label": "assertNoInlineParse()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/inlineParseGuard.ts", + "source_location": "L41", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_inlineparseguard_assertnoinlineparse", + "community": 30, + "community_name": "Email Providers", + "norm_label": "assertnoinlineparse()" + }, + { + "label": "email/ipc.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ipc", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "email/ipc.ts" + }, + { + "label": "getRulesPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L42", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ipc_getrulespath", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "getrulespath()" + }, + { + "label": "DEFAULT_RULES_PATH", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L46", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ipc_default_rules_path", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "default_rules_path" + }, + { + "label": "rulesCache", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L156", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ipc_rulescache", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "rulescache" + }, + { + "label": "getInboxAiRules()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L158", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ipc_getinboxairules", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "getinboxairules()" + }, + { + "label": "getInboxAiRulesForPrompt()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L182", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ipc_getinboxairulesforprompt", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "getinboxairulesforprompt()" + }, + { + "label": "assertSandboxEmailEgress()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L215", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ipc_assertsandboxemailegress", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "assertsandboxemailegress()" + }, + { + "label": "inboxPagesFromStoredExtractedText()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L319", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ipc_inboxpagesfromstoredextractedtext", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "inboxpagesfromstoredextractedtext()" + }, + { + "label": "callInboxOllamaChat()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L330", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ipc_callinboxollamachat", + "community": 112, + "community_name": "LLM Email", + "norm_label": "callinboxollamachat()" + }, + { + "label": "isOllamaAvailable()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L363", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ipc_isollamaavailable", + "community": 112, + "community_name": "LLM Email", + "norm_label": "isollamaavailable()" + }, + { + "label": "parseAiJson()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L374", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ipc_parseaijson", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "parseaijson()" + }, + { + "label": "buildNativeBeapAnalyzeBody()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L419", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ipc_buildnativebeapanalyzebody", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "buildnativebeapanalyzebody()" + }, + { + "label": "extractNativeBeapIncomingPbeapQbeapTexts()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L480", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ipc_extractnativebeapincomingpbeapqbeaptexts", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "extractnativebeapincomingpbeapqbeaptexts()" + }, + { + "label": "normalizeNativeBeapDraftReply()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L514", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ipc_normalizenativebeapdraftreply", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "normalizenativebeapdraftreply()" + }, + { + "label": "broadcastInboxSnapshotAfterSync()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L564", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ipc_broadcastinboxsnapshotaftersync", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "broadcastinboxsnapshotaftersync()" + }, + { + "label": "ensureImapBruteForceAutoSyncIntervalRegistered()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L603", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ipc_ensureimapbruteforceautosyncintervalregistered", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "ensureimapbruteforceautosyncintervalregistered()" + }, + { + "label": "startStoredAutoSyncLoopIfMissing()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L643", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ipc_startstoredautosyncloopifmissing", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "startstoredautosyncloopifmissing()" + }, + { + "label": "mirrorGlobalAutoSyncToNewAccount()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L667", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ipc_mirrorglobalautosynctonewaccount", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "mirrorglobalautosynctonewaccount()" + }, + { + "label": "runPostEmailConnectFailedQueueCleanup()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L687", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ipc_runpostemailconnectfailedqueuecleanup", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "runpostemailconnectfailedqueuecleanup()" + }, + { + "label": "registerEmailHandlers()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L722", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ipc_registeremailhandlers", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "registeremailhandlers()" + }, + { + "label": "GetAnthropicApiKey", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L1610", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ipc_getanthropicapikey", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "getanthropicapikey" + }, + { + "label": "IMAP_SIMPLE_DRAIN", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L1618", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ipc_imap_simple_drain", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "imap_simple_drain" + }, + { + "label": "SimpleDrainProfile", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L1634", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ipc_simpledrainprofile", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "simpledrainprofile" + }, + { + "label": "simpleDrainProfileForProvider()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L1636", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ipc_simpledrainprofileforprovider", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "simpledrainprofileforprovider()" + }, + { + "label": "SimpleDrainQueueRow", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L1657", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ipc_simpledrainqueuerow", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "simpledrainqueuerow" + }, + { + "label": "simpleDrainIsPermanentOrchestratorError()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L1668", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ipc_simpledrainispermanentorchestratorerror", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "simpledrainispermanentorchestratorerror()" + }, + { + "label": "simpleDrainIsTransientOrchestratorError()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L1679", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ipc_simpledrainistransientorchestratorerror", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "simpledrainistransientorchestratorerror()" + }, + { + "label": "registerInboxHandlers()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L1700", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "registerinboxhandlers()" + }, + { + "label": "showGmailSetupDialog()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L6312", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ipc_showgmailsetupdialog", + "community": 151, + "community_name": "Mocks Lmgtfy Email", + "norm_label": "showgmailsetupdialog()" + }, + { + "label": "showOutlookSetupDialog()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L6582", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ipc_showoutlooksetupdialog", + "community": 151, + "community_name": "Mocks Lmgtfy Email", + "norm_label": "showoutlooksetupdialog()" + }, + { + "label": "ipcSyncResultShape.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ipcSyncResultShape.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape", + "community": 142, + "community_name": "Email", + "norm_label": "ipcsyncresultshape.ts" + }, + { + "label": "PAUSED_HINT", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ipcSyncResultShape.ts", + "source_location": "L13", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_paused_hint", + "community": 142, + "community_name": "Email", + "norm_label": "paused_hint" + }, + { + "label": "DELEGATED_HINT", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ipcSyncResultShape.ts", + "source_location": "L21", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_delegated_hint", + "community": 142, + "community_name": "Email", + "norm_label": "delegated_hint" + }, + { + "label": "HOST_TRIGGERED_HINT", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ipcSyncResultShape.ts", + "source_location": "L25", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_host_triggered_hint", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "host_triggered_hint" + }, + { + "label": "TRIGGER_SUCCESS_HINT", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ipcSyncResultShape.ts", + "source_location": "L29", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_trigger_success_hint", + "community": 142, + "community_name": "Email", + "norm_label": "trigger_success_hint" + }, + { + "label": "TRIGGER_PENDING_HINT", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ipcSyncResultShape.ts", + "source_location": "L33", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_trigger_pending_hint", + "community": 142, + "community_name": "Email", + "norm_label": "trigger_pending_hint" + }, + { + "label": "TRIGGER_FAILED_HINT", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ipcSyncResultShape.ts", + "source_location": "L37", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_trigger_failed_hint", + "community": 142, + "community_name": "Email", + "norm_label": "trigger_failed_hint" + }, + { + "label": "TRIGGER_REJECTED_HINT", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ipcSyncResultShape.ts", + "source_location": "L41", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_trigger_rejected_hint", + "community": 142, + "community_name": "Email", + "norm_label": "trigger_rejected_hint" + }, + { + "label": "TRIGGER_UNREACHABLE_HINT", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ipcSyncResultShape.ts", + "source_location": "L45", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_trigger_unreachable_hint", + "community": 142, + "community_name": "Email", + "norm_label": "trigger_unreachable_hint" + }, + { + "label": "TRIGGER_READ_CONSENT_MISSING_HINT", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ipcSyncResultShape.ts", + "source_location": "L48", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_trigger_read_consent_missing_hint", + "community": 142, + "community_name": "Email", + "norm_label": "trigger_read_consent_missing_hint" + }, + { + "label": "TRIGGER_FETCH_FAILED_HINT", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ipcSyncResultShape.ts", + "source_location": "L52", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_trigger_fetch_failed_hint", + "community": 142, + "community_name": "Email", + "norm_label": "trigger_fetch_failed_hint" + }, + { + "label": "IngestionPollTriggerCounts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ipcSyncResultShape.ts", + "source_location": "L55", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_ingestionpolltriggercounts", + "community": 142, + "community_name": "Email", + "norm_label": "ingestionpolltriggercounts" + }, + { + "label": "formatIngestionPollTriggerPullHint()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ipcSyncResultShape.ts", + "source_location": "L64", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_formatingestionpolltriggerpullhint", + "community": 142, + "community_name": "Email", + "norm_label": "formatingestionpolltriggerpullhint()" + }, + { + "label": "mapIngestionPollTriggerPendingFeedback()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ipcSyncResultShape.ts", + "source_location": "L69", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_mapingestionpolltriggerpendingfeedback", + "community": 142, + "community_name": "Email", + "norm_label": "mapingestionpolltriggerpendingfeedback()" + }, + { + "label": "mapIngestionPollTriggerHostFeedback()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ipcSyncResultShape.ts", + "source_location": "L81", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_mapingestionpolltriggerhostfeedback", + "community": 142, + "community_name": "Email", + "norm_label": "mapingestionpolltriggerhostfeedback()" + }, + { + "label": "SkipReasonIpcResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ipcSyncResultShape.ts", + "source_location": "L119", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_skipreasonipcresult", + "community": 142, + "community_name": "Email", + "norm_label": "skipreasonipcresult" + }, + { + "label": "mapSkipReasonToIpcWarning()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ipcSyncResultShape.ts", + "source_location": "L136", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_mapskipreasontoipcwarning", + "community": 142, + "community_name": "Email", + "norm_label": "mapskipreasontoipcwarning()" + }, + { + "label": "mapIngestionTriggerFailureSkipReason()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/ipcSyncResultShape.ts", + "source_location": "L186", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_mapingestiontriggerfailureskipreason", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "mapingestiontriggerfailureskipreason()" + }, + { + "label": "localInboxDeletion.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/localInboxDeletion.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_localinboxdeletion", + "community": 182, + "community_name": "Email #182", + "norm_label": "localinboxdeletion.ts" + }, + { + "label": "LOCAL_WRDESK_DELETE_SKIP_REASON", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/localInboxDeletion.ts", + "source_location": "L16", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_localinboxdeletion_local_wrdesk_delete_skip_reason", + "community": 182, + "community_name": "Email #182", + "norm_label": "local_wrdesk_delete_skip_reason" + }, + { + "label": "LocalDeleteResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/localInboxDeletion.ts", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_localinboxdeletion_localdeleteresult", + "community": 182, + "community_name": "Email #182", + "norm_label": "localdeleteresult" + }, + { + "label": "BulkLocalDeleteResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/localInboxDeletion.ts", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_localinboxdeletion_bulklocaldeleteresult", + "community": 182, + "community_name": "Email #182", + "norm_label": "bulklocaldeleteresult" + }, + { + "label": "deleteMessageLocal()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/localInboxDeletion.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_localinboxdeletion_deletemessagelocal", + "community": 182, + "community_name": "Email #182", + "norm_label": "deletemessagelocal()" + }, + { + "label": "bulkDeleteMessagesLocal()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/localInboxDeletion.ts", + "source_location": "L57", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_localinboxdeletion_bulkdeletemessageslocal", + "community": 182, + "community_name": "Email #182", + "norm_label": "bulkdeletemessageslocal()" + }, + { + "label": "isLocallyDeletedRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/localInboxDeletion.ts", + "source_location": "L73", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_localinboxdeletion_islocallydeletedrow", + "community": 182, + "community_name": "Email #182", + "norm_label": "islocallydeletedrow()" + }, + { + "label": "mergeExtensionDepackaged.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "mergeextensiondepackaged.ts" + }, + { + "label": "USER_PACKAGE_BUILDER_SEND_SOURCE", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L49", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged_user_package_builder_send_source", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "user_package_builder_send_source" + }, + { + "label": "MergeDepackagedAttachmentInput", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L51", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged_mergedepackagedattachmentinput", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "mergedepackagedattachmentinput" + }, + { + "label": "MergeExtensionDepackagedInput", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L60", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged_mergeextensiondepackagedinput", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "mergeextensiondepackagedinput" + }, + { + "label": "normalizePackageJson()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L113", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged_normalizepackagejson", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "normalizepackagejson()" + }, + { + "label": "notifyMergePendingNoSandbox()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L129", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged_notifymergependingnosandbox", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "notifymergependingnosandbox()" + }, + { + "label": "attemptQuarantineWrite()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L149", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged_attemptquarantinewrite", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "attemptquarantinewrite()" + }, + { + "label": "mergeExtensionDepackaged()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L242", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged_mergeextensiondepackaged", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "mergeextensiondepackaged()" + }, + { + "label": "drainExtensionMergeBuffer()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L579", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged_drainextensionmergebuffer", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "drainextensionmergebuffer()" + }, + { + "label": "notifyInboxDepackagedMerged()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L637", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged_notifyinboxdepackagedmerged", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "notifyinboxdepackagedmerged()" + }, + { + "label": "messageRouter.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_messagerouter", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "messagerouter.ts" + }, + { + "label": "RawEmailMessage", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L58", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_messagerouter_rawemailmessage", + "community": 30, + "community_name": "Email Providers", + "norm_label": "rawemailmessage" + }, + { + "label": "DetectAndRouteResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L99", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_messagerouter_detectandrouteresult", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "detectandrouteresult" + }, + { + "label": "detectBeapCapsule()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L108", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_messagerouter_detectbeapcapsule", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "detectbeapcapsule()" + }, + { + "label": "detectBeapMessagePackage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L127", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_messagerouter_detectbeapmessagepackage", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "detectbeapmessagepackage()" + }, + { + "label": "detectBeapInJson()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L148", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_messagerouter_detectbeapinjson", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "detectbeapinjson()" + }, + { + "label": "isBeapAttachment()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L156", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_messagerouter_isbeapattachment", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "isbeapattachment()" + }, + { + "label": "isJsonAttachment()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L164", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_messagerouter_isjsonattachment", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "isjsonattachment()" + }, + { + "label": "extractHandshakeId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L172", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_messagerouter_extracthandshakeid", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "extracthandshakeid()" + }, + { + "label": "makeInboxAttachmentStorageId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L187", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_messagerouter_makeinboxattachmentstorageid", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "makeinboxattachmentstorageid()" + }, + { + "label": "coerceReceivedAtIso()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L199", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_messagerouter_coercereceivedatiso", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "coercereceivedatiso()" + }, + { + "label": "resolveStorageEmailMessageId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L216", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_messagerouter_resolvestorageemailmessageid", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "resolvestorageemailmessageid()" + }, + { + "label": "buildProvenance()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L233", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_messagerouter_buildprovenance", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "buildprovenance()" + }, + { + "label": "buildQuarantineCanonicalJson()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L259", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_messagerouter_buildquarantinecanonicaljson", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "buildquarantinecanonicaljson()" + }, + { + "label": "findPairedSandboxHandshake()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L278", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_messagerouter_findpairedsandboxhandshake", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "findpairedsandboxhandshake()" + }, + { + "label": "detectAndRouteMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L342", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_messagerouter_detectandroutemessage", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "detectandroutemessage()" + }, + { + "label": "detectAndRouteMessageInline()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L359", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_messagerouter_detectandroutemessageinline", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "detectandroutemessageinline()" + }, + { + "label": "DepackageCutoverHeldError", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L910", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_messagerouter_depackagecutoverhelderror", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "depackagecutoverhelderror" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L911", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_messagerouter_depackagecutoverhelderror_constructor", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": ".constructor()" + }, + { + "label": "mapDepackageCodeToReason()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L918", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_messagerouter_mapdepackagecodetoreason", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "mapdepackagecodetoreason()" + }, + { + "label": "toOpaqueBuffer()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L937", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_messagerouter_toopaquebuffer", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "toopaquebuffer()" + }, + { + "label": "routeViaDepackageSeam()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L950", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_messagerouter_routeviadepackageseam", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "routeviadepackageseam()" + }, + { + "label": "quarantineRawBytes()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L1032", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_messagerouter_quarantinerawbytes", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "quarantinerawbytes()" + }, + { + "label": "writePlainSeamInbox()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L1090", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_messagerouter_writeplainseaminbox", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "writeplainseaminbox()" + }, + { + "label": "buildPlainEmailInboxPayload()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L1161", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_messagerouter_buildplainemailinboxpayload", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "buildplainemailinboxpayload()" + }, + { + "label": "RFC-822", + "file_type": "concept", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L82", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_messagerouter_ts_docref_rfc_822", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "rfc-822" + }, + { + "label": "oauth-server.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_oauth_server", + "community": 219, + "community_name": "Email #219", + "norm_label": "oauth-server.ts" + }, + { + "label": "OAuthState", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_oauth_server_oauthstate", + "community": 219, + "community_name": "Email #219", + "norm_label": "oauthstate" + }, + { + "label": "OAuthCallbackResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_oauth_server_oauthcallbackresult", + "community": 219, + "community_name": "Email #219", + "norm_label": "oauthcallbackresult" + }, + { + "label": "OAuthFlowSession", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L37", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_oauth_server_oauthflowsession", + "community": 219, + "community_name": "Email #219", + "norm_label": "oauthflowsession" + }, + { + "label": "PendingOAuthRequest", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L43", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_oauth_server_pendingoauthrequest", + "community": 219, + "community_name": "Email #219", + "norm_label": "pendingoauthrequest" + }, + { + "label": "isPortAvailable()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L59", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_oauth_server_isportavailable", + "community": 219, + "community_name": "Email #219", + "norm_label": "isportavailable()" + }, + { + "label": "findAvailablePort()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L73", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_oauth_server_findavailableport", + "community": 219, + "community_name": "Email #219", + "norm_label": "findavailableport()" + }, + { + "label": "OAuthServerManager", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L85", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager", + "community": 219, + "community_name": "Email #219", + "norm_label": "oauthservermanager" + }, + { + "label": ".getState()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L95", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager_getstate", + "community": 219, + "community_name": "Email #219", + "norm_label": ".getstate()" + }, + { + "label": ".getCallbackUrl()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L102", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager_getcallbackurl", + "community": 219, + "community_name": "Email #219", + "norm_label": ".getcallbackurl()" + }, + { + "label": ".isServerRunning()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L113", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager_isserverrunning", + "community": 219, + "community_name": "Email #219", + "norm_label": ".isserverrunning()" + }, + { + "label": ".isFlowInProgress()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L120", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager_isflowinprogress", + "community": 219, + "community_name": "Email #219", + "norm_label": ".isflowinprogress()" + }, + { + "label": ".beginOAuthFlow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L128", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager_beginoauthflow", + "community": 219, + "community_name": "Email #219", + "norm_label": ".beginoauthflow()" + }, + { + "label": ".startOAuthFlow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L180", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager_startoauthflow", + "community": 219, + "community_name": "Email #219", + "norm_label": ".startoauthflow()" + }, + { + "label": ".startServer()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L191", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager_startserver", + "community": 219, + "community_name": "Email #219", + "norm_label": ".startserver()" + }, + { + "label": ".handleRequest()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L216", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager_handlerequest", + "community": 219, + "community_name": "Email #219", + "norm_label": ".handlerequest()" + }, + { + "label": ".sendHtmlResponse()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L275", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager_sendhtmlresponse", + "community": 219, + "community_name": "Email #219", + "norm_label": ".sendhtmlresponse()" + }, + { + "label": ".completeFlow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L327", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager_completeflow", + "community": 219, + "community_name": "Email #219", + "norm_label": ".completeflow()" + }, + { + "label": ".cancelFlow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L357", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager_cancelflow", + "community": 219, + "community_name": "Email #219", + "norm_label": ".cancelflow()" + }, + { + "label": ".cleanup()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L371", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager_cleanup", + "community": 219, + "community_name": "Email #219", + "norm_label": ".cleanup()" + }, + { + "label": ".shutdown()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L410", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager_shutdown", + "community": 219, + "community_name": "Email #219", + "norm_label": ".shutdown()" + }, + { + "label": ".getCurrentPort()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L427", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager_getcurrentport", + "community": 219, + "community_name": "Email #219", + "norm_label": ".getcurrentport()" + }, + { + "label": "ZOHO_OAUTH_AUTH_URL", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L436", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_oauth_server_zoho_oauth_auth_url", + "community": 219, + "community_name": "Email #219", + "norm_label": "zoho_oauth_auth_url" + }, + { + "label": "ZOHO_OAUTH_TOKEN_URL", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L437", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_oauth_server_zoho_oauth_token_url", + "community": 219, + "community_name": "Email #219", + "norm_label": "zoho_oauth_token_url" + }, + { + "label": "oauthScopes.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/oauthScopes.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_oauthscopes", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "oauthscopes.ts" + }, + { + "label": "OAuthScopeRole", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/oauthScopes.ts", + "source_location": "L26", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_oauthscopes_oauthscoperole", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "oauthscoperole" + }, + { + "label": "ScopedProvider", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/oauthScopes.ts", + "source_location": "L27", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_oauthscopes_scopedprovider", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "scopedprovider" + }, + { + "label": "GMAIL_READ_SCOPES", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/oauthScopes.ts", + "source_location": "L37", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_oauthscopes_gmail_read_scopes", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "gmail_read_scopes" + }, + { + "label": "GMAIL_SEND_SCOPES", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/oauthScopes.ts", + "source_location": "L41", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_oauthscopes_gmail_send_scopes", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "gmail_send_scopes" + }, + { + "label": "GMAIL_ALL_SCOPES", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/oauthScopes.ts", + "source_location": "L44", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_oauthscopes_gmail_all_scopes", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "gmail_all_scopes" + }, + { + "label": "OUTLOOK_BASE_SCOPES", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/oauthScopes.ts", + "source_location": "L49", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_oauthscopes_outlook_base_scopes", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "outlook_base_scopes" + }, + { + "label": "OUTLOOK_READ_SCOPES", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/oauthScopes.ts", + "source_location": "L62", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_oauthscopes_outlook_read_scopes", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "outlook_read_scopes" + }, + { + "label": "OUTLOOK_SEND_SCOPES", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/oauthScopes.ts", + "source_location": "L65", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_oauthscopes_outlook_send_scopes", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "outlook_send_scopes" + }, + { + "label": "OUTLOOK_ALL_SCOPES", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/oauthScopes.ts", + "source_location": "L68", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_oauthscopes_outlook_all_scopes", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "outlook_all_scopes" + }, + { + "label": "resolveOAuthScopes()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/oauthScopes.ts", + "source_location": "L82", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_oauthscopes_resolveoauthscopes", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "resolveoauthscopes()" + }, + { + "label": "resolveOAuthScopeString()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/oauthScopes.ts", + "source_location": "L91", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_oauthscopes_resolveoauthscopestring", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "resolveoauthscopestring()" + }, + { + "label": "imapCredentialFieldForRole()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/oauthScopes.ts", + "source_location": "L102", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_oauthscopes_imapcredentialfieldforrole", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "imapcredentialfieldforrole()" + }, + { + "label": "scopeSetCanSend()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/oauthScopes.ts", + "source_location": "L113", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_oauthscopes_scopesetcansend", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "scopesetcansend()" + }, + { + "label": "scopeSetCanRead()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/oauthScopes.ts", + "source_location": "L118", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_oauthscopes_scopesetcanread", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "scopesetcanread()" + }, + { + "label": "scopeSetCanModify()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/oauthScopes.ts", + "source_location": "L123", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_oauthscopes_scopesetcanmodify", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "scopesetcanmodify()" + }, + { + "label": "opaqueIngestion.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/opaqueIngestion.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_opaqueingestion", + "community": 30, + "community_name": "Email Providers", + "norm_label": "opaqueingestion.ts" + }, + { + "label": "hasLinkedDepackageSandbox()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/opaqueIngestion.ts", + "source_location": "L51", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_opaqueingestion_haslinkeddepackagesandbox", + "community": 30, + "community_name": "Email Providers", + "norm_label": "haslinkeddepackagesandbox()" + }, + { + "label": "isOpaqueIngestionActive()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/opaqueIngestion.ts", + "source_location": "L72", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_opaqueingestion_isopaqueingestionactive", + "community": 30, + "community_name": "Email Providers", + "norm_label": "isopaqueingestionactive()" + }, + { + "label": "__resetOpaqueIngestionCacheForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/opaqueIngestion.ts", + "source_location": "L78", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_opaqueingestion_resetopaqueingestioncachefortests", + "community": 30, + "community_name": "Email Providers", + "norm_label": "__resetopaqueingestioncachefortests()" + }, + { + "label": "originMailboxDelete.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/originMailboxDelete.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_originmailboxdelete", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "originmailboxdelete.ts" + }, + { + "label": "OriginDeleteAttemptResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/originMailboxDelete.ts", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_originmailboxdelete_origindeleteattemptresult", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "origindeleteattemptresult" + }, + { + "label": "BulkOriginDeleteResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/originMailboxDelete.ts", + "source_location": "L27", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_originmailboxdelete_bulkorigindeleteresult", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "bulkorigindeleteresult" + }, + { + "label": "InboxRow", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/originMailboxDelete.ts", + "source_location": "L35", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_originmailboxdelete_inboxrow", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "inboxrow" + }, + { + "label": "isOriginDeletableRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/originMailboxDelete.ts", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_originmailboxdelete_isorigindeletablerow", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "isorigindeletablerow()" + }, + { + "label": "trashOnOriginAfterLocalDelete()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/originMailboxDelete.ts", + "source_location": "L51", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_originmailboxdelete_trashonoriginafterlocaldelete", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "trashonoriginafterlocaldelete()" + }, + { + "label": "originMailboxDeleteCapability.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/originMailboxDeleteCapability.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_originmailboxdeletecapability", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "originmailboxdeletecapability.ts" + }, + { + "label": "OriginDeleteTrashMethod", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/originMailboxDeleteCapability.ts", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_originmailboxdeletecapability_origindeletetrashmethod", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "origindeletetrashmethod" + }, + { + "label": "OriginDeleteCapability", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/originMailboxDeleteCapability.ts", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_originmailboxdeletecapability_origindeletecapability", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "origindeletecapability" + }, + { + "label": "parseScopes()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/originMailboxDeleteCapability.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_originmailboxdeletecapability_parsescopes", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "parsescopes()" + }, + { + "label": "oauthTrashMethod()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/originMailboxDeleteCapability.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_originmailboxdeletecapability_oauthtrashmethod", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "oauthtrashmethod()" + }, + { + "label": "assessOriginDeleteCapability()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/originMailboxDeleteCapability.ts", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_originmailboxdeletecapability_assessorigindeletecapability", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "assessorigindeletecapability()" + }, + { + "label": "pdf-extractor.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/pdf-extractor.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_pdf_extractor", + "community": 148, + "community_name": "Email #148", + "norm_label": "pdf-extractor.ts" + }, + { + "label": "loadPdfjs()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/pdf-extractor.ts", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_pdf_extractor_loadpdfjs", + "community": 148, + "community_name": "Email #148", + "norm_label": "loadpdfjs()" + }, + { + "label": "reconstructPageText()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/pdf-extractor.ts", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_pdf_extractor_reconstructpagetext", + "community": 148, + "community_name": "Email #148", + "norm_label": "reconstructpagetext()" + }, + { + "label": "ExtractPdfTextResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/pdf-extractor.ts", + "source_location": "L60", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_pdf_extractor_extractpdftextresult", + "community": 148, + "community_name": "Email #148", + "norm_label": "extractpdftextresult" + }, + { + "label": "resolveInboxPdfExtractionStatus()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/pdf-extractor.ts", + "source_location": "L71", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_pdf_extractor_resolveinboxpdfextractionstatus", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "resolveinboxpdfextractionstatus()" + }, + { + "label": "extractPdfText()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/pdf-extractor.ts", + "source_location": "L99", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_pdf_extractor_extractpdftext", + "community": 148, + "community_name": "Email #148", + "norm_label": "extractpdftext()" + }, + { + "label": "isPdfFile()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/pdf-extractor.ts", + "source_location": "L183", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_pdf_extractor_ispdffile", + "community": 148, + "community_name": "Email #148", + "norm_label": "ispdffile()" + }, + { + "label": "getSupportedExtractionTypes()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/pdf-extractor.ts", + "source_location": "L198", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_pdf_extractor_getsupportedextractiontypes", + "community": 148, + "community_name": "Email #148", + "norm_label": "getsupportedextractiontypes()" + }, + { + "label": "supportsTextExtraction()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/pdf-extractor.ts", + "source_location": "L205", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_pdf_extractor_supportstextextraction", + "community": 148, + "community_name": "Email #148", + "norm_label": "supportstextextraction()" + }, + { + "label": "plainEmailConverter.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/plainEmailConverter.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_plainemailconverter", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "plainemailconverter.ts" + }, + { + "label": "PlainEmailBeapMessage", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/plainEmailConverter.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_plainemailconverter_plainemailbeapmessage", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "plainemailbeapmessage" + }, + { + "label": "hashSenderEmail()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/plainEmailConverter.ts", + "source_location": "L65", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_plainemailconverter_hashsenderemail", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "hashsenderemail()" + }, + { + "label": "stripHtml()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/plainEmailConverter.ts", + "source_location": "L78", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_plainemailconverter_striphtml", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "striphtml()" + }, + { + "label": "extractAutomationTags()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/plainEmailConverter.ts", + "source_location": "L96", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_plainemailconverter_extractautomationtags", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "extractautomationtags()" + }, + { + "label": "plainEmailToBeapMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/plainEmailConverter.ts", + "source_location": "L109", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_plainemailconverter_plainemailtobeapmessage", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "plainemailtobeapmessage()" + }, + { + "label": "PlainEmailDepackagedFormat", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/plainEmailConverter.ts", + "source_location": "L160", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_plainemailconverter_plainemaildepackagedformat", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "plainemaildepackagedformat" + }, + { + "label": "convertPlainToBeapFormat()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/plainEmailConverter.ts", + "source_location": "L191", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_plainemailconverter_convertplaintobeapformat", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "convertplaintobeapformat()" + }, + { + "label": "enrichWithAttachments()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/plainEmailConverter.ts", + "source_location": "L328", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_plainemailconverter_enrichwithattachments", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "enrichwithattachments()" + }, + { + "label": "base.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_base", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "base.ts" + }, + { + "label": "RawEmailMessage", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L25", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_base_rawemailmessage", + "community": 30, + "community_name": "Email Providers", + "norm_label": "rawemailmessage" + }, + { + "label": "RawAttachment", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L73", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_base_rawattachment", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "rawattachment" + }, + { + "label": "FolderInfo", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L85", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_base_folderinfo", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": "folderinfo" + }, + { + "label": "IEmailProvider", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L98", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "iemailprovider" + }, + { + "label": ".connect()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L108", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider_connect", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": ".connect()" + }, + { + "label": ".disconnect()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L113", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider_disconnect", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": ".disconnect()" + }, + { + "label": ".isConnected()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L118", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider_isconnected", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": ".isconnected()" + }, + { + "label": ".testConnection()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L123", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider_testconnection", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": ".testconnection()" + }, + { + "label": ".listFolders()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L128", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider_listfolders", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": ".listfolders()" + }, + { + "label": ".fetchMessages()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L135", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider_fetchmessages", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": ".fetchmessages()" + }, + { + "label": ".fetchMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L141", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider_fetchmessage", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": ".fetchmessage()" + }, + { + "label": ".listAttachments()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L147", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider_listattachments", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": ".listattachments()" + }, + { + "label": ".fetchAttachment()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L154", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider_fetchattachment", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": ".fetchattachment()" + }, + { + "label": ".markAsRead()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L160", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider_markasread", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": ".markasread()" + }, + { + "label": ".markAsUnread()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L166", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider_markasunread", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": ".markasunread()" + }, + { + "label": ".setFlagged()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L173", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider_setflagged", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": ".setflagged()" + }, + { + "label": ".sendEmail()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L179", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider_sendemail", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": ".sendemail()" + }, + { + "label": ".getSyncState()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L184", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider_getsyncstate", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": ".getsyncstate()" + }, + { + "label": ".fetchNewMessages()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L191", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider_fetchnewmessages", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": ".fetchnewmessages()" + }, + { + "label": ".applyOrchestratorRemoteOperation()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L200", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider_applyorchestratorremoteoperation", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": ".applyorchestratorremoteoperation()" + }, + { + "label": ".deleteMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L209", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider_deletemessage", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": ".deletemessage()" + }, + { + "label": "TokenRefreshCallback", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L216", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_base_tokenrefreshcallback", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "tokenrefreshcallback" + }, + { + "label": "BaseEmailProvider", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L225", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_base_baseemailprovider", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "baseemailprovider" + }, + { + "label": ".isConnected()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L250", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_base_baseemailprovider_isconnected", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": ".isconnected()" + }, + { + "label": ".parseEmailAddress()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L257", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_base_baseemailprovider_parseemailaddress", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": ".parseemailaddress()" + }, + { + "label": ".parseEmailAddresses()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L275", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_base_baseemailprovider_parseemailaddresses", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": ".parseemailaddresses()" + }, + { + "label": ".formatDate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L306", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_base_baseemailprovider_formatdate", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": ".formatdate()" + }, + { + "label": "RFC-822", + "file_type": "concept", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L56", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_base_ts_docref_rfc_822", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "rfc-822" + }, + { + "label": "gmail.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_gmail", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "gmail.ts" + }, + { + "label": "gmailOAuthTokenExchangeShape()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L52", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailoauthtokenexchangeshape", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "gmailoauthtokenexchangeshape()" + }, + { + "label": "emitGmailStandardConnectFlowProof()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L63", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_gmail_emitgmailstandardconnectflowproof", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "emitgmailstandardconnectflowproof()" + }, + { + "label": "base64url()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L127", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_gmail_base64url", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "base64url()" + }, + { + "label": "oauthRandomString()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L130", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_gmail_oauthrandomstring", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "oauthrandomstring()" + }, + { + "label": "sha256base64url()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L133", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_gmail_sha256base64url", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": "sha256base64url()" + }, + { + "label": "getOAuthConfigPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L149", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_gmail_getoauthconfigpath", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "getoauthconfigpath()" + }, + { + "label": "loadOAuthConfig()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L156", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_gmail_loadoauthconfig", + "community": 105, + "community_name": "Email Providers #105", + "norm_label": "loadoauthconfig()" + }, + { + "label": "saveOAuthConfig()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L171", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_gmail_saveoauthconfig", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "saveoauthconfig()" + }, + { + "label": "GmailProvider", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L182", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider", + "community": 30, + "community_name": "Email Providers", + "norm_label": "gmailprovider" + }, + { + "label": ".connect()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L195", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_connect", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".connect()" + }, + { + "label": ".disconnect()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L213", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_disconnect", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".disconnect()" + }, + { + "label": ".fetchProfileEmailAddress()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L226", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_fetchprofileemailaddress", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".fetchprofileemailaddress()" + }, + { + "label": ".testConnection()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L254", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_testconnection", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".testconnection()" + }, + { + "label": ".listFolders()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L273", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_listfolders", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".listfolders()" + }, + { + "label": ".fetchMessages()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L287", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_fetchmessages", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".fetchmessages()" + }, + { + "label": ".fetchMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L441", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_fetchmessage", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".fetchmessage()" + }, + { + "label": ".listAttachments()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L464", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_listattachments", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".listattachments()" + }, + { + "label": ".fetchAttachment()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L473", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_fetchattachment", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".fetchattachment()" + }, + { + "label": ".markAsRead()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L493", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_markasread", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".markasread()" + }, + { + "label": ".markAsUnread()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L499", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_markasunread", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".markasunread()" + }, + { + "label": ".setFlagged()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L505", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_setflagged", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".setflagged()" + }, + { + "label": ".deleteMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L517", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_deletemessage", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".deletemessage()" + }, + { + "label": ".applyOrchestratorRemoteOperation()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L531", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_applyorchestratorremoteoperation", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".applyorchestratorremoteoperation()" + }, + { + "label": ".isGmailIdempotentModifyError()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L586", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_isgmailidempotentmodifyerror", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".isgmailidempotentmodifyerror()" + }, + { + "label": ".gmailModifyOrIdempotent()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L596", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_gmailmodifyoridempotent", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".gmailmodifyoridempotent()" + }, + { + "label": ".batchModifyMessages()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L613", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_batchmodifymessages", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".batchmodifymessages()" + }, + { + "label": ".ensureWrDeskUserLabel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L635", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_ensurewrdeskuserlabel", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".ensurewrdeskuserlabel()" + }, + { + "label": ".sendEmail()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L657", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_sendemail", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".sendemail()" + }, + { + "label": ".startOAuthFlow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L702", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_startoauthflow", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": ".startoauthflow()" + }, + { + "label": ".buildAuthUrl()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L822", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_buildauthurl", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": ".buildauthurl()" + }, + { + "label": ".exchangeCodeForTokens()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L848", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_exchangecodefortokens", + "community": 66, + "community_name": "Email Providers #66", + "norm_label": ".exchangecodefortokens()" + }, + { + "label": ".isTokenExpired()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L1134", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_istokenexpired", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".istokenexpired()" + }, + { + "label": ".refreshAccessToken()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L1138", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_refreshaccesstoken", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".refreshaccesstoken()" + }, + { + "label": ".apiRequest()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L1295", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_apirequest", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".apirequest()" + }, + { + "label": ".buildRawGmailMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L1402", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_buildrawgmailmessage", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".buildrawgmailmessage()" + }, + { + "label": ".parseGmailMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L1431", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_parsegmailmessage", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".parsegmailmessage()" + }, + { + "label": ".extractBody()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L1474", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_extractbody", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".extractbody()" + }, + { + "label": ".extractAttachments()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L1493", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_extractattachments", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".extractattachments()" + }, + { + "label": ".decodeBase64Url()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L1518", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_decodebase64url", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".decodebase64url()" + }, + { + "label": ".buildRfc2822Message()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L1523", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_buildrfc2822message", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".buildrfc2822message()" + }, + { + "label": "RFC-2822", + "file_type": "concept", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L659", + "_origin": "ast", + "id": "docref_rfc_2822", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "rfc-2822" + }, + { + "label": "RFC-822", + "file_type": "concept", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L1399", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_gmail_ts_docref_rfc_822", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "rfc-822" + }, + { + "label": "RFC-2045", + "file_type": "concept", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L1560", + "_origin": "ast", + "id": "docref_rfc_2045", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "rfc-2045" + }, + { + "label": "imap.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": "imap.ts" + }, + { + "label": "ImapConnection", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L45", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapconnection", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": "imapconnection" + }, + { + "label": "ImapNamespaceInfo", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L47", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapnamespaceinfo", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": "imapnamespaceinfo" + }, + { + "label": "syncDebugFormatImapSearchCriteria()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L50", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_syncdebugformatimapsearchcriteria", + "community": 30, + "community_name": "Email Providers", + "norm_label": "syncdebugformatimapsearchcriteria()" + }, + { + "label": "normalizeImapPrefix()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L58", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_normalizeimapprefix", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": "normalizeimapprefix()" + }, + { + "label": "imapMoveErrWarrantsCopyDeleteFallback()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L65", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapmoveerrwarrantscopydeletefallback", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": "imapmoveerrwarrantscopydeletefallback()" + }, + { + "label": "IMAP_SPECIAL_USE_ANCHORS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L78", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imap_special_use_anchors", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": "imap_special_use_anchors" + }, + { + "label": "imapFolderBasename()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L80", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapfolderbasename", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": "imapfolderbasename()" + }, + { + "label": "imapFolderListHasExactMailbox()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L90", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapfolderlisthasexactmailbox", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": "imapfolderlisthasexactmailbox()" + }, + { + "label": "imapPathLooksLikeStandardAnchor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L110", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imappathlookslikestandardanchor", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": "imappathlookslikestandardanchor()" + }, + { + "label": "inferMailboxHierarchyFromList()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L135", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_infermailboxhierarchyfromlist", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": "infermailboxhierarchyfromlist()" + }, + { + "label": "createSmtpTransport()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L197", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_createsmtptransport", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": "createsmtptransport()" + }, + { + "label": "ImapClientWithNamespaces", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L215", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapclientwithnamespaces", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": "imapclientwithnamespaces" + }, + { + "label": "ImapProvider", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L223", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": "imapprovider" + }, + { + "label": ".connect()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L234", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_connect", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": ".connect()" + }, + { + "label": ".disconnect()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L321", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_disconnect", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": ".disconnect()" + }, + { + "label": ".refreshImapCapabilitiesSnapshot()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L338", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_refreshimapcapabilitiessnapshot", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": ".refreshimapcapabilitiessnapshot()" + }, + { + "label": ".testConnection()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L347", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_testconnection", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": ".testconnection()" + }, + { + "label": ".testSmtpConnection()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L360", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_testsmtpconnection", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": ".testsmtpconnection()" + }, + { + "label": ".listFolders()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L379", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_listfolders", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": ".listfolders()" + }, + { + "label": ".warmImapNamespacePattern()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L418", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_warmimapnamespacepattern", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": ".warmimapnamespacepattern()" + }, + { + "label": ".getNamespaceInfo()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L427", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_getnamespaceinfo", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": ".getnamespaceinfo()" + }, + { + "label": ".logImapNamespacePattern()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L453", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_logimapnamespacepattern", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": ".logimapnamespacepattern()" + }, + { + "label": ".imapResolveMailboxPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L467", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapresolvemailboxpath", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": ".imapresolvemailboxpath()" + }, + { + "label": ".imapExpandMailboxTryPaths()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L490", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapexpandmailboxtrypaths", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": ".imapexpandmailboxtrypaths()" + }, + { + "label": ".imapLifecycleMailboxCandidatesResolved()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L502", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imaplifecyclemailboxcandidatesresolved", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": ".imaplifecyclemailboxcandidatesresolved()" + }, + { + "label": ".fetchMessagesSince()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L533", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_fetchmessagessince", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".fetchmessagessince()" + }, + { + "label": ".fetchMessagesBeforeExclusive()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L695", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_fetchmessagesbeforeexclusive", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".fetchmessagesbeforeexclusive()" + }, + { + "label": ".fetchMessages()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L832", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_fetchmessages", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".fetchmessages()" + }, + { + "label": ".fetchMessageFromFolder()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L960", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_fetchmessagefromfolder", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".fetchmessagefromfolder()" + }, + { + "label": ".fetchMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1118", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_fetchmessage", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".fetchmessage()" + }, + { + "label": ".listAttachments()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1176", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_listattachments", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": ".listattachments()" + }, + { + "label": ".fetchAttachment()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1181", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_fetchattachment", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": ".fetchattachment()" + }, + { + "label": ".markAsRead()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1186", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_markasread", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": ".markasread()" + }, + { + "label": ".markAsUnread()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1203", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_markasunread", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": ".markasunread()" + }, + { + "label": ".setFlagged()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1220", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_setflagged", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": ".setflagged()" + }, + { + "label": ".deleteMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1244", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_deletemessage", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": ".deletemessage()" + }, + { + "label": ".consolidateLifecycleFolders()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1264", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_consolidatelifecyclefolders", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": ".consolidatelifecyclefolders()" + }, + { + "label": ".imapFindFoldersMatchingLegacyLabel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1317", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapfindfoldersmatchinglegacylabel", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": ".imapfindfoldersmatchinglegacylabel()" + }, + { + "label": ".imapSearchAllUidsInCurrentMailbox()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1347", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapsearchalluidsincurrentmailbox", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": ".imapsearchalluidsincurrentmailbox()" + }, + { + "label": ".imapTryMoveUidWithFallback()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1360", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imaptrymoveuidwithfallback", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": ".imaptrymoveuidwithfallback()" + }, + { + "label": ".imapMoveAllMessagesFromLegacyToCanonical()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1412", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapmoveallmessagesfromlegacytocanonical", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": ".imapmoveallmessagesfromlegacytocanonical()" + }, + { + "label": ".imapIsDirectChildOfMailbox()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1440", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapisdirectchildofmailbox", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": ".imapisdirectchildofmailbox()" + }, + { + "label": ".looksLikeSpamMailbox()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1450", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_lookslikespammailbox", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": ".lookslikespammailbox()" + }, + { + "label": ".imapFindExistingMailboxPathForLabel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1459", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapfindexistingmailboxpathforlabel", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": ".imapfindexistingmailboxpathforlabel()" + }, + { + "label": ".expandPullFoldersWithDirectInboxChildren()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1489", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_expandpullfolderswithdirectinboxchildren", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": ".expandpullfolderswithdirectinboxchildren()" + }, + { + "label": ".expandPullFoldersForSync()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1556", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_expandpullfoldersforsync", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": ".expandpullfoldersforsync()" + }, + { + "label": ".debugListRemoteMailboxesWithStatus()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1599", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_debuglistremotemailboxeswithstatus", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": ".debuglistremotemailboxeswithstatus()" + }, + { + "label": ".validateLifecycleRemoteBoxes()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1695", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_validatelifecycleremoteboxes", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": ".validatelifecycleremoteboxes()" + }, + { + "label": ".applyOrchestratorRemoteOperation()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1736", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_applyorchestratorremoteoperation", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": ".applyorchestratorremoteoperation()" + }, + { + "label": ".imapRfcMessageIdSearchVariants()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1807", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imaprfcmessageidsearchvariants", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": ".imaprfcmessageidsearchvariants()" + }, + { + "label": ".imapOpenBox()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1823", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapopenbox", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": ".imapopenbox()" + }, + { + "label": ".normalizeSearchCriteriaForNodeImap()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1847", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_normalizesearchcriteriafornodeimap", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": ".normalizesearchcriteriafornodeimap()" + }, + { + "label": ".imapSearchFirstUid()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1862", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapsearchfirstuid", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": ".imapsearchfirstuid()" + }, + { + "label": ".imapFindUidByHeaderMessageId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1876", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapfinduidbyheadermessageid", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": ".imapfinduidbyheadermessageid()" + }, + { + "label": ".imapUidPresentInMailbox()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1888", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapuidpresentinmailbox", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": ".imapuidpresentinmailbox()" + }, + { + "label": ".imapPathMatchesCanonicalLifecycle()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1902", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imappathmatchescanonicallifecycle", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": ".imappathmatchescanonicallifecycle()" + }, + { + "label": ".imapOrderedSearchMailboxes()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1927", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imaporderedsearchmailboxes", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": ".imaporderedsearchmailboxes()" + }, + { + "label": ".imapLocateMessageForMove()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1963", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imaplocatemessageformove", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": ".imaplocatemessageformove()" + }, + { + "label": ".imapVerifyMessageInMailbox()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1987", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapverifymessageinmailbox", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": ".imapverifymessageinmailbox()" + }, + { + "label": ".imapMoveBetweenMailboxes()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L2004", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapmovebetweenmailboxes", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": ".imapmovebetweenmailboxes()" + }, + { + "label": ".imapEnsureMailbox()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L2074", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapensuremailbox", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": ".imapensuremailbox()" + }, + { + "label": ".sendEmail()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L2105", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_sendemail", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": ".sendemail()" + }, + { + "label": "RFC-6155", + "file_type": "concept", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L77", + "_origin": "ast", + "id": "docref_rfc_6155", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": "rfc-6155" + }, + { + "label": "RFC-2342", + "file_type": "concept", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L229", + "_origin": "ast", + "id": "docref_rfc_2342", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": "rfc-2342" + }, + { + "label": "RFC-822", + "file_type": "concept", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L989", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_ts_docref_rfc_822", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": "rfc-822" + }, + { + "label": "TODO: Implement attachment listing - would require more parsing", + "file_type": "rationale", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1177", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_rationale_1177", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": "todo: implement attachment listing - would require more parsing" + }, + { + "label": "TODO: Implement attachment fetching", + "file_type": "rationale", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1182", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imap_rationale_1182", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": "todo: implement attachment fetching" + }, + { + "label": "imapFetchReliable.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imapFetchReliable.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imapfetchreliable", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "imapfetchreliable.ts" + }, + { + "label": "parseEmailAddress()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imapFetchReliable.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imapfetchreliable_parseemailaddress", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "parseemailaddress()" + }, + { + "label": "parseEmailAddresses()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imapFetchReliable.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imapfetchreliable_parseemailaddresses", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "parseemailaddresses()" + }, + { + "label": "imapFetchReliable()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imapFetchReliable.ts", + "source_location": "L48", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_imapfetchreliable_imapfetchreliable", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "imapfetchreliable()" + }, + { + "label": "outlook.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_outlook", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "outlook.ts" + }, + { + "label": "OUTLOOK_OPAQUE_UNPROVEN_CODE", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L32", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_outlook_outlook_opaque_unproven_code", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "outlook_opaque_unproven_code" + }, + { + "label": "OutlookOpaqueUnprovenError", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L33", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookopaqueunprovenerror", + "community": 30, + "community_name": "Email Providers", + "norm_label": "outlookopaqueunprovenerror" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookopaqueunprovenerror_constructor", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".constructor()" + }, + { + "label": "OUTLOOK_SCOPES", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L65", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_outlook_outlook_scopes", + "community": 30, + "community_name": "Email Providers", + "norm_label": "outlook_scopes" + }, + { + "label": "getOutlookOAuthConfigPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L79", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_outlook_getoutlookoauthconfigpath", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "getoutlookoauthconfigpath()" + }, + { + "label": "loadOutlookOAuthConfig()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L86", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_outlook_loadoutlookoauthconfig", + "community": 105, + "community_name": "Email Providers #105", + "norm_label": "loadoutlookoauthconfig()" + }, + { + "label": "saveOutlookOAuthConfig()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L107", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_outlook_saveoutlookoauthconfig", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "saveoutlookoauthconfig()" + }, + { + "label": "OutlookProvider", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L120", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider", + "community": 30, + "community_name": "Email Providers", + "norm_label": "outlookprovider" + }, + { + "label": ".connect()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L128", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_connect", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".connect()" + }, + { + "label": ".disconnect()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L146", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_disconnect", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".disconnect()" + }, + { + "label": ".testConnection()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L155", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_testconnection", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".testconnection()" + }, + { + "label": ".listFolders()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L174", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_listfolders", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".listfolders()" + }, + { + "label": ".normalizeGraphMailFolderId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L191", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_normalizegraphmailfolderid", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".normalizegraphmailfolderid()" + }, + { + "label": ".buildMessagesODataQuery()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L200", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_buildmessagesodataquery", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".buildmessagesodataquery()" + }, + { + "label": ".fetchMessagesListResponse()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L220", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_fetchmessageslistresponse", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".fetchmessageslistresponse()" + }, + { + "label": ".fetchAllMessagesTwoPhase()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L274", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_fetchallmessagestwophase", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".fetchallmessagestwophase()" + }, + { + "label": ".fetchMessages()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L368", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_fetchmessages", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".fetchmessages()" + }, + { + "label": ".fetchMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L452", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_fetchmessage", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".fetchmessage()" + }, + { + "label": ".outlookListStub()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L482", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_outlookliststub", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".outlookliststub()" + }, + { + "label": ".fetchMessageOpaque()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L500", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_fetchmessageopaque", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".fetchmessageopaque()" + }, + { + "label": ".listAttachments()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L546", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_listattachments", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".listattachments()" + }, + { + "label": ".fetchAttachment()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L563", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_fetchattachment", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".fetchattachment()" + }, + { + "label": ".markAsRead()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L581", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_markasread", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".markasread()" + }, + { + "label": ".markAsUnread()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L587", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_markasunread", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".markasunread()" + }, + { + "label": ".setFlagged()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L593", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_setflagged", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".setflagged()" + }, + { + "label": ".deleteMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L601", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_deletemessage", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".deletemessage()" + }, + { + "label": ".applyOrchestratorRemoteOperation()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L614", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_applyorchestratorremoteoperation", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".applyorchestratorremoteoperation()" + }, + { + "label": ".ensureOutlookOrchestratorFolder()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L666", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_ensureoutlookorchestratorfolder", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".ensureoutlookorchestratorfolder()" + }, + { + "label": ".sendEmail()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L710", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_sendemail", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".sendemail()" + }, + { + "label": ".startOAuthFlow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L762", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_startoauthflow", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": ".startoauthflow()" + }, + { + "label": ".getUserEmail()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L848", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_getuseremail", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".getuseremail()" + }, + { + "label": ".buildAuthUrl()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L860", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_buildauthurl", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": ".buildauthurl()" + }, + { + "label": ".exchangeCodeForTokens()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L882", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_exchangecodefortokens", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": ".exchangecodefortokens()" + }, + { + "label": ".isTokenExpired()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L962", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_istokenexpired", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".istokenexpired()" + }, + { + "label": ".refreshAccessToken()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L966", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_refreshaccesstoken", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".refreshaccesstoken()" + }, + { + "label": ".graphSingleRequest()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L1044", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_graphsinglerequest", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".graphsinglerequest()" + }, + { + "label": ".getRetryAfterSeconds()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L1094", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_getretryafterseconds", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".getretryafterseconds()" + }, + { + "label": ".graphRequestWithRetries()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L1105", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_graphrequestwithretries", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".graphrequestwithretries()" + }, + { + "label": ".graphApiRequestAbsolute()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L1165", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_graphapirequestabsolute", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".graphapirequestabsolute()" + }, + { + "label": ".graphApiRequest()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L1188", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_graphapirequest", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".graphapirequest()" + }, + { + "label": ".outlookPrefersRawValue()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L1216", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_outlookprefersrawvalue", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".outlookprefersrawvalue()" + }, + { + "label": ".graphApiRequestRaw()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L1220", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_graphapirequestraw", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".graphapirequestraw()" + }, + { + "label": ".parseOutlookMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L1252", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_parseoutlookmessage", + "community": 30, + "community_name": "Email Providers", + "norm_label": ".parseoutlookmessage()" + }, + { + "label": "RFC-822", + "file_type": "concept", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L1204", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_outlook_ts_docref_rfc_822", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "rfc-822" + }, + { + "label": "zoho.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_zoho", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "zoho.ts" + }, + { + "label": "ZOHO_MAIL_SCOPES", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L30", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_zoho_zoho_mail_scopes", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "zoho_mail_scopes" + }, + { + "label": "accountsHost()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L41", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_zoho_accountshost", + "community": 169, + "community_name": "Email Providers #169", + "norm_label": "accountshost()" + }, + { + "label": "mailHost()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_zoho_mailhost", + "community": 169, + "community_name": "Email Providers #169", + "norm_label": "mailhost()" + }, + { + "label": "buildZohoCompositeMessageId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L50", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_zoho_buildzohocompositemessageid", + "community": 169, + "community_name": "Email Providers #169", + "norm_label": "buildzohocompositemessageid()" + }, + { + "label": "parseZohoCompositeMessageId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_zoho_parsezohocompositemessageid", + "community": 169, + "community_name": "Email Providers #169", + "norm_label": "parsezohocompositemessageid()" + }, + { + "label": "unwrapData()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L67", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_zoho_unwrapdata", + "community": 169, + "community_name": "Email Providers #169", + "norm_label": "unwrapdata()" + }, + { + "label": "ZohoProvider", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L73", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider", + "community": 169, + "community_name": "Email Providers #169", + "norm_label": "zohoprovider" + }, + { + "label": ".mailApiBase()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L85", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_mailapibase", + "community": 169, + "community_name": "Email Providers #169", + "norm_label": ".mailapibase()" + }, + { + "label": ".connect()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L89", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_connect", + "community": 169, + "community_name": "Email Providers #169", + "norm_label": ".connect()" + }, + { + "label": ".disconnect()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L108", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_disconnect", + "community": 169, + "community_name": "Email Providers #169", + "norm_label": ".disconnect()" + }, + { + "label": ".isTokenExpired()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L119", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_istokenexpired", + "community": 169, + "community_name": "Email Providers #169", + "norm_label": ".istokenexpired()" + }, + { + "label": ".ensureZohoAccountId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L123", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_ensurezohoaccountid", + "community": 169, + "community_name": "Email Providers #169", + "norm_label": ".ensurezohoaccountid()" + }, + { + "label": ".zohoApiRequest()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L152", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_zohoapirequest", + "community": 169, + "community_name": "Email Providers #169", + "norm_label": ".zohoapirequest()" + }, + { + "label": ".refreshAccessToken()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L209", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_refreshaccesstoken", + "community": 169, + "community_name": "Email Providers #169", + "norm_label": ".refreshaccesstoken()" + }, + { + "label": ".testConnection()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L275", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_testconnection", + "community": 169, + "community_name": "Email Providers #169", + "norm_label": ".testconnection()" + }, + { + "label": ".listFolders()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L287", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_listfolders", + "community": 169, + "community_name": "Email Providers #169", + "norm_label": ".listfolders()" + }, + { + "label": ".parseZohoAddress()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L307", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_parsezohoaddress", + "community": 169, + "community_name": "Email Providers #169", + "norm_label": ".parsezohoaddress()" + }, + { + "label": ".parseZohoMessageContent()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L312", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_parsezohomessagecontent", + "community": 169, + "community_name": "Email Providers #169", + "norm_label": ".parsezohomessagecontent()" + }, + { + "label": ".fetchMessages()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L378", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_fetchmessages", + "community": 169, + "community_name": "Email Providers #169", + "norm_label": ".fetchmessages()" + }, + { + "label": ".fetchMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L446", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_fetchmessage", + "community": 169, + "community_name": "Email Providers #169", + "norm_label": ".fetchmessage()" + }, + { + "label": ".listAttachments()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L478", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_listattachments", + "community": 169, + "community_name": "Email Providers #169", + "norm_label": ".listattachments()" + }, + { + "label": ".fetchAttachment()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L505", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_fetchattachment", + "community": 169, + "community_name": "Email Providers #169", + "norm_label": ".fetchattachment()" + }, + { + "label": ".markAsRead()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L524", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_markasread", + "community": 169, + "community_name": "Email Providers #169", + "norm_label": ".markasread()" + }, + { + "label": ".markAsUnread()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L539", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_markasunread", + "community": 169, + "community_name": "Email Providers #169", + "norm_label": ".markasunread()" + }, + { + "label": ".setFlagged()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L554", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_setflagged", + "community": 169, + "community_name": "Email Providers #169", + "norm_label": ".setflagged()" + }, + { + "label": ".sendEmail()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L567", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_sendemail", + "community": 169, + "community_name": "Email Providers #169", + "norm_label": ".sendemail()" + }, + { + "label": ".deleteMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L588", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_deletemessage", + "community": 169, + "community_name": "Email Providers #169", + "norm_label": ".deletemessage()" + }, + { + "label": ".applyOrchestratorRemoteOperation()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L604", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_applyorchestratorremoteoperation", + "community": 169, + "community_name": "Email Providers #169", + "norm_label": ".applyorchestratorremoteoperation()" + }, + { + "label": ".ensureZohoOrchestratorFolder()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L650", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_ensurezohoorchestratorfolder", + "community": 169, + "community_name": "Email Providers #169", + "norm_label": ".ensurezohoorchestratorfolder()" + }, + { + "label": ".startOAuthFlow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L705", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_startoauthflow", + "community": 169, + "community_name": "Email Providers #169", + "norm_label": ".startoauthflow()" + }, + { + "label": ".buildAuthUrl()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L793", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_buildauthurl", + "community": 169, + "community_name": "Email Providers #169", + "norm_label": ".buildauthurl()" + }, + { + "label": ".exchangeCodeForTokens()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L805", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_exchangecodefortokens", + "community": 169, + "community_name": "Email Providers #169", + "norm_label": ".exchangecodefortokens()" + }, + { + "label": "remoteDeletion.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/remoteDeletion.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_remotedeletion", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "remotedeletion.ts" + }, + { + "label": "isDirectBeapRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/remoteDeletion.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_remotedeletion_isdirectbeaprow", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "isdirectbeaprow()" + }, + { + "label": "purgeDirectBeapMessageLocal()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/remoteDeletion.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_remotedeletion_purgedirectbeapmessagelocal", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "purgedirectbeapmessagelocal()" + }, + { + "label": "deleteAllDirectBeapMessages()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/remoteDeletion.ts", + "source_location": "L90", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_remotedeletion_deletealldirectbeapmessages", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "deletealldirectbeapmessages()" + }, + { + "label": "QueueRemoteDeletionResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/remoteDeletion.ts", + "source_location": "L110", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_remotedeletion_queueremotedeletionresult", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "queueremotedeletionresult" + }, + { + "label": "getLifecycleRemoteDeleteSkipReason()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/remoteDeletion.ts", + "source_location": "L118", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_remotedeletion_getlifecycleremotedeleteskipreason", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "getlifecycleremotedeleteskipreason()" + }, + { + "label": "BulkQueueDeletionResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/remoteDeletion.ts", + "source_location": "L132", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_remotedeletion_bulkqueuedeletionresult", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "bulkqueuedeletionresult" + }, + { + "label": "ExecutePendingDeletionsResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/remoteDeletion.ts", + "source_location": "L137", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_remotedeletion_executependingdeletionsresult", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "executependingdeletionsresult" + }, + { + "label": "queueRemoteDeletion()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/remoteDeletion.ts", + "source_location": "L147", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_remotedeletion_queueremotedeletion", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "queueremotedeletion()" + }, + { + "label": "cancelRemoteDeletion()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/remoteDeletion.ts", + "source_location": "L236", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_remotedeletion_cancelremotedeletion", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "cancelremotedeletion()" + }, + { + "label": "executePendingDeletions()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/remoteDeletion.ts", + "source_location": "L261", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_remotedeletion_executependingdeletions", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "executependingdeletions()" + }, + { + "label": "bulkQueueDeletion()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/remoteDeletion.ts", + "source_location": "L328", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_remotedeletion_bulkqueuedeletion", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "bulkqueuedeletion()" + }, + { + "label": "resolveConnectOAuthScopeRole.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/resolveConnectOAuthScopeRole.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_resolveconnectoauthscoperole", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "resolveconnectoauthscoperole.ts" + }, + { + "label": "isEffectiveSandboxNode()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/resolveConnectOAuthScopeRole.ts", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_resolveconnectoauthscoperole_iseffectivesandboxnode", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "iseffectivesandboxnode()" + }, + { + "label": "resolveConnectOAuthScopeRole()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/resolveConnectOAuthScopeRole.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_resolveconnectoauthscoperole_resolveconnectoauthscoperole", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "resolveconnectoauthscoperole()" + }, + { + "label": "roleAwareConsent.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/roleAwareConsent.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_roleawareconsent", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "roleawareconsent.ts" + }, + { + "label": "ConsentRole", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/roleAwareConsent.ts", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_roleawareconsent_consentrole", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "consentrole" + }, + { + "label": "ConsentProvider", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/roleAwareConsent.ts", + "source_location": "L29", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_roleawareconsent_consentprovider", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "consentprovider" + }, + { + "label": "RoleConsentResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/roleAwareConsent.ts", + "source_location": "L31", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_roleawareconsent_roleconsentresult", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "roleconsentresult" + }, + { + "label": "FlowTokens", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/roleAwareConsent.ts", + "source_location": "L43", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_roleawareconsent_flowtokens", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "flowtokens" + }, + { + "label": "ConsentDeps", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/roleAwareConsent.ts", + "source_location": "L52", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_roleawareconsent_consentdeps", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "consentdeps" + }, + { + "label": "SCOPE_ROLE_FOR", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/roleAwareConsent.ts", + "source_location": "L57", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_roleawareconsent_scope_role_for", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "scope_role_for" + }, + { + "label": "defaultGmailFlow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/roleAwareConsent.ts", + "source_location": "L59", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_roleawareconsent_defaultgmailflow", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "defaultgmailflow()" + }, + { + "label": "defaultOutlookFlow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/roleAwareConsent.ts", + "source_location": "L65", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_roleawareconsent_defaultoutlookflow", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "defaultoutlookflow()" + }, + { + "label": "runRoleScopedConsent()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/roleAwareConsent.ts", + "source_location": "L76", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_roleawareconsent_runrolescopedconsent", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "runrolescopedconsent()" + }, + { + "label": "connectSendClient()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/roleAwareConsent.ts", + "source_location": "L141", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_roleawareconsent_connectsendclient", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "connectsendclient()" + }, + { + "label": "connectReadClient()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/roleAwareConsent.ts", + "source_location": "L158", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_roleawareconsent_connectreadclient", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "connectreadclient()" + }, + { + "label": "plannedScopesForRole()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/roleAwareConsent.ts", + "source_location": "L166", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_roleawareconsent_plannedscopesforrole", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "plannedscopesforrole()" + }, + { + "label": "roleScopedTokenStore.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "rolescopedtokenstore.ts" + }, + { + "label": "TokenRole", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L44", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_tokenrole", + "community": 85, + "community_name": "Email Providers #85", + "norm_label": "tokenrole" + }, + { + "label": "RoleScopedTokenRecord", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L46", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_rolescopedtokenrecord", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "rolescopedtokenrecord" + }, + { + "label": "StoredEnvelope", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L57", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_storedenvelope", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "storedenvelope" + }, + { + "label": "__setRoleTokenStoreBaseDirForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L70", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_setroletokenstorebasedirfortests", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "__setroletokenstorebasedirfortests()" + }, + { + "label": "baseDir()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L74", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_basedir", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "basedir()" + }, + { + "label": "safeComponent()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L82", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_safecomponent", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "safecomponent()" + }, + { + "label": "fileFor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L86", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_filefor", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "filefor()" + }, + { + "label": "ensureDir()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L90", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_ensuredir", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "ensuredir()" + }, + { + "label": "roleLog()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L95", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_rolelog", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "rolelog()" + }, + { + "label": "saveRoleScopedTokens()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L105", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_saverolescopedtokens", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "saverolescopedtokens()" + }, + { + "label": "loadRoleScopedTokens()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L125", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_loadrolescopedtokens", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "loadrolescopedtokens()" + }, + { + "label": "hasRoleScopedTokens()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L144", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_hasrolescopedtokens", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "hasrolescopedtokens()" + }, + { + "label": "deleteRoleScopedTokens()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L152", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_deleterolescopedtokens", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "deleterolescopedtokens()" + }, + { + "label": "migrateRoleScopedTokens()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L164", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_migraterolescopedtokens", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "migraterolescopedtokens()" + }, + { + "label": "listRoleScopedTokenRoles()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L182", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_listrolescopedtokenroles", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "listrolescopedtokenroles()" + }, + { + "label": "listReadScopedAccountIds()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L191", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_listreadscopedaccountids", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "listreadscopedaccountids()" + }, + { + "label": "NOTE: single-machine inert ingestion (Prompt 1) keeps using the ONE bundled", + "file_type": "rationale", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L28", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_rationale_28", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "note: single-machine inert ingestion (prompt 1) keeps using the one bundled" + }, + { + "label": "sandboxCloneInboxFilter.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxCloneInboxFilter.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sandboxcloneinboxfilter", + "community": 182, + "community_name": "Email #182", + "norm_label": "sandboxcloneinboxfilter.ts" + }, + { + "label": "SANDBOX_CLONE_INBOX_BODY_BANNER", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxCloneInboxFilter.ts", + "source_location": "L12", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sandboxcloneinboxfilter_sandbox_clone_inbox_body_banner", + "community": 182, + "community_name": "Email #182", + "norm_label": "sandbox_clone_inbox_body_banner" + }, + { + "label": "stringHintsSandboxClone()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxCloneInboxFilter.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sandboxcloneinboxfilter_stringhintssandboxclone", + "community": 182, + "community_name": "Email #182", + "norm_label": "stringhintssandboxclone()" + }, + { + "label": "isPersistedInboxRowSandboxClone()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxCloneInboxFilter.ts", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sandboxcloneinboxfilter_ispersistedinboxrowsandboxclone", + "community": 182, + "community_name": "Email #182", + "norm_label": "ispersistedinboxrowsandboxclone()" + }, + { + "label": "sandboxCloneInboxSqlPredicate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxCloneInboxFilter.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sandboxcloneinboxfilter_sandboxcloneinboxsqlpredicate", + "community": 182, + "community_name": "Email #182", + "norm_label": "sandboxcloneinboxsqlpredicate()" + }, + { + "label": "sandboxEmailFetch.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sandboxemailfetch", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "sandboxemailfetch.ts" + }, + { + "label": "fetchLog()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_fetchlog", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "fetchlog()" + }, + { + "label": "oauthConfigFromRoleScopedReadRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_oauthconfigfromrolescopedreadrecord", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "oauthconfigfromrolescopedreadrecord()" + }, + { + "label": "wireSandboxReadProviderTokenRefresh()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L76", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_wiresandboxreadprovidertokenrefresh", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "wiresandboxreadprovidertokenrefresh()" + }, + { + "label": "resolveBuiltinGmailOauthForSandboxFetch()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L101", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_resolvebuiltingmailoauthforsandboxfetch", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "resolvebuiltingmailoauthforsandboxfetch()" + }, + { + "label": "oauthFromLocalGmailCredentials()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L122", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_oauthfromlocalgmailcredentials", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "oauthfromlocalgmailcredentials()" + }, + { + "label": "resolveOauthForSandboxReadFetch()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L141", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_resolveoauthforsandboxreadfetch", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "resolveoauthforsandboxreadfetch()" + }, + { + "label": "fetchOpaqueViaOutlook()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L193", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_fetchopaqueviaoutlook", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "fetchopaqueviaoutlook()" + }, + { + "label": "gmailRawResponseToSandboxMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L278", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_gmailrawresponsetosandboxmessage", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "gmailrawresponsetosandboxmessage()" + }, + { + "label": "fetchOpaqueViaGmail()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L303", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_fetchopaqueviagmail", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "fetchopaqueviagmail()" + }, + { + "label": "RFC-822", + "file_type": "concept", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L6", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_ts_docref_rfc_822", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "rfc-822" + }, + { + "label": "sandboxIngestion.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sandboxingestion", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "sandboxingestion.ts" + }, + { + "label": "SandboxFetchedMessage", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L43", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sandboxingestion_sandboxfetchedmessage", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "sandboxfetchedmessage" + }, + { + "label": "SandboxDeliveryResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L55", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sandboxingestion_sandboxdeliveryresult", + "community": 237, + "community_name": "Critical Jobs Remote Email", + "norm_label": "sandboxdeliveryresult" + }, + { + "label": "SandboxIngestionDeps", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L61", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sandboxingestion_sandboxingestiondeps", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "sandboxingestiondeps" + }, + { + "label": "SandboxIngestionStatus", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L98", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sandboxingestion_sandboxingestionstatus", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "sandboxingestionstatus" + }, + { + "label": "SandboxIngestionResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L105", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sandboxingestion_sandboxingestionresult", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "sandboxingestionresult" + }, + { + "label": "SandboxIngestionOptions", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L119", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sandboxingestion_sandboxingestionoptions", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "sandboxingestionoptions" + }, + { + "label": "sandboxLog()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L125", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sandboxingestion_sandboxlog", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "sandboxlog()" + }, + { + "label": "defaultFetchOpaque()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L130", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sandboxingestion_defaultfetchopaque", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "defaultfetchopaque()" + }, + { + "label": "defaultDeliverToHost()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L136", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sandboxingestion_defaultdelivertohost", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "defaultdelivertohost()" + }, + { + "label": "emptyResult()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L142", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sandboxingestion_emptyresult", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "emptyresult()" + }, + { + "label": "LastPollRecord", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L152", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sandboxingestion_lastpollrecord", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "lastpollrecord" + }, + { + "label": "_lastPollOutcomes", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L157", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sandboxingestion_lastpolloutcomes", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "_lastpolloutcomes" + }, + { + "label": "getLastSandboxPollOutcomes()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L160", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sandboxingestion_getlastsandboxpolloutcomes", + "community": 135, + "community_name": "Email Ingestionpolltrigger", + "norm_label": "getlastsandboxpolloutcomes()" + }, + { + "label": "__resetLastSandboxPollOutcomesForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L165", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sandboxingestion_resetlastsandboxpolloutcomesfortests", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "__resetlastsandboxpolloutcomesfortests()" + }, + { + "label": "mergePollResults()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L169", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sandboxingestion_mergepollresults", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "mergepollresults()" + }, + { + "label": "finalizeAggregatedPollStatus()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L178", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sandboxingestion_finalizeaggregatedpollstatus", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "finalizeaggregatedpollstatus()" + }, + { + "label": "resolvePollableSandboxReadAccountIds()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L189", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sandboxingestion_resolvepollablesandboxreadaccountids", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "resolvepollablesandboxreadaccountids()" + }, + { + "label": "pollOneSandboxReadAccount()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L207", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sandboxingestion_pollonesandboxreadaccount", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "pollonesandboxreadaccount()" + }, + { + "label": "runSandboxIngestionPoll()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L305", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sandboxingestion_runsandboxingestionpoll", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "runsandboxingestionpoll()" + }, + { + "label": "RFC-822", + "file_type": "concept", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L45", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sandboxingestion_ts_docref_rfc_822", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "rfc-822" + }, + { + "label": "sandboxIngestionProduction.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestionProduction.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "sandboxingestionproduction.ts" + }, + { + "label": "SandboxHostDeliveryContext", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestionProduction.ts", + "source_location": "L25", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction_sandboxhostdeliverycontext", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "sandboxhostdeliverycontext" + }, + { + "label": "isValidX25519PubB64()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestionProduction.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction_isvalidx25519pubb64", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "isvalidx25519pubb64()" + }, + { + "label": "findActiveSandboxToHostHandshakeRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestionProduction.ts", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction_findactivesandboxtohosthandshakerecord", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "findactivesandboxtohosthandshakerecord()" + }, + { + "label": "resolveSandboxCustodyPubKeyB64()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestionProduction.ts", + "source_location": "L62", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction_resolvesandboxcustodypubkeyb64", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "resolvesandboxcustodypubkeyb64()" + }, + { + "label": "resolveSandboxHostDeliveryContext()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestionProduction.ts", + "source_location": "L73", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction_resolvesandboxhostdeliverycontext", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "resolvesandboxhostdeliverycontext()" + }, + { + "label": "buildProductionSandboxIngestionDeps()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestionProduction.ts", + "source_location": "L98", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction_buildproductionsandboxingestiondeps", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "buildproductionsandboxingestiondeps()" + }, + { + "label": "sandboxOpaqueFetchRouter.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxOpaqueFetchRouter.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sandboxopaquefetchrouter", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "sandboxopaquefetchrouter.ts" + }, + { + "label": "SandboxFetchUnsupportedProviderError", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxOpaqueFetchRouter.ts", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sandboxopaquefetchrouter_sandboxfetchunsupportedprovidererror", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "sandboxfetchunsupportedprovidererror" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxOpaqueFetchRouter.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sandboxopaquefetchrouter_sandboxfetchunsupportedprovidererror_constructor", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": ".constructor()" + }, + { + "label": "SandboxFetchFailureKind", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxOpaqueFetchRouter.ts", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sandboxopaquefetchrouter_sandboxfetchfailurekind", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "sandboxfetchfailurekind" + }, + { + "label": "classifySandboxFetchFailure()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxOpaqueFetchRouter.ts", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sandboxopaquefetchrouter_classifysandboxfetchfailure", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "classifysandboxfetchfailure()" + }, + { + "label": "fetchOpaqueForProviderAccount()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxOpaqueFetchRouter.ts", + "source_location": "L52", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sandboxopaquefetchrouter_fetchopaqueforprovideraccount", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "fetchopaqueforprovideraccount()" + }, + { + "label": "sanitizer.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sanitizer", + "community": 148, + "community_name": "Email #148", + "norm_label": "sanitizer.ts" + }, + { + "label": "REMOVE_TAGS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L12", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sanitizer_remove_tags", + "community": 148, + "community_name": "Email #148", + "norm_label": "remove_tags" + }, + { + "label": "TRACKING_PATTERNS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L30", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sanitizer_tracking_patterns", + "community": 148, + "community_name": "Email #148", + "norm_label": "tracking_patterns" + }, + { + "label": "HTML_ENTITIES", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L63", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sanitizer_html_entities", + "community": 148, + "community_name": "Email #148", + "norm_label": "html_entities" + }, + { + "label": "decodeHtmlEntities()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L92", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sanitizer_decodehtmlentities", + "community": 148, + "community_name": "Email #148", + "norm_label": "decodehtmlentities()" + }, + { + "label": "isTrackingPixel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L114", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sanitizer_istrackingpixel", + "community": 148, + "community_name": "Email #148", + "norm_label": "istrackingpixel()" + }, + { + "label": "removeDangerousTags()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L121", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sanitizer_removedangeroustags", + "community": 148, + "community_name": "Email #148", + "norm_label": "removedangeroustags()" + }, + { + "label": "removeEventHandlers()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L140", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sanitizer_removeeventhandlers", + "community": 148, + "community_name": "Email #148", + "norm_label": "removeeventhandlers()" + }, + { + "label": "removeDangerousCss()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L149", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sanitizer_removedangerouscss", + "community": 148, + "community_name": "Email #148", + "norm_label": "removedangerouscss()" + }, + { + "label": "removeTrackingPixels()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L161", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sanitizer_removetrackingpixels", + "community": 148, + "community_name": "Email #148", + "norm_label": "removetrackingpixels()" + }, + { + "label": "SKIP_LINK_PATTERNS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L179", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sanitizer_skip_link_patterns", + "community": 148, + "community_name": "Email #148", + "norm_label": "skip_link_patterns" + }, + { + "label": "shouldSkipLink()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L208", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sanitizer_shouldskiplink", + "community": 148, + "community_name": "Email #148", + "norm_label": "shouldskiplink()" + }, + { + "label": "convertLinksToText()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L217", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sanitizer_convertlinkstotext", + "community": 148, + "community_name": "Email #148", + "norm_label": "convertlinkstotext()" + }, + { + "label": "convertBlocksToBreaks()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L252", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sanitizer_convertblockstobreaks", + "community": 148, + "community_name": "Email #148", + "norm_label": "convertblockstobreaks()" + }, + { + "label": "stripAllTags()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L278", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sanitizer_stripalltags", + "community": 148, + "community_name": "Email #148", + "norm_label": "stripalltags()" + }, + { + "label": "cleanWhitespace()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L285", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sanitizer_cleanwhitespace", + "community": 148, + "community_name": "Email #148", + "norm_label": "cleanwhitespace()" + }, + { + "label": "sanitizeHtmlToText()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L305", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sanitizer_sanitizehtmltotext", + "community": 148, + "community_name": "Email #148", + "norm_label": "sanitizehtmltotext()" + }, + { + "label": "sanitizeSubject()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L346", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sanitizer_sanitizesubject", + "community": 148, + "community_name": "Email #148", + "norm_label": "sanitizesubject()" + }, + { + "label": "sanitizeEmailAddress()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L360", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sanitizer_sanitizeemailaddress", + "community": 148, + "community_name": "Email #148", + "norm_label": "sanitizeemailaddress()" + }, + { + "label": "sanitizeDisplayName()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L383", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sanitizer_sanitizedisplayname", + "community": 148, + "community_name": "Email #148", + "norm_label": "sanitizedisplayname()" + }, + { + "label": "generateSnippet()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L400", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sanitizer_generatesnippet", + "community": 148, + "community_name": "Email #148", + "norm_label": "generatesnippet()" + }, + { + "label": "extractPlainText()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L427", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sanitizer_extractplaintext", + "community": 148, + "community_name": "Email #148", + "norm_label": "extractplaintext()" + }, + { + "label": "scamWatchdog.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/scamWatchdog.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_scamwatchdog", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "scamwatchdog.ts" + }, + { + "label": "SCAM_WATCHDOG_JSON_KEYS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/scamWatchdog.ts", + "source_location": "L20", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_scamwatchdog_scam_watchdog_json_keys", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "scam_watchdog_json_keys" + }, + { + "label": "SCAM_WATCHDOG_PROMPT_SECTION", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/scamWatchdog.ts", + "source_location": "L28", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_scamwatchdog_scam_watchdog_prompt_section", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "scam_watchdog_prompt_section" + }, + { + "label": "stripHtmlTags()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/scamWatchdog.ts", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_scamwatchdog_striphtmltags", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "striphtmltags()" + }, + { + "label": "clamp()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/scamWatchdog.ts", + "source_location": "L60", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_scamwatchdog_clamp", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "clamp()" + }, + { + "label": "extractScamWatchdogLinkStrings()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/scamWatchdog.ts", + "source_location": "L73", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_scamwatchdog_extractscamwatchdoglinkstrings", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "extractscamwatchdoglinkstrings()" + }, + { + "label": "buildScamWatchdogUserContext()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/scamWatchdog.ts", + "source_location": "L111", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_scamwatchdog_buildscamwatchdogusercontext", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "buildscamwatchdogusercontext()" + }, + { + "label": "appendScamWatchdogToSystemPrompt()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/scamWatchdog.ts", + "source_location": "L121", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_scamwatchdog_appendscamwatchdogtosystemprompt", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "appendscamwatchdogtosystemprompt()" + }, + { + "label": "sealedContentUpdate.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sealedContentUpdate.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sealedcontentupdate", + "community": 343, + "community_name": "Email Sealed Storage", + "norm_label": "sealedcontentupdate.ts" + }, + { + "label": "ResealResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sealedContentUpdate.ts", + "source_location": "L38", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sealedcontentupdate_resealresult", + "community": 343, + "community_name": "Email Sealed Storage", + "norm_label": "resealresult" + }, + { + "label": "InboxSealedRow", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sealedContentUpdate.ts", + "source_location": "L43", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sealedcontentupdate_inboxsealedrow", + "community": 343, + "community_name": "Email Sealed Storage", + "norm_label": "inboxsealedrow" + }, + { + "label": "PdfExtractionData", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sealedContentUpdate.ts", + "source_location": "L49", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sealedcontentupdate_pdfextractiondata", + "community": 343, + "community_name": "Email Sealed Storage", + "norm_label": "pdfextractiondata" + }, + { + "label": "DecryptedQbeapResealParams", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sealedContentUpdate.ts", + "source_location": "L64", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sealedcontentupdate_decryptedqbeapresealparams", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "decryptedqbeapresealparams" + }, + { + "label": "readCanonicalForReseal()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sealedContentUpdate.ts", + "source_location": "L166", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sealedcontentupdate_readcanonicalforreseal", + "community": 343, + "community_name": "Email Sealed Storage", + "norm_label": "readcanonicalforreseal()" + }, + { + "label": "parseCanonical()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sealedContentUpdate.ts", + "source_location": "L205", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sealedcontentupdate_parsecanonical", + "community": 343, + "community_name": "Email Sealed Storage", + "norm_label": "parsecanonical()" + }, + { + "label": "buildProvenance()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sealedContentUpdate.ts", + "source_location": "L214", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sealedcontentupdate_buildprovenance", + "community": 343, + "community_name": "Email Sealed Storage", + "norm_label": "buildprovenance()" + }, + { + "label": "resealWithAiAnalysis()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sealedContentUpdate.ts", + "source_location": "L244", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sealedcontentupdate_resealwithaianalysis", + "community": 343, + "community_name": "Email Sealed Storage", + "norm_label": "resealwithaianalysis()" + }, + { + "label": "resealWithPdfExtraction()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sealedContentUpdate.ts", + "source_location": "L335", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sealedcontentupdate_resealwithpdfextraction", + "community": 343, + "community_name": "Email Sealed Storage", + "norm_label": "resealwithpdfextraction()" + }, + { + "label": "resealWithDecryptedContent()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/sealedContentUpdate.ts", + "source_location": "L469", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_sealedcontentupdate_resealwithdecryptedcontent", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "resealwithdecryptedcontent()" + }, + { + "label": "secure-storage.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/secure-storage.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_secure_storage", + "community": 105, + "community_name": "Email Providers #105", + "norm_label": "secure-storage.ts" + }, + { + "label": "DEBUG_EMAIL_SECURE_STORAGE", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/secure-storage.ts", + "source_location": "L13", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_secure_storage_debug_email_secure_storage", + "community": 105, + "community_name": "Email Providers #105", + "norm_label": "debug_email_secure_storage" + }, + { + "label": "secureStorageDebug()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/secure-storage.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_secure_storage_securestoragedebug", + "community": 105, + "community_name": "Email Providers #105", + "norm_label": "securestoragedebug()" + }, + { + "label": "SecureStorageUnavailableError", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/secure-storage.ts", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_secure_storage_securestorageunavailableerror", + "community": 105, + "community_name": "Email Providers #105", + "norm_label": "securestorageunavailableerror" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/secure-storage.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_secure_storage_securestorageunavailableerror_constructor", + "community": 105, + "community_name": "Email Providers #105", + "norm_label": ".constructor()" + }, + { + "label": "isSecureStorageAvailable()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/secure-storage.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_secure_storage_issecurestorageavailable", + "community": 105, + "community_name": "Email Providers #105", + "norm_label": "issecurestorageavailable()" + }, + { + "label": "logSecureStorageProbe()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/secure-storage.ts", + "source_location": "L48", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_secure_storage_logsecurestorageprobe", + "community": 105, + "community_name": "Email Providers #105", + "norm_label": "logsecurestorageprobe()" + }, + { + "label": "encryptValue()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/secure-storage.ts", + "source_location": "L63", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_secure_storage_encryptvalue", + "community": 105, + "community_name": "Email Providers #105", + "norm_label": "encryptvalue()" + }, + { + "label": "isUnencryptedToken()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/secure-storage.ts", + "source_location": "L86", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_secure_storage_isunencryptedtoken", + "community": 105, + "community_name": "Email Providers #105", + "norm_label": "isunencryptedtoken()" + }, + { + "label": "decryptValue()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/secure-storage.ts", + "source_location": "L98", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_secure_storage_decryptvalue", + "community": 105, + "community_name": "Email Providers #105", + "norm_label": "decryptvalue()" + }, + { + "label": "OAuthTokens", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/secure-storage.ts", + "source_location": "L121", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_secure_storage_oauthtokens", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "oauthtokens" + }, + { + "label": "encryptOAuthTokens()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/secure-storage.ts", + "source_location": "L131", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_secure_storage_encryptoauthtokens", + "community": 55, + "community_name": "Email Critical Jobs", + "norm_label": "encryptoauthtokens()" + }, + { + "label": "decryptOAuthTokens()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/secure-storage.ts", + "source_location": "L157", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_secure_storage_decryptoauthtokens", + "community": 105, + "community_name": "Email Providers #105", + "norm_label": "decryptoauthtokens()" + }, + { + "label": "syncOrchestrator.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "syncorchestrator.ts" + }, + { + "label": "broadcastImapCredentialError()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_syncorchestrator_broadcastimapcredentialerror", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "broadcastimapcredentialerror()" + }, + { + "label": "SyncAccountOptions", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L71", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_syncorchestrator_syncaccountoptions", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "syncaccountoptions" + }, + { + "label": "SyncResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L92", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_syncorchestrator_syncresult", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "syncresult" + }, + { + "label": "EmailSyncStateUpdates", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L138", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_syncorchestrator_emailsyncstateupdates", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "emailsyncstateupdates" + }, + { + "label": "updateSyncState()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L154", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_syncorchestrator_updatesyncstate", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "updatesyncstate()" + }, + { + "label": "getExistingEmailMessageIds()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L200", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_syncorchestrator_getexistingemailmessageids", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "getexistingemailmessageids()" + }, + { + "label": "getOldestInboxReceivedAtIso()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L213", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_syncorchestrator_getoldestinboxreceivedatiso", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "getoldestinboxreceivedatiso()" + }, + { + "label": "maybeRunImapLegacyFolderConsolidation()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L234", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_syncorchestrator_mayberunimaplegacyfolderconsolidation", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": "mayberunimaplegacyfolderconsolidation()" + }, + { + "label": "mapToRawEmailMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L277", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_syncorchestrator_maptorawemailmessage", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "maptorawemailmessage()" + }, + { + "label": "syncChains", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L339", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_syncorchestrator_syncchains", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "syncchains" + }, + { + "label": "syncChainTimestamps", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L340", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_syncorchestrator_syncchaintimestamps", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "syncchaintimestamps" + }, + { + "label": "consecutiveZeroListingPulls", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L343", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_syncorchestrator_consecutivezerolistingpulls", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "consecutivezerolistingpulls" + }, + { + "label": "clearConsecutiveZeroListingPulls()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L355", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_syncorchestrator_clearconsecutivezerolistingpulls", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "clearconsecutivezerolistingpulls()" + }, + { + "label": "notePullOutcomeForStuckDetection()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L361", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_syncorchestrator_notepulloutcomeforstuckdetection", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "notepulloutcomeforstuckdetection()" + }, + { + "label": "syncAccountEmails()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L400", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_syncorchestrator_syncaccountemails", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "syncaccountemails()" + }, + { + "label": "syncAccountEmailsImpl()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L450", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_syncorchestrator_syncaccountemailsimpl", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "syncaccountemailsimpl()" + }, + { + "label": "startAutoSync()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L1115", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_syncorchestrator_startautosync", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "startautosync()" + }, + { + "label": "syncPullLock.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/syncPullLock.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_syncpulllock", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "syncpulllock.ts" + }, + { + "label": "pullActiveSince", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/syncPullLock.ts", + "source_location": "L12", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_syncpulllock_pullactivesince", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "pullactivesince" + }, + { + "label": "isPullActive()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/syncPullLock.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_syncpulllock_ispullactive", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "ispullactive()" + }, + { + "label": "markPullActive()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/syncPullLock.ts", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_syncpulllock_markpullactive", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "markpullactive()" + }, + { + "label": "markPullInactive()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/syncPullLock.ts", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_syncpulllock_markpullinactive", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "markpullinactive()" + }, + { + "label": "clearAllPullActiveLocks()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/syncPullLock.ts", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_syncpulllock_clearallpullactivelocks", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "clearallpullactivelocks()" + }, + { + "label": "email/types.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "email/types.ts" + }, + { + "label": "EmailProvider", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L16", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types_emailprovider", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "emailprovider" + }, + { + "label": "AuthType", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L25", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types_authtype", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "authtype" + }, + { + "label": "SecurityMode", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L33", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types_securitymode", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": "securitymode" + }, + { + "label": "ImapPreset", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L41", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types_imappreset", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "imappreset" + }, + { + "label": "CustomImapSmtpConnectPayload", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L57", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types_customimapsmtpconnectpayload", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "customimapsmtpconnectpayload" + }, + { + "label": "ImapLifecycleValidationEntry", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L83", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types_imaplifecyclevalidationentry", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": "imaplifecyclevalidationentry" + }, + { + "label": "ImapLifecycleValidationResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L92", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types_imaplifecyclevalidationresult", + "community": 68, + "community_name": "Email Providers Domain", + "norm_label": "imaplifecyclevalidationresult" + }, + { + "label": "OrchestratorRemoteNamesInput", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L101", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types_orchestratorremotenamesinput", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "orchestratorremotenamesinput" + }, + { + "label": "IMAP_PRESETS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L121", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types_imap_presets", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "imap_presets" + }, + { + "label": "ProviderAccountCapabilities", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L220", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types_provideraccountcapabilities", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "provideraccountcapabilities" + }, + { + "label": "ProviderMailboxSlice", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L254", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types_providermailboxslice", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "providermailboxslice" + }, + { + "label": "EmailAccountConfig", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L274", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "emailaccountconfig" + }, + { + "label": "EmailAccountMailboxSummary", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L413", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types_emailaccountmailboxsummary", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "emailaccountmailboxsummary" + }, + { + "label": "EmailAccountInfo", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L424", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types_emailaccountinfo", + "community": 48, + "community_name": "Email Domain", + "norm_label": "emailaccountinfo" + }, + { + "label": "ImapReconnectHints", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L466", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types_imapreconnecthints", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "imapreconnecthints" + }, + { + "label": "EmailFlags", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L493", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types_emailflags", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "emailflags" + }, + { + "label": "SanitizedMessage", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L507", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types_sanitizedmessage", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "sanitizedmessage" + }, + { + "label": "SanitizedMessageDetail", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L564", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types_sanitizedmessagedetail", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "sanitizedmessagedetail" + }, + { + "label": "AttachmentMeta", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L604", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types_attachmentmeta", + "community": 201, + "community_name": "Email #201", + "norm_label": "attachmentmeta" + }, + { + "label": "ExtractedAttachmentText", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L630", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types_extractedattachmenttext", + "community": 148, + "community_name": "Email #148", + "norm_label": "extractedattachmenttext" + }, + { + "label": "MessageSearchOptions", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L651", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types_messagesearchoptions", + "community": 30, + "community_name": "Email Providers", + "norm_label": "messagesearchoptions" + }, + { + "label": "EmailAttachment", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L704", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types_emailattachment", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "emailattachment" + }, + { + "label": "SendEmailPayload", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L716", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types_sendemailpayload", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "sendemailpayload" + }, + { + "label": "SendResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L745", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types_sendresult", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "sendresult" + }, + { + "label": "SyncStatus", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L758", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types_syncstatus", + "community": 48, + "community_name": "Email Domain", + "norm_label": "syncstatus" + }, + { + "label": "NewEmailEvent", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L774", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types_newemailevent", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "newemailevent" + }, + { + "label": "EmailErrorCode", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L788", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types_emailerrorcode", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "emailerrorcode" + }, + { + "label": "EmailGatewayError", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L804", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types_emailgatewayerror", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "emailgatewayerror" + }, + { + "label": "IEmailGateway", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L819", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types_iemailgateway", + "community": 202, + "community_name": "Email #202", + "norm_label": "iemailgateway" + }, + { + "label": ".listAccounts()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L821", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types_iemailgateway_listaccounts", + "community": 202, + "community_name": "Email #202", + "norm_label": ".listaccounts()" + }, + { + "label": ".getAccount()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L822", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types_iemailgateway_getaccount", + "community": 202, + "community_name": "Email #202", + "norm_label": ".getaccount()" + }, + { + "label": ".addAccount()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L823", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types_iemailgateway_addaccount", + "community": 202, + "community_name": "Email #202", + "norm_label": ".addaccount()" + }, + { + "label": ".updateAccount()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L824", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types_iemailgateway_updateaccount", + "community": 202, + "community_name": "Email #202", + "norm_label": ".updateaccount()" + }, + { + "label": ".patchAccountSyncPreferences()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L825", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types_iemailgateway_patchaccountsyncpreferences", + "community": 202, + "community_name": "Email #202", + "norm_label": ".patchaccountsyncpreferences()" + }, + { + "label": ".setProcessingPaused()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L830", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types_iemailgateway_setprocessingpaused", + "community": 202, + "community_name": "Email #202", + "norm_label": ".setprocessingpaused()" + }, + { + "label": ".setDeleteFromProviderOnLocalDelete()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L831", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types_iemailgateway_setdeletefromprovideronlocaldelete", + "community": 202, + "community_name": "Email #202", + "norm_label": ".setdeletefromprovideronlocaldelete()" + }, + { + "label": ".deleteAccount()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L832", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types_iemailgateway_deleteaccount", + "community": 202, + "community_name": "Email #202", + "norm_label": ".deleteaccount()" + }, + { + "label": ".testConnection()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L833", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types_iemailgateway_testconnection", + "community": 202, + "community_name": "Email #202", + "norm_label": ".testconnection()" + }, + { + "label": ".getImapReconnectHints()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L834", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types_iemailgateway_getimapreconnecthints", + "community": 202, + "community_name": "Email #202", + "norm_label": ".getimapreconnecthints()" + }, + { + "label": ".updateImapCredentials()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L835", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types_iemailgateway_updateimapcredentials", + "community": 202, + "community_name": "Email #202", + "norm_label": ".updateimapcredentials()" + }, + { + "label": ".listMessages()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L841", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types_iemailgateway_listmessages", + "community": 202, + "community_name": "Email #202", + "norm_label": ".listmessages()" + }, + { + "label": ".getMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L842", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types_iemailgateway_getmessage", + "community": 202, + "community_name": "Email #202", + "norm_label": ".getmessage()" + }, + { + "label": ".markAsRead()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L843", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types_iemailgateway_markasread", + "community": 202, + "community_name": "Email #202", + "norm_label": ".markasread()" + }, + { + "label": ".markAsUnread()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L844", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types_iemailgateway_markasunread", + "community": 202, + "community_name": "Email #202", + "norm_label": ".markasunread()" + }, + { + "label": ".flagMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L845", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types_iemailgateway_flagmessage", + "community": 202, + "community_name": "Email #202", + "norm_label": ".flagmessage()" + }, + { + "label": ".listAttachments()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L848", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types_iemailgateway_listattachments", + "community": 202, + "community_name": "Email #202", + "norm_label": ".listattachments()" + }, + { + "label": ".extractAttachmentText()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L849", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types_iemailgateway_extractattachmenttext", + "community": 202, + "community_name": "Email #202", + "norm_label": ".extractattachmenttext()" + }, + { + "label": ".sendReply()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L852", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types_iemailgateway_sendreply", + "community": 202, + "community_name": "Email #202", + "norm_label": ".sendreply()" + }, + { + "label": ".sendEmail()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L853", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types_iemailgateway_sendemail", + "community": 202, + "community_name": "Email #202", + "norm_label": ".sendemail()" + }, + { + "label": ".syncAccount()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L856", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types_iemailgateway_syncaccount", + "community": 202, + "community_name": "Email #202", + "norm_label": ".syncaccount()" + }, + { + "label": ".getSyncStatus()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L857", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types_iemailgateway_getsyncstatus", + "community": 202, + "community_name": "Email #202", + "norm_label": ".getsyncstatus()" + }, + { + "label": ".getOAuthUrl()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L860", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types_iemailgateway_getoauthurl", + "community": 202, + "community_name": "Email #202", + "norm_label": ".getoauthurl()" + }, + { + "label": ".handleOAuthCallback()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L861", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types_iemailgateway_handleoauthcallback", + "community": 202, + "community_name": "Email #202", + "norm_label": ".handleoauthcallback()" + }, + { + "label": ".validateImapLifecycleRemote()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L864", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types_iemailgateway_validateimaplifecycleremote", + "community": 202, + "community_name": "Email #202", + "norm_label": ".validateimaplifecycleremote()" + }, + { + "label": "RFC-822", + "file_type": "concept", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L585", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_email_types_ts_docref_rfc_822", + "community": 14, + "community_name": "Email Gateway Providers", + "norm_label": "rfc-822" + }, + { + "label": "authorizeToolInvocation.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/enforcement/authorizeToolInvocation.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_enforcement_authorizetoolinvocation", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "authorizetoolinvocation.ts" + }, + { + "label": "AuthorizationDenialReason", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/enforcement/authorizeToolInvocation.ts", + "source_location": "L29", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_enforcement_authorizetoolinvocation_authorizationdenialreason", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "authorizationdenialreason" + }, + { + "label": "ToolAuthorizationResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/enforcement/authorizeToolInvocation.ts", + "source_location": "L38", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_enforcement_authorizetoolinvocation_toolauthorizationresult", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "toolauthorizationresult" + }, + { + "label": "ToolInvocationRequest", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/enforcement/authorizeToolInvocation.ts", + "source_location": "L42", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_enforcement_authorizetoolinvocation_toolinvocationrequest", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "toolinvocationrequest" + }, + { + "label": "GRANTED_TOOLS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/enforcement/authorizeToolInvocation.ts", + "source_location": "L52", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_enforcement_authorizetoolinvocation_granted_tools", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "granted_tools" + }, + { + "label": "authorizeToolInvocation()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/enforcement/authorizeToolInvocation.ts", + "source_location": "L63", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_enforcement_authorizetoolinvocation_authorizetoolinvocation", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "authorizetoolinvocation()" + }, + { + "label": "runAuthorization()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/enforcement/authorizeToolInvocation.ts", + "source_location": "L100", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_enforcement_authorizetoolinvocation_runauthorization", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "runauthorization()" + }, + { + "label": "deny()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/enforcement/authorizeToolInvocation.ts", + "source_location": "L162", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_enforcement_authorizetoolinvocation_deny", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "deny()" + }, + { + "label": "executeToolRequest.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/execution/__tests__/executeToolRequest.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_execution_tests_executetoolrequest_test", + "community": 152, + "community_name": "Execution", + "norm_label": "executetoolrequest.test.ts" + }, + { + "label": "makeMockDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/execution/__tests__/executeToolRequest.test.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_execution_tests_executetoolrequest_test_makemockdb", + "community": 152, + "community_name": "Execution", + "norm_label": "makemockdb()" + }, + { + "label": "makeHandshakeRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/execution/__tests__/executeToolRequest.test.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_execution_tests_executetoolrequest_test_makehandshakerow", + "community": 152, + "community_name": "Execution", + "norm_label": "makehandshakerow()" + }, + { + "label": "makeToolRequest()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/execution/__tests__/executeToolRequest.test.ts", + "source_location": "L74", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_execution_tests_executetoolrequest_test_maketoolrequest", + "community": 152, + "community_name": "Execution", + "norm_label": "maketoolrequest()" + }, + { + "label": "noBypass.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/execution/__tests__/noBypass.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_execution_tests_nobypass_test", + "community": 502, + "community_name": "Execution #502", + "norm_label": "nobypass.test.ts" + }, + { + "label": "ELECTRON_MAIN_DIR", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/execution/__tests__/noBypass.test.ts", + "source_location": "L13", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_execution_tests_nobypass_test_electron_main_dir", + "community": 502, + "community_name": "Execution #502", + "norm_label": "electron_main_dir" + }, + { + "label": "collectProductionFiles()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/execution/__tests__/noBypass.test.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_execution_tests_nobypass_test_collectproductionfiles", + "community": 502, + "community_name": "Execution #502", + "norm_label": "collectproductionfiles()" + }, + { + "label": "executeToolRequest.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/execution/executeToolRequest.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_execution_executetoolrequest", + "community": 152, + "community_name": "Execution", + "norm_label": "executetoolrequest.ts" + }, + { + "label": "POISONED_KEYS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/execution/executeToolRequest.ts", + "source_location": "L23", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_execution_executetoolrequest_poisoned_keys", + "community": 152, + "community_name": "Execution", + "norm_label": "poisoned_keys" + }, + { + "label": "validateRequestShape()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/execution/executeToolRequest.ts", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_execution_executetoolrequest_validaterequestshape", + "community": 152, + "community_name": "Execution", + "norm_label": "validaterequestshape()" + }, + { + "label": "checkParameterSize()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/execution/executeToolRequest.ts", + "source_location": "L41", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_execution_executetoolrequest_checkparametersize", + "community": 152, + "community_name": "Execution", + "norm_label": "checkparametersize()" + }, + { + "label": "sanitizeParameters()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/execution/executeToolRequest.ts", + "source_location": "L48", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_execution_executetoolrequest_sanitizeparameters", + "community": 152, + "community_name": "Execution", + "norm_label": "sanitizeparameters()" + }, + { + "label": "withTimeout()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/execution/executeToolRequest.ts", + "source_location": "L59", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_execution_executetoolrequest_withtimeout", + "community": 152, + "community_name": "Execution", + "norm_label": "withtimeout()" + }, + { + "label": "executeToolRequest()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/execution/executeToolRequest.ts", + "source_location": "L71", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_execution_executetoolrequest_executetoolrequest", + "community": 152, + "community_name": "Execution", + "norm_label": "executetoolrequest()" + }, + { + "label": "fail()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/execution/executeToolRequest.ts", + "source_location": "L147", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_execution_executetoolrequest_fail", + "community": 152, + "community_name": "Execution", + "norm_label": "fail()" + }, + { + "label": "elapsed()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/execution/executeToolRequest.ts", + "source_location": "L151", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_execution_executetoolrequest_elapsed", + "community": 152, + "community_name": "Execution", + "norm_label": "elapsed()" + }, + { + "label": "containsPoisonedKeys()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/execution/executeToolRequest.ts", + "source_location": "L155", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_execution_executetoolrequest_containspoisonedkeys", + "community": 152, + "community_name": "Execution", + "norm_label": "containspoisonedkeys()" + }, + { + "label": "serializeResult()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/execution/executeToolRequest.ts", + "source_location": "L166", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_execution_executetoolrequest_serializeresult", + "community": 152, + "community_name": "Execution", + "norm_label": "serializeresult()" + }, + { + "label": "auditExecution()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/execution/executeToolRequest.ts", + "source_location": "L176", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_execution_executetoolrequest_auditexecution", + "community": 152, + "community_name": "Execution", + "norm_label": "auditexecution()" + }, + { + "label": "toolRegistry.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/execution/toolRegistry.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_execution_toolregistry", + "community": 152, + "community_name": "Execution", + "norm_label": "toolregistry.ts" + }, + { + "label": "registry", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/execution/toolRegistry.ts", + "source_location": "L11", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_execution_toolregistry_registry", + "community": 152, + "community_name": "Execution", + "norm_label": "registry" + }, + { + "label": "registerTool()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/execution/toolRegistry.ts", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_execution_toolregistry_registertool", + "community": 152, + "community_name": "Execution", + "norm_label": "registertool()" + }, + { + "label": "getToolHandler()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/execution/toolRegistry.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_execution_toolregistry_gettoolhandler", + "community": 152, + "community_name": "Execution", + "norm_label": "gettoolhandler()" + }, + { + "label": "hasToolHandler()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/execution/toolRegistry.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_execution_toolregistry_hastoolhandler", + "community": 152, + "community_name": "Execution", + "norm_label": "hastoolhandler()" + }, + { + "label": "listRegisteredTools()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/execution/toolRegistry.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_execution_toolregistry_listregisteredtools", + "community": 152, + "community_name": "Execution", + "norm_label": "listregisteredtools()" + }, + { + "label": "_resetRegistryForTesting()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/execution/toolRegistry.ts", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_execution_toolregistry_resetregistryfortesting", + "community": 152, + "community_name": "Execution", + "norm_label": "_resetregistryfortesting()" + }, + { + "label": "execution/types.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/execution/types.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_execution_types", + "community": 152, + "community_name": "Execution", + "norm_label": "execution/types.ts" + }, + { + "label": "ToolRequest", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/execution/types.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_execution_types_toolrequest", + "community": 152, + "community_name": "Execution", + "norm_label": "toolrequest" + }, + { + "label": "ToolRequestOrigin", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/execution/types.ts", + "source_location": "L21", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_execution_types_toolrequestorigin", + "community": 152, + "community_name": "Execution", + "norm_label": "toolrequestorigin" + }, + { + "label": "ToolExecutionResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/execution/types.ts", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_execution_types_toolexecutionresult", + "community": 152, + "community_name": "Execution", + "norm_label": "toolexecutionresult" + }, + { + "label": "ToolHandler", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/execution/types.ts", + "source_location": "L27", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_execution_types_toolhandler", + "community": 152, + "community_name": "Execution", + "norm_label": "toolhandler" + }, + { + "label": "EXECUTION_CONSTANTS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/execution/types.ts", + "source_location": "L29", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_execution_types_execution_constants", + "community": 152, + "community_name": "Execution", + "norm_label": "execution_constants" + }, + { + "label": "acceptX25519Binding.internal.regression.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.internal.regression.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_internal_regression_test", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "acceptx25519binding.internal.regression.test.ts" + }, + { + "label": "mockGetInstanceId", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.internal.regression.test.ts", + "source_location": "L7", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_internal_regression_test_mockgetinstanceid", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "mockgetinstanceid" + }, + { + "label": "minimalTier()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.internal.regression.test.ts", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_internal_regression_test_minimaltier", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "minimaltier()" + }, + { + "label": "internalPendingRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.internal.regression.test.ts", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_internal_regression_test_internalpendingrecord", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "internalpendingrecord()" + }, + { + "label": "acceptX25519Binding.regression.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.regression.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_regression_test", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "acceptx25519binding.regression.test.ts" + }, + { + "label": "senderSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.regression.test.ts", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_regression_test_sendersession", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "sendersession()" + }, + { + "label": "receiverSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.regression.test.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_regression_test_receiversession", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "receiversession()" + }, + { + "label": "createPendingHandshake()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.regression.test.ts", + "source_location": "L52", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_regression_test_creatependinghandshake", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "creatependinghandshake()" + }, + { + "label": "b81BeapInboxPagination.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/b81BeapInboxPagination.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_b81beapinboxpagination_test", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "b81beapinboxpagination.test.ts" + }, + { + "label": "sealedQueryMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/b81BeapInboxPagination.test.ts", + "source_location": "L33", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_b81beapinboxpagination_test_sealedquerymock", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "sealedquerymock" + }, + { + "label": "makeInboxRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/b81BeapInboxPagination.test.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_b81beapinboxpagination_test_makeinboxrow", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "makeinboxrow()" + }, + { + "label": "makeDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/b81BeapInboxPagination.test.ts", + "source_location": "L79", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_b81beapinboxpagination_test_makedb", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "makedb()" + }, + { + "label": "decodeCursor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/b81BeapInboxPagination.test.ts", + "source_location": "L92", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_b81beapinboxpagination_test_decodecursor", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "decodecursor()" + }, + { + "label": "b8BeapInboxIpc.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/b8BeapInboxIpc.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_b8beapinboxipc_test", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "b8beapinboxipc.test.ts" + }, + { + "label": "makeDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/b8BeapInboxIpc.test.ts", + "source_location": "L37", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_b8beapinboxipc_test_makedb", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "makedb()" + }, + { + "label": "pushRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/b8BeapInboxIpc.test.ts", + "source_location": "L372", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_b8beapinboxipc_test_pushrow", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "pushrow()" + }, + { + "label": "blockExtraction.customFields.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/blockExtraction.customFields.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_blockextraction_customfields_test", + "community": 195, + "community_name": "Handshake #195", + "norm_label": "blockextraction.customfields.test.ts" + }, + { + "label": "canonicalRebuild.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/canonicalRebuild.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_canonicalrebuild_test", + "community": 95, + "community_name": "Handshake #95", + "norm_label": "canonicalrebuild.test.ts" + }, + { + "label": "buildValidCapsule()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/canonicalRebuild.test.ts", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_canonicalrebuild_test_buildvalidcapsule", + "community": 95, + "community_name": "Handshake #95", + "norm_label": "buildvalidcapsule()" + }, + { + "label": "capsuleBuilder.internalRelay.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/capsuleBuilder.internalRelay.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_capsulebuilder_internalrelay_test", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "capsulebuilder.internalrelay.test.ts" + }, + { + "label": "session", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/capsuleBuilder.internalRelay.test.ts", + "source_location": "L10", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_capsulebuilder_internalrelay_test_session", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "session" + }, + { + "label": "prevHash", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/capsuleBuilder.internalRelay.test.ts", + "source_location": "L16", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_capsulebuilder_internalrelay_test_prevhash", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "prevhash" + }, + { + "label": "signing", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/capsuleBuilder.internalRelay.test.ts", + "source_location": "L17", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_capsulebuilder_internalrelay_test_signing", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "signing" + }, + { + "label": "chainIntegrity.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/chainIntegrity.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_chainintegrity_test", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "chainintegrity.test.ts" + }, + { + "label": "cloudSnippet.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/cloudSnippet.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_cloudsnippet_test", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "cloudsnippet.test.ts" + }, + { + "label": "contextBlocks.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextBlocks.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_contextblocks_test", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "contextblocks.test.ts" + }, + { + "label": "contextGovernance.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextGovernance.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_contextgovernance_test", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "contextgovernance.test.ts" + }, + { + "label": "mockRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextGovernance.test.ts", + "source_location": "L70", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_contextgovernance_test_mockrecord", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "mockrecord()" + }, + { + "label": "contextHash.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextHash.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_contexthash_test", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "contexthash.test.ts" + }, + { + "label": "buildTestInput()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextHash.test.ts", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_contexthash_test_buildtestinput", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "buildtestinput()" + }, + { + "label": "contextIngestion.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextIngestion.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_contextingestion_test", + "community": 113, + "community_name": "Handshake Servicerpc", + "norm_label": "contextingestion.test.ts" + }, + { + "label": "_require", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextIngestion.test.ts", + "source_location": "L15", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_contextingestion_test_require", + "community": 113, + "community_name": "Handshake Servicerpc", + "norm_label": "_require" + }, + { + "label": "DB_AVAILABLE", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextIngestion.test.ts", + "source_location": "L18", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_contextingestion_test_db_available", + "community": 113, + "community_name": "Handshake Servicerpc", + "norm_label": "db_available" + }, + { + "label": "makeVaultProfileBlock()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextIngestion.test.ts", + "source_location": "L116", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_contextingestion_test_makevaultprofileblock", + "community": 113, + "community_name": "Handshake Servicerpc", + "norm_label": "makevaultprofileblock()" + }, + { + "label": "contextSyncEnqueue.uxShape.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextSyncEnqueue.uxShape.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_contextsyncenqueue_uxshape_test", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "contextsyncenqueue.uxshape.test.ts" + }, + { + "label": "getAllWindows()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextSyncEnqueue.uxShape.test.ts", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_contextsyncenqueue_uxshape_test_getallwindows", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "getallwindows()" + }, + { + "label": "counterpartyKeyBinding.regression.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyKeyBinding.regression.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_counterpartykeybinding_regression_test", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "counterpartykeybinding.regression.test.ts" + }, + { + "label": "getAllWindows()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyKeyBinding.regression.test.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_counterpartykeybinding_regression_test_getallwindows", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "getallwindows()" + }, + { + "label": "aliceSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyKeyBinding.regression.test.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_counterpartykeybinding_regression_test_alicesession", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "alicesession()" + }, + { + "label": "bobSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyKeyBinding.regression.test.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_counterpartykeybinding_regression_test_bobsession", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "bobsession()" + }, + { + "label": "submitCapsule()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyKeyBinding.regression.test.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_counterpartykeybinding_regression_test_submitcapsule", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "submitcapsule()" + }, + { + "label": "counterpartyRepair.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyRepair.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_counterpartyrepair_test", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "counterpartyrepair.test.ts" + }, + { + "label": "I", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyRepair.test.ts", + "source_location": "L11", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_counterpartyrepair_test_i", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "i" + }, + { + "label": "A", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyRepair.test.ts", + "source_location": "L12", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_counterpartyrepair_test_a", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "a" + }, + { + "label": "B", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyRepair.test.ts", + "source_location": "L13", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_counterpartyrepair_test_b", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "b" + }, + { + "label": "base()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyRepair.test.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_counterpartyrepair_test_base", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "base()" + }, + { + "label": "e2e.pipeline.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.pipeline.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_e2e_pipeline_test", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "e2e.pipeline.test.ts" + }, + { + "label": "senderSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.pipeline.test.ts", + "source_location": "L49", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_e2e_pipeline_test_sendersession", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "sendersession()" + }, + { + "label": "receiverSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.pipeline.test.ts", + "source_location": "L57", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_e2e_pipeline_test_receiversession", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "receiversession()" + }, + { + "label": "submitCapsule()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.pipeline.test.ts", + "source_location": "L67", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_e2e_pipeline_test_submitcapsule", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "submitcapsule()" + }, + { + "label": "e2e.roundtrip.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.roundtrip.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_e2e_roundtrip_test", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "e2e.roundtrip.test.ts" + }, + { + "label": "aliceSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.roundtrip.test.ts", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_e2e_roundtrip_test_alicesession", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "alicesession()" + }, + { + "label": "bobSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.roundtrip.test.ts", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_e2e_roundtrip_test_bobsession", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "bobsession()" + }, + { + "label": "submitCapsule()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.roundtrip.test.ts", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_e2e_roundtrip_test_submitcapsule", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "submitcapsule()" + }, + { + "label": "emailTransport.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/emailTransport.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_emailtransport_test", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "emailtransport.test.ts" + }, + { + "label": "sender()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/emailTransport.test.ts", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_emailtransport_test_sender", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "sender()" + }, + { + "label": "enforcement.remoteRevoke.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.remoteRevoke.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_remoterevoke_test", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "enforcement.remoterevoke.test.ts" + }, + { + "label": "linked", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.remoteRevoke.test.ts", + "source_location": "L28", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_remoterevoke_test_linked", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "linked" + }, + { + "label": "removeLinkedTopologyEntry", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.remoteRevoke.test.ts", + "source_location": "L30", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_remoterevoke_test_removelinkedtopologyentry", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "removelinkedtopologyentry" + }, + { + "label": "seedLinked()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.remoteRevoke.test.ts", + "source_location": "L51", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_remoterevoke_test_seedlinked", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "seedlinked()" + }, + { + "label": "enforcement.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_test", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "enforcement.test.ts" + }, + { + "label": "externalProcessing.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/externalProcessing.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_externalprocessing_test", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "externalprocessing.test.ts" + }, + { + "label": "handshake-e2e-hardened.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshake-e2e-hardened.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_handshake_e2e_hardened_test", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "handshake-e2e-hardened.test.ts" + }, + { + "label": "aliceSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshake-e2e-hardened.test.ts", + "source_location": "L42", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_handshake_e2e_hardened_test_alicesession", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "alicesession()" + }, + { + "label": "bobSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshake-e2e-hardened.test.ts", + "source_location": "L50", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_handshake_e2e_hardened_test_bobsession", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "bobsession()" + }, + { + "label": "submitCapsule()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshake-e2e-hardened.test.ts", + "source_location": "L58", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_handshake_e2e_hardened_test_submitcapsule", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "submitcapsule()" + }, + { + "label": "handshakeAccountIsolation.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshakeAccountIsolation.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_handshakeaccountisolation_test", + "community": 188, + "community_name": "Handshake #188", + "norm_label": "handshakeaccountisolation.test.ts" + }, + { + "label": "party()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshakeAccountIsolation.test.ts", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_handshakeaccountisolation_test_party", + "community": 188, + "community_name": "Handshake #188", + "norm_label": "party()" + }, + { + "label": "minimalRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshakeAccountIsolation.test.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_handshakeaccountisolation_test_minimalrow", + "community": 188, + "community_name": "Handshake #188", + "norm_label": "minimalrow()" + }, + { + "label": "handshakeCrossSurface.regression.todo.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshakeCrossSurface.regression.todo.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_handshakecrosssurface_regression_todo_test", + "community": 586, + "community_name": "Handshake #586", + "norm_label": "handshakecrosssurface.regression.todo.test.ts" + }, + { + "label": "handshakeRefactorRegression.matrix.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshakeRefactorRegression.matrix.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_handshakerefactorregression_matrix_test", + "community": 130, + "community_name": "Handshake #130", + "norm_label": "handshakerefactorregression.matrix.test.ts" + }, + { + "label": "wireX25519FromAcceptParams()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshakeRefactorRegression.matrix.test.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_handshakerefactorregression_matrix_test_wirex25519fromacceptparams", + "community": 130, + "community_name": "Handshake #130", + "norm_label": "wirex25519fromacceptparams()" + }, + { + "label": "preflightLikeHandleHandshakeAccept()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshakeRefactorRegression.matrix.test.ts", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_handshakerefactorregression_matrix_test_preflightlikehandlehandshakeaccept", + "community": 130, + "community_name": "Handshake #130", + "norm_label": "preflightlikehandlehandshakeaccept()" + }, + { + "label": "handshakeTestDb.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshakeTestDb.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_handshaketestdb", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "handshaketestdb.ts" + }, + { + "label": "createHandshakeTestDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshakeTestDb.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_handshaketestdb_createhandshaketestdb", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "createhandshaketestdb()" + }, + { + "label": "HandshakeTestDb", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshakeTestDb.ts", + "source_location": "L346", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_handshaketestdb_handshaketestdb", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "handshaketestdb" + }, + { + "label": "handshakeVerification.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshakeVerification.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_handshakeverification_test", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "handshakeverification.test.ts" + }, + { + "label": "buildValidCapsule()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshakeVerification.test.ts", + "source_location": "L6", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_handshakeverification_test_buildvalidcapsule", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "buildvalidcapsule()" + }, + { + "label": "hardening-verification.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "hardening-verification.test.ts" + }, + { + "label": "getAllWindows()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test_getallwindows", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "getallwindows()" + }, + { + "label": "aliceSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test_alicesession", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "alicesession()" + }, + { + "label": "bobSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L63", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test_bobsession", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "bobsession()" + }, + { + "label": "setupHandshakeWithKeypairs()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L72", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test_setuphandshakewithkeypairs", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "setuphandshakewithkeypairs()" + }, + { + "label": "submitCapsule()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L107", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test_submitcapsule", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "submitcapsule()" + }, + { + "label": "helpers.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/helpers.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_helpers", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "helpers.ts" + }, + { + "label": "nextId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/helpers.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_helpers_nextid", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "nextid()" + }, + { + "label": "buildSSOSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/helpers.ts", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildssosession", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "buildssosession()" + }, + { + "label": "buildTierSignals()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/helpers.ts", + "source_location": "L46", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildtiersignals", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "buildtiersignals()" + }, + { + "label": "buildContextBlock()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/helpers.ts", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildcontextblock", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "buildcontextblock()" + }, + { + "label": "buildVerifiedCapsuleInput()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/helpers.ts", + "source_location": "L71", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildverifiedcapsuleinput", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "buildverifiedcapsuleinput()" + }, + { + "label": "buildReceiverPolicy()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/helpers.ts", + "source_location": "L106", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildreceiverpolicy", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "buildreceiverpolicy()" + }, + { + "label": "buildEffectivePolicy()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/helpers.ts", + "source_location": "L115", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildeffectivepolicy", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "buildeffectivepolicy()" + }, + { + "label": "buildTierDecision()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/helpers.ts", + "source_location": "L129", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildtierdecision", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "buildtierdecision()" + }, + { + "label": "buildHandshakeRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/helpers.ts", + "source_location": "L140", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildhandshakerecord", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "buildhandshakerecord()" + }, + { + "label": "buildActiveHandshakeRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/helpers.ts", + "source_location": "L178", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildactivehandshakerecord", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "buildactivehandshakerecord()" + }, + { + "label": "buildCtx()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/helpers.ts", + "source_location": "L199", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildctx", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "buildctx()" + }, + { + "label": "intentClassifier.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/intentClassifier.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_intentclassifier_test", + "community": 76, + "community_name": "Handshake", + "norm_label": "intentclassifier.test.ts" + }, + { + "label": "internalCoordinationWire.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/internalCoordinationWire.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_internalcoordinationwire_test", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "internalcoordinationwire.test.ts" + }, + { + "label": "completeInternal", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/internalCoordinationWire.test.ts", + "source_location": "L7", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_internalcoordinationwire_test_completeinternal", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "completeinternal" + }, + { + "label": "internalDeviceIdentity.flow.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/internalDeviceIdentity.flow.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_internaldeviceidentity_flow_test", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "internaldeviceidentity.flow.test.ts" + }, + { + "label": "internalPersistence.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/internalPersistence.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_internalpersistence_test", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "internalpersistence.test.ts" + }, + { + "label": "baseRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/internalPersistence.test.ts", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_internalpersistence_test_baserecord", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "baserecord()" + }, + { + "label": "internalRelayOutboundGuards.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/internalRelayOutboundGuards.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_internalrelayoutboundguards_test", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "internalrelayoutboundguards.test.ts" + }, + { + "label": "internalSamePrincipal.contextSync.regression.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/internalSamePrincipal.contextSync.regression.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_internalsameprincipal_contextsync_regression_test", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "internalsameprincipal.contextsync.regression.test.ts" + }, + { + "label": "internalInitiatorRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/internalSamePrincipal.contextSync.regression.test.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_internalsameprincipal_contextsync_regression_test_internalinitiatorrow", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "internalinitiatorrow()" + }, + { + "label": "ipc.handshake.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.handshake.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "ipc.handshake.test.ts" + }, + { + "label": "senderSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.handshake.test.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test_sendersession", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "sendersession()" + }, + { + "label": "receiverSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.handshake.test.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test_receiversession", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "receiversession()" + }, + { + "label": "createPendingHandshake()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.handshake.test.ts", + "source_location": "L207", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test_creatependinghandshake", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "creatependinghandshake()" + }, + { + "label": "createActiveHandshake()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.handshake.test.ts", + "source_location": "L388", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test_createactivehandshake", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "createactivehandshake()" + }, + { + "label": "ipc.internal.accept.validation.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.accept.validation.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_accept_validation_test", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "ipc.internal.accept.validation.test.ts" + }, + { + "label": "mockGetInstanceId", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.accept.validation.test.ts", + "source_location": "L3", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_accept_validation_test_mockgetinstanceid", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "mockgetinstanceid" + }, + { + "label": "minimalTier()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.accept.validation.test.ts", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_accept_validation_test_minimaltier", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "minimaltier()" + }, + { + "label": "internalPendingRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.accept.validation.test.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_accept_validation_test_internalpendingrecord", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "internalpendingrecord()" + }, + { + "label": "ipc.internal.deviceId.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.deviceId.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_deviceid_test", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "ipc.internal.deviceid.test.ts" + }, + { + "label": "ipc.internal.relayPush.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.relayPush.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_relaypush_test", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "ipc.internal.relaypush.test.ts" + }, + { + "label": "getAllWindows()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.relayPush.test.ts", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_relaypush_test_getallwindows", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "getallwindows()" + }, + { + "label": "registerHandshakeMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.relayPush.test.ts", + "source_location": "L39", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_relaypush_test_registerhandshakemock", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "registerhandshakemock" + }, + { + "label": "createRealTestDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.relayPush.test.ts", + "source_location": "L76", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_relaypush_test_createrealtestdb", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "createrealtestdb()" + }, + { + "label": "ipc.sandboxBeapSend.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.sandboxBeapSend.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_ipc_sandboxbeapsend_test", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "ipc.sandboxbeapsend.test.ts" + }, + { + "label": "isEffectiveSandbox", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.sandboxBeapSend.test.ts", + "source_location": "L12", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_ipc_sandboxbeapsend_test_iseffectivesandbox", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "iseffectivesandbox" + }, + { + "label": "activeHandshake()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.sandboxBeapSend.test.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_ipc_sandboxbeapsend_test_activehandshake", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "activehandshake()" + }, + { + "label": "packageJson", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.sandboxBeapSend.test.ts", + "source_location": "L56", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_ipc_sandboxbeapsend_test_packagejson", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "packagejson" + }, + { + "label": "mockKeypair.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/mockKeypair.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_mockkeypair", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "mockkeypair.ts" + }, + { + "label": "TEST_KEYPAIR", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/mockKeypair.ts", + "source_location": "L8", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_mockkeypair_test_keypair", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "test_keypair" + }, + { + "label": "TEST_COUNTERPARTY_KEYPAIR", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/mockKeypair.ts", + "source_location": "L9", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_mockkeypair_test_counterparty_keypair", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "test_counterparty_keypair" + }, + { + "label": "MOCK_EXTENSION_X25519_PUBLIC_B64", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/mockKeypair.ts", + "source_location": "L15", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_mockkeypair_mock_extension_x25519_public_b64", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "mock_extension_x25519_public_b64" + }, + { + "label": "mockKeypairFields()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/mockKeypair.ts", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_mockkeypair_mockkeypairfields", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "mockkeypairfields()" + }, + { + "label": "mockCounterpartyKeypairFields()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/mockKeypair.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_mockkeypair_mockcounterpartykeypairfields", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "mockcounterpartykeypairfields()" + }, + { + "label": "outboundQueue.backoff.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.backoff.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_backoff_test", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "outboundqueue.backoff.test.ts" + }, + { + "label": "registerHandshakeMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.backoff.test.ts", + "source_location": "L9", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_backoff_test_registerhandshakemock", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "registerhandshakemock" + }, + { + "label": "getAllWindows()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.backoff.test.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_backoff_test_getallwindows", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "getallwindows()" + }, + { + "label": "_require", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.backoff.test.ts", + "source_location": "L42", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_backoff_test_require", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "_require" + }, + { + "label": "createTestDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.backoff.test.ts", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_backoff_test_createtestdb", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "createtestdb()" + }, + { + "label": "relayDirectHandshake()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.backoff.test.ts", + "source_location": "L67", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_backoff_test_relaydirecthandshake", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "relaydirecthandshake()" + }, + { + "label": "minimalCapsule()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.backoff.test.ts", + "source_location": "L95", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_backoff_test_minimalcapsule", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "minimalcapsule()" + }, + { + "label": "outboundQueue.sandboxEgress.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.sandboxEgress.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_sandboxegress_test", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "outboundqueue.sandboxegress.test.ts" + }, + { + "label": "isEffectiveSandbox", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.sandboxEgress.test.ts", + "source_location": "L17", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_sandboxegress_test_iseffectivesandbox", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "iseffectivesandbox" + }, + { + "label": "activeHandshake()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.sandboxEgress.test.ts", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_sandboxegress_test_activehandshake", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "activehandshake()" + }, + { + "label": "contextSyncCapsule()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.sandboxEgress.test.ts", + "source_location": "L58", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_sandboxegress_test_contextsynccapsule", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "contextsynccapsule()" + }, + { + "label": "nativeBeapPackage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.sandboxEgress.test.ts", + "source_location": "L65", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_sandboxegress_test_nativebeappackage", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "nativebeappackage()" + }, + { + "label": "p2pTransport.coordination.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/p2pTransport.coordination.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_p2ptransport_coordination_test", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "p2ptransport.coordination.test.ts" + }, + { + "label": "p2pTransport.diagnostics.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/p2pTransport.diagnostics.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_p2ptransport_diagnostics_test", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "p2ptransport.diagnostics.test.ts" + }, + { + "label": "pairingActivation.rig.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingActivation.rig.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_pairingactivation_rig_test", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "pairingactivation.rig.test.ts" + }, + { + "label": "session()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingActivation.rig.test.ts", + "source_location": "L41", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_pairingactivation_rig_test_session", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "session()" + }, + { + "label": "makeDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingActivation.rig.test.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_pairingactivation_rig_test_makedb", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "makedb()" + }, + { + "label": "ingest()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingActivation.rig.test.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_pairingactivation_rig_test_ingest", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "ingest()" + }, + { + "label": "relayPost()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingActivation.rig.test.ts", + "source_location": "L84", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_pairingactivation_rig_test_relaypost", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "relaypost()" + }, + { + "label": "pullFromRelayStore()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingActivation.rig.test.ts", + "source_location": "L95", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_pairingactivation_rig_test_pullfromrelaystore", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "pullfromrelaystore()" + }, + { + "label": "pairingCodeRelayGap.rig.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingCodeRelayGap.rig.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_pairingcoderelaygap_rig_test", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "pairingcoderelaygap.rig.test.ts" + }, + { + "label": "makeInitiatorDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingCodeRelayGap.rig.test.ts", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_pairingcoderelaygap_rig_test_makeinitiatordb", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "makeinitiatordb()" + }, + { + "label": "buildInternalInitiate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingCodeRelayGap.rig.test.ts", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_pairingcoderelaygap_rig_test_buildinternalinitiate", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "buildinternalinitiate()" + }, + { + "label": "registerHandshake()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingCodeRelayGap.rig.test.ts", + "source_location": "L79", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_pairingcoderelaygap_rig_test_registerhandshake", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "registerhandshake()" + }, + { + "label": "parseDirectIngestHttpAck.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/parseDirectIngestHttpAck.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_parsedirectingesthttpack_test", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "parsedirectingesthttpack.test.ts" + }, + { + "label": "pipeline.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pipeline.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_pipeline_test", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "pipeline.test.ts" + }, + { + "label": "policyResolution.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/policyResolution.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_policyresolution_test", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "policyresolution.test.ts" + }, + { + "label": "postAcceptContextSync.ingestPaths.regression.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/postAcceptContextSync.ingestPaths.regression.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_postacceptcontextsync_ingestpaths_regression_test", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "postacceptcontextsync.ingestpaths.regression.test.ts" + }, + { + "label": "getAllWindows()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/postAcceptContextSync.ingestPaths.regression.test.ts", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_postacceptcontextsync_ingestpaths_regression_test_getallwindows", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "getallwindows()" + }, + { + "label": "senderSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/postAcceptContextSync.ingestPaths.regression.test.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_postacceptcontextsync_ingestpaths_regression_test_sendersession", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "sendersession()" + }, + { + "label": "receiverSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/postAcceptContextSync.ingestPaths.regression.test.ts", + "source_location": "L46", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_postacceptcontextsync_ingestpaths_regression_test_receiversession", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "receiversession()" + }, + { + "label": "submitCapsuleJson()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/postAcceptContextSync.ingestPaths.regression.test.ts", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_postacceptcontextsync_ingestpaths_regression_test_submitcapsulejson", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "submitcapsulejson()" + }, + { + "label": "seedCrossPrincipalInitiate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/postAcceptContextSync.ingestPaths.regression.test.ts", + "source_location": "L90", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_postacceptcontextsync_ingestpaths_regression_test_seedcrossprincipalinitiate", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "seedcrossprincipalinitiate()" + }, + { + "label": "assertDurableInitialContextSyncEnqueued()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/postAcceptContextSync.ingestPaths.regression.test.ts", + "source_location": "L108", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_postacceptcontextsync_ingestpaths_regression_test_assertdurableinitialcontextsyncenqueued", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "assertdurableinitialcontextsyncenqueued()" + }, + { + "label": "qbeapTransports.rig.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/qbeapTransports.rig.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_qbeaptransports_rig_test", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "qbeaptransports.rig.test.ts" + }, + { + "label": "session()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/qbeapTransports.rig.test.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_qbeaptransports_rig_test_session", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "session()" + }, + { + "label": "makeMessagePackage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/qbeapTransports.rig.test.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_qbeaptransports_rig_test_makemessagepackage", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "makemessagepackage()" + }, + { + "label": "registerHs()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/qbeapTransports.rig.test.ts", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_qbeaptransports_rig_test_registerhs", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "registerhs()" + }, + { + "label": "regressionMatrix.relayHandshakeSandbox.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/regressionMatrix.relayHandshakeSandbox.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_regressionmatrix_relayhandshakesandbox_test", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "regressionmatrix.relayhandshakesandbox.test.ts" + }, + { + "label": "sessionUserA", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/regressionMatrix.relayHandshakeSandbox.test.ts", + "source_location": "L33", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_regressionmatrix_relayhandshakesandbox_test_sessionusera", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "sessionusera" + }, + { + "label": "sessionUserB", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/regressionMatrix.relayHandshakeSandbox.test.ts", + "source_location": "L46", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_regressionmatrix_relayhandshakesandbox_test_sessionuserb", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "sessionuserb" + }, + { + "label": "baseInternalHostSandboxRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/regressionMatrix.relayHandshakeSandbox.test.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_regressionmatrix_relayhandshakesandbox_test_baseinternalhostsandboxrecord", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "baseinternalhostsandboxrecord()" + }, + { + "label": "relayAllowlistSealedServiceRpc.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/relayAllowlistSealedServiceRpc.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_relayallowlistsealedservicerpc_test", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "relayallowlistsealedservicerpc.test.ts" + }, + { + "label": "electronMain", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/relayAllowlistSealedServiceRpc.test.ts", + "source_location": "L11", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_relayallowlistsealedservicerpc_test_electronmain", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "electronmain" + }, + { + "label": "coordinationServer", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/relayAllowlistSealedServiceRpc.test.ts", + "source_location": "L12", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_relayallowlistsealedservicerpc_test_coordinationserver", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "coordinationserver" + }, + { + "label": "relayFailureMode.rig.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/relayFailureMode.rig.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_relayfailuremode_rig_test", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "relayfailuremode.rig.test.ts" + }, + { + "label": "session()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/relayFailureMode.rig.test.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_relayfailuremode_rig_test_session", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "session()" + }, + { + "label": "registerHs()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/relayFailureMode.rig.test.ts", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_relayfailuremode_rig_test_registerhs", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "registerhs()" + }, + { + "label": "relayOutboundClassification.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/relayOutboundClassification.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_relayoutboundclassification_test", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "relayoutboundclassification.test.ts" + }, + { + "label": "relayQueueTransportOutcome.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/relayQueueTransportOutcome.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_relayqueuetransportoutcome_test", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "relayqueuetransportoutcome.test.ts" + }, + { + "label": "resilience.chaos.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/resilience.chaos.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_resilience_chaos_test", + "community": 299, + "community_name": "Handshake #299", + "norm_label": "resilience.chaos.test.ts" + }, + { + "label": "revocation.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revocation.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_revocation_test", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "revocation.test.ts" + }, + { + "label": "revoke.outboundSeq.regression.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revoke.outboundSeq.regression.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_revoke_outboundseq_regression_test", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "revoke.outboundseq.regression.test.ts" + }, + { + "label": "revokeRepair.rig.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revokeRepair.rig.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_revokerepair_rig_test", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "revokerepair.rig.test.ts" + }, + { + "label": "session()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revokeRepair.rig.test.ts", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_revokerepair_rig_test_session", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "session()" + }, + { + "label": "makeDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revokeRepair.rig.test.ts", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_revokerepair_rig_test_makedb", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "makedb()" + }, + { + "label": "ingest()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revokeRepair.rig.test.ts", + "source_location": "L68", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_revokerepair_rig_test_ingest", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "ingest()" + }, + { + "label": "relayPost()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revokeRepair.rig.test.ts", + "source_location": "L81", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_revokerepair_rig_test_relaypost", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "relaypost()" + }, + { + "label": "pullFromRelayStore()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revokeRepair.rig.test.ts", + "source_location": "L87", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_revokerepair_rig_test_pullfromrelaystore", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "pullfromrelaystore()" + }, + { + "label": "coordinationRelayHarness.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/coordinationRelayHarness.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_rig_coordinationrelayharness", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "coordinationrelayharness.ts" + }, + { + "label": "CreateServerResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/coordinationRelayHarness.ts", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_rig_coordinationrelayharness_createserverresult", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "createserverresult" + }, + { + "label": "RelayHarness", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/coordinationRelayHarness.ts", + "source_location": "L25", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_rig_coordinationrelayharness_relayharness", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "relayharness" + }, + { + "label": "makeConfig()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/coordinationRelayHarness.ts", + "source_location": "L49", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_rig_coordinationrelayharness_makeconfig", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "makeconfig()" + }, + { + "label": "listen()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/coordinationRelayHarness.ts", + "source_location": "L67", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_rig_coordinationrelayharness_listen", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "listen()" + }, + { + "label": "startRelayHarness()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/coordinationRelayHarness.ts", + "source_location": "L79", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_rig_coordinationrelayharness_startrelayharness", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "startrelayharness()" + }, + { + "label": "pairingFlow.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/pairingFlow.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "pairingflow.ts" + }, + { + "label": "RigKeypair", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/pairingFlow.ts", + "source_location": "L26", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow_rigkeypair", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "rigkeypair" + }, + { + "label": "PairToActiveArgs", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/pairingFlow.ts", + "source_location": "L31", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow_pairtoactiveargs", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "pairtoactiveargs" + }, + { + "label": "PairToActiveResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/pairingFlow.ts", + "source_location": "L41", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow_pairtoactiveresult", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "pairtoactiveresult" + }, + { + "label": "ingest()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/pairingFlow.ts", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow_ingest", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "ingest()" + }, + { + "label": "relayPost()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/pairingFlow.ts", + "source_location": "L60", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow_relaypost", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "relaypost()" + }, + { + "label": "pullFromRelayStore()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/pairingFlow.ts", + "source_location": "L70", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow_pullfromrelaystore", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "pullfromrelaystore()" + }, + { + "label": "driveCrossPrincipalToActive()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/pairingFlow.ts", + "source_location": "L84", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow_drivecrossprincipaltoactive", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "drivecrossprincipaltoactive()" + }, + { + "label": "sandboxTopologyKind.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/sandboxTopologyKind.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_sandboxtopologykind_test", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "sandboxtopologykind.test.ts" + }, + { + "label": "listActiveInternalHandshakesForHostAi", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/sandboxTopologyKind.test.ts", + "source_location": "L13", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_sandboxtopologykind_test_listactiveinternalhandshakesforhostai", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "listactiveinternalhandshakesforhostai" + }, + { + "label": "getOrchestratorMode", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/sandboxTopologyKind.test.ts", + "source_location": "L14", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_sandboxtopologykind_test_getorchestratormode", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "getorchestratormode" + }, + { + "label": "makeInternalPair()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/sandboxTopologyKind.test.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_sandboxtopologykind_test_makeinternalpair", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "makeinternalpair()" + }, + { + "label": "semanticSearch.embedFailure.fallback.regression.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/semanticSearch.embedFailure.fallback.regression.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_semanticsearch_embedfailure_fallback_regression_test", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "semanticsearch.embedfailure.fallback.regression.test.ts" + }, + { + "label": "sharingMode.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/sharingMode.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_sharingmode_test", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "sharingmode.test.ts" + }, + { + "label": "signatureKeys.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/signatureKeys.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_signaturekeys_test", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "signaturekeys.test.ts" + }, + { + "label": "stateMachine.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/stateMachine.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_statemachine_test", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "statemachine.test.ts" + }, + { + "label": "structuredQuery.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/structuredQuery.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_structuredquery_test", + "community": 76, + "community_name": "Handshake", + "norm_label": "structuredquery.test.ts" + }, + { + "label": "tierClassification.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/tierClassification.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_tierclassification_test", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "tierclassification.test.ts" + }, + { + "label": "topologyAutoWire.delegationCallback.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/topologyAutoWire.delegationCallback.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_topologyautowire_delegationcallback_test", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "topologyautowire.delegationcallback.test.ts" + }, + { + "label": "addLinkedTopologyEntry", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/topologyAutoWire.delegationCallback.test.ts", + "source_location": "L14", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_topologyautowire_delegationcallback_test_addlinkedtopologyentry", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "addlinkedtopologyentry" + }, + { + "label": "removeLinkedTopologyEntry", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/topologyAutoWire.delegationCallback.test.ts", + "source_location": "L15", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_topologyautowire_delegationcallback_test_removelinkedtopologyentry", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "removelinkedtopologyentry" + }, + { + "label": "getOrchestratorMode", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/topologyAutoWire.delegationCallback.test.ts", + "source_location": "L16", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_topologyautowire_delegationcallback_test_getorchestratormode", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "getorchestratormode" + }, + { + "label": "getLinkedTopologyEntries", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/topologyAutoWire.delegationCallback.test.ts", + "source_location": "L17", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_topologyautowire_delegationcallback_test_getlinkedtopologyentries", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "getlinkedtopologyentries" + }, + { + "label": "activeInternalRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/topologyAutoWire.delegationCallback.test.ts", + "source_location": "L37", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_topologyautowire_delegationcallback_test_activeinternalrecord", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "activeinternalrecord()" + }, + { + "label": "topologyAutoWire.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/topologyAutoWire.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_topologyautowire_test", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "topologyautowire.test.ts" + }, + { + "label": "linked", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/topologyAutoWire.test.ts", + "source_location": "L17", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_topologyautowire_test_linked", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "linked" + }, + { + "label": "makeRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/topologyAutoWire.test.ts", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_topologyautowire_test_makerecord", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "makerecord()" + }, + { + "label": "vaultGating.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/vaultGating.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tests_vaultgating_test", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "vaultgating.test.ts" + }, + { + "label": "activeHandshakeHealth.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/activeHandshakeHealth.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "activehandshakehealth.ts" + }, + { + "label": "HandshakeHealthClassification", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/activeHandshakeHealth.ts", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth_handshakehealthclassification", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "handshakehealthclassification" + }, + { + "label": "hasP2pTokenForLog()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/activeHandshakeHealth.ts", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth_hasp2ptokenforlog", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "hasp2ptokenforlog()" + }, + { + "label": "coordinationCompleteForLog()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/activeHandshakeHealth.ts", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth_coordinationcompleteforlog", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "coordinationcompleteforlog()" + }, + { + "label": "counterpartyP2pTokenSetForLog()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/activeHandshakeHealth.ts", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth_counterpartyp2ptokensetforlog", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "counterpartyp2ptokensetforlog()" + }, + { + "label": "peerDisplayNameForHealth()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/activeHandshakeHealth.ts", + "source_location": "L37", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth_peerdisplaynameforhealth", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "peerdisplaynameforhealth()" + }, + { + "label": "pairingDigits6()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/activeHandshakeHealth.ts", + "source_location": "L52", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth_pairingdigits6", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "pairingdigits6()" + }, + { + "label": "classifyActiveHandshakeHealth()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/activeHandshakeHealth.ts", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth_classifyactivehandshakehealth", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "classifyactivehandshakehealth()" + }, + { + "label": "listActiveHandshakeHealthIssues()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/activeHandshakeHealth.ts", + "source_location": "L102", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth_listactivehandshakehealthissues", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "listactivehandshakehealthissues()" + }, + { + "label": "aiProviders.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_aiproviders", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "aiproviders.ts" + }, + { + "label": "Message", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L33", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_aiproviders_message", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "message" + }, + { + "label": "StreamSender", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L38", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_aiproviders_streamsender", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "streamsender" + }, + { + "label": "GenerateChatOptions", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L40", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_aiproviders_generatechatoptions", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "generatechatoptions" + }, + { + "label": "AIProvider", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L66", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_aiproviders_aiprovider", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "aiprovider" + }, + { + "label": ".generateEmbedding()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L68", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_aiproviders_aiprovider_generateembedding", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": ".generateembedding()" + }, + { + "label": ".generateChat()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L69", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_aiproviders_aiprovider_generatechat", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": ".generatechat()" + }, + { + "label": "OllamaProviderOptions", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L80", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovideroptions", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "ollamaprovideroptions" + }, + { + "label": "OllamaProviderOperation", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L91", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovideroperation", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "ollamaprovideroperation" + }, + { + "label": "handshakeForLog()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L93", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_aiproviders_handshakeforlog", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "handshakeforlog()" + }, + { + "label": "formatCauseChain()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L98", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_aiproviders_formatcausechain", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "formatcausechain()" + }, + { + "label": "logOllamaProviderRequest()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L113", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_aiproviders_logollamaproviderrequest", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "logollamaproviderrequest()" + }, + { + "label": "logOllamaProviderError()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L126", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_aiproviders_logollamaprovidererror", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "logollamaprovidererror()" + }, + { + "label": "OllamaProvider", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L162", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "ollamaprovider" + }, + { + "label": ".getOllamaEmbedModel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L172", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider_getollamaembedmodel", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": ".getollamaembedmodel()" + }, + { + "label": ".getOllamaChatModel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L176", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider_getollamachatmodel", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": ".getollamachatmodel()" + }, + { + "label": ".getOllamaLane()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L180", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider_getollamalane", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": ".getollamalane()" + }, + { + "label": ".getOllamaBaseUrl()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L184", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider_getollamabaseurl", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": ".getollamabaseurl()" + }, + { + "label": ".getOllamaPeerDeviceId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L188", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider_getollamapeerdeviceid", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": ".getollamapeerdeviceid()" + }, + { + "label": ".getOllamaHandshakeId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L192", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider_getollamahandshakeid", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": ".getollamahandshakeid()" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L196", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider_constructor", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": ".constructor()" + }, + { + "label": ".logHandshake()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L206", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider_loghandshake", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": ".loghandshake()" + }, + { + "label": ".generateEmbedding()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L210", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider_generateembedding", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": ".generateembedding()" + }, + { + "label": ".generateChat()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L252", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider_generatechat", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": ".generatechat()" + }, + { + "label": ".isAvailable()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L474", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider_isavailable", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": ".isavailable()" + }, + { + "label": "CloudChatProvider", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L507", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_aiproviders_cloudchatprovider", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "cloudchatprovider" + }, + { + "label": "CLOUD_MODEL_MAP", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L509", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_aiproviders_cloud_model_map", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "cloud_model_map" + }, + { + "label": "CloudAIProvider", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L519", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_aiproviders_cloudaiprovider", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "cloudaiprovider" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L525", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_aiproviders_cloudaiprovider_constructor", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": ".constructor()" + }, + { + "label": ".generateEmbedding()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L535", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_aiproviders_cloudaiprovider_generateembedding", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": ".generateembedding()" + }, + { + "label": ".generateChat()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L563", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_aiproviders_cloudaiprovider_generatechat", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": ".generatechat()" + }, + { + "label": "._chatOpenAI()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L593", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_aiproviders_cloudaiprovider_chatopenai", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "._chatopenai()" + }, + { + "label": "._chatAnthropic()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L623", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_aiproviders_cloudaiprovider_chatanthropic", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "._chatanthropic()" + }, + { + "label": "._chatGoogle()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L654", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_aiproviders_cloudaiprovider_chatgoogle", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "._chatgoogle()" + }, + { + "label": "._chatXai()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L687", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_aiproviders_cloudaiprovider_chatxai", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "._chatxai()" + }, + { + "label": ".hasEmbeddingSupport()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L713", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_aiproviders_cloudaiprovider_hasembeddingsupport", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": ".hasembeddingsupport()" + }, + { + "label": "UserRagSettings", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L720", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_aiproviders_userragsettings", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "userragsettings" + }, + { + "label": "ollamaOptionsFromUserAndDisk()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L727", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaoptionsfromuseranddisk", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "ollamaoptionsfromuseranddisk()" + }, + { + "label": "getProvider()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L757", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_aiproviders_getprovider", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "getprovider()" + }, + { + "label": "toEmbeddingService()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L784", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_aiproviders_toembeddingservice", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "toembeddingservice()" + }, + { + "label": "auditLog.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/auditLog.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_auditlog", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "auditlog.ts" + }, + { + "label": "buildSuccessAuditEntry()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/auditLog.ts", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_auditlog_buildsuccessauditentry", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "buildsuccessauditentry()" + }, + { + "label": "buildDenialAuditEntry()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/auditLog.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_auditlog_builddenialauditentry", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "builddenialauditentry()" + }, + { + "label": "buildRevocationAuditEntry()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/auditLog.ts", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_auditlog_buildrevocationauditentry", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "buildrevocationauditentry()" + }, + { + "label": "blockExtraction.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockExtraction.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_blockextraction", + "community": 195, + "community_name": "Handshake #195", + "norm_label": "blockextraction.ts" + }, + { + "label": "CHUNK_TARGET_TOKENS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockExtraction.ts", + "source_location": "L16", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_blockextraction_chunk_target_tokens", + "community": 195, + "community_name": "Handshake #195", + "norm_label": "chunk_target_tokens" + }, + { + "label": "CHUNK_MIN_TOKENS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockExtraction.ts", + "source_location": "L17", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_blockextraction_chunk_min_tokens", + "community": 195, + "community_name": "Handshake #195", + "norm_label": "chunk_min_tokens" + }, + { + "label": "CHUNK_MAX_TOKENS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockExtraction.ts", + "source_location": "L18", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_blockextraction_chunk_max_tokens", + "community": 195, + "community_name": "Handshake #195", + "norm_label": "chunk_max_tokens" + }, + { + "label": "STRUCTURED_PREFIXES", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockExtraction.ts", + "source_location": "L22", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_blockextraction_structured_prefixes", + "community": 195, + "community_name": "Handshake #195", + "norm_label": "structured_prefixes" + }, + { + "label": "ExtractedBlock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockExtraction.ts", + "source_location": "L26", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_blockextraction_extractedblock", + "community": 195, + "community_name": "Handshake #195", + "norm_label": "extractedblock" + }, + { + "label": "DAY_ORDER", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockExtraction.ts", + "source_location": "L38", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_blockextraction_day_order", + "community": 195, + "community_name": "Handshake #195", + "norm_label": "day_order" + }, + { + "label": "formatOpeningHours()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockExtraction.ts", + "source_location": "L41", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_blockextraction_formatopeninghours", + "community": 195, + "community_name": "Handshake #195", + "norm_label": "formatopeninghours()" + }, + { + "label": "formatStructuredObject()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockExtraction.ts", + "source_location": "L71", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_blockextraction_formatstructuredobject", + "community": 195, + "community_name": "Handshake #195", + "norm_label": "formatstructuredobject()" + }, + { + "label": "isStructuredBlock()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockExtraction.ts", + "source_location": "L115", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_blockextraction_isstructuredblock", + "community": 195, + "community_name": "Handshake #195", + "norm_label": "isstructuredblock()" + }, + { + "label": "CustomFieldEntry", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockExtraction.ts", + "source_location": "L121", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_blockextraction_customfieldentry", + "community": 195, + "community_name": "Handshake #195", + "norm_label": "customfieldentry" + }, + { + "label": "extractCustomFieldBlocks()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockExtraction.ts", + "source_location": "L131", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_blockextraction_extractcustomfieldblocks", + "community": 195, + "community_name": "Handshake #195", + "norm_label": "extractcustomfieldblocks()" + }, + { + "label": "chunkDocument()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockExtraction.ts", + "source_location": "L175", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_blockextraction_chunkdocument", + "community": 195, + "community_name": "Handshake #195", + "norm_label": "chunkdocument()" + }, + { + "label": "computeChunkHash()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockExtraction.ts", + "source_location": "L237", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_blockextraction_computechunkhash", + "community": 195, + "community_name": "Handshake #195", + "norm_label": "computechunkhash()" + }, + { + "label": "extractBlocks()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockExtraction.ts", + "source_location": "L247", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_blockextraction_extractblocks", + "community": 195, + "community_name": "Handshake #195", + "norm_label": "extractblocks()" + }, + { + "label": "extractTextFromPayload()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockExtraction.ts", + "source_location": "L328", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_blockextraction_extracttextfrompayload", + "community": 195, + "community_name": "Handshake #195", + "norm_label": "extracttextfrompayload()" + }, + { + "label": "blockRetrieval.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockRetrieval.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_blockretrieval", + "community": 299, + "community_name": "Handshake #299", + "norm_label": "blockretrieval.ts" + }, + { + "label": "BlockIndexEntry", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockRetrieval.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_blockretrieval_blockindexentry", + "community": 299, + "community_name": "Handshake #299", + "norm_label": "blockindexentry" + }, + { + "label": "RetrievedBlock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockRetrieval.ts", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_blockretrieval_retrievedblock", + "community": 299, + "community_name": "Handshake #299", + "norm_label": "retrievedblock" + }, + { + "label": "DEFAULT_TOP_K", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockRetrieval.ts", + "source_location": "L36", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_blockretrieval_default_top_k", + "community": 299, + "community_name": "Handshake #299", + "norm_label": "default_top_k" + }, + { + "label": "MAX_CONTEXT_TOKENS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockRetrieval.ts", + "source_location": "L42", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_blockretrieval_max_context_tokens", + "community": 299, + "community_name": "Handshake #299", + "norm_label": "max_context_tokens" + }, + { + "label": "extractTextFromPayload()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockRetrieval.ts", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_blockretrieval_extracttextfrompayload", + "community": 299, + "community_name": "Handshake #299", + "norm_label": "extracttextfrompayload()" + }, + { + "label": "blockIdToTitle()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockRetrieval.ts", + "source_location": "L77", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_blockretrieval_blockidtotitle", + "community": 299, + "community_name": "Handshake #299", + "norm_label": "blockidtotitle()" + }, + { + "label": "scoredBlocksToRetrieved()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockRetrieval.ts", + "source_location": "L87", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_blockretrieval_scoredblockstoretrieved", + "community": 299, + "community_name": "Handshake #299", + "norm_label": "scoredblockstoretrieved()" + }, + { + "label": "RetrieveBlocksOptions", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockRetrieval.ts", + "source_location": "L101", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_blockretrieval_retrieveblocksoptions", + "community": 299, + "community_name": "Handshake #299", + "norm_label": "retrieveblocksoptions" + }, + { + "label": "retrieveBlocks()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockRetrieval.ts", + "source_location": "L110", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_blockretrieval_retrieveblocks", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "retrieveblocks()" + }, + { + "label": "ConversationContext", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockRetrieval.ts", + "source_location": "L179", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_blockretrieval_conversationcontext", + "community": 299, + "community_name": "Handshake #299", + "norm_label": "conversationcontext" + }, + { + "label": "BuildPromptOptions", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockRetrieval.ts", + "source_location": "L184", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_blockretrieval_buildpromptoptions", + "community": 299, + "community_name": "Handshake #299", + "norm_label": "buildpromptoptions" + }, + { + "label": "buildPrompt()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockRetrieval.ts", + "source_location": "L205", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_blockretrieval_buildprompt", + "community": 299, + "community_name": "Handshake #299", + "norm_label": "buildprompt()" + }, + { + "label": "BuildRagPromptOptions", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockRetrieval.ts", + "source_location": "L242", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_blockretrieval_buildragpromptoptions", + "community": 299, + "community_name": "Handshake #299", + "norm_label": "buildragpromptoptions" + }, + { + "label": "buildRagPrompt()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockRetrieval.ts", + "source_location": "L257", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_blockretrieval_buildragprompt", + "community": 299, + "community_name": "Handshake #299", + "norm_label": "buildragprompt()" + }, + { + "label": "canonicalRebuild.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild", + "community": 95, + "community_name": "Handshake #95", + "norm_label": "canonicalrebuild.ts" + }, + { + "label": "SEALED_SERVICE_RPC_ENVELOPE_TYPE", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L33", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_sealed_service_rpc_envelope_type", + "community": 95, + "community_name": "Handshake #95", + "norm_label": "sealed_service_rpc_envelope_type" + }, + { + "label": "SEALED_SERVICE_RPC_SCHEMA_VERSION", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L34", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_sealed_service_rpc_schema_version", + "community": 95, + "community_name": "Handshake #95", + "norm_label": "sealed_service_rpc_schema_version" + }, + { + "label": "RebuildResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L42", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_rebuildresult", + "community": 95, + "community_name": "Handshake #95", + "norm_label": "rebuildresult" + }, + { + "label": "CanonicalSenderIdentity", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L48", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_canonicalsenderidentity", + "community": 95, + "community_name": "Handshake #95", + "norm_label": "canonicalsenderidentity" + }, + { + "label": "CanonicalTierSignals", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L56", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_canonicaltiersignals", + "community": 95, + "community_name": "Handshake #95", + "norm_label": "canonicaltiersignals" + }, + { + "label": "ContextBlockProof", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L63", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_contextblockproof", + "community": 113, + "community_name": "Handshake Servicerpc", + "norm_label": "contextblockproof" + }, + { + "label": "CanonicalReceiverIdentity", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L68", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_canonicalreceiveridentity", + "community": 95, + "community_name": "Handshake #95", + "norm_label": "canonicalreceiveridentity" + }, + { + "label": "HandshakeCapsuleCanonical", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L76", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_handshakecapsulecanonical", + "community": 95, + "community_name": "Handshake #95", + "norm_label": "handshakecapsulecanonical" + }, + { + "label": "CanonicalContextBlock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L133", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_canonicalcontextblock", + "community": 95, + "community_name": "Handshake #95", + "norm_label": "canonicalcontextblock" + }, + { + "label": "CanonicalSealedContextBlocksEnvelope", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L146", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_canonicalsealedcontextblocksenvelope", + "community": 95, + "community_name": "Handshake #95", + "norm_label": "canonicalsealedcontextblocksenvelope" + }, + { + "label": "DENIED_FIELDS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L163", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_denied_fields", + "community": 95, + "community_name": "Handshake #95", + "norm_label": "denied_fields" + }, + { + "label": "FieldRule", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L183", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_fieldrule", + "community": 95, + "community_name": "Handshake #95", + "norm_label": "fieldrule" + }, + { + "label": "FIELD_RULES", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L193", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_field_rules", + "community": 95, + "community_name": "Handshake #95", + "norm_label": "field_rules" + }, + { + "label": "SENDER_IDENTITY_RULES", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L233", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_sender_identity_rules", + "community": 95, + "community_name": "Handshake #95", + "norm_label": "sender_identity_rules" + }, + { + "label": "TIER_PLAN_VALUES", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L243", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_tier_plan_values", + "community": 95, + "community_name": "Handshake #95", + "norm_label": "tier_plan_values" + }, + { + "label": "sanitizeString()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L247", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_sanitizestring", + "community": 95, + "community_name": "Handshake #95", + "norm_label": "sanitizestring()" + }, + { + "label": "validateField()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L251", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_validatefield", + "community": 95, + "community_name": "Handshake #95", + "norm_label": "validatefield()" + }, + { + "label": "rebuildSenderIdentity()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L301", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_rebuildsenderidentity", + "community": 95, + "community_name": "Handshake #95", + "norm_label": "rebuildsenderidentity()" + }, + { + "label": "rebuildTierSignals()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L323", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_rebuildtiersignals", + "community": 95, + "community_name": "Handshake #95", + "norm_label": "rebuildtiersignals()" + }, + { + "label": "rebuildContextBlockProofs()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L384", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_rebuildcontextblockproofs", + "community": 95, + "community_name": "Handshake #95", + "norm_label": "rebuildcontextblockproofs()" + }, + { + "label": "validateInternalHandshakeWireIfNeeded()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L444", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_validateinternalhandshakewireifneeded", + "community": 95, + "community_name": "Handshake #95", + "norm_label": "validateinternalhandshakewireifneeded()" + }, + { + "label": "canonicalRebuild()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L545", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_canonicalrebuild", + "community": 95, + "community_name": "Handshake #95", + "norm_label": "canonicalrebuild()" + }, + { + "label": "rebuildContextBlocks()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L791", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_rebuildcontextblocks", + "community": 95, + "community_name": "Handshake #95", + "norm_label": "rebuildcontextblocks()" + }, + { + "label": "rebuildContextBlocksSealed()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L867", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_rebuildcontextblockssealed", + "community": 95, + "community_name": "Handshake #95", + "norm_label": "rebuildcontextblockssealed()" + }, + { + "label": "NOTE: context_blocks is NOT denied \u2014 it is validated structurally", + "file_type": "rationale", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L159", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_rationale_159", + "community": 95, + "community_name": "Handshake #95", + "norm_label": "note: context_blocks is not denied \u2014 it is validated structurally" + }, + { + "label": "capsuleBlockIndexer.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBlockIndexer.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_capsuleblockindexer", + "community": 195, + "community_name": "Handshake #195", + "norm_label": "capsuleblockindexer.ts" + }, + { + "label": "LocalEmbeddingService", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBlockIndexer.ts", + "source_location": "L15", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_capsuleblockindexer_localembeddingservice", + "community": 195, + "community_name": "Handshake #195", + "norm_label": "localembeddingservice" + }, + { + "label": ".generateEmbedding()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBlockIndexer.ts", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_capsuleblockindexer_localembeddingservice_generateembedding", + "community": 195, + "community_name": "Handshake #195", + "norm_label": ".generateembedding()" + }, + { + "label": "IndexCapsuleBlocksResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBlockIndexer.ts", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_capsuleblockindexer_indexcapsuleblocksresult", + "community": 195, + "community_name": "Handshake #195", + "norm_label": "indexcapsuleblocksresult" + }, + { + "label": "BLOCK_TYPE_PREFIXES", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBlockIndexer.ts", + "source_location": "L27", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_capsuleblockindexer_block_type_prefixes", + "community": 195, + "community_name": "Handshake #195", + "norm_label": "block_type_prefixes" + }, + { + "label": "blockIdToBlockType()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBlockIndexer.ts", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_capsuleblockindexer_blockidtoblocktype", + "community": 195, + "community_name": "Handshake #195", + "norm_label": "blockidtoblocktype()" + }, + { + "label": "blockIdToTitle()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBlockIndexer.ts", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_capsuleblockindexer_blockidtotitle", + "community": 195, + "community_name": "Handshake #195", + "norm_label": "blockidtotitle()" + }, + { + "label": "indexCapsuleBlocks()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBlockIndexer.ts", + "source_location": "L52", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_capsuleblockindexer_indexcapsuleblocks", + "community": 195, + "community_name": "Handshake #195", + "norm_label": "indexcapsuleblocks()" + }, + { + "label": "backfillCapsuleBlocks()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBlockIndexer.ts", + "source_location": "L136", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_capsuleblockindexer_backfillcapsuleblocks", + "community": 195, + "community_name": "Handshake #195", + "norm_label": "backfillcapsuleblocks()" + }, + { + "label": "reindexHandshakeCapsule()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBlockIndexer.ts", + "source_location": "L164", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_capsuleblockindexer_reindexhandshakecapsule", + "community": 195, + "community_name": "Handshake #195", + "norm_label": "reindexhandshakecapsule()" + }, + { + "label": "capsuleBuilder.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "capsulebuilder.ts" + }, + { + "label": "InternalCapsuleRelayIdentityError", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L50", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_internalcapsulerelayidentityerror", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "internalcapsulerelayidentityerror" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L52", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_internalcapsulerelayidentityerror_constructor", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": ".constructor()" + }, + { + "label": "mergeInternalRelayWireFields()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L62", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_mergeinternalrelaywirefields", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "mergeinternalrelaywirefields()" + }, + { + "label": "mergeInternalInitiatePairingWireFields()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L141", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_mergeinternalinitiatepairingwirefields", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "mergeinternalinitiatepairingwirefields()" + }, + { + "label": "HandshakeCapsuleWire", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L190", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_handshakecapsulewire", + "community": 113, + "community_name": "Handshake Servicerpc", + "norm_label": "handshakecapsulewire" + }, + { + "label": "InitiateOptions", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L266", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_initiateoptions", + "community": 113, + "community_name": "Handshake Servicerpc", + "norm_label": "initiateoptions" + }, + { + "label": "InitiateBuildResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L314", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_initiatebuildresult", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "initiatebuildresult" + }, + { + "label": "AcceptOptions", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L320", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_acceptoptions", + "community": 113, + "community_name": "Handshake Servicerpc", + "norm_label": "acceptoptions" + }, + { + "label": "nextOutboundHandshakeSeq()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L371", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_nextoutboundhandshakeseq", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "nextoutboundhandshakeseq()" + }, + { + "label": "RefreshOptions", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L380", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_refreshoptions", + "community": 113, + "community_name": "Handshake Servicerpc", + "norm_label": "refreshoptions" + }, + { + "label": "RevokeOptions", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L420", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_revokeoptions", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "revokeoptions" + }, + { + "label": "ContextSyncOptions", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L452", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_contextsyncoptions", + "community": 113, + "community_name": "Handshake Servicerpc", + "norm_label": "contextsyncoptions" + }, + { + "label": "buildInitiateCapsuleCore()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L500", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildinitiatecapsulecore", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "buildinitiatecapsulecore()" + }, + { + "label": "buildInitiateCapsule()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L618", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildinitiatecapsule", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "buildinitiatecapsule()" + }, + { + "label": "buildInitiateCapsuleWithKeypair()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L626", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildinitiatecapsulewithkeypair", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "buildinitiatecapsulewithkeypair()" + }, + { + "label": "buildAcceptCapsule()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L639", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildacceptcapsule", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "buildacceptcapsule()" + }, + { + "label": "AcceptBuildResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L784", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_acceptbuildresult", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "acceptbuildresult" + }, + { + "label": "buildRefreshCapsule()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L796", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildrefreshcapsule", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "buildrefreshcapsule()" + }, + { + "label": "buildContextSyncCapsule()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L908", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildcontextsynccapsule", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "buildcontextsynccapsule()" + }, + { + "label": "buildContextSyncCapsuleWithContent()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L1023", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildcontextsynccapsulewithcontent", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "buildcontextsynccapsulewithcontent()" + }, + { + "label": "buildRevokeCapsule()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L1058", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildrevokecapsule", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "buildrevokecapsule()" + }, + { + "label": "canonicalizeBlockIds()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L1154", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_canonicalizeblockids", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "canonicalizeblockids()" + }, + { + "label": "buildInitiateCapsuleWithContent()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L1170", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildinitiatecapsulewithcontent", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "buildinitiatecapsulewithcontent()" + }, + { + "label": "sessionToTierSignals()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L1179", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_sessiontotiersignals", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "sessiontotiersignals()" + }, + { + "label": "capsuleHash.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleHash.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_capsulehash", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "capsulehash.ts" + }, + { + "label": "CapsuleHashInput", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleHash.ts", + "source_location": "L41", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_capsulehash_capsulehashinput", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "capsulehashinput" + }, + { + "label": "computeCapsuleHash()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleHash.ts", + "source_location": "L64", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_capsulehash_computecapsulehash", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "computecapsulehash()" + }, + { + "label": "capsuleTransport.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleTransport.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_capsuletransport", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "capsuletransport.ts" + }, + { + "label": "SubmitResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleTransport.ts", + "source_location": "L34", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_capsuletransport_submitresult", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "submitresult" + }, + { + "label": "submitCapsuleViaRpc()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleTransport.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_capsuletransport_submitcapsuleviarpc", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "submitcapsuleviarpc()" + }, + { + "label": "serializeCapsule()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleTransport.ts", + "source_location": "L106", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_capsuletransport_serializecapsule", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "serializecapsule()" + }, + { + "label": "deserializeCapsuleToRawInput()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleTransport.ts", + "source_location": "L113", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_capsuletransport_deserializecapsuletorawinput", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "deserializecapsuletorawinput()" + }, + { + "label": "cloudSnippet.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/cloudSnippet.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_cloudsnippet", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "cloudsnippet.ts" + }, + { + "label": "SIGNATURE_SEPARATORS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/cloudSnippet.ts", + "source_location": "L8", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_cloudsnippet_signature_separators", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "signature_separators" + }, + { + "label": "buildCloudSnippet()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/cloudSnippet.ts", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_cloudsnippet_buildcloudsnippet", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "buildcloudsnippet()" + }, + { + "label": "contextBlocks.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextBlocks.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextblocks", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "contextblocks.ts" + }, + { + "label": "persistContextBlocks()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextBlocks.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextblocks_persistcontextblocks", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "persistcontextblocks()" + }, + { + "label": "queryContextBlocks()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextBlocks.ts", + "source_location": "L63", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextblocks_querycontextblocks", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "querycontextblocks()" + }, + { + "label": "queryContextBlocksWithGovernance()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextBlocks.ts", + "source_location": "L117", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextblocks_querycontextblockswithgovernance", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "querycontextblockswithgovernance()" + }, + { + "label": "getBlockCountForHandshake()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextBlocks.ts", + "source_location": "L146", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextblocks_getblockcountforhandshake", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "getblockcountforhandshake()" + }, + { + "label": "getPendingEmbeddingBlocks()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextBlocks.ts", + "source_location": "L155", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextblocks_getpendingembeddingblocks", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "getpendingembeddingblocks()" + }, + { + "label": "markEmbeddingComplete()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextBlocks.ts", + "source_location": "L181", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextblocks_markembeddingcomplete", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "markembeddingcomplete()" + }, + { + "label": "markEmbeddingFailed()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextBlocks.ts", + "source_location": "L193", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextblocks_markembeddingfailed", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "markembeddingfailed()" + }, + { + "label": "contextCommitment.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextCommitment.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextcommitment", + "community": 113, + "community_name": "Handshake Servicerpc", + "norm_label": "contextcommitment.ts" + }, + { + "label": "ContextBlockForCommitment", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextCommitment.ts", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextcommitment_contextblockforcommitment", + "community": 113, + "community_name": "Handshake Servicerpc", + "norm_label": "contextblockforcommitment" + }, + { + "label": "ContextBlockWireProof", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextCommitment.ts", + "source_location": "L29", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextcommitment_contextblockwireproof", + "community": 113, + "community_name": "Handshake Servicerpc", + "norm_label": "contextblockwireproof" + }, + { + "label": "stripContentFromBlocks()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextCommitment.ts", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextcommitment_stripcontentfromblocks", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "stripcontentfromblocks()" + }, + { + "label": "computeBlockHash()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextCommitment.ts", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextcommitment_computeblockhash", + "community": 113, + "community_name": "Handshake Servicerpc", + "norm_label": "computeblockhash()" + }, + { + "label": "computeContextCommitment()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextCommitment.ts", + "source_location": "L65", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextcommitment_computecontextcommitment", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "computecontextcommitment()" + }, + { + "label": "verifyContextCommitment()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextCommitment.ts", + "source_location": "L79", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextcommitment_verifycontextcommitment", + "community": 113, + "community_name": "Handshake Servicerpc", + "norm_label": "verifycontextcommitment()" + }, + { + "label": "main/handshake/contextGovernance.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextgovernance", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "main/handshake/contextgovernance.ts" + }, + { + "label": "BLOCK_TYPE_TO_CONTENT_TYPE", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L53", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextgovernance_block_type_to_content_type", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "block_type_to_content_type" + }, + { + "label": "DATA_CLASSIFICATION_TO_SENSITIVITY", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L66", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextgovernance_data_classification_to_sensitivity", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "data_classification_to_sensitivity" + }, + { + "label": "HandshakeBaselinePolicy", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L75", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextgovernance_handshakebaselinepolicy", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "handshakebaselinepolicy" + }, + { + "label": "baselineFromHandshake()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L84", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextgovernance_baselinefromhandshake", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "baselinefromhandshake()" + }, + { + "label": "baselineFromPolicySelections()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L102", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextgovernance_baselinefrompolicyselections", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "baselinefrompolicyselections()" + }, + { + "label": "parseGovernanceJson()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L120", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextgovernance_parsegovernancejson", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "parsegovernancejson()" + }, + { + "label": "LegacyBlockInput", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L133", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextgovernance_legacyblockinput", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "legacyblockinput" + }, + { + "label": "inferGovernanceFromLegacy()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L143", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextgovernance_infergovernancefromlegacy", + "community": 113, + "community_name": "Handshake Servicerpc", + "norm_label": "infergovernancefromlegacy()" + }, + { + "label": "resolveEffectiveGovernance()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L191", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextgovernance_resolveeffectivegovernance", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "resolveeffectivegovernance()" + }, + { + "label": "BlockWithGovernance", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L204", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextgovernance_blockwithgovernance", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "blockwithgovernance" + }, + { + "label": "resolveEffectiveUsagePolicy()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L214", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextgovernance_resolveeffectiveusagepolicy", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "resolveeffectiveusagepolicy()" + }, + { + "label": "itemAllowsUsage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L227", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextgovernance_itemallowsusage", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "itemallowsusage()" + }, + { + "label": "filterBlocksForLocalAI()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L242", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextgovernance_filterblocksforlocalai", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "filterblocksforlocalai()" + }, + { + "label": "filterBlocksForCloudAI()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L250", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextgovernance_filterblocksforcloudai", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "filterblocksforcloudai()" + }, + { + "label": "filterBlocksForExport()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L259", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextgovernance_filterblocksforexport", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "filterblocksforexport()" + }, + { + "label": "filterBlocksForSearch()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L268", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextgovernance_filterblocksforsearch", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "filterblocksforsearch()" + }, + { + "label": "filterBlocksForPeerTransmission()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L276", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextgovernance_filterblocksforpeertransmission", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "filterblocksforpeertransmission()" + }, + { + "label": "filterBlocksForAutoReply()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L285", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextgovernance_filterblocksforautoreply", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "filterblocksforautoreply()" + }, + { + "label": "contextHash.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextHash.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contexthash", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "contexthash.ts" + }, + { + "label": "ContextHashInput", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextHash.ts", + "source_location": "L34", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contexthash_contexthashinput", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "contexthashinput" + }, + { + "label": "buildCanonicalContextPayload()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextHash.ts", + "source_location": "L65", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contexthash_buildcanonicalcontextpayload", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "buildcanonicalcontextpayload()" + }, + { + "label": "computeContextHash()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextHash.ts", + "source_location": "L111", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contexthash_computecontexthash", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "computecontexthash()" + }, + { + "label": "generateNonce()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextHash.ts", + "source_location": "L123", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contexthash_generatenonce", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "generatenonce()" + }, + { + "label": "ContextHashVerificationResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextHash.ts", + "source_location": "L129", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contexthash_contexthashverificationresult", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "contexthashverificationresult" + }, + { + "label": "verifyContextHash()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextHash.ts", + "source_location": "L141", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contexthash_verifycontexthash", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "verifycontexthash()" + }, + { + "label": "validateTimestamp()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextHash.ts", + "source_location": "L166", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contexthash_validatetimestamp", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "validatetimestamp()" + }, + { + "label": "validateNonce()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextHash.ts", + "source_location": "L192", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contexthash_validatenonce", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "validatenonce()" + }, + { + "label": "timingSafeEqual()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextHash.ts", + "source_location": "L205", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contexthash_timingsafeequal", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "timingsafeequal()" + }, + { + "label": "contextIngestion.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextIngestion.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextingestion", + "community": 113, + "community_name": "Handshake Servicerpc", + "norm_label": "contextingestion.ts" + }, + { + "label": "ContextIngestionInput", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextIngestion.ts", + "source_location": "L24", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextingestion_contextingestioninput", + "community": 113, + "community_name": "Handshake Servicerpc", + "norm_label": "contextingestioninput" + }, + { + "label": "ContextIngestionResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextIngestion.ts", + "source_location": "L41", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextingestion_contextingestionresult", + "community": 113, + "community_name": "Handshake Servicerpc", + "norm_label": "contextingestionresult" + }, + { + "label": "parseVaultProfileSensitive()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextIngestion.ts", + "source_location": "L52", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextingestion_parsevaultprofilesensitive", + "community": 113, + "community_name": "Handshake Servicerpc", + "norm_label": "parsevaultprofilesensitive()" + }, + { + "label": "ingestContextBlocks()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextIngestion.ts", + "source_location": "L70", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextingestion_ingestcontextblocks", + "community": 113, + "community_name": "Handshake Servicerpc", + "norm_label": "ingestcontextblocks()" + }, + { + "label": "contextRetrievalTypes.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextRetrievalTypes.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextretrievaltypes", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "contextretrievaltypes.ts" + }, + { + "label": "ContextRetrievalMode", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextRetrievalTypes.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextretrievaltypes_contextretrievalmode", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "contextretrievalmode" + }, + { + "label": "ContextRetrievalResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextRetrievalTypes.ts", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextretrievaltypes_contextretrievalresult", + "community": 76, + "community_name": "Handshake", + "norm_label": "contextretrievalresult" + }, + { + "label": "SEMANTIC_SEARCH_LOG_TAG", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextRetrievalTypes.ts", + "source_location": "L14", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextretrievaltypes_semantic_search_log_tag", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "semantic_search_log_tag" + }, + { + "label": "contextSyncActiveGate.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncActiveGate.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextsyncactivegate", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "contextsyncactivegate.ts" + }, + { + "label": "getNextStateAfterInboundContextSync()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncActiveGate.ts", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextsyncactivegate_getnextstateafterinboundcontextsync", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "getnextstateafterinboundcontextsync()" + }, + { + "label": "contextSyncEnqueue.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "contextsyncenqueue.ts" + }, + { + "label": "TryEnqueueContextSyncOpts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L33", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_tryenqueuecontextsyncopts", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "tryenqueuecontextsyncopts" + }, + { + "label": "TryEnqueueContextSyncResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L43", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_tryenqueuecontextsyncresult", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "tryenqueuecontextsyncresult" + }, + { + "label": "tryEnqueueContextSync()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_tryenqueuecontextsync", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "tryenqueuecontextsync()" + }, + { + "label": "maybeEnqueueInitialContextSyncAfterInboundAccept()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L284", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_maybeenqueueinitialcontextsyncafterinboundaccept", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "maybeenqueueinitialcontextsyncafterinboundaccept()" + }, + { + "label": "retryDeferredInitialContextSyncForInternalHandshake()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L371", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_retrydeferredinitialcontextsyncforinternalhandshake", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "retrydeferredinitialcontextsyncforinternalhandshake()" + }, + { + "label": "completePendingContextSyncs()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L401", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_completependingcontextsyncs", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "completependingcontextsyncs()" + }, + { + "label": "contextSyncSeal.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncSeal.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextsyncseal", + "community": 113, + "community_name": "Handshake Servicerpc", + "norm_label": "contextsyncseal.ts" + }, + { + "label": "ContextSyncLocalRole", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncSeal.ts", + "source_location": "L29", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextsyncseal_contextsynclocalrole", + "community": 113, + "community_name": "Handshake Servicerpc", + "norm_label": "contextsynclocalrole" + }, + { + "label": "SealContextSyncResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncSeal.ts", + "source_location": "L31", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextsyncseal_sealcontextsyncresult", + "community": 113, + "community_name": "Handshake Servicerpc", + "norm_label": "sealcontextsyncresult" + }, + { + "label": "OpenContextSyncResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncSeal.ts", + "source_location": "L35", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextsyncseal_opencontextsyncresult", + "community": 113, + "community_name": "Handshake Servicerpc", + "norm_label": "opencontextsyncresult" + }, + { + "label": "roleLabels()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncSeal.ts", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextsyncseal_rolelabels", + "community": 113, + "community_name": "Handshake Servicerpc", + "norm_label": "rolelabels()" + }, + { + "label": "sealContextSyncBlocks()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncSeal.ts", + "source_location": "L51", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextsyncseal_sealcontextsyncblocks", + "community": 113, + "community_name": "Handshake Servicerpc", + "norm_label": "sealcontextsyncblocks()" + }, + { + "label": "openContextSyncBlocks()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncSeal.ts", + "source_location": "L93", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextsyncseal_opencontextsyncblocks", + "community": 113, + "community_name": "Handshake Servicerpc", + "norm_label": "opencontextsyncblocks()" + }, + { + "label": "unsealContextSyncCapsuleIfNeeded()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncSeal.ts", + "source_location": "L137", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_contextsyncseal_unsealcontextsynccapsuleifneeded", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "unsealcontextsynccapsuleifneeded()" + }, + { + "label": "counterpartyRepair.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/counterpartyRepair.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "counterpartyrepair.ts" + }, + { + "label": "isValidEd25519Hex64()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/counterpartyRepair.ts", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair_isvalided25519hex64", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "isvalided25519hex64()" + }, + { + "label": "CounterpartyInspectRow", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/counterpartyRepair.ts", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair_counterpartyinspectrow", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "counterpartyinspectrow" + }, + { + "label": "buildInspectRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/counterpartyRepair.ts", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair_buildinspectrow", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "buildinspectrow()" + }, + { + "label": "visitJson()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/counterpartyRepair.ts", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair_visitjson", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "visitjson()" + }, + { + "label": "collectSenderKeysForCapsuleType()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/counterpartyRepair.ts", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair_collectsenderkeysforcapsuletype", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "collectsenderkeysforcapsuletype()" + }, + { + "label": "uniqueSorted()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/counterpartyRepair.ts", + "source_location": "L81", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair_uniquesorted", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "uniquesorted()" + }, + { + "label": "tryResolveRemoteFromP2pPackages()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/counterpartyRepair.ts", + "source_location": "L90", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair_tryresolveremotefromp2ppackages", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "tryresolveremotefromp2ppackages()" + }, + { + "label": "RepairPlanResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/counterpartyRepair.ts", + "source_location": "L119", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair_repairplanresult", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "repairplanresult" + }, + { + "label": "planCounterpartyRepair()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/counterpartyRepair.ts", + "source_location": "L127", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair_plancounterpartyrepair", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "plancounterpartyrepair()" + }, + { + "label": "printInspectLine()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/counterpartyRepair.ts", + "source_location": "L193", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair_printinspectline", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "printinspectline()" + }, + { + "label": "handshake/db.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_db", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "handshake/db.ts" + }, + { + "label": "HANDSHAKE_MIGRATIONS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L25", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_db_handshake_migrations", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "handshake_migrations" + }, + { + "label": "EMAIL_PIPELINE_COLUMN_REPAIRS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1240", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_db_email_pipeline_column_repairs", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "email_pipeline_column_repairs" + }, + { + "label": "EMAIL_PIPELINE_INDEX_REPAIRS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1374", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_db_email_pipeline_index_repairs", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "email_pipeline_index_repairs" + }, + { + "label": "tableExistsInDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1394", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_db_tableexistsindb", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "tableexistsindb()" + }, + { + "label": "getColumnNames()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1405", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_db_getcolumnnames", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "getcolumnnames()" + }, + { + "label": "ensureEmailPipelineSchemaRepairs()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1417", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_db_ensureemailpipelineschemarepairs", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "ensureemailpipelineschemarepairs()" + }, + { + "label": "migrateHandshakeTables()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1457", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_db_migratehandshaketables", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "migratehandshaketables()" + }, + { + "label": "backfillLocalX25519PublicKey()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1518", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_db_backfilllocalx25519publickey", + "community": 397, + "community_name": "Internal Inference Handshake Vault", + "norm_label": "backfilllocalx25519publickey()" + }, + { + "label": "serializeHandshakeRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1626", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_db_serializehandshakerecord", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "serializehandshakerecord()" + }, + { + "label": "deserializeHandshakeRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1686", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_db_deserializehandshakerecord", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "deserializehandshakerecord()" + }, + { + "label": "parsePolicySelections()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1751", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_db_parsepolicyselections", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "parsepolicyselections()" + }, + { + "label": "updateHandshakeContextSyncPending()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1760", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakecontextsyncpending", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "updatehandshakecontextsyncpending()" + }, + { + "label": "updateHandshakeContextSyncEnqueued()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1768", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakecontextsyncenqueued", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "updatehandshakecontextsyncenqueued()" + }, + { + "label": "updateHandshakePolicySelections()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1779", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakepolicyselections", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "updatehandshakepolicyselections()" + }, + { + "label": "updateHandshakeSigningKeys()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1794", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakesigningkeys", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "updatehandshakesigningkeys()" + }, + { + "label": "updateHandshakeCounterpartyKey()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1804", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakecounterpartykey", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "updatehandshakecounterpartykey()" + }, + { + "label": "insertHandshakeRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1826", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_db_inserthandshakerecord", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "inserthandshakerecord()" + }, + { + "label": "updateHandshakeRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1876", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakerecord", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "updatehandshakerecord()" + }, + { + "label": "updateHandshakeTopologyPairingKind()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1941", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_db_updatehandshaketopologypairingkind", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "updatehandshaketopologypairingkind()" + }, + { + "label": "getHandshakeRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1951", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "gethandshakerecord()" + }, + { + "label": "getHandshakeIdByCounterpartyP2PToken()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1957", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_db_gethandshakeidbycounterpartyp2ptoken", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "gethandshakeidbycounterpartyp2ptoken()" + }, + { + "label": "needsCanonicalRelayDeviceIdForCoordination()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1976", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_db_needscanonicalrelaydeviceidforcoordination", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "needscanonicalrelaydeviceidforcoordination()" + }, + { + "label": "getP2pPendingPackageJsonsForHandshake()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2001", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_db_getp2ppendingpackagejsonsforhandshake", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "getp2ppendingpackagejsonsforhandshake()" + }, + { + "label": "refreshInternalHandshakePersistenceFlags()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2032", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_db_refreshinternalhandshakepersistenceflags", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "refreshinternalhandshakepersistenceflags()" + }, + { + "label": "listHandshakeRecords()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2042", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_db_listhandshakerecords", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "listhandshakerecords()" + }, + { + "label": "getExistingHandshakesForLookup()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2067", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_db_getexistinghandshakesforlookup", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "getexistinghandshakesforlookup()" + }, + { + "label": "getSeenCapsuleHashes()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2076", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_db_getseencapsulehashes", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "getseencapsulehashes()" + }, + { + "label": "insertSeenCapsuleHash()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2083", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_db_insertseencapsulehash", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "insertseencapsulehash()" + }, + { + "label": "getContextBlockVersions()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2091", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_db_getcontextblockversions", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "getcontextblockversions()" + }, + { + "label": "upsertContextBlockVersion()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2110", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_db_upsertcontextblockversion", + "community": 113, + "community_name": "Handshake Servicerpc", + "norm_label": "upsertcontextblockversion()" + }, + { + "label": "insertAuditLogEntry()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2125", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_db_insertauditlogentry", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "insertauditlogentry()" + }, + { + "label": "insertPendingP2PBeap()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2148", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_db_insertpendingp2pbeap", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "insertpendingp2pbeap()" + }, + { + "label": "PendingP2PBeapEntry", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2220", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_db_pendingp2pbeapentry", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "pendingp2pbeapentry" + }, + { + "label": "getPendingP2PBeapMessages()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2227", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_db_getpendingp2pbeapmessages", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "getpendingp2pbeapmessages()" + }, + { + "label": "markP2PPendingBeapProcessed()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2253", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_db_markp2ppendingbeapprocessed", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "markp2ppendingbeapprocessed()" + }, + { + "label": "deletePendingP2PBeap()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2260", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_db_deletependingp2pbeap", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "deletependingp2pbeap()" + }, + { + "label": "expirePendingHandshakes()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2281", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_db_expirependinghandshakes", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "expirependinghandshakes()" + }, + { + "label": "expireActiveHandshakes()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2286", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_db_expireactivehandshakes", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "expireactivehandshakes()" + }, + { + "label": "softDeleteExpiredBlocks()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2290", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_db_softdeleteexpiredblocks", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "softdeleteexpiredblocks()" + }, + { + "label": "markContextBlocksInactiveByHandshake()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2297", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_db_markcontextblocksinactivebyhandshake", + "community": 113, + "community_name": "Handshake Servicerpc", + "norm_label": "markcontextblocksinactivebyhandshake()" + }, + { + "label": "deleteBlocksByHandshake()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2320", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_db_deleteblocksbyhandshake", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "deleteblocksbyhandshake()" + }, + { + "label": "deleteEmbeddingsByHandshake()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2333", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_db_deleteembeddingsbyhandshake", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "deleteembeddingsbyhandshake()" + }, + { + "label": "deleteHandshakeRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2346", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_db_deletehandshakerecord", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "deletehandshakerecord()" + }, + { + "label": "ContextStoreEntry", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2372", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_db_contextstoreentry", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "contextstoreentry" + }, + { + "label": "insertContextStoreEntry()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2388", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_db_insertcontextstoreentry", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "insertcontextstoreentry()" + }, + { + "label": "updateContextStoreGovernance()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2401", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_db_updatecontextstoregovernance", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "updatecontextstoregovernance()" + }, + { + "label": "updateContextBlockGovernance()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2413", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_db_updatecontextblockgovernance", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "updatecontextblockgovernance()" + }, + { + "label": "getContextStoreByHandshake()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2425", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_db_getcontextstorebyhandshake", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "getcontextstorebyhandshake()" + }, + { + "label": "updateContextStoreStatus()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2439", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_db_updatecontextstorestatus", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "updatecontextstorestatus()" + }, + { + "label": "updateContextStoreStatusBulk()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2458", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_db_updatecontextstorestatusbulk", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "updatecontextstorestatusbulk()" + }, + { + "label": "NOTE: repair entry omits CHECK constraint (not supported in ALTER TABLE ADD\u2026", + "file_type": "rationale", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1306", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_db_rationale_1306", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "note: repair entry omits check constraint (not supported in alter table add..." + }, + { + "label": "emailTransport.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/emailTransport.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_emailtransport", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "emailtransport.ts" + }, + { + "label": "EmailTransportResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/emailTransport.ts", + "source_location": "L15", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_emailtransport_emailtransportresult", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "emailtransportresult" + }, + { + "label": "EmailSendFn", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/emailTransport.ts", + "source_location": "L21", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_emailtransport_emailsendfn", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "emailsendfn" + }, + { + "label": "setEmailSendFn()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/emailTransport.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_emailtransport_setemailsendfn", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "setemailsendfn()" + }, + { + "label": "_resetEmailSendFn()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/emailTransport.ts", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_emailtransport_resetemailsendfn", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "_resetemailsendfn()" + }, + { + "label": "sendCapsuleViaEmail()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/emailTransport.ts", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_emailtransport_sendcapsuleviaemail", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "sendcapsuleviaemail()" + }, + { + "label": "embeddings.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_embeddings", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "embeddings.ts" + }, + { + "label": "LocalEmbeddingService", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_embeddings_localembeddingservice", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "localembeddingservice" + }, + { + "label": ".generateEmbedding()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_embeddings_localembeddingservice_generateembedding", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": ".generateembedding()" + }, + { + "label": "OllamaEmbeddingService", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_embeddings_ollamaembeddingservice", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "ollamaembeddingservice" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_embeddings_ollamaembeddingservice_constructor", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": ".constructor()" + }, + { + "label": ".generateEmbedding()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L37", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_embeddings_ollamaembeddingservice_generateembedding", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": ".generateembedding()" + }, + { + "label": ".isAvailable()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L58", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_embeddings_ollamaembeddingservice_isavailable", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": ".isavailable()" + }, + { + "label": "getOrCreateEmbeddingService()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L74", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_embeddings_getorcreateembeddingservice", + "community": 397, + "community_name": "Internal Inference Handshake Vault", + "norm_label": "getorcreateembeddingservice()" + }, + { + "label": "processEmbeddingQueue()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L97", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_embeddings_processembeddingqueue", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "processembeddingqueue()" + }, + { + "label": "semanticSearch()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L165", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_embeddings_semanticsearch", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "semanticsearch()" + }, + { + "label": "cosineSimilarity()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L292", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_embeddings_cosinesimilarity", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "cosinesimilarity()" + }, + { + "label": "enforcement.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_enforcement", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "enforcement.ts" + }, + { + "label": "mapCapsuleTypeToHandshake()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L63", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_enforcement_mapcapsuletypetohandshake", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "mapcapsuletypetohandshake()" + }, + { + "label": "extractAcceptCapsuleSenderKeyMaterial()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L75", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_enforcement_extractacceptcapsulesenderkeymaterial", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "extractacceptcapsulesenderkeymaterial()" + }, + { + "label": "forcePeerKeysFromAcceptCapsule()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L97", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_enforcement_forcepeerkeysfromacceptcapsule", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "forcepeerkeysfromacceptcapsule()" + }, + { + "label": "extractVerifiedInput()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L124", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_enforcement_extractverifiedinput", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "extractverifiedinput()" + }, + { + "label": "processHandshakeCapsule()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L184", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_enforcement_processhandshakecapsule", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "processhandshakecapsule()" + }, + { + "label": "isHandshakeActive()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L644", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_enforcement_ishandshakeactive", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "ishandshakeactive()" + }, + { + "label": "diagnoseHandshakeInactive()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L655", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_enforcement_diagnosehandshakeinactive", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "diagnosehandshakeinactive()" + }, + { + "label": "getEffectiveTier()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L676", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_enforcement_geteffectivetier", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "geteffectivetier()" + }, + { + "label": "authorizeAction()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L692", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_enforcement_authorizeaction", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "authorizeaction()" + }, + { + "label": "resolveExpiresAt()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L738", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_enforcement_resolveexpiresat", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "resolveexpiresat()" + }, + { + "label": "buildInitiateRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L745", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_enforcement_buildinitiaterecord", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "buildinitiaterecord()" + }, + { + "label": "buildAcceptRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L832", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_enforcement_buildacceptrecord", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "buildacceptrecord()" + }, + { + "label": "scheduleInternalInitiatorPostAcceptCoordinationRepair()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L948", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_enforcement_scheduleinternalinitiatorpostacceptcoordinationrepair", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "scheduleinternalinitiatorpostacceptcoordinationrepair()" + }, + { + "label": "inboundPeerP2pAuthTokenUpdate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L1009", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_enforcement_inboundpeerp2pauthtokenupdate", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "inboundpeerp2pauthtokenupdate()" + }, + { + "label": "buildRefreshRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L1032", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_enforcement_buildrefreshrecord", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "buildrefreshrecord()" + }, + { + "label": "buildContextSyncRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L1052", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_enforcement_buildcontextsyncrecord", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "buildcontextsyncrecord()" + }, + { + "label": "buildRevokeRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L1078", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_enforcement_buildrevokerecord", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "buildrevokerecord()" + }, + { + "label": "IMPORTANT: processHandshakeCapsule accepts ONLY ValidatedCapsule from the", + "file_type": "rationale", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L8", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_enforcement_rationale_8", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "important: processhandshakecapsule accepts only validatedcapsule from the" + }, + { + "label": "handshakeAccountIsolation.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeAccountIsolation.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation", + "community": 188, + "community_name": "Handshake #188", + "norm_label": "handshakeaccountisolation.ts" + }, + { + "label": "HandshakeRowVisibility", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeAccountIsolation.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation_handshakerowvisibility", + "community": 188, + "community_name": "Handshake #188", + "norm_label": "handshakerowvisibility" + }, + { + "label": "sessionMatchesParty()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeAccountIsolation.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation_sessionmatchesparty", + "community": 188, + "community_name": "Handshake #188", + "norm_label": "sessionmatchesparty()" + }, + { + "label": "samePrincipalForInternal()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeAccountIsolation.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation_sameprincipalforinternal", + "community": 188, + "community_name": "Handshake #188", + "norm_label": "sameprincipalforinternal()" + }, + { + "label": "isPendingAcceptorPartyForSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeAccountIsolation.ts", + "source_location": "L50", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation_ispendingacceptorpartyforsession", + "community": 188, + "community_name": "Handshake #188", + "norm_label": "ispendingacceptorpartyforsession()" + }, + { + "label": "handshakeRowVisibilityForSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeAccountIsolation.ts", + "source_location": "L60", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation_handshakerowvisibilityforsession", + "community": 188, + "community_name": "Handshake #188", + "norm_label": "handshakerowvisibilityforsession()" + }, + { + "label": "filterHandshakeRecordsForCurrentSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeAccountIsolation.ts", + "source_location": "L92", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation_filterhandshakerecordsforcurrentsession", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "filterhandshakerecordsforcurrentsession()" + }, + { + "label": "handshakeConfidentiality.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeConfidentiality.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "handshakeconfidentiality.ts" + }, + { + "label": "HandshakeClassification", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeConfidentiality.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality_handshakeclassification", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "handshakeclassification" + }, + { + "label": "ConfidentialityScope", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeConfidentiality.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality_confidentialityscope", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "confidentialityscope" + }, + { + "label": "scopeToClassification()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeConfidentiality.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality_scopetoclassification", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "scopetoclassification()" + }, + { + "label": "classificationToScope()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeConfidentiality.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality_classificationtoscope", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "classificationtoscope()" + }, + { + "label": "readHandshakeConfidentialityScope()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeConfidentiality.ts", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality_readhandshakeconfidentialityscope", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "readhandshakeconfidentialityscope()" + }, + { + "label": "linkHandshakeProfiles()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeConfidentiality.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality_linkhandshakeprofiles", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "linkhandshakeprofiles()" + }, + { + "label": "syncHandshakeConfidentialityScope()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeConfidentiality.ts", + "source_location": "L49", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality_synchandshakeconfidentialityscope", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "synchandshakeconfidentialityscope()" + }, + { + "label": "syncHandshakesForProfile()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeConfidentiality.ts", + "source_location": "L100", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality_synchandshakesforprofile", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "synchandshakesforprofile()" + }, + { + "label": "getHandshakeClassification()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeConfidentiality.ts", + "source_location": "L118", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality_gethandshakeclassification", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "gethandshakeclassification()" + }, + { + "label": "resolveInnerVaultDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeConfidentiality.ts", + "source_location": "L124", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality_resolveinnervaultdb", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "resolveinnervaultdb()" + }, + { + "label": "attachHandshakeProfilesAndSyncScope()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeConfidentiality.ts", + "source_location": "L135", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality_attachhandshakeprofilesandsyncscope", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "attachhandshakeprofilesandsyncscope()" + }, + { + "label": "handshakeHealthRemoteCheck.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthRemoteCheck.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_handshakehealthremotecheck", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "handshakehealthremotecheck.ts" + }, + { + "label": "healthKey()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthRemoteCheck.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_handshakehealthremotecheck_healthkey", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "healthkey()" + }, + { + "label": "classifyRemoteDivergence()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthRemoteCheck.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_handshakehealthremotecheck_classifyremotedivergence", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "classifyremotedivergence()" + }, + { + "label": "runHandshakeHealthRemoteCheckAfterRelayConnect()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthRemoteCheck.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_handshakehealthremotecheck_runhandshakehealthremotecheckafterrelayconnect", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "runhandshakehealthremotecheckafterrelayconnect()" + }, + { + "label": "handshakeHealthStartupLog.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthStartupLog.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_handshakehealthstartuplog", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "handshakehealthstartuplog.ts" + }, + { + "label": "yn()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthStartupLog.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_handshakehealthstartuplog_yn", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "yn()" + }, + { + "label": "logHandshakeHealthStartupLines()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthStartupLog.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_handshakehealthstartuplog_loghandshakehealthstartuplines", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "loghandshakehealthstartuplines()" + }, + { + "label": "handshakeVerification.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeVerification.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_handshakeverification", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "handshakeverification.ts" + }, + { + "label": "HandshakeVerifyResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeVerification.ts", + "source_location": "L34", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_handshakeverification_handshakeverifyresult", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "handshakeverifyresult" + }, + { + "label": "HandshakeCapsuleFields", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeVerification.ts", + "source_location": "L38", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_handshakeverification_handshakecapsulefields", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "handshakecapsulefields" + }, + { + "label": "verifyHandshakeCapsule()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeVerification.ts", + "source_location": "L74", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_handshakeverification_verifyhandshakecapsule", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "verifyhandshakecapsule()" + }, + { + "label": "hybridSearch.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/hybridSearch.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_hybridsearch", + "community": 76, + "community_name": "Handshake", + "norm_label": "hybridsearch.ts" + }, + { + "label": "HybridSearchFilter", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/hybridSearch.ts", + "source_location": "L26", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_hybridsearch_hybridsearchfilter", + "community": 76, + "community_name": "Handshake", + "norm_label": "hybridsearchfilter" + }, + { + "label": "HybridSearchResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/hybridSearch.ts", + "source_location": "L31", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_hybridsearch_hybridsearchresult", + "community": 76, + "community_name": "Handshake", + "norm_label": "hybridsearchresult" + }, + { + "label": "HybridSearchMetrics", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/hybridSearch.ts", + "source_location": "L44", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_hybridsearch_hybridsearchmetrics", + "community": 76, + "community_name": "Handshake", + "norm_label": "hybridsearchmetrics" + }, + { + "label": "hybridSearch()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/hybridSearch.ts", + "source_location": "L57", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_hybridsearch_hybridsearch", + "community": 76, + "community_name": "Handshake", + "norm_label": "hybridsearch()" + }, + { + "label": "runStructuredPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/hybridSearch.ts", + "source_location": "L110", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_hybridsearch_runstructuredpath", + "community": 76, + "community_name": "Handshake", + "norm_label": "runstructuredpath()" + }, + { + "label": "runSemanticPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/hybridSearch.ts", + "source_location": "L129", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_hybridsearch_runsemanticpath", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "runsemanticpath()" + }, + { + "label": "main/handshake/index.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_index", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "main/handshake/index.ts" + }, + { + "label": "initiatorPersist.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/initiatorPersist.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_initiatorpersist", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "initiatorpersist.ts" + }, + { + "label": "PersistInitiatorResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/initiatorPersist.ts", + "source_location": "L33", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_initiatorpersist_persistinitiatorresult", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "persistinitiatorresult" + }, + { + "label": "persistInitiatorHandshakeRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/initiatorPersist.ts", + "source_location": "L42", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_initiatorpersist_persistinitiatorhandshakerecord", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "persistinitiatorhandshakerecord()" + }, + { + "label": "intentClassifier.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/intentClassifier.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_intentclassifier", + "community": 76, + "community_name": "Handshake", + "norm_label": "intentclassifier.ts" + }, + { + "label": "ChatIntent", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/intentClassifier.ts", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_intentclassifier_chatintent", + "community": 76, + "community_name": "Handshake", + "norm_label": "chatintent" + }, + { + "label": "IntentResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/intentClassifier.ts", + "source_location": "L15", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_intentclassifier_intentresult", + "community": 76, + "community_name": "Handshake", + "norm_label": "intentresult" + }, + { + "label": "DOCUMENT_LOOKUP_PATTERNS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/intentClassifier.ts", + "source_location": "L20", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_intentclassifier_document_lookup_patterns", + "community": 76, + "community_name": "Handshake", + "norm_label": "document_lookup_patterns" + }, + { + "label": "HANDSHAKE_CONTEXT_PATTERNS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/intentClassifier.ts", + "source_location": "L44", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_intentclassifier_handshake_context_patterns", + "community": 76, + "community_name": "Handshake", + "norm_label": "handshake_context_patterns" + }, + { + "label": "INBOX_LOOKUP_PATTERNS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/intentClassifier.ts", + "source_location": "L52", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_intentclassifier_inbox_lookup_patterns", + "community": 76, + "community_name": "Handshake", + "norm_label": "inbox_lookup_patterns" + }, + { + "label": "GENERAL_SEARCH_PATTERNS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/intentClassifier.ts", + "source_location": "L58", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_intentclassifier_general_search_patterns", + "community": 76, + "community_name": "Handshake", + "norm_label": "general_search_patterns" + }, + { + "label": "classifyIntent()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/intentClassifier.ts", + "source_location": "L68", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_intentclassifier_classifyintent", + "community": 76, + "community_name": "Handshake", + "norm_label": "classifyintent()" + }, + { + "label": "ATTACHMENT_REQUIRES_SELECTION_PATTERNS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/intentClassifier.ts", + "source_location": "L107", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_intentclassifier_attachment_requires_selection_patterns", + "community": 76, + "community_name": "Handshake", + "norm_label": "attachment_requires_selection_patterns" + }, + { + "label": "queryRequiresAttachmentSelection()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/intentClassifier.ts", + "source_location": "L123", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_intentclassifier_queryrequiresattachmentselection", + "community": 76, + "community_name": "Handshake", + "norm_label": "queryrequiresattachmentselection()" + }, + { + "label": "intentExecution.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/intentExecution.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_intentexecution", + "community": 76, + "community_name": "Handshake", + "norm_label": "intentexecution.ts" + }, + { + "label": "StructuredResultItem", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/intentExecution.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_intentexecution_structuredresultitem", + "community": 76, + "community_name": "Handshake", + "norm_label": "structuredresultitem" + }, + { + "label": "StructuredExecutionResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/intentExecution.ts", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_intentexecution_structuredexecutionresult", + "community": 76, + "community_name": "Handshake", + "norm_label": "structuredexecutionresult" + }, + { + "label": "friendlyTypeName()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/intentExecution.ts", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_intentexecution_friendlytypename", + "community": 76, + "community_name": "Handshake", + "norm_label": "friendlytypename()" + }, + { + "label": "truncate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/intentExecution.ts", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_intentexecution_truncate", + "community": 76, + "community_name": "Handshake", + "norm_label": "truncate()" + }, + { + "label": "executeStructuredSearch()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/intentExecution.ts", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_intentexecution_executestructuredsearch", + "community": 76, + "community_name": "Handshake", + "norm_label": "executestructuredsearch()" + }, + { + "label": "intentRouter.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/intentRouter.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_intentrouter", + "community": 76, + "community_name": "Handshake", + "norm_label": "intentrouter.ts" + }, + { + "label": "RouterDomain", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/intentRouter.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_intentrouter_routerdomain", + "community": 76, + "community_name": "Handshake", + "norm_label": "routerdomain" + }, + { + "label": "RouterResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/intentRouter.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_intentrouter_routerresult", + "community": 76, + "community_name": "Handshake", + "norm_label": "routerresult" + }, + { + "label": "routeByIntent()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/intentRouter.ts", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_intentrouter_routebyintent", + "community": 76, + "community_name": "Handshake", + "norm_label": "routebyintent()" + }, + { + "label": "internalCoordinationWire.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalCoordinationWire.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_internalcoordinationwire", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "internalcoordinationwire.ts" + }, + { + "label": "InternalRelayCapsuleWireOpts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalCoordinationWire.ts", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_internalcoordinationwire_internalrelaycapsulewireopts", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "internalrelaycapsulewireopts" + }, + { + "label": "InternalRelayRecordSlice", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalCoordinationWire.ts", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_internalcoordinationwire_internalrelayrecordslice", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "internalrelayrecordslice" + }, + { + "label": "internalRelayCapsuleWireOptsFromRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalCoordinationWire.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_internalcoordinationwire_internalrelaycapsulewireoptsfromrecord", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "internalrelaycapsulewireoptsfromrecord()" + }, + { + "label": "coordinationDevicePairForInternalRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalCoordinationWire.ts", + "source_location": "L72", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_internalcoordinationwire_coordinationdevicepairforinternalrecord", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "coordinationdevicepairforinternalrecord()" + }, + { + "label": "internalPersistence.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalPersistence.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_internalpersistence", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "internalpersistence.ts" + }, + { + "label": "computeInternalRoutingKey()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalPersistence.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_internalpersistence_computeinternalroutingkey", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "computeinternalroutingkey()" + }, + { + "label": "isInternalCoordinationIdentityComplete()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalPersistence.ts", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_internalpersistence_isinternalcoordinationidentitycomplete", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "isinternalcoordinationidentitycomplete()" + }, + { + "label": "finalizeInternalHandshakePersistence()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalPersistence.ts", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_internalpersistence_finalizeinternalhandshakepersistence", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "finalizeinternalhandshakepersistence()" + }, + { + "label": "validateInternalInitiateCapsuleWire()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalPersistence.ts", + "source_location": "L93", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_internalpersistence_validateinternalinitiatecapsulewire", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "validateinternalinitiatecapsulewire()" + }, + { + "label": "internalRelayOutboundGuards.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalRelayOutboundGuards.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "internalrelayoutboundguards.ts" + }, + { + "label": "LOCAL_INTERNAL_RELAY_VALIDATION_FAILED", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalRelayOutboundGuards.ts", + "source_location": "L14", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_local_internal_relay_validation_failed", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "local_internal_relay_validation_failed" + }, + { + "label": "RELAY_ENVELOPE_INTERNAL_WIRE_TYPES", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalRelayOutboundGuards.ts", + "source_location": "L19", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_relay_envelope_internal_wire_types", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "relay_envelope_internal_wire_types" + }, + { + "label": "nz()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalRelayOutboundGuards.ts", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_nz", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "nz()" + }, + { + "label": "isInternalRelayCapsuleEnvelope()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalRelayOutboundGuards.ts", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_isinternalrelaycapsuleenvelope", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "isinternalrelaycapsuleenvelope()" + }, + { + "label": "collectInternalRelayWireGaps()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalRelayOutboundGuards.ts", + "source_location": "L49", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_collectinternalrelaywiregaps", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "collectinternalrelaywiregaps()" + }, + { + "label": "shouldValidateInternalRelayWire()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalRelayOutboundGuards.ts", + "source_location": "L71", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_shouldvalidateinternalrelaywire", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "shouldvalidateinternalrelaywire()" + }, + { + "label": "EnqueueOutboundCapsuleResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalRelayOutboundGuards.ts", + "source_location": "L80", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_enqueueoutboundcapsuleresult", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "enqueueoutboundcapsuleresult" + }, + { + "label": "formatLocalInternalRelayValidationJson()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalRelayOutboundGuards.ts", + "source_location": "L90", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_formatlocalinternalrelayvalidationjson", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "formatlocalinternalrelayvalidationjson()" + }, + { + "label": "validateInternalCapsuleBeforeEnqueue()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalRelayOutboundGuards.ts", + "source_location": "L108", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_validateinternalcapsulebeforeenqueue", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "validateinternalcapsulebeforeenqueue()" + }, + { + "label": "CoordinationPreHttpValidation", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalRelayOutboundGuards.ts", + "source_location": "L170", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_coordinationprehttpvalidation", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "coordinationprehttpvalidation" + }, + { + "label": "applyContextSyncInternalRoutingFromRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalRelayOutboundGuards.ts", + "source_location": "L183", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_applycontextsyncinternalroutingfromrecord", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "applycontextsyncinternalroutingfromrecord()" + }, + { + "label": "validateCoordinationInternalPayloadBeforePost()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalRelayOutboundGuards.ts", + "source_location": "L215", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_validatecoordinationinternalpayloadbeforepost", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "validatecoordinationinternalpayloadbeforepost()" + }, + { + "label": "internalSandboxesApi.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "internalsandboxesapi.ts" + }, + { + "label": "P2P_BEAP_INBOX_ACCOUNT_ID", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L13", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_p2p_beap_inbox_account_id", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "p2p_beap_inbox_account_id" + }, + { + "label": "InternalSandboxListEntry", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L15", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_internalsandboxlistentry", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "internalsandboxlistentry" + }, + { + "label": "InternalSandboxListIncompleteEntry", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L41", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_internalsandboxlistincompleteentry", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "internalsandboxlistincompleteentry" + }, + { + "label": "SandboxOrchestratorAvailabilityStatus", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L53", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_sandboxorchestratoravailabilitystatus", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "sandboxorchestratoravailabilitystatus" + }, + { + "label": "SandboxOrchestratorAvailability", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L55", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_sandboxorchestratoravailability", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "sandboxorchestratoravailability" + }, + { + "label": "AuthoritativeDeviceInternalRole", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L68", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_authoritativedeviceinternalrole", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "authoritativedeviceinternalrole" + }, + { + "label": "computeAuthoritativeDeviceInternalRole()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L75", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_computeauthoritativedeviceinternalrole", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "computeauthoritativedeviceinternalrole()" + }, + { + "label": "computeSandboxOrchestratorAvailability()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L96", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_computesandboxorchestratoravailability", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "computesandboxorchestratoravailability()" + }, + { + "label": "normId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L111", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_normid", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "normid()" + }, + { + "label": "sessionIsPartyOnVisibleHandshakeRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L120", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_sessionispartyonvisiblehandshakerow", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "sessionispartyonvisiblehandshakerow()" + }, + { + "label": "isLocalHostPeerSandbox()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L124", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_islocalhostpeersandbox", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "islocalhostpeersandbox()" + }, + { + "label": "isLocalSandboxPeerHost()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L135", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_islocalsandboxpeerhost", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "islocalsandboxpeerhost()" + }, + { + "label": "peerCoordinationOrLegacyId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L142", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_peercoordinationorlegacyid", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "peercoordinationorlegacyid()" + }, + { + "label": "peerDeviceName()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L149", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_peerdevicename", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "peerdevicename()" + }, + { + "label": "deriveDeliveryStatus()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L155", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_derivedeliverystatus", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "derivedeliverystatus()" + }, + { + "label": "deriveLiveStatus()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L163", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_derivelivestatus", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "derivelivestatus()" + }, + { + "label": "hasPeerQbeapPublicKeyMaterial()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L170", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_haspeerqbeappublickeymaterial", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "haspeerqbeappublickeymaterial()" + }, + { + "label": "isInternalHostSandboxKeyingComplete()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L181", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_isinternalhostsandboxkeyingcomplete", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "isinternalhostsandboxkeyingcomplete()" + }, + { + "label": "isBeapCloneEligibleForRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L192", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_isbeapcloneeligibleforrecord", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "isbeapcloneeligibleforrecord()" + }, + { + "label": "isEligibleActiveInternalHostSandboxRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L203", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_iseligibleactiveinternalhostsandboxrecord", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "iseligibleactiveinternalhostsandboxrecord()" + }, + { + "label": "listAvailableInternalSandboxes()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L219", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_listavailableinternalsandboxes", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "listavailableinternalsandboxes()" + }, + { + "label": "handshake/ipc.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ipc", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "handshake/ipc.ts" + }, + { + "label": "coordinationAcceptorUserIdForRegistration()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L108", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ipc_coordinationacceptoruseridforregistration", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "coordinationacceptoruseridforregistration()" + }, + { + "label": "getLocalDeviceIdForRelay()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L131", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ipc_getlocaldeviceidforrelay", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "getlocaldeviceidforrelay()" + }, + { + "label": "getLocalPairingCode()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L148", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ipc_getlocalpairingcode", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "getlocalpairingcode()" + }, + { + "label": "formatInternalEndpointValidationFailure()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L170", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ipc_formatinternalendpointvalidationfailure", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "formatinternalendpointvalidationfailure()" + }, + { + "label": "BoundKeyAgreementError", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L198", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ipc_boundkeyagreementerror", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "boundkeyagreementerror" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L201", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ipc_boundkeyagreementerror_constructor", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": ".constructor()" + }, + { + "label": "EnsureKeyAgreementKeysOptions", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L212", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ipc_ensurekeyagreementkeysoptions", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "ensurekeyagreementkeysoptions" + }, + { + "label": "acceptorX25519FromHandshakeAcceptParams()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L243", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ipc_acceptorx25519fromhandshakeacceptparams", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "acceptorx25519fromhandshakeacceptparams()" + }, + { + "label": "logNormalAcceptX25519BindingFailure()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L257", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ipc_lognormalacceptx25519bindingfailure", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "lognormalacceptx25519bindingfailure()" + }, + { + "label": "handshakeAcceptMissingX25519Result()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L285", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ipc_handshakeacceptmissingx25519result", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "handshakeacceptmissingx25519result()" + }, + { + "label": "ensureKeyAgreementKeys()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L305", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ipc_ensurekeyagreementkeys", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "ensurekeyagreementkeys()" + }, + { + "label": "PATH_TO_LABEL", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L413", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ipc_path_to_label", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "path_to_label" + }, + { + "label": "pathToHumanLabel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L430", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ipc_pathtohumanlabel", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "pathtohumanlabel()" + }, + { + "label": "collectStringsFromJson()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L435", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ipc_collectstringsfromjson", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "collectstringsfromjson()" + }, + { + "label": "extractSnippetFromPayload()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L445", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ipc_extractsnippetfrompayload", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "extractsnippetfrompayload()" + }, + { + "label": "RawBlockWithPolicy", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L463", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ipc_rawblockwithpolicy", + "community": 113, + "community_name": "Handshake Servicerpc", + "norm_label": "rawblockwithpolicy" + }, + { + "label": "BuildBlocksResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L469", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ipc_buildblocksresult", + "community": 113, + "community_name": "Handshake Servicerpc", + "norm_label": "buildblocksresult" + }, + { + "label": "buildContextBlocksFromParams()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L484", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ipc_buildcontextblocksfromparams", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "buildcontextblocksfromparams()" + }, + { + "label": "buildContextBlocksFromParamsWithPolicy()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L492", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ipc_buildcontextblocksfromparamswithpolicy", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "buildcontextblocksfromparamswithpolicy()" + }, + { + "label": "resolveProfileIdsToContextBlocks()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L543", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ipc_resolveprofileidstocontextblocks", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "resolveprofileidstocontextblocks()" + }, + { + "label": "SSOSessionProvider", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L644", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ipc_ssosessionprovider", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "ssosessionprovider" + }, + { + "label": "OidcTokenProvider", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L645", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ipc_oidctokenprovider", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "oidctokenprovider" + }, + { + "label": "_getSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L647", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ipc_getsession", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "_getsession()" + }, + { + "label": "_getOidcToken()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L648", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ipc_getoidctoken", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "_getoidctoken()" + }, + { + "label": "setSSOSessionProvider()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L655", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ipc_setssosessionprovider", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "setssosessionprovider()" + }, + { + "label": "setOidcTokenProvider()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L662", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ipc_setoidctokenprovider", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "setoidctokenprovider()" + }, + { + "label": "_resetSSOSessionProvider()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L667", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ipc_resetssosessionprovider", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "_resetssosessionprovider()" + }, + { + "label": "getCurrentSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L676", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ipc_getcurrentsession", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "getcurrentsession()" + }, + { + "label": "getCoordinationOidcToken()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L681", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ipc_getcoordinationoidctoken", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "getcoordinationoidctoken()" + }, + { + "label": "requireSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L685", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ipc_requiresession", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "requiresession()" + }, + { + "label": "getCounterpartyEmail()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L693", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ipc_getcounterpartyemail", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "getcounterpartyemail()" + }, + { + "label": "handleHandshakeRPC()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L700", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "handlehandshakerpc()" + }, + { + "label": "registerHandshakeRoutes()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L3466", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ipc_registerhandshakeroutes", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "registerhandshakeroutes()" + }, + { + "label": "IMPORTANT: Do NOT auto-repair when local_x25519_private_key_b64 is non-null.", + "file_type": "rationale", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L1224", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ipc_rationale_1224", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "important: do not auto-repair when local_x25519_private_key_b64 is non-null." + }, + { + "label": "NOTE: for coordination mode, context_sync is enqueued inside the setImmediate\u2026", + "file_type": "rationale", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L2656", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ipc_rationale_2656", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "note: for coordination mode, context_sync is enqueued inside the setimmediate..." + }, + { + "label": "keyBindingDebug.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/keyBindingDebug.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_keybindingdebug", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "keybindingdebug.ts" + }, + { + "label": "f16()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/keyBindingDebug.ts", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_keybindingdebug_f16", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "f16()" + }, + { + "label": "peerX25519Split()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/keyBindingDebug.ts", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_keybindingdebug_peerx25519split", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "peerx25519split()" + }, + { + "label": "KeyBindingLogInput", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/keyBindingDebug.ts", + "source_location": "L27", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_keybindingdebug_keybindingloginput", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "keybindingloginput" + }, + { + "label": "logHandshakeKeyBinding()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/keyBindingDebug.ts", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_keybindingdebug_loghandshakekeybinding", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "loghandshakekeybinding()" + }, + { + "label": "warnIfCounterpartyKeySuspiciousOverwrite()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/keyBindingDebug.ts", + "source_location": "L67", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_keybindingdebug_warnifcounterpartykeysuspiciousoverwrite", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "warnifcounterpartykeysuspiciousoverwrite()" + }, + { + "label": "keywordSearch.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/keywordSearch.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_keywordsearch", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "keywordsearch.ts" + }, + { + "label": "extractSearchableText()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/keywordSearch.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_keywordsearch_extractsearchabletext", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "extractsearchabletext()" + }, + { + "label": "tokenize()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/keywordSearch.ts", + "source_location": "L63", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_keywordsearch_tokenize", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "tokenize()" + }, + { + "label": "STOPWORDS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/keywordSearch.ts", + "source_location": "L68", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_keywordsearch_stopwords", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "stopwords" + }, + { + "label": "scoreBlock()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/keywordSearch.ts", + "source_location": "L77", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_keywordsearch_scoreblock", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "scoreblock()" + }, + { + "label": "keywordSearch()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/keywordSearch.ts", + "source_location": "L109", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_keywordsearch_keywordsearch", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "keywordsearch()" + }, + { + "label": "latencyInstrumentation.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/latencyInstrumentation.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation", + "community": 76, + "community_name": "Handshake", + "norm_label": "latencyinstrumentation.ts" + }, + { + "label": "STRUCTURED_LATENCY_BUDGET_MS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/latencyInstrumentation.ts", + "source_location": "L16", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation_structured_latency_budget_ms", + "community": 76, + "community_name": "Handshake", + "norm_label": "structured_latency_budget_ms" + }, + { + "label": "AI_LATENCY_BUDGET_MS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/latencyInstrumentation.ts", + "source_location": "L17", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation_ai_latency_budget_ms", + "community": 76, + "community_name": "Handshake", + "norm_label": "ai_latency_budget_ms" + }, + { + "label": "QueryLatencyMetrics", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/latencyInstrumentation.ts", + "source_location": "L21", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation_querylatencymetrics", + "community": 76, + "community_name": "Handshake", + "norm_label": "querylatencymetrics" + }, + { + "label": "LatencyDebugPayload", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/latencyInstrumentation.ts", + "source_location": "L33", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation_latencydebugpayload", + "community": 76, + "community_name": "Handshake", + "norm_label": "latencydebugpayload" + }, + { + "label": "now()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/latencyInstrumentation.ts", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation_now", + "community": 76, + "community_name": "Handshake", + "norm_label": "now()" + }, + { + "label": "elapsedMs()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/latencyInstrumentation.ts", + "source_location": "L52", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation_elapsedms", + "community": 76, + "community_name": "Handshake", + "norm_label": "elapsedms()" + }, + { + "label": "timed()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/latencyInstrumentation.ts", + "source_location": "L57", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation_timed", + "community": 76, + "community_name": "Handshake", + "norm_label": "timed()" + }, + { + "label": "timedSync()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/latencyInstrumentation.ts", + "source_location": "L64", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation_timedsync", + "community": 76, + "community_name": "Handshake", + "norm_label": "timedsync()" + }, + { + "label": "checkStructuredLatency()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/latencyInstrumentation.ts", + "source_location": "L72", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation_checkstructuredlatency", + "community": 76, + "community_name": "Handshake", + "norm_label": "checkstructuredlatency()" + }, + { + "label": "checkAILatency()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/latencyInstrumentation.ts", + "source_location": "L78", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation_checkailatency", + "community": 76, + "community_name": "Handshake", + "norm_label": "checkailatency()" + }, + { + "label": "logStructuredMetrics()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/latencyInstrumentation.ts", + "source_location": "L86", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation_logstructuredmetrics", + "community": 76, + "community_name": "Handshake", + "norm_label": "logstructuredmetrics()" + }, + { + "label": "logAIQueryMetrics()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/latencyInstrumentation.ts", + "source_location": "L103", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation_logaiquerymetrics", + "community": 76, + "community_name": "Handshake", + "norm_label": "logaiquerymetrics()" + }, + { + "label": "logCacheHitMetrics()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/latencyInstrumentation.ts", + "source_location": "L124", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation_logcachehitmetrics", + "community": 76, + "community_name": "Handshake", + "norm_label": "logcachehitmetrics()" + }, + { + "label": "buildLatencyDebugPayload()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/latencyInstrumentation.ts", + "source_location": "L130", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation_buildlatencydebugpayload", + "community": 76, + "community_name": "Handshake", + "norm_label": "buildlatencydebugpayload()" + }, + { + "label": "ledger.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ledger", + "community": 258, + "community_name": "Handshake #258", + "norm_label": "ledger.ts" + }, + { + "label": "_require", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L30", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ledger_require", + "community": 258, + "community_name": "Handshake #258", + "norm_label": "_require" + }, + { + "label": "moduleDir", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L32", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ledger_moduledir", + "community": 258, + "community_name": "Handshake #258", + "norm_label": "moduledir" + }, + { + "label": "loadSQLite()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ledger_loadsqlite", + "community": 258, + "community_name": "Handshake #258", + "norm_label": "loadsqlite()" + }, + { + "label": "deriveKeyFromSessionToken()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L77", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ledger_derivekeyfromsessiontoken", + "community": 258, + "community_name": "Handshake #258", + "norm_label": "derivekeyfromsessiontoken()" + }, + { + "label": "getLedgerPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L85", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ledger_getledgerpath", + "community": 258, + "community_name": "Handshake #258", + "norm_label": "getledgerpath()" + }, + { + "label": "SCHEMA_SQL", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L93", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ledger_schema_sql", + "community": 258, + "community_name": "Handshake #258", + "norm_label": "schema_sql" + }, + { + "label": "applySchema()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L149", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ledger_applyschema", + "community": 258, + "community_name": "Handshake #258", + "norm_label": "applyschema()" + }, + { + "label": "openLedger()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L175", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ledger_openledger", + "community": 258, + "community_name": "Handshake #258", + "norm_label": "openledger()" + }, + { + "label": "closeLedger()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L257", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ledger_closeledger", + "community": 258, + "community_name": "Handshake #258", + "norm_label": "closeledger()" + }, + { + "label": "resetLedger()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L275", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ledger_resetledger", + "community": 258, + "community_name": "Handshake #258", + "norm_label": "resetledger()" + }, + { + "label": "getLedgerDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L294", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ledger_getledgerdb", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "getledgerdb()" + }, + { + "label": "buildLedgerSessionToken()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L302", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ledger_buildledgersessiontoken", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "buildledgersessiontoken()" + }, + { + "label": "LedgerHandshake", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L310", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ledger_ledgerhandshake", + "community": 258, + "community_name": "Handshake #258", + "norm_label": "ledgerhandshake" + }, + { + "label": "LedgerContextBlock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L332", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ledger_ledgercontextblock", + "community": 258, + "community_name": "Handshake #258", + "norm_label": "ledgercontextblock" + }, + { + "label": "insertLedgerHandshake()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L341", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ledger_insertledgerhandshake", + "community": 258, + "community_name": "Handshake #258", + "norm_label": "insertledgerhandshake()" + }, + { + "label": "updateLedgerHandshakeStatus()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L361", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ledger_updateledgerhandshakestatus", + "community": 258, + "community_name": "Handshake #258", + "norm_label": "updateledgerhandshakestatus()" + }, + { + "label": "getLedgerHandshake()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L382", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ledger_getledgerhandshake", + "community": 258, + "community_name": "Handshake #258", + "norm_label": "getledgerhandshake()" + }, + { + "label": "listLedgerHandshakes()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L386", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ledger_listledgerhandshakes", + "community": 258, + "community_name": "Handshake #258", + "norm_label": "listledgerhandshakes()" + }, + { + "label": "insertLedgerContextBlock()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L398", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ledger_insertledgercontextblock", + "community": 258, + "community_name": "Handshake #258", + "norm_label": "insertledgercontextblock()" + }, + { + "label": "getLedgerContextBlocks()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L407", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_ledger_getledgercontextblocks", + "community": 258, + "community_name": "Handshake #258", + "norm_label": "getledgercontextblocks()" + }, + { + "label": "llmStream.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/llmStream.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_llmstream", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "llmstream.ts" + }, + { + "label": "StreamSender", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/llmStream.ts", + "source_location": "L15", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_llmstream_streamsender", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "streamsender" + }, + { + "label": "OnToken", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/llmStream.ts", + "source_location": "L16", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_llmstream_ontoken", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "ontoken" + }, + { + "label": "streamLocalLlmChat()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/llmStream.ts", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_llmstream_streamlocalllmchat", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "streamlocalllmchat()" + }, + { + "label": "streamOllamaChat", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/llmStream.ts", + "source_location": "L101", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_llmstream_streamollamachat", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "streamollamachat" + }, + { + "label": "streamOpenAIChat()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/llmStream.ts", + "source_location": "L104", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_llmstream_streamopenaichat", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "streamopenaichat()" + }, + { + "label": "streamXaiChat()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/llmStream.ts", + "source_location": "L158", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_llmstream_streamxaichat", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "streamxaichat()" + }, + { + "label": "streamAnthropicChat()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/llmStream.ts", + "source_location": "L212", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_llmstream_streamanthropicchat", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "streamanthropicchat()" + }, + { + "label": "streamGoogleChat()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/llmStream.ts", + "source_location": "L285", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_llmstream_streamgooglechat", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "streamgooglechat()" + }, + { + "label": "LLMProvider", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/llmStream.ts", + "source_location": "L356", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_llmstream_llmprovider", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "llmprovider" + }, + { + "label": "StreamLLMParams", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/llmStream.ts", + "source_location": "L358", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_llmstream_streamllmparams", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "streamllmparams" + }, + { + "label": "streamLLMResponse()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/llmStream.ts", + "source_location": "L371", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_llmstream_streamllmresponse", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "streamllmresponse()" + }, + { + "label": "outboundQueue.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "outboundqueue.ts" + }, + { + "label": "logInternalHsTraceOutbound()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_outboundqueue_loginternalhstraceoutbound", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "loginternalhstraceoutbound()" + }, + { + "label": "backoffDelay()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L95", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_outboundqueue_backoffdelay", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "backoffdelay()" + }, + { + "label": "OutboundQueueCode", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L101", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_outboundqueue_outboundqueuecode", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "outboundqueuecode" + }, + { + "label": "FailureClass", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L129", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_outboundqueue_failureclass", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "failureclass" + }, + { + "label": "HealingStatus", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L146", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_outboundqueue_healingstatus", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "healingstatus" + }, + { + "label": "ProcessOutboundQueueResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L160", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_outboundqueue_processoutboundqueueresult", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "processoutboundqueueresult" + }, + { + "label": "jitterMs()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L196", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_outboundqueue_jitterms", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "jitterms()" + }, + { + "label": "ensureSenderCoordinationWsForDeliveryAck()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L200", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_outboundqueue_ensuresendercoordinationwsfordeliveryack", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "ensuresendercoordinationwsfordeliveryack()" + }, + { + "label": "classifySendFailure()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L215", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_outboundqueue_classifysendfailure", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "classifysendfailure()" + }, + { + "label": "shouldAutodrainOnBackoff()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L234", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_outboundqueue_shouldautodrainonbackoff", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "shouldautodrainonbackoff()" + }, + { + "label": "setOutboundQueueAuthRefresh()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L252", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_outboundqueue_setoutboundqueueauthrefresh", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "setoutboundqueueauthrefresh()" + }, + { + "label": "logProcessOutboundQueueFailure()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L261", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_outboundqueue_logprocessoutboundqueuefailure", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "logprocessoutboundqueuefailure()" + }, + { + "label": "getOutboundQueueAuthRefresh()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L272", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_outboundqueue_getoutboundqueueauthrefresh", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "getoutboundqueueauthrefresh()" + }, + { + "label": "clearOutboundAutoDrainTimer()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L279", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_outboundqueue_clearoutboundautodraintimer", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "clearoutboundautodraintimer()" + }, + { + "label": "scheduleAutoDrain()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L286", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_outboundqueue_scheduleautodrain", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "scheduleautodrain()" + }, + { + "label": "_drainChain", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L305", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_outboundqueue_drainchain", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "_drainchain" + }, + { + "label": "enqueueOutboundCapsule()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L307", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_outboundqueue_enqueueoutboundcapsule", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "enqueueoutboundcapsule()" + }, + { + "label": "getQueueCountsInternal()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L390", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_outboundqueue_getqueuecountsinternal", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "getqueuecountsinternal()" + }, + { + "label": "recordCoordinationPreflightFailure()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L409", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_outboundqueue_recordcoordinationpreflightfailure", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "recordcoordinationpreflightfailure()" + }, + { + "label": "logCoordination403Policy()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L448", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_outboundqueue_logcoordination403policy", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "logcoordination403policy()" + }, + { + "label": "handleCoordinationOutbound403()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L458", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_outboundqueue_handlecoordinationoutbound403", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "handlecoordinationoutbound403()" + }, + { + "label": "processOutboundQueue()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L823", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_outboundqueue_processoutboundqueue", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "processoutboundqueue()" + }, + { + "label": "processOutboundQueueInner()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L832", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_outboundqueue_processoutboundqueueinner", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "processoutboundqueueinner()" + }, + { + "label": "getQueueStatus()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L1379", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_outboundqueue_getqueuestatus", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "getqueuestatus()" + }, + { + "label": "QueueEntry", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L1397", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_outboundqueue_queueentry", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "queueentry" + }, + { + "label": "getQueueEntries()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L1406", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_outboundqueue_getqueueentries", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "getqueueentries()" + }, + { + "label": "p2pTokenBackfill.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTokenBackfill.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_p2ptokenbackfill", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "p2ptokenbackfill.ts" + }, + { + "label": "counterpartyUserId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTokenBackfill.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_p2ptokenbackfill_counterpartyuserid", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "counterpartyuserid()" + }, + { + "label": "counterpartyEmail()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTokenBackfill.ts", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_p2ptokenbackfill_counterpartyemail", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "counterpartyemail()" + }, + { + "label": "runActiveHandshakeLocalP2pTokenBackfill()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTokenBackfill.ts", + "source_location": "L37", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_p2ptokenbackfill_runactivehandshakelocalp2ptokenbackfill", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "runactivehandshakelocalp2ptokenbackfill()" + }, + { + "label": "p2pTransport.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_p2ptransport", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "p2ptransport.ts" + }, + { + "label": "RELAY_HANDSHAKE_CAPSULE_TYPES", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L39", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_p2ptransport_relay_handshake_capsule_types", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "relay_handshake_capsule_types" + }, + { + "label": "COORDINATION_RELAY_ALLOWED_CAPSULE_TYPES", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L54", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_p2ptransport_coordination_relay_allowed_capsule_types", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "coordination_relay_allowed_capsule_types" + }, + { + "label": "coordinationRelayContractSatisfied()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L60", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_p2ptransport_coordinationrelaycontractsatisfied", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "coordinationrelaycontractsatisfied()" + }, + { + "label": "OutboundInternalWireLogSummary", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L74", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_p2ptransport_outboundinternalwirelogsummary", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "outboundinternalwirelogsummary" + }, + { + "label": "summarizeInternalWireForLogs()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L85", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_p2ptransport_summarizeinternalwireforlogs", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "summarizeinternalwireforlogs()" + }, + { + "label": "describeOutboundPayloadForLogs()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L114", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_p2ptransport_describeoutboundpayloadforlogs", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "describeoutboundpayloadforlogs()" + }, + { + "label": "OutboundRequestDebugSnapshot", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L170", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_p2ptransport_outboundrequestdebugsnapshot", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "outboundrequestdebugsnapshot" + }, + { + "label": "CoordinationRelayDelivery", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L221", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_p2ptransport_coordinationrelaydelivery", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "coordinationrelaydelivery" + }, + { + "label": "DirectIngestHttpAck", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L224", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_p2ptransport_directingesthttpack", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "directingesthttpack" + }, + { + "label": "parseDirectIngestHttpAck()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L229", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_p2ptransport_parsedirectingesthttpack", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "parsedirectingesthttpack()" + }, + { + "label": "SendCapsuleResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L243", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_p2ptransport_sendcapsuleresult", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "sendcapsuleresult" + }, + { + "label": "extractTopLevelKeysFromJsonBody()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L275", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_p2ptransport_extracttoplevelkeysfromjsonbody", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "extracttoplevelkeysfromjsonbody()" + }, + { + "label": "detectBodyLooksDoubleEncoded()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L299", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_p2ptransport_detectbodylooksdoubleencoded", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "detectbodylooksdoubleencoded()" + }, + { + "label": "buildCoordinationCapsulePostBody()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L316", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_p2ptransport_buildcoordinationcapsulepostbody", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "buildcoordinationcapsulepostbody()" + }, + { + "label": "describeCoordinationRelayNormalization()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L327", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_p2ptransport_describecoordinationrelaynormalization", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "describecoordinationrelaynormalization()" + }, + { + "label": "parseCoordinationWireJsonBody()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L356", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_p2ptransport_parsecoordinationwirejsonbody", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "parsecoordinationwirejsonbody()" + }, + { + "label": "analyzeSerializedCoordinationContract()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L370", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_p2ptransport_analyzeserializedcoordinationcontract", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "analyzeserializedcoordinationcontract()" + }, + { + "label": "parseRelayCapsuleTypeNotAllowedHint()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L397", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_p2ptransport_parserelaycapsuletypenotallowedhint", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "parserelaycapsuletypenotallowedhint()" + }, + { + "label": "analyzeCoordinationRoutingCompliance()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L412", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_p2ptransport_analyzecoordinationroutingcompliance", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "analyzecoordinationroutingcompliance()" + }, + { + "label": "summarizeCanonChunkingForOutboundDebug()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L426", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_p2ptransport_summarizecanonchunkingforoutbounddebug", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "summarizecanonchunkingforoutbounddebug()" + }, + { + "label": "buildOutboundRequestDebugSnapshot()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L461", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_p2ptransport_buildoutboundrequestdebugsnapshot", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "buildoutboundrequestdebugsnapshot()" + }, + { + "label": "logOutboundRequestFailureDiagnostics()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L528", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_p2ptransport_logoutboundrequestfailurediagnostics", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "logoutboundrequestfailurediagnostics()" + }, + { + "label": "sanitizeHttpResponseBodyForLogs()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L541", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_p2ptransport_sanitizehttpresponsebodyforlogs", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "sanitizehttpresponsebodyforlogs()" + }, + { + "label": "parseRetryAfterSeconds()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L552", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_p2ptransport_parseretryafterseconds", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "parseretryafterseconds()" + }, + { + "label": "sendCapsuleViaCoordination()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L569", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_p2ptransport_sendcapsuleviacoordination", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "sendcapsuleviacoordination()" + }, + { + "label": "sendCapsuleViaHttpWithAuth()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L670", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_p2ptransport_sendcapsuleviahttpwithauth", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "sendcapsuleviahttpwithauth()" + }, + { + "label": "handshake/pipeline.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/pipeline.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_pipeline", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "handshake/pipeline.ts" + }, + { + "label": "runHandshakeVerification()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/pipeline.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_pipeline_runhandshakeverification", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "runhandshakeverification()" + }, + { + "label": "policyHash.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/policyHash.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_policyhash", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "policyhash.ts" + }, + { + "label": "PolicyDescriptor", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/policyHash.ts", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_policyhash_policydescriptor", + "community": 113, + "community_name": "Handshake Servicerpc", + "norm_label": "policydescriptor" + }, + { + "label": "DEFAULT_POLICY_DESCRIPTOR", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/policyHash.ts", + "source_location": "L35", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_policyhash_default_policy_descriptor", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "default_policy_descriptor" + }, + { + "label": "computePolicyHash()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/policyHash.ts", + "source_location": "L48", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_policyhash_computepolicyhash", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "computepolicyhash()" + }, + { + "label": "DEFAULT_POLICY_HASH", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/policyHash.ts", + "source_location": "L66", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_policyhash_default_policy_hash", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "default_policy_hash" + }, + { + "label": "queryCache.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/queryCache.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_querycache", + "community": 113, + "community_name": "Handshake Servicerpc", + "norm_label": "querycache.ts" + }, + { + "label": "CachedSource", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/queryCache.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_querycache_cachedsource", + "community": 113, + "community_name": "Handshake Servicerpc", + "norm_label": "cachedsource" + }, + { + "label": "CachedEntry", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/queryCache.ts", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_querycache_cachedentry", + "community": 113, + "community_name": "Handshake Servicerpc", + "norm_label": "cachedentry" + }, + { + "label": "normalizeQuery()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/queryCache.ts", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_querycache_normalizequery", + "community": 113, + "community_name": "Handshake Servicerpc", + "norm_label": "normalizequery()" + }, + { + "label": "resolveCapsuleId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/queryCache.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_querycache_resolvecapsuleid", + "community": 113, + "community_name": "Handshake Servicerpc", + "norm_label": "resolvecapsuleid()" + }, + { + "label": "getCached()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/queryCache.ts", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_querycache_getcached", + "community": 113, + "community_name": "Handshake Servicerpc", + "norm_label": "getcached()" + }, + { + "label": "setCached()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/queryCache.ts", + "source_location": "L73", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_querycache_setcached", + "community": 113, + "community_name": "Handshake Servicerpc", + "norm_label": "setcached()" + }, + { + "label": "invalidateByCapsule()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/queryCache.ts", + "source_location": "L87", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_querycache_invalidatebycapsule", + "community": 113, + "community_name": "Handshake Servicerpc", + "norm_label": "invalidatebycapsule()" + }, + { + "label": "invalidateByHandshake()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/queryCache.ts", + "source_location": "L92", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_querycache_invalidatebyhandshake", + "community": 113, + "community_name": "Handshake Servicerpc", + "norm_label": "invalidatebyhandshake()" + }, + { + "label": "invalidateByRelationship()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/queryCache.ts", + "source_location": "L97", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_querycache_invalidatebyrelationship", + "community": 113, + "community_name": "Handshake Servicerpc", + "norm_label": "invalidatebyrelationship()" + }, + { + "label": "recipientPersist.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/recipientPersist.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_recipientpersist", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "recipientpersist.ts" + }, + { + "label": "resolveExpiresAt()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/recipientPersist.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_recipientpersist_resolveexpiresat", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "resolveexpiresat()" + }, + { + "label": "PersistRecipientResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/recipientPersist.ts", + "source_location": "L30", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_recipientpersist_persistrecipientresult", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "persistrecipientresult" + }, + { + "label": "persistRecipientHandshakeRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/recipientPersist.ts", + "source_location": "L42", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_recipientpersist_persistrecipienthandshakerecord", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "persistrecipienthandshakerecord()" + }, + { + "label": "relationshipId.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/relationshipId.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_relationshipid", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "relationshipid.ts" + }, + { + "label": "deriveRelationshipId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/relationshipId.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_relationshipid_deriverelationshipid", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "deriverelationshipid()" + }, + { + "label": "relayOutboundClassification.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/relayOutboundClassification.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_relayoutboundclassification", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "relayoutboundclassification.ts" + }, + { + "label": "ParsedCoordinationRelayError", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/relayOutboundClassification.ts", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_relayoutboundclassification_parsedcoordinationrelayerror", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "parsedcoordinationrelayerror" + }, + { + "label": "parseCoordinationRelayErrorSnippet()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/relayOutboundClassification.ts", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_relayoutboundclassification_parsecoordinationrelayerrorsnippet", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "parsecoordinationrelayerrorsnippet()" + }, + { + "label": "TERMINAL_RELAY_IDENTITY_CODES", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/relayOutboundClassification.ts", + "source_location": "L29", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_relayoutboundclassification_terminal_relay_identity_codes", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "terminal_relay_identity_codes" + }, + { + "label": "terminalRelayIdentityInvariant()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/relayOutboundClassification.ts", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_relayoutboundclassification_terminalrelayidentityinvariant", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "terminalrelayidentityinvariant()" + }, + { + "label": "isCoordinationStaleRegistry403()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/relayOutboundClassification.ts", + "source_location": "L63", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_relayoutboundclassification_iscoordinationstaleregistry403", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "iscoordinationstaleregistry403()" + }, + { + "label": "relayQueueTransportOutcome.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/relayQueueTransportOutcome.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_relayqueuetransportoutcome", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "relayqueuetransportoutcome.ts" + }, + { + "label": "RelayDeliveryMode", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/relayQueueTransportOutcome.ts", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_relayqueuetransportoutcome_relaydeliverymode", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "relaydeliverymode" + }, + { + "label": "SendCapsuleSuccessShape", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/relayQueueTransportOutcome.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_relayqueuetransportoutcome_sendcapsulesuccessshape", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "sendcapsulesuccessshape" + }, + { + "label": "CoordinationQueueTransportOutcome", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/relayQueueTransportOutcome.ts", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_relayqueuetransportoutcome_coordinationqueuetransportoutcome", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "coordinationqueuetransportoutcome" + }, + { + "label": "mapSendResultToQueueOutcome()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/relayQueueTransportOutcome.ts", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_relayqueuetransportoutcome_mapsendresulttoqueueoutcome", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "mapsendresulttoqueueoutcome()" + }, + { + "label": "remoteRevokeCallbackRegistry.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/remoteRevokeCallbackRegistry.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_remoterevokecallbackregistry", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "remoterevokecallbackregistry.ts" + }, + { + "label": "RemoteRevokeCb", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/remoteRevokeCallbackRegistry.ts", + "source_location": "L15", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_remoterevokecallbackregistry_remoterevokecb", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "remoterevokecb" + }, + { + "label": "setRemoteRevokeCallback()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/remoteRevokeCallbackRegistry.ts", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_remoterevokecallbackregistry_setremoterevokecallback", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "setremoterevokecallback()" + }, + { + "label": "getRemoteRevokeCallback()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/remoteRevokeCallbackRegistry.ts", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_remoterevokecallbackregistry_getremoterevokecallback", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "getremoterevokecallback()" + }, + { + "label": "resolvePairingCode.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/resolvePairingCode.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_resolvepairingcode", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "resolvepairingcode.ts" + }, + { + "label": "ResolvedPairingPeer", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/resolvePairingCode.ts", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_resolvepairingcode_resolvedpairingpeer", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "resolvedpairingpeer" + }, + { + "label": "resolvePairingCodeViaCoordination()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/resolvePairingCode.ts", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_resolvepairingcode_resolvepairingcodeviacoordination", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "resolvepairingcodeviacoordination()" + }, + { + "label": "handshake/retentionJob.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/retentionJob.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_retentionjob", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "handshake/retentionjob.ts" + }, + { + "label": "startRetentionJob()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/retentionJob.ts", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_retentionjob_startretentionjob", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "startretentionjob()" + }, + { + "label": "stopRetentionJob()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/retentionJob.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_retentionjob_stopretentionjob", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "stopretentionjob()" + }, + { + "label": "runRetentionCycle()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/retentionJob.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_retentionjob_runretentioncycle", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "runretentioncycle()" + }, + { + "label": "revocation.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/revocation.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_revocation", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "revocation.ts" + }, + { + "label": "RevokeNotifyCallback", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/revocation.ts", + "source_location": "L15", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_revocation_revokenotifycallback", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "revokenotifycallback" + }, + { + "label": "setRevokeNotifyCallback()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/revocation.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_revocation_setrevokenotifycallback", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "setrevokenotifycallback()" + }, + { + "label": "revokeHandshake()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/revocation.ts", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_revocation_revokehandshake", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "revokehandshake()" + }, + { + "label": "NOTE: remote-capsule revoke path (enforcement.ts) does NOT fire this \u2014 see\u2026", + "file_type": "rationale", + "source_file": "apps/electron-vite-project/electron/main/handshake/revocation.ts", + "source_location": "L14", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_revocation_rationale_14", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "note: remote-capsule revoke path (enforcement.ts) does not fire this \u2014 see..." + }, + { + "label": "sandboxTopologyKind.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/sandboxTopologyKind.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "sandboxtopologykind.ts" + }, + { + "label": "SandboxPairingKind", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/sandboxTopologyKind.ts", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_sandboxpairingkind", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "sandboxpairingkind" + }, + { + "label": "SandboxTopologyKind", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/sandboxTopologyKind.ts", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_sandboxtopologykind", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "sandboxtopologykind" + }, + { + "label": "pairingKindToTopologyKind()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/sandboxTopologyKind.ts", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_pairingkindtotopologykind", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "pairingkindtotopologykind()" + }, + { + "label": "isLoopbackP2pHost()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/sandboxTopologyKind.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_isloopbackp2phost", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "isloopbackp2phost()" + }, + { + "label": "hostnameFromP2pUrl()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/sandboxTopologyKind.ts", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_hostnamefromp2purl", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "hostnamefromp2purl()" + }, + { + "label": "isHostLocalP2pTarget()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/sandboxTopologyKind.ts", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_ishostlocalp2ptarget", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "ishostlocalp2ptarget()" + }, + { + "label": "usesLocalRelayStack()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/sandboxTopologyKind.ts", + "source_location": "L71", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_useslocalrelaystack", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "useslocalrelaystack()" + }, + { + "label": "inferSandboxPairingKindFromHandshake()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/sandboxTopologyKind.ts", + "source_location": "L89", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_infersandboxpairingkindfromhandshake", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "infersandboxpairingkindfromhandshake()" + }, + { + "label": "getLinkedPairingKindForHandshake()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/sandboxTopologyKind.ts", + "source_location": "L115", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_getlinkedpairingkindforhandshake", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "getlinkedpairingkindforhandshake()" + }, + { + "label": "findActiveInternalHostSandboxHandshake()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/sandboxTopologyKind.ts", + "source_location": "L129", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_findactiveinternalhostsandboxhandshake", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "findactiveinternalhostsandboxhandshake()" + }, + { + "label": "resolveSandboxTopologyKind()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/sandboxTopologyKind.ts", + "source_location": "L149", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_resolvesandboxtopologykind", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "resolvesandboxtopologykind()" + }, + { + "label": "sanitize.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/sanitize.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_sanitize", + "community": 95, + "community_name": "Handshake #95", + "norm_label": "sanitize.ts" + }, + { + "label": "normalizeNFC()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/sanitize.ts", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_sanitize_normalizenfc", + "community": 95, + "community_name": "Handshake #95", + "norm_label": "normalizenfc()" + }, + { + "label": "stripControlChars()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/sanitize.ts", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_sanitize_stripcontrolchars", + "community": 95, + "community_name": "Handshake #95", + "norm_label": "stripcontrolchars()" + }, + { + "label": "isValidEmail()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/sanitize.ts", + "source_location": "L49", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_sanitize_isvalidemail", + "community": 95, + "community_name": "Handshake #95", + "norm_label": "isvalidemail()" + }, + { + "label": "RFC-5322", + "file_type": "concept", + "source_file": "apps/electron-vite-project/electron/main/handshake/sanitize.ts", + "source_location": "L38", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_sanitize_ts_docref_rfc_5322", + "community": 95, + "community_name": "Handshake #95", + "norm_label": "rfc-5322" + }, + { + "label": "sessionFactory.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/sessionFactory.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_sessionfactory", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "sessionfactory.ts" + }, + { + "label": "JwtClaims", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/sessionFactory.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_sessionfactory_jwtclaims", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "jwtclaims" + }, + { + "label": "AttestationState", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/sessionFactory.ts", + "source_location": "L31", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_sessionfactory_attestationstate", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "attestationstate" + }, + { + "label": "sessionFromClaims()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/sessionFactory.ts", + "source_location": "L42", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_sessionfactory_sessionfromclaims", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "sessionfromclaims()" + }, + { + "label": "buildTestSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/sessionFactory.ts", + "source_location": "L76", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "buildtestsession()" + }, + { + "label": "signatureKeys.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/signatureKeys.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_signaturekeys", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "signaturekeys.ts" + }, + { + "label": "SigningKeypair", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/signatureKeys.ts", + "source_location": "L16", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_signaturekeys_signingkeypair", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "signingkeypair" + }, + { + "label": "generateSigningKeypair()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/signatureKeys.ts", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_signaturekeys_generatesigningkeypair", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "generatesigningkeypair()" + }, + { + "label": "rawPubKeyToSpki()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/signatureKeys.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_signaturekeys_rawpubkeytospki", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "rawpubkeytospki()" + }, + { + "label": "signCapsuleHash()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/signatureKeys.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_signaturekeys_signcapsulehash", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "signcapsulehash()" + }, + { + "label": "verifyCapsuleSignature()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/signatureKeys.ts", + "source_location": "L78", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_signaturekeys_verifycapsulesignature", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "verifycapsulesignature()" + }, + { + "label": "chainIntegrity.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/chainIntegrity.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_steps_chainintegrity", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "chainintegrity.ts" + }, + { + "label": "verifyChainIntegrity", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/chainIntegrity.ts", + "source_location": "L4", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_steps_chainintegrity_verifychainintegrity", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "verifychainintegrity" + }, + { + "label": "contextBinding.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/contextBinding.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_steps_contextbinding", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "contextbinding.ts" + }, + { + "label": "verifyContextBinding", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/contextBinding.ts", + "source_location": "L14", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_steps_contextbinding_verifycontextbinding", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "verifycontextbinding" + }, + { + "label": "contextVersions.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/contextVersions.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_steps_contextversions", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "contextversions.ts" + }, + { + "label": "verifyContextVersions", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/contextVersions.ts", + "source_location": "L13", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_steps_contextversions_verifycontextversions", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "verifycontextversions" + }, + { + "label": "dedup.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/dedup.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_steps_dedup", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "dedup.ts" + }, + { + "label": "checkDuplicateCapsule", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/dedup.ts", + "source_location": "L4", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_steps_dedup_checkduplicatecapsule", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "checkduplicatecapsule" + }, + { + "label": "domain.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/domain.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_steps_domain", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "domain.ts" + }, + { + "label": "verifySenderDomain", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/domain.ts", + "source_location": "L4", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_steps_domain_verifysenderdomain", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "verifysenderdomain" + }, + { + "label": "expiry.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/expiry.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_steps_expiry", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "expiry.ts" + }, + { + "label": "checkExpiry", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/expiry.ts", + "source_location": "L4", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_steps_expiry_checkexpiry", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "checkexpiry" + }, + { + "label": "externalProcessing.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/externalProcessing.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_steps_externalprocessing", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "externalprocessing.ts" + }, + { + "label": "verifyExternalProcessing", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/externalProcessing.ts", + "source_location": "L4", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_steps_externalprocessing_verifyexternalprocessing", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "verifyexternalprocessing" + }, + { + "label": "steps/index.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_steps_index", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "steps/index.ts" + }, + { + "label": "HANDSHAKE_PIPELINE", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/index.ts", + "source_location": "L30", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_steps_index_handshake_pipeline", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "handshake_pipeline" + }, + { + "label": "inputLimits.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/inputLimits.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_steps_inputlimits", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "inputlimits.ts" + }, + { + "label": "verifyInputLimits", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/inputLimits.ts", + "source_location": "L4", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_steps_inputlimits_verifyinputlimits", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "verifyinputlimits" + }, + { + "label": "internalRoutingCapsule.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/internalRoutingCapsule.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_steps_internalroutingcapsule", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "internalroutingcapsule.ts" + }, + { + "label": "verifyInternalCapsuleRouting", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/internalRoutingCapsule.ts", + "source_location": "L11", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_steps_internalroutingcapsule_verifyinternalcapsulerouting", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "verifyinternalcapsulerouting" + }, + { + "label": "ownership.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/ownership.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_steps_ownership", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "ownership.ts" + }, + { + "label": "verifyHandshakeOwnership", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/ownership.ts", + "source_location": "L6", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_steps_ownership_verifyhandshakeownership", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "verifyhandshakeownership" + }, + { + "label": "policyAnchor.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/policyAnchor.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_steps_policyanchor", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "policyanchor.ts" + }, + { + "label": "verifyWrdeskPolicyAnchor", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/policyAnchor.ts", + "source_location": "L12", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_steps_policyanchor_verifywrdeskpolicyanchor", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "verifywrdeskpolicyanchor" + }, + { + "label": "policyResolution.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/policyResolution.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_steps_policyresolution", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "policyresolution.ts" + }, + { + "label": "resolveEffectivePolicyFn()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/policyResolution.ts", + "source_location": "L4", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_steps_policyresolution_resolveeffectivepolicyfn", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "resolveeffectivepolicyfn()" + }, + { + "label": "resolveEffectivePolicy", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/policyResolution.ts", + "source_location": "L81", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_steps_policyresolution_resolveeffectivepolicy", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "resolveeffectivepolicy" + }, + { + "label": "receiverBinding.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/receiverBinding.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_steps_receiverbinding", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "receiverbinding.ts" + }, + { + "label": "verifyReceiverBinding", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/receiverBinding.ts", + "source_location": "L16", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_steps_receiverbinding_verifyreceiverbinding", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "verifyreceiverbinding" + }, + { + "label": "schemaCheck.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/schemaCheck.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_steps_schemacheck", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "schemacheck.ts" + }, + { + "label": "SUPPORTED_SCHEMA_VERSIONS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/schemaCheck.ts", + "source_location": "L4", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_steps_schemacheck_supported_schema_versions", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "supported_schema_versions" + }, + { + "label": "checkSchemaVersion", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/schemaCheck.ts", + "source_location": "L6", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_steps_schemacheck_checkschemaversion", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "checkschemaversion" + }, + { + "label": "scopePurpose.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/scopePurpose.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_steps_scopepurpose", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "scopepurpose.ts" + }, + { + "label": "verifyScopePurpose", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/scopePurpose.ts", + "source_location": "L5", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_steps_scopepurpose_verifyscopepurpose", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "verifyscopepurpose" + }, + { + "label": "sharingMode.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/sharingMode.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_steps_sharingmode", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "sharingmode.ts" + }, + { + "label": "verifySharingMode", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/sharingMode.ts", + "source_location": "L4", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_steps_sharingmode_verifysharingmode", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "verifysharingmode" + }, + { + "label": "stateTransition.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/stateTransition.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_steps_statetransition", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "statetransition.ts" + }, + { + "label": "checkStateTransition", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/stateTransition.ts", + "source_location": "L4", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_steps_statetransition_checkstatetransition", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "checkstatetransition" + }, + { + "label": "tierSteps.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/tierSteps.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_steps_tiersteps", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "tiersteps.ts" + }, + { + "label": "collectTierSignals", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/tierSteps.ts", + "source_location": "L5", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_steps_tiersteps_collecttiersignals", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "collecttiersignals" + }, + { + "label": "classifyTier", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/tierSteps.ts", + "source_location": "L22", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_steps_tiersteps_classifytier", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "classifytier" + }, + { + "label": "runTierSpecificChecks", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/tierSteps.ts", + "source_location": "L39", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_steps_tiersteps_runtierspecificchecks", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "runtierspecificchecks" + }, + { + "label": "enforceMinimumTier", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/tierSteps.ts", + "source_location": "L77", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_steps_tiersteps_enforceminimumtier", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "enforceminimumtier" + }, + { + "label": "timestamp.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/timestamp.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_steps_timestamp", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "timestamp.ts" + }, + { + "label": "verifyTimestamp", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/timestamp.ts", + "source_location": "L7", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_steps_timestamp_verifytimestamp", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "verifytimestamp" + }, + { + "label": "verifyCapsuleHash.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/verifyCapsuleHash.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_steps_verifycapsulehash", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "verifycapsulehash.ts" + }, + { + "label": "wireTypeToHashType()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/verifyCapsuleHash.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_steps_verifycapsulehash_wiretypetohashtype", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "wiretypetohashtype()" + }, + { + "label": "verifyCapsuleHashIntegrity()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/verifyCapsuleHash.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_steps_verifycapsulehash_verifycapsulehashintegrity", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "verifycapsulehashintegrity()" + }, + { + "label": "verifyCapsuleHash", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/verifyCapsuleHash.ts", + "source_location": "L67", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_steps_verifycapsulehash_verifycapsulehash", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "verifycapsulehash" + }, + { + "label": "WHY: Prior analysis found capsule_hash was never recomputed \u2014 a forged", + "file_type": "rationale", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/verifyCapsuleHash.ts", + "source_location": "L7", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_steps_verifycapsulehash_rationale_7", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "why: prior analysis found capsule_hash was never recomputed \u2014 a forged" + }, + { + "label": "verifyContextHash.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/verifyContextHash.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_steps_verifycontexthash", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "verifycontexthash.ts" + }, + { + "label": "wireTypeToContextType()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/verifyContextHash.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_steps_verifycontexthash_wiretypetocontexttype", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "wiretypetocontexttype()" + }, + { + "label": "verifyContextHashStep", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/verifyContextHash.ts", + "source_location": "L26", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_steps_verifycontexthash_verifycontexthashstep", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "verifycontexthashstep" + }, + { + "label": "WHY: Prior analysis found context_hash was never verified. This step ensures", + "file_type": "rationale", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/verifyContextHash.ts", + "source_location": "L7", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_steps_verifycontexthash_rationale_7", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "why: prior analysis found context_hash was never verified. this step ensures" + }, + { + "label": "structuredQuery.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/structuredQuery.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_structuredquery", + "community": 76, + "community_name": "Handshake", + "norm_label": "structuredquery.ts" + }, + { + "label": "PHRASE_TO_FIELD", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/structuredQuery.ts", + "source_location": "L11", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_structuredquery_phrase_to_field", + "community": 76, + "community_name": "Handshake", + "norm_label": "phrase_to_field" + }, + { + "label": "formatAddress()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/structuredQuery.ts", + "source_location": "L196", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_structuredquery_formataddress", + "community": 76, + "community_name": "Handshake", + "norm_label": "formataddress()" + }, + { + "label": "formatPaymentMethods()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/structuredQuery.ts", + "source_location": "L208", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_structuredquery_formatpaymentmethods", + "community": 76, + "community_name": "Handshake", + "norm_label": "formatpaymentmethods()" + }, + { + "label": "formatLinks()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/structuredQuery.ts", + "source_location": "L223", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_structuredquery_formatlinks", + "community": 76, + "community_name": "Handshake", + "norm_label": "formatlinks()" + }, + { + "label": "VAULT_PROFILE_PATH_MAP", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/structuredQuery.ts", + "source_location": "L229", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_structuredquery_vault_profile_path_map", + "community": 76, + "community_name": "Handshake", + "norm_label": "vault_profile_path_map" + }, + { + "label": "MULTI_FIELD_GROUPS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/structuredQuery.ts", + "source_location": "L271", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_structuredquery_multi_field_groups", + "community": 76, + "community_name": "Handshake", + "norm_label": "multi_field_groups" + }, + { + "label": "QueryClassifierResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/structuredQuery.ts", + "source_location": "L299", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_structuredquery_queryclassifierresult", + "community": 76, + "community_name": "Handshake", + "norm_label": "queryclassifierresult" + }, + { + "label": "BLOCKLIST", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/structuredQuery.ts", + "source_location": "L311", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_structuredquery_blocklist", + "community": 76, + "community_name": "Handshake", + "norm_label": "blocklist" + }, + { + "label": "isBlocked()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/structuredQuery.ts", + "source_location": "L319", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_structuredquery_isblocked", + "community": 76, + "community_name": "Handshake", + "norm_label": "isblocked()" + }, + { + "label": "queryClassifier()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/structuredQuery.ts", + "source_location": "L323", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_structuredquery_queryclassifier", + "community": 76, + "community_name": "Handshake", + "norm_label": "queryclassifier()" + }, + { + "label": "ScoredContextBlock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/structuredQuery.ts", + "source_location": "L374", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_structuredquery_scoredcontextblock", + "community": 76, + "community_name": "Handshake", + "norm_label": "scoredcontextblock" + }, + { + "label": "getAtPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/structuredQuery.ts", + "source_location": "L387", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_structuredquery_getatpath", + "community": 76, + "community_name": "Handshake", + "norm_label": "getatpath()" + }, + { + "label": "formatValue()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/structuredQuery.ts", + "source_location": "L402", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_structuredquery_formatvalue", + "community": 76, + "community_name": "Handshake", + "norm_label": "formatvalue()" + }, + { + "label": "StructuredLookupResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/structuredQuery.ts", + "source_location": "L422", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_structuredquery_structuredlookupresult", + "community": 76, + "community_name": "Handshake", + "norm_label": "structuredlookupresult" + }, + { + "label": "structuredLookup()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/structuredQuery.ts", + "source_location": "L433", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_structuredquery_structuredlookup", + "community": 76, + "community_name": "Handshake", + "norm_label": "structuredlookup()" + }, + { + "label": "structuredLookupMulti()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/structuredQuery.ts", + "source_location": "L518", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_structuredquery_structuredlookupmulti", + "community": 76, + "community_name": "Handshake", + "norm_label": "structuredlookupmulti()" + }, + { + "label": "StructuredLookupFilter", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/structuredQuery.ts", + "source_location": "L584", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_structuredquery_structuredlookupfilter", + "community": 76, + "community_name": "Handshake", + "norm_label": "structuredlookupfilter" + }, + { + "label": "fetchBlocksForStructuredLookup()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/structuredQuery.ts", + "source_location": "L597", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_structuredquery_fetchblocksforstructuredlookup", + "community": 76, + "community_name": "Handshake", + "norm_label": "fetchblocksforstructuredlookup()" + }, + { + "label": "tierClassification.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/tierClassification.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tierclassification", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "tierclassification.ts" + }, + { + "label": "classifyHandshakeTier()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/tierClassification.ts", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tierclassification_classifyhandshaketier", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "classifyhandshaketier()" + }, + { + "label": "computeTierFromSignals()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/tierClassification.ts", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_tierclassification_computetierfromsignals", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "computetierfromsignals()" + }, + { + "label": "topologyAutoWire.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/topologyAutoWire.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_topologyautowire", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "topologyautowire.ts" + }, + { + "label": "DelegationCallback", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/topologyAutoWire.ts", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_topologyautowire_delegationcallback", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "delegationcallback" + }, + { + "label": "setTopologyDelegationCallback()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/topologyAutoWire.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_topologyautowire_settopologydelegationcallback", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "settopologydelegationcallback()" + }, + { + "label": "TopologyRoleConflictError", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/topologyAutoWire.ts", + "source_location": "L47", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_topologyautowire_topologyroleconflicterror", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "topologyroleconflicterror" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/topologyAutoWire.ts", + "source_location": "L49", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_topologyautowire_topologyroleconflicterror_constructor", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": ".constructor()" + }, + { + "label": "EMAIL_DEPACKAGE_KINDS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/topologyAutoWire.ts", + "source_location": "L65", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_topologyautowire_email_depackage_kinds", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "email_depackage_kinds" + }, + { + "label": "localDeviceRoleInHandshake()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/topologyAutoWire.ts", + "source_location": "L71", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_topologyautowire_localdeviceroleinhandshake", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "localdeviceroleinhandshake()" + }, + { + "label": "peerDeviceRoleInHandshake()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/topologyAutoWire.ts", + "source_location": "L81", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_topologyautowire_peerdeviceroleinhandshake", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "peerdeviceroleinhandshake()" + }, + { + "label": "assertRolePrecedence()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/topologyAutoWire.ts", + "source_location": "L96", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_topologyautowire_assertroleprecedence", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "assertroleprecedence()" + }, + { + "label": "autoWireTopologyForHandshake()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/topologyAutoWire.ts", + "source_location": "L113", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_topologyautowire_autowiretopologyforhandshake", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "autowiretopologyforhandshake()" + }, + { + "label": "removeTopologyForHandshake()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/topologyAutoWire.ts", + "source_location": "L169", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_topologyautowire_removetopologyforhandshake", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "removetopologyforhandshake()" + }, + { + "label": "syncTopologyFromActiveHandshakes()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/topologyAutoWire.ts", + "source_location": "L186", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_topologyautowire_synctopologyfromactivehandshakes", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "synctopologyfromactivehandshakes()" + }, + { + "label": "main/handshake/types.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_types", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "main/handshake/types.ts" + }, + { + "label": "HandshakeTier", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_types_handshaketier", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "handshaketier" + }, + { + "label": "TIER_ORDER", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L14", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_types_tier_order", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "tier_order" + }, + { + "label": "tierAtLeast()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_types_tieratleast", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "tieratleast()" + }, + { + "label": "minTier()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_types_mintier", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "mintier()" + }, + { + "label": "maxTier()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_types_maxtier", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "maxtier()" + }, + { + "label": "SharingMode", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L35", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_types_sharingmode", + "community": 113, + "community_name": "Handshake Servicerpc", + "norm_label": "sharingmode" + }, + { + "label": "ActionType", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L39", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_types_actiontype", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "actiontype" + }, + { + "label": "ExternalProcessing", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L49", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_types_externalprocessing", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "externalprocessing" + }, + { + "label": "CloudPayloadMode", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L53", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_types_cloudpayloadmode", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "cloudpayloadmode" + }, + { + "label": "DataClassification", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L57", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_types_dataclassification", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "dataclassification" + }, + { + "label": "ALL_DATA_CLASSIFICATIONS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L63", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_types_all_data_classifications", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "all_data_classifications" + }, + { + "label": "HandshakeState", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L72", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "handshakestate" + }, + { + "label": "SSOSession", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L84", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_types_ssosession", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "ssosession" + }, + { + "label": "TierSignals", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L101", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_types_tiersignals", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "tiersignals" + }, + { + "label": "TierDecision", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L110", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_types_tierdecision", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "tierdecision" + }, + { + "label": "ReceiverPolicy", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L120", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_types_receiverpolicy", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "receiverpolicy" + }, + { + "label": "buildDefaultReceiverPolicy()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L145", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_types_builddefaultreceiverpolicy", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "builddefaultreceiverpolicy()" + }, + { + "label": "CapsulePolicy", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L175", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_types_capsulepolicy", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "capsulepolicy" + }, + { + "label": "EffectivePolicy", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L187", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_types_effectivepolicy", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "effectivepolicy" + }, + { + "label": "IdentityAnchor", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L200", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_types_identityanchor", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "identityanchor" + }, + { + "label": "HandshakePayload", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L207", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_types_handshakepayload", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "handshakepayload" + }, + { + "label": "ExecutionCapsule", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L222", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_types_executioncapsule", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "executioncapsule" + }, + { + "label": "ReceiverIdentity", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L237", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_types_receiveridentity", + "community": 113, + "community_name": "Handshake Servicerpc", + "norm_label": "receiveridentity" + }, + { + "label": "ContextBlockInput", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L247", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_types_contextblockinput", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "contextblockinput" + }, + { + "label": "CapsuleType", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L264", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_types_capsuletype", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "capsuletype" + }, + { + "label": "VerifiedCapsuleInput", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L271", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_types_verifiedcapsuleinput", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "verifiedcapsuleinput" + }, + { + "label": "PartyIdentity", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L333", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_types_partyidentity", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "partyidentity" + }, + { + "label": "HandshakeRecord", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L342", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "handshakerecord" + }, + { + "label": "SandboxPairingKind", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L453", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_types_sandboxpairingkind", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "sandboxpairingkind" + }, + { + "label": "BeapKeyAgreementMaterial", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L456", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_types_beapkeyagreementmaterial", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "beapkeyagreementmaterial" + }, + { + "label": "ContextBlock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L467", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_types_contextblock", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "contextblock" + }, + { + "label": "ReasonCode", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L489", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_types_reasoncode", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "reasoncode" + }, + { + "label": "StepResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L536", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_types_stepresult", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "stepresult" + }, + { + "label": "PipelineStep", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L540", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_types_pipelinestep", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "pipelinestep" + }, + { + "label": "HandshakeVerificationContext", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L545", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_types_handshakeverificationcontext", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "handshakeverificationcontext" + }, + { + "label": "HandshakeVerificationSuccess", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L564", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_types_handshakeverificationsuccess", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "handshakeverificationsuccess" + }, + { + "label": "HandshakeVerificationDenial", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L569", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_types_handshakeverificationdenial", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "handshakeverificationdenial" + }, + { + "label": "HandshakeVerificationResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L576", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_types_handshakeverificationresult", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "handshakeverificationresult" + }, + { + "label": "HandshakeProcessSuccess", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L582", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_types_handshakeprocesssuccess", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "handshakeprocesssuccess" + }, + { + "label": "HandshakeProcessDenial", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L590", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_types_handshakeprocessdenial", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "handshakeprocessdenial" + }, + { + "label": "HandshakeProcessResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L598", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_types_handshakeprocessresult", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "handshakeprocessresult" + }, + { + "label": "AuthorizationResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L604", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_types_authorizationresult", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "authorizationresult" + }, + { + "label": "VaultAccessResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L611", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_types_vaultaccessresult", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "vaultaccessresult" + }, + { + "label": "ScoredContextBlock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L619", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_types_scoredcontextblock", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "scoredcontextblock" + }, + { + "label": "PersistResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L625", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_types_persistresult", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "persistresult" + }, + { + "label": "AuditLogEntry", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L632", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_types_auditlogentry", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "auditlogentry" + }, + { + "label": "INPUT_LIMITS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L646", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_types_input_limits", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "input_limits" + }, + { + "label": "vaultGating.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/vaultGating.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_vaultgating", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "vaultgating.ts" + }, + { + "label": "gateVaultAccess()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/vaultGating.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_vaultgating_gatevaultaccess", + "community": 21, + "community_name": "Handshake Enforcement", + "norm_label": "gatevaultaccess()" + }, + { + "label": "visibilityFilter.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/visibilityFilter.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_visibilityfilter", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "visibilityfilter.ts" + }, + { + "label": "visibilityWhereClause()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/visibilityFilter.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_visibilityfilter_visibilitywhereclause", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "visibilitywhereclause()" + }, + { + "label": "isVaultCurrentlyUnlocked()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/handshake/visibilityFilter.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_handshake_visibilityfilter_isvaultcurrentlyunlocked", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "isvaultcurrentlyunlocked()" + }, + { + "label": "gpuStatus.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/inference/__tests__/gpuStatus.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_inference_tests_gpustatus_test", + "community": 189, + "community_name": "Inference LLM", + "norm_label": "gpustatus.test.ts" + }, + { + "label": "execMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/inference/__tests__/gpuStatus.test.ts", + "source_location": "L13", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_inference_tests_gpustatus_test_execmock", + "community": 189, + "community_name": "Inference LLM", + "norm_label": "execmock" + }, + { + "label": "mockFetchHandlers()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/inference/__tests__/gpuStatus.test.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_inference_tests_gpustatus_test_mockfetchhandlers", + "community": 189, + "community_name": "Inference LLM", + "norm_label": "mockfetchhandlers()" + }, + { + "label": "inferenceCapabilityResolver.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/inference/__tests__/inferenceCapabilityResolver.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_inference_tests_inferencecapabilityresolver_test", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "inferencecapabilityresolver.test.ts" + }, + { + "label": "inferenceGate.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/inference/__tests__/inferenceGate.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_inference_tests_inferencegate_test", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "inferencegate.test.ts" + }, + { + "label": "getGpuStatusMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/inference/__tests__/inferenceGate.test.ts", + "source_location": "L3", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_inference_tests_inferencegate_test_getgpustatusmock", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "getgpustatusmock" + }, + { + "label": "getGpuInferenceStatusRemoteMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/inference/__tests__/inferenceGate.test.ts", + "source_location": "L4", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_inference_tests_inferencegate_test_getgpuinferencestatusremotemock", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "getgpuinferencestatusremotemock" + }, + { + "label": "gpuStatus.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_inference_gpustatus", + "community": 189, + "community_name": "Inference LLM", + "norm_label": "gpustatus.ts" + }, + { + "label": "execAsync", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L19", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_inference_gpustatus_execasync", + "community": 189, + "community_name": "Inference LLM", + "norm_label": "execasync" + }, + { + "label": "GpuUnavailableReason", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L21", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_inference_gpustatus_gpuunavailablereason", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "gpuunavailablereason" + }, + { + "label": "GpuStatus", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L30", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_inference_gpustatus_gpustatus", + "community": 189, + "community_name": "Inference LLM", + "norm_label": "gpustatus" + }, + { + "label": "CacheEntry", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L51", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_inference_gpustatus_cacheentry", + "community": 189, + "community_name": "Inference LLM", + "norm_label": "cacheentry" + }, + { + "label": "remoteCache", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L54", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_inference_gpustatus_remotecache", + "community": 189, + "community_name": "Inference LLM", + "norm_label": "remotecache" + }, + { + "label": "clearGpuStatusCache()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_inference_gpustatus_cleargpustatuscache", + "community": 189, + "community_name": "Inference LLM", + "norm_label": "cleargpustatuscache()" + }, + { + "label": "cacheKeyRemote()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_inference_gpustatus_cachekeyremote", + "community": 189, + "community_name": "Inference LLM", + "norm_label": "cachekeyremote()" + }, + { + "label": "parseSemverParts()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L65", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_inference_gpustatus_parsesemverparts", + "community": 189, + "community_name": "Inference LLM", + "norm_label": "parsesemverparts()" + }, + { + "label": "semverAtLeast()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L75", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_inference_gpustatus_semveratleast", + "community": 189, + "community_name": "Inference LLM", + "norm_label": "semveratleast()" + }, + { + "label": "stripBareModelName()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L87", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_inference_gpustatus_stripbaremodelname", + "community": 189, + "community_name": "Inference LLM", + "norm_label": "stripbaremodelname()" + }, + { + "label": "matchPsModelRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L93", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_inference_gpustatus_matchpsmodelrow", + "community": 189, + "community_name": "Inference LLM", + "norm_label": "matchpsmodelrow()" + }, + { + "label": "detectNvidiaSmi()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L113", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_inference_gpustatus_detectnvidiasmi", + "community": 189, + "community_name": "Inference LLM", + "norm_label": "detectnvidiasmi()" + }, + { + "label": "localLlmServerLogCandidates()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L127", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_inference_gpustatus_localllmserverlogcandidates", + "community": 189, + "community_name": "Inference LLM", + "norm_label": "localllmserverlogcandidates()" + }, + { + "label": "readLocalLlmLogTail()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L138", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_inference_gpustatus_readlocalllmlogtail", + "community": 189, + "community_name": "Inference LLM", + "norm_label": "readlocalllmlogtail()" + }, + { + "label": "refineReasonFromLogs()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L153", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_inference_gpustatus_refinereasonfromlogs", + "community": 189, + "community_name": "Inference LLM", + "norm_label": "refinereasonfromlogs()" + }, + { + "label": "userMessagesFor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L166", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_inference_gpustatus_usermessagesfor", + "community": 189, + "community_name": "Inference LLM", + "norm_label": "usermessagesfor()" + }, + { + "label": "buildTechnicalSummary()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L186", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_inference_gpustatus_buildtechnicalsummary", + "community": 189, + "community_name": "Inference LLM", + "norm_label": "buildtechnicalsummary()" + }, + { + "label": "fetchJsonWithTimeout()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L194", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_inference_gpustatus_fetchjsonwithtimeout", + "community": 189, + "community_name": "Inference LLM", + "norm_label": "fetchjsonwithtimeout()" + }, + { + "label": "firstResponsiveLlamacppBase()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L205", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_inference_gpustatus_firstresponsivellamacppbase", + "community": 189, + "community_name": "Inference LLM", + "norm_label": "firstresponsivellamacppbase()" + }, + { + "label": "fetchV1ModelNames()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L219", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_inference_gpustatus_fetchv1modelnames", + "community": 189, + "community_name": "Inference LLM", + "norm_label": "fetchv1modelnames()" + }, + { + "label": "fetchPsRows()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L242", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_inference_gpustatus_fetchpsrows", + "community": 189, + "community_name": "Inference LLM", + "norm_label": "fetchpsrows()" + }, + { + "label": "ProbeScope", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L251", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_inference_gpustatus_probescope", + "community": 189, + "community_name": "Inference LLM", + "norm_label": "probescope" + }, + { + "label": "probeGpuInferenceStatus()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L253", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_inference_gpustatus_probegpuinferencestatus", + "community": 189, + "community_name": "Inference LLM", + "norm_label": "probegpuinferencestatus()" + }, + { + "label": "getGpuStatus()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L458", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_inference_gpustatus_getgpustatus", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "getgpustatus()" + }, + { + "label": "getGpuInferenceStatusRemote()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L475", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_inference_gpustatus_getgpuinferencestatusremote", + "community": 189, + "community_name": "Inference LLM", + "norm_label": "getgpuinferencestatusremote()" + }, + { + "label": "inferenceCapabilityResolver.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/inference/inferenceCapabilityResolver.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_inference_inferencecapabilityresolver", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "inferencecapabilityresolver.ts" + }, + { + "label": "InferenceBackend", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/inference/inferenceCapabilityResolver.ts", + "source_location": "L15", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_inference_inferencecapabilityresolver_inferencebackend", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "inferencebackend" + }, + { + "label": "InferenceHardware", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/inference/inferenceCapabilityResolver.ts", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_inference_inferencecapabilityresolver_inferencehardware", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "inferencehardware" + }, + { + "label": "InferenceCapabilityResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/inference/inferenceCapabilityResolver.ts", + "source_location": "L24", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_inference_inferencecapabilityresolver_inferencecapabilityresult", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "inferencecapabilityresult" + }, + { + "label": "InferenceCapabilityInput", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/inference/inferenceCapabilityResolver.ts", + "source_location": "L48", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_inference_inferencecapabilityresolver_inferencecapabilityinput", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "inferencecapabilityinput" + }, + { + "label": "CPU_SAFE_MODEL_PATTERNS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/inference/inferenceCapabilityResolver.ts", + "source_location": "L84", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_inference_inferencecapabilityresolver_cpu_safe_model_patterns", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "cpu_safe_model_patterns" + }, + { + "label": "isCpuSafeModel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/inference/inferenceCapabilityResolver.ts", + "source_location": "L98", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_inference_inferencecapabilityresolver_iscpusafemodel", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "iscpusafemodel()" + }, + { + "label": "resolveInferenceCapabilityFromInput()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/inference/inferenceCapabilityResolver.ts", + "source_location": "L119", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_inference_inferencecapabilityresolver_resolveinferencecapabilityfrominput", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "resolveinferencecapabilityfrominput()" + }, + { + "label": "inferenceGate.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/inference/inferenceGate.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_inference_inferencegate", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "inferencegate.ts" + }, + { + "label": "InferenceUnavailableError", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/inference/inferenceGate.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_inference_inferencegate_inferenceunavailableerror", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "inferenceunavailableerror" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/inference/inferenceGate.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_inference_inferencegate_inferenceunavailableerror_constructor", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": ".constructor()" + }, + { + "label": "allowCpuInferenceDevOverride()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/inference/inferenceGate.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_inference_inferencegate_allowcpuinferencedevoverride", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "allowcpuinferencedevoverride()" + }, + { + "label": "logDevBypass()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/inference/inferenceGate.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_inference_inferencegate_logdevbypass", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "logdevbypass()" + }, + { + "label": "isLikelyLoopbackOrigin()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/inference/inferenceGate.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_inference_inferencegate_islikelyloopbackorigin", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "islikelyloopbackorigin()" + }, + { + "label": "assertGpuInferenceAvailable()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/inference/inferenceGate.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_inference_inferencegate_assertgpuinferenceavailable", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "assertgpuinferenceavailable()" + }, + { + "label": "assertGpuInferenceAvailableForRemoteOllama()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/inference/inferenceGate.ts", + "source_location": "L62", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_inference_inferencegate_assertgpuinferenceavailableforremoteollama", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "assertgpuinferenceavailableforremoteollama()" + }, + { + "label": "assertGpuInferenceAvailableForChatBase()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/inference/inferenceGate.ts", + "source_location": "L82", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_inference_inferencegate_assertgpuinferenceavailableforchatbase", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "assertgpuinferenceavailableforchatbase()" + }, + { + "label": "isGpuInferenceAvailable()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/inference/inferenceGate.ts", + "source_location": "L94", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_inference_inferencegate_isgpuinferenceavailable", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "isgpuinferenceavailable()" + }, + { + "label": "adversarial.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/adversarial.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_adversarial_test", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "adversarial.test.ts" + }, + { + "label": "makeProvenance()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/adversarial.test.ts", + "source_location": "L6", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_adversarial_test_makeprovenance", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "makeprovenance()" + }, + { + "label": "makeCandidate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/adversarial.test.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_adversarial_test_makecandidate", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "makecandidate()" + }, + { + "label": "validInitiate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/adversarial.test.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_adversarial_test_validinitiate", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "validinitiate()" + }, + { + "label": "emptyTransport", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/adversarial.test.ts", + "source_location": "L44", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_adversarial_test_emptytransport", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "emptytransport" + }, + { + "label": "authorization.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/authorization.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_authorization_test", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "authorization.test.ts" + }, + { + "label": "makeMockDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/authorization.test.ts", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_authorization_test_makemockdb", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "makemockdb()" + }, + { + "label": "makeHandshakeRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/authorization.test.ts", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_authorization_test_makehandshakerow", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "makehandshakerow()" + }, + { + "label": "makeRequest()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/authorization.test.ts", + "source_location": "L66", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_authorization_test_makerequest", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "makerequest()" + }, + { + "label": "beapDetection.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/beapDetection.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_beapdetection_test", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "beapdetection.test.ts" + }, + { + "label": "validBeapPayload()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/beapDetection.test.ts", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_beapdetection_test_validbeappayload", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "validbeappayload()" + }, + { + "label": "distributionGate.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/distributionGate.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_distributiongate_test", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "distributiongate.test.ts" + }, + { + "label": "makeProvenance()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/distributionGate.test.ts", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_distributiongate_test_makeprovenance", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "makeprovenance()" + }, + { + "label": "makeValidated()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/distributionGate.test.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_distributiongate_test_makevalidated", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "makevalidated()" + }, + { + "label": "e2e.http.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.http.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_http_test", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "e2e.http.test.ts" + }, + { + "label": "postIngest()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.http.test.ts", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_http_test_postingest", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "postingest()" + }, + { + "label": "ingestPayload()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.http.test.ts", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_http_test_ingestpayload", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "ingestpayload()" + }, + { + "label": "e2e.ipc.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.ipc.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_ipc_test", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "e2e.ipc.test.ts" + }, + { + "label": "e2e.transport.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.transport.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_transport_test", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "e2e.transport.test.ts" + }, + { + "label": "validBeapPayload()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.transport.test.ts", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_transport_test_validbeappayload", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "validbeappayload()" + }, + { + "label": "malformedJsonBody()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.transport.test.ts", + "source_location": "L60", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_transport_test_malformedjsonbody", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "malformedjsonbody()" + }, + { + "label": "oversizedBody()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.transport.test.ts", + "source_location": "L64", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_transport_test_oversizedbody", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "oversizedbody()" + }, + { + "label": "futureTimestampPayload()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.transport.test.ts", + "source_location": "L68", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_transport_test_futuretimestamppayload", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "futuretimestamppayload()" + }, + { + "label": "emptyTransport", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.transport.test.ts", + "source_location": "L75", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_transport_test_emptytransport", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "emptytransport" + }, + { + "label": "mockRes()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.transport.test.ts", + "source_location": "L79", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_transport_test_mockres", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "mockres()" + }, + { + "label": "mockExpressApp()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.transport.test.ts", + "source_location": "L91", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_transport_test_mockexpressapp", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "mockexpressapp()" + }, + { + "label": "e2e.websocket.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.websocket.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_websocket_test", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "e2e.websocket.test.ts" + }, + { + "label": "entrypoint.guard.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/entrypoint.guard.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_entrypoint_guard_test", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "entrypoint.guard.test.ts" + }, + { + "label": "ELECTRON_MAIN_DIR", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/entrypoint.guard.test.ts", + "source_location": "L20", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_entrypoint_guard_test_electron_main_dir", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "electron_main_dir" + }, + { + "label": "collectProductionFiles()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/entrypoint.guard.test.ts", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_entrypoint_guard_test_collectproductionfiles", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "collectproductionfiles()" + }, + { + "label": "ALLOWED_CALLERS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/entrypoint.guard.test.ts", + "source_location": "L50", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_entrypoint_guard_test_allowed_callers", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "allowed_callers" + }, + { + "label": "entrypoints.guard.e2e.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/entrypoints.guard.e2e.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_entrypoints_guard_e2e_test", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "entrypoints.guard.e2e.test.ts" + }, + { + "label": "ELECTRON_MAIN_DIR", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/entrypoints.guard.e2e.test.ts", + "source_location": "L30", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_entrypoints_guard_e2e_test_electron_main_dir", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "electron_main_dir" + }, + { + "label": "collectProductionFiles()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/entrypoints.guard.e2e.test.ts", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_entrypoints_guard_e2e_test_collectproductionfiles", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "collectproductionfiles()" + }, + { + "label": "capsules.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/fixtures/capsules.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_fixtures_capsules", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "capsules.ts" + }, + { + "label": "validBeapCapsule()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/fixtures/capsules.ts", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_fixtures_capsules_validbeapcapsule", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "validbeapcapsule()" + }, + { + "label": "malformedJsonString()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/fixtures/capsules.ts", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_fixtures_capsules_malformedjsonstring", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "malformedjsonstring()" + }, + { + "label": "oversizedBody()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/fixtures/capsules.ts", + "source_location": "L48", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_fixtures_capsules_oversizedbody", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "oversizedbody()" + }, + { + "label": "futureTimestampCapsule()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/fixtures/capsules.ts", + "source_location": "L52", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_fixtures_capsules_futuretimestampcapsule", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "futuretimestampcapsule()" + }, + { + "label": "unsupportedSchemaCapsule()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/fixtures/capsules.ts", + "source_location": "L59", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_fixtures_capsules_unsupportedschemacapsule", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "unsupportedschemacapsule()" + }, + { + "label": "brandForgeryCapsule()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/fixtures/capsules.ts", + "source_location": "L66", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_fixtures_capsules_brandforgerycapsule", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "brandforgerycapsule()" + }, + { + "label": "ingestion/__tests__/hardening.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/hardening.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_hardening_test", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "ingestion/__tests__/hardening.test.ts" + }, + { + "label": "makeProvenance()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/hardening.test.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_hardening_test_makeprovenance", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "makeprovenance()" + }, + { + "label": "makeCandidate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/hardening.test.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_hardening_test_makecandidate", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "makecandidate()" + }, + { + "label": "validInitiate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/hardening.test.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_hardening_test_validinitiate", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "validinitiate()" + }, + { + "label": "emptyTransport", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/hardening.test.ts", + "source_location": "L54", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_hardening_test_emptytransport", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "emptytransport" + }, + { + "label": "testDb.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testDb.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testdb", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "testdb.ts" + }, + { + "label": "TestDb", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testDb.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testdb_testdb", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "testdb" + }, + { + "label": ".prepare()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testDb.ts", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testdb_testdb_prepare", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": ".prepare()" + }, + { + "label": ".transaction()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testDb.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testdb_testdb_transaction", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": ".transaction()" + }, + { + "label": ".getAuditRows()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testDb.ts", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testdb_testdb_getauditrows", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": ".getauditrows()" + }, + { + "label": ".getQuarantineRows()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testDb.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testdb_testdb_getquarantinerows", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": ".getquarantinerows()" + }, + { + "label": ".getSandboxQueueRows()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testDb.ts", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testdb_testdb_getsandboxqueuerows", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": ".getsandboxqueuerows()" + }, + { + "label": "TestStatement", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testDb.ts", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testdb_teststatement", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "teststatement" + }, + { + "label": ".run()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testDb.ts", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testdb_teststatement_run", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": ".run()" + }, + { + "label": ".get()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testDb.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testdb_teststatement_get", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": ".get()" + }, + { + "label": ".all()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testDb.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testdb_teststatement_all", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": ".all()" + }, + { + "label": "createTestDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testDb.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testdb_createtestdb", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "createtestdb()" + }, + { + "label": "testIpcHarness.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testIpcHarness.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testipcharness", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "testipcharness.ts" + }, + { + "label": "IpcHarness", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testIpcHarness.ts", + "source_location": "L15", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testipcharness_ipcharness", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "ipcharness" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testIpcHarness.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testipcharness_ipcharness_constructor", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": ".constructor()" + }, + { + "label": ".invoke()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testIpcHarness.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testipcharness_ipcharness_invoke", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": ".invoke()" + }, + { + "label": "testServer.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testServer.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testserver", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "testserver.ts" + }, + { + "label": "TestServerContext", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testServer.ts", + "source_location": "L15", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testserver_testservercontext", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "testservercontext" + }, + { + "label": "startTestServer()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testServer.ts", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testserver_starttestserver", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "starttestserver()" + }, + { + "label": "testWsClient.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testWsClient.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testwsclient", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "testwsclient.ts" + }, + { + "label": "WsRpcResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testWsClient.ts", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testwsclient_wsrpcresult", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "wsrpcresult" + }, + { + "label": "sendIngestionRpc()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testWsClient.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testwsclient_sendingestionrpc", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "sendingestionrpc()" + }, + { + "label": "sendHandshakeRpc()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testWsClient.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testwsclient_sendhandshakerpc", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "sendhandshakerpc()" + }, + { + "label": "ingestor.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/ingestor.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_ingestor_test", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "ingestor.test.ts" + }, + { + "label": "validBeapJson()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/ingestor.test.ts", + "source_location": "L6", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_ingestor_test_validbeapjson", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "validbeapjson()" + }, + { + "label": "makeRawInput()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/ingestor.test.ts", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_ingestor_test_makerawinput", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "makerawinput()" + }, + { + "label": "integration.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/integration.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_integration_test", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "integration.test.ts" + }, + { + "label": "validBeapPayload()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/integration.test.ts", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_integration_test_validbeappayload", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "validbeappayload()" + }, + { + "label": "emptyTransport", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/integration.test.ts", + "source_location": "L21", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_integration_test_emptytransport", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "emptytransport" + }, + { + "label": "plainTransform.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/plainTransform.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_plaintransform_test", + "community": 587, + "community_name": "Ingestion #587", + "norm_label": "plaintransform.test.ts" + }, + { + "label": "validator.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/validator.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_validator_test", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "validator.test.ts" + }, + { + "label": "makeProvenance()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/validator.test.ts", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_validator_test_makeprovenance", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "makeprovenance()" + }, + { + "label": "makeCandidate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/validator.test.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_validator_test_makecandidate", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "makecandidate()" + }, + { + "label": "validInitiate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/validator.test.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_validator_test_validinitiate", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "validinitiate()" + }, + { + "label": "validAccept()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/validator.test.ts", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_validator_test_validaccept", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "validaccept()" + }, + { + "label": "validRefresh()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/validator.test.ts", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_validator_test_validrefresh", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "validrefresh()" + }, + { + "label": "validRevoke()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/validator.test.ts", + "source_location": "L62", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_validator_test_validrevoke", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "validrevoke()" + }, + { + "label": "validInternalDraft()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/validator.test.ts", + "source_location": "L76", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_tests_validator_test_validinternaldraft", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "validinternaldraft()" + }, + { + "label": "main/ingestion/index.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_index", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "main/ingestion/index.ts" + }, + { + "label": "ingestionErrors.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ingestionErrors.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_ingestionerrors", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "ingestionerrors.ts" + }, + { + "label": "IngestionError", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ingestionErrors.ts", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_ingestionerrors_ingestionerror", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "ingestionerror" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ingestionErrors.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_ingestionerrors_ingestionerror_constructor", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": ".constructor()" + }, + { + "label": "formatValidationError()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ingestionErrors.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_ingestionerrors_formatvalidationerror", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "formatvalidationerror()" + }, + { + "label": "ingestionPipeline.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ingestionPipeline.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_ingestionpipeline", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "ingestionpipeline.ts" + }, + { + "label": "processIncomingInput()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ingestionPipeline.ts", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_ingestionpipeline_processincominginput", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "processincominginput()" + }, + { + "label": "buildAuditRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ingestionPipeline.ts", + "source_location": "L169", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_ingestionpipeline_buildauditrecord", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "buildauditrecord()" + }, + { + "label": "ingestion/ipc.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_ipc", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "ingestion/ipc.ts" + }, + { + "label": "migratedDbs", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L32", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_ipc_migrateddbs", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "migrateddbs" + }, + { + "label": "ensureHandshakeMigration()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_ipc_ensurehandshakemigration", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "ensurehandshakemigration()" + }, + { + "label": "handleIngestionRPC()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_ipc_handleingestionrpc", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "handleingestionrpc()" + }, + { + "label": "registerIngestionRoutes()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L253", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_ipc_registeringestionroutes", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "registeringestionroutes()" + }, + { + "label": "persistenceDb.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/persistenceDb.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_persistencedb", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "persistencedb.ts" + }, + { + "label": "INGESTION_MIGRATIONS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/persistenceDb.ts", + "source_location": "L19", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_persistencedb_ingestion_migrations", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "ingestion_migrations" + }, + { + "label": "migrateIngestionTables()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/persistenceDb.ts", + "source_location": "L81", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_persistencedb_migrateingestiontables", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "migrateingestiontables()" + }, + { + "label": "insertQuarantineRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/persistenceDb.ts", + "source_location": "L115", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_persistencedb_insertquarantinerecord", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "insertquarantinerecord()" + }, + { + "label": "listQuarantineRecords()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/persistenceDb.ts", + "source_location": "L148", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_persistencedb_listquarantinerecords", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "listquarantinerecords()" + }, + { + "label": "getQuarantineCount()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/persistenceDb.ts", + "source_location": "L158", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_persistencedb_getquarantinecount", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "getquarantinecount()" + }, + { + "label": "insertSandboxQueueItem()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/persistenceDb.ts", + "source_location": "L169", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_persistencedb_insertsandboxqueueitem", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "insertsandboxqueueitem()" + }, + { + "label": "listSandboxQueueItems()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/persistenceDb.ts", + "source_location": "L195", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_persistencedb_listsandboxqueueitems", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "listsandboxqueueitems()" + }, + { + "label": "updateSandboxQueueStatus()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/persistenceDb.ts", + "source_location": "L214", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_persistencedb_updatesandboxqueuestatus", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "updatesandboxqueuestatus()" + }, + { + "label": "getSandboxQueueCount()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/persistenceDb.ts", + "source_location": "L224", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_persistencedb_getsandboxqueuecount", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "getsandboxqueuecount()" + }, + { + "label": "insertIngestionAuditRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/persistenceDb.ts", + "source_location": "L239", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_persistencedb_insertingestionauditrecord", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "insertingestionauditrecord()" + }, + { + "label": "sandboxStub.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/sandboxStub.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_sandboxstub", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "sandboxstub.ts" + }, + { + "label": "SandboxStubResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/sandboxStub.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_sandboxstub_sandboxstubresult", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "sandboxstubresult" + }, + { + "label": "processSandboxQueue()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/sandboxStub.ts", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_sandboxstub_processsandboxqueue", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "processsandboxqueue()" + }, + { + "label": "main/ingestion/types.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/types.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_types", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "main/ingestion/types.ts" + }, + { + "label": "SourceType", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/types.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_types_sourcetype", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "sourcetype" + }, + { + "label": "OriginClassification", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/types.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_types_originclassification", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "originclassification" + }, + { + "label": "InputClassification", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/types.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_types_inputclassification", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "inputclassification" + }, + { + "label": "ProvenanceMetadata", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/types.ts", + "source_location": "L21", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_types_provenancemetadata", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "provenancemetadata" + }, + { + "label": "TransportMetadata", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/types.ts", + "source_location": "L31", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_types_transportmetadata", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "transportmetadata" + }, + { + "label": "RawInput", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/types.ts", + "source_location": "L43", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_types_rawinput", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "rawinput" + }, + { + "label": "RawAttachment", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/types.ts", + "source_location": "L51", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_types_rawattachment", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "rawattachment" + }, + { + "label": "CandidateCapsuleEnvelope", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/types.ts", + "source_location": "L59", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_types_candidatecapsuleenvelope", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "candidatecapsuleenvelope" + }, + { + "label": "ValidatedCapsule", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/types.ts", + "source_location": "L69", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_types_validatedcapsule", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "validatedcapsule" + }, + { + "label": "ValidatedCapsulePayload", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/types.ts", + "source_location": "L85", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_types_validatedcapsulepayload", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "validatedcapsulepayload" + }, + { + "label": "CapsuleType", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/types.ts", + "source_location": "L97", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_types_capsuletype", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "capsuletype" + }, + { + "label": "DetectionMethod", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/types.ts", + "source_location": "L107", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_types_detectionmethod", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "detectionmethod" + }, + { + "label": "BeapDetectionResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/types.ts", + "source_location": "L109", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_types_beapdetectionresult", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "beapdetectionresult" + }, + { + "label": "ValidationResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/types.ts", + "source_location": "L115", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_types_validationresult", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "validationresult" + }, + { + "label": "ValidationReasonCode", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/types.ts", + "source_location": "L119", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_types_validationreasoncode", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "validationreasoncode" + }, + { + "label": "DistributionTarget", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/types.ts", + "source_location": "L133", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_types_distributiontarget", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "distributiontarget" + }, + { + "label": "DistributionDecision", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/types.ts", + "source_location": "L138", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_types_distributiondecision", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "distributiondecision" + }, + { + "label": "IngestionResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/types.ts", + "source_location": "L146", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_types_ingestionresult", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "ingestionresult" + }, + { + "label": "IngestionAuditRecord", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/types.ts", + "source_location": "L152", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_types_ingestionauditrecord", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "ingestionauditrecord" + }, + { + "label": "INGESTION_CONSTANTS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/types.ts", + "source_location": "L167", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_types_ingestion_constants", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "ingestion_constants" + }, + { + "label": "SandboxQueueStatus", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ingestion/types.ts", + "source_location": "L191", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ingestion_types_sandboxqueuestatus", + "community": 20, + "community_name": "Ingestion IPC Pipeline", + "norm_label": "sandboxqueuestatus" + }, + { + "label": "verifier.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/integrity/verifier.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_integrity_verifier", + "community": 317, + "community_name": "Integrity", + "norm_label": "verifier.ts" + }, + { + "label": "mainBundleDir", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/integrity/verifier.ts", + "source_location": "L28", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_integrity_verifier_mainbundledir", + "community": 317, + "community_name": "Integrity", + "norm_label": "mainbundledir" + }, + { + "label": "IntegrityStatus", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/integrity/verifier.ts", + "source_location": "L34", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_integrity_verifier_integritystatus", + "community": 317, + "community_name": "Integrity", + "norm_label": "integritystatus" + }, + { + "label": "IntegrityCheck", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/integrity/verifier.ts", + "source_location": "L41", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_integrity_verifier_integritycheck", + "community": 317, + "community_name": "Integrity", + "norm_label": "integritycheck" + }, + { + "label": "getResourcesPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/integrity/verifier.ts", + "source_location": "L51", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_integrity_verifier_getresourcespath", + "community": 317, + "community_name": "Integrity", + "norm_label": "getresourcespath()" + }, + { + "label": "getManifestPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/integrity/verifier.ts", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_integrity_verifier_getmanifestpath", + "community": 317, + "community_name": "Integrity", + "norm_label": "getmanifestpath()" + }, + { + "label": "getPublicKeyPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/integrity/verifier.ts", + "source_location": "L77", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_integrity_verifier_getpublickeypath", + "community": 317, + "community_name": "Integrity", + "norm_label": "getpublickeypath()" + }, + { + "label": "checkSelfHash()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/integrity/verifier.ts", + "source_location": "L94", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_integrity_verifier_checkselfhash", + "community": 317, + "community_name": "Integrity", + "norm_label": "checkselfhash()" + }, + { + "label": "checkConfigHashes()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/integrity/verifier.ts", + "source_location": "L114", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_integrity_verifier_checkconfighashes", + "community": 317, + "community_name": "Integrity", + "norm_label": "checkconfighashes()" + }, + { + "label": "checkMinisignSignature()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/integrity/verifier.ts", + "source_location": "L149", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_integrity_verifier_checkminisignsignature", + "community": 317, + "community_name": "Integrity", + "norm_label": "checkminisignsignature()" + }, + { + "label": "checkGitCommit()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/integrity/verifier.ts", + "source_location": "L178", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_integrity_verifier_checkgitcommit", + "community": 317, + "community_name": "Integrity", + "norm_label": "checkgitcommit()" + }, + { + "label": "verifyBuildIntegrity()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/integrity/verifier.ts", + "source_location": "L203", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_integrity_verifier_verifybuildintegrity", + "community": 317, + "community_name": "Integrity", + "norm_label": "verifybuildintegrity()" + }, + { + "label": "clearIntegrityCache()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/integrity/verifier.ts", + "source_location": "L265", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_integrity_verifier_clearintegritycache", + "community": 317, + "community_name": "Integrity", + "norm_label": "clearintegritycache()" + }, + { + "label": "decideInternalInferenceTransport.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/decideInternalInferenceTransport.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_decideinternalinferencetransport_test", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "decideinternalinferencetransport.test.ts" + }, + { + "label": "rolesOk()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/decideInternalInferenceTransport.test.ts", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_decideinternalinferencetransport_test_rolesok", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "rolesok()" + }, + { + "label": "hr", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/decideInternalInferenceTransport.test.ts", + "source_location": "L41", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_decideinternalinferencetransport_test_hr", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "hr" + }, + { + "label": "hrInternal", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/decideInternalInferenceTransport.test.ts", + "source_location": "L42", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_decideinternalinferencetransport_test_hrinternal", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "hrinternal" + }, + { + "label": "base", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/decideInternalInferenceTransport.test.ts", + "source_location": "L44", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_decideinternalinferencetransport_test_base", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "base" + }, + { + "label": "directP2pReachability.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/directP2pReachability.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_directp2preachability_test", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "directp2preachability.test.ts" + }, + { + "label": "{ isSandboxModeMock, isHostModeMock }", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/directP2pReachability.test.ts", + "source_location": "L10", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_directp2preachability_test_issandboxmodemock_ishostmodemock", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "{ issandboxmodemock, ishostmodemock }" + }, + { + "label": "getHandshakeRecordMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/directP2pReachability.test.ts", + "source_location": "L21", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_directp2preachability_test_gethandshakerecordmock", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "gethandshakerecordmock" + }, + { + "label": "getHandshakeDbForInternalInferenceMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/directP2pReachability.test.ts", + "source_location": "L28", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_directp2preachability_test_gethandshakedbforinternalinferencemock", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "gethandshakedbforinternalinferencemock" + }, + { + "label": "party()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/directP2pReachability.test.ts", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_directp2preachability_test_party", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "party()" + }, + { + "label": "sandboxToHostRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/directP2pReachability.test.ts", + "source_location": "L42", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_directp2preachability_test_sandboxtohostrecord", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "sandboxtohostrecord()" + }, + { + "label": "hostAiBeapAdOllamaModelCount.regression.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiBeapAdOllamaModelCount.regression.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaibeapadollamamodelcount_regression_test", + "community": 458, + "community_name": "Internal Inference #458", + "norm_label": "hostaibeapadollamamodelcount.regression.test.ts" + }, + { + "label": "getLocalLlmProviderStatusMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiBeapAdOllamaModelCount.regression.test.ts", + "source_location": "L12", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaibeapadollamamodelcount_regression_test_getlocalllmproviderstatusmock", + "community": 458, + "community_name": "Internal Inference #458", + "norm_label": "getlocalllmproviderstatusmock" + }, + { + "label": "getHostInternalInferencePolicyMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiBeapAdOllamaModelCount.regression.test.ts", + "source_location": "L17", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaibeapadollamamodelcount_regression_test_gethostinternalinferencepolicymock", + "community": 458, + "community_name": "Internal Inference #458", + "norm_label": "gethostinternalinferencepolicymock" + }, + { + "label": "resolveModelForInternalInferenceMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiBeapAdOllamaModelCount.regression.test.ts", + "source_location": "L24", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaibeapadollamamodelcount_regression_test_resolvemodelforinternalinferencemock", + "community": 458, + "community_name": "Internal Inference #458", + "norm_label": "resolvemodelforinternalinferencemock" + }, + { + "label": "hostAiCrossDeviceStateMachine.regression.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiCrossDeviceStateMachine.regression.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaicrossdevicestatemachine_regression_test", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "hostaicrossdevicestatemachine.regression.test.ts" + }, + { + "label": "party()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiCrossDeviceStateMachine.regression.test.ts", + "source_location": "L70", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaicrossdevicestatemachine_regression_test_party", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "party()" + }, + { + "label": "handshakeBase()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiCrossDeviceStateMachine.regression.test.ts", + "source_location": "L74", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaicrossdevicestatemachine_regression_test_handshakebase", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "handshakebase()" + }, + { + "label": "buildHostInternalId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiCrossDeviceStateMachine.regression.test.ts", + "source_location": "L118", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaicrossdevicestatemachine_regression_test_buildhostinternalid", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "buildhostinternalid()" + }, + { + "label": "hostAiDirectBeapAdPublish.explicitPolicyDeny.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiDirectBeapAdPublish.explicitPolicyDeny.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaidirectbeapadpublish_explicitpolicydeny_test", + "community": 588, + "community_name": "Internal Inference #588", + "norm_label": "hostaidirectbeapadpublish.explicitpolicydeny.test.ts" + }, + { + "label": "hostAiDirectBeapAdPublish.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiDirectBeapAdPublish.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaidirectbeapadpublish_test", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "hostaidirectbeapadpublish.test.ts" + }, + { + "label": "getHostUrl", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiDirectBeapAdPublish.test.ts", + "source_location": "L25", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaidirectbeapadpublish_test_gethosturl", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "gethosturl" + }, + { + "label": "hostAiBeapAdLocalOllamaModelRosterMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiDirectBeapAdPublish.test.ts", + "source_location": "L26", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaidirectbeapadpublish_test_hostaibeapadlocalollamamodelrostermock", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "hostaibeapadlocalollamamodelrostermock" + }, + { + "label": "postBeapAd", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiDirectBeapAdPublish.test.ts", + "source_location": "L56", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaidirectbeapadpublish_test_postbeapad", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "postbeapad" + }, + { + "label": "hostRow", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiDirectBeapAdPublish.test.ts", + "source_location": "L61", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaidirectbeapadpublish_test_hostrow", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "hostrow" + }, + { + "label": "hostAiDirectBeapAdWire.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiDirectBeapAdWire.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaidirectbeapadwire_test", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "hostaidirectbeapadwire.test.ts" + }, + { + "label": "hostAiE2eSandboxToHostSuccess.integration.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiE2eSandboxToHostSuccess.integration.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "hostaie2esandboxtohostsuccess.integration.test.ts" + }, + { + "label": "{\n isHostModeMock,\n isSandboxModeMock,\n getOrchestratorModeMock,\n getInstanceIdMock,\n}", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiE2eSandboxToHostSuccess.integration.test.ts", + "source_location": "L22", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test_ishostmodemock_issandboxmodemock_getorchestratormodemock_getinstanceidmock", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "{\n ishostmodemock,\n issandboxmodemock,\n getorchestratormodemock,\n getinstanceidmock,\n}" + }, + { + "label": "ledgerRows", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiE2eSandboxToHostSuccess.integration.test.ts", + "source_location": "L71", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test_ledgerrows", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "ledgerrows" + }, + { + "label": "party()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiE2eSandboxToHostSuccess.integration.test.ts", + "source_location": "L73", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test_party", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "party()" + }, + { + "label": "makeHandshake()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiE2eSandboxToHostSuccess.integration.test.ts", + "source_location": "L77", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test_makehandshake", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "makehandshake()" + }, + { + "label": "getCurrentSessionMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiE2eSandboxToHostSuccess.integration.test.ts", + "source_location": "L123", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test_getcurrentsessionmock", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "getcurrentsessionmock" + }, + { + "label": "getHandshakeDbMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiE2eSandboxToHostSuccess.integration.test.ts", + "source_location": "L149", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test_gethandshakedbmock", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "gethandshakedbmock" + }, + { + "label": "ensureSessionE2eMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiE2eSandboxToHostSuccess.integration.test.ts", + "source_location": "L154", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test_ensuresessione2emock", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "ensuresessione2emock" + }, + { + "label": "isDcUpE2eMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiE2eSandboxToHostSuccess.integration.test.ts", + "source_location": "L168", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test_isdcupe2emock", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "isdcupe2emock" + }, + { + "label": "getSessionStateE2eMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiE2eSandboxToHostSuccess.integration.test.ts", + "source_location": "L169", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test_getsessionstatee2emock", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "getsessionstatee2emock" + }, + { + "label": "makeCapabilitiesWire()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiE2eSandboxToHostSuccess.integration.test.ts", + "source_location": "L209", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test_makecapabilitieswire", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "makecapabilitieswire()" + }, + { + "label": "hostAiEffectiveRole.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiEffectiveRole.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaieffectiverole_test", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "hostaieffectiverole.test.ts" + }, + { + "label": "base()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiEffectiveRole.test.ts", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaieffectiverole_test_base", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "base()" + }, + { + "label": "hostAiInternalPairingLedger.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiInternalPairingLedger.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiinternalpairingledger_test", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "hostaiinternalpairingledger.test.ts" + }, + { + "label": "listHandshakeRecordsMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiInternalPairingLedger.test.ts", + "source_location": "L5", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiinternalpairingledger_test_listhandshakerecordsmock", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "listhandshakerecordsmock" + }, + { + "label": "getInstanceIdMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiInternalPairingLedger.test.ts", + "source_location": "L6", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiinternalpairingledger_test_getinstanceidmock", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "getinstanceidmock" + }, + { + "label": "row()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiInternalPairingLedger.test.ts", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiinternalpairingledger_test_row", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "row()" + }, + { + "label": "hostAiInternalPeerRoles.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiInternalPeerRoles.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiinternalpeerroles_test", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "hostaiinternalpeerroles.test.ts" + }, + { + "label": "{ getInstanceIdMock, getOrchModeMock }", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiInternalPeerRoles.test.ts", + "source_location": "L12", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiinternalpeerroles_test_getinstanceidmock_getorchmodemock", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "{ getinstanceidmock, getorchmodemock }" + }, + { + "label": "getHSMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiInternalPeerRoles.test.ts", + "source_location": "L27", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiinternalpeerroles_test_gethsmock", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "gethsmock" + }, + { + "label": "base()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiInternalPeerRoles.test.ts", + "source_location": "L41", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiinternalpeerroles_test_base", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "base()" + }, + { + "label": "hostAiLogContracts.validation.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiLogContracts.validation.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostailogcontracts_validation_test", + "community": 109, + "community_name": "Internal Inference Transport", + "norm_label": "hostailogcontracts.validation.test.ts" + }, + { + "label": "baseRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiLogContracts.validation.test.ts", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostailogcontracts_validation_test_baserecord", + "community": 109, + "community_name": "Internal Inference Transport", + "norm_label": "baserecord()" + }, + { + "label": "baseInput()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiLogContracts.validation.test.ts", + "source_location": "L57", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostailogcontracts_validation_test_baseinput", + "community": 109, + "community_name": "Internal Inference Transport", + "norm_label": "baseinput()" + }, + { + "label": "parseRouteResolveJsonFromCalls()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiLogContracts.validation.test.ts", + "source_location": "L75", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostailogcontracts_validation_test_parserouteresolvejsonfromcalls", + "community": 109, + "community_name": "Internal Inference Transport", + "norm_label": "parserouteresolvejsonfromcalls()" + }, + { + "label": "hostAiP2pSessionSingleOwner.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiP2pSessionSingleOwner.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaip2psessionsingleowner_test", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "hostaip2psessionsingleowner.test.ts" + }, + { + "label": "{ getInstanceIdMock, getHSMock, getOrchModeMock }", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiP2pSessionSingleOwner.test.ts", + "source_location": "L6", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaip2psessionsingleowner_test_getinstanceidmock_gethsmock_getorchmodemock", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "{ getinstanceidmock, gethsmock, getorchmodemock }" + }, + { + "label": "baseHS()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiP2pSessionSingleOwner.test.ts", + "source_location": "L42", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaip2psessionsingleowner_test_basehs", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "basehs()" + }, + { + "label": "hostAiP2pSignalSchemaRejectLog.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiP2pSignalSchemaRejectLog.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaip2psignalschemarejectlog_test", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "hostaip2psignalschemarejectlog.test.ts" + }, + { + "label": "hostAiP2pStaleSessionNoReuse.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiP2pStaleSessionNoReuse.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaip2pstalesessionnoreuse_test", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "hostaip2pstalesessionnoreuse.test.ts" + }, + { + "label": "{ getInstanceIdMock, getHSMock, getOrchModeMock, startOfferMock }", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiP2pStaleSessionNoReuse.test.ts", + "source_location": "L6", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaip2pstalesessionnoreuse_test_getinstanceidmock_gethsmock_getorchmodemock_startoffermock", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "{ getinstanceidmock, gethsmock, getorchmodemock, startoffermock }" + }, + { + "label": "baseHS()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiP2pStaleSessionNoReuse.test.ts", + "source_location": "L57", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaip2pstalesessionnoreuse_test_basehs", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "basehs()" + }, + { + "label": "hostAiPairingStateStore.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiPairingStateStore.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaipairingstatestore_test", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "hostaipairingstatestore.test.ts" + }, + { + "label": "hostAiPeerEndpointAndAdvertisement.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiPeerEndpointAndAdvertisement.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaipeerendpointandadvertisement_test", + "community": 589, + "community_name": "Internal Inference #589", + "norm_label": "hostaipeerendpointandadvertisement.test.ts" + }, + { + "label": "hostAiPeerLivePresence.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiPeerLivePresence.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaipeerlivepresence_test", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "hostaipeerlivepresence.test.ts" + }, + { + "label": "getCurrentSessionMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiPeerLivePresence.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaipeerlivepresence_test_getcurrentsessionmock", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "getcurrentsessionmock" + }, + { + "label": "sessionForId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiPeerLivePresence.test.ts", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaipeerlivepresence_test_sessionforid", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "sessionforid()" + }, + { + "label": "internalRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiPeerLivePresence.test.ts", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaipeerlivepresence_test_internalrecord", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "internalrecord()" + }, + { + "label": "hostAiProviderAdvertisementBlockedReason.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiProviderAdvertisementBlockedReason.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiprovideradvertisementblockedreason_test", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "hostaiprovideradvertisementblockedreason.test.ts" + }, + { + "label": "hostAiProviderAdvertisementLog.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiProviderAdvertisementLog.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiprovideradvertisementlog_test", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "hostaiprovideradvertisementlog.test.ts" + }, + { + "label": "{ getHandshakeDbForInternalInference }", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiProviderAdvertisementLog.test.ts", + "source_location": "L17", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiprovideradvertisementlog_test_gethandshakedbforinternalinference", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "{ gethandshakedbforinternalinference }" + }, + { + "label": "hostAiRemoteInferencePolicyResolve.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRemoteInferencePolicyResolve.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostairemoteinferencepolicyresolve_test", + "community": 459, + "community_name": "Internal Inference #459", + "norm_label": "hostairemoteinferencepolicyresolve.test.ts" + }, + { + "label": "getPolicy", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRemoteInferencePolicyResolve.test.ts", + "source_location": "L10", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostairemoteinferencepolicyresolve_test_getpolicy", + "community": 459, + "community_name": "Internal Inference #459", + "norm_label": "getpolicy" + }, + { + "label": "ledgerPairing", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRemoteInferencePolicyResolve.test.ts", + "source_location": "L11", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostairemoteinferencepolicyresolve_test_ledgerpairing", + "community": 459, + "community_name": "Internal Inference #459", + "norm_label": "ledgerpairing" + }, + { + "label": "ledgerSummary", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRemoteInferencePolicyResolve.test.ts", + "source_location": "L12", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostairemoteinferencepolicyresolve_test_ledgersummary", + "community": 459, + "community_name": "Internal Inference #459", + "norm_label": "ledgersummary" + }, + { + "label": "hostAiRouteCandidate.predicates.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRouteCandidate.predicates.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutecandidate_predicates_test", + "community": 109, + "community_name": "Internal Inference Transport", + "norm_label": "hostairoutecandidate.predicates.test.ts" + }, + { + "label": "baseCandidate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRouteCandidate.predicates.test.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutecandidate_predicates_test_basecandidate", + "community": 109, + "community_name": "Internal Inference Transport", + "norm_label": "basecandidate()" + }, + { + "label": "hostAiRouteResolve.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRouteResolve.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostairouteresolve_test", + "community": 109, + "community_name": "Internal Inference Transport", + "norm_label": "hostairouteresolve.test.ts" + }, + { + "label": "baseRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRouteResolve.test.ts", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostairouteresolve_test_baserecord", + "community": 109, + "community_name": "Internal Inference Transport", + "norm_label": "baserecord()" + }, + { + "label": "baseInput()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRouteResolve.test.ts", + "source_location": "L52", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostairouteresolve_test_baseinput", + "community": 109, + "community_name": "Internal Inference Transport", + "norm_label": "baseinput()" + }, + { + "label": "hostAiRoutingCorrectness.regression.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRoutingCorrectness.regression.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutingcorrectness_regression_test", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "hostairoutingcorrectness.regression.test.ts" + }, + { + "label": "getAllWindows()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRoutingCorrectness.regression.test.ts", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutingcorrectness_regression_test_getallwindows", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "getallwindows()" + }, + { + "label": "getInstanceIdMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRoutingCorrectness.regression.test.ts", + "source_location": "L46", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutingcorrectness_regression_test_getinstanceidmock", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "getinstanceidmock" + }, + { + "label": "getHandshakeDbMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRoutingCorrectness.regression.test.ts", + "source_location": "L47", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutingcorrectness_regression_test_gethandshakedbmock", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "gethandshakedbmock" + }, + { + "label": "getHandshakeRecordMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRoutingCorrectness.regression.test.ts", + "source_location": "L48", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutingcorrectness_regression_test_gethandshakerecordmock", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "gethandshakerecordmock" + }, + { + "label": "getSessionStateMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRoutingCorrectness.regression.test.ts", + "source_location": "L98", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutingcorrectness_regression_test_getsessionstatemock", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "getsessionstatemock" + }, + { + "label": "isDcUpMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRoutingCorrectness.regression.test.ts", + "source_location": "L99", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutingcorrectness_regression_test_isdcupmock", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "isdcupmock" + }, + { + "label": "requestCapsMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRoutingCorrectness.regression.test.ts", + "source_location": "L100", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutingcorrectness_regression_test_requestcapsmock", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "requestcapsmock" + }, + { + "label": "party()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRoutingCorrectness.regression.test.ts", + "source_location": "L133", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutingcorrectness_regression_test_party", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "party()" + }, + { + "label": "sandboxToHostRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRoutingCorrectness.regression.test.ts", + "source_location": "L137", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutingcorrectness_regression_test_sandboxtohostrecord", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "sandboxtohostrecord()" + }, + { + "label": "RFC-1918", + "file_type": "concept", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRoutingCorrectness.regression.test.ts", + "source_location": "L94", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutingcorrectness_regression_test_ts_docref_rfc_1918", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "rfc-1918" + }, + { + "label": "hostAiSealedInferenceRelayResultHandler.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiSealedInferenceRelayResultHandler.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "hostaisealedinferencerelayresulthandler.test.ts" + }, + { + "label": "getInstanceId", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiSealedInferenceRelayResultHandler.test.ts", + "source_location": "L17", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test_getinstanceid", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "getinstanceid" + }, + { + "label": "getOrchestratorMode", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiSealedInferenceRelayResultHandler.test.ts", + "source_location": "L18", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test_getorchestratormode", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "getorchestratormode" + }, + { + "label": "isEffectiveSandboxNode", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiSealedInferenceRelayResultHandler.test.ts", + "source_location": "L19", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test_iseffectivesandboxnode", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "iseffectivesandboxnode" + }, + { + "label": "getHandshakeRecord", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiSealedInferenceRelayResultHandler.test.ts", + "source_location": "L20", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test_gethandshakerecord", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "gethandshakerecord" + }, + { + "label": "consoleLog", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiSealedInferenceRelayResultHandler.test.ts", + "source_location": "L21", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test_consolelog", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "consolelog" + }, + { + "label": "consoleWarn", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiSealedInferenceRelayResultHandler.test.ts", + "source_location": "L22", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test_consolewarn", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "consolewarn" + }, + { + "label": "makeX25519Pair()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiSealedInferenceRelayResultHandler.test.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test_makex25519pair", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "makex25519pair()" + }, + { + "label": "hostKeys", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiSealedInferenceRelayResultHandler.test.ts", + "source_location": "L47", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test_hostkeys", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "hostkeys" + }, + { + "label": "sandboxKeys", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiSealedInferenceRelayResultHandler.test.ts", + "source_location": "L48", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test_sandboxkeys", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "sandboxkeys" + }, + { + "label": "party()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiSealedInferenceRelayResultHandler.test.ts", + "source_location": "L51", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test_party", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "party()" + }, + { + "label": "sandboxRecord", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiSealedInferenceRelayResultHandler.test.ts", + "source_location": "L55", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test_sandboxrecord", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "sandboxrecord" + }, + { + "label": "hostRecord", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiSealedInferenceRelayResultHandler.test.ts", + "source_location": "L73", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test_hostrecord", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "hostrecord" + }, + { + "label": "sealHostInferenceResult()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiSealedInferenceRelayResultHandler.test.ts", + "source_location": "L91", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test_sealhostinferenceresult", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "sealhostinferenceresult()" + }, + { + "label": "hostAiStageLog.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiStageLog.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaistagelog_test", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "hostaistagelog.test.ts" + }, + { + "label": "hostAiStaleDatachannelOpenRecovery.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiStaleDatachannelOpenRecovery.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaistaledatachannelopenrecovery_test", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "hostaistaledatachannelopenrecovery.test.ts" + }, + { + "label": "{ getInstanceIdMock, getHSMock, getOrchModeMock, startOfferMock }", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiStaleDatachannelOpenRecovery.test.ts", + "source_location": "L6", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaistaledatachannelopenrecovery_test_getinstanceidmock_gethsmock_getorchmodemock_startoffermock", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "{ getinstanceidmock, gethsmock, getorchmodemock, startoffermock }" + }, + { + "label": "hostHS()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiStaleDatachannelOpenRecovery.test.ts", + "source_location": "L70", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaistaledatachannelopenrecovery_test_hosths", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "hosths()" + }, + { + "label": "seedOpenSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiStaleDatachannelOpenRecovery.test.ts", + "source_location": "L91", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaistaledatachannelopenrecovery_test_seedopensession", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "seedopensession()" + }, + { + "label": "hostAiTargetAvailabilityGating.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiTargetAvailabilityGating.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaitargetavailabilitygating_test", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "hostaitargetavailabilitygating.test.ts" + }, + { + "label": "getInstanceIdMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiTargetAvailabilityGating.test.ts", + "source_location": "L21", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaitargetavailabilitygating_test_getinstanceidmock", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "getinstanceidmock" + }, + { + "label": "party()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiTargetAvailabilityGating.test.ts", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaitargetavailabilitygating_test_party", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "party()" + }, + { + "label": "baseInternal()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiTargetAvailabilityGating.test.ts", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaitargetavailabilitygating_test_baseinternal", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "baseinternal()" + }, + { + "label": "hostAiTransportDecideLog.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiTransportDecideLog.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaitransportdecidelog_test", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "hostaitransportdecidelog.test.ts" + }, + { + "label": "hostAiTransportMatrix.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiTransportMatrix.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaitransportmatrix_test", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "hostaitransportmatrix.test.ts" + }, + { + "label": "base", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiTransportMatrix.test.ts", + "source_location": "L11", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaitransportmatrix_test_base", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "base" + }, + { + "label": "hostAiUnifiedRelayRegistration.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiUnifiedRelayRegistration.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiunifiedrelayregistration_test", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "hostaiunifiedrelayregistration.test.ts" + }, + { + "label": "hostAiUnifiedServiceRpcRelay.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiUnifiedServiceRpcRelay.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiunifiedservicerpcrelay_test", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "hostaiunifiedservicerpcrelay.test.ts" + }, + { + "label": "makeX25519Pair()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiUnifiedServiceRpcRelay.test.ts", + "source_location": "L41", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiunifiedservicerpcrelay_test_makex25519pair", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "makex25519pair()" + }, + { + "label": "makeRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiUnifiedServiceRpcRelay.test.ts", + "source_location": "L50", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiunifiedservicerpcrelay_test_makerecord", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "makerecord()" + }, + { + "label": "hostInferenceCore.policy.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostInferenceCore.policy.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostinferencecore_policy_test", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "hostinferencecore.policy.test.ts" + }, + { + "label": "orchestratorOms", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostInferenceCore.policy.test.ts", + "source_location": "L8", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostinferencecore_policy_test_orchestratoroms", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "orchestratoroms" + }, + { + "label": "samePrincipalParties()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostInferenceCore.policy.test.ts", + "source_location": "L71", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostinferencecore_policy_test_sameprincipalparties", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "sameprincipalparties()" + }, + { + "label": "baseRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostInferenceCore.policy.test.ts", + "source_location": "L78", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostinferencecore_policy_test_baserecord", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "baserecord()" + }, + { + "label": "hostInferenceExecute.modelAlias.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostInferenceExecute.modelAlias.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostinferenceexecute_modelalias_test", + "community": 120, + "community_name": "Internal Inference LLM Email", + "norm_label": "hostinferenceexecute.modelalias.test.ts" + }, + { + "label": "constructor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostInferenceExecute.modelAlias.test.ts", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostinferenceexecute_modelalias_test_constructor", + "community": 120, + "community_name": "Internal Inference LLM Email", + "norm_label": "constructor()" + }, + { + "label": "getEffectiveChatModelName", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostInferenceExecute.modelAlias.test.ts", + "source_location": "L18", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostinferenceexecute_modelalias_test_geteffectivechatmodelname", + "community": 120, + "community_name": "Internal Inference LLM Email", + "norm_label": "geteffectivechatmodelname" + }, + { + "label": "runInference", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostInferenceExecute.modelAlias.test.ts", + "source_location": "L25", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostinferenceexecute_modelalias_test_runinference", + "community": 120, + "community_name": "Internal Inference LLM Email", + "norm_label": "runinference" + }, + { + "label": "ctxWithModel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostInferenceExecute.modelAlias.test.ts", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostinferenceexecute_modelalias_test_ctxwithmodel", + "community": 120, + "community_name": "Internal Inference LLM Email", + "norm_label": "ctxwithmodel()" + }, + { + "label": "hostInferenceRequestRateLimit.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostInferenceRequestRateLimit.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_hostinferencerequestratelimit_test", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "hostinferencerequestratelimit.test.ts" + }, + { + "label": "inferenceHandshakeTrust.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/inferenceHandshakeTrust.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_inferencehandshaketrust_test", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "inferencehandshaketrust.test.ts" + }, + { + "label": "party()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/inferenceHandshakeTrust.test.ts", + "source_location": "L66", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_inferencehandshaketrust_test_party", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "party()" + }, + { + "label": "happyHandshakeRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/inferenceHandshakeTrust.test.ts", + "source_location": "L73", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_inferencehandshaketrust_test_happyhandshakerecord", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "happyhandshakerecord()" + }, + { + "label": "happyRoles", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/inferenceHandshakeTrust.test.ts", + "source_location": "L117", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_inferencehandshaketrust_test_happyroles", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "happyroles" + }, + { + "label": "wiringRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/inferenceHandshakeTrust.test.ts", + "source_location": "L379", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_inferencehandshaketrust_test_wiringrecord", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "wiringrecord()" + }, + { + "label": "internalInference.directHost.regression.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInference.directHost.regression.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "internalinference.directhost.regression.test.ts" + }, + { + "label": "__filename", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInference.directHost.regression.test.ts", + "source_location": "L30", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test_filename", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "__filename" + }, + { + "label": "__dirname", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInference.directHost.regression.test.ts", + "source_location": "L31", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test_dirname", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "__dirname" + }, + { + "label": "internalInfDir", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInference.directHost.regression.test.ts", + "source_location": "L32", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test_internalinfdir", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "internalinfdir" + }, + { + "label": "{ isHostModeMock, isSandboxModeMock, getInstanceIdMock }", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInference.directHost.regression.test.ts", + "source_location": "L34", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test_ishostmodemock_issandboxmodemock_getinstanceidmock", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "{ ishostmodemock, issandboxmodemock, getinstanceidmock }" + }, + { + "label": "party()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInference.directHost.regression.test.ts", + "source_location": "L66", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test_party", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "party()" + }, + { + "label": "defaultRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInference.directHost.regression.test.ts", + "source_location": "L75", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test_defaultrecord", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "defaultrecord()" + }, + { + "label": "defaultPolicy", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInference.directHost.regression.test.ts", + "source_location": "L117", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test_defaultpolicy", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "defaultpolicy" + }, + { + "label": "requestPayload()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInference.directHost.regression.test.ts", + "source_location": "L128", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test_requestpayload", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "requestpayload()" + }, + { + "label": "resultPayload()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInference.directHost.regression.test.ts", + "source_location": "L144", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test_resultpayload", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "resultpayload()" + }, + { + "label": "internalInferenceLogRedact.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceLogRedact.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferencelogredact_test", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "internalinferencelogredact.test.ts" + }, + { + "label": "internalInferenceService.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceService.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferenceservice_test", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "internalinferenceservice.test.ts" + }, + { + "label": "{ isHostModeMock, isSandboxModeMock, getInstanceIdMock }", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceService.test.ts", + "source_location": "L32", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferenceservice_test_ishostmodemock_issandboxmodemock_getinstanceidmock", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "{ ishostmodemock, issandboxmodemock, getinstanceidmock }" + }, + { + "label": "party()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceService.test.ts", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferenceservice_test_party", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "party()" + }, + { + "label": "defaultRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceService.test.ts", + "source_location": "L64", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferenceservice_test_defaultrecord", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "defaultrecord()" + }, + { + "label": "defaultPolicy", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceService.test.ts", + "source_location": "L180", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferenceservice_test_defaultpolicy", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "defaultpolicy" + }, + { + "label": "requestPayload()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceService.test.ts", + "source_location": "L191", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferenceservice_test_requestpayload", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "requestpayload()" + }, + { + "label": "internalInferenceTransport.decide.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceTransport.decide.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferencetransport_decide_test", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "internalinferencetransport.decide.test.ts" + }, + { + "label": "{ mockP2pDcUpMap }", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceTransport.decide.test.ts", + "source_location": "L5", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferencetransport_decide_test_mockp2pdcupmap", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "{ mockp2pdcupmap }" + }, + { + "label": "listHostCapabilities.hostAiRoute.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listHostCapabilities.hostAiRoute.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_listhostcapabilities_hostairoute_test", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "listhostcapabilities.hostairoute.test.ts" + }, + { + "label": "getInstanceIdMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listHostCapabilities.hostAiRoute.test.ts", + "source_location": "L24", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_listhostcapabilities_hostairoute_test_getinstanceidmock", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "getinstanceidmock" + }, + { + "label": "getHandshakeDbMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listHostCapabilities.hostAiRoute.test.ts", + "source_location": "L25", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_listhostcapabilities_hostairoute_test_gethandshakedbmock", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "gethandshakedbmock" + }, + { + "label": "getSessionStateMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listHostCapabilities.hostAiRoute.test.ts", + "source_location": "L26", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_listhostcapabilities_hostairoute_test_getsessionstatemock", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "getsessionstatemock" + }, + { + "label": "isDcUpMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listHostCapabilities.hostAiRoute.test.ts", + "source_location": "L27", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_listhostcapabilities_hostairoute_test_isdcupmock", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "isdcupmock" + }, + { + "label": "requestCapsMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listHostCapabilities.hostAiRoute.test.ts", + "source_location": "L28", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_listhostcapabilities_hostairoute_test_requestcapsmock", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "requestcapsmock" + }, + { + "label": "listInferenceIpc.modelSelectorLifecycle.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listInferenceIpc.modelSelectorLifecycle.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_listinferenceipc_modelselectorlifecycle_test", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "listinferenceipc.modelselectorlifecycle.test.ts" + }, + { + "label": "listSandboxHostInternalInferenceTargetsMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listInferenceIpc.modelSelectorLifecycle.test.ts", + "source_location": "L44", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_listinferenceipc_modelselectorlifecycle_test_listsandboxhostinternalinferencetargetsmock", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "listsandboxhostinternalinferencetargetsmock" + }, + { + "label": "listInferenceTargets.step8.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listInferenceTargets.step8.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_listinferencetargets_step8_test", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "listinferencetargets.step8.test.ts" + }, + { + "label": "party()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listInferenceTargets.step8.test.ts", + "source_location": "L197", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_listinferencetargets_step8_test_party", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "party()" + }, + { + "label": "seedVerifiedPeerDirectBeapForInternalRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listInferenceTargets.step8.test.ts", + "source_location": "L208", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_listinferencetargets_step8_test_seedverifiedpeerdirectbeapforinternalrow", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "seedverifiedpeerdirectbeapforinternalrow()" + }, + { + "label": "readyDcSessionMock()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listInferenceTargets.step8.test.ts", + "source_location": "L227", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_listinferencetargets_step8_test_readydcsessionmock", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "readydcsessionmock()" + }, + { + "label": "sessionForParty()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listInferenceTargets.step8.test.ts", + "source_location": "L242", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_listinferencetargets_step8_test_sessionforparty", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "sessionforparty()" + }, + { + "label": "activeInternalSandboxToHost()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listInferenceTargets.step8.test.ts", + "source_location": "L252", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_listinferencetargets_step8_test_activeinternalsandboxtohost", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "activeinternalsandboxtohost()" + }, + { + "label": "activeInternalLocalIsHost()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listInferenceTargets.step8.test.ts", + "source_location": "L1145", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_listinferencetargets_step8_test_activeinternallocalishost", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "activeinternallocalishost()" + }, + { + "label": "p2pDcCapabilities.roleGate.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pDcCapabilities.roleGate.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_p2pdccapabilities_rolegate_test", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "p2pdccapabilities.rolegate.test.ts" + }, + { + "label": "getInstanceIdMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pDcCapabilities.roleGate.test.ts", + "source_location": "L13", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_p2pdccapabilities_rolegate_test_getinstanceidmock", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "getinstanceidmock" + }, + { + "label": "getHandshakeRecordMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pDcCapabilities.roleGate.test.ts", + "source_location": "L19", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_p2pdccapabilities_rolegate_test_gethandshakerecordmock", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "gethandshakerecordmock" + }, + { + "label": "getHandshakeDbMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pDcCapabilities.roleGate.test.ts", + "source_location": "L24", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_p2pdccapabilities_rolegate_test_gethandshakedbmock", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "gethandshakedbmock" + }, + { + "label": "party()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pDcCapabilities.roleGate.test.ts", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_p2pdccapabilities_rolegate_test_party", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "party()" + }, + { + "label": "recordSandboxInitiator()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pDcCapabilities.roleGate.test.ts", + "source_location": "L37", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_p2pdccapabilities_rolegate_test_recordsandboxinitiator", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "recordsandboxinitiator()" + }, + { + "label": "p2pEndpointRepair.hostAi.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pEndpointRepair.hostAi.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_p2pendpointrepair_hostai_test", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "p2pendpointrepair.hostai.test.ts" + }, + { + "label": "updateHandshakeRecord", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pEndpointRepair.hostAi.test.ts", + "source_location": "L45", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_p2pendpointrepair_hostai_test_updatehandshakerecord", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "updatehandshakerecord" + }, + { + "label": "listRows", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pEndpointRepair.hostAi.test.ts", + "source_location": "L46", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_p2pendpointrepair_hostai_test_listrows", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "listrows" + }, + { + "label": "offerAfterAdMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pEndpointRepair.hostAi.test.ts", + "source_location": "L64", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_p2pendpointrepair_hostai_test_offerafteradmock", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "offerafteradmock" + }, + { + "label": "relayRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pEndpointRepair.hostAi.test.ts", + "source_location": "L69", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_p2pendpointrepair_hostai_test_relayrow", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "relayrow()" + }, + { + "label": "p2pInferenceFlags.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pInferenceFlags.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_p2pinferenceflags_test", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "p2pinferenceflags.test.ts" + }, + { + "label": "p2pInferenceFlagsTestSetup.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pInferenceFlagsTestSetup.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_p2pinferenceflagstestsetup", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "p2pinferenceflagstestsetup.ts" + }, + { + "label": "stubP2pInferenceEnvLegacyHttpOnlyForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pInferenceFlagsTestSetup.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_p2pinferenceflagstestsetup_stubp2pinferenceenvlegacyhttponlyfortests", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "stubp2pinferenceenvlegacyhttponlyfortests()" + }, + { + "label": "p2pSessionWait.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pSessionWait.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_p2psessionwait_test", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "p2psessionwait.test.ts" + }, + { + "label": "{ mockGetSessionState, mockSubscribe }", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pSessionWait.test.ts", + "source_location": "L6", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_p2psessionwait_test_mockgetsessionstate_mocksubscribe", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "{ mockgetsessionstate, mocksubscribe }" + }, + { + "label": "p2pSignalRelayCircuit.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pSignalRelayCircuit.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_p2psignalrelaycircuit_test", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "p2psignalrelaycircuit.test.ts" + }, + { + "label": "p2pSignalRelayPost.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pSignalRelayPost.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_p2psignalrelaypost_test", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "p2psignalrelaypost.test.ts" + }, + { + "label": "failMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pSignalRelayPost.test.ts", + "source_location": "L16", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_p2psignalrelaypost_test_failmock", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "failmock" + }, + { + "label": "getSessionStateMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pSignalRelayPost.test.ts", + "source_location": "L17", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_p2psignalrelaypost_test_getsessionstatemock", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "getsessionstatemock" + }, + { + "label": "phase11.electronMain.transportAndHostPolicy.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.electronMain.transportAndHostPolicy.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_electronmain_transportandhostpolicy_test", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "phase11.electronmain.transportandhostpolicy.test.ts" + }, + { + "label": "{ isHostModeMock, isSandboxModeMock, getInstanceIdMock, getHSMock }", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.electronMain.transportAndHostPolicy.test.ts", + "source_location": "L18", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_electronmain_transportandhostpolicy_test_ishostmodemock_issandboxmodemock_getinstanceidmock_gethsmock", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "{ ishostmodemock, issandboxmodemock, getinstanceidmock, gethsmock }" + }, + { + "label": "defaultRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.electronMain.transportAndHostPolicy.test.ts", + "source_location": "L151", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_electronmain_transportandhostpolicy_test_defaultrecord", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "defaultrecord()" + }, + { + "label": "phase11.p2pDcWire.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.p2pDcWire.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_p2pdcwire_test", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "phase11.p2pdcwire.test.ts" + }, + { + "label": "webrtcSendData", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.p2pDcWire.test.ts", + "source_location": "L7", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_p2pdcwire_test_webrtcsenddata", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "webrtcsenddata" + }, + { + "label": "phase11.p2pSessionManager.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.p2pSessionManager.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_p2psessionmanager_test", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "phase11.p2psessionmanager.test.ts" + }, + { + "label": "{ getHSMock, getDbMock }", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.p2pSessionManager.test.ts", + "source_location": "L10", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_p2psessionmanager_test_gethsmock_getdbmock", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "{ gethsmock, getdbmock }" + }, + { + "label": "baseHostRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.p2pSessionManager.test.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_p2psessionmanager_test_basehostrecord", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "basehostrecord()" + }, + { + "label": "phase3SealedBoundary.regression.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase3SealedBoundary.regression.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_phase3sealedboundary_regression_test", + "community": 543, + "community_name": "Internal Inference #543", + "norm_label": "phase3sealedboundary.regression.test.ts" + }, + { + "label": "sendSealedMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase3SealedBoundary.regression.test.ts", + "source_location": "L6", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_phase3sealedboundary_regression_test_sendsealedmock", + "community": 543, + "community_name": "Internal Inference #543", + "norm_label": "sendsealedmock" + }, + { + "label": "policy.internalInference.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/policy.internalInference.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_policy_internalinference_test", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "policy.internalinference.test.ts" + }, + { + "label": "baseRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/policy.internalInference.test.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_policy_internalinference_test_baserecord", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "baserecord()" + }, + { + "label": "policy.internalInferencePolicyGetRole.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/policy.internalInferencePolicyGetRole.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_policy_internalinferencepolicygetrole_test", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "policy.internalinferencepolicygetrole.test.ts" + }, + { + "label": "oms", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/policy.internalInferencePolicyGetRole.test.ts", + "source_location": "L8", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_policy_internalinferencepolicygetrole_test_oms", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "oms" + }, + { + "label": "base()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/policy.internalInferencePolicyGetRole.test.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_policy_internalinferencepolicygetrole_test_base", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "base()" + }, + { + "label": "postHostAiDirectBeapAd403Recovery.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/postHostAiDirectBeapAd403Recovery.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_posthostaidirectbeapad403recovery_test", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "posthostaidirectbeapad403recovery.test.ts" + }, + { + "label": "relayP2pSignalHandler.republishRequest.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/relayP2pSignalHandler.republishRequest.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_relayp2psignalhandler_republishrequest_test", + "community": 248, + "community_name": "Internal Inference", + "norm_label": "relayp2psignalhandler.republishrequest.test.ts" + }, + { + "label": "publishMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/relayP2pSignalHandler.republishRequest.test.ts", + "source_location": "L7", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_relayp2psignalhandler_republishrequest_test_publishmock", + "community": 248, + "community_name": "Internal Inference", + "norm_label": "publishmock" + }, + { + "label": "ensureP2pMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/relayP2pSignalHandler.republishRequest.test.ts", + "source_location": "L8", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_relayp2psignalhandler_republishrequest_test_ensurep2pmock", + "community": 248, + "community_name": "Internal Inference", + "norm_label": "ensurep2pmock" + }, + { + "label": "handshakeRows", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/relayP2pSignalHandler.republishRequest.test.ts", + "source_location": "L35", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_relayp2psignalhandler_republishrequest_test_handshakerows", + "community": 248, + "community_name": "Internal Inference", + "norm_label": "handshakerows" + }, + { + "label": "hostSideRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/relayP2pSignalHandler.republishRequest.test.ts", + "source_location": "L51", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_relayp2psignalhandler_republishrequest_test_hostsiderow", + "community": 248, + "community_name": "Internal Inference", + "norm_label": "hostsiderow()" + }, + { + "label": "relayP2pSignalHandler.stale.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/relayP2pSignalHandler.stale.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_relayp2psignalhandler_stale_test", + "community": 248, + "community_name": "Internal Inference", + "norm_label": "relayp2psignalhandler.stale.test.ts" + }, + { + "label": "maybeHandle", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/relayP2pSignalHandler.stale.test.ts", + "source_location": "L4", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_relayp2psignalhandler_stale_test_maybehandle", + "community": 248, + "community_name": "Internal Inference", + "norm_label": "maybehandle" + }, + { + "label": "resolveSandboxInferenceTarget.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/resolveSandboxInferenceTarget.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_resolvesandboxinferencetarget_test", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "resolvesandboxinferencetarget.test.ts" + }, + { + "label": "sandboxHostAiDirectBeapAdRequest.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandboxHostAiDirectBeapAdRequest.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_sandboxhostaidirectbeapadrequest_test", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "sandboxhostaidirectbeapadrequest.test.ts" + }, + { + "label": "listRows", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandboxHostAiDirectBeapAdRequest.test.ts", + "source_location": "L26", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_sandboxhostaidirectbeapadrequest_test_listrows", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "listrows" + }, + { + "label": "postReq", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandboxHostAiDirectBeapAdRequest.test.ts", + "source_location": "L55", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_sandboxhostaidirectbeapadrequest_test_postreq", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "postreq" + }, + { + "label": "sandboxHostRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandboxHostAiDirectBeapAdRequest.test.ts", + "source_location": "L92", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_sandboxhostaidirectbeapadrequest_test_sandboxhostrow", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "sandboxhostrow()" + }, + { + "label": "sandboxHostAiOllamaDirectSyntheticProbe.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandboxHostAiOllamaDirectSyntheticProbe.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_sandboxhostaiollamadirectsyntheticprobe_test", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "sandboxhostaiollamadirectsyntheticprobe.test.ts" + }, + { + "label": "tagsAvailable()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandboxHostAiOllamaDirectSyntheticProbe.test.ts", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_sandboxhostaiollamadirectsyntheticprobe_test_tagsavailable", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "tagsavailable()" + }, + { + "label": "sandboxHostRosterSelectionMigration.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandboxHostRosterSelectionMigration.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_sandboxhostrosterselectionmigration_test", + "community": 120, + "community_name": "Internal Inference LLM Email", + "norm_label": "sandboxhostrosterselectionmigration.test.ts" + }, + { + "label": "readStored", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandboxHostRosterSelectionMigration.test.ts", + "source_location": "L8", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_sandboxhostrosterselectionmigration_test_readstored", + "community": 120, + "community_name": "Internal Inference LLM Email", + "norm_label": "readstored" + }, + { + "label": "writeStored", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandboxHostRosterSelectionMigration.test.ts", + "source_location": "L9", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_sandboxhostrosterselectionmigration_test_writestored", + "community": 120, + "community_name": "Internal Inference LLM Email", + "norm_label": "writestored" + }, + { + "label": "roster()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandboxHostRosterSelectionMigration.test.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_sandboxhostrosterselectionmigration_test_roster", + "community": 120, + "community_name": "Internal Inference LLM Email", + "norm_label": "roster()" + }, + { + "label": "sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing.regression.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing.regression.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing_regression_test", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing.regression.test.ts" + }, + { + "label": "party()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing.regression.test.ts", + "source_location": "L228", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing_regression_test_party", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "party()" + }, + { + "label": "handshakeBeapPoisonedSandboxLedgerNoPeerAd()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing.regression.test.ts", + "source_location": "L232", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing_regression_test_handshakebeappoisonedsandboxledgernopeerad", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "handshakebeappoisonedsandboxledgernopeerad()" + }, + { + "label": "serviceRpcGatesAndLifecycle.rig.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/serviceRpcGatesAndLifecycle.rig.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_servicerpcgatesandlifecycle_rig_test", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "servicerpcgatesandlifecycle.rig.test.ts" + }, + { + "label": "record()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/serviceRpcGatesAndLifecycle.rig.test.ts", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_servicerpcgatesandlifecycle_rig_test_record", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "record()" + }, + { + "label": "transportDecide.unifiedRelay.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/transportDecide.unifiedRelay.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_transportdecide_unifiedrelay_test", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "transportdecide.unifiedrelay.test.ts" + }, + { + "label": "unifiedServiceRpcRelayFlags.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/unifiedServiceRpcRelayFlags.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_tests_unifiedservicerpcrelayflags_test", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "unifiedservicerpcrelayflags.test.ts" + }, + { + "label": "beapContentAiRoute.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/beapContentAiRoute.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_beapcontentairoute", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "beapcontentairoute.ts" + }, + { + "label": "BeapContentAiTaskKind", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/beapContentAiRoute.ts", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_beapcontentairoute_beapcontentaitaskkind", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "beapcontentaitaskkind" + }, + { + "label": "BeapContentAiTask", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/beapContentAiRoute.ts", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_beapcontentairoute_beapcontentaitask", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "beapcontentaitask" + }, + { + "label": "routeTransportLabel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/beapContentAiRoute.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_beapcontentairoute_routetransportlabel", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "routetransportlabel()" + }, + { + "label": "logBeapContentAiRoute()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/beapContentAiRoute.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_beapcontentairoute_logbeapcontentairoute", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "logbeapcontentairoute()" + }, + { + "label": "SandboxContentHostExecutionPlan", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/beapContentAiRoute.ts", + "source_location": "L34", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_beapcontentairoute_sandboxcontenthostexecutionplan", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "sandboxcontenthostexecutionplan" + }, + { + "label": "planSandboxHostChatExecution()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/beapContentAiRoute.ts", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_beapcontentairoute_plansandboxhostchatexecution", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "plansandboxhostchatexecution()" + }, + { + "label": "chatWithContextRagOllamaGeneration.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "chatwithcontextragollamageneration.ts" + }, + { + "label": "createOllamaProviderForSandboxEmbedding()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_createollamaproviderforsandboxembedding", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "createollamaproviderforsandboxembedding()" + }, + { + "label": "InferenceRoutingUnavailableError", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L42", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_inferenceroutingunavailableerror", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "inferenceroutingunavailableerror" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_inferenceroutingunavailableerror_constructor", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": ".constructor()" + }, + { + "label": "logSandboxInferenceSend()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_logsandboxinferencesend", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "logsandboxinferencesend()" + }, + { + "label": "resolveCrossDeviceAfterReconnectingRetry()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L68", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_resolvecrossdeviceafterreconnectingretry", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "resolvecrossdeviceafterreconnectingretry()" + }, + { + "label": "handshakeHintFromParams()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L79", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_handshakehintfromparams", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "handshakehintfromparams()" + }, + { + "label": "shouldApplySandboxOllamaInferenceRouting()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L91", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_shouldapplysandboxollamainferencerouting", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "shouldapplysandboxollamainferencerouting()" + }, + { + "label": "GenerateChatOpts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L99", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_generatechatopts", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "generatechatopts" + }, + { + "label": "OllamaLikeProvider", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L107", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_ollamalikeprovider", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "ollamalikeprovider" + }, + { + "label": "runOllamaGenerateChatWithSandboxRouting()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L116", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_runollamageneratechatwithsandboxrouting", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "runollamageneratechatwithsandboxrouting()" + }, + { + "label": "isInferenceRoutingUnavailableError()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L192", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_isinferenceroutingunavailableerror", + "community": 183, + "community_name": "Email LLM Internal Inference", + "norm_label": "isinferenceroutingunavailableerror()" + }, + { + "label": "SandboxEmbeddingRoutingParams", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L198", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_sandboxembeddingroutingparams", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "sandboxembeddingroutingparams" + }, + { + "label": "runOllamaGenerateEmbeddingWithSandboxRouting()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L207", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_runollamagenerateembeddingwithsandboxrouting", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "runollamagenerateembeddingwithsandboxrouting()" + }, + { + "label": "wrapOllamaEmbeddingServiceForSandbox()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L253", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_wrapollamaembeddingserviceforsandbox", + "community": 397, + "community_name": "Internal Inference Handshake Vault", + "norm_label": "wrapollamaembeddingserviceforsandbox()" + }, + { + "label": "dbAccess.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/dbAccess.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_dbaccess", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "dbaccess.ts" + }, + { + "label": "getHandshakeDbForInternalInference()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/dbAccess.ts", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "gethandshakedbforinternalinference()" + }, + { + "label": "getCanonHandshakeDbForHostAiPolicy()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/dbAccess.ts", + "source_location": "L42", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_dbaccess_getcanonhandshakedbforhostaipolicy", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "getcanonhandshakedbforhostaipolicy()" + }, + { + "label": "directP2pReachability.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_directp2preachability", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "directp2preachability.ts" + }, + { + "label": "DIRECT_P2P_REACHABILITY_PATH", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L22", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_direct_p2p_reachability_path", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "direct_p2p_reachability_path" + }, + { + "label": "DIRECT_P2P_REACHABILITY_TIMEOUT_MS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L24", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_direct_p2p_reachability_timeout_ms", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "direct_p2p_reachability_timeout_ms" + }, + { + "label": "DirectP2pReachabilityStatus", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L26", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_directp2preachabilitystatus", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "directp2preachabilitystatus" + }, + { + "label": "reachabilityUrlFromP2pIngest()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_reachabilityurlfromp2pingest", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "reachabilityurlfromp2pingest()" + }, + { + "label": "errChainToString()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L48", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_errchaintostring", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "errchaintostring()" + }, + { + "label": "classifyDirectP2pReachabilityError()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L66", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_classifydirectp2preachabilityerror", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "classifydirectp2preachabilityerror()" + }, + { + "label": "DirectP2pReachabilityResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L78", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_directp2preachabilityresult", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "directp2preachabilityresult" + }, + { + "label": "fetchReachability()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L84", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_fetchreachability", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "fetchreachability()" + }, + { + "label": "resolveContext()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L110", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_resolvecontext", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "resolvecontext()" + }, + { + "label": "checkDirectP2pReachabilityFromHandshake()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L139", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_checkdirectp2preachabilityfromhandshake", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "checkdirectp2preachabilityfromhandshake()" + }, + { + "label": "DirectReachabilityListRow", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L190", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_directreachabilitylistrow", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "directreachabilitylistrow" + }, + { + "label": "formatPairingCode()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L201", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_formatpairingcode", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "formatpairingcode()" + }, + { + "label": "peerSandboxNameFromRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L209", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_peersandboxnamefromrecord", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "peersandboxnamefromrecord()" + }, + { + "label": "endpointLabel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L222", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_endpointlabel", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "endpointlabel()" + }, + { + "label": "listHostToSandboxDirectReachabilityRows()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L235", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_listhosttosandboxdirectreachabilityrows", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "listhosttosandboxdirectreachabilityrows()" + }, + { + "label": "errors.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/errors.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_errors", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "errors.ts" + }, + { + "label": "InternalInferenceErrorCode", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/errors.ts", + "source_location": "L3", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "internalinferenceerrorcode" + }, + { + "label": "InternalInferenceErrorCodeType", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/errors.ts", + "source_location": "L176", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcodetype", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "internalinferenceerrorcodetype" + }, + { + "label": "hostAiBeapAdOllamaModelCount.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiBeapAdOllamaModelCount.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaibeapadollamamodelcount", + "community": 120, + "community_name": "Internal Inference LLM Email", + "norm_label": "hostaibeapadollamamodelcount.ts" + }, + { + "label": "HostAiBeapAdOllamaModelWireEntry", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiBeapAdOllamaModelCount.ts", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaibeapadollamamodelcount_hostaibeapadollamamodelwireentry", + "community": 120, + "community_name": "Internal Inference LLM Email", + "norm_label": "hostaibeapadollamamodelwireentry" + }, + { + "label": "HostAiBeapAdLocalOllamaModelRosterResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiBeapAdOllamaModelCount.ts", + "source_location": "L16", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaibeapadollamamodelcount_hostaibeapadlocalollamamodelrosterresult", + "community": 120, + "community_name": "Internal Inference LLM Email", + "norm_label": "hostaibeapadlocalollamamodelrosterresult" + }, + { + "label": "hostAiBeapAdLocalOllamaModelRoster()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiBeapAdOllamaModelCount.ts", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaibeapadollamamodelcount_hostaibeapadlocalollamamodelroster", + "community": 120, + "community_name": "Internal Inference LLM Email", + "norm_label": "hostaibeapadlocalollamamodelroster()" + }, + { + "label": "hostAiBeapAdLocalOllamaModelCount()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiBeapAdOllamaModelCount.ts", + "source_location": "L96", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaibeapadollamamodelcount_hostaibeapadlocalollamamodelcount", + "community": 120, + "community_name": "Internal Inference LLM Email", + "norm_label": "hostaibeapadlocalollamamodelcount()" + }, + { + "label": "hostAiCapsRoleGateLog.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiCapsRoleGateLog.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaicapsrolegatelog", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "hostaicapsrolegatelog.ts" + }, + { + "label": "logHostAiCapsRoleGate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiCapsRoleGateLog.ts", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaicapsrolegatelog_loghostaicapsrolegate", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "loghostaicapsrolegate()" + }, + { + "label": "hostAiDirectBeapAdPublish.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "hostaidirectbeapadpublish.ts" + }, + { + "label": "adSeqByHandshake", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L36", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish_adseqbyhandshake", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "adseqbyhandshake" + }, + { + "label": "nextRepublishBackoffMs()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L48", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish_nextrepublishbackoffms", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "nextrepublishbackoffms()" + }, + { + "label": "nextAdSeq()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L52", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish_nextadseq", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "nextadseq()" + }, + { + "label": "clearHostAiBeapRepublishTimer()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L59", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish_clearhostaibeaprepublishtimer", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "clearhostaibeaprepublishtimer()" + }, + { + "label": "scheduleHostAiBeapAdRepublishRetry()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L66", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish_schedulehostaibeapadrepublishretry", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "schedulehostaibeapadrepublishretry()" + }, + { + "label": "resetHostAiDirectBeapAdPublishStateForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L88", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish_resethostaidirectbeapadpublishstatefortests", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "resethostaidirectbeapadpublishstatefortests()" + }, + { + "label": "publishHostAiDirectBeapAdvertisementsForEligibleHost()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L99", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish_publishhostaidirectbeapadvertisementsforeligiblehost", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "publishhostaidirectbeapadvertisementsforeligiblehost()" + }, + { + "label": "hostAiDirectBeapAdWire.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdWire.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadwire", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "hostaidirectbeapadwire.ts" + }, + { + "label": "HOST_AI_DIRECT_BEAP_AD_SEALED_RELAY_ENDPOINT_PLACEHOLDER", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdWire.ts", + "source_location": "L8", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadwire_host_ai_direct_beap_ad_sealed_relay_endpoint_placeholder", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "host_ai_direct_beap_ad_sealed_relay_endpoint_placeholder" + }, + { + "label": "wireEndpointUrlForHostAiDirectBeapAd()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdWire.ts", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadwire_wireendpointurlforhostaidirectbeapad", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "wireendpointurlforhostaidirectbeapad()" + }, + { + "label": "hostAiDirectBeapAdEndpointUrlIsInertPlaceholder()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdWire.ts", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadwire_hostaidirectbeapadendpointurlisinertplaceholder", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "hostaidirectbeapadendpointurlisinertplaceholder()" + }, + { + "label": "hostAiEffectiveRole.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiEffectiveRole.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "hostaieffectiverole.ts" + }, + { + "label": "HostAiEffectiveRoleSource", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiEffectiveRole.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole_hostaieffectiverolesource", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "hostaieffectiverolesource" + }, + { + "label": "HostAiEffectiveRoleResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiEffectiveRole.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole_hostaieffectiveroleresult", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "hostaieffectiveroleresult" + }, + { + "label": "getEffectiveHostAiRoleForHandshake()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiEffectiveRole.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole_geteffectivehostairoleforhandshake", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "geteffectivehostairoleforhandshake()" + }, + { + "label": "getEffectiveFromActiveInternalRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiEffectiveRole.ts", + "source_location": "L49", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole_geteffectivefromactiveinternalrow", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "geteffectivefromactiveinternalrow()" + }, + { + "label": "getHostAiLedgerRoleSummaryFromDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiEffectiveRole.ts", + "source_location": "L84", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole_gethostailedgerrolesummaryfromdb", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "gethostailedgerrolesummaryfromdb()" + }, + { + "label": "hostAiEndpointCandidate.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiEndpointCandidate.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiendpointcandidate", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "hostaiendpointcandidate.ts" + }, + { + "label": "HostAiEndpointSource", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiEndpointCandidate.ts", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiendpointcandidate_hostaiendpointsource", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "hostaiendpointsource" + }, + { + "label": "HostAiEndpointTrustLevel", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiEndpointCandidate.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiendpointcandidate_hostaiendpointtrustlevel", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "hostaiendpointtrustlevel" + }, + { + "label": "HostAiEndpointCandidate", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiEndpointCandidate.ts", + "source_location": "L24", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiendpointcandidate_hostaiendpointcandidate", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "hostaiendpointcandidate" + }, + { + "label": "HostAiEndpointResolutionCategory", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiEndpointCandidate.ts", + "source_location": "L41", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiendpointcandidate_hostaiendpointresolutioncategory", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "hostaiendpointresolutioncategory" + }, + { + "label": "HostAiSelectedEndpointProvenance", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiEndpointCandidate.ts", + "source_location": "L57", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiendpointcandidate_hostaiselectedendpointprovenance", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "hostaiselectedendpointprovenance" + }, + { + "label": "hostAiEndpointSelectLog.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiEndpointSelectLog.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiendpointselectlog", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "hostaiendpointselectlog.ts" + }, + { + "label": "logHostAiEndpointSelect()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiEndpointSelectLog.ts", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiendpointselectlog_loghostaiendpointselect", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "loghostaiendpointselect()" + }, + { + "label": "hostAiHostOrchestratorHealth.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiHostOrchestratorHealth.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaihostorchestratorhealth", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "hostaihostorchestratorhealth.ts" + }, + { + "label": "resolveDirectBeapIngestForHealth()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiHostOrchestratorHealth.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaihostorchestratorhealth_resolvedirectbeapingestforhealth", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "resolvedirectbeapingestforhealth()" + }, + { + "label": "logHostAiHealthStartupLine()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiHostOrchestratorHealth.ts", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaihostorchestratorhealth_loghostaihealthstartupline", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "loghostaihealthstartupline()" + }, + { + "label": "logHostAiOrchestratorHealthLine()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiHostOrchestratorHealth.ts", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaihostorchestratorhealth_loghostaiorchestratorhealthline", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "loghostaiorchestratorhealthline()" + }, + { + "label": "hostAiInferLog.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiInferLog.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiinferlog", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "hostaiinferlog.ts" + }, + { + "label": "logHostAiInferRequestSend()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiInferLog.ts", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiinferlog_loghostaiinferrequestsend", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "loghostaiinferrequestsend()" + }, + { + "label": "logHostAiInferRequestReceived()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiInferLog.ts", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiinferlog_loghostaiinferrequestreceived", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "loghostaiinferrequestreceived()" + }, + { + "label": "logHostAiInferComplete()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiInferLog.ts", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiinferlog_loghostaiinfercomplete", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "loghostaiinfercomplete()" + }, + { + "label": "logHostAiInferError()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiInferLog.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiinferlog_loghostaiinfererror", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "loghostaiinfererror()" + }, + { + "label": "logHostAiInferResponseReceived()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiInferLog.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiinferlog_loghostaiinferresponsereceived", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "loghostaiinferresponsereceived()" + }, + { + "label": "hostAiInternalPairingLedger.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiInternalPairingLedger.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "hostaiinternalpairingledger.ts" + }, + { + "label": "isHostSandboxPairEligible()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiInternalPairingLedger.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_ishostsandboxpaireligible", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "ishostsandboxpaireligible()" + }, + { + "label": "rowProvesLocalHostPeerSandboxForHostAi()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiInternalPairingLedger.ts", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_rowproveslocalhostpeersandboxforhostai", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "rowproveslocalhostpeersandboxforhostai()" + }, + { + "label": "rowProvesLocalSandboxToHostForHostAi()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiInternalPairingLedger.ts", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_rowproveslocalsandboxtohostforhostai", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "rowproveslocalsandboxtohostforhostai()" + }, + { + "label": "listActiveInternalHandshakesForHostAi()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiInternalPairingLedger.ts", + "source_location": "L60", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_listactiveinternalhandshakesforhostai", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "listactiveinternalhandshakesforhostai()" + }, + { + "label": "hostHasActiveInternalLedgerHostPeerSandboxFromDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiInternalPairingLedger.ts", + "source_location": "L70", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_hosthasactiveinternalledgerhostpeersandboxfromdb", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "hosthasactiveinternalledgerhostpeersandboxfromdb()" + }, + { + "label": "ledgerProvesLocalSandboxToHostFromDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiInternalPairingLedger.ts", + "source_location": "L88", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_ledgerproveslocalsandboxtohostfromdb", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "ledgerproveslocalsandboxtohostfromdb()" + }, + { + "label": "hostAiOllamaDirect.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirect.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirect", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "hostaiollamadirect.ts" + }, + { + "label": "HOST_AI_ROUTE_KIND_OLLAMA_DIRECT", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirect.ts", + "source_location": "L10", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirect_host_ai_route_kind_ollama_direct", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "host_ai_route_kind_ollama_direct" + }, + { + "label": "HostAiRouteKindOllamaDirect", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirect.ts", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirect_hostairoutekindollamadirect", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "hostairoutekindollamadirect" + }, + { + "label": "HOST_AI_OLLAMA_PROVIDER", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirect.ts", + "source_location": "L14", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirect_host_ai_ollama_provider", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "host_ai_ollama_provider" + }, + { + "label": "HostAiOllamaDirectWireFields", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirect.ts", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirect_hostaiollamadirectwirefields", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "hostaiollamadirectwirefields" + }, + { + "label": "wireIncludesOllamaDirectPreviewFields()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirect.ts", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirect_wireincludesollamadirectpreviewfields", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "wireincludesollamadirectpreviewfields()" + }, + { + "label": "logHostAiOllamaDirectCapabilitiesWireHint()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirect.ts", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirect_loghostaiollamadirectcapabilitieswirehint", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "loghostaiollamadirectcapabilitieswirehint()" + }, + { + "label": "hostAiOllamaDirectAdvertisement.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectAdvertisement.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectadvertisement", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "hostaiollamadirectadvertisement.ts" + }, + { + "label": "HostOllamaDirectAdvertisement", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectAdvertisement.ts", + "source_location": "L16", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectadvertisement_hostollamadirectadvertisement", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "hostollamadirectadvertisement" + }, + { + "label": "HostOllamaDirectAdvertisementOpts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectAdvertisement.ts", + "source_location": "L30", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectadvertisement_hostollamadirectadvertisementopts", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "hostollamadirectadvertisementopts" + }, + { + "label": "isoNow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectAdvertisement.ts", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectadvertisement_isonow", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "isonow()" + }, + { + "label": "logHostAiOllamaDirectAdvertisement()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectAdvertisement.ts", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectadvertisement_loghostaiollamadirectadvertisement", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "loghostaiollamadirectadvertisement()" + }, + { + "label": "buildHostOllamaDirectAdvertisement()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectAdvertisement.ts", + "source_location": "L63", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectadvertisement_buildhostollamadirectadvertisement", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "buildhostollamadirectadvertisement()" + }, + { + "label": "hostAiOllamaDirectLanIp.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "hostaiollamadirectlanip.ts" + }, + { + "label": "parseIpv4Octets()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_parseipv4octets", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "parseipv4octets()" + }, + { + "label": "isRfc1918PrivateIpv4()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_isrfc1918privateipv4", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "isrfc1918privateipv4()" + }, + { + "label": "isExcludedIpv4SpecialRanges()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_isexcludedipv4specialranges", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "isexcludedipv4specialranges()" + }, + { + "label": "ipv4SameSlash24()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L37", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_ipv4sameslash24", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "ipv4sameslash24()" + }, + { + "label": "privateLanPreferenceScore()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_privatelanpreferencescore", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "privatelanpreferencescore()" + }, + { + "label": "comparePrivateLanCandidates()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_compareprivatelancandidates", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "compareprivatelancandidates()" + }, + { + "label": "sortPrivateLanCandidates()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L65", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_sortprivatelancandidates", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "sortprivatelancandidates()" + }, + { + "label": "interfaceNameExcluded()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L69", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_interfacenameexcluded", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "interfacenameexcluded()" + }, + { + "label": "normalizeOptionalIpv4()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L80", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_normalizeoptionalipv4", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "normalizeoptionalipv4()" + }, + { + "label": "getHostLanIpCandidates()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L90", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_gethostlanipcandidates", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "gethostlanipcandidates()" + }, + { + "label": "computeLanIpSelection()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L108", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_computelanipselection", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "computelanipselection()" + }, + { + "label": "selectHostLanIpForPeer()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L142", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_selecthostlanipforpeer", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "selecthostlanipforpeer()" + }, + { + "label": "hostOllamaListenPort()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L147", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_hostollamalistenport", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "hostollamalistenport()" + }, + { + "label": "buildHostOllamaDirectBaseUrl()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L158", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_buildhostollamadirectbaseurl", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "buildhostollamadirectbaseurl()" + }, + { + "label": "extractPeerLanIpv4HintFromHttpUrl()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L166", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_extractpeerlanipv4hintfromhttpurl", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "extractpeerlanipv4hintfromhttpurl()" + }, + { + "label": "logHostAiOllamaDirectIpSelect()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L180", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_loghostaiollamadirectipselect", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "loghostaiollamadirectipselect()" + }, + { + "label": "recordHostAiOllamaDirectLanProbeLine()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L192", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_recordhostaiollamadirectlanprobeline", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "recordhostaiollamadirectlanprobeline()" + }, + { + "label": "RFC-1918", + "file_type": "concept", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L87", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_ts_docref_rfc_1918", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "rfc-1918" + }, + { + "label": "hostAiOllamaDirectProactiveRefresh.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectProactiveRefresh.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectproactiverefresh", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "hostaiollamadirectproactiverefresh.ts" + }, + { + "label": "lastOllamaDirectFingerprintByHandshake", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectProactiveRefresh.ts", + "source_location": "L23", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectproactiverefresh_lastollamadirectfingerprintbyhandshake", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "lastollamadirectfingerprintbyhandshake" + }, + { + "label": "proactiveIntervalMs()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectProactiveRefresh.ts", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectproactiverefresh_proactiveintervalms", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "proactiveintervalms()" + }, + { + "label": "startHostOllamaDirectProactiveRefreshTimer()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectProactiveRefresh.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectproactiverefresh_starthostollamadirectproactiverefreshtimer", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "starthostollamadirectproactiverefreshtimer()" + }, + { + "label": "runHostOllamaDirectProactiveRefreshTick()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectProactiveRefresh.ts", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectproactiverefresh_runhostollamadirectproactiverefreshtick", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "runhostollamadirectproactiverefreshtick()" + }, + { + "label": "hostAiOllamaNativeDiscovery.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaNativeDiscovery.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "hostaiollamanativediscovery.ts" + }, + { + "label": "HOST_AI_DEFAULT_LOCAL_OLLAMA_BASE", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaNativeDiscovery.ts", + "source_location": "L15", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_host_ai_default_local_ollama_base", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "host_ai_default_local_ollama_base" + }, + { + "label": "HostAiOllamaTagsDiscoveryLog", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaNativeDiscovery.ts", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_hostaiollamatagsdiscoverylog", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "hostaiollamatagsdiscoverylog" + }, + { + "label": "normalizeHostLoopbackOllamaBaseUrl()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaNativeDiscovery.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_normalizehostloopbackollamabaseurl", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "normalizehostloopbackollamabaseurl()" + }, + { + "label": "parseOpenAiModels()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaNativeDiscovery.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_parseopenaimodels", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "parseopenaimodels()" + }, + { + "label": "hostAiModelsFromOllamaTagsModels()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaNativeDiscovery.ts", + "source_location": "L62", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_hostaimodelsfromollamatagsmodels", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "hostaimodelsfromollamatagsmodels()" + }, + { + "label": "parseLlamacppModelsBody()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaNativeDiscovery.ts", + "source_location": "L84", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_parsellamacppmodelsbody", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "parsellamacppmodelsbody()" + }, + { + "label": "parseOllamaTagsBody", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaNativeDiscovery.ts", + "source_location": "L93", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_parseollamatagsbody", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "parseollamatagsbody" + }, + { + "label": "fetchLlamacppModelsJson()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaNativeDiscovery.ts", + "source_location": "L95", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_fetchllamacppmodelsjson", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "fetchllamacppmodelsjson()" + }, + { + "label": "fetchOllamaApiTagsJson", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaNativeDiscovery.ts", + "source_location": "L128", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_fetchollamaapitagsjson", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "fetchollamaapitagsjson" + }, + { + "label": "logHostAiOllamaDiscovery()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaNativeDiscovery.ts", + "source_location": "L130", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_loghostaiollamadiscovery", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "loghostaiollamadiscovery()" + }, + { + "label": "logSbxHostAiModelSource()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaNativeDiscovery.ts", + "source_location": "L134", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_logsbxhostaimodelsource", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "logsbxhostaimodelsource()" + }, + { + "label": "peerLanOllamaBaseUrlFromDirectBeapIngestUrl()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaNativeDiscovery.ts", + "source_location": "L147", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_peerlanollamabaseurlfromdirectbeapingesturl", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "peerlanollamabaseurlfromdirectbeapingesturl()" + }, + { + "label": "mergeSandboxCapabilitiesWireWithPeerLanOllamaTags()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaNativeDiscovery.ts", + "source_location": "L167", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_mergesandboxcapabilitieswirewithpeerlanollamatags", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "mergesandboxcapabilitieswirewithpeerlanollamatags()" + }, + { + "label": "hostAiOrchestratorBuildSync.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOrchestratorBuildSync.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiorchestratorbuildsync", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "hostaiorchestratorbuildsync.ts" + }, + { + "label": "runHostAiInvalidationIfOrchestratorBuildChanged()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOrchestratorBuildSync.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiorchestratorbuildsync_runhostaiinvalidationiforchestratorbuildchanged", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "runhostaiinvalidationiforchestratorbuildchanged()" + }, + { + "label": "hostAiP2pSignalSchemaRejectLog.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiP2pSignalSchemaRejectLog.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaip2psignalschemarejectlog", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "hostaip2psignalschemarejectlog.ts" + }, + { + "label": "HostAiP2pSignalSchemaRejectKind", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiP2pSignalSchemaRejectLog.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaip2psignalschemarejectlog_hostaip2psignalschemarejectkind", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "hostaip2psignalschemarejectkind" + }, + { + "label": "logHostAiSignalSchemaRejected()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiP2pSignalSchemaRejectLog.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaip2psignalschemarejectlog_loghostaisignalschemarejected", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "loghostaisignalschemarejected()" + }, + { + "label": "hostAiPairingStateStore.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "hostaipairingstatestore.ts" + }, + { + "label": "HOST_AI_RECIPROCITY_TTL_MS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L14", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_host_ai_reciprocity_ttl_ms", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "host_ai_reciprocity_ttl_ms" + }, + { + "label": "TerminalKind", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L16", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_terminalkind", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "terminalkind" + }, + { + "label": "EntryV1", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_entryv1", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "entryv1" + }, + { + "label": "DiskV1", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L27", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_diskv1", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "diskv1" + }, + { + "label": "storePath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_storepath", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "storepath()" + }, + { + "label": "ensureDisk()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_ensuredisk", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "ensuredisk()" + }, + { + "label": "persist()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_persist", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "persist()" + }, + { + "label": "_resetHostAiPairingStateStoreForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L63", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_resethostaipairingstatestorefortests", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "_resethostaipairingstatestorefortests()" + }, + { + "label": "entryFor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L67", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_entryfor", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "entryfor()" + }, + { + "label": "reconcileHostAiPairingEntry()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L83", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_reconcilehostaipairingentry", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "reconcilehostaipairingentry()" + }, + { + "label": "recordHostAiReciprocalCapabilitiesSuccess()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L96", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_recordhostaireciprocalcapabilitiessuccess", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "recordhostaireciprocalcapabilitiessuccess()" + }, + { + "label": "recordHostAiLedgerAsymmetric()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L111", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_recordhostailedgerasymmetric", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "recordhostailedgerasymmetric()" + }, + { + "label": "recordHostAiPairingStale()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L126", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_recordhostaipairingstale", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "recordhostaipairingstale()" + }, + { + "label": "refreshHostAiPairingStaleByTtl()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L144", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_refreshhostaipairingstalebyttl", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "refreshhostaipairingstalebyttl()" + }, + { + "label": "clearHostAiPairingStateForHandshake()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L162", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_clearhostaipairingstateforhandshake", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "clearhostaipairingstateforhandshake()" + }, + { + "label": "hostAiPairingListBlock()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L172", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_hostaipairinglistblock", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "hostaipairinglistblock()" + }, + { + "label": "shouldSkipAllHostAiProbesForHandshake()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L197", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_shouldskipallhostaiprobesforhandshake", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "shouldskipallhostaiprobesforhandshake()" + }, + { + "label": "isHostAiLedgerAsymmetricTerminal()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L201", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_ishostailedgerasymmetricterminal", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "ishostailedgerasymmetricterminal()" + }, + { + "label": "hostAiPeerLivePresence.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "hostaipeerlivepresence.ts" + }, + { + "label": "HOST_PEER_LIVE_PRESENCE_TTL_MS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L17", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_host_peer_live_presence_ttl_ms", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "host_peer_live_presence_ttl_ms" + }, + { + "label": "HostPeerLivePresenceSource", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L19", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_hostpeerlivepresencesource", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "hostpeerlivepresencesource" + }, + { + "label": "HostPeerLivePresenceAttestation", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L21", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_hostpeerlivepresenceattestation", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "hostpeerlivepresenceattestation" + }, + { + "label": "attestationByHandshake", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L28", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_attestationbyhandshake", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "attestationbyhandshake" + }, + { + "label": "resetHostPeerLivePresenceForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_resethostpeerlivepresencefortests", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "resethostpeerlivepresencefortests()" + }, + { + "label": "hostPartyIdentityFromRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_hostpartyidentityfromrecord", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "hostpartyidentityfromrecord()" + }, + { + "label": "partyIdentityFromSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L41", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_partyidentityfromsession", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "partyidentityfromsession()" + }, + { + "label": "partyIdentityMatchesExpected()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L51", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_partyidentitymatchesexpected", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "partyidentitymatchesexpected()" + }, + { + "label": "publisherIdentityFromWireFields()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L67", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_publisheridentityfromwirefields", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "publisheridentityfromwirefields()" + }, + { + "label": "storeAttestation()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L93", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_storeattestation", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "storeattestation()" + }, + { + "label": "tryRecordHostPeerLivePresenceFromPolicyResponse()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L131", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_tryrecordhostpeerlivepresencefrompolicyresponse", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "tryrecordhostpeerlivepresencefrompolicyresponse()" + }, + { + "label": "tryRecordHostPeerLivePresenceFromCapabilitiesWire()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L146", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_tryrecordhostpeerlivepresencefromcapabilitieswire", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "tryrecordhostpeerlivepresencefromcapabilitieswire()" + }, + { + "label": "tryRecordHostPeerLivePresenceFromRelayAd()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L161", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_tryrecordhostpeerlivepresencefromrelayad", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "tryrecordhostpeerlivepresencefromrelayad()" + }, + { + "label": "hasHostPeerIdentityBoundLivePresence()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L175", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_hashostpeeridentityboundlivepresence", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "hashostpeeridentityboundlivepresence()" + }, + { + "label": "assertHostMachineSessionMatchesHandshakeHostParty()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L187", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_asserthostmachinesessionmatcheshandshakehostparty", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "asserthostmachinesessionmatcheshandshakehostparty()" + }, + { + "label": "hostPublisherIdentityWireFields()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L211", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_hostpublisheridentitywirefields", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "hostpublisheridentitywirefields()" + }, + { + "label": "nudgeHostPeerLivePresenceRedial()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L232", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_nudgehostpeerlivepresenceredial", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "nudgehostpeerlivepresenceredial()" + }, + { + "label": "assertSandboxHostPeerLivePresenceForHandshake()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L271", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_assertsandboxhostpeerlivepresenceforhandshake", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "assertsandboxhostpeerlivepresenceforhandshake()" + }, + { + "label": "hostAiProbeRouteLog.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProbeRouteLog.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiproberoutelog", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "hostaiproberoutelog.ts" + }, + { + "label": "HostAiProbeRouteLogPayload", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProbeRouteLog.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiproberoutelog_hostaiproberoutelogpayload", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "hostaiproberoutelogpayload" + }, + { + "label": "logHostAiProbeRoute()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProbeRouteLog.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiproberoutelog_loghostaiproberoute", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "loghostaiproberoute()" + }, + { + "label": "hostAiProviderAdvertisementBlockedReason.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementBlockedReason.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementblockedreason", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "hostaiprovideradvertisementblockedreason.ts" + }, + { + "label": "HostAiLedgerEffectiveRoleForAd", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementBlockedReason.ts", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementblockedreason_hostailedgereffectiveroleforad", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "hostailedgereffectiveroleforad" + }, + { + "label": "deriveProviderAdvertisementBlockedReason()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementBlockedReason.ts", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementblockedreason_deriveprovideradvertisementblockedreason", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "deriveprovideradvertisementblockedreason()" + }, + { + "label": "hostAiProviderAdvertisementLog.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementLog.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementlog", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "hostaiprovideradvertisementlog.ts" + }, + { + "label": "HostAiProviderAdvertisementPayload", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementLog.ts", + "source_location": "L27", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementlog_hostaiprovideradvertisementpayload", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "hostaiprovideradvertisementpayload" + }, + { + "label": "buildHostAiProviderAdvertisementPayload()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementLog.ts", + "source_location": "L82", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementlog_buildhostaiprovideradvertisementpayload", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "buildhostaiprovideradvertisementpayload()" + }, + { + "label": "hostAiRelayCapability.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRelayCapability.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostairelaycapability", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "hostairelaycapability.ts" + }, + { + "label": "HOST_AI_P2P_SIGNALING_SCHEMA_SUPPORTED", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRelayCapability.ts", + "source_location": "L10", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostairelaycapability_host_ai_p2p_signaling_schema_supported", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "host_ai_p2p_signaling_schema_supported" + }, + { + "label": "cache", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRelayCapability.ts", + "source_location": "L13", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostairelaycapability_cache", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "cache" + }, + { + "label": "p2pStackEnabled()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRelayCapability.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostairelaycapability_p2pstackenabled", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "p2pstackenabled()" + }, + { + "label": "resetHostAiRelayCapabilityCacheForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRelayCapability.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostairelaycapability_resethostairelaycapabilitycachefortests", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "resethostairelaycapabilitycachefortests()" + }, + { + "label": "setHostAiRelayCapabilityFetchForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRelayCapability.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostairelaycapability_sethostairelaycapabilityfetchfortests", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "sethostairelaycapabilityfetchfortests()" + }, + { + "label": "doFetch()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRelayCapability.ts", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostairelaycapability_dofetch", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "dofetch()" + }, + { + "label": "fetchHostAiP2pSignalingFromCoordinationHealth()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRelayCapability.ts", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostairelaycapability_fetchhostaip2psignalingfromcoordinationhealth", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "fetchhostaip2psignalingfromcoordinationhealth()" + }, + { + "label": "resolveRelayHostAiP2pSignalingForTransportDecider()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRelayCapability.ts", + "source_location": "L76", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostairelaycapability_resolverelayhostaip2psignalingfortransportdecider", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "resolverelayhostaip2psignalingfortransportdecider()" + }, + { + "label": "hostAiRemoteInferencePolicyResolve.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRemoteInferencePolicyResolve.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "hostairemoteinferencepolicyresolve.ts" + }, + { + "label": "HostAiRemotePolicyResolution", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRemoteInferencePolicyResolve.ts", + "source_location": "L21", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve_hostairemotepolicyresolution", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "hostairemotepolicyresolution" + }, + { + "label": "internalHostPairingDiagnosticFlags()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRemoteInferencePolicyResolve.ts", + "source_location": "L46", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve_internalhostpairingdiagnosticflags", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "internalhostpairingdiagnosticflags()" + }, + { + "label": "resolveHostAiRemoteInferencePolicy()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRemoteInferencePolicyResolve.ts", + "source_location": "L73", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve_resolvehostairemoteinferencepolicy", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "resolvehostairemoteinferencepolicy()" + }, + { + "label": "resolveHostAiRemoteInferencePolicyBestEffort()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRemoteInferencePolicyResolve.ts", + "source_location": "L143", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve_resolvehostairemoteinferencepolicybesteffort", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "resolvehostairemoteinferencepolicybesteffort()" + }, + { + "label": "hostAiBeapAdPublishShouldRetryAfterPolicyDenial()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRemoteInferencePolicyResolve.ts", + "source_location": "L188", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve_hostaibeapadpublishshouldretryafterpolicydenial", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "hostaibeapadpublishshouldretryafterpolicydenial()" + }, + { + "label": "logHostAiRemotePolicyDecision()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRemoteInferencePolicyResolve.ts", + "source_location": "L194", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve_loghostairemotepolicydecision", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "loghostairemotepolicydecision()" + }, + { + "label": "NOTE: \u00a72 (no cross-identity Host AI) is NOT enforced here. This resolver is\u2026", + "file_type": "rationale", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRemoteInferencePolicyResolve.ts", + "source_location": "L126", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve_rationale_126", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "note: \u00a72 (no cross-identity host ai) is not enforced here. this resolver is..." + }, + { + "label": "hostAiRoleGateLog.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRoleGateLog.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostairolegatelog", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "hostairolegatelog.ts" + }, + { + "label": "HostAiRoleGateLogInput", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRoleGateLog.ts", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostairolegatelog_hostairolegateloginput", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "hostairolegateloginput" + }, + { + "label": "logHostAiRoleGate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRoleGateLog.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostairolegatelog_loghostairolegate", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "loghostairolegate()" + }, + { + "label": "hostAiRouteSelectLog.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRouteSelectLog.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostairouteselectlog", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "hostairouteselectlog.ts" + }, + { + "label": "HostAiRouteSelectKind", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRouteSelectLog.ts", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostairouteselectlog_hostairouteselectkind", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "hostairouteselectkind" + }, + { + "label": "logHostAiRouteSelect()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRouteSelectLog.ts", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostairouteselectlog_loghostairouteselect", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "loghostairouteselect()" + }, + { + "label": "computeBeapMissingForHostAiRouteSelect()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRouteSelectLog.ts", + "source_location": "L41", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostairouteselectlog_computebeapmissingforhostairouteselect", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "computebeapmissingforhostairouteselect()" + }, + { + "label": "hostAiSealedInferenceRelayHandler.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "hostaisealedinferencerelayhandler.ts" + }, + { + "label": "innerTypeFromPlaintext()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L41", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler_innertypefromplaintext", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "innertypefromplaintext()" + }, + { + "label": "tryHandleHostAiSealedInferenceRequestRelayCapsule()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler_tryhandlehostaisealedinferencerequestrelaycapsule", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "tryhandlehostaisealedinferencerequestrelaycapsule()" + }, + { + "label": "sealAndSendInferenceOutcome()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L206", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler_sealandsendinferenceoutcome", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "sealandsendinferenceoutcome()" + }, + { + "label": "hostAiSealedInferenceRelayResultHandler.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayResultHandler.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayresulthandler", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "hostaisealedinferencerelayresulthandler.ts" + }, + { + "label": "innerTypeFromPlaintext()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayResultHandler.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayresulthandler_innertypefromplaintext", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "innertypefromplaintext()" + }, + { + "label": "tryHandleHostAiSealedInferenceResultRelayCapsule()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayResultHandler.ts", + "source_location": "L41", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayresulthandler_tryhandlehostaisealedinferenceresultrelaycapsule", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "tryhandlehostaisealedinferenceresultrelaycapsule()" + }, + { + "label": "hostAiSealedInferenceRelaySend.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelaySend.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaysend", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "hostaisealedinferencerelaysend.ts" + }, + { + "label": "SealedInferenceSendResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelaySend.ts", + "source_location": "L40", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaysend_sealedinferencesendresult", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "sealedinferencesendresult" + }, + { + "label": "sendSealedHostAiInferenceRequest()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelaySend.ts", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaysend_sendsealedhostaiinferencerequest", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "sendsealedhostaiinferencerequest()" + }, + { + "label": "hostAiSealedInferenceRelayWire.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayWire.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "hostaisealedinferencerelaywire.ts" + }, + { + "label": "HOST_AI_INFERENCE_REQUEST_INNER_TYPE", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayWire.ts", + "source_location": "L7", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire_host_ai_inference_request_inner_type", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "host_ai_inference_request_inner_type" + }, + { + "label": "HOST_AI_INFERENCE_RESULT_INNER_TYPE", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayWire.ts", + "source_location": "L8", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire_host_ai_inference_result_inner_type", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "host_ai_inference_result_inner_type" + }, + { + "label": "HOST_AI_INFERENCE_ERROR_INNER_TYPE", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayWire.ts", + "source_location": "L9", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire_host_ai_inference_error_inner_type", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "host_ai_inference_error_inner_type" + }, + { + "label": "HOST_AI_INFERENCE_RELAY_SCHEMA_VERSION", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayWire.ts", + "source_location": "L10", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire_host_ai_inference_relay_schema_version", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "host_ai_inference_relay_schema_version" + }, + { + "label": "HostAiInferenceRequestRelayWire", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayWire.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire_hostaiinferencerequestrelaywire", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "hostaiinferencerequestrelaywire" + }, + { + "label": "HostAiInferenceResultRelayWire", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayWire.ts", + "source_location": "L26", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire_hostaiinferenceresultrelaywire", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "hostaiinferenceresultrelaywire" + }, + { + "label": "HostAiInferenceErrorRelayWire", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayWire.ts", + "source_location": "L38", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire_hostaiinferenceerrorrelaywire", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "hostaiinferenceerrorrelaywire" + }, + { + "label": "HostAiInferenceRelayWire", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayWire.ts", + "source_location": "L51", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire_hostaiinferencerelaywire", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "hostaiinferencerelaywire" + }, + { + "label": "isHostAiInferenceRequestRelayInnerType()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayWire.ts", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire_ishostaiinferencerequestrelayinnertype", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "ishostaiinferencerequestrelayinnertype()" + }, + { + "label": "isHostAiInferenceResultOrErrorRelayInnerType()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayWire.ts", + "source_location": "L60", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire_ishostaiinferenceresultorerrorrelayinnertype", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "ishostaiinferenceresultorerrorrelayinnertype()" + }, + { + "label": "parseHostAiInferenceRequestFromPlaintext()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayWire.ts", + "source_location": "L64", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire_parsehostaiinferencerequestfromplaintext", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "parsehostaiinferencerequestfromplaintext()" + }, + { + "label": "parseHostAiInferenceResultOrErrorFromPlaintext()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayWire.ts", + "source_location": "L107", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire_parsehostaiinferenceresultorerrorfromplaintext", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "parsehostaiinferenceresultorerrorfromplaintext()" + }, + { + "label": "assertInferencePayloadWithinCapsuleLimit()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayWire.ts", + "source_location": "L158", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire_assertinferencepayloadwithincapsulelimit", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "assertinferencepayloadwithincapsulelimit()" + }, + { + "label": "hostAiStageLog.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiStageLog.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaistagelog", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "hostaistagelog.ts" + }, + { + "label": "HostAiStageLogName", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiStageLog.ts", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaistagelog_hostaistagelogname", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "hostaistagelogname" + }, + { + "label": "getHostAiBuildStamp()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiStageLog.ts", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaistagelog_gethostaibuildstamp", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "gethostaibuildstamp()" + }, + { + "label": "hostAiP2pFlagsForLog()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiStageLog.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaistagelog_hostaip2pflagsforlog", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "hostaip2pflagsforlog()" + }, + { + "label": "HostAiStageLogArgs", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiStageLog.ts", + "source_location": "L57", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaistagelog_hostaistagelogargs", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "hostaistagelogargs" + }, + { + "label": "logHostAiStage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiStageLog.ts", + "source_location": "L78", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaistagelog_loghostaistage", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "loghostaistage()" + }, + { + "label": "newHostAiCorrelationChain()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiStageLog.ts", + "source_location": "L107", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaistagelog_newhostaicorrelationchain", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "newhostaicorrelationchain()" + }, + { + "label": "hostAiTargetStatus.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiTargetStatus.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaitargetstatus", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "hostaitargetstatus.ts" + }, + { + "label": "HostAiTargetStatus", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiTargetStatus.ts", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaitargetstatus_hostaitargetstatus", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "hostaitargetstatus" + }, + { + "label": "hostAiTransportDecideLog.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiTransportDecideLog.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaitransportdecidelog", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "hostaitransportdecidelog.ts" + }, + { + "label": "fingerprintByHandshakeSecond", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiTransportDecideLog.ts", + "source_location": "L6", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaitransportdecidelog_fingerprintbyhandshakesecond", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "fingerprintbyhandshakesecond" + }, + { + "label": "pruneTransportDecideDedupe()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiTransportDecideLog.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaitransportdecidelog_prunetransportdecidededupe", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "prunetransportdecidededupe()" + }, + { + "label": "clearHostAiTransportDecideDedupeCache()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiTransportDecideLog.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaitransportdecidelog_clearhostaitransportdecidededupecache", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "clearhostaitransportdecidededupecache()" + }, + { + "label": "resetHostAiTransportDecideDedupeForTests", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiTransportDecideLog.ts", + "source_location": "L26", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaitransportdecidelog_resethostaitransportdecidededupefortests", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "resethostaitransportdecidededupefortests" + }, + { + "label": "logHostAiTransportDecideListLine()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiTransportDecideLog.ts", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaitransportdecidelog_loghostaitransportdecidelistline", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "loghostaitransportdecidelistline()" + }, + { + "label": "hostAiTransportMatrix.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiTransportMatrix.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaitransportmatrix", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "hostaitransportmatrix.ts" + }, + { + "label": "isHostAiListTransportProven()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiTransportMatrix.ts", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaitransportmatrix_ishostailisttransportproven", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "ishostailisttransportproven()" + }, + { + "label": "hostAiUnifiedRelayRegistration.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedRelayRegistration.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedrelayregistration", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "hostaiunifiedrelayregistration.ts" + }, + { + "label": "HostAiUnifiedRelaySendResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedRelayRegistration.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedrelayregistration_hostaiunifiedrelaysendresult", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "hostaiunifiedrelaysendresult" + }, + { + "label": "HostAiUnifiedRelaySendFn", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedRelayRegistration.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedrelayregistration_hostaiunifiedrelaysendfn", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "hostaiunifiedrelaysendfn" + }, + { + "label": "registerHostAiUnifiedRelaySend()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedRelayRegistration.ts", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedrelayregistration_registerhostaiunifiedrelaysend", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "registerhostaiunifiedrelaysend()" + }, + { + "label": "getRegisteredHostAiUnifiedRelaySend()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedRelayRegistration.ts", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedrelayregistration_getregisteredhostaiunifiedrelaysend", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "getregisteredhostaiunifiedrelaysend()" + }, + { + "label": "resetHostAiUnifiedRelayRegistrationForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedRelayRegistration.ts", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedrelayregistration_resethostaiunifiedrelayregistrationfortests", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "resethostaiunifiedrelayregistrationfortests()" + }, + { + "label": "hostAiUnifiedServiceRpcRelay.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelay.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelay", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "hostaiunifiedservicerpcrelay.ts" + }, + { + "label": "HostAiUnifiedRelaySendResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelay.ts", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelay_hostaiunifiedrelaysendresult", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "hostaiunifiedrelaysendresult" + }, + { + "label": "HostAiUnifiedRelaySendDeps", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelay.ts", + "source_location": "L26", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelay_hostaiunifiedrelaysenddeps", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "hostaiunifiedrelaysenddeps" + }, + { + "label": "_setHostAiUnifiedRelaySendDepsForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelay.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelay_sethostaiunifiedrelaysenddepsfortests", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "_sethostaiunifiedrelaysenddepsfortests()" + }, + { + "label": "isHostAiUnifiedServiceRpcRelayActive()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelay.ts", + "source_location": "L42", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelay_ishostaiunifiedservicerpcrelayactive", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "ishostaiunifiedservicerpcrelayactive()" + }, + { + "label": "trySendHostAiP2pSignalViaUnifiedRelay()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelay.ts", + "source_location": "L50", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelay_trysendhostaip2psignalviaunifiedrelay", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "trysendhostaip2psignalviaunifiedrelay()" + }, + { + "label": "hostAiUnifiedServiceRpcRelayHandler.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayHandler.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "hostaiunifiedservicerpcrelayhandler.ts" + }, + { + "label": "HOST_PERMITTED_HOST_AI_UNIFIED_RELAY_INNER_TYPES", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayHandler.ts", + "source_location": "L24", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler_host_permitted_host_ai_unified_relay_inner_types", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "host_permitted_host_ai_unified_relay_inner_types" + }, + { + "label": "assertHostMayReceiveHostAiUnifiedRelayInnerType()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayHandler.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler_asserthostmayreceivehostaiunifiedrelayinnertype", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "asserthostmayreceivehostaiunifiedrelayinnertype()" + }, + { + "label": "assertLocalMayReceiveHostAiUnifiedRelayInner()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayHandler.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler_assertlocalmayreceivehostaiunifiedrelayinner", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "assertlocalmayreceivehostaiunifiedrelayinner()" + }, + { + "label": "parseInnerTypeFromPlaintext()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayHandler.ts", + "source_location": "L59", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler_parseinnertypefromplaintext", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "parseinnertypefromplaintext()" + }, + { + "label": "HostAiUnifiedRelayHandlerDeps", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayHandler.ts", + "source_location": "L68", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler_hostaiunifiedrelayhandlerdeps", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "hostaiunifiedrelayhandlerdeps" + }, + { + "label": "_setHostAiUnifiedRelayHandlerDepsForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayHandler.ts", + "source_location": "L79", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler_sethostaiunifiedrelayhandlerdepsfortests", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "_sethostaiunifiedrelayhandlerdepsfortests()" + }, + { + "label": "tryHandleHostAiUnifiedServiceRpcRelayCapsule()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayHandler.ts", + "source_location": "L87", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler_tryhandlehostaiunifiedservicerpcrelaycapsule", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "tryhandlehostaiunifiedservicerpcrelaycapsule()" + }, + { + "label": "hostAiUnifiedServiceRpcRelayWire.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayWire.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelaywire", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "hostaiunifiedservicerpcrelaywire.ts" + }, + { + "label": "HOST_AI_P2P_SIGNAL_UNIFIED_RELAY_INNER_TYPE", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayWire.ts", + "source_location": "L6", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelaywire_host_ai_p2p_signal_unified_relay_inner_type", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "host_ai_p2p_signal_unified_relay_inner_type" + }, + { + "label": "HOST_AI_P2P_SIGNAL_UNIFIED_RELAY_SCHEMA_VERSION", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayWire.ts", + "source_location": "L7", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelaywire_host_ai_p2p_signal_unified_relay_schema_version", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "host_ai_p2p_signal_unified_relay_schema_version" + }, + { + "label": "HostAiP2pSignalUnifiedRelayWire", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayWire.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelaywire_hostaip2psignalunifiedrelaywire", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "hostaip2psignalunifiedrelaywire" + }, + { + "label": "buildHostAiP2pSignalUnifiedRelayWire()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayWire.ts", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelaywire_buildhostaip2psignalunifiedrelaywire", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "buildhostaip2psignalunifiedrelaywire()" + }, + { + "label": "parseHostAiP2pSignalUnifiedRelayWire()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayWire.ts", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelaywire_parsehostaip2psignalunifiedrelaywire", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "parsehostaip2psignalunifiedrelaywire()" + }, + { + "label": "parseP2pSignalPayloadFromUnifiedRelayBody()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayWire.ts", + "source_location": "L68", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelaywire_parsep2psignalpayloadfromunifiedrelaybody", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "parsep2psignalpayloadfromunifiedrelaybody()" + }, + { + "label": "hostAiWebrtcOfferStart.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiWebrtcOfferStart.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "hostaiwebrtcofferstart.ts" + }, + { + "label": "hostAiWebrtcOfferStartTestHooks", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiWebrtcOfferStart.ts", + "source_location": "L18", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart_hostaiwebrtcofferstarttesthooks", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "hostaiwebrtcofferstarttesthooks" + }, + { + "label": "WebrtcOfferStartResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiWebrtcOfferStart.ts", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart_webrtcofferstartresult", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "webrtcofferstartresult" + }, + { + "label": "HostAiWebrtcStartError", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiWebrtcOfferStart.ts", + "source_location": "L25", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart_hostaiwebrtcstarterror", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "hostaiwebrtcstarterror" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiWebrtcOfferStart.ts", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart_hostaiwebrtcstarterror_constructor", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": ".constructor()" + }, + { + "label": "waitForCoordinationWebsocketForRelayIfNeeded()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiWebrtcOfferStart.ts", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart_waitforcoordinationwebsocketforrelayifneeded", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "waitforcoordinationwebsocketforrelayifneeded()" + }, + { + "label": "startWebrtcOfferForHostAiSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiWebrtcOfferStart.ts", + "source_location": "L81", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart_startwebrtcofferforhostaisession", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "startwebrtcofferforhostaisession()" + }, + { + "label": "startWebrtcAnswererForHostAiSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiWebrtcOfferStart.ts", + "source_location": "L130", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart_startwebrtcanswererforhostaisession", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "startwebrtcanswererforhostaisession()" + }, + { + "label": "startHostAiP2pWebrtcSessionOffer", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiWebrtcOfferStart.ts", + "source_location": "L176", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart_starthostaip2pwebrtcsessionoffer", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "starthostaip2pwebrtcsessionoffer" + }, + { + "label": "hostInferenceCapabilities.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "hostinferencecapabilities.ts" + }, + { + "label": "digits6FromPairing()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities_digits6frompairing", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "digits6frompairing()" + }, + { + "label": "hashModelNameForLog()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities_hashmodelnameforlog", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "hashmodelnameforlog()" + }, + { + "label": "HostInferenceCapabilitiesBuildMeta", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L50", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities_hostinferencecapabilitiesbuildmeta", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "hostinferencecapabilitiesbuildmeta" + }, + { + "label": "enforcePolicyCapabilityInvariant()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L60", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities_enforcepolicycapabilityinvariant", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "enforcepolicycapabilityinvariant()" + }, + { + "label": "applyHostOllamaDirectWireFields()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L79", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities_applyhostollamadirectwirefields", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "applyhostollamadirectwirefields()" + }, + { + "label": "logHostAiCapsModelSource()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L92", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities_loghostaicapsmodelsource", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "loghostaicapsmodelsource()" + }, + { + "label": "buildInternalInferenceCapabilitiesResult()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L113", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities_buildinternalinferencecapabilitiesresult", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "buildinternalinferencecapabilitiesresult()" + }, + { + "label": "hostInferenceConcurrency.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceConcurrency.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostinferenceconcurrency", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "hostinferenceconcurrency.ts" + }, + { + "label": "tryAcquireHostInferenceSlot()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceConcurrency.ts", + "source_location": "L6", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostinferenceconcurrency_tryacquirehostinferenceslot", + "community": 120, + "community_name": "Internal Inference LLM Email", + "norm_label": "tryacquirehostinferenceslot()" + }, + { + "label": "getActiveInternalInferenceCount()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceConcurrency.ts", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostinferenceconcurrency_getactiveinternalinferencecount", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "getactiveinternalinferencecount()" + }, + { + "label": "_resetConcurrencyForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceConcurrency.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostinferenceconcurrency_resetconcurrencyfortests", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "_resetconcurrencyfortests()" + }, + { + "label": "hostInferenceCore.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "hostinferencecore.ts" + }, + { + "label": "HostInferenceTransport", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L31", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_hostinferencetransport", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "hostinferencetransport" + }, + { + "label": "HostInferenceCoreContext", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L34", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_hostinferencecorecontext", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "hostinferencecorecontext" + }, + { + "label": "HostInferenceCoreFailure", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L46", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_hostinferencecorefailure", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "hostinferencecorefailure" + }, + { + "label": "retryableForCode()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_retryableforcode", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "retryableforcode()" + }, + { + "label": "fail()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L62", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_fail", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "fail()" + }, + { + "label": "isValidInternalServiceBaseEnvelope()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L66", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_isvalidinternalservicebaseenvelope", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "isvalidinternalservicebaseenvelope()" + }, + { + "label": "tryParseInternalInferenceRequest()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L85", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_tryparseinternalinferencerequest", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "tryparseinternalinferencerequest()" + }, + { + "label": "InferenceDeliveryMeta", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L133", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_inferencedeliverymeta", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "inferencedeliverymeta" + }, + { + "label": "CoreInferenceHandoff", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L143", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_coreinferencehandoff", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "coreinferencehandoff" + }, + { + "label": "HostInferenceCoreCapabilitiesSuccess", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L153", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_hostinferencecorecapabilitiessuccess", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "hostinferencecorecapabilitiessuccess" + }, + { + "label": "HostInferenceCoreInferenceSuccess", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L154", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_hostinferencecoreinferencesuccess", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "hostinferencecoreinferencesuccess" + }, + { + "label": "HostInferenceCoreCancelSuccess", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L155", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_hostinferencecorecancelsuccess", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "hostinferencecorecancelsuccess" + }, + { + "label": "assertNotAuthenticated()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L160", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_assertnotauthenticated", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "assertnotauthenticated()" + }, + { + "label": "loadServiceRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L170", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_loadservicerecord", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "loadservicerecord()" + }, + { + "label": "roleToGate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L182", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_roletogate", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "roletogate()" + }, + { + "label": "assertHostInbound()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L193", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_asserthostinbound", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "asserthostinbound()" + }, + { + "label": "handleInternalInferenceCapabilitiesRequest()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L282", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_handleinternalinferencecapabilitiesrequest", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "handleinternalinferencecapabilitiesrequest()" + }, + { + "label": "handleInternalInferenceRequest()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L325", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_handleinternalinferencerequest", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "handleinternalinferencerequest()" + }, + { + "label": "handleInternalInferenceCancel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L494", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_handleinternalinferencecancel", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "handleinternalinferencecancel()" + }, + { + "label": "hostInferenceExecute.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceExecute.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute", + "community": 120, + "community_name": "Internal Inference LLM Email", + "norm_label": "hostinferenceexecute.ts" + }, + { + "label": "retryableForCode()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceExecute.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute_retryableforcode", + "community": 120, + "community_name": "Internal Inference LLM Email", + "norm_label": "retryableforcode()" + }, + { + "label": "buildHostInferenceErrorWire()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceExecute.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute_buildhostinferenceerrorwire", + "community": 120, + "community_name": "Internal Inference LLM Email", + "norm_label": "buildhostinferenceerrorwire()" + }, + { + "label": "mapLocalLlmError()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceExecute.ts", + "source_location": "L58", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute_maplocalllmerror", + "community": 120, + "community_name": "Internal Inference LLM Email", + "norm_label": "maplocalllmerror()" + }, + { + "label": "HostInferenceContext", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceExecute.ts", + "source_location": "L80", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute_hostinferencecontext", + "community": 120, + "community_name": "Internal Inference LLM Email", + "norm_label": "hostinferencecontext" + }, + { + "label": "runHostInternalInference()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceExecute.ts", + "source_location": "L93", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute_runhostinternalinference", + "community": 120, + "community_name": "Internal Inference LLM Email", + "norm_label": "runhostinternalinference()" + }, + { + "label": "hostInferencePolicyStore.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferencePolicyStore.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "hostinferencepolicystore.ts" + }, + { + "label": "RemoteHostInferenceUserChoice", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferencePolicyStore.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_remotehostinferenceuserchoice", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "remotehostinferenceuserchoice" + }, + { + "label": "HostInternalInferencePolicy", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferencePolicyStore.ts", + "source_location": "L16", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_hostinternalinferencepolicy", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "hostinternalinferencepolicy" + }, + { + "label": "DEFAULT_POLICY", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferencePolicyStore.ts", + "source_location": "L52", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_default_policy", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "default_policy" + }, + { + "label": "storePath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferencePolicyStore.ts", + "source_location": "L66", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_storepath", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "storepath()" + }, + { + "label": "readDisk()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferencePolicyStore.ts", + "source_location": "L70", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_readdisk", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "readdisk()" + }, + { + "label": "normalizeRemoteChoice()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferencePolicyStore.ts", + "source_location": "L83", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_normalizeremotechoice", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "normalizeremotechoice()" + }, + { + "label": "normalizePolicy()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferencePolicyStore.ts", + "source_location": "L92", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_normalizepolicy", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "normalizepolicy()" + }, + { + "label": "loadCached()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferencePolicyStore.ts", + "source_location": "L136", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_loadcached", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "loadcached()" + }, + { + "label": "getHostInternalInferencePolicy()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferencePolicyStore.ts", + "source_location": "L146", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_gethostinternalinferencepolicy", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "gethostinternalinferencepolicy()" + }, + { + "label": "setHostInternalInferencePolicy()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferencePolicyStore.ts", + "source_location": "L150", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_sethostinternalinferencepolicy", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "sethostinternalinferencepolicy()" + }, + { + "label": "_resetHostInferencePolicyForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferencePolicyStore.ts", + "source_location": "L185", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_resethostinferencepolicyfortests", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "_resethostinferencepolicyfortests()" + }, + { + "label": "hostInferenceRequestRateLimit.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceRequestRateLimit.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostinferencerequestratelimit", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "hostinferencerequestratelimit.ts" + }, + { + "label": "buckets", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceRequestRateLimit.ts", + "source_location": "L7", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostinferencerequestratelimit_buckets", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "buckets" + }, + { + "label": "tryConsumePerHandshakeInferenceSlot()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceRequestRateLimit.ts", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostinferencerequestratelimit_tryconsumeperhandshakeinferenceslot", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "tryconsumeperhandshakeinferenceslot()" + }, + { + "label": "_resetHandshakeRateLimitForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceRequestRateLimit.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_hostinferencerequestratelimit_resethandshakeratelimitfortests", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "_resethandshakeratelimitfortests()" + }, + { + "label": "inferenceRoutingIpcPayload.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/inferenceRoutingIpcPayload.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_inferenceroutingipcpayload", + "community": 183, + "community_name": "Email LLM Internal Inference", + "norm_label": "inferenceroutingipcpayload.ts" + }, + { + "label": "InferenceRoutingReason", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/inferenceRoutingIpcPayload.ts", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_inferenceroutingipcpayload_inferenceroutingreason", + "community": 183, + "community_name": "Email LLM Internal Inference", + "norm_label": "inferenceroutingreason" + }, + { + "label": "inferenceRoutingUnavailableUserMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/inferenceRoutingIpcPayload.ts", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_inferenceroutingipcpayload_inferenceroutingunavailableusermessage", + "community": 183, + "community_name": "Email LLM Internal Inference", + "norm_label": "inferenceroutingunavailableusermessage()" + }, + { + "label": "mapInferenceRoutingErrorToIPC()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/inferenceRoutingIpcPayload.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_inferenceroutingipcpayload_mapinferenceroutingerrortoipc", + "community": 183, + "community_name": "Email LLM Internal Inference", + "norm_label": "mapinferenceroutingerrortoipc()" + }, + { + "label": "internalInferenceLogRedact.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/internalInferenceLogRedact.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "internalinferencelogredact.ts" + }, + { + "label": "_setInternalInferenceLogPackagedForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/internalInferenceLogRedact.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact_setinternalinferencelogpackagedfortests", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "_setinternalinferencelogpackagedfortests()" + }, + { + "label": "isInternalInferenceProdPackagedLogging()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/internalInferenceLogRedact.ts", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact_isinternalinferenceprodpackagedlogging", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "isinternalinferenceprodpackagedlogging()" + }, + { + "label": "redactIdForLog()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/internalInferenceLogRedact.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact_redactidforlog", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "redactidforlog()" + }, + { + "label": "internalP2pHandshakeInspect.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/internalP2pHandshakeInspect.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "internalp2phandshakeinspect.ts" + }, + { + "label": "first8()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/internalP2pHandshakeInspect.ts", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect_first8", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "first8()" + }, + { + "label": "mvpKindDisplay()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/internalP2pHandshakeInspect.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect_mvpkinddisplay", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "mvpkinddisplay()" + }, + { + "label": "recordToInternalRoleSource()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/internalP2pHandshakeInspect.ts", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect_recordtointernalrolesource", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "recordtointernalrolesource()" + }, + { + "label": "InternalHostHandshakeP2pSafeDump", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/internalP2pHandshakeInspect.ts", + "source_location": "L55", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect_internalhosthandshakep2psafedump", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "internalhosthandshakep2psafedump" + }, + { + "label": "buildInternalHostHandshakeP2pSafeDump()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/internalP2pHandshakeInspect.ts", + "source_location": "L73", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect_buildinternalhosthandshakep2psafedump", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "buildinternalhosthandshakep2psafedump()" + }, + { + "label": "logInternalHostHandshakeP2pInspect()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/internalP2pHandshakeInspect.ts", + "source_location": "L98", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect_loginternalhosthandshakep2pinspect", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "loginternalhosthandshakep2pinspect()" + }, + { + "label": "getInternalHostHandshakeP2pInspect()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/internalP2pHandshakeInspect.ts", + "source_location": "L113", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect_getinternalhosthandshakep2pinspect", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "getinternalhosthandshakep2pinspect()" + }, + { + "label": "internalInference/ipc.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_ipc", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "internalinference/ipc.ts" + }, + { + "label": "P2pSessionLogReasonType", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_ipc_p2psessionlogreasontype", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "p2psessionlogreasontype" + }, + { + "label": "ListSandboxHostInferenceResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L25", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_ipc_listsandboxhostinferenceresult", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "listsandboxhostinferenceresult" + }, + { + "label": "listInferenceCacheByHandshake", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L32", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_ipc_listinferencecachebyhandshake", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "listinferencecachebyhandshake" + }, + { + "label": "parseListInferenceTargetsIpcArg()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L41", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_ipc_parselistinferencetargetsipcarg", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "parselistinferencetargetsipcarg()" + }, + { + "label": "noteListInferenceTargetsIpcCache()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L51", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_ipc_notelistinferencetargetsipccache", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "notelistinferencetargetsipccache()" + }, + { + "label": "tryListInferenceTargetsIpcCache()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L65", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_ipc_trylistinferencetargetsipccache", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "trylistinferencetargetsipccache()" + }, + { + "label": "resetListInferenceTargetsIpcCacheForOrchestrator()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L86", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_ipc_resetlistinferencetargetsipccachefororchestrator", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "resetlistinferencetargetsipccachefororchestrator()" + }, + { + "label": "lastIpcProbeHostPolicyLogByHandshake", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L91", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_ipc_lastipcprobehostpolicylogbyhandshake", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "lastipcprobehostpolicylogbyhandshake" + }, + { + "label": "parseP2pSessionCloseReason()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L94", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_ipc_parsep2psessionclosereason", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "parsep2psessionclosereason()" + }, + { + "label": "dispatchListInferenceTargetsIpc()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L106", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_ipc_dispatchlistinferencetargetsipc", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "dispatchlistinferencetargetsipc()" + }, + { + "label": "registerInternalInferenceIpc()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L140", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_ipc_registerinternalinferenceipc", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "registerinternalinferenceipc()" + }, + { + "label": "listInferenceTargets.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "listinferencetargets.ts" + }, + { + "label": "resetHostAiPeerAdvertisedMapHydrationForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L121", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_resethostaipeeradvertisedmaphydrationfortests", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "resethostaipeeradvertisedmaphydrationfortests()" + }, + { + "label": "hostOllamaDirectSyntheticProbeMeta()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L127", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostollamadirectsyntheticprobemeta", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "hostollamadirectsyntheticprobemeta()" + }, + { + "label": "sandboxOllamaDirectTagsAllowListTransportBypass()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L146", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_sandboxollamadirecttagsallowlisttransportbypass", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "sandboxollamadirecttagsallowlisttransportbypass()" + }, + { + "label": "logHostAiLedgerView()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L155", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_loghostailedgerview", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "loghostailedgerview()" + }, + { + "label": "stableListProbeChainByHandshake", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L194", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_stablelistprobechainbyhandshake", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "stablelistprobechainbyhandshake" + }, + { + "label": "lastP2pEnsureByHandshake", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L201", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_lastp2pensurebyhandshake", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "lastp2pensurebyhandshake" + }, + { + "label": "lastRelayP2pNudgeByHandshake", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L205", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_lastrelayp2pnudgebyhandshake", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "lastrelayp2pnudgebyhandshake" + }, + { + "label": "hostAiDirectProbe429CooldownUntil", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L209", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostaidirectprobe429cooldownuntil", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "hostaidirectprobe429cooldownuntil" + }, + { + "label": "ListHostCapResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L226", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listhostcapresult", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "listhostcapresult" + }, + { + "label": "webrtcListHostCapsCache", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L236", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_webrtclisthostcapscache", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "webrtclisthostcapscache" + }, + { + "label": "ProbeHostPolicyResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L238", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_probehostpolicyresult", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "probehostpolicyresult" + }, + { + "label": "probeCache", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L241", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_probecache", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "probecache" + }, + { + "label": "inflightProbes", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L242", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_inflightprobes", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "inflightprobes" + }, + { + "label": "invalidateProbeCache()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L245", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_invalidateprobecache", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "invalidateprobecache()" + }, + { + "label": "listHostCapsProbeInflight", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L264", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listhostcapsprobeinflight", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "listhostcapsprobeinflight" + }, + { + "label": "listHostCapsProbeLast", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L265", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listhostcapsprobelast", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "listhostcapsprobelast" + }, + { + "label": "policyProbeInflight", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L267", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_policyprobeinflight", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "policyprobeinflight" + }, + { + "label": "coalescedListHostCapabilitiesProbe()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L269", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_coalescedlisthostcapabilitiesprobe", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "coalescedlisthostcapabilitiesprobe()" + }, + { + "label": "coalescedProbeHostPolicyForList()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L296", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_coalescedprobehostpolicyforlist", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "coalescedprobehostpolicyforlist()" + }, + { + "label": "runDebouncedPolicyProbeForList()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L320", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_rundebouncedpolicyprobeforlist", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "rundebouncedpolicyprobeforlist()" + }, + { + "label": "resetWebrtcListHostCapsCacheForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L354", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_resetwebrtclisthostcapscachefortests", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "resetwebrtclisthostcapscachefortests()" + }, + { + "label": "resetP2pEnsureThrottleCacheForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L366", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_resetp2pensurethrottlecachefortests", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "resetp2pensurethrottlecachefortests()" + }, + { + "label": "clearHostAiListTransientStateForOrchestratorBuildChange()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L372", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_clearhostailisttransientstatefororchestratorbuildchange", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "clearhostailisttransientstatefororchestratorbuildchange()" + }, + { + "label": "HostP2pUiPhase", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L389", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostp2puiphase", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "hostp2puiphase" + }, + { + "label": "HostListTransportMode", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L425", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostlisttransportmode", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "hostlisttransportmode" + }, + { + "label": "HostListLegacyEndpointKind", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L426", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostlistlegacyendpointkind", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "hostlistlegacyendpointkind" + }, + { + "label": "p2pStackEnabledForList()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L428", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_p2pstackenabledforlist", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "p2pstackenabledforlist()" + }, + { + "label": "p2pEnsureEligibleForList()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L433", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_p2pensureeligibleforlist", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "p2pensureeligibleforlist()" + }, + { + "label": "legacyHttpStatusForDecideLog()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L440", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_legacyhttpstatusfordecidelog", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "legacyhttpstatusfordecidelog()" + }, + { + "label": "mapHostAiSelectorPhaseToP2pUiPhase()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L457", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_maphostaiselectorphasetop2puiphase", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "maphostaiselectorphasetop2puiphase()" + }, + { + "label": "primaryLabelForP2pUiPhase()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L481", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_primarylabelforp2puiphase", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "primarylabelforp2puiphase()" + }, + { + "label": "capabilityProbeLogDetailToken()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L528", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_capabilityprobelogdetailtoken", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "capabilityprobelogdetailtoken()" + }, + { + "label": "isHostAiHttpEndpointProvenanceClassFailure()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L535", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_ishostaihttpendpointprovenanceclassfailure", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "ishostaihttpendpointprovenanceclassfailure()" + }, + { + "label": "hostTargetUnavailableCodeForTerminalIdentityProbe()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L545", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hosttargetunavailablecodeforterminalidentityprobe", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "hosttargetunavailablecodeforterminalidentityprobe()" + }, + { + "label": "hostP2pUiPhaseForTerminalIdentityProbe()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L577", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostp2puiphaseforterminalidentityprobe", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "hostp2puiphaseforterminalidentityprobe()" + }, + { + "label": "hostAiStructuredReasonForTerminalIdentityProbe()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L604", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostaistructuredreasonforterminalidentityprobe", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "hostaistructuredreasonforterminalidentityprobe()" + }, + { + "label": "hostP2pUiPhaseForHostEndpointProvenance()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L637", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostp2puiphaseforhostendpointprovenance", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "hostp2puiphaseforhostendpointprovenance()" + }, + { + "label": "hostAiStructuredForEndpointProvenanceUiPhase()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L661", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostaistructuredforendpointprovenanceuiphase", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "hostaistructuredforendpointprovenanceuiphase()" + }, + { + "label": "hostP2pUiPhaseForProbeFailureCode()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L668", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostp2puiphaseforprobefailurecode", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "hostp2puiphaseforprobefailurecode()" + }, + { + "label": "hostAiStructuredReasonForProbeCode()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L701", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostaistructuredreasonforprobecode", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "hostaistructuredreasonforprobecode()" + }, + { + "label": "HostInternalInferenceRejectReason", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L758", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostinternalinferencerejectreason", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "hostinternalinferencerejectreason" + }, + { + "label": "DerivedInternalRoles", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L774", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_derivedinternalroles", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "derivedinternalroles" + }, + { + "label": "recordToInternalRoleSource()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L776", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_recordtointernalrolesource", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "recordtointernalrolesource()" + }, + { + "label": "deriveFromRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L796", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_derivefromrecord", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "derivefromrecord()" + }, + { + "label": "overlayHostPeerPresenceLiveness()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L801", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_overlayhostpeerpresenceliveness", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "overlayhostpeerpresenceliveness()" + }, + { + "label": "mapRoleGateFromDerived()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L814", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_maprolegatefromderived", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "maprolegatefromderived()" + }, + { + "label": "draftDisabledSandboxHostRoleMetadata()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L824", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_draftdisabledsandboxhostrolemetadata", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "draftdisabledsandboxhostrolemetadata()" + }, + { + "label": "peerDeviceRoleForLogD()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L870", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_peerdeviceroleforlogd", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "peerdeviceroleforlogd()" + }, + { + "label": "configuredModeForLog()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L876", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_configuredmodeforlog", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "configuredmodeforlog()" + }, + { + "label": "logInternalCandidate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L881", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_loginternalcandidate", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "loginternalcandidate()" + }, + { + "label": "HostTargetUnavailableCode", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L917", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hosttargetunavailablecode", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "hosttargetunavailablecode" + }, + { + "label": "HostInferenceListAvailability", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L942", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostinferencelistavailability", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "hostinferencelistavailability" + }, + { + "label": "HostAiStructuredUnavailableReason", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L957", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostaistructuredunavailablereason", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "hostaistructuredunavailablereason" + }, + { + "label": "HostInternalInferenceListItem", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1003", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostinternalinferencelistitem", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "hostinternalinferencelistitem" + }, + { + "label": "HostInferenceHostTargetDraft", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1099", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostinferencehosttargetdraft", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "hostinferencehosttargetdraft" + }, + { + "label": "HostTargetDraft", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1108", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hosttargetdraft", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "hosttargetdraft" + }, + { + "label": "epKindToListKind()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1110", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_epkindtolistkind", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "epkindtolistkind()" + }, + { + "label": "logHostAiTargetSummaryLines()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1120", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_loghostaitargetsummarylines", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "loghostaitargetsummarylines()" + }, + { + "label": "baseMetaFromDec()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1170", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_basemetafromdec", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "basemetafromdec()" + }, + { + "label": "CAP_UNKNOWN", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1183", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_cap_unknown", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "cap_unknown" + }, + { + "label": "buildHostTargetId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1188", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_buildhosttargetid", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "buildhosttargetid()" + }, + { + "label": "displayPairing()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1196", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_displaypairing", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "displaypairing()" + }, + { + "label": "digits6Only()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1202", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_digits6only", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "digits6only()" + }, + { + "label": "metaLocal()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1207", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_metalocal", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "metalocal()" + }, + { + "label": "metaFromOkProbe()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1216", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_metafromokprobe", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "metafromokprobe()" + }, + { + "label": "secondaryLabelFromMeta()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1235", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_secondarylabelfrommeta", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "secondarylabelfrommeta()" + }, + { + "label": "hostAiSubtitleForPhase()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1245", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostaisubtitleforphase", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "hostaisubtitleforphase()" + }, + { + "label": "draftCheckingPlaceholderForHostPair()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1258", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_draftcheckingplaceholderforhostpair", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "draftcheckingplaceholderforhostpair()" + }, + { + "label": "isHostSandboxDeviceRoles()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1298", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_ishostsandboxdeviceroles", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "ishostsandboxdeviceroles()" + }, + { + "label": "hostSelectorStateForItem()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1304", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostselectorstateforitem", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "hostselectorstateforitem()" + }, + { + "label": "finalizeHostInferenceRowForRegressionTest()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1319", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_finalizehostinferencerowforregressiontest", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "finalizehostinferencerowforregressiontest()" + }, + { + "label": "finalizeItem()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1325", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_finalizeitem", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "finalizeitem()" + }, + { + "label": "listActiveInternalHandshakesForCurrentSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1417", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listactiveinternalhandshakesforcurrentsession", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "listactiveinternalhandshakesforcurrentsession()" + }, + { + "label": "anyActiveRowProvesLocalSandboxToHostFromDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1431", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_anyactiverowproveslocalsandboxtohostfromdb", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "anyactiverowproveslocalsandboxtohostfromdb()" + }, + { + "label": "shouldMergeHostInternalRowsForGetAvailableModels()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1443", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_shouldmergehostinternalrowsforgetavailablemodels", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "shouldmergehostinternalrowsforgetavailablemodels()" + }, + { + "label": "hasActiveInternalLedgerSandboxToHostForHostAi()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1453", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hasactiveinternalledgersandboxtohostforhostai", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "hasactiveinternalledgersandboxtohostforhostai()" + }, + { + "label": "hasActiveInternalLedgerLocalHostPeerSandboxForHostUi()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1462", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hasactiveinternalledgerlocalhostpeersandboxforhostui", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "hasactiveinternalledgerlocalhostpeersandboxforhostui()" + }, + { + "label": "ensureAtLeastOneHostTargetWhenLedgerProvesSandboxToHost()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1474", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_ensureatleastonehosttargetwhenledgerprovessandboxtohost", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "ensureatleastonehosttargetwhenledgerprovessandboxtohost()" + }, + { + "label": "tryEmitOllamaDirectOnlyRowsAfterBeapProbeFailure()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1543", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_tryemitollamadirectonlyrowsafterbeapprobefailure", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "tryemitollamadirectonlyrowsafterbeapprobefailure()" + }, + { + "label": "listSandboxHostInternalInferenceTargets()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1654", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "listsandboxhostinternalinferencetargets()" + }, + { + "label": "logging.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/logging.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_logging", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "logging.ts" + }, + { + "label": "InternalInferenceLogMeta", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/logging.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_logging_internalinferencelogmeta", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "internalinferencelogmeta" + }, + { + "label": "endpointHostOnly()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/logging.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_logging_endpointhostonly", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "endpointhostonly()" + }, + { + "label": "logInternalInferenceEvent()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/logging.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_logging_loginternalinferenceevent", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "loginternalinferenceevent()" + }, + { + "label": "orchestratorSandboxEmbedding.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/orchestratorSandboxEmbedding.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_orchestratorsandboxembedding", + "community": 397, + "community_name": "Internal Inference Handshake Vault", + "norm_label": "orchestratorsandboxembedding.ts" + }, + { + "label": "defaultOllamaEmbeddingProvider()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/orchestratorSandboxEmbedding.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_orchestratorsandboxembedding_defaultollamaembeddingprovider", + "community": 397, + "community_name": "Internal Inference Handshake Vault", + "norm_label": "defaultollamaembeddingprovider()" + }, + { + "label": "getOrCreateOrchestratorEmbeddingService()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/orchestratorSandboxEmbedding.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_orchestratorsandboxembedding_getorcreateorchestratorembeddingservice", + "community": 397, + "community_name": "Internal Inference Handshake Vault", + "norm_label": "getorcreateorchestratorembeddingservice()" + }, + { + "label": "p2pDcCapabilities.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "p2pdccapabilities.ts" + }, + { + "label": "HostInferenceCapabilitiesDcOutcome", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L29", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_hostinferencecapabilitiesdcoutcome", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "hostinferencecapabilitiesdcoutcome" + }, + { + "label": "CapResolve", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L33", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_capresolve", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "capresolve" + }, + { + "label": "PendingCap", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L35", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_pendingcap", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "pendingcap" + }, + { + "label": "pending", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L42", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_pending", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "pending" + }, + { + "label": "SbxAiCapsPurpose", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L44", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_sbxaicapspurpose", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "sbxaicapspurpose" + }, + { + "label": "sbxAiCapsCacheKey()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_sbxaicapscachekey", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "sbxaicapscachekey()" + }, + { + "label": "SbxAiCapsResponseClassification", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L55", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_sbxaicapsresponseclassification", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "sbxaicapsresponseclassification" + }, + { + "label": "sbxAiCapsTerminalCache", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L63", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_sbxaicapsterminalcache", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "sbxaicapsterminalcache" + }, + { + "label": "sbxAiCapsInflightByCacheKey", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L66", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_sbxaicapsinflightbycachekey", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "sbxaicapsinflightbycachekey" + }, + { + "label": "getSbxAiCapsTerminalCache()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L68", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_getsbxaicapsterminalcache", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "getsbxaicapsterminalcache()" + }, + { + "label": "setSbxAiCapsTerminalCache()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L77", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_setsbxaicapsterminalcache", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "setsbxaicapsterminalcache()" + }, + { + "label": "deepCloneDcOutcome()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L82", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_deepclonedcoutcome", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "deepclonedcoutcome()" + }, + { + "label": "cloneDcOutcomeFreshRequestId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L86", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_clonedcoutcomefreshrequestid", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "clonedcoutcomefreshrequestid()" + }, + { + "label": "classifySbxAiCapsOutcome()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L95", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_classifysbxaicapsoutcome", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "classifysbxaicapsoutcome()" + }, + { + "label": "ttlMsForSbxAiCapsOutcome()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L118", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_ttlmsforsbxaicapsoutcome", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "ttlmsforsbxaicapsoutcome()" + }, + { + "label": "invalidateSbxAiCapsTerminalCache()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L152", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_invalidatesbxaicapsterminalcache", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "invalidatesbxaicapsterminalcache()" + }, + { + "label": "hostCapsHandshakeSenderKey()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L172", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_hostcapshandshakesenderkey", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "hostcapshandshakesenderkey()" + }, + { + "label": "HostCapsBuiltPack", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L179", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_hostcapsbuiltpack", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "hostcapsbuiltpack" + }, + { + "label": "hostCapsBuiltCacheByHsSender", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L182", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_hostcapsbuiltcachebyhssender", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "hostcapsbuiltcachebyhssender" + }, + { + "label": "inflightHostCapsBuildByHandshakeSender", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L184", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_inflighthostcapsbuildbyhandshakesender", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "inflighthostcapsbuildbyhandshakesender" + }, + { + "label": "sendCapsDcError()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L186", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_sendcapsdcerror", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "sendcapsdcerror()" + }, + { + "label": "clearPendingP2pCapabilitiesForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L221", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_clearpendingp2pcapabilitiesfortests", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "clearpendingp2pcapabilitiesfortests()" + }, + { + "label": "invalidateHostCapsBuiltCacheForHandshake()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L233", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_invalidatehostcapsbuiltcacheforhandshake", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "invalidatehostcapsbuiltcacheforhandshake()" + }, + { + "label": "ollamaDirectWireFieldsFromDcPayload()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L241", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_ollamadirectwirefieldsfromdcpayload", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "ollamadirectwirefieldsfromdcpayload()" + }, + { + "label": "mapDcToInternalWire()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L279", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_mapdctointernalwire", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "mapdctointernalwire()" + }, + { + "label": "handleP2pDcInferenceCapabilitiesAsHost()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L314", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_handlep2pdcinferencecapabilitiesashost", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "handlep2pdcinferencecapabilitiesashost()" + }, + { + "label": "sendProactiveInferenceCapabilitiesDcResult()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L607", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_sendproactiveinferencecapabilitiesdcresult", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "sendproactiveinferencecapabilitiesdcresult()" + }, + { + "label": "handleP2pDcInferenceCapabilitiesAsSandbox()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L685", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_handlep2pdcinferencecapabilitiesassandbox", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "handlep2pdcinferencecapabilitiesassandbox()" + }, + { + "label": "tryRouteP2pDataChannelJsonMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L1112", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_tryroutep2pdatachanneljsonmessage", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "tryroutep2pdatachanneljsonmessage()" + }, + { + "label": "peekSandboxPeerHostDeviceForCapsCache()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L1150", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_peeksandboxpeerhostdeviceforcapscache", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "peeksandboxpeerhostdeviceforcapscache()" + }, + { + "label": "logSbxAiCapsResponseClassifiedPayload()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L1164", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_logsbxaicapsresponseclassifiedpayload", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "logsbxaicapsresponseclassifiedpayload()" + }, + { + "label": "requestHostInferenceCapabilitiesOverDataChannel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L1198", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_requesthostinferencecapabilitiesoverdatachannel", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "requesthostinferencecapabilitiesoverdatachannel()" + }, + { + "label": "executeHostInferenceCapabilitiesDcExchange()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L1281", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_executehostinferencecapabilitiesdcexchange", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "executehostinferencecapabilitiesdcexchange()" + }, + { + "label": "p2pDcInference.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "p2pdcinference.ts" + }, + { + "label": "DC_TYPES", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L18", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_dc_types", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "dc_types" + }, + { + "label": "sendHostInferenceRequestOverP2pDataChannel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_sendhostinferencerequestoverp2pdatachannel", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "sendhostinferencerequestoverp2pdatachannel()" + }, + { + "label": "sendInternalInferenceWireOverP2pDataChannel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_sendinternalinferencewireoverp2pdatachannel", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "sendinternalinferencewireoverp2pdatachannel()" + }, + { + "label": "validateHostInboundInferenceDc()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L91", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_validatehostinboundinferencedc", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "validatehostinboundinferencedc()" + }, + { + "label": "validateInferenceDcSandboxSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L141", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_validateinferencedcsandboxsession", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "validateinferencedcsandboxsession()" + }, + { + "label": "dcRequestToInternalEnvelope()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L148", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_dcrequesttointernalenvelope", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "dcrequesttointernalenvelope()" + }, + { + "label": "handleP2pDcInferenceRequestAsHost()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L175", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_handlep2pdcinferencerequestashost", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "handlep2pdcinferencerequestashost()" + }, + { + "label": "handleP2pDcInferenceResultAsSandbox()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L251", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_handlep2pdcinferenceresultassandbox", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "handlep2pdcinferenceresultassandbox()" + }, + { + "label": "handleP2pDcInferenceErrorAsSandbox()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L285", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_handlep2pdcinferenceerrorassandbox", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "handlep2pdcinferenceerrorassandbox()" + }, + { + "label": "handleP2pDcInferenceCancelAsHost()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L309", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_handlep2pdcinferencecancelashost", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "handlep2pdcinferencecancelashost()" + }, + { + "label": "tryRouteP2pInferenceDataChannelMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L347", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_tryroutep2pinferencedatachannelmessage", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "tryroutep2pinferencedatachannelmessage()" + }, + { + "label": "p2pEndpointRepair.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "p2pendpointrepair.ts" + }, + { + "label": "P2P_DIRECT_P2P_ENDPOINT_HEADER", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L32", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_p2p_direct_p2p_endpoint_header", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "p2p_direct_p2p_endpoint_header" + }, + { + "label": "HostAiPeerBeapAdSource", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L39", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_hostaipeerbeapadsource", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "hostaipeerbeapadsource" + }, + { + "label": "HostAiPeerAdvertisedOllamaRoster", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L42", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_hostaipeeradvertisedollamaroster", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "hostaipeeradvertisedollamaroster" + }, + { + "label": "PeerHeaderEntry", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L52", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_peerheaderentry", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "peerheaderentry" + }, + { + "label": "hostAdvertisedMvpDirectByHandshake", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L66", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_hostadvertisedmvpdirectbyhandshake", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "hostadvertisedmvpdirectbyhandshake" + }, + { + "label": "hostAiRelayBeapAdLastSeq", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L69", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_hostairelaybeapadlastseq", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "hostairelaybeapadlastseq" + }, + { + "label": "lastBeapAdRefreshOnMapMissAtByHandshake", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L72", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_lastbeapadrefreshonmapmissatbyhandshake", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "lastbeapadrefreshonmapmissatbyhandshake" + }, + { + "label": "p2pEnsureCacheInvalidators", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L75", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_p2pensurecacheinvalidators", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "p2pensurecacheinvalidators" + }, + { + "label": "registerP2pEnsureCacheInvalidator()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L78", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_registerp2pensurecacheinvalidator", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "registerp2pensurecacheinvalidator()" + }, + { + "label": "invalidateP2pEnsureCachesForHandshake()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L82", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_invalidatep2pensurecachesforhandshake", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "invalidatep2pensurecachesforhandshake()" + }, + { + "label": "resetHostAdvertisedMvpDirectForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L95", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_resethostadvertisedmvpdirectfortests", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "resethostadvertisedmvpdirectfortests()" + }, + { + "label": "setHostAdvertisedMvpDirectForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L102", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_sethostadvertisedmvpdirectfortests", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "sethostadvertisedmvpdirectfortests()" + }, + { + "label": "clearHostAdvertisedMvpDirectForHandshake()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L131", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_clearhostadvertisedmvpdirectforhandshake", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "clearhostadvertisedmvpdirectforhandshake()" + }, + { + "label": "peekHostAdvertisedMvpDirectEntry()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L137", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_peekhostadvertisedmvpdirectentry", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "peekhostadvertisedmvpdirectentry()" + }, + { + "label": "peekHostGpuInferenceAvailableFromRelay()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L144", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_peekhostgpuinferenceavailablefromrelay", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "peekhostgpuinferenceavailablefromrelay()" + }, + { + "label": "hydrateHostAdvertisedMapFromLedger()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L161", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_hydratehostadvertisedmapfromledger", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "hydratehostadvertisedmapfromledger()" + }, + { + "label": "peekHostAdvertisedMvpDirectP2pEndpoint()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L247", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_peekhostadvertisedmvpdirectp2pendpoint", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "peekhostadvertisedmvpdirectp2pendpoint()" + }, + { + "label": "resetP2pEndpointRepairSessionGates()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L251", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_resetp2pendpointrepairsessiongates", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "resetp2pendpointrepairsessiongates()" + }, + { + "label": "kindForLog()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L255", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_kindforlog", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "kindforlog()" + }, + { + "label": "getHostPublishedMvpDirectP2pIngestUrl()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L263", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_gethostpublishedmvpdirectp2pingesturl", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "gethostpublishedmvpdirectp2pingesturl()" + }, + { + "label": "ingestUrlMatchesThisDevicesMvpDirectBeap()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L272", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_ingesturlmatchesthisdevicesmvpdirectbeap", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "ingesturlmatchesthisdevicesmvpdirectbeap()" + }, + { + "label": "ledgerRowHasViableDirectBeapForMapRefresh()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L280", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_ledgerrowhasviabledirectbeapformaprefresh", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "ledgerrowhasviabledirectbeapformaprefresh()" + }, + { + "label": "requestBeapAdRefreshIfMapMiss()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L297", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_requestbeapadrefreshifmapmiss", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "requestbeapadrefreshifmapmiss()" + }, + { + "label": "runRequestBeapAdRefreshIfMapMiss()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L310", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_runrequestbeapadrefreshifmapmiss", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "runrequestbeapadrefreshifmapmiss()" + }, + { + "label": "DenyCode", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L367", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_denycode", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "denycode" + }, + { + "label": "SandboxToHostHttpDirectIngestResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L373", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_sandboxtohosthttpdirectingestresult", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "sandboxtohosthttpdirectingestresult" + }, + { + "label": "newIso()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L412", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_newiso", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "newiso()" + }, + { + "label": "buildEndpointCandidate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L416", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_buildendpointcandidate", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "buildendpointcandidate()" + }, + { + "label": "resolveSandboxToHostHttpDirectIngest()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L449", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_resolvesandboxtohosthttpdirectingest", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "resolvesandboxtohosthttpdirectingest()" + }, + { + "label": "hostDirectP2pAdvertisementHeaders()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L718", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_hostdirectp2padvertisementheaders", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "hostdirectp2padvertisementheaders()" + }, + { + "label": "normalizeP2pIngestUrl()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L723", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_normalizep2pingesturl", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "normalizep2pingesturl()" + }, + { + "label": "parseHostAiOllamaRosterFromRelayHostAiRoute()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L739", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_parsehostaiollamarosterfromrelayhostairoute", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "parsehostaiollamarosterfromrelayhostairoute()" + }, + { + "label": "applyHostAiDirectBeapAdFromRelayPayload()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L815", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_applyhostaidirectbeapadfromrelaypayload", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "applyhostaidirectbeapadfromrelaypayload()" + }, + { + "label": "tryRepairP2pEndpointFromHostAdvertisement()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L1004", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_tryrepairp2pendpointfromhostadvertisement", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "tryrepairp2pendpointfromhostadvertisement()" + }, + { + "label": "runP2pEndpointRepairPass()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L1077", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_runp2pendpointrepairpass", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "runp2pendpointrepairpass()" + }, + { + "label": "runP2pEndpointRepairAfterInternalHandshakeActive()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L1161", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_runp2pendpointrepairafterinternalhandshakeactive", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "runp2pendpointrepairafterinternalhandshakeactive()" + }, + { + "label": "p2pHostPolicyGet.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "p2phostpolicyget.ts" + }, + { + "label": "formatInternalIdentifier6()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget_formatinternalidentifier6", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "formatinternalidentifier6()" + }, + { + "label": "getClientIp()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget_getclientip", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "getclientip()" + }, + { + "label": "handleGetInternalInferencePolicy()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L62", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget_handlegetinternalinferencepolicy", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "handlegetinternalinferencepolicy()" + }, + { + "label": "p2pInferenceFlags.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "p2pinferenceflags.ts" + }, + { + "label": "envTrue()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_envtrue", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "envtrue()" + }, + { + "label": "readP2pBoolWithDefaultOnUnset()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_readp2pboolwithdefaultonunset", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "readp2pboolwithdefaultonunset()" + }, + { + "label": "bundleP2pDefaultsShippedInThisApp()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_bundlep2pdefaultsshippedinthisapp", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "bundlep2pdefaultsshippedinthisapp()" + }, + { + "label": "orchestratorBuildStampForLog()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L46", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_orchestratorbuildstampforlog", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "orchestratorbuildstampforlog()" + }, + { + "label": "P2pInferenceFlagSnapshot", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L57", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_p2pinferenceflagsnapshot", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "p2pinferenceflagsnapshot" + }, + { + "label": "isHostAiP2pUxEnabled()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L78", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_ishostaip2puxenabled", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "ishostaip2puxenabled()" + }, + { + "label": "getP2pInferenceFlags()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L89", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "getp2pinferenceflags()" + }, + { + "label": "buildAllFalseSnapshot()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L147", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_buildallfalsesnapshot", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "buildallfalsesnapshot()" + }, + { + "label": "buildSnapshotWhenMasterOff()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L163", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_buildsnapshotwhenmasteroff", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "buildsnapshotwhenmasteroff()" + }, + { + "label": "resetP2pInferenceFlagsForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L180", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_resetp2pinferenceflagsfortests", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "resetp2pinferenceflagsfortests()" + }, + { + "label": "isWebRtcHostAiArchitectureEnabled()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L189", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_iswebrtchostaiarchitectureenabled", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "iswebrtchostaiarchitectureenabled()" + }, + { + "label": "getP2pInferenceFlagsSourceTagForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L193", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflagssourcetagfortests", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "getp2pinferenceflagssourcetagfortests()" + }, + { + "label": "logHostAiP2pFlagsSnapshot()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L199", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_loghostaip2pflagssnapshot", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "loghostaip2pflagssnapshot()" + }, + { + "label": "logHostAiP2pFlagsSourceLine()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L208", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_loghostaip2pflagssourceline", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "loghostaip2pflagssourceline()" + }, + { + "label": "logHostAiP2pFlagsAndSource()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L230", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_loghostaip2pflagsandsource", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "loghostaip2pflagsandsource()" + }, + { + "label": "isP2pInferenceFeatureTouched()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L240", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_isp2pinferencefeaturetouched", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "isp2pinferencefeaturetouched()" + }, + { + "label": "shouldRejectHttpInternalInferenceRequest()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L255", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_shouldrejecthttpinternalinferencerequest", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "shouldrejecthttpinternalinferencerequest()" + }, + { + "label": "p2pInferenceTransportLog.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceTransportLog.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pinferencetransportlog", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "p2pinferencetransportlog.ts" + }, + { + "label": "P2pInferenceTransportKind", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceTransportLog.ts", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pinferencetransportlog_p2pinferencetransportkind", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "p2pinferencetransportkind" + }, + { + "label": "logP2pInferenceTransport()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceTransportLog.ts", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pinferencetransportlog_logp2pinferencetransport", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "logp2pinferencetransport()" + }, + { + "label": "p2pReachabilityGet.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pReachabilityGet.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2preachabilityget", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "p2preachabilityget.ts" + }, + { + "label": "getClientIp()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pReachabilityGet.ts", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2preachabilityget_getclientip", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "getclientip()" + }, + { + "label": "handleGetP2PReachability()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pReachabilityGet.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2preachabilityget_handlegetp2preachability", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "handlegetp2preachability()" + }, + { + "label": "p2pServiceDispatch.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "p2pservicedispatch.ts" + }, + { + "label": "jsonError()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch_jsonerror", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "jsonerror()" + }, + { + "label": "httpStatusForCoreFailure()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L37", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch_httpstatusforcorefailure", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "httpstatusforcorefailure()" + }, + { + "label": "isServiceType()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch_isservicetype", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "isservicetype()" + }, + { + "label": "toHttpContext()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L73", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch_tohttpcontext", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "tohttpcontext()" + }, + { + "label": "InternalServiceP2PIngestMeta", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L90", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch_internalservicep2pingestmeta", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "internalservicep2pingestmeta" + }, + { + "label": "tryHandleInternalServiceP2P()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L98", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch_tryhandleinternalservicep2p", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "tryhandleinternalservicep2p()" + }, + { + "label": "finishHostInferencePost()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L250", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch_finishhostinferencepost", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "finishhostinferencepost()" + }, + { + "label": "isInternalServiceRpcShape()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L288", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch_isinternalservicerpcshape", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "isinternalservicerpcshape()" + }, + { + "label": "p2pInferenceSessionManager.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "p2pinferencesessionmanager.ts" + }, + { + "label": "SANDBOX_INITIATED_P2P_SESSION_REASONS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L39", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_sandbox_initiated_p2p_session_reasons", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "sandbox_initiated_p2p_session_reasons" + }, + { + "label": "P2P_SIGNALING_WINDOW_MS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L47", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_p2p_signaling_window_ms", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "p2p_signaling_window_ms" + }, + { + "label": "disposeWebrtcPodSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L50", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_disposewebrtcpodsession", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "disposewebrtcpodsession()" + }, + { + "label": "P2pSessionPhase", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L59", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_p2psessionphase", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "p2psessionphase" + }, + { + "label": "P2pSessionPhaseType", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L70", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_p2psessionphasetype", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "p2psessionphasetype" + }, + { + "label": "P2pSessionUiPhase", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L72", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_p2psessionuiphase", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "p2psessionuiphase" + }, + { + "label": "P2pSessionUiPhaseType", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L82", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_p2psessionuiphasetype", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "p2psessionuiphasetype" + }, + { + "label": "P2pSessionLogReason", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L85", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_p2psessionlogreason", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "p2psessionlogreason" + }, + { + "label": "P2pSessionLogReasonType", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L100", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_p2psessionlogreasontype", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "p2psessionlogreasontype" + }, + { + "label": "P2pSessionState", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L102", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_p2psessionstate", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "p2psessionstate" + }, + { + "label": "SessionModel", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L129", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_sessionmodel", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "sessionmodel" + }, + { + "label": "sessions", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L133", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_sessions", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "sessions" + }, + { + "label": "ensureSessionInFlight", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L136", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensuresessioninflight", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "ensuresessioninflight" + }, + { + "label": "handshakeTerminalFailureTimestamps", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L145", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_handshaketerminalfailuretimestamps", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "handshaketerminalfailuretimestamps" + }, + { + "label": "handshakeSessionStormOpenUntilMs", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L146", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_handshakesessionstormopenuntilms", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "handshakesessionstormopenuntilms" + }, + { + "label": "resetHostAiSessionStormForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L149", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_resethostaisessionstormfortests", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "resethostaisessionstormfortests()" + }, + { + "label": "pruneTerminalFailureTimestamps()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L154", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_pruneterminalfailuretimestamps", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "pruneterminalfailuretimestamps()" + }, + { + "label": "recordHandshakeTerminalFailureForStorm()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L161", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_recordhandshaketerminalfailureforstorm", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "recordhandshaketerminalfailureforstorm()" + }, + { + "label": "clearHandshakeTerminalFailureStreak()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L175", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_clearhandshaketerminalfailurestreak", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "clearhandshaketerminalfailurestreak()" + }, + { + "label": "hostAiSessionStormOpenUntilMs()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L179", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_hostaisessionstormopenuntilms", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "hostaisessionstormopenuntilms()" + }, + { + "label": "signalingOfferDeadlineTimers", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L196", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_signalingofferdeadlinetimers", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "signalingofferdeadlinetimers" + }, + { + "label": "offerStartWatchdogTimers", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L197", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_offerstartwatchdogtimers", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "offerstartwatchdogtimers" + }, + { + "label": "offerSentForSession", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L198", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_offersentforsession", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "offersentforsession" + }, + { + "label": "noOfferMilestones()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L200", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_nooffermilestones", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "nooffermilestones()" + }, + { + "label": "needsWebrtcOfferPipelineRepair()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L216", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_needswebrtcofferpipelinerepair", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "needswebrtcofferpipelinerepair()" + }, + { + "label": "isHostAiP2pPreDataChannelPhase()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L230", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ishostaip2ppredatachannelphase", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "ishostaip2ppredatachannelphase()" + }, + { + "label": "isHostAiP2pPostDataChannelCachedPhase()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L239", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ishostaip2ppostdatachannelcachedphase", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "ishostaip2ppostdatachannelcachedphase()" + }, + { + "label": "hostAiStaleAdRequestRecoveryLatched", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L251", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_hostaistaleadrequestrecoverylatched", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "hostaistaleadrequestrecoverylatched" + }, + { + "label": "computeHostAiP2pSessionStaleEvictionDetail()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L255", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_computehostaip2psessionstaleevictiondetail", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "computehostaip2psessionstaleevictiondetail()" + }, + { + "label": "performHostAiP2pSessionEviction()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L273", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_performhostaip2psessioneviction", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "performhostaip2psessioneviction()" + }, + { + "label": "evictStaleHostAiP2pSessionBeforeReuse()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L304", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_evictstalehostaip2psessionbeforereuse", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "evictstalehostaip2psessionbeforereuse()" + }, + { + "label": "evictHostAiP2pSessionForStuckListCache()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L320", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_evicthostaip2psessionforstucklistcache", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "evicthostaip2psessionforstucklistcache()" + }, + { + "label": "sessionOpKey()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L332", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_sessionopkey", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "sessionopkey()" + }, + { + "label": "clearSignalingOfferDeadline()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L336", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_clearsignalingofferdeadline", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "clearsignalingofferdeadline()" + }, + { + "label": "clearOfferStartWatchdog()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L347", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_clearofferstartwatchdog", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "clearofferstartwatchdog()" + }, + { + "label": "scheduleOfferStartWatchdogIfNeeded()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L358", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_scheduleofferstartwatchdogifneeded", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "scheduleofferstartwatchdogifneeded()" + }, + { + "label": "clearHostAiSignalingGatesForHandshake()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L397", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_clearhostaisignalinggatesforhandshake", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "clearhostaisignalinggatesforhandshake()" + }, + { + "label": "discardRelayOutboundSoftStateForHandshake()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L420", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_discardrelayoutboundsoftstateforhandshake", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "discardrelayoutboundsoftstateforhandshake()" + }, + { + "label": "tearDownP2pTransportAndRelayForHandshake()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L429", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_teardownp2ptransportandrelayforhandshake", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "teardownp2ptransportandrelayforhandshake()" + }, + { + "label": "markP2pOfferSentForSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L442", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_markp2poffersentforsession", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "markp2poffersentforsession()" + }, + { + "label": "markP2pPeerConnectionCreateBegin()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L450", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_markp2ppeerconnectioncreatebegin", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "markp2ppeerconnectioncreatebegin()" + }, + { + "label": "markP2pCreateOfferBegin()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L460", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_markp2pcreateofferbegin", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "markp2pcreateofferbegin()" + }, + { + "label": "scheduleOfferOutboundDeadlineIfNeeded()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L470", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_scheduleofferoutbounddeadlineifneeded", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "scheduleofferoutbounddeadlineifneeded()" + }, + { + "label": "sessionListeners", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L500", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_sessionlisteners", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "sessionlisteners" + }, + { + "label": "P2pCapabilityDcWaitEvent", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L503", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_p2pcapabilitydcwaitevent", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "p2pcapabilitydcwaitevent" + }, + { + "label": "capabilityDcWaitListeners", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L508", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_capabilitydcwaitlisteners", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "capabilitydcwaitlisteners" + }, + { + "label": "emitP2pCapabilityDcWait()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L510", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_emitp2pcapabilitydcwait", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "emitp2pcapabilitydcwait()" + }, + { + "label": "subscribeP2pCapabilityDcWait()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L527", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_subscribep2pcapabilitydcwait", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "subscribep2pcapabilitydcwait()" + }, + { + "label": "resetHostAiP2pSessionForTransportLoss()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L553", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_resethostaip2psessionfortransportloss", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "resethostaip2psessionfortransportloss()" + }, + { + "label": "notifyWebrtcTransportTerminalIceOrConnectionFailed()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L605", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_notifywebrtctransportterminaliceorconnectionfailed", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "notifywebrtctransportterminaliceorconnectionfailed()" + }, + { + "label": "now()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L621", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_now", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "now()" + }, + { + "label": "emitSessionState()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L625", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_emitsessionstate", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "emitsessionstate()" + }, + { + "label": "withDerivedUi()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L639", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_withderivedui", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "withderivedui()" + }, + { + "label": "setSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L675", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_setsession", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "setsession()" + }, + { + "label": "scheduleP2pSignalingRelayOut()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L693", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_schedulep2psignalingrelayout", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "schedulep2psignalingrelayout()" + }, + { + "label": "failHostAiP2pSessionForTerminalSignalingError()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L701", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_failhostaip2psessionforterminalsignalingerror", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "failhostaip2psessionforterminalsignalingerror()" + }, + { + "label": "subscribeSessionState()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L727", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_subscribesessionstate", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "subscribesessionstate()" + }, + { + "label": "getSessionState()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L741", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_getsessionstate", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "getsessionstate()" + }, + { + "label": "P2pSessionAuthFailureReason", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L749", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_p2psessionauthfailurereason", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "p2psessionauthfailurereason" + }, + { + "label": "logP2pSessionAuthFailed()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L756", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_logp2psessionauthfailed", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "logp2psessionauthfailed()" + }, + { + "label": "authorizeInternalP2pSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L784", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_authorizeinternalp2psession", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "authorizeinternalp2psession()" + }, + { + "label": "syntheticRelayCircuitCooldownState()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L846", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_syntheticrelaycircuitcooldownstate", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "syntheticrelaycircuitcooldownstate()" + }, + { + "label": "syntheticSessionStormCooldownState()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L865", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_syntheticsessionstormcooldownstate", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "syntheticsessionstormcooldownstate()" + }, + { + "label": "beginHostAiEnsureSessionChain()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L884", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_beginhostaiensuresessionchain", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "beginhostaiensuresessionchain()" + }, + { + "label": "ensureHostAiP2pSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L923", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensurehostaip2psession", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "ensurehostaip2psession()" + }, + { + "label": "ensureSessionSingleFlight()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1000", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensuresessionsingleflight", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "ensuresessionsingleflight()" + }, + { + "label": "ensureSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1010", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensuresession", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "ensuresession()" + }, + { + "label": "tryAttachP2pSessionForInboundSignaling()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1280", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_tryattachp2psessionforinboundsignaling", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "tryattachp2psessionforinboundsignaling()" + }, + { + "label": "ensureAnswererWebrtcTransportIfNeeded()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1367", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensureanswererwebrtctransportifneeded", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "ensureanswererwebrtctransportifneeded()" + }, + { + "label": "getP2pInboundLocalRoleForLog()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1396", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_getp2pinboundlocalroleforlog", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "getp2pinboundlocalroleforlog()" + }, + { + "label": "preflightP2pRelaySignal()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1411", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_preflightp2prelaysignal", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "preflightp2prelaysignal()" + }, + { + "label": "handleSignal()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1471", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_handlesignal", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "handlesignal()" + }, + { + "label": "markDataChannelOpenForP2pSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1506", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_markdatachannelopenforp2psession", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "markdatachannelopenforp2psession()" + }, + { + "label": "closeSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1533", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_closesession", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "closesession()" + }, + { + "label": "closeAllP2pInferenceSessions()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1561", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_closeallp2pinferencesessions", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "closeallp2pinferencesessions()" + }, + { + "label": "listHandshakeIdsWithOpenP2pDataChannel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1568", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_listhandshakeidswithopenp2pdatachannel", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "listhandshakeidswithopenp2pdatachannel()" + }, + { + "label": "_seedHostAiP2pSessionForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1580", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_seedhostaip2psessionfortests", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "_seedhostaip2psessionfortests()" + }, + { + "label": "_resetP2pInferenceSessionsForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1588", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_resetp2pinferencesessionsfortests", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "_resetp2pinferencesessionsfortests()" + }, + { + "label": "logConnecting()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1605", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_logconnecting", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "logconnecting()" + }, + { + "label": "logFailed()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1609", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_logfailed", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "logfailed()" + }, + { + "label": "logClosed()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1615", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_logclosed", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "logclosed()" + }, + { + "label": "p2pSessionWait.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pSessionWait.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "p2psessionwait.ts" + }, + { + "label": "HOST_AI_CAPABILITY_DC_WAIT_MS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pSessionWait.ts", + "source_location": "L12", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait_host_ai_capability_dc_wait_ms", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "host_ai_capability_dc_wait_ms" + }, + { + "label": "isP2pDataChannelUpForHandshake()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pSessionWait.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait_isp2pdatachannelupforhandshake", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "isp2pdatachannelupforhandshake()" + }, + { + "label": "P2pCapabilityDcWaitOutcome", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pSessionWait.ts", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait_p2pcapabilitydcwaitoutcome", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "p2pcapabilitydcwaitoutcome" + }, + { + "label": "p2pCapabilityDcWaitOutcomeLogReason()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pSessionWait.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait_p2pcapabilitydcwaitoutcomelogreason", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "p2pcapabilitydcwaitoutcomelogreason()" + }, + { + "label": "waitForP2pDataChannelOpenOrTerminal()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pSessionWait.ts", + "source_location": "L51", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait_waitforp2pdatachannelopenorterminal", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "waitforp2pdatachannelopenorterminal()" + }, + { + "label": "waitForP2pDataChannelOrTimeout()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pSessionWait.ts", + "source_location": "L126", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait_waitforp2pdatachannelortimeout", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "waitforp2pdatachannelortimeout()" + }, + { + "label": "p2pSessionManagerStub.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSessionManagerStub.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psessionmanagerstub", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "p2psessionmanagerstub.ts" + }, + { + "label": "signalTypeForLog()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSessionManagerStub.ts", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psessionmanagerstub_signaltypeforlog", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "signaltypeforlog()" + }, + { + "label": "maybeInitP2pSessionManagerStub()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSessionManagerStub.ts", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psessionmanagerstub_maybeinitp2psessionmanagerstub", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "maybeinitp2psessionmanagerstub()" + }, + { + "label": "maybeHandleP2pInferenceRelaySignal()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSessionManagerStub.ts", + "source_location": "L49", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psessionmanagerstub_maybehandlep2pinferencerelaysignal", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "maybehandlep2pinferencerelaysignal()" + }, + { + "label": "p2pSignalRelayCircuit.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayCircuit.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaycircuit", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "p2psignalrelaycircuit.ts" + }, + { + "label": "stormTimestamps", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayCircuit.ts", + "source_location": "L11", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaycircuit_stormtimestamps", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "stormtimestamps" + }, + { + "label": "pruneStorms()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayCircuit.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaycircuit_prunestorms", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "prunestorms()" + }, + { + "label": "recordP2pRelaySignaling429Storm()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayCircuit.ts", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaycircuit_recordp2prelaysignaling429storm", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "recordp2prelaysignaling429storm()" + }, + { + "label": "isP2pRelaySignalingCircuitOpen()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayCircuit.ts", + "source_location": "L37", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaycircuit_isp2prelaysignalingcircuitopen", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "isp2prelaysignalingcircuitopen()" + }, + { + "label": "getP2pRelaySignalingCircuitOpenUntilMs()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayCircuit.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaycircuit_getp2prelaysignalingcircuitopenuntilms", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "getp2prelaysignalingcircuitopenuntilms()" + }, + { + "label": "resetP2pRelaySignalingCircuitForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayCircuit.ts", + "source_location": "L50", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaycircuit_resetp2prelaysignalingcircuitfortests", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "resetp2prelaysignalingcircuitfortests()" + }, + { + "label": "p2pSignalRelayPost.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "p2psignalrelaypost.ts" + }, + { + "label": "sendHostAiP2pSignalBodyViaUnifiedRelayWhenEnabled()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_sendhostaip2psignalbodyviaunifiedrelaywhenenabled", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "sendhostaip2psignalbodyviaunifiedrelaywhenenabled()" + }, + { + "label": "OutboundRelayP2pKind", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L63", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_outboundrelayp2pkind", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "outboundrelayp2pkind" + }, + { + "label": "RelayOutboundSoftState", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L65", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_relayoutboundsoftstate", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "relayoutboundsoftstate" + }, + { + "label": "relayOutboundSoftByHandshake", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L73", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_relayoutboundsoftbyhandshake", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "relayoutboundsoftbyhandshake" + }, + { + "label": "relaySendChainByHandshake", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L75", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_relaysendchainbyhandshake", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "relaysendchainbyhandshake" + }, + { + "label": "getRelayOutboundSoft()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L77", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_getrelayoutboundsoft", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "getrelayoutboundsoft()" + }, + { + "label": "reset429SlotOnSuccess()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L91", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_reset429slotonsuccess", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "reset429slotonsuccess()" + }, + { + "label": "sleep()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L98", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_sleep", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "sleep()" + }, + { + "label": "jittered429BackoffMs()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L103", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_jittered429backoffms", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "jittered429backoffms()" + }, + { + "label": "consume429BackoffDelayMs()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L109", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_consume429backoffdelayms", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "consume429backoffdelayms()" + }, + { + "label": "handleIceSendFailureAfterRetries()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L116", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_handleicesendfailureafterretries", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "handleicesendfailureafterretries()" + }, + { + "label": "discardP2pRelayOutboundSoftStateForHandshake()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L141", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_discardp2prelayoutboundsoftstateforhandshake", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "discardp2prelayoutboundsoftstateforhandshake()" + }, + { + "label": "resetP2pSignalRelayOutboundStateForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L148", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_resetp2psignalrelayoutboundstatefortests", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "resetp2psignalrelayoutboundstatefortests()" + }, + { + "label": "withRelayOutboundQueue()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L154", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_withrelayoutboundqueue", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "withrelayoutboundqueue()" + }, + { + "label": "coordinationBaseUrl()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L168", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_coordinationbaseurl", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "coordinationbaseurl()" + }, + { + "label": "parseCoordinationP2pSignalPostError()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L174", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_parsecoordinationp2psignalposterror", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "parsecoordinationp2psignalposterror()" + }, + { + "label": "jwtExpMsFromBearer()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L194", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_jwtexpmsfrombearer", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "jwtexpmsfrombearer()" + }, + { + "label": "accountEmailDomainHintFromBearer()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L207", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_accountemaildomainhintfrombearer", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "accountemaildomainhintfrombearer()" + }, + { + "label": "logHostAiRelayPostFailed()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L221", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_loghostairelaypostfailed", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "loghostairelaypostfailed()" + }, + { + "label": "shouldSendHostAiP2pSignalViaCoordination()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L269", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_shouldsendhostaip2psignalviacoordination", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "shouldsendhostaip2psignalviacoordination()" + }, + { + "label": "signalTypeForKind()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L278", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_signaltypeforkind", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "signaltypeforkind()" + }, + { + "label": "buildP2pSignalBody()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L284", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_buildp2psignalbody", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "buildp2psignalbody()" + }, + { + "label": "logP2pSignalSchemaDebug()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L316", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_logp2psignalschemadebug", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "logp2psignalschemadebug()" + }, + { + "label": "mapSignalingHttpToTerminalCode()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L359", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_mapsignalinghttptoterminalcode", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "mapsignalinghttptoterminalcode()" + }, + { + "label": "p2pSignalRelayPostTestHooks", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L381", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_p2psignalrelayposttesthooks", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "p2psignalrelayposttesthooks" + }, + { + "label": "postP2pSignalToCoordination()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L392", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_postp2psignaltocoordination", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "postp2psignaltocoordination()" + }, + { + "label": "postP2pSignalToCoordinationWithOptionalAuthRetry()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L413", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_postp2psignaltocoordinationwithoptionalauthretry", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "postp2psignaltocoordinationwithoptionalauthretry()" + }, + { + "label": "sendHostAiP2pSignalOutbound()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L445", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_sendhostaip2psignaloutbound", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "sendhostaip2psignaloutbound()" + }, + { + "label": "HostAiBeapAdSignalOllamaCapabilities", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L717", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_hostaibeapadsignalollamacapabilities", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "hostaibeapadsignalollamacapabilities" + }, + { + "label": "buildHostAiDirectBeapAdSignalBody()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L731", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_buildhostaidirectbeapadsignalbody", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "buildhostaidirectbeapadsignalbody()" + }, + { + "label": "postHostAiDirectBeapAdToCoordination()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L787", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_posthostaidirectbeapadtocoordination", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "posthostaidirectbeapadtocoordination()" + }, + { + "label": "buildHostAiDirectBeapAdRequestBody()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L906", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_buildhostaidirectbeapadrequestbody", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "buildhostaidirectbeapadrequestbody()" + }, + { + "label": "postHostAiDirectBeapAdRequestToCoordination()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L931", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_posthostaidirectbeapadrequesttocoordination", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "posthostaidirectbeapadrequesttocoordination()" + }, + { + "label": "p2pSignalWireSchemaVersion.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalWireSchemaVersion.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psignalwireschemaversion", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "p2psignalwireschemaversion.ts" + }, + { + "label": "P2P_SIGNAL_WIRE_SCHEMA_VERSION", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalWireSchemaVersion.ts", + "source_location": "L7", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psignalwireschemaversion_p2p_signal_wire_schema_version", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "p2p_signal_wire_schema_version" + }, + { + "label": "logP2pSignalWireSchemaStartupLine()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalWireSchemaVersion.ts", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psignalwireschemaversion_logp2psignalwireschemastartupline", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "logp2psignalwireschemastartupline()" + }, + { + "label": "resetP2pSignalWireSchemaLogForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalWireSchemaVersion.ts", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_p2psignalwireschemaversion_resetp2psignalwireschemalogfortests", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "resetp2psignalwireschemalogfortests()" + }, + { + "label": "pendingRequests.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/pendingRequests.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_pendingrequests", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "pendingrequests.ts" + }, + { + "label": "PendingResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/pendingRequests.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_pendingrequests_pendingresult", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "pendingresult" + }, + { + "label": "pending", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/pendingRequests.ts", + "source_location": "L9", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_pendingrequests_pending", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "pending" + }, + { + "label": "registerInternalInferenceRequest()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/pendingRequests.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_pendingrequests_registerinternalinferencerequest", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "registerinternalinferencerequest()" + }, + { + "label": "resolveInternalInferenceByRequestId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/pendingRequests.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_pendingrequests_resolveinternalinferencebyrequestid", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "resolveinternalinferencebyrequestid()" + }, + { + "label": "rejectInternalInferenceByRequestId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/pendingRequests.ts", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_pendingrequests_rejectinternalinferencebyrequestid", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "rejectinternalinferencebyrequestid()" + }, + { + "label": "_resetPendingForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/pendingRequests.ts", + "source_location": "L50", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_pendingrequests_resetpendingfortests", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "_resetpendingfortests()" + }, + { + "label": "policy.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_policy", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "policy.ts" + }, + { + "label": "samePrincipal()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_policy_sameprincipal", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "sameprincipal()" + }, + { + "label": "handshakeSamePrincipal()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_policy_handshakesameprincipal", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "handshakesameprincipal()" + }, + { + "label": "normHostSandboxRole()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_policy_normhostsandboxrole", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "normhostsandboxrole()" + }, + { + "label": "coordinationDeviceIdForHandshakeDeviceRole()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_policy_coordinationdeviceidforhandshakedevicerole", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "coordinationdeviceidforhandshakedevicerole()" + }, + { + "label": "InternalHostAiPeerRolesOk", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L44", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_policy_internalhostaipeerrolesok", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "internalhostaipeerrolesok" + }, + { + "label": "InternalHostAiPeerRolesFail", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L53", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_policy_internalhostaipeerrolesfail", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "internalhostaipeerrolesfail" + }, + { + "label": "DeriveInternalHostAiPeerRolesResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L59", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerrolesresult", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "deriveinternalhostaipeerrolesresult" + }, + { + "label": "deriveInternalHostAiPeerRoles()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "deriveinternalhostaipeerroles()" + }, + { + "label": "localDeviceRole()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L110", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_policy_localdevicerole", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "localdevicerole()" + }, + { + "label": "peerDeviceRole()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L117", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_policy_peerdevicerole", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "peerdevicerole()" + }, + { + "label": "isInternalHandshakeInitiatorDevice()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L128", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_policy_isinternalhandshakeinitiatordevice", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "isinternalhandshakeinitiatordevice()" + }, + { + "label": "peerCoordinationDeviceId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L134", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_policy_peercoordinationdeviceid", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "peercoordinationdeviceid()" + }, + { + "label": "localCoordinationDeviceId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L142", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_policy_localcoordinationdeviceid", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "localcoordinationdeviceid()" + }, + { + "label": "isCoordinationServiceEndpointUrl()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L150", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_policy_iscoordinationserviceendpointurl", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "iscoordinationserviceendpointurl()" + }, + { + "label": "p2pEndpointKind()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L175", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointkind", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "p2pendpointkind()" + }, + { + "label": "P2pEndpointProbeLogKind", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L194", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointprobelogkind", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "p2pendpointprobelogkind" + }, + { + "label": "p2pEndpointKindForProbeLog()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L196", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointkindforprobelog", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "p2pendpointkindforprobelog()" + }, + { + "label": "P2pMvpEndpointClass", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L220", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_policy_p2pmvpendpointclass", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "p2pmvpendpointclass" + }, + { + "label": "p2pEndpointMvpClass()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L222", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointmvpclass", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "p2pendpointmvpclass()" + }, + { + "label": "assertP2pEndpointDirect()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L239", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_policy_assertp2pendpointdirect", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "assertp2pendpointdirect()" + }, + { + "label": "internalInferenceEndpointGateOk()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L258", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_policy_internalinferenceendpointgateok", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "internalinferenceendpointgateok()" + }, + { + "label": "canPostInternalInferenceHttpToP2pEndpointIngest()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L282", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_policy_canpostinternalinferencehttptop2pendpointingest", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "canpostinternalinferencehttptop2pendpointingest()" + }, + { + "label": "assertRecordForServiceRpc()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L289", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "assertrecordforservicerpc()" + }, + { + "label": "assertLedgerRolesSandboxToHost()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L308", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_policy_assertledgerrolessandboxtohost", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "assertledgerrolessandboxtohost()" + }, + { + "label": "assertSandboxRequestToHost()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L320", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_policy_assertsandboxrequesttohost", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "assertsandboxrequesttohost()" + }, + { + "label": "assertHostReceivesRequestFromSandbox()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L324", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_policy_asserthostreceivesrequestfromsandbox", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "asserthostreceivesrequestfromsandbox()" + }, + { + "label": "assertHostSendsResultToSandbox()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L340", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_policy_asserthostsendsresulttosandbox", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "asserthostsendsresulttosandbox()" + }, + { + "label": "assertSandboxReceivesResultFromHost()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L349", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_policy_assertsandboxreceivesresultfromhost", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "assertsandboxreceivesresultfromhost()" + }, + { + "label": "outboundP2pBearerToCounterpartyIngest()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L377", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_policy_outboundp2pbearertocounterpartyingest", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "outboundp2pbearertocounterpartyingest()" + }, + { + "label": "hostAiSandboxToHostRequestDeviceIds()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L385", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_policy_hostaisandboxtohostrequestdeviceids", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "hostaisandboxtohostrequestdeviceids()" + }, + { + "label": "hostAiHostToSandboxAsHost()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L408", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_policy_hostaihosttosandboxashost", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "hostaihosttosandboxashost()" + }, + { + "label": "relayP2pSignalHandler.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler", + "community": 248, + "community_name": "Internal Inference", + "norm_label": "relayp2psignalhandler.ts" + }, + { + "label": "FORBIDDEN_KEYS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L18", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_forbidden_keys", + "community": 248, + "community_name": "Internal Inference", + "norm_label": "forbidden_keys" + }, + { + "label": "WEBRTC_SIGNAL_TYPES", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L20", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_webrtc_signal_types", + "community": 248, + "community_name": "Internal Inference", + "norm_label": "webrtc_signal_types" + }, + { + "label": "relayBeapAdHasHostAiCapabilities()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_relaybeapadhashostaicapabilities", + "community": 248, + "community_name": "Internal Inference", + "norm_label": "relaybeapadhashostaicapabilities()" + }, + { + "label": "ALL_P2P_SIGNAL_TYPES", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L38", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_all_p2p_signal_types", + "community": 248, + "community_name": "Internal Inference", + "norm_label": "all_p2p_signal_types" + }, + { + "label": "P2pSignalDrop", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L40", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_p2psignaldrop", + "community": 248, + "community_name": "Internal Inference", + "norm_label": "p2psignaldrop" + }, + { + "label": "isWireSchemaVersionOne()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_iswireschemaversionone", + "community": 248, + "community_name": "Internal Inference", + "norm_label": "iswireschemaversionone()" + }, + { + "label": "parseIso()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L63", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_parseiso", + "community": 248, + "community_name": "Internal Inference", + "norm_label": "parseiso()" + }, + { + "label": "logHostAiSignalTtl()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L69", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_loghostaisignalttl", + "community": 248, + "community_name": "Internal Inference", + "norm_label": "loghostaisignalttl()" + }, + { + "label": "evaluateWebRtcInferenceSignalLifetime()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L106", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_evaluatewebrtcinferencesignallifetime", + "community": 248, + "community_name": "Internal Inference", + "norm_label": "evaluatewebrtcinferencesignallifetime()" + }, + { + "label": "handleHostAiDirectBeapAdRequestFromRelay()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L133", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_handlehostaidirectbeapadrequestfromrelay", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "handlehostaidirectbeapadrequestfromrelay()" + }, + { + "label": "tryHandleCoordinationP2pSignal()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L242", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_tryhandlecoordinationp2psignal", + "community": 248, + "community_name": "Internal Inference", + "norm_label": "tryhandlecoordinationp2psignal()" + }, + { + "label": "extractHandshakeId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L396", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_extracthandshakeid", + "community": 248, + "community_name": "Internal Inference", + "norm_label": "extracthandshakeid()" + }, + { + "label": "logDropped()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L404", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_logdropped", + "community": 248, + "community_name": "Internal Inference", + "norm_label": "logdropped()" + }, + { + "label": "resolveSandboxInferenceTarget.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "resolvesandboxinferencetarget.ts" + }, + { + "label": "SandboxInferenceTarget", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L59", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_sandboxinferencetarget", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "sandboxinferencetarget" + }, + { + "label": "invalidateLocalSandboxOllamaProbeCache()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L89", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_invalidatelocalsandboxollamaprobecache", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "invalidatelocalsandboxollamaprobecache()" + }, + { + "label": "probeLocalSandboxOllama()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L93", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_probelocalsandboxollama", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "probelocalsandboxollama()" + }, + { + "label": "resolveActiveSandboxToHostHandshakeId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L119", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_resolveactivesandboxtohosthandshakeid", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "resolveactivesandboxtohosthandshakeid()" + }, + { + "label": "ResolveSandboxInferenceTargetOptions", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L134", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_resolvesandboxinferencetargetoptions", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "resolvesandboxinferencetargetoptions" + }, + { + "label": "logResolveDecision()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L138", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_logresolvedecision", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "logresolvedecision()" + }, + { + "label": "crossDeviceTargetFromCandidate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L153", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_crossdevicetargetfromcandidate", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "crossdevicetargetfromcandidate()" + }, + { + "label": "resolveHandshakeRecordForRouting()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L169", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_resolvehandshakerecordforrouting", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "resolvehandshakerecordforrouting()" + }, + { + "label": "waitForLivePresenceAfterRedial()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L187", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_waitforlivepresenceafterredial", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "waitforlivepresenceafterredial()" + }, + { + "label": "crossDeviceRouteForEligibleHandshake()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L202", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_crossdevicerouteforeligiblehandshake", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "crossdevicerouteforeligiblehandshake()" + }, + { + "label": "resolveSandboxInferenceTarget()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L243", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_resolvesandboxinferencetarget", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "resolvesandboxinferencetarget()" + }, + { + "label": "sandboxHostAiDirectBeapAdRequest.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "sandboxhostaidirectbeapadrequest.ts" + }, + { + "label": "lastRepublishRequestAtByHandshake", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L25", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest_lastrepublishrequestatbyhandshake", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "lastrepublishrequestatbyhandshake" + }, + { + "label": "lastP2pOfferRequestByHandshake", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L29", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest_lastp2pofferrequestbyhandshake", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "lastp2pofferrequestbyhandshake" + }, + { + "label": "resetSandboxHostAiDirectBeapAdRequestStateForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest_resetsandboxhostaidirectbeapadrequeststatefortests", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "resetsandboxhostaidirectbeapadrequeststatefortests()" + }, + { + "label": "p2pTransportAlreadyAdvancing()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L37", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest_p2ptransportalreadyadvancing", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "p2ptransportalreadyadvancing()" + }, + { + "label": "maySendP2pOfferRequest()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest_maysendp2pofferrequest", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "maysendp2pofferrequest()" + }, + { + "label": "sandboxRequestHostAiP2pOfferAfterBeapAdAccepted()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L83", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest_sandboxrequesthostaip2pofferafterbeapadaccepted", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "sandboxrequesthostaip2pofferafterbeapadaccepted()" + }, + { + "label": "sandboxMaybeRequestHostDirectBeapAdvertisement()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L149", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest_sandboxmayberequesthostdirectbeapadvertisement", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "sandboxmayberequesthostdirectbeapadvertisement()" + }, + { + "label": "sandboxHostAiListRefreshDecision.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiListRefreshDecision.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostailistrefreshdecision", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "sandboxhostailistrefreshdecision.ts" + }, + { + "label": "SbxHostAiRefreshDecisionPayload", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiListRefreshDecision.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostailistrefreshdecision_sbxhostairefreshdecisionpayload", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "sbxhostairefreshdecisionpayload" + }, + { + "label": "logSbxHostAiRefreshDecision()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiListRefreshDecision.ts", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostailistrefreshdecision_logsbxhostairefreshdecision", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "logsbxhostairefreshdecision()" + }, + { + "label": "sandboxHostAiOllamaDirectCandidate.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectCandidate.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "sandboxhostaiollamadirectcandidate.ts" + }, + { + "label": "DEFAULT_ALLOWED_PORTS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectCandidate.ts", + "source_location": "L11", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_default_allowed_ports", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "default_allowed_ports" + }, + { + "label": "readAllowedPortsFromEnv()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectCandidate.ts", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_readallowedportsfromenv", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "readallowedportsfromenv()" + }, + { + "label": "portExplicitlyAllowed()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectCandidate.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_portexplicitlyallowed", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "portexplicitlyallowed()" + }, + { + "label": "sandboxLanIpv4Set()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectCandidate.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_sandboxlanipv4set", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "sandboxlanipv4set()" + }, + { + "label": "normalizeHostname()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectCandidate.ts", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_normalizehostname", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "normalizehostname()" + }, + { + "label": "isForbiddenLoopbackHostname()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectCandidate.ts", + "source_location": "L41", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_isforbiddenloopbackhostname", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "isforbiddenloopbackhostname()" + }, + { + "label": "SandboxOllamaDirectRouteCandidate", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectCandidate.ts", + "source_location": "L49", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_sandboxollamadirectroutecandidate", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "sandboxollamadirectroutecandidate" + }, + { + "label": "candidatesByHandshake", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectCandidate.ts", + "source_location": "L58", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_candidatesbyhandshake", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "candidatesbyhandshake" + }, + { + "label": "getSandboxOllamaDirectRouteCandidate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectCandidate.ts", + "source_location": "L60", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_getsandboxollamadirectroutecandidate", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "getsandboxollamadirectroutecandidate()" + }, + { + "label": "clearSandboxOllamaDirectRouteCandidatesForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectCandidate.ts", + "source_location": "L64", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_clearsandboxollamadirectroutecandidatesfortests", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "clearsandboxollamadirectroutecandidatesfortests()" + }, + { + "label": "SbxHostAiOllamaDirectSelectedLogPayload", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectCandidate.ts", + "source_location": "L68", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_sbxhostaiollamadirectselectedlogpayload", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "sbxhostaiollamadirectselectedlogpayload" + }, + { + "label": "logSbxHostAiOllamaDirectSelected()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectCandidate.ts", + "source_location": "L79", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_logsbxhostaiollamadirectselected", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "logsbxhostaiollamadirectselected()" + }, + { + "label": "parseAndValidateDirectBaseUrl()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectCandidate.ts", + "source_location": "L83", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_parseandvalidatedirectbaseurl", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "parseandvalidatedirectbaseurl()" + }, + { + "label": "evaluateSandboxHostAiOllamaDirectCore()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectCandidate.ts", + "source_location": "L133", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_evaluatesandboxhostaiollamadirectcore", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "evaluatesandboxhostaiollamadirectcore()" + }, + { + "label": "evaluateSandboxHostAiOllamaDirectFromCapabilitiesWire()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectCandidate.ts", + "source_location": "L213", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_evaluatesandboxhostaiollamadirectfromcapabilitieswire", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "evaluatesandboxhostaiollamadirectfromcapabilitieswire()" + }, + { + "label": "evaluateSandboxHostAiOllamaDirectFromPolicyResponse()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectCandidate.ts", + "source_location": "L235", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_evaluatesandboxhostaiollamadirectfrompolicyresponse", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "evaluatesandboxhostaiollamadirectfrompolicyresponse()" + }, + { + "label": "sandboxHostAiOllamaDirectSyntheticProbe.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectSyntheticProbe.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectsyntheticprobe", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "sandboxhostaiollamadirectsyntheticprobe.ts" + }, + { + "label": "hostComputerNameFromHandshakeRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectSyntheticProbe.ts", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectsyntheticprobe_hostcomputernamefromhandshakerecord", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "hostcomputernamefromhandshakerecord()" + }, + { + "label": "displayPairingFromDigits6()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectSyntheticProbe.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectsyntheticprobe_displaypairingfromdigits6", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "displaypairingfromdigits6()" + }, + { + "label": "buildSyntheticOkProbeFromOllamaDirectTags()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectSyntheticProbe.ts", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectsyntheticprobe_buildsyntheticokprobefromollamadirecttags", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "buildsyntheticokprobefromollamadirecttags()" + }, + { + "label": "sandboxHostAiOllamaDirectTags.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "sandboxhostaiollamadirecttags.ts" + }, + { + "label": "SandboxOllamaDirectRemoteModelEntry", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_sandboxollamadirectremotemodelentry", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "sandboxollamadirectremotemodelentry" + }, + { + "label": "SandboxOllamaDirectTagsClassification", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L24", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_sandboxollamadirecttagsclassification", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "sandboxollamadirecttagsclassification" + }, + { + "label": "SandboxOllamaDirectTagsFetchResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L30", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_sandboxollamadirecttagsfetchresult", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "sandboxollamadirecttagsfetchresult" + }, + { + "label": "CachedPayload", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L42", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_cachedpayload", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "cachedpayload" + }, + { + "label": "CacheEntry", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L44", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_cacheentry", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "cacheentry" + }, + { + "label": "buildOllamaDirectTagsCacheKey()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L51", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_buildollamadirecttagscachekey", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "buildollamadirecttagscachekey()" + }, + { + "label": "ttlMsForClassification()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L62", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_ttlmsforclassification", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "ttlmsforclassification()" + }, + { + "label": "cacheByKey", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L70", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_cachebykey", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "cachebykey" + }, + { + "label": "inflightByKey", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L71", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_inflightbykey", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "inflightbykey" + }, + { + "label": "clearSandboxOllamaDirectTagsCacheForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L73", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_clearsandboxollamadirecttagscachefortests", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "clearsandboxollamadirecttagscachefortests()" + }, + { + "label": "invalidateSandboxOllamaDirectTagsCacheForHandshake()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L79", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_invalidatesandboxollamadirecttagscacheforhandshake", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "invalidatesandboxollamadirecttagscacheforhandshake()" + }, + { + "label": "mapTagsToRemoteModels()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L90", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_maptagstoremotemodels", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "maptagstoremotemodels()" + }, + { + "label": "fetchTagsPayloadOutbound()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L113", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_fetchtagspayloadoutbound", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "fetchtagspayloadoutbound()" + }, + { + "label": "logOutboundTags()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L262", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_logoutboundtags", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "logoutboundtags()" + }, + { + "label": "logCacheHit()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L278", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_logcachehit", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "logcachehit()" + }, + { + "label": "logInflightReuse()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L291", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_loginflightreuse", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "loginflightreuse()" + }, + { + "label": "fetchSandboxOllamaDirectTags()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L298", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_fetchsandboxollamadirecttags", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "fetchsandboxollamadirecttags()" + }, + { + "label": "sandboxHostAiRouteSelectCaps.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiRouteSelectCaps.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostairouteselectcaps", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "sandboxhostairouteselectcaps.ts" + }, + { + "label": "logHostAiRouteSelectAfterSandboxCapabilitiesWire()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiRouteSelectCaps.ts", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostairouteselectcaps_loghostairouteselectaftersandboxcapabilitieswire", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "loghostairouteselectaftersandboxcapabilitieswire()" + }, + { + "label": "sandboxHostChat.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostChat.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostchat", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "sandboxhostchat.ts" + }, + { + "label": "SandboxHostChatMessage", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostChat.ts", + "source_location": "L16", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostchat_sandboxhostchatmessage", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "sandboxhostchatmessage" + }, + { + "label": "SandboxHostChatResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostChat.ts", + "source_location": "L21", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostchat_sandboxhostchatresult", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "sandboxhostchatresult" + }, + { + "label": "clampTimeoutMs()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostChat.ts", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostchat_clamptimeoutms", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "clamptimeoutms()" + }, + { + "label": "runSandboxHostInferenceChat()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostChat.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostchat_runsandboxhostinferencechat", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "runsandboxhostinferencechat()" + }, + { + "label": "sandboxHostRosterSelectionMigration.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostRosterSelectionMigration.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostrosterselectionmigration", + "community": 120, + "community_name": "Internal Inference LLM Email", + "norm_label": "sandboxhostrosterselectionmigration.ts" + }, + { + "label": "migrateStoredSelectionForReceivedHostRoster()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostRosterSelectionMigration.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostrosterselectionmigration_migratestoredselectionforreceivedhostroster", + "community": 120, + "community_name": "Internal Inference LLM Email", + "norm_label": "migratestoredselectionforreceivedhostroster()" + }, + { + "label": "sandboxHostUi.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "sandboxhostui.ts" + }, + { + "label": "lastHostAiSelectorTargetStageByHandshake", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L71", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_lasthostaiselectortargetstagebyhandshake", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "lasthostaiselectortargetstagebyhandshake" + }, + { + "label": "SandboxHostInferenceCandidate", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L74", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_sandboxhostinferencecandidate", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "sandboxhostinferencecandidate" + }, + { + "label": "peerHostComputerName()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L86", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_peerhostcomputername", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "peerhostcomputername()" + }, + { + "label": "formatPairingCode()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L99", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_formatpairingcode", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "formatpairingcode()" + }, + { + "label": "hostAiCapabilitiesAttemptTerminalNoPolicyGet()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L107", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_hostaicapabilitiesattemptterminalnopolicyget", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "hostaicapabilitiesattemptterminalnopolicyget()" + }, + { + "label": "policyProbeUrlFromP2pIngest()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L120", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_policyprobeurlfromp2pingest", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "policyprobeurlfromp2pingest()" + }, + { + "label": "endpointHostLabel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L134", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_endpointhostlabel", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "endpointhostlabel()" + }, + { + "label": "listSandboxHostInferenceCandidates()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L147", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_listsandboxhostinferencecandidates", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "listsandboxhostinferencecandidates()" + }, + { + "label": "P2pCapabilityProbeLetter", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L178", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_p2pcapabilityprobeletter", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "p2pcapabilityprobeletter" + }, + { + "label": "P2P_CAPABILITY_PROBE", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L197", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_p2p_capability_probe", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "p2p_capability_probe" + }, + { + "label": "probeFailureInternalInferenceCodeFromCapabilityAttempt()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L228", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probefailureinternalinferencecodefromcapabilityattempt", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "probefailureinternalinferencecodefromcapabilityattempt()" + }, + { + "label": "isPrivateIPv4Host()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L296", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_isprivateipv4host", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "isprivateipv4host()" + }, + { + "label": "hostFromP2pUrlForProbe()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L307", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_hostfromp2purlforprobe", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "hostfromp2purlforprobe()" + }, + { + "label": "safeP2pLogMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L317", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_safep2plogmessage", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "safep2plogmessage()" + }, + { + "label": "classifyP2pCapabilityProbeFailure()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L329", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_classifyp2pcapabilityprobefailure", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "classifyp2pcapabilityprobefailure()" + }, + { + "label": "HostInternalInferencePolicyPayload", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L425", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_hostinternalinferencepolicypayload", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "hostinternalinferencepolicypayload" + }, + { + "label": "ProbeHostPolicyResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L450", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostpolicyresult", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "probehostpolicyresult" + }, + { + "label": "probeHostInferencePolicyFromSandboxInFlight", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L497", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboxinflight", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "probehostinferencepolicyfromsandboxinflight" + }, + { + "label": "resetProbeHostInferencePolicyInFlightForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L500", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_resetprobehostinferencepolicyinflightfortests", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "resetprobehostinferencepolicyinflightfortests()" + }, + { + "label": "probePolicyFailureFromDcWait()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L504", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probepolicyfailurefromdcwait", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "probepolicyfailurefromdcwait()" + }, + { + "label": "displayPairingFromDigits6()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L545", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_displaypairingfromdigits6", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "displaypairingfromdigits6()" + }, + { + "label": "normalizeCapabilityWireInferenceErrorCode()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L552", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_normalizecapabilitywireinferenceerrorcode", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "normalizecapabilitywireinferenceerrorcode()" + }, + { + "label": "mapCapabilitiesWireToProbe()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L564", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_mapcapabilitieswiretoprobe", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "mapcapabilitieswiretoprobe()" + }, + { + "label": "p2pProbeLetterForOkInferenceCode()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L710", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_p2pprobeletterforokinferencecode", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "p2pprobeletterforokinferencecode()" + }, + { + "label": "postInternalInferenceCapabilitiesRequest()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L727", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_postinternalinferencecapabilitiesrequest", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "postinternalinferencecapabilitiesrequest()" + }, + { + "label": "probeHostInferencePolicyFromSandbox()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L745", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandbox", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "probehostinferencepolicyfromsandbox()" + }, + { + "label": "probeHostInferencePolicyFromSandboxImpl()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L767", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboximpl", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "probehostinferencepolicyfromsandboximpl()" + }, + { + "label": "sandboxOllamaDirectCapsRefresh.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxOllamaDirectCapsRefresh.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxollamadirectcapsrefresh", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "sandboxollamadirectcapsrefresh.ts" + }, + { + "label": "refreshSandboxOllamaDirectFromHostCapabilities()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxOllamaDirectCapsRefresh.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxollamadirectcapsrefresh_refreshsandboxollamadirectfromhostcapabilities", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "refreshsandboxollamadirectfromhostcapabilities()" + }, + { + "label": "sandboxOllamaDirectTransport.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxOllamaDirectTransport.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxollamadirecttransport", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "sandboxollamadirecttransport.ts" + }, + { + "label": "classifyOllamaDirectFetchTransportFailure()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxOllamaDirectTransport.ts", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxollamadirecttransport_classifyollamadirectfetchtransportfailure", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "classifyollamadirectfetchtransportfailure()" + }, + { + "label": "sandboxRequest.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxRequest.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxrequest", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "sandboxrequest.ts" + }, + { + "label": "SandboxPongTestResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxRequest.ts", + "source_location": "L15", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxrequest_sandboxpongtestresult", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "sandboxpongtestresult" + }, + { + "label": "runSandboxPongTestFromHostHandshake()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxRequest.ts", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_sandboxrequest_runsandboxpongtestfromhosthandshake", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "runsandboxpongtestfromhosthandshake()" + }, + { + "label": "decideInternalInferenceTransport.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "decideinternalinferencetransport.ts" + }, + { + "label": "HostAiOperationContext", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L47", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_hostaioperationcontext", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "hostaioperationcontext" + }, + { + "label": "HostAiSelectorPhase", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L49", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_hostaiselectorphase", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "hostaiselectorphase" + }, + { + "label": "HostAiPreferredTransport", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L67", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_hostaipreferredtransport", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "hostaipreferredtransport" + }, + { + "label": "HandshakeDerivedRoles", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L69", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_handshakederivedroles", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "handshakederivedroles" + }, + { + "label": "LegacyEndpointInfo", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L77", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_legacyendpointinfo", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "legacyendpointinfo" + }, + { + "label": "HostPolicyState", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L85", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_hostpolicystate", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "hostpolicystate" + }, + { + "label": "HostAiSessionStateInput", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L90", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_hostaisessionstateinput", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "hostaisessionstateinput" + }, + { + "label": "HostAiTransportDeciderInput", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L96", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_hostaitransportdeciderinput", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "hostaitransportdeciderinput" + }, + { + "label": "HostAiTransportDeciderResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L127", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_hostaitransportdeciderresult", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "hostaitransportdeciderresult" + }, + { + "label": "HostAiTransportAuthoritative", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L162", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_hostaitransportauthoritative", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "hostaitransportauthoritative" + }, + { + "label": "mapTrustReasonToInferenceFailureCode()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L175", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_maptrustreasontoinferencefailurecode", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "maptrustreasontoinferencefailurecode()" + }, + { + "label": "decideHostAiTransport()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L190", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_decidehostaitransport", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "decidehostaitransport()" + }, + { + "label": "p2pStackEnabled()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L215", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_p2pstackenabled", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "p2pstackenabled()" + }, + { + "label": "isPrivateLanHttpBeapUrl()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L224", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_isprivatelanhttpbeapurl", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "isprivatelanhttpbeapurl()" + }, + { + "label": "isInternalTrustedSandboxHost()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L248", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_isinternaltrustedsandboxhost", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "isinternaltrustedsandboxhost()" + }, + { + "label": "HostAdvertisedPeek", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L256", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_hostadvertisedpeek", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "hostadvertisedpeek" + }, + { + "label": "buildPeerDirectAdvertisement()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L263", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildpeerdirectadvertisement", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "buildpeerdirectadvertisement()" + }, + { + "label": "buildHostAiCanonicalRouteResolveInputForDecider()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L296", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildhostaicanonicalrouteresolveinputfordecider", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "buildhostaicanonicalrouteresolveinputfordecider()" + }, + { + "label": "computeHostAiRouteFieldsForDecider()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L350", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_computehostairoutefieldsfordecider", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "computehostairoutefieldsfordecider()" + }, + { + "label": "hostAiRouteSnap()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L482", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_hostairoutesnap", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "hostairoutesnap()" + }, + { + "label": "decideInternalInferenceTransport()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L504", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_decideinternalinferencetransport", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "decideinternalinferencetransport()" + }, + { + "label": "buildSessionStateForHostAiDecider()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L961", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildsessionstateforhostaidecider", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "buildsessionstateforhostaidecider()" + }, + { + "label": "deriveHostAiHandshakeRoles()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L972", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_derivehostaihandshakeroles", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "derivehostaihandshakeroles()" + }, + { + "label": "buildLegacyEndpointInfoForDecider()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L994", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildlegacyendpointinfofordecider", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "buildlegacyendpointinfofordecider()" + }, + { + "label": "buildHostAiTransportDeciderInput()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L1017", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildhostaitransportdeciderinput", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "buildhostaitransportdeciderinput()" + }, + { + "label": "buildHostAiTransportDeciderInputAsync()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L1056", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildhostaitransportdeciderinputasync", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "buildhostaitransportdeciderinputasync()" + }, + { + "label": "RFC-1918", + "file_type": "concept", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L220", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_ts_docref_rfc_1918", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "rfc-1918" + }, + { + "label": "hostAiRouteCandidate.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteCandidate.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate", + "community": 109, + "community_name": "Internal Inference Transport", + "norm_label": "hostairoutecandidate.ts" + }, + { + "label": "HostAiRouteCandidateTransport", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteCandidate.ts", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_hostairoutecandidatetransport", + "community": 109, + "community_name": "Internal Inference Transport", + "norm_label": "hostairoutecandidatetransport" + }, + { + "label": "HostAiRouteCandidateSource", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteCandidate.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_hostairoutecandidatesource", + "community": 109, + "community_name": "Internal Inference Transport", + "norm_label": "hostairoutecandidatesource" + }, + { + "label": "HostAiRouteCandidateProvenance", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteCandidate.ts", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_hostairoutecandidateprovenance", + "community": 109, + "community_name": "Internal Inference Transport", + "norm_label": "hostairoutecandidateprovenance" + }, + { + "label": "HostAiRouteCandidate", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteCandidate.ts", + "source_location": "L31", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_hostairoutecandidate", + "community": 109, + "community_name": "Internal Inference Transport", + "norm_label": "hostairoutecandidate" + }, + { + "label": "HostAiResolvedRoute", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteCandidate.ts", + "source_location": "L48", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_hostairesolvedroute", + "community": 109, + "community_name": "Internal Inference Transport", + "norm_label": "hostairesolvedroute" + }, + { + "label": "HostAiRouteResolveDiagnostics", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteCandidate.ts", + "source_location": "L50", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_hostairouteresolvediagnostics", + "community": 109, + "community_name": "Internal Inference Transport", + "norm_label": "hostairouteresolvediagnostics" + }, + { + "label": "HostAiRouteResolveOk", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteCandidate.ts", + "source_location": "L57", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_hostairouteresolveok", + "community": 109, + "community_name": "Internal Inference Transport", + "norm_label": "hostairouteresolveok" + }, + { + "label": "HostAiRouteResolveFailure", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteCandidate.ts", + "source_location": "L62", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_hostairouteresolvefailure", + "community": 109, + "community_name": "Internal Inference Transport", + "norm_label": "hostairouteresolvefailure" + }, + { + "label": "HostAiRouteResolveResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteCandidate.ts", + "source_location": "L69", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_hostairouteresolveresult", + "community": 109, + "community_name": "Internal Inference Transport", + "norm_label": "hostairouteresolveresult" + }, + { + "label": "terminalIdentityCodes", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteCandidate.ts", + "source_location": "L71", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_terminalidentitycodes", + "community": 109, + "community_name": "Internal Inference Transport", + "norm_label": "terminalidentitycodes" + }, + { + "label": "hostAiRouteFailureCodeIsTerminalIdentityProvenance()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteCandidate.ts", + "source_location": "L88", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_hostairoutefailurecodeisterminalidentityprovenance", + "community": 109, + "community_name": "Internal Inference Transport", + "norm_label": "hostairoutefailurecodeisterminalidentityprovenance()" + }, + { + "label": "hostAiDcCapabilityResultBlocksHttpFallback()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteCandidate.ts", + "source_location": "L96", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_hostaidccapabilityresultblockshttpfallback", + "community": 109, + "community_name": "Internal Inference Transport", + "norm_label": "hostaidccapabilityresultblockshttpfallback()" + }, + { + "label": "HostAiProbeTerminalInput", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteCandidate.ts", + "source_location": "L110", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_hostaiprobeterminalinput", + "community": 109, + "community_name": "Internal Inference Transport", + "norm_label": "hostaiprobeterminalinput" + }, + { + "label": "isHostAiProbeTerminalNoPolicyFallback()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteCandidate.ts", + "source_location": "L121", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_ishostaiprobeterminalnopolicyfallback", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "ishostaiprobeterminalnopolicyfallback()" + }, + { + "label": "hostAiRouteCandidateBelongsToPeerHost()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteCandidate.ts", + "source_location": "L135", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_hostairoutecandidatebelongstopeerhost", + "community": 109, + "community_name": "Internal Inference Transport", + "norm_label": "hostairoutecandidatebelongstopeerhost()" + }, + { + "label": "hostAiRouteCandidateBelongsToLocalDevice()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteCandidate.ts", + "source_location": "L144", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_hostairoutecandidatebelongstolocaldevice", + "community": 109, + "community_name": "Internal Inference Transport", + "norm_label": "hostairoutecandidatebelongstolocaldevice()" + }, + { + "label": "hostAiRouteCandidateIsDirectHttp()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteCandidate.ts", + "source_location": "L150", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_hostairoutecandidateisdirecthttp", + "community": 109, + "community_name": "Internal Inference Transport", + "norm_label": "hostairoutecandidateisdirecthttp()" + }, + { + "label": "hostAiRouteCandidateIsTerminalIdentityProvenanceFailure()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteCandidate.ts", + "source_location": "L158", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_hostairoutecandidateisterminalidentityprovenancefailure", + "community": 109, + "community_name": "Internal Inference Transport", + "norm_label": "hostairoutecandidateisterminalidentityprovenancefailure()" + }, + { + "label": "hostAiRouteCandidateMayBeDialed()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteCandidate.ts", + "source_location": "L167", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_hostairoutecandidatemaybedialed", + "community": 109, + "community_name": "Internal Inference Transport", + "norm_label": "hostairoutecandidatemaybedialed()" + }, + { + "label": "hostAiRouteResolve.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve", + "community": 109, + "community_name": "Internal Inference Transport", + "norm_label": "hostairouteresolve.ts" + }, + { + "label": "HostAiPeerAdvertisementOrigin", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_hostaipeeradvertisementorigin", + "community": 109, + "community_name": "Internal Inference Transport", + "norm_label": "hostaipeeradvertisementorigin" + }, + { + "label": "HostAiPeerDirectAdvertisement", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_hostaipeerdirectadvertisement", + "community": 109, + "community_name": "Internal Inference Transport", + "norm_label": "hostaipeerdirectadvertisement" + }, + { + "label": "HostAiWebrtcRouteState", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L27", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_hostaiwebrtcroutestate", + "community": 109, + "community_name": "Internal Inference Transport", + "norm_label": "hostaiwebrtcroutestate" + }, + { + "label": "HostAiRelayRouteState", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L33", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_hostairelayroutestate", + "community": 109, + "community_name": "Internal Inference Transport", + "norm_label": "hostairelayroutestate" + }, + { + "label": "HostAiCanonicalRouteResolveInput", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L44", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_hostaicanonicalrouteresolveinput", + "community": 109, + "community_name": "Internal Inference Transport", + "norm_label": "hostaicanonicalrouteresolveinput" + }, + { + "label": "HostAiRouteResolveLogPayload", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L60", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_hostairouteresolvelogpayload", + "community": 109, + "community_name": "Internal Inference Transport", + "norm_label": "hostairouteresolvelogpayload" + }, + { + "label": "HostAiRouteResolver", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L80", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_hostairouteresolver", + "community": 109, + "community_name": "Internal Inference Transport", + "norm_label": "hostairouteresolver" + }, + { + "label": "normUrl()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L82", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_normurl", + "community": 109, + "community_name": "Internal Inference Transport", + "norm_label": "normurl()" + }, + { + "label": "urlMatchesLocalBeap()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L88", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_urlmatcheslocalbeap", + "community": 109, + "community_name": "Internal Inference Transport", + "norm_label": "urlmatcheslocalbeap()" + }, + { + "label": "candidateCount()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L95", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_candidatecount", + "community": 109, + "community_name": "Internal Inference Transport", + "norm_label": "candidatecount()" + }, + { + "label": "webrtcViable()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L104", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_webrtcviable", + "community": 109, + "community_name": "Internal Inference Transport", + "norm_label": "webrtcviable()" + }, + { + "label": "directHttpViable()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L114", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_directhttpviable", + "community": 109, + "community_name": "Internal Inference Transport", + "norm_label": "directhttpviable()" + }, + { + "label": "hostAiCanonicalDirectHttpViable()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L125", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_hostaicanonicaldirecthttpviable", + "community": 109, + "community_name": "Internal Inference Transport", + "norm_label": "hostaicanonicaldirecthttpviable()" + }, + { + "label": "relayViable()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L134", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_relayviable", + "community": 109, + "community_name": "Internal Inference Transport", + "norm_label": "relayviable()" + }, + { + "label": "adSourceToCandidateSource()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L138", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_adsourcetocandidatesource", + "community": 109, + "community_name": "Internal Inference Transport", + "norm_label": "adsourcetocandidatesource()" + }, + { + "label": "emitResolveLog()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L142", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_emitresolvelog", + "community": 109, + "community_name": "Internal Inference Transport", + "norm_label": "emitresolvelog()" + }, + { + "label": "fail()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L148", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_fail", + "community": 109, + "community_name": "Internal Inference Transport", + "norm_label": "fail()" + }, + { + "label": "resolveHostAiRoute()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L200", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_resolvehostairoute", + "community": 109, + "community_name": "Internal Inference Transport", + "norm_label": "resolvehostairoute()" + }, + { + "label": "hostAiTransportLog.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiTransportLog.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransportlog", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "hostaitransportlog.ts" + }, + { + "label": "shouldLogHostAiTransport()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiTransportLog.ts", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransportlog_shouldloghostaitransport", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "shouldloghostaitransport()" + }, + { + "label": "logHostAiTransportChoose()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiTransportLog.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransportlog_loghostaitransportchoose", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "loghostaitransportchoose()" + }, + { + "label": "logHostAiTransportFallback()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiTransportLog.ts", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransportlog_loghostaitransportfallback", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "loghostaitransportfallback()" + }, + { + "label": "logHostAiTransportUnavailable()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiTransportLog.ts", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransportlog_loghostaitransportunavailable", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "loghostaitransportunavailable()" + }, + { + "label": "hostAiTransportTypes.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiTransportTypes.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransporttypes", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "hostaitransporttypes.ts" + }, + { + "label": "HostAiTransport", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiTransportTypes.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransporttypes_hostaitransport", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "hostaitransport" + }, + { + "label": "HostAiTransportPreference", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiTransportTypes.ts", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransporttypes_hostaitransportpreference", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "hostaitransportpreference" + }, + { + "label": "HostAiTransportLogReason", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiTransportTypes.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransporttypes_hostaitransportlogreason", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "hostaitransportlogreason" + }, + { + "label": "HostAiTransportIntent", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiTransportTypes.ts", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransporttypes_hostaitransportintent", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "hostaitransportintent" + }, + { + "label": "inferenceDirectHttpTrust.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/inferenceDirectHttpTrust.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_inferencedirecthttptrust", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "inferencedirecthttptrust.ts" + }, + { + "label": "InferenceDirectHttpTrustReason", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/inferenceDirectHttpTrust.ts", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_inferencedirecthttptrust_inferencedirecthttptrustreason", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "inferencedirecthttptrustreason" + }, + { + "label": "isPrivateLanHttpBeapUrl()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/inferenceDirectHttpTrust.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_inferencedirecthttptrust_isprivatelanhttpbeapurl", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "isprivatelanhttpbeapurl()" + }, + { + "label": "rolesSandboxToHost()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/inferenceDirectHttpTrust.ts", + "source_location": "L62", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_inferencedirecthttptrust_rolessandboxtohost", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "rolessandboxtohost()" + }, + { + "label": "inferenceDirectHttpTrust()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/inferenceDirectHttpTrust.ts", + "source_location": "L66", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_inferencedirecthttptrust_inferencedirecthttptrust", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "inferencedirecthttptrust()" + }, + { + "label": "internalInferenceTransport.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "internalinferencetransport.ts" + }, + { + "label": "logSbxHostAiModelSourceAfterSandboxCapsWire()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L65", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_logsbxhostaimodelsourceaftersandboxcapswire", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "logsbxhostaimodelsourceaftersandboxcapswire()" + }, + { + "label": "hostAiVerifiedHttpForHostSendResult()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L111", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_hostaiverifiedhttpforhostsendresult", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "hostaiverifiedhttpforhostsendresult()" + }, + { + "label": "logHostAiRouteSelectFromDecider()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L125", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_loghostairouteselectfromdecider", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "loghostairouteselectfromdecider()" + }, + { + "label": "parseBeapIngestErrorJsonCode()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L177", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_parsebeapingesterrorjsoncode", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "parsebeapingesterrorjsoncode()" + }, + { + "label": "emitTransportDiagnostics()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L201", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_emittransportdiagnostics", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "emittransportdiagnostics()" + }, + { + "label": "HostAiTransportState", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L241", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_hostaitransportstate", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "hostaitransportstate" + }, + { + "label": "_state", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L250", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_state", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "_state" + }, + { + "label": "touchState()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L252", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_touchstate", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "touchstate()" + }, + { + "label": "getTransportState()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L269", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_gettransportstate", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "gettransportstate()" + }, + { + "label": "refreshTransportState()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L273", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_refreshtransportstate", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "refreshtransportstate()" + }, + { + "label": "ListHostCapabilitiesOpts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L286", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_listhostcapabilitiesopts", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "listhostcapabilitiesopts" + }, + { + "label": "redactP2pLogLine()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L298", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_redactp2plogline", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "redactp2plogline()" + }, + { + "label": "hostAiDiagnosticsFromFailedProv()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L309", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_hostaidiagnosticsfromfailedprov", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "hostaidiagnosticsfromfailedprov()" + }, + { + "label": "hostAiDiagnosticsFromDirectRowDeny()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L342", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_hostaidiagnosticsfromdirectrowdeny", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "hostaidiagnosticsfromdirectrowdeny()" + }, + { + "label": "ListHostCapabilitiesFailure", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L362", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_listhostcapabilitiesfailure", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "listhostcapabilitiesfailure" + }, + { + "label": "listHostCapabilities()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L375", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_listhostcapabilities", + "community": 1, + "community_name": "Handshake Core Records", + "norm_label": "listhostcapabilities()" + }, + { + "label": "RequestHostCompletionOpts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L1381", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_requesthostcompletionopts", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "requesthostcompletionopts" + }, + { + "label": "DirectServiceSendResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L1393", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_directservicesendresult", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "directservicesendresult" + }, + { + "label": "requestHostCompletion()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L1402", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_requesthostcompletion", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "requesthostcompletion()" + }, + { + "label": "sendHostInferenceResult()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L1420", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_sendhostinferenceresult", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "sendhostinferenceresult()" + }, + { + "label": "transportDecide.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/transportDecide.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_transportdecide", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "transportdecide.ts" + }, + { + "label": "HostAiTransportChoice", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/transportDecide.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_transportdecide_hostaitransportchoice", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "hostaitransportchoice" + }, + { + "label": "isWebrtcP2pDataPlaneAvailable()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/transportDecide.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_transportdecide_iswebrtcp2pdataplaneavailable", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "iswebrtcp2pdataplaneavailable()" + }, + { + "label": "preferP2pForIntent()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/transportDecide.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_transportdecide_preferp2pforintent", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "preferp2pforintent()" + }, + { + "label": "p2pPrerequisitesSatisfied()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/transportDecide.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_transportdecide_p2pprerequisitessatisfied", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "p2pprerequisitessatisfied()" + }, + { + "label": "decideHostAiIntentRoute()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/transportDecide.ts", + "source_location": "L62", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_transport_transportdecide_decidehostaiintentroute", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "decidehostaiintentroute()" + }, + { + "label": "internalInference/types.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/types.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_types", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "internalinference/types.ts" + }, + { + "label": "INTERNAL_INFERENCE_SCHEMA_VERSION", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/types.ts", + "source_location": "L6", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_types_internal_inference_schema_version", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "internal_inference_schema_version" + }, + { + "label": "InternalServiceMessageType", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/types.ts", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_types_internalservicemessagetype", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "internalservicemessagetype" + }, + { + "label": "InternalInferenceCapabilitiesResultType", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/types.ts", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_types_internalinferencecapabilitiesresulttype", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "internalinferencecapabilitiesresulttype" + }, + { + "label": "InternalServiceEnvelopeBase", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/types.ts", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_types_internalserviceenvelopebase", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "internalserviceenvelopebase" + }, + { + "label": "InternalInferenceRequestWire", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/types.ts", + "source_location": "L32", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_types_internalinferencerequestwire", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "internalinferencerequestwire" + }, + { + "label": "InternalInferenceResultWire", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/types.ts", + "source_location": "L45", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_types_internalinferenceresultwire", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "internalinferenceresultwire" + }, + { + "label": "InternalInferenceErrorWire", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/types.ts", + "source_location": "L53", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_types_internalinferenceerrorwire", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "internalinferenceerrorwire" + }, + { + "label": "InternalInferenceCapabilitiesRequestWire", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/types.ts", + "source_location": "L68", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_types_internalinferencecapabilitiesrequestwire", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "internalinferencecapabilitiesrequestwire" + }, + { + "label": "InternalInferenceCapabilitiesModelEntry", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/types.ts", + "source_location": "L72", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_types_internalinferencecapabilitiesmodelentry", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "internalinferencecapabilitiesmodelentry" + }, + { + "label": "ActiveLocalLlmWire", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/types.ts", + "source_location": "L82", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_types_activelocalllmwire", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "activelocalllmwire" + }, + { + "label": "InternalInferenceCapabilitiesResultWire", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/types.ts", + "source_location": "L90", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_types_internalinferencecapabilitiesresultwire", + "community": 17, + "community_name": "Ollama Direct Discovery", + "norm_label": "internalinferencecapabilitiesresultwire" + }, + { + "label": "ServiceEnvelope", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/types.ts", + "source_location": "L131", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_types_serviceenvelope", + "community": 6, + "community_name": "P2P Inference Flags", + "norm_label": "serviceenvelope" + }, + { + "label": "unifiedServiceRpcRelayFlags.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/unifiedServiceRpcRelayFlags.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_unifiedservicerpcrelayflags", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "unifiedservicerpcrelayflags.ts" + }, + { + "label": "envTrue()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/unifiedServiceRpcRelayFlags.ts", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_unifiedservicerpcrelayflags_envtrue", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "envtrue()" + }, + { + "label": "readUnifiedRelayBool()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/unifiedServiceRpcRelayFlags.ts", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_unifiedservicerpcrelayflags_readunifiedrelaybool", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "readunifiedrelaybool()" + }, + { + "label": "isUnifiedServiceRpcRelayEnabled()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/unifiedServiceRpcRelayFlags.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_unifiedservicerpcrelayflags_isunifiedservicerpcrelayenabled", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "isunifiedservicerpcrelayenabled()" + }, + { + "label": "getUnifiedServiceRpcRelayFlagFromEnvForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/unifiedServiceRpcRelayFlags.ts", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_unifiedservicerpcrelayflags_getunifiedservicerpcrelayflagfromenvfortests", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "getunifiedservicerpcrelayflagfromenvfortests()" + }, + { + "label": "resetUnifiedServiceRpcRelayFlagsForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/unifiedServiceRpcRelayFlags.ts", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_unifiedservicerpcrelayflags_resetunifiedservicerpcrelayflagsfortests", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "resetunifiedservicerpcrelayflagsfortests()" + }, + { + "label": "blocksPlaintextHttpInferenceFallback()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/unifiedServiceRpcRelayFlags.ts", + "source_location": "L50", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_unifiedservicerpcrelayflags_blocksplaintexthttpinferencefallback", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "blocksplaintexthttpinferencefallback()" + }, + { + "label": "p2pSignalOutbound.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/p2pSignalOutbound.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_webrtc_p2psignaloutbound", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "p2psignaloutbound.ts" + }, + { + "label": "OutboundP2pSignalKind", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/p2pSignalOutbound.ts", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_webrtc_p2psignaloutbound_outboundp2psignalkind", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "outboundp2psignalkind" + }, + { + "label": "recordOutboundP2pSignal()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/p2pSignalOutbound.ts", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_webrtc_p2psignaloutbound_recordoutboundp2psignal", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "recordoutboundp2psignal()" + }, + { + "label": "webrtcTransportIpc.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "webrtctransportipc.ts" + }, + { + "label": "iceConnectedLogged", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L26", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_iceconnectedlogged", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "iceconnectedlogged" + }, + { + "label": "iceLogKey()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_icelogkey", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "icelogkey()" + }, + { + "label": "createAckBySessionId", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L32", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_createackbysessionid", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "createackbysessionid" + }, + { + "label": "waitForWebrtcPodCreateAck()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L37", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_waitforwebrtcpodcreateack", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "waitforwebrtcpodcreateack()" + }, + { + "label": "assertFromTransportPod()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L57", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_assertfromtransportpod", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "assertfromtransportpod()" + }, + { + "label": "sendToPod()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L65", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_sendtopod", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "sendtopod()" + }, + { + "label": "Role", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L73", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_role", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "role" + }, + { + "label": "webrtcCreatePeerConnection()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L75", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_webrtccreatepeerconnection", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "webrtccreatepeerconnection()" + }, + { + "label": "webrtcApplyRemoteOffer()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L84", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_webrtcapplyremoteoffer", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "webrtcapplyremoteoffer()" + }, + { + "label": "webrtcApplyRemoteAnswer()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L93", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_webrtcapplyremoteanswer", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "webrtcapplyremoteanswer()" + }, + { + "label": "webrtcAddIceCandidate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L102", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_webrtcaddicecandidate", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "webrtcaddicecandidate()" + }, + { + "label": "webrtcCloseSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L114", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_webrtcclosesession", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "webrtcclosesession()" + }, + { + "label": "webrtcSendData()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L122", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_webrtcsenddata", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "webrtcsenddata()" + }, + { + "label": "onRendererToMain()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L134", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_onrenderertomain", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "onrenderertomain()" + }, + { + "label": "tryApplyRelayPayloadToWebrtcPod()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L324", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_tryapplyrelaypayloadtowebrtcpod", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "tryapplyrelaypayloadtowebrtcpod()" + }, + { + "label": "registerWebrtcTransportIpc()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L366", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_registerwebrtctransportipc", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "registerwebrtctransportipc()" + }, + { + "label": "webrtcTransportWindow.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportWindow.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportwindow", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "webrtctransportwindow.ts" + }, + { + "label": "mainOutDir", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportWindow.ts", + "source_location": "L12", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportwindow_mainoutdir", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "mainoutdir" + }, + { + "label": "getWebrtcTransportPreloadPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportWindow.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportwindow_getwebrtctransportpreloadpath", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "getwebrtctransportpreloadpath()" + }, + { + "label": "getTransportFilePathForProd()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportWindow.ts", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportwindow_gettransportfilepathforprod", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "gettransportfilepathforprod()" + }, + { + "label": "getTransportLoadUrlOrPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportWindow.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportwindow_gettransportloadurlorpath", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "gettransportloadurlorpath()" + }, + { + "label": "ensureWebrtcTransportWindow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportWindow.ts", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportwindow_ensurewebrtctransportwindow", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "ensurewebrtctransportwindow()" + }, + { + "label": "getWebrtcTransportWindowOrNull()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportWindow.ts", + "source_location": "L85", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportwindow_getwebrtctransportwindowornull", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "getwebrtctransportwindowornull()" + }, + { + "label": "getWebrtcTransportWebContentsIdOrNull()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportWindow.ts", + "source_location": "L92", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportwindow_getwebrtctransportwebcontentsidornull", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "getwebrtctransportwebcontentsidornull()" + }, + { + "label": "builtinTemplateRenderer.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/builtinTemplateRenderer.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "builtintemplaterenderer.ts" + }, + { + "label": "BuiltinRenderOptions", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/builtinTemplateRenderer.ts", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer_builtinrenderoptions", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "builtinrenderoptions" + }, + { + "label": "LogoBytes", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/builtinTemplateRenderer.ts", + "source_location": "L24", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer_logobytes", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "logobytes" + }, + { + "label": "parseDataUrlImage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/builtinTemplateRenderer.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer_parsedataurlimage", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "parsedataurlimage()" + }, + { + "label": "loadLogo()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/builtinTemplateRenderer.ts", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer_loadlogo", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "loadlogo()" + }, + { + "label": "layoutPageMargins()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/builtinTemplateRenderer.ts", + "source_location": "L67", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer_layoutpagemargins", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "layoutpagemargins()" + }, + { + "label": "logoAlignment()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/builtinTemplateRenderer.ts", + "source_location": "L82", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer_logoalignment", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "logoalignment()" + }, + { + "label": "senderLineAlignment()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/builtinTemplateRenderer.ts", + "source_location": "L88", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer_senderlinealignment", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "senderlinealignment()" + }, + { + "label": "recipientSpacingBefore()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/builtinTemplateRenderer.ts", + "source_location": "L93", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer_recipientspacingbefore", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "recipientspacingbefore()" + }, + { + "label": "buildBodyParagraphs()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/builtinTemplateRenderer.ts", + "source_location": "L99", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer_buildbodyparagraphs", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "buildbodyparagraphs()" + }, + { + "label": "getImageDimensions()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/builtinTemplateRenderer.ts", + "source_location": "L114", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer_getimagedimensions", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "getimagedimensions()" + }, + { + "label": "buildDocument()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/builtinTemplateRenderer.ts", + "source_location": "L146", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer_builddocument", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "builddocument()" + }, + { + "label": "renderBuiltinTemplate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/builtinTemplateRenderer.ts", + "source_location": "L411", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer_renderbuiltintemplate", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "renderbuiltintemplate()" + }, + { + "label": "fillDocxPlaceholders.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/fillDocxPlaceholders.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_filldocxplaceholders", + "community": 372, + "community_name": "Letter #372", + "norm_label": "filldocxplaceholders.ts" + }, + { + "label": "escapeXmlText()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/fillDocxPlaceholders.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_filldocxplaceholders_escapexmltext", + "community": 372, + "community_name": "Letter #372", + "norm_label": "escapexmltext()" + }, + { + "label": "FillDocxField", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/fillDocxPlaceholders.ts", + "source_location": "L16", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_filldocxplaceholders_filldocxfield", + "community": 372, + "community_name": "Letter #372", + "norm_label": "filldocxfield" + }, + { + "label": "effectiveSearch()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/fillDocxPlaceholders.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_filldocxplaceholders_effectivesearch", + "community": 372, + "community_name": "Letter #372", + "norm_label": "effectivesearch()" + }, + { + "label": "WtMatch", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/fillDocxPlaceholders.ts", + "source_location": "L32", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_filldocxplaceholders_wtmatch", + "community": 372, + "community_name": "Letter #372", + "norm_label": "wtmatch" + }, + { + "label": "collectWtMatches()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/fillDocxPlaceholders.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_filldocxplaceholders_collectwtmatches", + "community": 372, + "community_name": "Letter #372", + "norm_label": "collectwtmatches()" + }, + { + "label": "replaceFirstAcrossRuns()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/fillDocxPlaceholders.ts", + "source_location": "L52", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_filldocxplaceholders_replacefirstacrossruns", + "community": 372, + "community_name": "Letter #372", + "norm_label": "replacefirstacrossruns()" + }, + { + "label": "replaceAllInXml()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/fillDocxPlaceholders.ts", + "source_location": "L91", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_filldocxplaceholders_replaceallinxml", + "community": 372, + "community_name": "Letter #372", + "norm_label": "replaceallinxml()" + }, + { + "label": "fillDocxPlaceholders()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/fillDocxPlaceholders.ts", + "source_location": "L107", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_filldocxplaceholders_filldocxplaceholders", + "community": 372, + "community_name": "Letter #372", + "norm_label": "filldocxplaceholders()" + }, + { + "label": "legacyDocumentToHtml.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/legacyDocumentToHtml.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_legacydocumenttohtml", + "community": 433, + "community_name": "Letter #433", + "norm_label": "legacydocumenttohtml.ts" + }, + { + "label": "escapeHtml()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/legacyDocumentToHtml.ts", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_legacydocumenttohtml_escapehtml", + "community": 433, + "community_name": "Letter #433", + "norm_label": "escapehtml()" + }, + { + "label": "extractTextFromDoc()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/legacyDocumentToHtml.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_legacydocumenttohtml_extracttextfromdoc", + "community": 433, + "community_name": "Letter #433", + "norm_label": "extracttextfromdoc()" + }, + { + "label": "stripRtfFormatting()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/legacyDocumentToHtml.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_legacydocumenttohtml_striprtfformatting", + "community": 433, + "community_name": "Letter #433", + "norm_label": "striprtfformatting()" + }, + { + "label": "plainTextLinesToParagraphHtml()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/legacyDocumentToHtml.ts", + "source_location": "L51", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_legacydocumenttohtml_plaintextlinestoparagraphhtml", + "community": 433, + "community_name": "Letter #433", + "norm_label": "plaintextlinestoparagraphhtml()" + }, + { + "label": "letterComposerIpc.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_lettercomposeripc", + "community": 239, + "community_name": "Letter", + "norm_label": "lettercomposeripc.ts" + }, + { + "label": "letterComposerRoot()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_lettercomposerroot", + "community": 239, + "community_name": "Letter", + "norm_label": "lettercomposerroot()" + }, + { + "label": "templatesDir()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_templatesdir", + "community": 239, + "community_name": "Letter", + "norm_label": "templatesdir()" + }, + { + "label": "lettersDir()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_lettersdir", + "community": 239, + "community_name": "Letter", + "norm_label": "lettersdir()" + }, + { + "label": "convertedPdfDir()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_convertedpdfdir", + "community": 239, + "community_name": "Letter", + "norm_label": "convertedpdfdir()" + }, + { + "label": "ensureLetterComposerDirs()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_ensurelettercomposerdirs", + "community": 239, + "community_name": "Letter", + "norm_label": "ensurelettercomposerdirs()" + }, + { + "label": "exportStagingDir()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_exportstagingdir", + "community": 239, + "community_name": "Letter", + "norm_label": "exportstagingdir()" + }, + { + "label": "FillFieldPayload", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L45", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_fillfieldpayload", + "community": 239, + "community_name": "Letter", + "norm_label": "fillfieldpayload" + }, + { + "label": "normalizeBuiltinFieldsRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L52", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_normalizebuiltinfieldsrecord", + "community": 239, + "community_name": "Letter", + "norm_label": "normalizebuiltinfieldsrecord()" + }, + { + "label": "normalizeLogoPathForBuiltin()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L64", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_normalizelogopathforbuiltin", + "community": 239, + "community_name": "Letter", + "norm_label": "normalizelogopathforbuiltin()" + }, + { + "label": "normalizeFillFields()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L75", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_normalizefillfields", + "community": 239, + "community_name": "Letter", + "norm_label": "normalizefillfields()" + }, + { + "label": "ipcPdfFailureMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L87", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_ipcpdffailuremessage", + "community": 239, + "community_name": "Letter", + "norm_label": "ipcpdffailuremessage()" + }, + { + "label": "printPdfWithSystemDialog()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L97", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_printpdfwithsystemdialog", + "community": 239, + "community_name": "Letter", + "norm_label": "printpdfwithsystemdialog()" + }, + { + "label": "assertAllowedLetterComposerPdfPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L107", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_assertallowedlettercomposerpdfpath", + "community": 239, + "community_name": "Letter", + "norm_label": "assertallowedlettercomposerpdfpath()" + }, + { + "label": "sanitizeTemplateBaseName()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L126", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_sanitizetemplatebasename", + "community": 239, + "community_name": "Letter", + "norm_label": "sanitizetemplatebasename()" + }, + { + "label": "assertAllowedTemplatePath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L139", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_assertallowedtemplatepath", + "community": 239, + "community_name": "Letter", + "norm_label": "assertallowedtemplatepath()" + }, + { + "label": "assertAllowedDocxPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L158", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_assertalloweddocxpath", + "community": 239, + "community_name": "Letter", + "norm_label": "assertalloweddocxpath()" + }, + { + "label": "sanitizeLetterFileName()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L175", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_sanitizeletterfilename", + "community": 239, + "community_name": "Letter", + "norm_label": "sanitizeletterfilename()" + }, + { + "label": "assertAllowedLetterPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L195", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_assertallowedletterpath", + "community": 239, + "community_name": "Letter", + "norm_label": "assertallowedletterpath()" + }, + { + "label": "normalizeExtractedField()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L211", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_normalizeextractedfield", + "community": 239, + "community_name": "Letter", + "norm_label": "normalizeextractedfield()" + }, + { + "label": "registerLetterComposerIpcHandlers()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L229", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_registerlettercomposeripchandlers", + "community": 239, + "community_name": "Letter", + "norm_label": "registerlettercomposeripchandlers()" + }, + { + "label": "letterScanExtract.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanExtract.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_letterscanextract", + "community": 327, + "community_name": "Letter #327", + "norm_label": "letterscanextract.ts" + }, + { + "label": "LetterScanRawExtraction", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanExtract.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_letterscanextract_letterscanrawextraction", + "community": 287, + "community_name": "Letter #287", + "norm_label": "letterscanrawextraction" + }, + { + "label": "EMPTY_RAW", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanExtract.ts", + "source_location": "L21", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_letterscanextract_empty_raw", + "community": 327, + "community_name": "Letter #327", + "norm_label": "empty_raw" + }, + { + "label": "DATE_PATTERNS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanExtract.ts", + "source_location": "L37", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_letterscanextract_date_patterns", + "community": 327, + "community_name": "Letter #327", + "norm_label": "date_patterns" + }, + { + "label": "extractFirstDate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanExtract.ts", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_letterscanextract_extractfirstdate", + "community": 327, + "community_name": "Letter #327", + "norm_label": "extractfirstdate()" + }, + { + "label": "findSubjectLine()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanExtract.ts", + "source_location": "L62", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_letterscanextract_findsubjectline", + "community": 327, + "community_name": "Letter #327", + "norm_label": "findsubjectline()" + }, + { + "label": "findReference()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanExtract.ts", + "source_location": "L72", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_letterscanextract_findreference", + "community": 327, + "community_name": "Letter #327", + "norm_label": "findreference()" + }, + { + "label": "findSalutationLine()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanExtract.ts", + "source_location": "L82", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_letterscanextract_findsalutationline", + "community": 327, + "community_name": "Letter #327", + "norm_label": "findsalutationline()" + }, + { + "label": "salutationParagraphIndex()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanExtract.ts", + "source_location": "L92", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_letterscanextract_salutationparagraphindex", + "community": 327, + "community_name": "Letter #327", + "norm_label": "salutationparagraphindex()" + }, + { + "label": "splitParagraphs()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanExtract.ts", + "source_location": "L101", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_letterscanextract_splitparagraphs", + "community": 327, + "community_name": "Letter #327", + "norm_label": "splitparagraphs()" + }, + { + "label": "isNoiseParagraph()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanExtract.ts", + "source_location": "L116", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_letterscanextract_isnoiseparagraph", + "community": 327, + "community_name": "Letter #327", + "norm_label": "isnoiseparagraph()" + }, + { + "label": "extractIdentificationHints()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanExtract.ts", + "source_location": "L126", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_letterscanextract_extractidentificationhints", + "community": 327, + "community_name": "Letter #327", + "norm_label": "extractidentificationhints()" + }, + { + "label": "extractRawFromScanText()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanExtract.ts", + "source_location": "L185", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_letterscanextract_extractrawfromscantext", + "community": 327, + "community_name": "Letter #327", + "norm_label": "extractrawfromscantext()" + }, + { + "label": "letterScanNormalize.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanNormalize.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_letterscannormalize", + "community": 287, + "community_name": "Letter #287", + "norm_label": "letterscannormalize.ts" + }, + { + "label": "LETTER_EXTRACT_OUTPUT_KEYS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanNormalize.ts", + "source_location": "L8", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_letterscannormalize_letter_extract_output_keys", + "community": 287, + "community_name": "Letter #287", + "norm_label": "letter_extract_output_keys" + }, + { + "label": "NormalizedLetterFields", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanNormalize.ts", + "source_location": "L37", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_letterscannormalize_normalizedletterfields", + "community": 287, + "community_name": "Letter #287", + "norm_label": "normalizedletterfields" + }, + { + "label": "preFilterFields()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanNormalize.ts", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_letterscannormalize_prefilterfields", + "community": 287, + "community_name": "Letter #287", + "norm_label": "prefilterfields()" + }, + { + "label": "sanitizePostalAddressField()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanNormalize.ts", + "source_location": "L78", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_letterscannormalize_sanitizepostaladdressfield", + "community": 287, + "community_name": "Letter #287", + "norm_label": "sanitizepostaladdressfield()" + }, + { + "label": "clamp01()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanNormalize.ts", + "source_location": "L272", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_letterscannormalize_clamp01", + "community": 287, + "community_name": "Letter #287", + "norm_label": "clamp01()" + }, + { + "label": "isRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanNormalize.ts", + "source_location": "L277", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_letterscannormalize_isrecord", + "community": 287, + "community_name": "Letter #287", + "norm_label": "isrecord()" + }, + { + "label": "optStrField()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanNormalize.ts", + "source_location": "L281", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_letterscannormalize_optstrfield", + "community": 287, + "community_name": "Letter #287", + "norm_label": "optstrfield()" + }, + { + "label": "coerceRaw()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanNormalize.ts", + "source_location": "L286", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_letterscannormalize_coerceraw", + "community": 287, + "community_name": "Letter #287", + "norm_label": "coerceraw()" + }, + { + "label": "tryGermanShortDateToIso()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanNormalize.ts", + "source_location": "L331", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_letterscannormalize_trygermanshortdatetoiso", + "community": 287, + "community_name": "Letter #287", + "norm_label": "trygermanshortdatetoiso()" + }, + { + "label": "emptyFields()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanNormalize.ts", + "source_location": "L343", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_letterscannormalize_emptyfields", + "community": 287, + "community_name": "Letter #287", + "norm_label": "emptyfields()" + }, + { + "label": "fallbackNormalizedFromRaw()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanNormalize.ts", + "source_location": "L351", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_letterscannormalize_fallbacknormalizedfromraw", + "community": 287, + "community_name": "Letter #287", + "norm_label": "fallbacknormalizedfromraw()" + }, + { + "label": "afterSalutationTrim()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanNormalize.ts", + "source_location": "L417", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_letterscannormalize_aftersalutationtrim", + "community": 287, + "community_name": "Letter #287", + "norm_label": "aftersalutationtrim()" + }, + { + "label": "parseModelJson()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanNormalize.ts", + "source_location": "L421", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_letterscannormalize_parsemodeljson", + "community": 287, + "community_name": "Letter #287", + "norm_label": "parsemodeljson()" + }, + { + "label": "normalizeLetterScanExtraction()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanNormalize.ts", + "source_location": "L432", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_letterscannormalize_normalizeletterscanextraction", + "community": 287, + "community_name": "Letter #287", + "norm_label": "normalizeletterscanextraction()" + }, + { + "label": "letterScanProcessing.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanProcessing.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_letterscanprocessing", + "community": 288, + "community_name": "Letter #288", + "norm_label": "letterscanprocessing.ts" + }, + { + "label": "LetterScanPage", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanProcessing.ts", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_letterscanprocessing_letterscanpage", + "community": 288, + "community_name": "Letter #288", + "norm_label": "letterscanpage" + }, + { + "label": "mimeForImageExt()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanProcessing.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_letterscanprocessing_mimeforimageext", + "community": 288, + "community_name": "Letter #288", + "norm_label": "mimeforimageext()" + }, + { + "label": "pngDataUrlToBuffer()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanProcessing.ts", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_letterscanprocessing_pngdataurltobuffer", + "community": 288, + "community_name": "Letter #288", + "norm_label": "pngdataurltobuffer()" + }, + { + "label": "processPdfForLetterViewer()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanProcessing.ts", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_letterscanprocessing_processpdfforletterviewer", + "community": 288, + "community_name": "Letter #288", + "norm_label": "processpdfforletterviewer()" + }, + { + "label": "processImageFileForLetterViewer()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanProcessing.ts", + "source_location": "L123", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_letterscanprocessing_processimagefileforletterviewer", + "community": 288, + "community_name": "Letter #288", + "norm_label": "processimagefileforletterviewer()" + }, + { + "label": "odtToHtml.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/odtToHtml.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_odttohtml", + "community": 422, + "community_name": "Letter #422", + "norm_label": "odttohtml.ts" + }, + { + "label": "convertOdtBufferToHtml()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/odtToHtml.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_odttohtml_convertodtbuffertohtml", + "community": 422, + "community_name": "Letter #422", + "norm_label": "convertodtbuffertohtml()" + }, + { + "label": "stripResidualOdfTags()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/odtToHtml.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_odttohtml_stripresidualodftags", + "community": 422, + "community_name": "Letter #422", + "norm_label": "stripresidualodftags()" + }, + { + "label": "convertOdtXmlToHtml()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/odtToHtml.ts", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_odttohtml_convertodtxmltohtml", + "community": 422, + "community_name": "Letter #422", + "norm_label": "convertodtxmltohtml()" + }, + { + "label": "renderPdfPagesInBrowser.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/renderPdfPagesInBrowser.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_renderpdfpagesinbrowser", + "community": 288, + "community_name": "Letter #288", + "norm_label": "renderpdfpagesinbrowser.ts" + }, + { + "label": "require", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/renderPdfPagesInBrowser.ts", + "source_location": "L14", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_renderpdfpagesinbrowser_require", + "community": 288, + "community_name": "Letter #288", + "norm_label": "require" + }, + { + "label": "bootstrapSource()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/renderPdfPagesInBrowser.ts", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_renderpdfpagesinbrowser_bootstrapsource", + "community": 288, + "community_name": "Letter #288", + "norm_label": "bootstrapsource()" + }, + { + "label": "copyDirSync()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/renderPdfPagesInBrowser.ts", + "source_location": "L72", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_renderpdfpagesinbrowser_copydirsync", + "community": 288, + "community_name": "Letter #288", + "norm_label": "copydirsync()" + }, + { + "label": "pdfjsBuildDir()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/renderPdfPagesInBrowser.ts", + "source_location": "L86", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_renderpdfpagesinbrowser_pdfjsbuilddir", + "community": 288, + "community_name": "Letter #288", + "norm_label": "pdfjsbuilddir()" + }, + { + "label": "waitForPreviewReady()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/renderPdfPagesInBrowser.ts", + "source_location": "L91", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_renderpdfpagesinbrowser_waitforpreviewready", + "community": 288, + "community_name": "Letter #288", + "norm_label": "waitforpreviewready()" + }, + { + "label": "RenderedPdfPageImage", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/renderPdfPagesInBrowser.ts", + "source_location": "L101", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_renderpdfpagesinbrowser_renderedpdfpageimage", + "community": 288, + "community_name": "Letter #288", + "norm_label": "renderedpdfpageimage" + }, + { + "label": "renderPdfPagesToImages()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/renderPdfPagesInBrowser.ts", + "source_location": "L103", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_renderpdfpagesinbrowser_renderpdfpagestoimages", + "community": 288, + "community_name": "Letter #288", + "norm_label": "renderpdfpagestoimages()" + }, + { + "label": "templateFieldDetect.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/templateFieldDetect.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_templatefielddetect", + "community": 274, + "community_name": "Letter #274", + "norm_label": "templatefielddetect.ts" + }, + { + "label": "PositionedItem", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/templateFieldDetect.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_templatefielddetect_positioneditem", + "community": 274, + "community_name": "Letter #274", + "norm_label": "positioneditem" + }, + { + "label": "DetectedFieldShape", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/templateFieldDetect.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_templatefielddetect_detectedfieldshape", + "community": 274, + "community_name": "Letter #274", + "norm_label": "detectedfieldshape" + }, + { + "label": "loadPdfjs()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/templateFieldDetect.ts", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_templatefielddetect_loadpdfjs", + "community": 274, + "community_name": "Letter #274", + "norm_label": "loadpdfjs()" + }, + { + "label": "clamp01()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/templateFieldDetect.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_templatefielddetect_clamp01", + "community": 274, + "community_name": "Letter #274", + "norm_label": "clamp01()" + }, + { + "label": "extractPositionedItemsAsync()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/templateFieldDetect.ts", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_templatefielddetect_extractpositioneditemsasync", + "community": 274, + "community_name": "Letter #274", + "norm_label": "extractpositioneditemsasync()" + }, + { + "label": "normalizeDetected()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/templateFieldDetect.ts", + "source_location": "L93", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_templatefielddetect_normalizedetected", + "community": 274, + "community_name": "Letter #274", + "norm_label": "normalizedetected()" + }, + { + "label": "detectTemplateFieldsFromPdfPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/templateFieldDetect.ts", + "source_location": "L137", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_templatefielddetect_detecttemplatefieldsfrompdfpath", + "community": 274, + "community_name": "Letter #274", + "norm_label": "detecttemplatefieldsfrompdfpath()" + }, + { + "label": "templatePdfPreviewRender.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/templatePdfPreviewRender.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_templatepdfpreviewrender", + "community": 288, + "community_name": "Letter #288", + "norm_label": "templatepdfpreviewrender.ts" + }, + { + "label": "renderPdfFileToPngDataUrls()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/templatePdfPreviewRender.ts", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_templatepdfpreviewrender_renderpdffiletopngdataurls", + "community": 288, + "community_name": "Letter #288", + "norm_label": "renderpdffiletopngdataurls()" + }, + { + "label": "templatePdfTextLayer.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/templatePdfTextLayer.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_templatepdftextlayer", + "community": 274, + "community_name": "Letter #274", + "norm_label": "templatepdftextlayer.ts" + }, + { + "label": "PdfPageTextItem", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/templatePdfTextLayer.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_templatepdftextlayer_pdfpagetextitem", + "community": 274, + "community_name": "Letter #274", + "norm_label": "pdfpagetextitem" + }, + { + "label": "PdfPageTextPositions", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/templatePdfTextLayer.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_templatepdftextlayer_pdfpagetextpositions", + "community": 274, + "community_name": "Letter #274", + "norm_label": "pdfpagetextpositions" + }, + { + "label": "loadPdfjs()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/templatePdfTextLayer.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_templatepdftextlayer_loadpdfjs", + "community": 274, + "community_name": "Letter #274", + "norm_label": "loadpdfjs()" + }, + { + "label": "clamp01()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/templatePdfTextLayer.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_templatepdftextlayer_clamp01", + "community": 274, + "community_name": "Letter #274", + "norm_label": "clamp01()" + }, + { + "label": "extractPdfTextPositionsFromPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/letter/templatePdfTextLayer.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_letter_templatepdftextlayer_extractpdftextpositionsfrompath", + "community": 274, + "community_name": "Letter #274", + "norm_label": "extractpdftextpositionsfrompath()" + }, + { + "label": "libreofficeService.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice", + "community": 220, + "community_name": "Libreoffice", + "norm_label": "libreofficeservice.ts" + }, + { + "label": "execFileAsync", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L8", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_execfileasync", + "community": 220, + "community_name": "Libreoffice", + "norm_label": "execfileasync" + }, + { + "label": "execAsync", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L9", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_execasync", + "community": 220, + "community_name": "Libreoffice", + "norm_label": "execasync" + }, + { + "label": "getSessionProfileDir()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_getsessionprofiledir", + "community": 220, + "community_name": "Libreoffice", + "norm_label": "getsessionprofiledir()" + }, + { + "label": "findLibreOfficeBinary()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L37", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_findlibreofficebinary", + "community": 220, + "community_name": "Libreoffice", + "norm_label": "findlibreofficebinary()" + }, + { + "label": "manualPathStoreFile()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L74", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_manualpathstorefile", + "community": 220, + "community_name": "Libreoffice", + "norm_label": "manualpathstorefile()" + }, + { + "label": "loadPersistedManualPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L78", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_loadpersistedmanualpath", + "community": 220, + "community_name": "Libreoffice", + "norm_label": "loadpersistedmanualpath()" + }, + { + "label": "persistManualPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L90", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_persistmanualpath", + "community": 220, + "community_name": "Libreoffice", + "norm_label": "persistmanualpath()" + }, + { + "label": "clearPersistedManualPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L98", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_clearpersistedmanualpath", + "community": 220, + "community_name": "Libreoffice", + "norm_label": "clearpersistedmanualpath()" + }, + { + "label": "dedupeCandidates()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L107", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_dedupecandidates", + "community": 220, + "community_name": "Libreoffice", + "norm_label": "dedupecandidates()" + }, + { + "label": "collectWindowsRegistrySofficeCandidates()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L121", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_collectwindowsregistrysofficecandidates", + "community": 220, + "community_name": "Libreoffice", + "norm_label": "collectwindowsregistrysofficecandidates()" + }, + { + "label": "tryAcceptCandidate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L156", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_tryacceptcandidate", + "community": 220, + "community_name": "Libreoffice", + "norm_label": "tryacceptcandidate()" + }, + { + "label": "setManualSofficePath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L172", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_setmanualsofficepath", + "community": 220, + "community_name": "Libreoffice", + "norm_label": "setmanualsofficepath()" + }, + { + "label": "detectLibreOffice()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L190", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_detectlibreoffice", + "community": 220, + "community_name": "Libreoffice", + "norm_label": "detectlibreoffice()" + }, + { + "label": "runDetectLibreOffice()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L218", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_rundetectlibreoffice", + "community": 220, + "community_name": "Libreoffice", + "norm_label": "rundetectlibreoffice()" + }, + { + "label": "preWarmLibreOffice()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L363", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_prewarmlibreoffice", + "community": 220, + "community_name": "Libreoffice", + "norm_label": "prewarmlibreoffice()" + }, + { + "label": "getSofficePath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L381", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_getsofficepath", + "community": 220, + "community_name": "Libreoffice", + "norm_label": "getsofficepath()" + }, + { + "label": "LIBREOFFICE_MISSING_USER_MESSAGE", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L404", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_libreoffice_missing_user_message", + "community": 220, + "community_name": "Libreoffice", + "norm_label": "libreoffice_missing_user_message" + }, + { + "label": "execLibreOfficeConvert()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L419", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_execlibreofficeconvert", + "community": 220, + "community_name": "Libreoffice", + "norm_label": "execlibreofficeconvert()" + }, + { + "label": "readPdfHeaderSnippet()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L457", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_readpdfheadersnippet", + "community": 220, + "community_name": "Libreoffice", + "norm_label": "readpdfheadersnippet()" + }, + { + "label": "convertToPdf()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L476", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_converttopdf", + "community": 220, + "community_name": "Libreoffice", + "norm_label": "converttopdf()" + }, + { + "label": "convertToDocx()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L564", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_converttodocx", + "community": 220, + "community_name": "Libreoffice", + "norm_label": "converttodocx()" + }, + { + "label": "resetLibreOfficeDetection()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L603", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_resetlibreofficedetection", + "community": 220, + "community_name": "Libreoffice", + "norm_label": "resetlibreofficedetection()" + }, + { + "label": "adaptiveWarmupStrategy.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/adaptiveWarmupStrategy.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_adaptivewarmupstrategy_test", + "community": 503, + "community_name": "LLM #503", + "norm_label": "adaptivewarmupstrategy.test.ts" + }, + { + "label": "estimateMaxResidentModelsMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/adaptiveWarmupStrategy.test.ts", + "source_location": "L3", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_adaptivewarmupstrategy_test_estimatemaxresidentmodelsmock", + "community": 503, + "community_name": "LLM #503", + "norm_label": "estimatemaxresidentmodelsmock" + }, + { + "label": "resolveAiMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/adaptiveWarmupStrategy.test.ts", + "source_location": "L4", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_adaptivewarmupstrategy_test_resolveaimock", + "community": 503, + "community_name": "LLM #503", + "norm_label": "resolveaimock" + }, + { + "label": "detectVramCapacity.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/detectVramCapacity.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_detectvramcapacity_test", + "community": 544, + "community_name": "LLM #544", + "norm_label": "detectvramcapacity.test.ts" + }, + { + "label": "hardwareDetectMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/detectVramCapacity.test.ts", + "source_location": "L3", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_detectvramcapacity_test_hardwaredetectmock", + "community": 544, + "community_name": "LLM #544", + "norm_label": "hardwaredetectmock" + }, + { + "label": "diagnostics.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/diagnostics.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_diagnostics_test", + "community": 156, + "community_name": "LLM Critical Jobs Remote", + "norm_label": "diagnostics.test.ts" + }, + { + "label": "hardware-capability.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/hardware-capability.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_hardware_capability_test", + "community": 156, + "community_name": "LLM Critical Jobs Remote", + "norm_label": "hardware-capability.test.ts" + }, + { + "label": "internalHostInferenceOllama.resolveModel.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/internalHostInferenceOllama.resolveModel.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_internalhostinferenceollama_resolvemodel_test", + "community": 120, + "community_name": "Internal Inference LLM Email", + "norm_label": "internalhostinferenceollama.resolvemodel.test.ts" + }, + { + "label": "constructor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/internalHostInferenceOllama.resolveModel.test.ts", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_internalhostinferenceollama_resolvemodel_test_constructor", + "community": 120, + "community_name": "Internal Inference LLM Email", + "norm_label": "constructor()" + }, + { + "label": "listModels", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/internalHostInferenceOllama.resolveModel.test.ts", + "source_location": "L19", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_internalhostinferenceollama_resolvemodel_test_listmodels", + "community": 120, + "community_name": "Internal Inference LLM Email", + "norm_label": "listmodels" + }, + { + "label": "getEffectiveChatModelName", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/internalHostInferenceOllama.resolveModel.test.ts", + "source_location": "L20", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_internalhostinferenceollama_resolvemodel_test_geteffectivechatmodelname", + "community": 120, + "community_name": "Internal Inference LLM Email", + "norm_label": "geteffectivechatmodelname" + }, + { + "label": "llamaChatResponseContent.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/llamaChatResponseContent.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_llamachatresponsecontent_test", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "llamachatresponsecontent.test.ts" + }, + { + "label": "llamaContextOverflow.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/llamaContextOverflow.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_llamacontextoverflow_test", + "community": 183, + "community_name": "Email LLM Internal Inference", + "norm_label": "llamacontextoverflow.test.ts" + }, + { + "label": "llamaServerArgs.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/llamaServerArgs.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_llamaserverargs_test", + "community": 165, + "community_name": "LLM #165", + "norm_label": "llamaserverargs.test.ts" + }, + { + "label": "spawnBudget()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/llamaServerArgs.test.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_llamaserverargs_test_spawnbudget", + "community": 165, + "community_name": "LLM #165", + "norm_label": "spawnbudget()" + }, + { + "label": "ggufString()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/llamaServerArgs.test.ts", + "source_location": "L241", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_llamaserverargs_test_ggufstring", + "community": 165, + "community_name": "LLM #165", + "norm_label": "ggufstring()" + }, + { + "label": "ggufKvU32()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/llamaServerArgs.test.ts", + "source_location": "L248", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_llamaserverargs_test_ggufkvu32", + "community": 165, + "community_name": "LLM #165", + "norm_label": "ggufkvu32()" + }, + { + "label": "ggufKvString()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/llamaServerArgs.test.ts", + "source_location": "L256", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_llamaserverargs_test_ggufkvstring", + "community": 165, + "community_name": "LLM #165", + "norm_label": "ggufkvstring()" + }, + { + "label": "buildSyntheticGguf()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/llamaServerArgs.test.ts", + "source_location": "L262", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_llamaserverargs_test_buildsyntheticgguf", + "community": 165, + "community_name": "LLM #165", + "norm_label": "buildsyntheticgguf()" + }, + { + "label": "llamaServerBinaryInstall.assets.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/llamaServerBinaryInstall.assets.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_llamaserverbinaryinstall_assets_test", + "community": 190, + "community_name": "LLM #190", + "norm_label": "llamaserverbinaryinstall.assets.test.ts" + }, + { + "label": "release()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/llamaServerBinaryInstall.assets.test.ts", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_llamaserverbinaryinstall_assets_test_release", + "community": 190, + "community_name": "LLM #190", + "norm_label": "release()" + }, + { + "label": "local-llm-manager.probeCache.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/local-llm-manager.probeCache.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_local_llm_manager_probecache_test", + "community": 590, + "community_name": "LLM #590", + "norm_label": "local-llm-manager.probecache.test.ts" + }, + { + "label": "localLlmLifecycle.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/localLlmLifecycle.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_localllmlifecycle_test", + "community": 434, + "community_name": "LLM #434", + "norm_label": "localllmlifecycle.test.ts" + }, + { + "label": "isSandboxModeMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/localLlmLifecycle.test.ts", + "source_location": "L3", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_localllmlifecycle_test_issandboxmodemock", + "community": 434, + "community_name": "LLM #434", + "norm_label": "issandboxmodemock" + }, + { + "label": "enableSupervisionMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/localLlmLifecycle.test.ts", + "source_location": "L4", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_localllmlifecycle_test_enablesupervisionmock", + "community": 434, + "community_name": "LLM #434", + "norm_label": "enablesupervisionmock" + }, + { + "label": "ensureManagedMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/localLlmLifecycle.test.ts", + "source_location": "L5", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_localllmlifecycle_test_ensuremanagedmock", + "community": 434, + "community_name": "LLM #434", + "norm_label": "ensuremanagedmock" + }, + { + "label": "shutdownMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/localLlmLifecycle.test.ts", + "source_location": "L6", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_localllmlifecycle_test_shutdownmock", + "community": 434, + "community_name": "LLM #434", + "norm_label": "shutdownmock" + }, + { + "label": "localLlmModelInstall.download.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/localLlmModelInstall.download.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_localllmmodelinstall_download_test", + "community": 387, + "community_name": "LLM #387", + "norm_label": "localllmmodelinstall.download.test.ts" + }, + { + "label": "FULL", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/localLlmModelInstall.download.test.ts", + "source_location": "L28", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_localllmmodelinstall_download_test_full", + "community": 387, + "community_name": "LLM #387", + "norm_label": "full" + }, + { + "label": "FULL_SHA256", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/localLlmModelInstall.download.test.ts", + "source_location": "L29", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_localllmmodelinstall_download_test_full_sha256", + "community": 387, + "community_name": "LLM #387", + "norm_label": "full_sha256" + }, + { + "label": "streamFrom()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/localLlmModelInstall.download.test.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_localllmmodelinstall_download_test_streamfrom", + "community": 387, + "community_name": "LLM #387", + "norm_label": "streamfrom()" + }, + { + "label": "hangingStream()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/localLlmModelInstall.download.test.ts", + "source_location": "L42", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_localllmmodelinstall_download_test_hangingstream", + "community": 387, + "community_name": "LLM #387", + "norm_label": "hangingstream()" + }, + { + "label": "slowStream()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/localLlmModelInstall.download.test.ts", + "source_location": "L70", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_localllmmodelinstall_download_test_slowstream", + "community": 387, + "community_name": "LLM #387", + "norm_label": "slowstream()" + }, + { + "label": "mockResponse()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/localLlmModelInstall.download.test.ts", + "source_location": "L85", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_localllmmodelinstall_download_test_mockresponse", + "community": 387, + "community_name": "LLM #387", + "norm_label": "mockresponse()" + }, + { + "label": "partPaths()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/localLlmModelInstall.download.test.ts", + "source_location": "L98", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_localllmmodelinstall_download_test_partpaths", + "community": 387, + "community_name": "LLM #387", + "norm_label": "partpaths()" + }, + { + "label": "localLlmModelInstall.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/localLlmModelInstall.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_localllmmodelinstall_test", + "community": 149, + "community_name": "LLM #149", + "norm_label": "localllmmodelinstall.test.ts" + }, + { + "label": "localLlmServerConfig.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/localLlmServerConfig.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_localllmserverconfig_test", + "community": 275, + "community_name": "LLM #275", + "norm_label": "localllmserverconfig.test.ts" + }, + { + "label": "localModelIdentity.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/localModelIdentity.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_localmodelidentity_test", + "community": 120, + "community_name": "Internal Inference LLM Email", + "norm_label": "localmodelidentity.test.ts" + }, + { + "label": "modeModelWarmupTrigger.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/modeModelWarmupTrigger.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_modemodelwarmuptrigger_test", + "community": 399, + "community_name": "LLM #399", + "norm_label": "modemodelwarmuptrigger.test.ts" + }, + { + "label": "isEffectiveSandboxNodeMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/modeModelWarmupTrigger.test.ts", + "source_location": "L3", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_modemodelwarmuptrigger_test_iseffectivesandboxnodemock", + "community": 399, + "community_name": "LLM #399", + "norm_label": "iseffectivesandboxnodemock" + }, + { + "label": "getModeByIdMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/modeModelWarmupTrigger.test.ts", + "source_location": "L4", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_modemodelwarmuptrigger_test_getmodebyidmock", + "community": 399, + "community_name": "LLM #399", + "norm_label": "getmodebyidmock" + }, + { + "label": "resolveStrategyMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/modeModelWarmupTrigger.test.ts", + "source_location": "L5", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_modemodelwarmuptrigger_test_resolvestrategymock", + "community": 399, + "community_name": "LLM #399", + "norm_label": "resolvestrategymock" + }, + { + "label": "warmModelMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/modeModelWarmupTrigger.test.ts", + "source_location": "L6", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_modemodelwarmuptrigger_test_warmmodelmock", + "community": 399, + "community_name": "LLM #399", + "norm_label": "warmmodelmock" + }, + { + "label": "getHandshakeDbMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/modeModelWarmupTrigger.test.ts", + "source_location": "L7", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_modemodelwarmuptrigger_test_gethandshakedbmock", + "community": 399, + "community_name": "LLM #399", + "norm_label": "gethandshakedbmock" + }, + { + "label": "resolveDeclaredModelMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/modeModelWarmupTrigger.test.ts", + "source_location": "L8", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_modemodelwarmuptrigger_test_resolvedeclaredmodelmock", + "community": 399, + "community_name": "LLM #399", + "norm_label": "resolvedeclaredmodelmock" + }, + { + "label": "ollamaManager.inferenceGate.contract.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/ollamaManager.inferenceGate.contract.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_ollamamanager_inferencegate_contract_test", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": "ollamamanager.inferencegate.contract.test.ts" + }, + { + "label": "assertGate", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/ollamaManager.inferenceGate.contract.test.ts", + "source_location": "L3", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_ollamamanager_inferencegate_contract_test_assertgate", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": "assertgate" + }, + { + "label": "resolveAiExecutionContext.effectiveSandbox.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/resolveAiExecutionContext.effectiveSandbox.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_resolveaiexecutioncontext_effectivesandbox_test", + "community": 504, + "community_name": "LLM #504", + "norm_label": "resolveaiexecutioncontext.effectivesandbox.test.ts" + }, + { + "label": "getEffectiveChatModelNameMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/resolveAiExecutionContext.effectiveSandbox.test.ts", + "source_location": "L14", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_resolveaiexecutioncontext_effectivesandbox_test_geteffectivechatmodelnamemock", + "community": 504, + "community_name": "LLM #504", + "norm_label": "geteffectivechatmodelnamemock" + }, + { + "label": "readStoredAiExecutionContextMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/resolveAiExecutionContext.effectiveSandbox.test.ts", + "source_location": "L60", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_resolveaiexecutioncontext_effectivesandbox_test_readstoredaiexecutioncontextmock", + "community": 504, + "community_name": "LLM #504", + "norm_label": "readstoredaiexecutioncontextmock" + }, + { + "label": "resolveDeclaredModelAvailability.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/resolveDeclaredModelAvailability.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_resolvedeclaredmodelavailability_test", + "community": 373, + "community_name": "LLM #373", + "norm_label": "resolvedeclaredmodelavailability.test.ts" + }, + { + "label": "startupWarmup.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/startupWarmup.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_startupwarmup_test", + "community": 400, + "community_name": "LLM #400", + "norm_label": "startupwarmup.test.ts" + }, + { + "label": "isEffectiveSandboxNodeMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/startupWarmup.test.ts", + "source_location": "L3", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_startupwarmup_test_iseffectivesandboxnodemock", + "community": 400, + "community_name": "LLM #400", + "norm_label": "iseffectivesandboxnodemock" + }, + { + "label": "resolveStrategyMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/startupWarmup.test.ts", + "source_location": "L4", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_startupwarmup_test_resolvestrategymock", + "community": 400, + "community_name": "LLM #400", + "norm_label": "resolvestrategymock" + }, + { + "label": "warmModelMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/startupWarmup.test.ts", + "source_location": "L5", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_startupwarmup_test_warmmodelmock", + "community": 400, + "community_name": "LLM #400", + "norm_label": "warmmodelmock" + }, + { + "label": "getHandshakeDbMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/startupWarmup.test.ts", + "source_location": "L6", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_startupwarmup_test_gethandshakedbmock", + "community": 400, + "community_name": "LLM #400", + "norm_label": "gethandshakedbmock" + }, + { + "label": "resolveAiMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/startupWarmup.test.ts", + "source_location": "L7", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_startupwarmup_test_resolveaimock", + "community": 400, + "community_name": "LLM #400", + "norm_label": "resolveaimock" + }, + { + "label": "waitUntilReadyMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/startupWarmup.test.ts", + "source_location": "L8", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_startupwarmup_test_waituntilreadymock", + "community": 400, + "community_name": "LLM #400", + "norm_label": "waituntilreadymock" + }, + { + "label": "warmupOnServerHealthy.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/warmupOnServerHealthy.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_warmuponserverhealthy_test", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "warmuponserverhealthy.test.ts" + }, + { + "label": "warmModelMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/warmupOnServerHealthy.test.ts", + "source_location": "L10", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_warmuponserverhealthy_test_warmmodelmock", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "warmmodelmock" + }, + { + "label": "resolveCtxMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/warmupOnServerHealthy.test.ts", + "source_location": "L11", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_warmuponserverhealthy_test_resolvectxmock", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "resolvectxmock" + }, + { + "label": "flush()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/warmupOnServerHealthy.test.ts", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_tests_warmuponserverhealthy_test_flush", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "flush()" + }, + { + "label": "activeLocalModelStore.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/activeLocalModelStore.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore", + "community": 112, + "community_name": "LLM Email", + "norm_label": "activelocalmodelstore.ts" + }, + { + "label": "DEBUG_ACTIVE_LOCAL_MODEL", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/activeLocalModelStore.ts", + "source_location": "L13", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore_debug_active_local_model", + "community": 112, + "community_name": "LLM Email", + "norm_label": "debug_active_local_model" + }, + { + "label": "dbg()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/activeLocalModelStore.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore_dbg", + "community": 112, + "community_name": "LLM Email", + "norm_label": "dbg()" + }, + { + "label": "storePath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/activeLocalModelStore.ts", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore_storepath", + "community": 112, + "community_name": "LLM Email", + "norm_label": "storepath()" + }, + { + "label": "StoreFile", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/activeLocalModelStore.ts", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore_storefile", + "community": 112, + "community_name": "LLM Email", + "norm_label": "storefile" + }, + { + "label": "readRaw()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/activeLocalModelStore.ts", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore_readraw", + "community": 112, + "community_name": "LLM Email", + "norm_label": "readraw()" + }, + { + "label": "getStoredActiveLocalModelId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/activeLocalModelStore.ts", + "source_location": "L52", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore_getstoredactivelocalmodelid", + "community": 112, + "community_name": "LLM Email", + "norm_label": "getstoredactivelocalmodelid()" + }, + { + "label": "setStoredActiveLocalModelId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/activeLocalModelStore.ts", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore_setstoredactivelocalmodelid", + "community": 112, + "community_name": "LLM Email", + "norm_label": "setstoredactivelocalmodelid()" + }, + { + "label": "resolveEffectiveLocalModel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/activeLocalModelStore.ts", + "source_location": "L84", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore_resolveeffectivelocalmodel", + "community": 112, + "community_name": "LLM Email", + "norm_label": "resolveeffectivelocalmodel()" + }, + { + "label": "activeOllamaModelStore.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/activeOllamaModelStore.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_activeollamamodelstore_test", + "community": 112, + "community_name": "LLM Email", + "norm_label": "activeollamamodelstore.test.ts" + }, + { + "label": "testUserData", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/activeOllamaModelStore.test.ts", + "source_location": "L6", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_activeollamamodelstore_test_testuserdata", + "community": 112, + "community_name": "LLM Email", + "norm_label": "testuserdata" + }, + { + "label": "adaptiveWarmupStrategy.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/adaptiveWarmupStrategy.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_adaptivewarmupstrategy", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "adaptivewarmupstrategy.ts" + }, + { + "label": "WarmupStrategyKind", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/adaptiveWarmupStrategy.ts", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_adaptivewarmupstrategy_warmupstrategykind", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "warmupstrategykind" + }, + { + "label": "WarmupStrategy", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/adaptiveWarmupStrategy.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_adaptivewarmupstrategy_warmupstrategy", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "warmupstrategy" + }, + { + "label": "_resetAdaptiveWarmupStrategyForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/adaptiveWarmupStrategy.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_adaptivewarmupstrategy_resetadaptivewarmupstrategyfortests", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "_resetadaptivewarmupstrategyfortests()" + }, + { + "label": "getCachedWarmupStrategy()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/adaptiveWarmupStrategy.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_adaptivewarmupstrategy_getcachedwarmupstrategy", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "getcachedwarmupstrategy()" + }, + { + "label": "getEffectiveMaxResidentModels()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/adaptiveWarmupStrategy.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_adaptivewarmupstrategy_geteffectivemaxresidentmodels", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "geteffectivemaxresidentmodels()" + }, + { + "label": "getAdaptiveKeepAlive()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/adaptiveWarmupStrategy.ts", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_adaptivewarmupstrategy_getadaptivekeepalive", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "getadaptivekeepalive()" + }, + { + "label": "resolveAdaptiveWarmupStrategy()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/adaptiveWarmupStrategy.ts", + "source_location": "L37", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_adaptivewarmupstrategy_resolveadaptivewarmupstrategy", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "resolveadaptivewarmupstrategy()" + }, + { + "label": "aiExecutionContextStore.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/aiExecutionContextStore.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "aiexecutioncontextstore.ts" + }, + { + "label": "storePath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/aiExecutionContextStore.ts", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore_storepath", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "storepath()" + }, + { + "label": "isLane()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/aiExecutionContextStore.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore_islane", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "islane()" + }, + { + "label": "normalizeAiExecutionContextInput()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/aiExecutionContextStore.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore_normalizeaiexecutioncontextinput", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "normalizeaiexecutioncontextinput()" + }, + { + "label": "readStoredAiExecutionContext()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/aiExecutionContextStore.ts", + "source_location": "L48", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore_readstoredaiexecutioncontext", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "readstoredaiexecutioncontext()" + }, + { + "label": "writeStoredAiExecutionContext()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/aiExecutionContextStore.ts", + "source_location": "L72", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore_writestoredaiexecutioncontext", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "writestoredaiexecutioncontext()" + }, + { + "label": "clearStoredAiExecutionContext()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/aiExecutionContextStore.ts", + "source_location": "L102", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore_clearstoredaiexecutioncontext", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "clearstoredaiexecutioncontext()" + }, + { + "label": "aiExecutionTypes.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/aiExecutionTypes.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_aiexecutiontypes", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "aiexecutiontypes.ts" + }, + { + "label": "AiExecutionLane", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/aiExecutionTypes.ts", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_aiexecutiontypes_aiexecutionlane", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "aiexecutionlane" + }, + { + "label": "AiExecutionContext", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/aiExecutionTypes.ts", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_aiexecutiontypes_aiexecutioncontext", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "aiexecutioncontext" + }, + { + "label": "AiExecutionContextInput", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/aiExecutionTypes.ts", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_aiexecutiontypes_aiexecutioncontextinput", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "aiexecutioncontextinput" + }, + { + "label": "ResolveAiExecutionContextResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/aiExecutionTypes.ts", + "source_location": "L35", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_aiexecutiontypes_resolveaiexecutioncontextresult", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "resolveaiexecutioncontextresult" + }, + { + "label": "broadcastActiveModel.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/broadcastActiveModel.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_broadcastactivemodel", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "broadcastactivemodel.ts" + }, + { + "label": "broadcastActiveLocalModelChanged()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/broadcastActiveModel.ts", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_broadcastactivemodel_broadcastactivelocalmodelchanged", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "broadcastactivelocalmodelchanged()" + }, + { + "label": "broadcastActiveOllamaModelChanged", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/broadcastActiveModel.ts", + "source_location": "L21", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_broadcastactivemodel_broadcastactiveollamamodelchanged", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "broadcastactiveollamamodelchanged" + }, + { + "label": "broadcastModelsChanged.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/broadcastModelsChanged.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_broadcastmodelschanged", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "broadcastmodelschanged.ts" + }, + { + "label": "broadcastModelsInstalledChanged()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/broadcastModelsChanged.ts", + "source_location": "L4", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_broadcastmodelschanged_broadcastmodelsinstalledchanged", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "broadcastmodelsinstalledchanged()" + }, + { + "label": "llm/config.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/config.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_config", + "community": 170, + "community_name": "LLM #170", + "norm_label": "llm/config.ts" + }, + { + "label": "MODEL_CATALOG", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/config.ts", + "source_location": "L12", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_config_model_catalog", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "model_catalog" + }, + { + "label": "DEFAULT_CONFIG", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/config.ts", + "source_location": "L386", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_config_default_config", + "community": 170, + "community_name": "LLM #170", + "norm_label": "default_config" + }, + { + "label": "getModelConfig()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/config.ts", + "source_location": "L396", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_config_getmodelconfig", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "getmodelconfig()" + }, + { + "label": "getModelsByTier()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/config.ts", + "source_location": "L403", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_config_getmodelsbytier", + "community": 170, + "community_name": "LLM #170", + "norm_label": "getmodelsbytier()" + }, + { + "label": "getModelsForRam()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/config.ts", + "source_location": "L410", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_config_getmodelsforram", + "community": 170, + "community_name": "LLM #170", + "norm_label": "getmodelsforram()" + }, + { + "label": "create-phi3-low.js", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/create-phi3-low.js", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_create_phi3_low", + "community": 398, + "community_name": "LLM #398", + "norm_label": "create-phi3-low.js" + }, + { + "label": "{ exec }", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/create-phi3-low.js", + "source_location": "L7", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_create_phi3_low_exec", + "community": 398, + "community_name": "LLM #398", + "norm_label": "{ exec }" + }, + { + "label": "{ promisify }", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/create-phi3-low.js", + "source_location": "L8", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_create_phi3_low_promisify", + "community": 398, + "community_name": "LLM #398", + "norm_label": "{ promisify }" + }, + { + "label": "fs", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/create-phi3-low.js", + "source_location": "L9", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_create_phi3_low_fs", + "community": 398, + "community_name": "LLM #398", + "norm_label": "fs" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/create-phi3-low.js", + "source_location": "L10", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_create_phi3_low_path", + "community": 398, + "community_name": "LLM #398", + "norm_label": "path" + }, + { + "label": "execAsync", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/create-phi3-low.js", + "source_location": "L12", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_create_phi3_low_execasync", + "community": 398, + "community_name": "LLM #398", + "norm_label": "execasync" + }, + { + "label": "createPhi3Low()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/create-phi3-low.js", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_create_phi3_low_createphi3low", + "community": 398, + "community_name": "LLM #398", + "norm_label": "createphi3low()" + }, + { + "label": "detectVramCapacity.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/detectVramCapacity.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_detectvramcapacity", + "community": 386, + "community_name": "LLM #386", + "norm_label": "detectvramcapacity.ts" + }, + { + "label": "VramCapacityEstimate", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/detectVramCapacity.ts", + "source_location": "L16", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_detectvramcapacity_vramcapacityestimate", + "community": 386, + "community_name": "LLM #386", + "norm_label": "vramcapacityestimate" + }, + { + "label": "logVramDetect()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/detectVramCapacity.ts", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_detectvramcapacity_logvramdetect", + "community": 386, + "community_name": "LLM #386", + "norm_label": "logvramdetect()" + }, + { + "label": "estimateAvailableModelMemoryGb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/detectVramCapacity.ts", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_detectvramcapacity_estimateavailablemodelmemorygb", + "community": 386, + "community_name": "LLM #386", + "norm_label": "estimateavailablemodelmemorygb()" + }, + { + "label": "fetchLocalLlmModelSizeBytesByName()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/detectVramCapacity.ts", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_detectvramcapacity_fetchlocalllmmodelsizebytesbyname", + "community": 386, + "community_name": "LLM #386", + "norm_label": "fetchlocalllmmodelsizebytesbyname()" + }, + { + "label": "fetchOllamaModelSizeBytesByName", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/detectVramCapacity.ts", + "source_location": "L79", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_detectvramcapacity_fetchollamamodelsizebytesbyname", + "community": 386, + "community_name": "LLM #386", + "norm_label": "fetchollamamodelsizebytesbyname" + }, + { + "label": "modelSizeGb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/detectVramCapacity.ts", + "source_location": "L81", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_detectvramcapacity_modelsizegb", + "community": 386, + "community_name": "LLM #386", + "norm_label": "modelsizegb()" + }, + { + "label": "estimateMaxResidentModels()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/detectVramCapacity.ts", + "source_location": "L91", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_detectvramcapacity_estimatemaxresidentmodels", + "community": 386, + "community_name": "LLM #386", + "norm_label": "estimatemaxresidentmodels()" + }, + { + "label": "ggufFileUtils.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/ggufFileUtils.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_gguffileutils", + "community": 149, + "community_name": "LLM #149", + "norm_label": "gguffileutils.ts" + }, + { + "label": "GGUF_MAGIC", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/ggufFileUtils.ts", + "source_location": "L5", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_gguffileutils_gguf_magic", + "community": 149, + "community_name": "LLM #149", + "norm_label": "gguf_magic" + }, + { + "label": "isGgufMagicBuffer()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/ggufFileUtils.ts", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_gguffileutils_isggufmagicbuffer", + "community": 149, + "community_name": "LLM #149", + "norm_label": "isggufmagicbuffer()" + }, + { + "label": "assertGgufMagicHeader()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/ggufFileUtils.ts", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_gguffileutils_assertggufmagicheader", + "community": 149, + "community_name": "LLM #149", + "norm_label": "assertggufmagicheader()" + }, + { + "label": "sha256SidecarPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/ggufFileUtils.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_gguffileutils_sha256sidecarpath", + "community": 149, + "community_name": "LLM #149", + "norm_label": "sha256sidecarpath()" + }, + { + "label": "computeFileSha256Hex()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/ggufFileUtils.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_gguffileutils_computefilesha256hex", + "community": 149, + "community_name": "LLM #149", + "norm_label": "computefilesha256hex()" + }, + { + "label": "writeSha256Sidecar()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/ggufFileUtils.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_gguffileutils_writesha256sidecar", + "community": 149, + "community_name": "LLM #149", + "norm_label": "writesha256sidecar()" + }, + { + "label": "readSha256Sidecar()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/ggufFileUtils.ts", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_gguffileutils_readsha256sidecar", + "community": 149, + "community_name": "LLM #149", + "norm_label": "readsha256sidecar()" + }, + { + "label": "removeSha256Sidecar()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/ggufFileUtils.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_gguffileutils_removesha256sidecar", + "community": 149, + "community_name": "LLM #149", + "norm_label": "removesha256sidecar()" + }, + { + "label": "handshakeAvailableModelsCompute.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/handshakeAvailableModelsCompute.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_handshakeavailablemodelscompute", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "handshakeavailablemodelscompute.ts" + }, + { + "label": "logLocalProviderOllamaDiscovery()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/handshakeAvailableModelsCompute.ts", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_handshakeavailablemodelscompute_loglocalproviderollamadiscovery", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "loglocalproviderollamadiscovery()" + }, + { + "label": "HandshakeUiModelRow", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/handshakeAvailableModelsCompute.ts", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_handshakeavailablemodelscompute_handshakeuimodelrow", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "handshakeuimodelrow" + }, + { + "label": "WrChatAvailableModelRow", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/handshakeAvailableModelsCompute.ts", + "source_location": "L53", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_handshakeavailablemodelscompute_wrchatavailablemodelrow", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "wrchatavailablemodelrow" + }, + { + "label": "ComputeHandshakeAvailableModelsOpts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/handshakeAvailableModelsCompute.ts", + "source_location": "L63", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_handshakeavailablemodelscompute_computehandshakeavailablemodelsopts", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "computehandshakeavailablemodelsopts" + }, + { + "label": "ComputeHandshakeAvailableModelsResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/handshakeAvailableModelsCompute.ts", + "source_location": "L73", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_handshakeavailablemodelscompute_computehandshakeavailablemodelsresult", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "computehandshakeavailablemodelsresult" + }, + { + "label": "handshakeModelsToWrChatRows()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/handshakeAvailableModelsCompute.ts", + "source_location": "L83", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_handshakeavailablemodelscompute_handshakemodelstowrchatrows", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "handshakemodelstowrchatrows()" + }, + { + "label": "computeHandshakeAvailableModels()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/handshakeAvailableModelsCompute.ts", + "source_location": "L103", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_handshakeavailablemodelscompute_computehandshakeavailablemodels", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "computehandshakeavailablemodels()" + }, + { + "label": "augmentOllamaStatusWithWrChatModels()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/handshakeAvailableModelsCompute.ts", + "source_location": "L320", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_handshakeavailablemodelscompute_augmentollamastatuswithwrchatmodels", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "augmentollamastatuswithwrchatmodels()" + }, + { + "label": "hardware-capability-check.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-capability-check.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_hardware_capability_check", + "community": 156, + "community_name": "LLM Critical Jobs Remote", + "norm_label": "hardware-capability-check.ts" + }, + { + "label": "execAsync", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-capability-check.ts", + "source_location": "L15", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_execasync", + "community": 156, + "community_name": "LLM Critical Jobs Remote", + "norm_label": "execasync" + }, + { + "label": "HardwareProfile", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-capability-check.ts", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_hardwareprofile", + "community": 156, + "community_name": "LLM Critical Jobs Remote", + "norm_label": "hardwareprofile" + }, + { + "label": "CPUCapabilities", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-capability-check.ts", + "source_location": "L19", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_cpucapabilities", + "community": 156, + "community_name": "LLM Critical Jobs Remote", + "norm_label": "cpucapabilities" + }, + { + "label": "DiskInfo", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-capability-check.ts", + "source_location": "L30", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_diskinfo", + "community": 156, + "community_name": "LLM Critical Jobs Remote", + "norm_label": "diskinfo" + }, + { + "label": "HardwareCapabilityResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-capability-check.ts", + "source_location": "L36", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_hardwarecapabilityresult", + "community": 156, + "community_name": "LLM Critical Jobs Remote", + "norm_label": "hardwarecapabilityresult" + }, + { + "label": "HardwareCapabilityChecker", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-capability-check.ts", + "source_location": "L49", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_hardwarecapabilitychecker", + "community": 156, + "community_name": "LLM Critical Jobs Remote", + "norm_label": "hardwarecapabilitychecker" + }, + { + "label": ".check()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-capability-check.ts", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_hardwarecapabilitychecker_check", + "community": 156, + "community_name": "LLM Critical Jobs Remote", + "norm_label": ".check()" + }, + { + "label": ".getCached()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-capability-check.ts", + "source_location": "L86", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_hardwarecapabilitychecker_getcached", + "community": 156, + "community_name": "LLM Critical Jobs Remote", + "norm_label": ".getcached()" + }, + { + "label": ".detectCPUCapabilities()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-capability-check.ts", + "source_location": "L96", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_hardwarecapabilitychecker_detectcpucapabilities", + "community": 156, + "community_name": "LLM Critical Jobs Remote", + "norm_label": ".detectcpucapabilities()" + }, + { + "label": ".detectDiskType()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-capability-check.ts", + "source_location": "L217", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_hardwarecapabilitychecker_detectdisktype", + "community": 156, + "community_name": "LLM Critical Jobs Remote", + "norm_label": ".detectdisktype()" + }, + { + "label": ".checkGPUVulkanHealth()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-capability-check.ts", + "source_location": "L297", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_hardwarecapabilitychecker_checkgpuvulkanhealth", + "community": 156, + "community_name": "LLM Critical Jobs Remote", + "norm_label": ".checkgpuvulkanhealth()" + }, + { + "label": ".computeProfile()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-capability-check.ts", + "source_location": "L324", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_hardwarecapabilitychecker_computeprofile", + "community": 156, + "community_name": "LLM Critical Jobs Remote", + "norm_label": ".computeprofile()" + }, + { + "label": ".generateRecommendation()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-capability-check.ts", + "source_location": "L371", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_hardwarecapabilitychecker_generaterecommendation", + "community": 156, + "community_name": "LLM Critical Jobs Remote", + "norm_label": ".generaterecommendation()" + }, + { + "label": ".logResult()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-capability-check.ts", + "source_location": "L402", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_hardwarecapabilitychecker_logresult", + "community": 156, + "community_name": "LLM Critical Jobs Remote", + "norm_label": ".logresult()" + }, + { + "label": "hardware-diagnostics.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-diagnostics.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics", + "community": 156, + "community_name": "LLM Critical Jobs Remote", + "norm_label": "hardware-diagnostics.ts" + }, + { + "label": "execAsync", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-diagnostics.ts", + "source_location": "L10", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics_execasync", + "community": 362, + "community_name": "LLM #362", + "norm_label": "execasync" + }, + { + "label": "HardwareDiagnostics", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-diagnostics.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics_hardwarediagnostics", + "community": 156, + "community_name": "LLM Critical Jobs Remote", + "norm_label": "hardwarediagnostics" + }, + { + "label": "ResourceRecommendations", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-diagnostics.ts", + "source_location": "L37", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics_resourcerecommendations", + "community": 156, + "community_name": "LLM Critical Jobs Remote", + "norm_label": "resourcerecommendations" + }, + { + "label": "HardwareDiagnosticsService", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-diagnostics.ts", + "source_location": "L47", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics_hardwarediagnosticsservice", + "community": 362, + "community_name": "LLM #362", + "norm_label": "hardwarediagnosticsservice" + }, + { + "label": ".diagnose()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-diagnostics.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics_hardwarediagnosticsservice_diagnose", + "community": 362, + "community_name": "LLM #362", + "norm_label": ".diagnose()" + }, + { + "label": ".getCached()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-diagnostics.ts", + "source_location": "L78", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics_hardwarediagnosticsservice_getcached", + "community": 362, + "community_name": "LLM #362", + "norm_label": ".getcached()" + }, + { + "label": ".detectCPU()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-diagnostics.ts", + "source_location": "L88", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics_hardwarediagnosticsservice_detectcpu", + "community": 362, + "community_name": "LLM #362", + "norm_label": ".detectcpu()" + }, + { + "label": ".detectMemory()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-diagnostics.ts", + "source_location": "L105", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics_hardwarediagnosticsservice_detectmemory", + "community": 362, + "community_name": "LLM #362", + "norm_label": ".detectmemory()" + }, + { + "label": ".detectGPU()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-diagnostics.ts", + "source_location": "L118", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics_hardwarediagnosticsservice_detectgpu", + "community": 362, + "community_name": "LLM #362", + "norm_label": ".detectgpu()" + }, + { + "label": ".checkVulkanHealth()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-diagnostics.ts", + "source_location": "L174", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics_hardwarediagnosticsservice_checkvulkanhealth", + "community": 362, + "community_name": "LLM #362", + "norm_label": ".checkvulkanhealth()" + }, + { + "label": ".generateRecommendations()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-diagnostics.ts", + "source_location": "L245", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics_hardwarediagnosticsservice_generaterecommendations", + "community": 362, + "community_name": "LLM #362", + "norm_label": ".generaterecommendations()" + }, + { + "label": ".logDiagnostics()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-diagnostics.ts", + "source_location": "L320", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics_hardwarediagnosticsservice_logdiagnostics", + "community": 362, + "community_name": "LLM #362", + "norm_label": ".logdiagnostics()" + }, + { + "label": "hardware.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_hardware", + "community": 170, + "community_name": "LLM #170", + "norm_label": "hardware.ts" + }, + { + "label": "execAsync", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L12", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_hardware_execasync", + "community": 170, + "community_name": "LLM #170", + "norm_label": "execasync" + }, + { + "label": "HardwareService", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice", + "community": 170, + "community_name": "LLM #170", + "norm_label": "hardwareservice" + }, + { + "label": ".detect()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_detect", + "community": 170, + "community_name": "LLM #170", + "norm_label": ".detect()" + }, + { + "label": ".getOsType()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L77", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_getostype", + "community": 170, + "community_name": "LLM #170", + "norm_label": ".getostype()" + }, + { + "label": ".detectCpuCapabilities()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L88", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_detectcpucapabilities", + "community": 170, + "community_name": "LLM #170", + "norm_label": ".detectcpucapabilities()" + }, + { + "label": ".roundVramGbFromMib()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L190", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_roundvramgbfrommib", + "community": 170, + "community_name": "LLM #170", + "norm_label": ".roundvramgbfrommib()" + }, + { + "label": ".roundVramGbFromBytes()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L194", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_roundvramgbfrombytes", + "community": 170, + "community_name": "LLM #170", + "norm_label": ".roundvramgbfrombytes()" + }, + { + "label": ".queryNvidiaSmiVramGb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L199", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_querynvidiasmivramgb", + "community": 170, + "community_name": "LLM #170", + "norm_label": ".querynvidiasmivramgb()" + }, + { + "label": ".queryWindowsRegistryQwordVramGb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L221", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_querywindowsregistryqwordvramgb", + "community": 170, + "community_name": "LLM #170", + "norm_label": ".querywindowsregistryqwordvramgb()" + }, + { + "label": ".detectWindowsGpuPresent()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L247", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_detectwindowsgpupresent", + "community": 170, + "community_name": "LLM #170", + "norm_label": ".detectwindowsgpupresent()" + }, + { + "label": ".detectGpu()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L266", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_detectgpu", + "community": 170, + "community_name": "LLM #170", + "norm_label": ".detectgpu()" + }, + { + "label": ".getDiskFree()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L314", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_getdiskfree", + "community": 170, + "community_name": "LLM #170", + "norm_label": ".getdiskfree()" + }, + { + "label": ".generateWarnings()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L346", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_generatewarnings", + "community": 170, + "community_name": "LLM #170", + "norm_label": ".generatewarnings()" + }, + { + "label": ".getRecommendedModels()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L389", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_getrecommendedmodels", + "community": 170, + "community_name": "LLM #170", + "norm_label": ".getrecommendedmodels()" + }, + { + "label": ".estimatePerformance()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L414", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_estimateperformance", + "community": 170, + "community_name": "LLM #170", + "norm_label": ".estimateperformance()" + }, + { + "label": "huggingFaceModelDownloadAllowlist.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/huggingFaceModelDownloadAllowlist.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_huggingfacemodeldownloadallowlist", + "community": 149, + "community_name": "LLM #149", + "norm_label": "huggingfacemodeldownloadallowlist.ts" + }, + { + "label": "HUGGINGFACE_GGUF_DOWNLOAD_ALLOWED_HOSTS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/huggingFaceModelDownloadAllowlist.ts", + "source_location": "L5", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_huggingfacemodeldownloadallowlist_huggingface_gguf_download_allowed_hosts", + "community": 149, + "community_name": "LLM #149", + "norm_label": "huggingface_gguf_download_allowed_hosts" + }, + { + "label": "assertHttpsHuggingFaceDownloadUrl()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/huggingFaceModelDownloadAllowlist.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_huggingfacemodeldownloadallowlist_asserthttpshuggingfacedownloadurl", + "community": 149, + "community_name": "LLM #149", + "norm_label": "asserthttpshuggingfacedownloadurl()" + }, + { + "label": "inboxAutosortRuntime.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/inboxAutosortRuntime.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_inboxautosortruntime", + "community": 112, + "community_name": "LLM Email", + "norm_label": "inboxautosortruntime.ts" + }, + { + "label": "AutosortBlockReason", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/inboxAutosortRuntime.ts", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_inboxautosortruntime_autosortblockreason", + "community": 112, + "community_name": "LLM Email", + "norm_label": "autosortblockreason" + }, + { + "label": "ResolvedInboxRuntime", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/inboxAutosortRuntime.ts", + "source_location": "L36", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_inboxautosortruntime_resolvedinboxruntime", + "community": 112, + "community_name": "LLM Email", + "norm_label": "resolvedinboxruntime" + }, + { + "label": "blocked()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/inboxAutosortRuntime.ts", + "source_location": "L64", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_inboxautosortruntime_blocked", + "community": 112, + "community_name": "LLM Email", + "norm_label": "blocked()" + }, + { + "label": "resolveInboxAutosortRuntime()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/inboxAutosortRuntime.ts", + "source_location": "L95", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_inboxautosortruntime_resolveinboxautosortruntime", + "community": 112, + "community_name": "LLM Email", + "norm_label": "resolveinboxautosortruntime()" + }, + { + "label": "internalHostInferenceLocal.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/internalHostInferenceLocal.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_internalhostinferencelocal", + "community": 120, + "community_name": "Internal Inference LLM Email", + "norm_label": "internalhostinferencelocal.ts" + }, + { + "label": "InternalHostInferenceMessage", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/internalHostInferenceLocal.ts", + "source_location": "L16", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_internalhostinferencelocal_internalhostinferencemessage", + "community": 120, + "community_name": "Internal Inference LLM Email", + "norm_label": "internalhostinferencemessage" + }, + { + "label": "RunInternalHostLocalLlmParams", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/internalHostInferenceLocal.ts", + "source_location": "L21", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_internalhostinferencelocal_runinternalhostlocalllmparams", + "community": 120, + "community_name": "Internal Inference LLM Email", + "norm_label": "runinternalhostlocalllmparams" + }, + { + "label": "RunInternalHostOllamaParams", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/internalHostInferenceLocal.ts", + "source_location": "L36", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_internalhostinferencelocal_runinternalhostollamaparams", + "community": 120, + "community_name": "Internal Inference LLM Email", + "norm_label": "runinternalhostollamaparams" + }, + { + "label": "RunInternalHostLocalLlmResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/internalHostInferenceLocal.ts", + "source_location": "L38", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_internalhostinferencelocal_runinternalhostlocalllmresult", + "community": 120, + "community_name": "Internal Inference LLM Email", + "norm_label": "runinternalhostlocalllmresult" + }, + { + "label": "RunInternalHostOllamaResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/internalHostInferenceLocal.ts", + "source_location": "L46", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_internalhostinferencelocal_runinternalhostollamaresult", + "community": 120, + "community_name": "Internal Inference LLM Email", + "norm_label": "runinternalhostollamaresult" + }, + { + "label": "resolveModelForInternalInference()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/internalHostInferenceLocal.ts", + "source_location": "L48", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_internalhostinferencelocal_resolvemodelforinternalinference", + "community": 120, + "community_name": "Internal Inference LLM Email", + "norm_label": "resolvemodelforinternalinference()" + }, + { + "label": "runInternalHostLocalLlmInference()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/internalHostInferenceLocal.ts", + "source_location": "L104", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_internalhostinferencelocal_runinternalhostlocalllminference", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "runinternalhostlocalllminference()" + }, + { + "label": "runInternalHostOllamaInference", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/internalHostInferenceLocal.ts", + "source_location": "L201", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_internalhostinferencelocal_runinternalhostollamainference", + "community": 120, + "community_name": "Internal Inference LLM Email", + "norm_label": "runinternalhostollamainference" + }, + { + "label": "llm/ipc.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_ipc", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "llm/ipc.ts" + }, + { + "label": "registerLlmHandlers()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_ipc_registerllmhandlers", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "registerllmhandlers()" + }, + { + "label": "llamaChatResponseContent.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaChatResponseContent.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamachatresponsecontent", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "llamachatresponsecontent.ts" + }, + { + "label": "LlamaChatMessageLike", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaChatResponseContent.ts", + "source_location": "L15", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamachatresponsecontent_llamachatmessagelike", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "llamachatmessagelike" + }, + { + "label": "ExtractedLlamaChatContent", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaChatResponseContent.ts", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamachatresponsecontent_extractedllamachatcontent", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "extractedllamachatcontent" + }, + { + "label": "extractLlamaChatContent()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaChatResponseContent.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamachatresponsecontent_extractllamachatcontent", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "extractllamachatcontent()" + }, + { + "label": "EMPTY_LLM_RESPONSE_ERROR", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaChatResponseContent.ts", + "source_location": "L44", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamachatresponsecontent_empty_llm_response_error", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "empty_llm_response_error" + }, + { + "label": "llamaContextOverflow.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaContextOverflow.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamacontextoverflow", + "community": 183, + "community_name": "Email LLM Internal Inference", + "norm_label": "llamacontextoverflow.ts" + }, + { + "label": "LlamaContextOverflowError", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaContextOverflow.ts", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamacontextoverflow_llamacontextoverflowerror", + "community": 183, + "community_name": "Email LLM Internal Inference", + "norm_label": "llamacontextoverflowerror" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaContextOverflow.ts", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamacontextoverflow_llamacontextoverflowerror_constructor", + "community": 183, + "community_name": "Email LLM Internal Inference", + "norm_label": ".constructor()" + }, + { + "label": "parseLlamaContextOverflowFromBody()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaContextOverflow.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamacontextoverflow_parsellamacontextoverflowfrombody", + "community": 183, + "community_name": "Email LLM Internal Inference", + "norm_label": "parsellamacontextoverflowfrombody()" + }, + { + "label": "isLlamaContextOverflowError()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaContextOverflow.ts", + "source_location": "L37", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamacontextoverflow_isllamacontextoverflowerror", + "community": 183, + "community_name": "Email LLM Internal Inference", + "norm_label": "isllamacontextoverflowerror()" + }, + { + "label": "contextOverflowDetails()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaContextOverflow.ts", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamacontextoverflow_contextoverflowdetails", + "community": 183, + "community_name": "Email LLM Internal Inference", + "norm_label": "contextoverflowdetails()" + }, + { + "label": "llamaServerArgs.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverargs", + "community": 165, + "community_name": "LLM #165", + "norm_label": "llamaserverargs.ts" + }, + { + "label": "execAsync", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L24", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverargs_execasync", + "community": 165, + "community_name": "LLM #165", + "norm_label": "execasync" + }, + { + "label": "GgufKvEstimate", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverargs_ggufkvestimate", + "community": 165, + "community_name": "LLM #165", + "norm_label": "ggufkvestimate" + }, + { + "label": "FALLBACK_KV_BYTES_PER_TOKEN", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L45", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverargs_fallback_kv_bytes_per_token", + "community": 165, + "community_name": "LLM #165", + "norm_label": "fallback_kv_bytes_per_token" + }, + { + "label": "GgufCursor", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L51", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverargs_ggufcursor", + "community": 344, + "community_name": "LLM #344", + "norm_label": "ggufcursor" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L52", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverargs_ggufcursor_constructor", + "community": 344, + "community_name": "LLM #344", + "norm_label": ".constructor()" + }, + { + "label": ".need()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L57", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverargs_ggufcursor_need", + "community": 344, + "community_name": "LLM #344", + "norm_label": ".need()" + }, + { + "label": ".u32()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverargs_ggufcursor_u32", + "community": 344, + "community_name": "LLM #344", + "norm_label": ".u32()" + }, + { + "label": ".u64()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L68", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverargs_ggufcursor_u64", + "community": 344, + "community_name": "LLM #344", + "norm_label": ".u64()" + }, + { + "label": ".i64()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L76", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverargs_ggufcursor_i64", + "community": 344, + "community_name": "LLM #344", + "norm_label": ".i64()" + }, + { + "label": ".str()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L83", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverargs_ggufcursor_str", + "community": 344, + "community_name": "LLM #344", + "norm_label": ".str()" + }, + { + "label": ".skip()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L91", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverargs_ggufcursor_skip", + "community": 344, + "community_name": "LLM #344", + "norm_label": ".skip()" + }, + { + "label": "GgufType", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L98", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverargs_gguftype", + "community": 165, + "community_name": "LLM #165", + "norm_label": "gguftype" + }, + { + "label": "readScalar()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L114", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverargs_readscalar", + "community": 344, + "community_name": "LLM #344", + "norm_label": "readscalar()" + }, + { + "label": "skipValue()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L161", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverargs_skipvalue", + "community": 344, + "community_name": "LLM #344", + "norm_label": "skipvalue()" + }, + { + "label": "parseGgufKvMetadata()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L195", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverargs_parseggufkvmetadata", + "community": 344, + "community_name": "LLM #344", + "norm_label": "parseggufkvmetadata()" + }, + { + "label": "estimateKvBytesPerTokenFromGgufBuffer()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L253", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverargs_estimatekvbytespertokenfromggufbuffer", + "community": 165, + "community_name": "LLM #165", + "norm_label": "estimatekvbytespertokenfromggufbuffer()" + }, + { + "label": "estimateKvBytesPerTokenFromGgufFile()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L285", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverargs_estimatekvbytespertokenfromgguffile", + "community": 165, + "community_name": "LLM #165", + "norm_label": "estimatekvbytespertokenfromgguffile()" + }, + { + "label": "VRAM_HEADROOM_BYTES", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L304", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverargs_vram_headroom_bytes", + "community": 165, + "community_name": "LLM #165", + "norm_label": "vram_headroom_bytes" + }, + { + "label": "CTX_MIN_TOKENS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L305", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverargs_ctx_min_tokens", + "community": 165, + "community_name": "LLM #165", + "norm_label": "ctx_min_tokens" + }, + { + "label": "CTX_ABSOLUTE_MAX_TOKENS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L306", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverargs_ctx_absolute_max_tokens", + "community": 165, + "community_name": "LLM #165", + "norm_label": "ctx_absolute_max_tokens" + }, + { + "label": "MIN_CTX_PER_SLOT", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L309", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverargs_min_ctx_per_slot", + "community": 165, + "community_name": "LLM #165", + "norm_label": "min_ctx_per_slot" + }, + { + "label": "parallelCandidates()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L311", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverargs_parallelcandidates", + "community": 165, + "community_name": "LLM #165", + "norm_label": "parallelcandidates()" + }, + { + "label": "computeMaxCtxPerSlotForVram()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L322", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverargs_computemaxctxperslotforvram", + "community": 165, + "community_name": "LLM #165", + "norm_label": "computemaxctxperslotforvram()" + }, + { + "label": "computeMaxCtxForVram()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L348", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverargs_computemaxctxforvram", + "community": 165, + "community_name": "LLM #165", + "norm_label": "computemaxctxforvram()" + }, + { + "label": "SpawnContextBudget", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L360", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverargs_spawncontextbudget", + "community": 165, + "community_name": "LLM #165", + "norm_label": "spawncontextbudget" + }, + { + "label": "resolveSpawnContextBudget()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L373", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverargs_resolvespawncontextbudget", + "community": 165, + "community_name": "LLM #165", + "norm_label": "resolvespawncontextbudget()" + }, + { + "label": "queryNvidiaVramUsage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L468", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverargs_querynvidiavramusage", + "community": 165, + "community_name": "LLM #165", + "norm_label": "querynvidiavramusage()" + }, + { + "label": "parseSupportedFlagsFromHelp()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L498", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverargs_parsesupportedflagsfromhelp", + "community": 165, + "community_name": "LLM #165", + "norm_label": "parsesupportedflagsfromhelp()" + }, + { + "label": "flashAttnTakesValue()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L511", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverargs_flashattntakesvalue", + "community": 165, + "community_name": "LLM #165", + "norm_label": "flashattntakesvalue()" + }, + { + "label": "ResolvedSpawnPlan", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L519", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverargs_resolvedspawnplan", + "community": 165, + "community_name": "LLM #165", + "norm_label": "resolvedspawnplan" + }, + { + "label": "buildLlamaServerArgs()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L540", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverargs_buildllamaserverargs", + "community": 165, + "community_name": "LLM #165", + "norm_label": "buildllamaserverargs()" + }, + { + "label": "readLlamaServerHelpText()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L602", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverargs_readllamaserverhelptext", + "community": 165, + "community_name": "LLM #165", + "norm_label": "readllamaserverhelptext()" + }, + { + "label": "llamaServerBinaryDownloadAllowlist.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryDownloadAllowlist.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverbinarydownloadallowlist", + "community": 190, + "community_name": "LLM #190", + "norm_label": "llamaserverbinarydownloadallowlist.ts" + }, + { + "label": "LLAMA_SERVER_RELEASE_ALLOWED_HOSTS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryDownloadAllowlist.ts", + "source_location": "L7", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverbinarydownloadallowlist_llama_server_release_allowed_hosts", + "community": 190, + "community_name": "LLM #190", + "norm_label": "llama_server_release_allowed_hosts" + }, + { + "label": "LLAMA_CPP_GITHUB_OWNER_REPO", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryDownloadAllowlist.ts", + "source_location": "L15", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverbinarydownloadallowlist_llama_cpp_github_owner_repo", + "community": 190, + "community_name": "LLM #190", + "norm_label": "llama_cpp_github_owner_repo" + }, + { + "label": "assertHttpsGithubReleaseAssetUrl()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryDownloadAllowlist.ts", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverbinarydownloadallowlist_asserthttpsgithubreleaseasseturl", + "community": 190, + "community_name": "LLM #190", + "norm_label": "asserthttpsgithubreleaseasseturl()" + }, + { + "label": "llamaServerBinaryInstall.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall", + "community": 190, + "community_name": "LLM #190", + "norm_label": "llamaserverbinaryinstall.ts" + }, + { + "label": "LlamaServerVariant", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L25", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_llamaservervariant", + "community": 190, + "community_name": "LLM #190", + "norm_label": "llamaservervariant" + }, + { + "label": "LlamaServerBinaryInstallProgress", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L27", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_llamaserverbinaryinstallprogress", + "community": 190, + "community_name": "LLM #190", + "norm_label": "llamaserverbinaryinstallprogress" + }, + { + "label": "GithubReleaseAsset", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L38", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_githubreleaseasset", + "community": 190, + "community_name": "LLM #190", + "norm_label": "githubreleaseasset" + }, + { + "label": "GithubRelease", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L39", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_githubrelease", + "community": 190, + "community_name": "LLM #190", + "norm_label": "githubrelease" + }, + { + "label": "getLlamaServerBinaryInstallProgress()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L50", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_getllamaserverbinaryinstallprogress", + "community": 190, + "community_name": "LLM #190", + "norm_label": "getllamaserverbinaryinstallprogress()" + }, + { + "label": "cancelLlamaServerBinaryInstall()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_cancelllamaserverbinaryinstall", + "community": 190, + "community_name": "LLM #190", + "norm_label": "cancelllamaserverbinaryinstall()" + }, + { + "label": "installDir()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L59", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_installdir", + "community": 190, + "community_name": "LLM #190", + "norm_label": "installdir()" + }, + { + "label": "detectRecommendedLlamaServerVariant()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L70", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_detectrecommendedllamaservervariant", + "community": 189, + "community_name": "Inference LLM", + "norm_label": "detectrecommendedllamaservervariant()" + }, + { + "label": "fetchLatestLlamaCppRelease()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L84", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_fetchlatestllamacpprelease", + "community": 190, + "community_name": "LLM #190", + "norm_label": "fetchlatestllamacpprelease()" + }, + { + "label": "assetPatternForVariant()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L97", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_assetpatternforvariant", + "community": 190, + "community_name": "LLM #190", + "norm_label": "assetpatternforvariant()" + }, + { + "label": "PickedReleaseAssets", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L103", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_pickedreleaseassets", + "community": 190, + "community_name": "LLM #190", + "norm_label": "pickedreleaseassets" + }, + { + "label": "pickReleaseAssets()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L116", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_pickreleaseassets", + "community": 190, + "community_name": "LLM #190", + "norm_label": "pickreleaseassets()" + }, + { + "label": "fetchRecentLlamaCppReleases()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L144", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_fetchrecentllamacppreleases", + "community": 190, + "community_name": "LLM #190", + "norm_label": "fetchrecentllamacppreleases()" + }, + { + "label": "resolveInstallableRelease()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L163", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_resolveinstallablerelease", + "community": 190, + "community_name": "LLM #190", + "norm_label": "resolveinstallablerelease()" + }, + { + "label": "extractZipWindows()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L189", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_extractzipwindows", + "community": 190, + "community_name": "LLM #190", + "norm_label": "extractzipwindows()" + }, + { + "label": "findExtractedServerBinary()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L213", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_findextractedserverbinary", + "community": 190, + "community_name": "LLM #190", + "norm_label": "findextractedserverbinary()" + }, + { + "label": "flattenIntoRoot()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L236", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_flattenintoroot", + "community": 190, + "community_name": "LLM #190", + "norm_label": "flattenintoroot()" + }, + { + "label": "copyAllFilesFlatIntoRoot()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L249", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_copyallfilesflatintoroot", + "community": 190, + "community_name": "LLM #190", + "norm_label": "copyallfilesflatintoroot()" + }, + { + "label": "setProgress()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L269", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_setprogress", + "community": 190, + "community_name": "LLM #190", + "norm_label": "setprogress()" + }, + { + "label": "downloadAssetToTemp()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L274", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_downloadassettotemp", + "community": 190, + "community_name": "LLM #190", + "norm_label": "downloadassettotemp()" + }, + { + "label": "runInstall()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L320", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_runinstall", + "community": 190, + "community_name": "LLM #190", + "norm_label": "runinstall()" + }, + { + "label": "installLlamaServerBinary()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L418", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_installllamaserverbinary", + "community": 190, + "community_name": "LLM #190", + "norm_label": "installllamaserverbinary()" + }, + { + "label": "llamaServerLog.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerLog.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverlog", + "community": 88, + "community_name": "LLM", + "norm_label": "llamaserverlog.ts" + }, + { + "label": "llamaServerLogPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerLog.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverlog_llamaserverlogpath", + "community": 88, + "community_name": "LLM", + "norm_label": "llamaserverlogpath()" + }, + { + "label": "RotatingLogWriter", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerLog.ts", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverlog_rotatinglogwriter", + "community": 423, + "community_name": "LLM #423", + "norm_label": "rotatinglogwriter" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerLog.ts", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverlog_rotatinglogwriter_constructor", + "community": 423, + "community_name": "LLM #423", + "norm_label": ".constructor()" + }, + { + "label": ".openStream()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerLog.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverlog_rotatinglogwriter_openstream", + "community": 423, + "community_name": "LLM #423", + "norm_label": ".openstream()" + }, + { + "label": ".rotate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerLog.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverlog_rotatinglogwriter_rotate", + "community": 423, + "community_name": "LLM #423", + "norm_label": ".rotate()" + }, + { + "label": ".write()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerLog.ts", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverlog_rotatinglogwriter_write", + "community": 423, + "community_name": "LLM #423", + "norm_label": ".write()" + }, + { + "label": ".close()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerLog.ts", + "source_location": "L66", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamaserverlog_rotatinglogwriter_close", + "community": 423, + "community_name": "LLM #423", + "norm_label": ".close()" + }, + { + "label": "llamacppHttpBases.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamacppHttpBases.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamacpphttpbases", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "llamacpphttpbases.ts" + }, + { + "label": "collectLlamacppHttpBasesFromEnv()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/llamacppHttpBases.ts", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_llamacpphttpbases_collectllamacpphttpbasesfromenv", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "collectllamacpphttpbasesfromenv()" + }, + { + "label": "local-llm-manager.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "community": 112, + "community_name": "LLM Email", + "norm_label": "local-llm-manager.ts" + }, + { + "label": "execAsync", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L53", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_execasync", + "community": 112, + "community_name": "LLM Email", + "norm_label": "execasync" + }, + { + "label": "OpenAiModelsResponse", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L57", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_openaimodelsresponse", + "community": 112, + "community_name": "LLM Email", + "norm_label": "openaimodelsresponse" + }, + { + "label": "OpenAiChatCompletionResponse", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L61", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_openaichatcompletionresponse", + "community": 112, + "community_name": "LLM Email", + "norm_label": "openaichatcompletionresponse" + }, + { + "label": "modelIdFromGgufFilename()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L67", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_modelidfromgguffilename", + "community": 88, + "community_name": "LLM", + "norm_label": "modelidfromgguffilename()" + }, + { + "label": "resolveGgufPathForModelId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L71", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_resolveggufpathformodelid", + "community": 88, + "community_name": "LLM", + "norm_label": "resolveggufpathformodelid()" + }, + { + "label": "LocalLlmManager", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L90", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "community": 88, + "community_name": "LLM", + "norm_label": "localllmmanager" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L146", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_constructor", + "community": 88, + "community_name": "LLM", + "norm_label": ".constructor()" + }, + { + "label": ".initializeServerBinaryPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L152", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_initializeserverbinarypath", + "community": 88, + "community_name": "LLM", + "norm_label": ".initializeserverbinarypath()" + }, + { + "label": ".isBinaryAvailable()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L185", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_isbinaryavailable", + "community": 88, + "community_name": "LLM", + "norm_label": ".isbinaryavailable()" + }, + { + "label": ".enableSupervision()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L203", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_enablesupervision", + "community": 88, + "community_name": "LLM", + "norm_label": ".enablesupervision()" + }, + { + "label": ".onServerHealthy()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L208", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_onserverhealthy", + "community": 88, + "community_name": "LLM", + "norm_label": ".onserverhealthy()" + }, + { + "label": ".getSpawnGeneration()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L214", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_getspawngeneration", + "community": 88, + "community_name": "LLM", + "norm_label": ".getspawngeneration()" + }, + { + "label": ".noteServerReachability()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L219", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_noteserverreachability", + "community": 88, + "community_name": "LLM", + "norm_label": ".noteserverreachability()" + }, + { + "label": ".clearRestartTimer()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L234", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_clearrestarttimer", + "community": 88, + "community_name": "LLM", + "norm_label": ".clearrestarttimer()" + }, + { + "label": ".pruneRestartWindow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L241", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_prunerestartwindow", + "community": 88, + "community_name": "LLM", + "norm_label": ".prunerestartwindow()" + }, + { + "label": ".scheduleSupervisedRestart()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L246", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_schedulesupervisedrestart", + "community": 88, + "community_name": "LLM", + "norm_label": ".schedulesupervisedrestart()" + }, + { + "label": ".attachProcessExitHandler()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L268", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_attachprocessexithandler", + "community": 88, + "community_name": "LLM", + "norm_label": ".attachprocessexithandler()" + }, + { + "label": ".waitUntilReady()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L286", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_waituntilready", + "community": 88, + "community_name": "LLM", + "norm_label": ".waituntilready()" + }, + { + "label": ".ensureManagedServerRunning()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L299", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_ensuremanagedserverrunning", + "community": 88, + "community_name": "LLM", + "norm_label": ".ensuremanagedserverrunning()" + }, + { + "label": ".shutdownManagedServer()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L343", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_shutdownmanagedserver", + "community": 88, + "community_name": "LLM", + "norm_label": ".shutdownmanagedserver()" + }, + { + "label": ".getServerHelpText()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L351", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_getserverhelptext", + "community": 165, + "community_name": "LLM #165", + "norm_label": ".getserverhelptext()" + }, + { + "label": ".resolveSpawnPlan()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L365", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_resolvespawnplan", + "community": 165, + "community_name": "LLM #165", + "norm_label": ".resolvespawnplan()" + }, + { + "label": ".spawnOwnedServer()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L409", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_spawnownedserver", + "community": 88, + "community_name": "LLM", + "norm_label": ".spawnownedserver()" + }, + { + "label": ".getLastSpawnPlan()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L466", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_getlastspawnplan", + "community": 165, + "community_name": "LLM #165", + "norm_label": ".getlastspawnplan()" + }, + { + "label": ".getAppliedCtxPerSlot()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L471", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_getappliedctxperslot", + "community": 88, + "community_name": "LLM", + "norm_label": ".getappliedctxperslot()" + }, + { + "label": ".computeServerConfigInsight()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L479", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_computeserverconfiginsight", + "community": 165, + "community_name": "LLM #165", + "norm_label": ".computeserverconfiginsight()" + }, + { + "label": ".getRestartState()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L513", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_getrestartstate", + "community": 88, + "community_name": "LLM", + "norm_label": ".getrestartstate()" + }, + { + "label": ".restartManagedServerGraceful()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L522", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_restartmanagedservergraceful", + "community": 88, + "community_name": "LLM", + "norm_label": ".restartmanagedservergraceful()" + }, + { + "label": ".collectHttpBases()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L562", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_collecthttpbases", + "community": 88, + "community_name": "LLM", + "norm_label": ".collecthttpbases()" + }, + { + "label": ".applyResolvedBaseUrl()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L566", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_applyresolvedbaseurl", + "community": 88, + "community_name": "LLM", + "norm_label": ".applyresolvedbaseurl()" + }, + { + "label": ".probeHttpModelsWithLogging()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L586", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_probehttpmodelswithlogging", + "community": 88, + "community_name": "LLM", + "norm_label": ".probehttpmodelswithlogging()" + }, + { + "label": ".probeHttpTagsWithLogging()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L632", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_probehttptagswithlogging", + "community": 88, + "community_name": "LLM", + "norm_label": ".probehttptagswithlogging()" + }, + { + "label": ".probeCached()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L649", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_probecached", + "community": 88, + "community_name": "LLM", + "norm_label": ".probecached()" + }, + { + "label": ".invalidateProbeCache()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L684", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_invalidateprobecache", + "community": 88, + "community_name": "LLM", + "norm_label": ".invalidateprobecache()" + }, + { + "label": ".checkInstalled()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L690", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_checkinstalled", + "community": 88, + "community_name": "LLM", + "norm_label": ".checkinstalled()" + }, + { + "label": ".getVersion()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L701", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_getversion", + "community": 112, + "community_name": "LLM Email", + "norm_label": ".getversion()" + }, + { + "label": ".scanGgufModelsOnDisk()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L723", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_scanggufmodelsondisk", + "community": 88, + "community_name": "LLM", + "norm_label": ".scanggufmodelsondisk()" + }, + { + "label": ".parseOpenAiModelsResponse()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L748", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_parseopenaimodelsresponse", + "community": 88, + "community_name": "LLM", + "norm_label": ".parseopenaimodelsresponse()" + }, + { + "label": ".start()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L774", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_start", + "community": 88, + "community_name": "LLM", + "norm_label": ".start()" + }, + { + "label": ".isServerResponding()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L782", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_isserverresponding", + "community": 88, + "community_name": "LLM", + "norm_label": ".isserverresponding()" + }, + { + "label": ".isRunning()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L796", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_isrunning", + "community": 88, + "community_name": "LLM", + "norm_label": ".isrunning()" + }, + { + "label": ".stop()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L804", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_stop", + "community": 88, + "community_name": "LLM", + "norm_label": ".stop()" + }, + { + "label": ".getStatus()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L829", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_getstatus", + "community": 112, + "community_name": "LLM Email", + "norm_label": ".getstatus()" + }, + { + "label": ".fetchModelsInstalledFresh()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L868", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_fetchmodelsinstalledfresh", + "community": 88, + "community_name": "LLM", + "norm_label": ".fetchmodelsinstalledfresh()" + }, + { + "label": ".fetchTagsInstalledModelsFresh()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L873", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_fetchtagsinstalledmodelsfresh", + "community": 88, + "community_name": "LLM", + "norm_label": ".fetchtagsinstalledmodelsfresh()" + }, + { + "label": ".listModelsRaw()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L877", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_listmodelsraw", + "community": 88, + "community_name": "LLM", + "norm_label": ".listmodelsraw()" + }, + { + "label": ".listModels()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L902", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_listmodels", + "community": 88, + "community_name": "LLM", + "norm_label": ".listmodels()" + }, + { + "label": ".invalidateModelsCache()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L932", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_invalidatemodelscache", + "community": 88, + "community_name": "LLM", + "norm_label": ".invalidatemodelscache()" + }, + { + "label": ".refreshServerBinaryPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L942", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_refreshserverbinarypath", + "community": 88, + "community_name": "LLM", + "norm_label": ".refreshserverbinarypath()" + }, + { + "label": ".getEffectiveChatModelName()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L948", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_geteffectivechatmodelname", + "community": 112, + "community_name": "LLM Email", + "norm_label": ".geteffectivechatmodelname()" + }, + { + "label": ".setActiveModelPreference()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L977", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_setactivemodelpreference", + "community": 88, + "community_name": "LLM", + "norm_label": ".setactivemodelpreference()" + }, + { + "label": ".pullModel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L997", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_pullmodel", + "community": 88, + "community_name": "LLM", + "norm_label": ".pullmodel()" + }, + { + "label": ".cancelModelDownload()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L1005", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_cancelmodeldownload", + "community": 88, + "community_name": "LLM", + "norm_label": ".cancelmodeldownload()" + }, + { + "label": ".importModelFromFile()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L1010", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_importmodelfromfile", + "community": 88, + "community_name": "LLM", + "norm_label": ".importmodelfromfile()" + }, + { + "label": ".downloadModelFromUrl()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L1026", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_downloadmodelfromurl", + "community": 88, + "community_name": "LLM", + "norm_label": ".downloadmodelfromurl()" + }, + { + "label": ".deleteModel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L1048", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_deletemodel", + "community": 88, + "community_name": "LLM", + "norm_label": ".deletemodel()" + }, + { + "label": ".chat()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L1057", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_chat", + "community": 170, + "community_name": "LLM #170", + "norm_label": ".chat()" + }, + { + "label": ".getDownloadProgress()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L1106", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_getdownloadprogress", + "community": 88, + "community_name": "LLM", + "norm_label": ".getdownloadprogress()" + }, + { + "label": ".setDownloadProgress()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L1110", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_setdownloadprogress", + "community": 88, + "community_name": "LLM", + "norm_label": ".setdownloadprogress()" + }, + { + "label": ".getBaseUrl()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L1114", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_getbaseurl", + "community": 88, + "community_name": "LLM", + "norm_label": ".getbaseurl()" + }, + { + "label": ".getPort()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L1118", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_getport", + "community": 88, + "community_name": "LLM", + "norm_label": ".getport()" + }, + { + "label": ".getModelsDirectory()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L1122", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_getmodelsdirectory", + "community": 88, + "community_name": "LLM", + "norm_label": ".getmodelsdirectory()" + }, + { + "label": "localLlmBulkPrewarm.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmBulkPrewarm.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmbulkprewarm", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "localllmbulkprewarm.ts" + }, + { + "label": "lastPrewarmAtByModel", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmBulkPrewarm.ts", + "source_location": "L12", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmbulkprewarm_lastprewarmatbymodel", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "lastprewarmatbymodel" + }, + { + "label": "noteLocalLlmActiveModelChangedForBulkPrewarm()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmBulkPrewarm.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmbulkprewarm_notelocalllmactivemodelchangedforbulkprewarm", + "community": 88, + "community_name": "LLM", + "norm_label": "notelocalllmactivemodelchangedforbulkprewarm()" + }, + { + "label": "LocalLlmBulkPrewarmDiag", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmBulkPrewarm.ts", + "source_location": "L19", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmbulkprewarm_localllmbulkprewarmdiag", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "localllmbulkprewarmdiag" + }, + { + "label": "maybePrewarmLocalLlmForBulkClassify()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmBulkPrewarm.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmbulkprewarm_maybeprewarmlocalllmforbulkclassify", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "maybeprewarmlocalllmforbulkclassify()" + }, + { + "label": "localLlmLifecycle.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmLifecycle.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmlifecycle", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "localllmlifecycle.ts" + }, + { + "label": "LocalLlmLifecycleInitResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmLifecycle.ts", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmlifecycle_localllmlifecycleinitresult", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "localllmlifecycleinitresult" + }, + { + "label": "initHostLocalLlmLifecycle()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmLifecycle.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmlifecycle_inithostlocalllmlifecycle", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "inithostlocalllmlifecycle()" + }, + { + "label": "shutdownHostLocalLlmLifecycle()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmLifecycle.ts", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmlifecycle_shutdownhostlocalllmlifecycle", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "shutdownhostlocalllmlifecycle()" + }, + { + "label": "ensureLocalLlmAfterModelInstall()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmLifecycle.ts", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmlifecycle_ensurelocalllmaftermodelinstall", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "ensurelocalllmaftermodelinstall()" + }, + { + "label": "localLlmModelInstall.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall", + "community": 149, + "community_name": "LLM #149", + "norm_label": "localllmmodelinstall.ts" + }, + { + "label": "ModelInstallResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_modelinstallresult", + "community": 88, + "community_name": "LLM", + "norm_label": "modelinstallresult" + }, + { + "label": "modelIdFromGgufFilename()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_modelidfromgguffilename", + "community": 149, + "community_name": "LLM #149", + "norm_label": "modelidfromgguffilename()" + }, + { + "label": "destPathForFileName()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_destpathforfilename", + "community": 149, + "community_name": "LLM #149", + "norm_label": "destpathforfilename()" + }, + { + "label": "ensureModelsDir()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_ensuremodelsdir", + "community": 149, + "community_name": "LLM #149", + "norm_label": "ensuremodelsdir()" + }, + { + "label": "finalizeGgufImport()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_finalizeggufimport", + "community": 149, + "community_name": "LLM #149", + "norm_label": "finalizeggufimport()" + }, + { + "label": "importGgufFromUserPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_importgguffromuserpath", + "community": 149, + "community_name": "LLM #149", + "norm_label": "importgguffromuserpath()" + }, + { + "label": "DOWNLOAD_RETRY_BACKOFF_MS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L100", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_download_retry_backoff_ms", + "community": 149, + "community_name": "LLM #149", + "norm_label": "download_retry_backoff_ms" + }, + { + "label": "PartMeta", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L102", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_partmeta", + "community": 149, + "community_name": "LLM #149", + "norm_label": "partmeta" + }, + { + "label": "partPathFor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L104", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_partpathfor", + "community": 149, + "community_name": "LLM #149", + "norm_label": "partpathfor()" + }, + { + "label": "partMetaPathFor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L108", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_partmetapathfor", + "community": 149, + "community_name": "LLM #149", + "norm_label": "partmetapathfor()" + }, + { + "label": "readPartMeta()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L112", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_readpartmeta", + "community": 149, + "community_name": "LLM #149", + "norm_label": "readpartmeta()" + }, + { + "label": "discardPart()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L123", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_discardpart", + "community": 149, + "community_name": "LLM #149", + "norm_label": "discardpart()" + }, + { + "label": "cleanupForeignPartFiles()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L132", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_cleanupforeignpartfiles", + "community": 149, + "community_name": "LLM #149", + "norm_label": "cleanupforeignpartfiles()" + }, + { + "label": "totalFromContentRange()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L151", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_totalfromcontentrange", + "community": 149, + "community_name": "LLM #149", + "norm_label": "totalfromcontentrange()" + }, + { + "label": "abortableSleep()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L156", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_abortablesleep", + "community": 149, + "community_name": "LLM #149", + "norm_label": "abortablesleep()" + }, + { + "label": "DownloadStalledError", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L174", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_downloadstallederror", + "community": 149, + "community_name": "LLM #149", + "norm_label": "downloadstallederror" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L175", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_downloadstallederror_constructor", + "community": 149, + "community_name": "LLM #149", + "norm_label": ".constructor()" + }, + { + "label": "attemptRangeDownload()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L186", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_attemptrangedownload", + "community": 149, + "community_name": "LLM #149", + "norm_label": "attemptrangedownload()" + }, + { + "label": "downloadGgufFromAllowedUrl()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L305", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_downloadgguffromallowedurl", + "community": 149, + "community_name": "LLM #149", + "norm_label": "downloadgguffromallowedurl()" + }, + { + "label": "readInstalledModelSha256()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L398", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_readinstalledmodelsha256", + "community": 149, + "community_name": "LLM #149", + "norm_label": "readinstalledmodelsha256()" + }, + { + "label": "deleteInstalledGguf()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L402", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_deleteinstalledgguf", + "community": 149, + "community_name": "LLM #149", + "norm_label": "deleteinstalledgguf()" + }, + { + "label": "localLlmPaths.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmPaths.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmpaths", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "localllmpaths.ts" + }, + { + "label": "DEFAULT_LLAMACPP_PORT", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmPaths.ts", + "source_location": "L10", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmpaths_default_llamacpp_port", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "default_llamacpp_port" + }, + { + "label": "HOST_AI_DEFAULT_LOCAL_LLAMACPP_BASE", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmPaths.ts", + "source_location": "L12", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmpaths_host_ai_default_local_llamacpp_base", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "host_ai_default_local_llamacpp_base" + }, + { + "label": "getLocalLlmModelsDirectory()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmPaths.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmpaths_getlocalllmmodelsdirectory", + "community": 149, + "community_name": "LLM #149", + "norm_label": "getlocalllmmodelsdirectory()" + }, + { + "label": "localLlmProviderStatus.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmProviderStatus.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmproviderstatus", + "community": 112, + "community_name": "LLM Email", + "norm_label": "localllmproviderstatus.ts" + }, + { + "label": "LocalLlmProviderStatus", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmProviderStatus.ts", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmproviderstatus_localllmproviderstatus", + "community": 112, + "community_name": "LLM Email", + "norm_label": "localllmproviderstatus" + }, + { + "label": "getLocalLlmProviderStatus()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmProviderStatus.ts", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmproviderstatus_getlocalllmproviderstatus", + "community": 112, + "community_name": "LLM Email", + "norm_label": "getlocalllmproviderstatus()" + }, + { + "label": "localLlmRuntimeDiagnostics.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "localllmruntimediagnostics.ts" + }, + { + "label": "DEBUG_LOCAL_LLM_RUNTIME_TRACE", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L8", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_debug_local_llm_runtime_trace", + "community": 112, + "community_name": "LLM Email", + "norm_label": "debug_local_llm_runtime_trace" + }, + { + "label": "DEBUG_OLLAMA_RUNTIME_TRACE", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L11", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_debug_ollama_runtime_trace", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "debug_ollama_runtime_trace" + }, + { + "label": "LocalLlmRuntimeRequestTrace", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_localllmruntimerequesttrace", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "localllmruntimerequesttrace" + }, + { + "label": "OllamaRuntimeRequestTrace", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_ollamaruntimerequesttrace", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "ollamaruntimerequesttrace" + }, + { + "label": "BatchScope", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L26", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_batchscope", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "batchscope" + }, + { + "label": "trackBatchScope()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L37", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_trackbatchscope", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "trackbatchscope()" + }, + { + "label": "touchBatchMaxInFlight()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_touchbatchmaxinflight", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "touchbatchmaxinflight()" + }, + { + "label": "localLlmRuntimeInFlightDelta()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_localllmruntimeinflightdelta", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "localllmruntimeinflightdelta()" + }, + { + "label": "ollamaRuntimeInFlightDelta", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L52", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_ollamaruntimeinflightdelta", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "ollamaruntimeinflightdelta" + }, + { + "label": "localLlmRuntimeGetInFlight()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_localllmruntimegetinflight", + "community": 88, + "community_name": "LLM", + "norm_label": "localllmruntimegetinflight()" + }, + { + "label": "ollamaRuntimeGetInFlight", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L59", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_ollamaruntimegetinflight", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "ollamaruntimegetinflight" + }, + { + "label": "localLlmRuntimeLog()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_localllmruntimelog", + "community": 112, + "community_name": "LLM Email", + "norm_label": "localllmruntimelog()" + }, + { + "label": "ollamaRuntimeLog", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L67", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_ollamaruntimelog", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "ollamaruntimelog" + }, + { + "label": "nsToMs()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L69", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_nstoms", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "nstoms()" + }, + { + "label": "localLlmRuntimeRecordChatTiming()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L77", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_localllmruntimerecordchattiming", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "localllmruntimerecordchattiming()" + }, + { + "label": "ollamaRuntimeRecordChatTiming", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L84", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_ollamaruntimerecordchattiming", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "ollamaruntimerecordchattiming" + }, + { + "label": "localLlmRuntimeObservedWarmModel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L87", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_localllmruntimeobservedwarmmodel", + "community": 112, + "community_name": "LLM Email", + "norm_label": "localllmruntimeobservedwarmmodel()" + }, + { + "label": "ollamaRuntimeObservedWarmModel", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L94", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_ollamaruntimeobservedwarmmodel", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "ollamaruntimeobservedwarmmodel" + }, + { + "label": "localLlmRuntimeSetBatchScope()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L96", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_localllmruntimesetbatchscope", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "localllmruntimesetbatchscope()" + }, + { + "label": "ollamaRuntimeSetBatchScope", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L101", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_ollamaruntimesetbatchscope", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "ollamaruntimesetbatchscope" + }, + { + "label": "localLlmRuntimeGetBatchScope()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L103", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_localllmruntimegetbatchscope", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "localllmruntimegetbatchscope()" + }, + { + "label": "ollamaRuntimeGetBatchScope", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L108", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_ollamaruntimegetbatchscope", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "ollamaruntimegetbatchscope" + }, + { + "label": "localLlmRuntimeShouldTrackBatch()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L110", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_localllmruntimeshouldtrackbatch", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "localllmruntimeshouldtrackbatch()" + }, + { + "label": "ollamaRuntimeShouldTrackBatch", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L115", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_ollamaruntimeshouldtrackbatch", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "ollamaruntimeshouldtrackbatch" + }, + { + "label": "LocalLlmClassifyBatchChunkDiag", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L117", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_localllmclassifybatchchunkdiag", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "localllmclassifybatchchunkdiag" + }, + { + "label": "OllamaClassifyBatchChunkDiag", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L127", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_ollamaclassifybatchchunkdiag", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "ollamaclassifybatchchunkdiag" + }, + { + "label": "localLlmRuntimeBeginBatch()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L130", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_localllmruntimebeginbatch", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "localllmruntimebeginbatch()" + }, + { + "label": "ollamaRuntimeBeginBatch", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L149", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_ollamaruntimebeginbatch", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "ollamaruntimebeginbatch" + }, + { + "label": "localLlmRuntimeEndBatch()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L151", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_localllmruntimeendbatch", + "community": 112, + "community_name": "LLM Email", + "norm_label": "localllmruntimeendbatch()" + }, + { + "label": "ollamaRuntimeEndBatch", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L176", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_ollamaruntimeendbatch", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "ollamaruntimeendbatch" + }, + { + "label": "localLlmRuntimeStatus.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeStatus.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus", + "community": 112, + "community_name": "LLM Email", + "norm_label": "localllmruntimestatus.ts" + }, + { + "label": "execAsync", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeStatus.ts", + "source_location": "L19", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus_execasync", + "community": 112, + "community_name": "LLM Email", + "norm_label": "execasync" + }, + { + "label": "GpuHints", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeStatus.ts", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus_gpuhints", + "community": 112, + "community_name": "LLM Email", + "norm_label": "gpuhints" + }, + { + "label": "execOpts()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeStatus.ts", + "source_location": "L37", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus_execopts", + "community": 112, + "community_name": "LLM Email", + "norm_label": "execopts()" + }, + { + "label": "parsePowershellVideoControllerNames()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeStatus.ts", + "source_location": "L41", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus_parsepowershellvideocontrollernames", + "community": 112, + "community_name": "LLM Email", + "norm_label": "parsepowershellvideocontrollernames()" + }, + { + "label": "tryNvidiaSmi()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeStatus.ts", + "source_location": "L51", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus_trynvidiasmi", + "community": 112, + "community_name": "LLM Email", + "norm_label": "trynvidiasmi()" + }, + { + "label": "detectGpuHintsUncached()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeStatus.ts", + "source_location": "L60", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus_detectgpuhintsuncached", + "community": 112, + "community_name": "LLM Email", + "norm_label": "detectgpuhintsuncached()" + }, + { + "label": "getGpuAccelerationHintsCached()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeStatus.ts", + "source_location": "L137", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus_getgpuaccelerationhintscached", + "community": 112, + "community_name": "LLM Email", + "norm_label": "getgpuaccelerationhintscached()" + }, + { + "label": "buildSummaryAndEvidence()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeStatus.ts", + "source_location": "L144", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus_buildsummaryandevidence", + "community": 112, + "community_name": "LLM Email", + "norm_label": "buildsummaryandevidence()" + }, + { + "label": "classifyLocalLlmRuntime()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeStatus.ts", + "source_location": "L188", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus_classifylocalllmruntime", + "community": 112, + "community_name": "LLM Email", + "norm_label": "classifylocalllmruntime()" + }, + { + "label": "buildLocalLlmRuntimeInfo()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeStatus.ts", + "source_location": "L207", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus_buildlocalllmruntimeinfo", + "community": 112, + "community_name": "LLM Email", + "norm_label": "buildlocalllmruntimeinfo()" + }, + { + "label": "localLlmServerConfig.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmServerConfig.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmserverconfig", + "community": 275, + "community_name": "LLM #275", + "norm_label": "localllmserverconfig.ts" + }, + { + "label": "LocalLlmCtxMode", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmServerConfig.ts", + "source_location": "L21", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmserverconfig_localllmctxmode", + "community": 275, + "community_name": "LLM #275", + "norm_label": "localllmctxmode" + }, + { + "label": "LocalLlmServerConfig", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmServerConfig.ts", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmserverconfig_localllmserverconfig", + "community": 275, + "community_name": "LLM #275", + "norm_label": "localllmserverconfig" + }, + { + "label": "LOCAL_LLM_CTX_STANDARD", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmServerConfig.ts", + "source_location": "L33", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmserverconfig_local_llm_ctx_standard", + "community": 275, + "community_name": "LLM #275", + "norm_label": "local_llm_ctx_standard" + }, + { + "label": "LOCAL_LLM_CTX_LONG", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmServerConfig.ts", + "source_location": "L35", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmserverconfig_local_llm_ctx_long", + "community": 275, + "community_name": "LLM #275", + "norm_label": "local_llm_ctx_long" + }, + { + "label": "DEFAULT_LOCAL_LLM_SERVER_CONFIG", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmServerConfig.ts", + "source_location": "L37", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmserverconfig_default_local_llm_server_config", + "community": 275, + "community_name": "LLM #275", + "norm_label": "default_local_llm_server_config" + }, + { + "label": "ctxTokensForMode()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmServerConfig.ts", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmserverconfig_ctxtokensformode", + "community": 275, + "community_name": "LLM #275", + "norm_label": "ctxtokensformode()" + }, + { + "label": "sanitizeLocalLlmServerConfig()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmServerConfig.ts", + "source_location": "L51", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmserverconfig_sanitizelocalllmserverconfig", + "community": 275, + "community_name": "LLM #275", + "norm_label": "sanitizelocalllmserverconfig()" + }, + { + "label": "storePath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmServerConfig.ts", + "source_location": "L65", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmserverconfig_storepath", + "community": 275, + "community_name": "LLM #275", + "norm_label": "storepath()" + }, + { + "label": "getLocalLlmServerConfig()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmServerConfig.ts", + "source_location": "L69", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmserverconfig_getlocalllmserverconfig", + "community": 275, + "community_name": "LLM #275", + "norm_label": "getlocalllmserverconfig()" + }, + { + "label": "setLocalLlmServerConfig()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmServerConfig.ts", + "source_location": "L80", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmserverconfig_setlocalllmserverconfig", + "community": 275, + "community_name": "LLM #275", + "norm_label": "setlocalllmserverconfig()" + }, + { + "label": "localLlmServerConfigApi.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmServerConfigApi.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmserverconfigapi", + "community": 275, + "community_name": "LLM #275", + "norm_label": "localllmserverconfigapi.ts" + }, + { + "label": "LocalLlmServerConfigView", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmServerConfigApi.ts", + "source_location": "L16", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmserverconfigapi_localllmserverconfigview", + "community": 275, + "community_name": "LLM #275", + "norm_label": "localllmserverconfigview" + }, + { + "label": "getLocalLlmServerConfigView()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmServerConfigApi.ts", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmserverconfigapi_getlocalllmserverconfigview", + "community": 275, + "community_name": "LLM #275", + "norm_label": "getlocalllmserverconfigview()" + }, + { + "label": "applyLocalLlmServerConfigPatch()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmServerConfigApi.ts", + "source_location": "L74", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmserverconfigapi_applylocalllmserverconfigpatch", + "community": 275, + "community_name": "LLM #275", + "norm_label": "applylocalllmserverconfigpatch()" + }, + { + "label": "restartLocalLlmServerForSettings()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmServerConfigApi.ts", + "source_location": "L89", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localllmserverconfigapi_restartlocalllmserverforsettings", + "community": 275, + "community_name": "LLM #275", + "norm_label": "restartlocalllmserverforsettings()" + }, + { + "label": "llm/localModelIdentity.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localModelIdentity.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localmodelidentity", + "community": 120, + "community_name": "Internal Inference LLM Email", + "norm_label": "llm/localmodelidentity.ts" + }, + { + "label": "canonicalLocalModelName()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localModelIdentity.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localmodelidentity_canonicallocalmodelname", + "community": 120, + "community_name": "Internal Inference LLM Email", + "norm_label": "canonicallocalmodelname()" + }, + { + "label": "resolveLocalModelAlias()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localModelIdentity.ts", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localmodelidentity_resolvelocalmodelalias", + "community": 120, + "community_name": "Internal Inference LLM Email", + "norm_label": "resolvelocalmodelalias()" + }, + { + "label": "localModelIdsMatch()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localModelIdentity.ts", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localmodelidentity_localmodelidsmatch", + "community": 120, + "community_name": "Internal Inference LLM Email", + "norm_label": "localmodelidsmatch()" + }, + { + "label": "dedupeCanonicalModelNames()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/localModelIdentity.ts", + "source_location": "L51", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_localmodelidentity_dedupecanonicalmodelnames", + "community": 120, + "community_name": "Internal Inference LLM Email", + "norm_label": "dedupecanonicalmodelnames()" + }, + { + "label": "modeModelWarmupTrigger.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/modeModelWarmupTrigger.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_modemodelwarmuptrigger", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "modemodelwarmuptrigger.ts" + }, + { + "label": "ModeWarmTrigger", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/modeModelWarmupTrigger.ts", + "source_location": "L15", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_modemodelwarmuptrigger_modewarmtrigger", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "modewarmtrigger" + }, + { + "label": "scheduleModeModelWarmOnTrigger()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/modeModelWarmupTrigger.ts", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_modemodelwarmuptrigger_schedulemodemodelwarmontrigger", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "schedulemodemodelwarmontrigger()" + }, + { + "label": "runModeModelWarmOnTrigger()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/modeModelWarmupTrigger.ts", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_modemodelwarmuptrigger_runmodemodelwarmontrigger", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "runmodemodelwarmontrigger()" + }, + { + "label": "ollamaEmbeddingCapability.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/ollamaEmbeddingCapability.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_ollamaembeddingcapability", + "community": 166, + "community_name": "LLM #166", + "norm_label": "ollamaembeddingcapability.ts" + }, + { + "label": "AiModelCapability", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/ollamaEmbeddingCapability.ts", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_ollamaembeddingcapability_aimodelcapability", + "community": 166, + "community_name": "LLM #166", + "norm_label": "aimodelcapability" + }, + { + "label": "TagsRow", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/ollamaEmbeddingCapability.ts", + "source_location": "L15", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_ollamaembeddingcapability_tagsrow", + "community": 166, + "community_name": "LLM #166", + "norm_label": "tagsrow" + }, + { + "label": "fetchOllamaInstalledModelNames()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/ollamaEmbeddingCapability.ts", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_ollamaembeddingcapability_fetchollamainstalledmodelnames", + "community": 166, + "community_name": "LLM #166", + "norm_label": "fetchollamainstalledmodelnames()" + }, + { + "label": "normalizeOllamaModelBaseName()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/ollamaEmbeddingCapability.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_ollamaembeddingcapability_normalizeollamamodelbasename", + "community": 166, + "community_name": "LLM #166", + "norm_label": "normalizeollamamodelbasename()" + }, + { + "label": "isLikelyOllamaEmbeddingModel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/ollamaEmbeddingCapability.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_ollamaembeddingcapability_islikelyollamaembeddingmodel", + "community": 166, + "community_name": "LLM #166", + "norm_label": "islikelyollamaembeddingmodel()" + }, + { + "label": "findInstalledExact()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/ollamaEmbeddingCapability.ts", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_ollamaembeddingcapability_findinstalledexact", + "community": 166, + "community_name": "LLM #166", + "norm_label": "findinstalledexact()" + }, + { + "label": "pickEmbeddingModelForTags()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/ollamaEmbeddingCapability.ts", + "source_location": "L68", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_ollamaembeddingcapability_pickembeddingmodelfortags", + "community": 166, + "community_name": "LLM #166", + "norm_label": "pickembeddingmodelfortags()" + }, + { + "label": "ResolveOllamaEmbeddingInput", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/ollamaEmbeddingCapability.ts", + "source_location": "L92", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_ollamaembeddingcapability_resolveollamaembeddinginput", + "community": 166, + "community_name": "LLM #166", + "norm_label": "resolveollamaembeddinginput" + }, + { + "label": "resolveOllamaEmbeddingAtBaseUrl()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/ollamaEmbeddingCapability.ts", + "source_location": "L104", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_ollamaembeddingcapability_resolveollamaembeddingatbaseurl", + "community": 166, + "community_name": "LLM #166", + "norm_label": "resolveollamaembeddingatbaseurl()" + }, + { + "label": "openAiSseChatStream.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/openAiSseChatStream.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_openaissechatstream", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "openaissechatstream.ts" + }, + { + "label": "OpenAiChatCompletionsSseParseResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/openAiSseChatStream.ts", + "source_location": "L1", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_openaissechatstream_openaichatcompletionssseparseresult", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "openaichatcompletionssseparseresult" + }, + { + "label": "parseOpenAiChatCompletionsSseLine()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/openAiSseChatStream.ts", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_openaissechatstream_parseopenaichatcompletionssseline", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "parseopenaichatcompletionssseline()" + }, + { + "label": "resolveAiExecutionContext.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "resolveaiexecutioncontext.ts" + }, + { + "label": "NO_AI_MODEL_SELECTED", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L20", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_no_ai_model_selected", + "community": 12, + "community_name": "Inbox LLM Providers", + "norm_label": "no_ai_model_selected" + }, + { + "label": "HOST_SEALED_TARGET_UNAVAILABLE", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L28", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_host_sealed_target_unavailable", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "host_sealed_target_unavailable" + }, + { + "label": "preferredModelFromPeerOllamaRoster()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_preferredmodelfrompeerollamaroster", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "preferredmodelfrompeerollamaroster()" + }, + { + "label": "enrichOllamaDirectBase()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_enrichollamadirectbase", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "enrichollamadirectbase()" + }, + { + "label": "rowModelName()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L57", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_rowmodelname", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "rowmodelname()" + }, + { + "label": "logModelSelectionDecision()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L64", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_logmodelselectiondecision", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "logmodelselectiondecision()" + }, + { + "label": "fallbackFromListSandbox()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L69", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_fallbackfromlistsandbox", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "fallbackfromlistsandbox()" + }, + { + "label": "tryLocalContext()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L234", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_trylocalcontext", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "trylocalcontext()" + }, + { + "label": "isEffectiveSandboxSideForAiExecution()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L263", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_iseffectivesandboxsideforaiexecution", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "iseffectivesandboxsideforaiexecution()" + }, + { + "label": "resolveAiExecutionContextForLlm()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L271", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_resolveaiexecutioncontextforllm", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "resolveaiexecutioncontextforllm()" + }, + { + "label": "resolveDeclaredModelAvailability.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveDeclaredModelAvailability.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_resolvedeclaredmodelavailability", + "community": 373, + "community_name": "LLM #373", + "norm_label": "resolvedeclaredmodelavailability.ts" + }, + { + "label": "ModelFallbackReason", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveDeclaredModelAvailability.ts", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_resolvedeclaredmodelavailability_modelfallbackreason", + "community": 373, + "community_name": "LLM #373", + "norm_label": "modelfallbackreason" + }, + { + "label": "DeclaredModelResolution", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveDeclaredModelAvailability.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_resolvedeclaredmodelavailability_declaredmodelresolution", + "community": 373, + "community_name": "LLM #373", + "norm_label": "declaredmodelresolution" + }, + { + "label": "isOllamaModelInstalled()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveDeclaredModelAvailability.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_resolvedeclaredmodelavailability_isollamamodelinstalled", + "community": 373, + "community_name": "LLM #373", + "norm_label": "isollamamodelinstalled()" + }, + { + "label": "logModelFallbackLine()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveDeclaredModelAvailability.ts", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_resolvedeclaredmodelavailability_logmodelfallbackline", + "community": 373, + "community_name": "LLM #373", + "norm_label": "logmodelfallbackline()" + }, + { + "label": "resolveDeclaredLocalOllamaModel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveDeclaredModelAvailability.ts", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_resolvedeclaredmodelavailability_resolvedeclaredlocalollamamodel", + "community": 373, + "community_name": "LLM #373", + "norm_label": "resolvedeclaredlocalollamamodel()" + }, + { + "label": "ModelFallbackWire", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveDeclaredModelAvailability.ts", + "source_location": "L103", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_resolvedeclaredmodelavailability_modelfallbackwire", + "community": 373, + "community_name": "LLM #373", + "norm_label": "modelfallbackwire" + }, + { + "label": "toModelFallbackWire()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveDeclaredModelAvailability.ts", + "source_location": "L110", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_resolvedeclaredmodelavailability_tomodelfallbackwire", + "community": 373, + "community_name": "LLM #373", + "norm_label": "tomodelfallbackwire()" + }, + { + "label": "rotating-logger.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/rotating-logger.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_rotating_logger", + "community": 156, + "community_name": "LLM Critical Jobs Remote", + "norm_label": "rotating-logger.ts" + }, + { + "label": "RotatingLogger", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/rotating-logger.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_rotating_logger_rotatinglogger", + "community": 156, + "community_name": "LLM Critical Jobs Remote", + "norm_label": "rotatinglogger" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/rotating-logger.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_rotating_logger_rotatinglogger_constructor", + "community": 156, + "community_name": "LLM Critical Jobs Remote", + "norm_label": ".constructor()" + }, + { + "label": ".initializeStream()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/rotating-logger.ts", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_rotating_logger_rotatinglogger_initializestream", + "community": 156, + "community_name": "LLM Critical Jobs Remote", + "norm_label": ".initializestream()" + }, + { + "label": ".log()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/rotating-logger.ts", + "source_location": "L41", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_rotating_logger_rotatinglogger_log", + "community": 156, + "community_name": "LLM Critical Jobs Remote", + "norm_label": ".log()" + }, + { + "label": ".checkRotation()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/rotating-logger.ts", + "source_location": "L69", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_rotating_logger_rotatinglogger_checkrotation", + "community": 156, + "community_name": "LLM Critical Jobs Remote", + "norm_label": ".checkrotation()" + }, + { + "label": ".rotate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/rotating-logger.ts", + "source_location": "L84", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_rotating_logger_rotatinglogger_rotate", + "community": 156, + "community_name": "LLM Critical Jobs Remote", + "norm_label": ".rotate()" + }, + { + "label": ".getLogPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/rotating-logger.ts", + "source_location": "L126", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_rotating_logger_rotatinglogger_getlogpath", + "community": 156, + "community_name": "LLM Critical Jobs Remote", + "norm_label": ".getlogpath()" + }, + { + "label": ".close()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/rotating-logger.ts", + "source_location": "L133", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_rotating_logger_rotatinglogger_close", + "community": 156, + "community_name": "LLM Critical Jobs Remote", + "norm_label": ".close()" + }, + { + "label": "ollamaLogger", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/rotating-logger.ts", + "source_location": "L142", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_rotating_logger_ollamalogger", + "community": 156, + "community_name": "LLM Critical Jobs Remote", + "norm_label": "ollamalogger" + }, + { + "label": "startupWarmup.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/startupWarmup.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_startupwarmup", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "startupwarmup.ts" + }, + { + "label": "StartupWarmupContext", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/startupWarmup.ts", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_startupwarmup_startupwarmupcontext", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "startupwarmupcontext" + }, + { + "label": "scheduleStartupWarmup()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/startupWarmup.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_startupwarmup_schedulestartupwarmup", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "schedulestartupwarmup()" + }, + { + "label": "_resetStartupWarmupScheduleForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/startupWarmup.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_startupwarmup_resetstartupwarmupschedulefortests", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "_resetstartupwarmupschedulefortests()" + }, + { + "label": "runStartupWarmup()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/startupWarmup.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_startupwarmup_runstartupwarmup", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "runstartupwarmup()" + }, + { + "label": "runSandboxSealedStartupWarmupPlaceholder()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/startupWarmup.ts", + "source_location": "L49", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_startupwarmup_runsandboxsealedstartupwarmupplaceholder", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "runsandboxsealedstartupwarmupplaceholder()" + }, + { + "label": "runHostLocalDefaultModelWarmup()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/startupWarmup.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_startupwarmup_runhostlocaldefaultmodelwarmup", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "runhostlocaldefaultmodelwarmup()" + }, + { + "label": "llm/types.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/types.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_types", + "community": 170, + "community_name": "LLM #170", + "norm_label": "llm/types.ts" + }, + { + "label": "ModelTier", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/types.ts", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_types_modeltier", + "community": 170, + "community_name": "LLM #170", + "norm_label": "modeltier" + }, + { + "label": "PerformanceEstimate", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/types.ts", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_types_performanceestimate", + "community": 170, + "community_name": "LLM #170", + "norm_label": "performanceestimate" + }, + { + "label": "OsType", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/types.ts", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_types_ostype", + "community": 170, + "community_name": "LLM #170", + "norm_label": "ostype" + }, + { + "label": "HardwareInfo", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/types.ts", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_types_hardwareinfo", + "community": 170, + "community_name": "LLM #170", + "norm_label": "hardwareinfo" + }, + { + "label": "LlmModelConfig", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/types.ts", + "source_location": "L34", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_types_llmmodelconfig", + "community": 170, + "community_name": "LLM #170", + "norm_label": "llmmodelconfig" + }, + { + "label": "InstalledModel", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/types.ts", + "source_location": "L49", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_types_installedmodel", + "community": 88, + "community_name": "LLM", + "norm_label": "installedmodel" + }, + { + "label": "LocalLlmRuntimeClassification", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/types.ts", + "source_location": "L61", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_types_localllmruntimeclassification", + "community": 112, + "community_name": "LLM Email", + "norm_label": "localllmruntimeclassification" + }, + { + "label": "LocalLlmRuntimeInfo", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/types.ts", + "source_location": "L63", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_types_localllmruntimeinfo", + "community": 112, + "community_name": "LLM Email", + "norm_label": "localllmruntimeinfo" + }, + { + "label": "LocalLlmStatus", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/types.ts", + "source_location": "L73", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_types_localllmstatus", + "community": 112, + "community_name": "LLM Email", + "norm_label": "localllmstatus" + }, + { + "label": "LlmConfig", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/types.ts", + "source_location": "L94", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_types_llmconfig", + "community": 170, + "community_name": "LLM #170", + "norm_label": "llmconfig" + }, + { + "label": "ChatMessage", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/types.ts", + "source_location": "L104", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_types_chatmessage", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": "chatmessage" + }, + { + "label": "ChatRequest", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/types.ts", + "source_location": "L114", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_types_chatrequest", + "community": 170, + "community_name": "LLM #170", + "norm_label": "chatrequest" + }, + { + "label": "ChatResponse", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/types.ts", + "source_location": "L125", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_types_chatresponse", + "community": 170, + "community_name": "LLM #170", + "norm_label": "chatresponse" + }, + { + "label": "DownloadProgress", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/types.ts", + "source_location": "L138", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_types_downloadprogress", + "community": 88, + "community_name": "LLM", + "norm_label": "downloadprogress" + }, + { + "label": "ModelPerformanceEstimate", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/types.ts", + "source_location": "L151", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_types_modelperformanceestimate", + "community": 170, + "community_name": "LLM #170", + "norm_label": "modelperformanceestimate" + }, + { + "label": "warmModel.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/warmModel.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_warmmodel", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "warmmodel.ts" + }, + { + "label": "WarmModelResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/warmModel.ts", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_warmmodel_warmmodelresult", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "warmmodelresult" + }, + { + "label": "warmModel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/warmModel.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_warmmodel_warmmodel", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "warmmodel()" + }, + { + "label": "waitForLocalLlmRunning()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/warmModel.ts", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_warmmodel_waitforlocalllmrunning", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "waitforlocalllmrunning()" + }, + { + "label": "warmupOnServerHealthy.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/warmupOnServerHealthy.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_warmuponserverhealthy", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "warmuponserverhealthy.ts" + }, + { + "label": "_resetWarmupOnServerHealthyForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/warmupOnServerHealthy.ts", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_warmuponserverhealthy_resetwarmuponserverhealthyfortests", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "_resetwarmuponserverhealthyfortests()" + }, + { + "label": "initWarmupOnServerHealthy()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/warmupOnServerHealthy.ts", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_warmuponserverhealthy_initwarmuponserverhealthy", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "initwarmuponserverhealthy()" + }, + { + "label": "runWarmupForGeneration()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/llm/warmupOnServerHealthy.ts", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_llm_warmuponserverhealthy_runwarmupforgeneration", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "runwarmupforgeneration()" + }, + { + "label": "mainWindowAccessor.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/mainWindowAccessor.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_mainwindowaccessor", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "mainwindowaccessor.ts" + }, + { + "label": "registerMainWindowAccessor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/mainWindowAccessor.ts", + "source_location": "L6", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_mainwindowaccessor_registermainwindowaccessor", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "registermainwindowaccessor()" + }, + { + "label": "getMainBrowserWindow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/mainWindowAccessor.ts", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_mainwindowaccessor_getmainbrowserwindow", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "getmainbrowserwindow()" + }, + { + "label": "cloudConfigFromOptimandoKeys.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ocr/cloudConfigFromOptimandoKeys.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ocr_cloudconfigfromoptimandokeys", + "community": 249, + "community_name": "OCR #249", + "norm_label": "cloudconfigfromoptimandokeys.ts" + }, + { + "label": "VISION_KEY_ORDER", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ocr/cloudConfigFromOptimandoKeys.ts", + "source_location": "L9", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ocr_cloudconfigfromoptimandokeys_vision_key_order", + "community": 249, + "community_name": "OCR #249", + "norm_label": "vision_key_order" + }, + { + "label": "cloudConfigFromOptimandoApiKeysRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ocr/cloudConfigFromOptimandoKeys.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ocr_cloudconfigfromoptimandokeys_cloudconfigfromoptimandoapikeysrecord", + "community": 249, + "community_name": "OCR #249", + "norm_label": "cloudconfigfromoptimandoapikeysrecord()" + }, + { + "label": "bootstrapOcrRouterFromOrchestratorKeys()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ocr/cloudConfigFromOptimandoKeys.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ocr_cloudconfigfromoptimandokeys_bootstrapocrrouterfromorchestratorkeys", + "community": 249, + "community_name": "OCR #249", + "norm_label": "bootstrapocrrouterfromorchestratorkeys()" + }, + { + "label": "ocr/index.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ocr/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ocr_index", + "community": 184, + "community_name": "OCR", + "norm_label": "ocr/index.ts" + }, + { + "label": "ocr/ipc.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ocr/ipc.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ocr_ipc", + "community": 184, + "community_name": "OCR", + "norm_label": "ocr/ipc.ts" + }, + { + "label": "registerOCRHandlers()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ocr/ipc.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ocr_ipc_registerocrhandlers", + "community": 184, + "community_name": "OCR", + "norm_label": "registerocrhandlers()" + }, + { + "label": "unregisterOCRHandlers()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ocr/ipc.ts", + "source_location": "L187", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ocr_ipc_unregisterocrhandlers", + "community": 184, + "community_name": "OCR", + "norm_label": "unregisterocrhandlers()" + }, + { + "label": "ocr-service.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ocr/ocr-service.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ocr_ocr_service", + "community": 184, + "community_name": "OCR", + "norm_label": "ocr-service.ts" + }, + { + "label": "OCRService", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ocr/ocr-service.ts", + "source_location": "L41", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice", + "community": 184, + "community_name": "OCR", + "norm_label": "ocrservice" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ocr/ocr-service.ts", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice_constructor", + "community": 184, + "community_name": "OCR", + "norm_label": ".constructor()" + }, + { + "label": ".initialize()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ocr/ocr-service.ts", + "source_location": "L63", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice_initialize", + "community": 184, + "community_name": "OCR", + "norm_label": ".initialize()" + }, + { + "label": ".doInitialize()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ocr/ocr-service.ts", + "source_location": "L84", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice_doinitialize", + "community": 184, + "community_name": "OCR", + "norm_label": ".doinitialize()" + }, + { + "label": ".processImage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ocr/ocr-service.ts", + "source_location": "L170", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice_processimage", + "community": 184, + "community_name": "OCR", + "norm_label": ".processimage()" + }, + { + "label": ".processScreenshot()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ocr/ocr-service.ts", + "source_location": "L243", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice_processscreenshot", + "community": 184, + "community_name": "OCR", + "norm_label": ".processscreenshot()" + }, + { + "label": ".processBase64()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ocr/ocr-service.ts", + "source_location": "L258", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice_processbase64", + "community": 184, + "community_name": "OCR", + "norm_label": ".processbase64()" + }, + { + "label": ".getStatus()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ocr/ocr-service.ts", + "source_location": "L276", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice_getstatus", + "community": 184, + "community_name": "OCR", + "norm_label": ".getstatus()" + }, + { + "label": ".getSupportedLanguages()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ocr/ocr-service.ts", + "source_location": "L296", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice_getsupportedlanguages", + "community": 184, + "community_name": "OCR", + "norm_label": ".getsupportedlanguages()" + }, + { + "label": ".terminate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ocr/ocr-service.ts", + "source_location": "L318", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice_terminate", + "community": 184, + "community_name": "OCR", + "norm_label": ".terminate()" + }, + { + "label": ".prepareInput()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ocr/ocr-service.ts", + "source_location": "L331", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice_prepareinput", + "community": 184, + "community_name": "OCR", + "norm_label": ".prepareinput()" + }, + { + "label": ".generateWarnings()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ocr/ocr-service.ts", + "source_location": "L363", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice_generatewarnings", + "community": 184, + "community_name": "OCR", + "norm_label": ".generatewarnings()" + }, + { + "label": "router.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ocr_router", + "community": 184, + "community_name": "OCR", + "norm_label": "router.ts" + }, + { + "label": "VISION_PROVIDERS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L20", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ocr_router_vision_providers", + "community": 184, + "community_name": "OCR", + "norm_label": "vision_providers" + }, + { + "label": "OCRRouter", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L31", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter", + "community": 249, + "community_name": "OCR #249", + "norm_label": "ocrrouter" + }, + { + "label": ".getCloudConfig()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_getcloudconfig", + "community": 249, + "community_name": "OCR #249", + "norm_label": ".getcloudconfig()" + }, + { + "label": ".setCloudConfig()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L42", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_setcloudconfig", + "community": 249, + "community_name": "OCR #249", + "norm_label": ".setcloudconfig()" + }, + { + "label": ".shouldUseCloud()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_shouldusecloud", + "community": 249, + "community_name": "OCR #249", + "norm_label": ".shouldusecloud()" + }, + { + "label": ".getAvailableVisionProvider()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L118", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_getavailablevisionprovider", + "community": 249, + "community_name": "OCR #249", + "norm_label": ".getavailablevisionprovider()" + }, + { + "label": ".isProviderAvailable()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L140", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_isprovideravailable", + "community": 249, + "community_name": "OCR #249", + "norm_label": ".isprovideravailable()" + }, + { + "label": ".processImage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L152", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_processimage", + "community": 184, + "community_name": "OCR", + "norm_label": ".processimage()" + }, + { + "label": ".processWithCloud()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L174", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_processwithcloud", + "community": 249, + "community_name": "OCR #249", + "norm_label": ".processwithcloud()" + }, + { + "label": ".inputToBase64()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L238", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_inputtobase64", + "community": 249, + "community_name": "OCR #249", + "norm_label": ".inputtobase64()" + }, + { + "label": ".processWithOpenAI()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L265", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_processwithopenai", + "community": 249, + "community_name": "OCR #249", + "norm_label": ".processwithopenai()" + }, + { + "label": ".processWithClaude()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L310", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_processwithclaude", + "community": 249, + "community_name": "OCR #249", + "norm_label": ".processwithclaude()" + }, + { + "label": ".processWithGemini()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L358", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_processwithgemini", + "community": 249, + "community_name": "OCR #249", + "norm_label": ".processwithgemini()" + }, + { + "label": ".processWithGrok()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L398", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_processwithgrok", + "community": 249, + "community_name": "OCR #249", + "norm_label": ".processwithgrok()" + }, + { + "label": ".getAvailableProviders()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L444", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_getavailableproviders", + "community": 249, + "community_name": "OCR #249", + "norm_label": ".getavailableproviders()" + }, + { + "label": ".getApiKey()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L454", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_getapikey", + "community": 249, + "community_name": "OCR #249", + "norm_label": ".getapikey()" + }, + { + "label": "ocr/types.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ocr/types.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ocr_types", + "community": 184, + "community_name": "OCR", + "norm_label": "ocr/types.ts" + }, + { + "label": "OCRLanguage", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ocr/types.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ocr_types_ocrlanguage", + "community": 184, + "community_name": "OCR", + "norm_label": "ocrlanguage" + }, + { + "label": "OCRMethod", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ocr/types.ts", + "source_location": "L32", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ocr_types_ocrmethod", + "community": 184, + "community_name": "OCR", + "norm_label": "ocrmethod" + }, + { + "label": "VisionProvider", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ocr/types.ts", + "source_location": "L37", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ocr_types_visionprovider", + "community": 249, + "community_name": "OCR #249", + "norm_label": "visionprovider" + }, + { + "label": "OCROptions", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ocr/types.ts", + "source_location": "L42", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ocr_types_ocroptions", + "community": 184, + "community_name": "OCR", + "norm_label": "ocroptions" + }, + { + "label": "OCRResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ocr/types.ts", + "source_location": "L72", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ocr_types_ocrresult", + "community": 184, + "community_name": "OCR", + "norm_label": "ocrresult" + }, + { + "label": "OCRStatus", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ocr/types.ts", + "source_location": "L108", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ocr_types_ocrstatus", + "community": 184, + "community_name": "OCR", + "norm_label": "ocrstatus" + }, + { + "label": "CloudAIConfig", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ocr/types.ts", + "source_location": "L131", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ocr_types_cloudaiconfig", + "community": 249, + "community_name": "OCR #249", + "norm_label": "cloudaiconfig" + }, + { + "label": "OCRInput", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ocr/types.ts", + "source_location": "L145", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ocr_types_ocrinput", + "community": 184, + "community_name": "OCR", + "norm_label": "ocrinput" + }, + { + "label": "OCRProgress", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ocr/types.ts", + "source_location": "L154", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ocr_types_ocrprogress", + "community": 184, + "community_name": "OCR", + "norm_label": "ocrprogress" + }, + { + "label": "OCRProgressCallback", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/ocr/types.ts", + "source_location": "L160", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_ocr_types_ocrprogresscallback", + "community": 184, + "community_name": "OCR", + "norm_label": "ocrprogresscallback" + }, + { + "label": "beapSessionImportRun.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/__tests__/beapSessionImportRun.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_tests_beapsessionimportrun_test", + "community": 264, + "community_name": "Orchestratordb #264", + "norm_label": "beapsessionimportrun.test.ts" + }, + { + "label": "validRunArtefact()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/__tests__/beapSessionImportRun.test.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_tests_beapsessionimportrun_test_validrunartefact", + "community": 264, + "community_name": "Orchestratordb #264", + "norm_label": "validrunartefact()" + }, + { + "label": "sessionKeyUtils.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/__tests__/sessionKeyUtils.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_tests_sessionkeyutils_test", + "community": 250, + "community_name": "Orchestratordb #250", + "norm_label": "sessionkeyutils.test.ts" + }, + { + "label": "beapRunAutomationWaiter.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/beapRunAutomationWaiter.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_beaprunautomationwaiter", + "community": 435, + "community_name": "Orchestratordb #435", + "norm_label": "beaprunautomationwaiter.ts" + }, + { + "label": "BeapRunAutomationWaitResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/beapRunAutomationWaiter.ts", + "source_location": "L1", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_beaprunautomationwaiter_beaprunautomationwaitresult", + "community": 435, + "community_name": "Orchestratordb #435", + "norm_label": "beaprunautomationwaitresult" + }, + { + "label": "Pending", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/beapRunAutomationWaiter.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_beaprunautomationwaiter_pending", + "community": 435, + "community_name": "Orchestratordb #435", + "norm_label": "pending" + }, + { + "label": "registerBeapRunAutomationWaiter()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/beapRunAutomationWaiter.ts", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_beaprunautomationwaiter_registerbeaprunautomationwaiter", + "community": 435, + "community_name": "Orchestratordb #435", + "norm_label": "registerbeaprunautomationwaiter()" + }, + { + "label": "completeBeapRunAutomationWaiter()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/beapRunAutomationWaiter.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_beaprunautomationwaiter_completebeaprunautomationwaiter", + "community": 435, + "community_name": "Orchestratordb #435", + "norm_label": "completebeaprunautomationwaiter()" + }, + { + "label": "beapSessionImportRun.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/beapSessionImportRun.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_beapsessionimportrun", + "community": 264, + "community_name": "Orchestratordb #264", + "norm_label": "beapsessionimportrun.ts" + }, + { + "label": "BEAP_DESKTOP_RUN_AUTOMATION_WS_TYPE", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/beapSessionImportRun.ts", + "source_location": "L20", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_beapsessionimportrun_beap_desktop_run_automation_ws_type", + "community": 264, + "community_name": "Orchestratordb #264", + "norm_label": "beap_desktop_run_automation_ws_type" + }, + { + "label": "BEAP_DESKTOP_RUN_AUTOMATION_RESULT_WS_TYPE", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/beapSessionImportRun.ts", + "source_location": "L21", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_beapsessionimportrun_beap_desktop_run_automation_result_ws_type", + "community": 264, + "community_name": "Orchestratordb #264", + "norm_label": "beap_desktop_run_automation_result_ws_type" + }, + { + "label": "BeapSessionImportRunRequest", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/beapSessionImportRun.ts", + "source_location": "L24", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_beapsessionimportrun_beapsessionimportrunrequest", + "community": 264, + "community_name": "Orchestratordb #264", + "norm_label": "beapsessionimportrunrequest" + }, + { + "label": "BeapSessionImportRunResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/beapSessionImportRun.ts", + "source_location": "L32", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_beapsessionimportrun_beapsessionimportrunresult", + "community": 264, + "community_name": "Orchestratordb #264", + "norm_label": "beapsessionimportrunresult" + }, + { + "label": "BeapSessionImportRunDeps", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/beapSessionImportRun.ts", + "source_location": "L36", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_beapsessionimportrun_beapsessionimportrundeps", + "community": 264, + "community_name": "Orchestratordb #264", + "norm_label": "beapsessionimportrundeps" + }, + { + "label": "readHandshakeIdFromBinding()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/beapSessionImportRun.ts", + "source_location": "L42", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_beapsessionimportrun_readhandshakeidfrombinding", + "community": 264, + "community_name": "Orchestratordb #264", + "norm_label": "readhandshakeidfrombinding()" + }, + { + "label": "importAndRunBeapSessionFromArtefact()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/beapSessionImportRun.ts", + "source_location": "L51", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_beapsessionimportrun_importandrunbeapsessionfromartefact", + "community": 264, + "community_name": "Orchestratordb #264", + "norm_label": "importandrunbeapsessionfromartefact()" + }, + { + "label": "orchestrator-db/db.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_db", + "community": 209, + "community_name": "Orchestratordb", + "norm_label": "orchestrator-db/db.ts" + }, + { + "label": "require", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L21", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_db_require", + "community": 209, + "community_name": "Orchestratordb", + "norm_label": "require" + }, + { + "label": "loadSQLCipher()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_db_loadsqlcipher", + "community": 209, + "community_name": "Orchestratordb", + "norm_label": "loadsqlcipher()" + }, + { + "label": "getElectronDataDir()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L81", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_db_getelectrondatadir", + "community": 209, + "community_name": "Orchestratordb", + "norm_label": "getelectrondatadir()" + }, + { + "label": "getOrchestratorDBPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L87", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_db_getorchestratordbpath", + "community": 209, + "community_name": "Orchestratordb", + "norm_label": "getorchestratordbpath()" + }, + { + "label": "getOrchestratorKeyPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L91", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_db_getorchestratorkeypath", + "community": 209, + "community_name": "Orchestratordb", + "norm_label": "getorchestratorkeypath()" + }, + { + "label": "orchestratorDBExists()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L95", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_db_orchestratordbexists", + "community": 209, + "community_name": "Orchestratordb", + "norm_label": "orchestratordbexists()" + }, + { + "label": "OrchestratorSecureStorageUnavailableError", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L105", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_db_orchestratorsecurestorageunavailableerror", + "community": 209, + "community_name": "Orchestratordb", + "norm_label": "orchestratorsecurestorageunavailableerror" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L107", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_db_orchestratorsecurestorageunavailableerror_constructor", + "community": 209, + "community_name": "Orchestratordb", + "norm_label": ".constructor()" + }, + { + "label": "assertSafeStorageAvailable()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L116", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_db_assertsafestorageavailable", + "community": 209, + "community_name": "Orchestratordb", + "norm_label": "assertsafestorageavailable()" + }, + { + "label": "deriveLegacyDEK()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L126", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_db_derivelegacydek", + "community": 209, + "community_name": "Orchestratordb", + "norm_label": "derivelegacydek()" + }, + { + "label": "loadDEKFromKeyFile()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L143", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_db_loaddekfromkeyfile", + "community": 209, + "community_name": "Orchestratordb", + "norm_label": "loaddekfromkeyfile()" + }, + { + "label": "generateAndPersistDEK()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L161", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_db_generateandpersistdek", + "community": 209, + "community_name": "Orchestratordb", + "norm_label": "generateandpersistdek()" + }, + { + "label": "applySQLCipherKey()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L173", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_db_applysqlcipherkey", + "community": 209, + "community_name": "Orchestratordb", + "norm_label": "applysqlcipherkey()" + }, + { + "label": "applySQLCipherConfig()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L180", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_db_applysqlcipherconfig", + "community": 209, + "community_name": "Orchestratordb", + "norm_label": "applysqlcipherconfig()" + }, + { + "label": "verifyDBReadable()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L193", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_db_verifydbreadable", + "community": 209, + "community_name": "Orchestratordb", + "norm_label": "verifydbreadable()" + }, + { + "label": "migrateToSafeStorageDEK()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L220", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_db_migratetosafestoragedek", + "community": 209, + "community_name": "Orchestratordb", + "norm_label": "migratetosafestoragedek()" + }, + { + "label": "createOrchestratorDB()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L269", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_db_createorchestratordb", + "community": 209, + "community_name": "Orchestratordb", + "norm_label": "createorchestratordb()" + }, + { + "label": "openOrchestratorDB()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L297", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_db_openorchestratordb", + "community": 209, + "community_name": "Orchestratordb", + "norm_label": "openorchestratordb()" + }, + { + "label": "closeOrchestratorDB()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L347", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_db_closeorchestratordb", + "community": 250, + "community_name": "Orchestratordb #250", + "norm_label": "closeorchestratordb()" + }, + { + "label": "createSchema()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L359", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_db_createschema", + "community": 209, + "community_name": "Orchestratordb", + "norm_label": "createschema()" + }, + { + "label": "migrateSchema()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L447", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_db_migrateschema", + "community": 209, + "community_name": "Orchestratordb", + "norm_label": "migrateschema()" + }, + { + "label": "orchestrator-db/service.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_service", + "community": 250, + "community_name": "Orchestratordb #250", + "norm_label": "orchestrator-db/service.ts" + }, + { + "label": "OrchestratorService", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice", + "community": 259, + "community_name": "Orchestratordb #259", + "norm_label": "orchestratorservice" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_constructor", + "community": 209, + "community_name": "Orchestratordb", + "norm_label": ".constructor()" + }, + { + "label": ".connect()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L37", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_connect", + "community": 209, + "community_name": "Orchestratordb", + "norm_label": ".connect()" + }, + { + "label": ".disconnect()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L71", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_disconnect", + "community": 250, + "community_name": "Orchestratordb #250", + "norm_label": ".disconnect()" + }, + { + "label": ".getStatus()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L83", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_getstatus", + "community": 209, + "community_name": "Orchestratordb", + "norm_label": ".getstatus()" + }, + { + "label": ".ensureConnected()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L94", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_ensureconnected", + "community": 259, + "community_name": "Orchestratordb #259", + "norm_label": ".ensureconnected()" + }, + { + "label": ".getRawDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L105", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_getrawdb", + "community": 259, + "community_name": "Orchestratordb #259", + "norm_label": ".getrawdb()" + }, + { + "label": ".get()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L117", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_get", + "community": 259, + "community_name": "Orchestratordb #259", + "norm_label": ".get()" + }, + { + "label": ".set()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L144", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_set", + "community": 259, + "community_name": "Orchestratordb #259", + "norm_label": ".set()" + }, + { + "label": ".getAll()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L171", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_getall", + "community": 259, + "community_name": "Orchestratordb #259", + "norm_label": ".getall()" + }, + { + "label": ".setAll()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L190", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_setall", + "community": 259, + "community_name": "Orchestratordb #259", + "norm_label": ".setall()" + }, + { + "label": ".remove()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L216", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_remove", + "community": 259, + "community_name": "Orchestratordb #259", + "norm_label": ".remove()" + }, + { + "label": ".clear()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L237", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_clear", + "community": 259, + "community_name": "Orchestratordb #259", + "norm_label": ".clear()" + }, + { + "label": ".listSessions()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L256", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_listsessions", + "community": 259, + "community_name": "Orchestratordb #259", + "norm_label": ".listsessions()" + }, + { + "label": ".getSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L280", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_getsession", + "community": 259, + "community_name": "Orchestratordb #259", + "norm_label": ".getsession()" + }, + { + "label": ".saveSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L315", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_savesession", + "community": 259, + "community_name": "Orchestratordb #259", + "norm_label": ".savesession()" + }, + { + "label": ".deleteSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L345", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_deletesession", + "community": 259, + "community_name": "Orchestratordb #259", + "norm_label": ".deletesession()" + }, + { + "label": ".listAllSessionsForUi()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L363", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_listallsessionsforui", + "community": 259, + "community_name": "Orchestratordb #259", + "norm_label": ".listallsessionsforui()" + }, + { + "label": ".migrateFromChromeStorage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L425", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_migratefromchromestorage", + "community": 259, + "community_name": "Orchestratordb #259", + "norm_label": ".migratefromchromestorage()" + }, + { + "label": ".exportData()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L448", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_exportdata", + "community": 259, + "community_name": "Orchestratordb #259", + "norm_label": ".exportdata()" + }, + { + "label": ".importData()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L495", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_importdata", + "community": 259, + "community_name": "Orchestratordb #259", + "norm_label": ".importdata()" + }, + { + "label": "getOrchestratorService()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L533", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_service_getorchestratorservice", + "community": 238, + "community_name": "Devicekeys Orchestratordb", + "norm_label": "getorchestratorservice()" + }, + { + "label": "TODO: Implement UI state export if needed", + "file_type": "rationale", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L477", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_service_rationale_477", + "community": 250, + "community_name": "Orchestratordb #250", + "norm_label": "todo: implement ui state export if needed" + }, + { + "label": "TODO: Implement templates export when template feature is added", + "file_type": "rationale", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L481", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_service_rationale_481", + "community": 250, + "community_name": "Orchestratordb #250", + "norm_label": "todo: implement templates export when template feature is added" + }, + { + "label": "orchestrator-db/sessionImportArtefactUnwrap.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/sessionImportArtefactUnwrap.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_sessionimportartefactunwrap", + "community": 264, + "community_name": "Orchestratordb #264", + "norm_label": "orchestrator-db/sessionimportartefactunwrap.ts" + }, + { + "label": "SessionImportUnwrapResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/sessionImportArtefactUnwrap.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_sessionimportartefactunwrap_sessionimportunwrapresult", + "community": 264, + "community_name": "Orchestratordb #264", + "norm_label": "sessionimportunwrapresult" + }, + { + "label": "isSessionImportArtefactWrapper()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/sessionImportArtefactUnwrap.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_sessionimportartefactunwrap_issessionimportartefactwrapper", + "community": 264, + "community_name": "Orchestratordb #264", + "norm_label": "issessionimportartefactwrapper()" + }, + { + "label": "isOrchestratorSessionContent()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/sessionImportArtefactUnwrap.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_sessionimportartefactunwrap_isorchestratorsessioncontent", + "community": 264, + "community_name": "Orchestratordb #264", + "norm_label": "isorchestratorsessioncontent()" + }, + { + "label": "isFullSessionExportContent()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/sessionImportArtefactUnwrap.ts", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_sessionimportartefactunwrap_isfullsessionexportcontent", + "community": 264, + "community_name": "Orchestratordb #264", + "norm_label": "isfullsessionexportcontent()" + }, + { + "label": "orchestratorSessionContentToTabImport()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/sessionImportArtefactUnwrap.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_sessionimportartefactunwrap_orchestratorsessioncontenttotabimport", + "community": 264, + "community_name": "Orchestratordb #264", + "norm_label": "orchestratorsessioncontenttotabimport()" + }, + { + "label": "unwrapSessionImportPayloadForTab()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/sessionImportArtefactUnwrap.ts", + "source_location": "L79", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_sessionimportartefactunwrap_unwrapsessionimportpayloadfortab", + "community": 264, + "community_name": "Orchestratordb #264", + "norm_label": "unwrapsessionimportpayloadfortab()" + }, + { + "label": "newBeapImportSessionKey()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/sessionImportArtefactUnwrap.ts", + "source_location": "L119", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_sessionimportartefactunwrap_newbeapimportsessionkey", + "community": 264, + "community_name": "Orchestratordb #264", + "norm_label": "newbeapimportsessionkey()" + }, + { + "label": "sessionKeyUtils.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/sessionKeyUtils.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_sessionkeyutils", + "community": 250, + "community_name": "Orchestratordb #250", + "norm_label": "sessionkeyutils.ts" + }, + { + "label": "isOrchestratorKvSessionKey()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/sessionKeyUtils.ts", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_sessionkeyutils_isorchestratorkvsessionkey", + "community": 250, + "community_name": "Orchestratordb #250", + "norm_label": "isorchestratorkvsessionkey()" + }, + { + "label": "nonEmptyString()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/sessionKeyUtils.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_sessionkeyutils_nonemptystring", + "community": 250, + "community_name": "Orchestratordb #250", + "norm_label": "nonemptystring()" + }, + { + "label": "resolveOrchestratorSessionDisplayName()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/sessionKeyUtils.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_sessionkeyutils_resolveorchestratorsessiondisplayname", + "community": 250, + "community_name": "Orchestratordb #250", + "norm_label": "resolveorchestratorsessiondisplayname()" + }, + { + "label": "parseKvSessionTimestamp()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/sessionKeyUtils.ts", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_sessionkeyutils_parsekvsessiontimestamp", + "community": 250, + "community_name": "Orchestratordb #250", + "norm_label": "parsekvsessiontimestamp()" + }, + { + "label": "kvBlobToOrchestratorSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/sessionKeyUtils.ts", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_sessionkeyutils_kvblobtoorchestratorsession", + "community": 250, + "community_name": "Orchestratordb #250", + "norm_label": "kvblobtoorchestratorsession()" + }, + { + "label": "orchestrator-db/types.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/types.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_types", + "community": 250, + "community_name": "Orchestratordb #250", + "norm_label": "orchestrator-db/types.ts" + }, + { + "label": "OrchestratorSession", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/types.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_types_orchestratorsession", + "community": 250, + "community_name": "Orchestratordb #250", + "norm_label": "orchestratorsession" + }, + { + "label": "OrchestratorStatus", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/types.ts", + "source_location": "L19", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_types_orchestratorstatus", + "community": 209, + "community_name": "Orchestratordb", + "norm_label": "orchestratorstatus" + }, + { + "label": "Session", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/types.ts", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_types_session", + "community": 259, + "community_name": "Orchestratordb #259", + "norm_label": "session" + }, + { + "label": "Setting", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/types.ts", + "source_location": "L40", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_types_setting", + "community": 250, + "community_name": "Orchestratordb #250", + "norm_label": "setting" + }, + { + "label": "UIState", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/types.ts", + "source_location": "L49", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_types_uistate", + "community": 250, + "community_name": "Orchestratordb #250", + "norm_label": "uistate" + }, + { + "label": "SessionTemplate", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/types.ts", + "source_location": "L58", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_types_sessiontemplate", + "community": 250, + "community_name": "Orchestratordb #250", + "norm_label": "sessiontemplate" + }, + { + "label": "ExportFormat", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/types.ts", + "source_location": "L69", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_types_exportformat", + "community": 250, + "community_name": "Orchestratordb #250", + "norm_label": "exportformat" + }, + { + "label": "ExportOptions", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/types.ts", + "source_location": "L74", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_types_exportoptions", + "community": 250, + "community_name": "Orchestratordb #250", + "norm_label": "exportoptions" + }, + { + "label": "ExportData", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/types.ts", + "source_location": "L86", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_types_exportdata", + "community": 259, + "community_name": "Orchestratordb #259", + "norm_label": "exportdata" + }, + { + "label": "KDFParams", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/types.ts", + "source_location": "L98", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_db_types_kdfparams", + "community": 250, + "community_name": "Orchestratordb #250", + "norm_label": "kdfparams" + }, + { + "label": "broadcastModeChange.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/broadcastModeChange.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_broadcastmodechange", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "broadcastmodechange.ts" + }, + { + "label": "broadcastOrchestratorModeChanged()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/broadcastModeChange.ts", + "source_location": "L4", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_broadcastmodechange_broadcastorchestratormodechanged", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "broadcastorchestratormodechanged()" + }, + { + "label": "orchestrator/ipc.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/ipc.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_ipc", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "orchestrator/ipc.ts" + }, + { + "label": "registerOrchestratorIPC()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/ipc.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_ipc_registerorchestratoripc", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "registerorchestratoripc()" + }, + { + "label": "orchestratorModeStore.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "orchestratormodestore.ts" + }, + { + "label": "ConnectedPeer", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L19", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_connectedpeer", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "connectedpeer" + }, + { + "label": "SandboxPairingKind", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L33", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_sandboxpairingkind", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "sandboxpairingkind" + }, + { + "label": "LinkedTopologyConfigEntry", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L35", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_linkedtopologyconfigentry", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "linkedtopologyconfigentry" + }, + { + "label": "OrchestratorModeConfig", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L43", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_orchestratormodeconfig", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "orchestratormodeconfig" + }, + { + "label": "PairingCodeRegistrar", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L73", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_pairingcoderegistrar", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "pairingcoderegistrar" + }, + { + "label": "setPairingCodeRegistrar()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L79", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_setpairingcoderegistrar", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "setpairingcoderegistrar()" + }, + { + "label": "generatePairingCode()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L84", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_generatepairingcode", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "generatepairingcode()" + }, + { + "label": "storePath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L93", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_storepath", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "storepath()" + }, + { + "label": "isConnectedPeer()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L97", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_isconnectedpeer", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "isconnectedpeer()" + }, + { + "label": "readRawJson()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L111", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_readrawjson", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "readrawjson()" + }, + { + "label": "buildConfigFromRaw()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L122", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_buildconfigfromraw", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "buildconfigfromraw()" + }, + { + "label": "isLinkedConfigEntry()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L165", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_islinkedconfigentry", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "islinkedconfigentry()" + }, + { + "label": "persistConfig()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L179", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_persistconfig", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "persistconfig()" + }, + { + "label": "getOrchestratorMode()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L206", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "getorchestratormode()" + }, + { + "label": "validatePeer()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L213", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_validatepeer", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "validatepeer()" + }, + { + "label": "validateForWrite()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L234", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_validateforwrite", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "validateforwrite()" + }, + { + "label": "setOrchestratorMode()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L273", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_setorchestratormode", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "setorchestratormode()" + }, + { + "label": "isHostMode()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L285", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_ishostmode", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "ishostmode()" + }, + { + "label": "isSandboxMode()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L290", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_issandboxmode", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "issandboxmode()" + }, + { + "label": "getInstanceId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L294", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "getinstanceid()" + }, + { + "label": "getDeviceName()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L298", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getdevicename", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "getdevicename()" + }, + { + "label": "setDeviceName()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L302", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_setdevicename", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "setdevicename()" + }, + { + "label": "getPairingCode()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L313", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getpairingcode", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "getpairingcode()" + }, + { + "label": "setPairingCodeLocal()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L318", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_setpairingcodelocal", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "setpairingcodelocal()" + }, + { + "label": "ensurePairingCodeRegistered()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L345", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_ensurepairingcoderegistered", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "ensurepairingcoderegistered()" + }, + { + "label": "regeneratePairingCode()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L390", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_regeneratepairingcode", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "regeneratepairingcode()" + }, + { + "label": "addConnectedPeer()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L396", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_addconnectedpeer", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "addconnectedpeer()" + }, + { + "label": "removeConnectedPeer()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L403", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_removeconnectedpeer", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "removeconnectedpeer()" + }, + { + "label": "addLinkedTopologyEntry()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L417", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_addlinkedtopologyentry", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "addlinkedtopologyentry()" + }, + { + "label": "removeLinkedTopologyEntry()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L436", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_removelinkedtopologyentry", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "removelinkedtopologyentry()" + }, + { + "label": "updatePeerStatus()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L453", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_updatepeerstatus", + "community": 75, + "community_name": "Orchestrator Handshake Internal Inference", + "norm_label": "updatepeerstatus()" + }, + { + "label": "beapDeliveryAck.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/beapDeliveryAck.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_tests_beapdeliveryack_test", + "community": 345, + "community_name": "Beapdeliveryack", + "norm_label": "beapdeliveryack.test.ts" + }, + { + "label": "coordination-client.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/coordination-client.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_tests_coordination_client_test", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "coordination-client.test.ts" + }, + { + "label": "_require", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/coordination-client.test.ts", + "source_location": "L26", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_tests_coordination_client_test_require", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "_require" + }, + { + "label": "createTestDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/coordination-client.test.ts", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_tests_coordination_client_test_createtestdb", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "createtestdb()" + }, + { + "label": "skipIfNoSqlite()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/coordination-client.test.ts", + "source_location": "L48", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_tests_coordination_client_test_skipifnosqlite", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "skipifnosqlite()" + }, + { + "label": "coordinationSamePrincipalInbound.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/coordinationSamePrincipalInbound.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_tests_coordinationsameprincipalinbound_test", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "coordinationsameprincipalinbound.test.ts" + }, + { + "label": "coordinationUrlLocalDial.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/coordinationUrlLocalDial.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_tests_coordinationurllocaldial_test", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "coordinationurllocaldial.test.ts" + }, + { + "label": "relay-integration.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relay-integration.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_tests_relay_integration_test", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "relay-integration.test.ts" + }, + { + "label": "_require", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relay-integration.test.ts", + "source_location": "L16", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_tests_relay_integration_test_require", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "_require" + }, + { + "label": "createTestDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relay-integration.test.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_tests_relay_integration_test_createtestdb", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "createtestdb()" + }, + { + "label": "validBeapCapsule()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relay-integration.test.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_tests_relay_integration_test_validbeapcapsule", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "validbeapcapsule()" + }, + { + "label": "relayPull.deviceRegister.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relayPull.deviceRegister.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_tests_relaypull_deviceregister_test", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "relaypull.deviceregister.test.ts" + }, + { + "label": "getInstanceIdMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relayPull.deviceRegister.test.ts", + "source_location": "L12", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_tests_relaypull_deviceregister_test_getinstanceidmock", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "getinstanceidmock" + }, + { + "label": "getOrchestratorModeMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relayPull.deviceRegister.test.ts", + "source_location": "L13", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_tests_relaypull_deviceregister_test_getorchestratormodemock", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "getorchestratormodemock" + }, + { + "label": "isEffectiveSandboxNodeMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relayPull.deviceRegister.test.ts", + "source_location": "L14", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_tests_relaypull_deviceregister_test_iseffectivesandboxnodemock", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "iseffectivesandboxnodemock" + }, + { + "label": "getP2PConfigMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relayPull.deviceRegister.test.ts", + "source_location": "L15", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_tests_relaypull_deviceregister_test_getp2pconfigmock", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "getp2pconfigmock" + }, + { + "label": "registeredRole()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relayPull.deviceRegister.test.ts", + "source_location": "L52", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_tests_relaypull_deviceregister_test_registeredrole", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "registeredrole()" + }, + { + "label": "relayPull.messageRelay.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relayPull.messageRelay.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_tests_relaypull_messagerelay_test", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "relaypull.messagerelay.test.ts" + }, + { + "label": "_require", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relayPull.messageRelay.test.ts", + "source_location": "L19", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_tests_relaypull_messagerelay_test_require", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "_require" + }, + { + "label": "createTestDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relayPull.messageRelay.test.ts", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_tests_relaypull_messagerelay_test_createtestdb", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "createtestdb()" + }, + { + "label": "skipIfNoSqlite()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relayPull.messageRelay.test.ts", + "source_location": "L41", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_tests_relaypull_messagerelay_test_skipifnosqlite", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "skipifnosqlite()" + }, + { + "label": "auditBase()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relayPull.messageRelay.test.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_tests_relaypull_messagerelay_test_auditbase", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "auditbase()" + }, + { + "label": "relaySync.coordination403.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relaySync.coordination403.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_tests_relaysync_coordination403_test", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "relaysync.coordination403.test.ts" + }, + { + "label": "beapDeliveryAck.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/beapDeliveryAck.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_beapdeliveryack", + "community": 345, + "community_name": "Beapdeliveryack", + "norm_label": "beapdeliveryack.ts" + }, + { + "label": "BeapDeliveryAckPayload", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/beapDeliveryAck.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_beapdeliveryack_beapdeliveryackpayload", + "community": 345, + "community_name": "Beapdeliveryack", + "norm_label": "beapdeliveryackpayload" + }, + { + "label": "DeliveryAckWaiter", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/beapDeliveryAck.ts", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_beapdeliveryack_deliveryackwaiter", + "community": 345, + "community_name": "Beapdeliveryack", + "norm_label": "deliveryackwaiter" + }, + { + "label": "deliveryAckWaiters", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/beapDeliveryAck.ts", + "source_location": "L23", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_beapdeliveryack_deliveryackwaiters", + "community": 345, + "community_name": "Beapdeliveryack", + "norm_label": "deliveryackwaiters" + }, + { + "label": "recentAckByHandshake", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/beapDeliveryAck.ts", + "source_location": "L25", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_beapdeliveryack_recentackbyhandshake", + "community": 345, + "community_name": "Beapdeliveryack", + "norm_label": "recentackbyhandshake" + }, + { + "label": "setBeapDeliveryAckNotifier()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/beapDeliveryAck.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_beapdeliveryack_setbeapdeliveryacknotifier", + "community": 345, + "community_name": "Beapdeliveryack", + "norm_label": "setbeapdeliveryacknotifier()" + }, + { + "label": "removeDeliveryAckWaiter()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/beapDeliveryAck.ts", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_beapdeliveryack_removedeliveryackwaiter", + "community": 345, + "community_name": "Beapdeliveryack", + "norm_label": "removedeliveryackwaiter()" + }, + { + "label": "takeRecentAck()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/beapDeliveryAck.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_beapdeliveryack_takerecentack", + "community": 345, + "community_name": "Beapdeliveryack", + "norm_label": "takerecentack()" + }, + { + "label": "waitForBeapDeliveryAck()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/beapDeliveryAck.ts", + "source_location": "L50", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_beapdeliveryack_waitforbeapdeliveryack", + "community": 345, + "community_name": "Beapdeliveryack", + "norm_label": "waitforbeapdeliveryack()" + }, + { + "label": "notifyBeapDeliveryAck()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/beapDeliveryAck.ts", + "source_location": "L74", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_beapdeliveryack_notifybeapdeliveryack", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "notifybeapdeliveryack()" + }, + { + "label": "resetBeapDeliveryAckWaitersForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/beapDeliveryAck.ts", + "source_location": "L102", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_beapdeliveryack_resetbeapdeliveryackwaitersfortests", + "community": 345, + "community_name": "Beapdeliveryack", + "norm_label": "resetbeapdeliveryackwaitersfortests()" + }, + { + "label": "beapIngressLog.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/beapIngressLog.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_beapingresslog", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "beapingresslog.ts" + }, + { + "label": "BEAP_CORRELATION_HEADER", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/beapIngressLog.ts", + "source_location": "L9", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_beapingresslog_beap_correlation_header", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "beap_correlation_header" + }, + { + "label": "BEAP_CORRELATION_HEADER_OUT", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/beapIngressLog.ts", + "source_location": "L12", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_beapingresslog_beap_correlation_header_out", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "beap_correlation_header_out" + }, + { + "label": "newOutboundBeapCorrelationId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/beapIngressLog.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_beapingresslog_newoutboundbeapcorrelationid", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "newoutboundbeapcorrelationid()" + }, + { + "label": "readBeapCorrelationIdFromIncoming()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/beapIngressLog.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_beapingresslog_readbeapcorrelationidfromincoming", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "readbeapcorrelationidfromincoming()" + }, + { + "label": "readBeapHandshakeHintFromIncoming()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/beapIngressLog.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_beapingresslog_readbeaphandshakehintfromincoming", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "readbeaphandshakehintfromincoming()" + }, + { + "label": "logBeapIngressReceived()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/beapIngressLog.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_beapingresslog_logbeapingressreceived", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "logbeapingressreceived()" + }, + { + "label": "logP2pBeapRejection()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/beapIngressLog.ts", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_beapingresslog_logp2pbeaprejection", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "logp2pbeaprejection()" + }, + { + "label": "beapRecipientNotify.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/beapRecipientNotify.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_beaprecipientnotify", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "beaprecipientnotify.ts" + }, + { + "label": "setBeapRecipientPendingNotifier()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/beapRecipientNotify.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_beaprecipientnotify_setbeaprecipientpendingnotifier", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "setbeaprecipientpendingnotifier()" + }, + { + "label": "notifyBeapRecipientPending()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/beapRecipientNotify.ts", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_beaprecipientnotify_notifybeaprecipientpending", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "notifybeaprecipientpending()" + }, + { + "label": "coordinationFlushQueued.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationFlushQueued.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_coordinationflushqueued", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "coordinationflushqueued.ts" + }, + { + "label": "requestCoordinationFlushQueued()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationFlushQueued.ts", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_coordinationflushqueued_requestcoordinationflushqueued", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "requestcoordinationflushqueued()" + }, + { + "label": "coordinationHandshakePostIngest.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationHandshakePostIngest.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_coordinationhandshakepostingest", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "coordinationhandshakepostingest.ts" + }, + { + "label": "coordinationSamePrincipalInbound.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationSamePrincipalInbound.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_coordinationsameprincipalinbound", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "coordinationsameprincipalinbound.ts" + }, + { + "label": "SamePrincipalSkipRecord", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationSamePrincipalInbound.ts", + "source_location": "L16", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_coordinationsameprincipalinbound_sameprincipalskiprecord", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "sameprincipalskiprecord" + }, + { + "label": "computeSamePrincipalCoordinationSkipOwn()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationSamePrincipalInbound.ts", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_coordinationsameprincipalinbound_computesameprincipalcoordinationskipown", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "computesameprincipalcoordinationskipown()" + }, + { + "label": "coordinationUrlLocalDial.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationUrlLocalDial.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "coordinationurllocaldial.ts" + }, + { + "label": "KNOWN_PUBLIC_COORDINATION_HOSTS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationUrlLocalDial.ts", + "source_location": "L12", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_known_public_coordination_hosts", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "known_public_coordination_hosts" + }, + { + "label": "normalizeHostname()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationUrlLocalDial.ts", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_normalizehostname", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "normalizehostname()" + }, + { + "label": "parseUrlHostname()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationUrlLocalDial.ts", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_parseurlhostname", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "parseurlhostname()" + }, + { + "label": "collectThisMachineHostnames()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationUrlLocalDial.ts", + "source_location": "L41", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_collectthismachinehostnames", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "collectthismachinehostnames()" + }, + { + "label": "resetCoordinationLocalHostnameCacheForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationUrlLocalDial.ts", + "source_location": "L64", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_resetcoordinationlocalhostnamecachefortests", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "resetcoordinationlocalhostnamecachefortests()" + }, + { + "label": "setCoordinationLocalHostnamesForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationUrlLocalDial.ts", + "source_location": "L70", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_setcoordinationlocalhostnamesfortests", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "setcoordinationlocalhostnamesfortests()" + }, + { + "label": "localMachineHostnames()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationUrlLocalDial.ts", + "source_location": "L77", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_localmachinehostnames", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "localmachinehostnames()" + }, + { + "label": "isCoordinationRelayColocated()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationUrlLocalDial.ts", + "source_location": "L92", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_iscoordinationrelaycolocated", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "iscoordinationrelaycolocated()" + }, + { + "label": "rewriteHostnameToLoopback()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationUrlLocalDial.ts", + "source_location": "L100", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_rewritehostnametoloopback", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "rewritehostnametoloopback()" + }, + { + "label": "normalizeCoordinationUrlForLocalDial()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationUrlLocalDial.ts", + "source_location": "L117", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_normalizecoordinationurlforlocaldial", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "normalizecoordinationurlforlocaldial()" + }, + { + "label": "normalizeCoordinationWsUrlForLocalDial()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationUrlLocalDial.ts", + "source_location": "L125", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_normalizecoordinationwsurlforlocaldial", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "normalizecoordinationwsurlforlocaldial()" + }, + { + "label": "coordinationWs.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "coordinationws.ts" + }, + { + "label": "publishBeapIngestAckOverCoordinationRelay()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L51", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_coordinationws_publishbeapingestackovercoordinationrelay", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "publishbeapingestackovercoordinationrelay()" + }, + { + "label": "mapErrorToReasonCode()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L86", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_coordinationws_maperrortoreasoncode", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "maperrortoreasoncode()" + }, + { + "label": "isDuplicatePrimaryKey()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L112", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_coordinationws_isduplicateprimarykey", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "isduplicateprimarykey()" + }, + { + "label": "pendingContextSyncBuffer", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L128", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_coordinationws_pendingcontextsyncbuffer", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "pendingcontextsyncbuffer" + }, + { + "label": "replayBufferedContextSync()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L134", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_coordinationws_replaybufferedcontextsync", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "replaybufferedcontextsync()" + }, + { + "label": "RECONNECT_DELAYS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L153", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_coordinationws_reconnect_delays", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "reconnect_delays" + }, + { + "label": "getReconnectDelay()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L155", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_coordinationws_getreconnectdelay", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "getreconnectdelay()" + }, + { + "label": "CoordinationCapsuleMessage", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L159", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_coordinationws_coordinationcapsulemessage", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "coordinationcapsulemessage" + }, + { + "label": "CoordinationWsClient", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L166", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_coordinationws_coordinationwsclient", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "coordinationwsclient" + }, + { + "label": ".connect()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L167", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_coordinationws_coordinationwsclient_connect", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": ".connect()" + }, + { + "label": ".disconnect()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L168", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_coordinationws_coordinationwsclient_disconnect", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": ".disconnect()" + }, + { + "label": ".isConnected()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L169", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_coordinationws_coordinationwsclient_isconnected", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": ".isconnected()" + }, + { + "label": ".onCapsule()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L170", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_coordinationws_coordinationwsclient_oncapsule", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": ".oncapsule()" + }, + { + "label": ".sendAck()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L171", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_coordinationws_coordinationwsclient_sendack", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": ".sendack()" + }, + { + "label": "processCapsuleInternal()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L174", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_coordinationws_processcapsuleinternal", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "processcapsuleinternal()" + }, + { + "label": "processCoordinationInboundCapsuleForTest()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L620", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_coordinationws_processcoordinationinboundcapsulefortest", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "processcoordinationinboundcapsulefortest()" + }, + { + "label": "createCoordinationWsClient()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L633", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_coordinationws_createcoordinationwsclient", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "createcoordinationwsclient()" + }, + { + "label": "coordinationWsHolder.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWsHolder.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_coordinationwsholder", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "coordinationwsholder.ts" + }, + { + "label": "CoordinationClient", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWsHolder.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_coordinationwsholder_coordinationclient", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "coordinationclient" + }, + { + "label": "getCoordinationWsClient()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWsHolder.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_coordinationwsholder_getcoordinationwsclient", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "getcoordinationwsclient()" + }, + { + "label": "setCoordinationWsClient()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWsHolder.ts", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_coordinationwsholder_setcoordinationwsclient", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "setcoordinationwsclient()" + }, + { + "label": "clearCoordinationWsClientRef()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWsHolder.ts", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_coordinationwsholder_clearcoordinationwsclientref", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "clearcoordinationwsclientref()" + }, + { + "label": "disconnectCoordinationWsForAccountSwitch()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWsHolder.ts", + "source_location": "L37", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_coordinationwsholder_disconnectcoordinationwsforaccountswitch", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "disconnectcoordinationwsforaccountswitch()" + }, + { + "label": "getCoordinationWsUserKey()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWsHolder.ts", + "source_location": "L69", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_coordinationwsholder_getcoordinationwsuserkey", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "getcoordinationwsuserkey()" + }, + { + "label": "coordinationWsLifecycle.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWsLifecycle.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_coordinationwslifecycle_test", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "coordinationwslifecycle.test.ts" + }, + { + "label": "p2pConfig.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pConfig.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_p2pconfig", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "p2pconfig.ts" + }, + { + "label": "RelayMode", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pConfig.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_p2pconfig_relaymode", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "relaymode" + }, + { + "label": "P2PConfig", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pConfig.ts", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_p2pconfig_p2pconfig", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "p2pconfig" + }, + { + "label": "DEFAULT_P2P_CONFIG", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pConfig.ts", + "source_location": "L35", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_p2pconfig_default_p2p_config", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "default_p2p_config" + }, + { + "label": "getP2PConfig()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pConfig.ts", + "source_location": "L57", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_p2pconfig_getp2pconfig", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "getp2pconfig()" + }, + { + "label": "getEffectiveRelayEndpoint()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pConfig.ts", + "source_location": "L101", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_p2pconfig_geteffectiverelayendpoint", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "geteffectiverelayendpoint()" + }, + { + "label": "detectLocalP2PHost()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pConfig.ts", + "source_location": "L119", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_p2pconfig_detectlocalp2phost", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "detectlocalp2phost()" + }, + { + "label": "listLanIPv4Candidates()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pConfig.ts", + "source_location": "L137", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_p2pconfig_listlanipv4candidates", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "listlanipv4candidates()" + }, + { + "label": "normalizeBracketHostname()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pConfig.ts", + "source_location": "L155", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_p2pconfig_normalizebrackethostname", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "normalizebrackethostname()" + }, + { + "label": "p2pIngestUrlHostname()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pConfig.ts", + "source_location": "L162", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_p2pconfig_p2pingesturlhostname", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "p2pingesturlhostname()" + }, + { + "label": "isP2pPublishedHostLoopback()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pConfig.ts", + "source_location": "L172", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_p2pconfig_isp2ppublishedhostloopback", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "isp2ppublishedhostloopback()" + }, + { + "label": "isBindAddressLocalhostOnly()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pConfig.ts", + "source_location": "L178", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_p2pconfig_isbindaddresslocalhostonly", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "isbindaddresslocalhostonly()" + }, + { + "label": "computeLocalP2PEndpoint()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pConfig.ts", + "source_location": "L187", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_p2pconfig_computelocalp2pendpoint", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "computelocalp2pendpoint()" + }, + { + "label": "upsertP2PConfig()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pConfig.ts", + "source_location": "L193", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_p2pconfig_upsertp2pconfig", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "upsertp2pconfig()" + }, + { + "label": "p2pHealth.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_p2phealth", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "p2phealth.ts" + }, + { + "label": "P2PHealthStatus", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_p2phealth_p2phealthstatus", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "p2phealthstatus" + }, + { + "label": "health", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L34", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_p2phealth_health", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "health" + }, + { + "label": "listeners", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L58", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_p2phealth_listeners", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "listeners" + }, + { + "label": "notifyListeners()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L60", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_p2phealth_notifylisteners", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "notifylisteners()" + }, + { + "label": "getP2PHealth()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L71", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_p2phealth_getp2phealth", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "getp2phealth()" + }, + { + "label": "subscribeP2PHealth()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L75", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_p2phealth_subscribep2phealth", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "subscribep2phealth()" + }, + { + "label": "setP2PHealthServerStarted()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L81", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthserverstarted", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "setp2phealthserverstarted()" + }, + { + "label": "setP2PHealthServerFailed()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L90", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthserverfailed", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "setp2phealthserverfailed()" + }, + { + "label": "setP2PHealthOutboundSuccess()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L97", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthoutboundsuccess", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "setp2phealthoutboundsuccess()" + }, + { + "label": "setP2PHealthOutboundFailure()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L104", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthoutboundfailure", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "setp2phealthoutboundfailure()" + }, + { + "label": "setP2PHealthQueueCounts()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L110", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthqueuecounts", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "setp2phealthqueuecounts()" + }, + { + "label": "setP2PHealthSelfTest()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L116", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthselftest", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "setp2phealthselftest()" + }, + { + "label": "setP2PHealthRelayMode()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L121", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthrelaymode", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "setp2phealthrelaymode()" + }, + { + "label": "setP2PHealthRelayPullSuccess()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L127", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthrelaypullsuccess", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "setp2phealthrelaypullsuccess()" + }, + { + "label": "setP2PHealthRelayPullFailure()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L135", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthrelaypullfailure", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "setp2phealthrelaypullfailure()" + }, + { + "label": "setP2PHealthCoordinationConnected()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L141", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthcoordinationconnected", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "setp2phealthcoordinationconnected()" + }, + { + "label": "setP2PHealthCoordinationDisconnected()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L147", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthcoordinationdisconnected", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "setp2phealthcoordinationdisconnected()" + }, + { + "label": "setP2PHealthCoordinationError()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L152", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthcoordinationerror", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "setp2phealthcoordinationerror()" + }, + { + "label": "setP2PHealthCoordinationLastPush()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L157", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthcoordinationlastpush", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "setp2phealthcoordinationlastpush()" + }, + { + "label": "setP2PHealthCoordinationReconnectAttempts()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L162", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthcoordinationreconnectattempts", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "setp2phealthcoordinationreconnectattempts()" + }, + { + "label": "formatP2PErrorForUser()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L170", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_p2phealth_formatp2perrorforuser", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "formatp2perrorforuser()" + }, + { + "label": "getFirewallHint()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L206", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_p2phealth_getfirewallhint", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "getfirewallhint()" + }, + { + "label": "peerDeliveryAck.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/peerDeliveryAck.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_peerdeliveryack", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "peerdeliveryack.ts" + }, + { + "label": "isDirectBeapIngestEndpoint()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/peerDeliveryAck.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_peerdeliveryack_isdirectbeapingestendpoint", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "isdirectbeapingestendpoint()" + }, + { + "label": "deliveryAckUrlFromIngestUrl()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/peerDeliveryAck.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_peerdeliveryack_deliveryackurlfromingesturl", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "deliveryackurlfromingesturl()" + }, + { + "label": "resolveSenderDeliveryAckEndpoint()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/peerDeliveryAck.ts", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_peerdeliveryack_resolvesenderdeliveryackendpoint", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "resolvesenderdeliveryackendpoint()" + }, + { + "label": "postPeerDeliveryAckToSender()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/peerDeliveryAck.ts", + "source_location": "L63", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_peerdeliveryack_postpeerdeliveryacktosender", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "postpeerdeliveryacktosender()" + }, + { + "label": "p2p/rateLimiter.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/rateLimiter.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_ratelimiter", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "p2p/ratelimiter.ts" + }, + { + "label": "IP_LIMIT_PUBLIC", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/rateLimiter.ts", + "source_location": "L9", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_ratelimiter_ip_limit_public", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "ip_limit_public" + }, + { + "label": "IP_LIMIT_PRIVATE_LAN", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/rateLimiter.ts", + "source_location": "L11", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_ratelimiter_ip_limit_private_lan", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "ip_limit_private_lan" + }, + { + "label": "HANDSHAKE_LIMIT_PUBLIC", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/rateLimiter.ts", + "source_location": "L13", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_ratelimiter_handshake_limit_public", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "handshake_limit_public" + }, + { + "label": "HANDSHAKE_LIMIT_PRIVATE_LAN", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/rateLimiter.ts", + "source_location": "L14", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_ratelimiter_handshake_limit_private_lan", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "handshake_limit_private_lan" + }, + { + "label": "setForcePublicP2pRateLimitsForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/rateLimiter.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_ratelimiter_setforcepublicp2pratelimitsfortests", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "setforcepublicp2pratelimitsfortests()" + }, + { + "label": "isClientIpPrivateLan()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/rateLimiter.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_ratelimiter_isclientipprivatelan", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "isclientipprivatelan()" + }, + { + "label": "Entry", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/rateLimiter.ts", + "source_location": "L52", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_ratelimiter_entry", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "entry" + }, + { + "label": "ipCounts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/rateLimiter.ts", + "source_location": "L57", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_ratelimiter_ipcounts", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "ipcounts" + }, + { + "label": "handshakeCounts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/rateLimiter.ts", + "source_location": "L58", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_ratelimiter_handshakecounts", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "handshakecounts" + }, + { + "label": "prune()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/rateLimiter.ts", + "source_location": "L60", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_ratelimiter_prune", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "prune()" + }, + { + "label": "checkIpLimit()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/rateLimiter.ts", + "source_location": "L69", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_ratelimiter_checkiplimit", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "checkiplimit()" + }, + { + "label": "checkHandshakeLimit()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/rateLimiter.ts", + "source_location": "L87", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_ratelimiter_checkhandshakelimit", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "checkhandshakelimit()" + }, + { + "label": "authFailCounts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/rateLimiter.ts", + "source_location": "L109", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_ratelimiter_authfailcounts", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "authfailcounts" + }, + { + "label": "checkAuthFailLimit()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/rateLimiter.ts", + "source_location": "L113", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_ratelimiter_checkauthfaillimit", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "checkauthfaillimit()" + }, + { + "label": "recordAuthFailure()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/rateLimiter.ts", + "source_location": "L127", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_ratelimiter_recordauthfailure", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "recordauthfailure()" + }, + { + "label": "resetRateLimitsForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/rateLimiter.ts", + "source_location": "L138", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_ratelimiter_resetratelimitsfortests", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "resetratelimitsfortests()" + }, + { + "label": "RFC-1918", + "file_type": "concept", + "source_file": "apps/electron-vite-project/electron/main/p2p/rateLimiter.ts", + "source_location": "L10", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_ratelimiter_ts_docref_rfc_1918", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "rfc-1918" + }, + { + "label": "relayDeviceBinding.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayDeviceBinding.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_relaydevicebinding", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "relaydevicebinding.ts" + }, + { + "label": "getCanonicalRelayDeviceId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayDeviceBinding.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_relaydevicebinding_getcanonicalrelaydeviceid", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "getcanonicalrelaydeviceid()" + }, + { + "label": "logDeviceIdBinding()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayDeviceBinding.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_relaydevicebinding_logdeviceidbinding", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "logdeviceidbinding()" + }, + { + "label": "relayIdentity.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayIdentity.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_relayidentity_test", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "relayidentity.test.ts" + }, + { + "label": "relayIdentity.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayIdentity.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_relayidentity", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "relayidentity.ts" + }, + { + "label": "RelaySessionLike", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayIdentity.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_relayidentity_relaysessionlike", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "relaysessionlike" + }, + { + "label": "getRelayUserIdForRegistry()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayIdentity.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_relayidentity_getrelayuseridforregistry", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "getrelayuseridforregistry()" + }, + { + "label": "relayIdentitySnapshot()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayIdentity.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_relayidentity_relayidentitysnapshot", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "relayidentitysnapshot()" + }, + { + "label": "decodeJwtSubForLogs()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayIdentity.ts", + "source_location": "L37", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_relayidentity_decodejwtsubforlogs", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "decodejwtsubforlogs()" + }, + { + "label": "coordinationRegistryUserIdsForSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayIdentity.ts", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_relayidentity_coordinationregistryuseridsforsession", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "coordinationregistryuseridsforsession()" + }, + { + "label": "relayPull.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_relaypull", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "relaypull.ts" + }, + { + "label": "mapErrorToReasonCode()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L41", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_relaypull_maperrortoreasoncode", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "maperrortoreasoncode()" + }, + { + "label": "isDuplicatePrimaryKey()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L66", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_relaypull_isduplicateprimarykey", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "isduplicateprimarykey()" + }, + { + "label": "migratedDbs", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L77", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_relaypull_migrateddbs", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "migrateddbs" + }, + { + "label": "ensureHandshakeMigration()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L79", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_relaypull_ensurehandshakemigration", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "ensurehandshakemigration()" + }, + { + "label": "pullFromRelay()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L89", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_relaypull_pullfromrelay", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "pullfromrelay()" + }, + { + "label": "sendAck()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L422", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_relaypull_sendack", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "sendack()" + }, + { + "label": "registerDeviceRoleWithRelay()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L447", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_relaypull_registerdevicerolewithrelay", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "registerdevicerolewithrelay()" + }, + { + "label": "relaySync.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/relaySync.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_relaysync", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "relaysync.ts" + }, + { + "label": "decodeJwtAud()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/relaySync.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_relaysync_decodejwtaud", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "decodejwtaud()" + }, + { + "label": "decodeJwtSub()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/relaySync.ts", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_relaysync_decodejwtsub", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "decodejwtsub()" + }, + { + "label": "registerHandshakeWithRelay()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/relaySync.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_relaysync_registerhandshakewithrelay", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "registerhandshakewithrelay()" + }, + { + "label": "REGISTRY_DRIFT_P2P_SIGNAL_ERRORS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/relaySync.ts", + "source_location": "L221", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_relaysync_registry_drift_p2p_signal_errors", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "registry_drift_p2p_signal_errors" + }, + { + "label": "coordinationP2pSignal403IsRegistryDrift()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/relaySync.ts", + "source_location": "L228", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_relaysync_coordinationp2psignal403isregistrydrift", + "community": 13, + "community_name": "Coordination WS Relay", + "norm_label": "coordinationp2psignal403isregistrydrift()" + }, + { + "label": "reregisterInternalHandshakeAfterCoordinationP2pSignal403()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/p2p/relaySync.ts", + "source_location": "L243", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_p2p_relaysync_reregisterinternalhandshakeaftercoordinationp2psignal403", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "reregisterinternalhandshakeaftercoordinationp2psignal403()" + }, + { + "label": "pdfjsWorkerSrc.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/pdfjsWorkerSrc.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_pdfjsworkersrc", + "community": 274, + "community_name": "Letter #274", + "norm_label": "pdfjsworkersrc.ts" + }, + { + "label": "require", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/pdfjsWorkerSrc.ts", + "source_location": "L16", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_pdfjsworkersrc_require", + "community": 203, + "community_name": "Vault #203", + "norm_label": "require" + }, + { + "label": "resolvePdfjsDistWorkerFileUrl()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/pdfjsWorkerSrc.ts", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_pdfjsworkersrc_resolvepdfjsdistworkerfileurl", + "community": 274, + "community_name": "Letter #274", + "norm_label": "resolvepdfjsdistworkerfileurl()" + }, + { + "label": "platform.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/platform.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_platform", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "platform.ts" + }, + { + "label": "isLinux", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/platform.ts", + "source_location": "L9", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_platform_islinux", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "islinux" + }, + { + "label": "isWindows", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/platform.ts", + "source_location": "L10", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_platform_iswindows", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "iswindows" + }, + { + "label": "isMac", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/platform.ts", + "source_location": "L11", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_platform_ismac", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "ismac" + }, + { + "label": "getRendererIndexPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/platform.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_platform_getrendererindexpath", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "getrendererindexpath()" + }, + { + "label": "getP2pTransportPagePath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/platform.ts", + "source_location": "L41", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_platform_getp2ptransportpagepath", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": "getp2ptransportpagepath()" + }, + { + "label": "policy/db.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/policy/db.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_policy_db", + "community": 136, + "community_name": "Policy", + "norm_label": "policy/db.ts" + }, + { + "label": "getDbPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/policy/db.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_policy_db_getdbpath", + "community": 136, + "community_name": "Policy", + "norm_label": "getdbpath()" + }, + { + "label": "initPolicyDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/policy/db.ts", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_policy_db_initpolicydb", + "community": 136, + "community_name": "Policy", + "norm_label": "initpolicydb()" + }, + { + "label": "closePolicyDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/policy/db.ts", + "source_location": "L114", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_policy_db_closepolicydb", + "community": 136, + "community_name": "Policy", + "norm_label": "closepolicydb()" + }, + { + "label": "saveLocalPolicy()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/policy/db.ts", + "source_location": "L124", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_policy_db_savelocalpolicy", + "community": 136, + "community_name": "Policy", + "norm_label": "savelocalpolicy()" + }, + { + "label": "getActiveLocalPolicy()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/policy/db.ts", + "source_location": "L148", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_policy_db_getactivelocalpolicy", + "community": 136, + "community_name": "Policy", + "norm_label": "getactivelocalpolicy()" + }, + { + "label": "saveAdminPackage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/policy/db.ts", + "source_location": "L164", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_policy_db_saveadminpackage", + "community": 136, + "community_name": "Policy", + "norm_label": "saveadminpackage()" + }, + { + "label": "getAllAdminPackages()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/policy/db.ts", + "source_location": "L189", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_policy_db_getalladminpackages", + "community": 136, + "community_name": "Policy", + "norm_label": "getalladminpackages()" + }, + { + "label": "savePolicyNode()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/policy/db.ts", + "source_location": "L215", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_policy_db_savepolicynode", + "community": 136, + "community_name": "Policy", + "norm_label": "savepolicynode()" + }, + { + "label": "getAllPolicyNodes()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/policy/db.ts", + "source_location": "L237", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_policy_db_getallpolicynodes", + "community": 136, + "community_name": "Policy", + "norm_label": "getallpolicynodes()" + }, + { + "label": "saveConsentGrant()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/policy/db.ts", + "source_location": "L255", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_policy_db_saveconsentgrant", + "community": 136, + "community_name": "Policy", + "norm_label": "saveconsentgrant()" + }, + { + "label": "getConsentGrantsForSender()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/policy/db.ts", + "source_location": "L286", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_policy_db_getconsentgrantsforsender", + "community": 136, + "community_name": "Policy", + "norm_label": "getconsentgrantsforsender()" + }, + { + "label": "revokeConsentGrant()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/policy/db.ts", + "source_location": "L310", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_policy_db_revokeconsentgrant", + "community": 136, + "community_name": "Policy", + "norm_label": "revokeconsentgrant()" + }, + { + "label": "main/policy/index.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/policy/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_policy_index", + "community": 136, + "community_name": "Policy", + "norm_label": "main/policy/index.ts" + }, + { + "label": "policy/service.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/policy/service.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_policy_service", + "community": 136, + "community_name": "Policy", + "norm_label": "policy/service.ts" + }, + { + "label": "appliedPackages", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/policy/service.ts", + "source_location": "L18", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_policy_service_appliedpackages", + "community": 136, + "community_name": "Policy", + "norm_label": "appliedpackages" + }, + { + "label": "registeredNodes", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/policy/service.ts", + "source_location": "L19", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_policy_service_registerednodes", + "community": 136, + "community_name": "Policy", + "norm_label": "registerednodes" + }, + { + "label": "createAdminPackage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/policy/service.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_policy_service_createadminpackage", + "community": 136, + "community_name": "Policy", + "norm_label": "createadminpackage()" + }, + { + "label": "signAdminPackage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/policy/service.ts", + "source_location": "L71", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_policy_service_signadminpackage", + "community": 136, + "community_name": "Policy", + "norm_label": "signadminpackage()" + }, + { + "label": "verifyAdminPackage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/policy/service.ts", + "source_location": "L93", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_policy_service_verifyadminpackage", + "community": 136, + "community_name": "Policy", + "norm_label": "verifyadminpackage()" + }, + { + "label": "applyAdminPackage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/policy/service.ts", + "source_location": "L113", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_policy_service_applyadminpackage", + "community": 136, + "community_name": "Policy", + "norm_label": "applyadminpackage()" + }, + { + "label": "getNetworkPolicy()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/policy/service.ts", + "source_location": "L157", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_policy_service_getnetworkpolicy", + "community": 136, + "community_name": "Policy", + "norm_label": "getnetworkpolicy()" + }, + { + "label": "getLocalPolicy()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/policy/service.ts", + "source_location": "L164", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_policy_service_getlocalpolicy", + "community": 136, + "community_name": "Policy", + "norm_label": "getlocalpolicy()" + }, + { + "label": "setLocalPolicy()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/policy/service.ts", + "source_location": "L171", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_policy_service_setlocalpolicy", + "community": 136, + "community_name": "Policy", + "norm_label": "setlocalpolicy()" + }, + { + "label": "getAppliedPackages()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/policy/service.ts", + "source_location": "L178", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_policy_service_getappliedpackages", + "community": 136, + "community_name": "Policy", + "norm_label": "getappliedpackages()" + }, + { + "label": "rollbackToPackage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/policy/service.ts", + "source_location": "L185", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_policy_service_rollbacktopackage", + "community": 136, + "community_name": "Policy", + "norm_label": "rollbacktopackage()" + }, + { + "label": "registerNode()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/policy/service.ts", + "source_location": "L202", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_policy_service_registernode", + "community": 136, + "community_name": "Policy", + "norm_label": "registernode()" + }, + { + "label": "getRegisteredNodes()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/policy/service.ts", + "source_location": "L228", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_policy_service_getregisterednodes", + "community": 136, + "community_name": "Policy", + "norm_label": "getregisterednodes()" + }, + { + "label": "getPendingPackagesForNode()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/policy/service.ts", + "source_location": "L235", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_policy_service_getpendingpackagesfornode", + "community": 136, + "community_name": "Policy", + "norm_label": "getpendingpackagesfornode()" + }, + { + "label": "markNodeSynced()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/policy/service.ts", + "source_location": "L255", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_policy_service_marknodesynced", + "community": 136, + "community_name": "Policy", + "norm_label": "marknodesynced()" + }, + { + "label": "getSyncStatusSummary()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/policy/service.ts", + "source_location": "L276", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_policy_service_getsyncstatussummary", + "community": 136, + "community_name": "Policy", + "norm_label": "getsyncstatussummary()" + }, + { + "label": "policy/types.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/policy/types.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_policy_types", + "community": 136, + "community_name": "Policy", + "norm_label": "policy/types.ts" + }, + { + "label": "AdminPolicyPackageSchema", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/policy/types.ts", + "source_location": "L14", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_policy_types_adminpolicypackageschema", + "community": 136, + "community_name": "Policy", + "norm_label": "adminpolicypackageschema" + }, + { + "label": "AdminPolicyPackage", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/policy/types.ts", + "source_location": "L60", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_policy_types_adminpolicypackage", + "community": 136, + "community_name": "Policy", + "norm_label": "adminpolicypackage" + }, + { + "label": "PolicySyncStatus", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/policy/types.ts", + "source_location": "L65", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_policy_types_policysyncstatus", + "community": 136, + "community_name": "Policy", + "norm_label": "policysyncstatus" + }, + { + "label": "PolicyApplicationResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/policy/types.ts", + "source_location": "L76", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_policy_types_policyapplicationresult", + "community": 136, + "community_name": "Policy", + "norm_label": "policyapplicationresult" + }, + { + "label": "PolicyNode", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/policy/types.ts", + "source_location": "L87", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_policy_types_policynode", + "community": 136, + "community_name": "Policy", + "norm_label": "policynode" + }, + { + "label": "optimizerHttpInvoke.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/projects/optimizerHttpInvoke.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_projects_optimizerhttpinvoke", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "optimizerhttpinvoke.ts" + }, + { + "label": "BridgeResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/projects/optimizerHttpInvoke.ts", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_projects_optimizerhttpinvoke_bridgeresult", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "bridgeresult" + }, + { + "label": "invokeOptimizerSnapshot()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/projects/optimizerHttpInvoke.ts", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_projects_optimizerhttpinvoke_invokeoptimizersnapshot", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "invokeoptimizersnapshot()" + }, + { + "label": "invokeOptimizerSetContinuous()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/projects/optimizerHttpInvoke.ts", + "source_location": "L42", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_projects_optimizerhttpinvoke_invokeoptimizersetcontinuous", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "invokeoptimizersetcontinuous()" + }, + { + "label": "invokeOptimizerGetStatus()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/projects/optimizerHttpInvoke.ts", + "source_location": "L84", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_projects_optimizerhttpinvoke_invokeoptimizergetstatus", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "invokeoptimizergetstatus()" + }, + { + "label": "triggerProjectList.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/projects/triggerProjectList.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_projects_triggerprojectlist", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "triggerprojectlist.ts" + }, + { + "label": "TriggerProjectEntry", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/projects/triggerProjectList.ts", + "source_location": "L3", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_projects_triggerprojectlist_triggerprojectentry", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "triggerprojectentry" + }, + { + "label": "TriggerComposerShortcutId", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/projects/triggerProjectList.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_projects_triggerprojectlist_triggercomposershortcutid", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "triggercomposershortcutid" + }, + { + "label": "TriggerComposerEntry", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/projects/triggerProjectList.ts", + "source_location": "L19", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_projects_triggerprojectlist_triggercomposerentry", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "triggercomposerentry" + }, + { + "label": "TriggerListPayload", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/projects/triggerProjectList.ts", + "source_location": "L26", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_projects_triggerprojectlist_triggerlistpayload", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "triggerlistpayload" + }, + { + "label": "readTriggerListFromRenderer()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/projects/triggerProjectList.ts", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_projects_triggerprojectlist_readtriggerlistfromrenderer", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "readtriggerlistfromrenderer()" + }, + { + "label": "readTriggerProjectEntriesFromRenderer()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/projects/triggerProjectList.ts", + "source_location": "L156", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_projects_triggerprojectlist_readtriggerprojectentriesfromrenderer", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "readtriggerprojectentriesfromrenderer()" + }, + { + "label": "quarantine-blob-storage/index.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/quarantine-blob-storage/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_quarantine_blob_storage_index", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "quarantine-blob-storage/index.ts" + }, + { + "label": "QuarantineBlobFile", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/quarantine-blob-storage/index.ts", + "source_location": "L29", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_quarantine_blob_storage_index_quarantineblobfile", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "quarantineblobfile" + }, + { + "label": "getQuarantineBlobsBasePath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/quarantine-blob-storage/index.ts", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_quarantine_blob_storage_index_getquarantineblobsbasepath", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "getquarantineblobsbasepath()" + }, + { + "label": "QuarantineWriteResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/quarantine-blob-storage/index.ts", + "source_location": "L50", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_quarantine_blob_storage_index_quarantinewriteresult", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "quarantinewriteresult" + }, + { + "label": "writeQuarantineBlob()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/quarantine-blob-storage/index.ts", + "source_location": "L64", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_quarantine_blob_storage_index_writequarantineblob", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "writequarantineblob()" + }, + { + "label": "QuarantineReadResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/quarantine-blob-storage/index.ts", + "source_location": "L81", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_quarantine_blob_storage_index_quarantinereadresult", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "quarantinereadresult" + }, + { + "label": "readQuarantineBlob()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/quarantine-blob-storage/index.ts", + "source_location": "L89", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_quarantine_blob_storage_index_readquarantineblob", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "readquarantineblob()" + }, + { + "label": "deleteQuarantineBlob()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/quarantine-blob-storage/index.ts", + "source_location": "L110", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_quarantine_blob_storage_index_deletequarantineblob", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "deletequarantineblob()" + }, + { + "label": "quarantine-encrypt/index.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/quarantine-encrypt/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_quarantine_encrypt_index", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "quarantine-encrypt/index.ts" + }, + { + "label": "QuarantineEncryptResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/quarantine-encrypt/index.ts", + "source_location": "L49", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_quarantine_encrypt_index_quarantineencryptresult", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "quarantineencryptresult" + }, + { + "label": "QuarantineDecryptResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/quarantine-encrypt/index.ts", + "source_location": "L53", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_quarantine_encrypt_index_quarantinedecryptresult", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "quarantinedecryptresult" + }, + { + "label": "encryptForQuarantine()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/quarantine-encrypt/index.ts", + "source_location": "L69", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_quarantine_encrypt_index_encryptforquarantine", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "encryptforquarantine()" + }, + { + "label": "decryptQuarantineBlob()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/quarantine-encrypt/index.ts", + "source_location": "L137", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_quarantine_encrypt_index_decryptquarantineblob", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "decryptquarantineblob()" + }, + { + "label": "retentionJob.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/retention/__tests__/retentionJob.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_retention_tests_retentionjob_test", + "community": 229, + "community_name": "Retention", + "norm_label": "retentionjob.test.ts" + }, + { + "label": "createRetentionDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/retention/__tests__/retentionJob.test.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_retention_tests_retentionjob_test_createretentiondb", + "community": 229, + "community_name": "Retention", + "norm_label": "createretentiondb()" + }, + { + "label": "daysAgoIso()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/retention/__tests__/retentionJob.test.ts", + "source_location": "L107", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_retention_tests_retentionjob_test_daysagoiso", + "community": 229, + "community_name": "Retention", + "norm_label": "daysagoiso()" + }, + { + "label": "addAuditRows()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/retention/__tests__/retentionJob.test.ts", + "source_location": "L113", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_retention_tests_retentionjob_test_addauditrows", + "community": 229, + "community_name": "Retention", + "norm_label": "addauditrows()" + }, + { + "label": "addQuarantineRows()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/retention/__tests__/retentionJob.test.ts", + "source_location": "L126", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_retention_tests_retentionjob_test_addquarantinerows", + "community": 229, + "community_name": "Retention", + "norm_label": "addquarantinerows()" + }, + { + "label": "addSandboxRows()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/retention/__tests__/retentionJob.test.ts", + "source_location": "L136", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_retention_tests_retentionjob_test_addsandboxrows", + "community": 229, + "community_name": "Retention", + "norm_label": "addsandboxrows()" + }, + { + "label": "testConfig", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/retention/__tests__/retentionJob.test.ts", + "source_location": "L148", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_retention_tests_retentionjob_test_testconfig", + "community": 229, + "community_name": "Retention", + "norm_label": "testconfig" + }, + { + "label": "retentionConfig.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/retention/retentionConfig.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_retention_retentionconfig", + "community": 229, + "community_name": "Retention", + "norm_label": "retentionconfig.ts" + }, + { + "label": "RetentionConfig", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/retention/retentionConfig.ts", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_retention_retentionconfig_retentionconfig", + "community": 229, + "community_name": "Retention", + "norm_label": "retentionconfig" + }, + { + "label": "DEFAULT_RETENTION_CONFIG", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/retention/retentionConfig.ts", + "source_location": "L18", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_retention_retentionconfig_default_retention_config", + "community": 229, + "community_name": "Retention", + "norm_label": "default_retention_config" + }, + { + "label": "retention/retentionJob.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/retention/retentionJob.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_retention_retentionjob", + "community": 229, + "community_name": "Retention", + "norm_label": "retention/retentionjob.ts" + }, + { + "label": "RetentionRunResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/retention/retentionJob.ts", + "source_location": "L19", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_retention_retentionjob_retentionrunresult", + "community": 229, + "community_name": "Retention", + "norm_label": "retentionrunresult" + }, + { + "label": "startRetentionSchedule()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/retention/retentionJob.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_retention_retentionjob_startretentionschedule", + "community": 229, + "community_name": "Retention", + "norm_label": "startretentionschedule()" + }, + { + "label": "stopRetentionSchedule()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/retention/retentionJob.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_retention_retentionjob_stopretentionschedule", + "community": 229, + "community_name": "Retention", + "norm_label": "stopretentionschedule()" + }, + { + "label": "runRetentionJob()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/retention/retentionJob.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_retention_retentionjob_runretentionjob", + "community": 229, + "community_name": "Retention", + "norm_label": "runretentionjob()" + }, + { + "label": "purgeAuditLog()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/retention/retentionJob.ts", + "source_location": "L73", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_retention_retentionjob_purgeauditlog", + "community": 229, + "community_name": "Retention", + "norm_label": "purgeauditlog()" + }, + { + "label": "purgeQuarantine()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/retention/retentionJob.ts", + "source_location": "L97", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_retention_retentionjob_purgequarantine", + "community": 229, + "community_name": "Retention", + "norm_label": "purgequarantine()" + }, + { + "label": "purgeSandboxQueue()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/retention/retentionJob.ts", + "source_location": "L107", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_retention_retentionjob_purgesandboxqueue", + "community": 229, + "community_name": "Retention", + "norm_label": "purgesandboxqueue()" + }, + { + "label": "daysAgo()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/retention/retentionJob.ts", + "source_location": "L135", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_retention_retentionjob_daysago", + "community": 229, + "community_name": "Retention", + "norm_label": "daysago()" + }, + { + "label": "batchDelete()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/retention/retentionJob.ts", + "source_location": "L141", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_retention_retentionjob_batchdelete", + "community": 229, + "community_name": "Retention", + "norm_label": "batchdelete()" + }, + { + "label": "enforceRowCap()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/retention/retentionJob.ts", + "source_location": "L161", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_retention_retentionjob_enforcerowcap", + "community": 229, + "community_name": "Retention", + "norm_label": "enforcerowcap()" + }, + { + "label": "enforceRowCapFiltered()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/retention/retentionJob.ts", + "source_location": "L188", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_retention_retentionjob_enforcerowcapfiltered", + "community": 229, + "community_name": "Retention", + "norm_label": "enforcerowcapfiltered()" + }, + { + "label": "sandboxInterface.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/__tests__/sandboxInterface.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_tests_sandboxinterface_test", + "community": 137, + "community_name": "Sandbox", + "norm_label": "sandboxinterface.test.ts" + }, + { + "label": "createInMemoryDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/__tests__/sandboxInterface.test.ts", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_tests_sandboxinterface_test_createinmemorydb", + "community": 137, + "community_name": "Sandbox", + "norm_label": "createinmemorydb()" + }, + { + "label": "makeTask()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/__tests__/sandboxInterface.test.ts", + "source_location": "L72", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_tests_sandboxinterface_test_maketask", + "community": 137, + "community_name": "Sandbox", + "norm_label": "maketask()" + }, + { + "label": "collectProductionFiles()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/__tests__/sandboxInterface.test.ts", + "source_location": "L223", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_tests_sandboxinterface_test_collectproductionfiles", + "community": 137, + "community_name": "Sandbox", + "norm_label": "collectproductionfiles()" + }, + { + "label": "sandboxOutboundPolicy.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/__tests__/sandboxOutboundPolicy.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_tests_sandboxoutboundpolicy_test", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "sandboxoutboundpolicy.test.ts" + }, + { + "label": "getOrchestratorMode", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/__tests__/sandboxOutboundPolicy.test.ts", + "source_location": "L16", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_tests_sandboxoutboundpolicy_test_getorchestratormode", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "getorchestratormode" + }, + { + "label": "ledgerProvesLocalSandboxToHostFromDb", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/__tests__/sandboxOutboundPolicy.test.ts", + "source_location": "L17", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_tests_sandboxoutboundpolicy_test_ledgerproveslocalsandboxtohostfromdb", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "ledgerproveslocalsandboxtohostfromdb" + }, + { + "label": "sandboxProcess.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/__tests__/sandboxProcess.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_tests_sandboxprocess_test", + "community": 137, + "community_name": "Sandbox", + "norm_label": "sandboxprocess.test.ts" + }, + { + "label": "createProcessTestDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/__tests__/sandboxProcess.test.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_tests_sandboxprocess_test_createprocesstestdb", + "community": 137, + "community_name": "Sandbox", + "norm_label": "createprocesstestdb()" + }, + { + "label": "makeTask()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/__tests__/sandboxProcess.test.ts", + "source_location": "L72", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_tests_sandboxprocess_test_maketask", + "community": 137, + "community_name": "Sandbox", + "norm_label": "maketask()" + }, + { + "label": "collectProdFiles()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/__tests__/sandboxProcess.test.ts", + "source_location": "L161", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_tests_sandboxprocess_test_collectprodfiles", + "community": 137, + "community_name": "Sandbox", + "norm_label": "collectprodfiles()" + }, + { + "label": "main/sandbox/sandboxClient.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxClient.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_sandboxclient", + "community": 137, + "community_name": "Sandbox", + "norm_label": "main/sandbox/sandboxclient.ts" + }, + { + "label": "TaskProcessor", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxClient.ts", + "source_location": "L24", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_sandboxclient_taskprocessor", + "community": 137, + "community_name": "Sandbox", + "norm_label": "taskprocessor" + }, + { + "label": "setTaskProcessor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxClient.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_sandboxclient_settaskprocessor", + "community": 137, + "community_name": "Sandbox", + "norm_label": "settaskprocessor()" + }, + { + "label": "_resetProcessor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxClient.ts", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_sandboxclient_resetprocessor", + "community": 137, + "community_name": "Sandbox", + "norm_label": "_resetprocessor()" + }, + { + "label": "validateTask()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxClient.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_sandboxclient_validatetask", + "community": 137, + "community_name": "Sandbox", + "norm_label": "validatetask()" + }, + { + "label": "validateResult()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxClient.ts", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_sandboxclient_validateresult", + "community": 137, + "community_name": "Sandbox", + "norm_label": "validateresult()" + }, + { + "label": "EnqueueResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxClient.ts", + "source_location": "L72", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_sandboxclient_enqueueresult", + "community": 137, + "community_name": "Sandbox", + "norm_label": "enqueueresult" + }, + { + "label": "enqueueTask()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxClient.ts", + "source_location": "L78", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_sandboxclient_enqueuetask", + "community": 137, + "community_name": "Sandbox", + "norm_label": "enqueuetask()" + }, + { + "label": "ConsumeResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxClient.ts", + "source_location": "L96", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_sandboxclient_consumeresult", + "community": 137, + "community_name": "Sandbox", + "norm_label": "consumeresult" + }, + { + "label": "consumeResults()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxClient.ts", + "source_location": "L102", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_sandboxclient_consumeresults", + "community": 137, + "community_name": "Sandbox", + "norm_label": "consumeresults()" + }, + { + "label": "sandboxOutboundPolicy.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxOutboundPolicy.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "sandboxoutboundpolicy.ts" + }, + { + "label": "SANDBOX_DATA_EGRESS_FORBIDDEN", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxOutboundPolicy.ts", + "source_location": "L37", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_sandbox_data_egress_forbidden", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "sandbox_data_egress_forbidden" + }, + { + "label": "SANDBOX_PERMITTED_SEALED_SERVICE_RPC_INBOUND_INNER_TYPES", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxOutboundPolicy.ts", + "source_location": "L43", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_sandbox_permitted_sealed_service_rpc_inbound_inner_types", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "sandbox_permitted_sealed_service_rpc_inbound_inner_types" + }, + { + "label": "SandboxSealedServiceRpcInboundInnerVerdict", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxOutboundPolicy.ts", + "source_location": "L50", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_sandboxsealedservicerpcinboundinnerverdict", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "sandboxsealedservicerpcinboundinnerverdict" + }, + { + "label": "assertSandboxMayReceiveSealedServiceRpcInnerType()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxOutboundPolicy.ts", + "source_location": "L60", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_assertsandboxmayreceivesealedservicerpcinnertype", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "assertsandboxmayreceivesealedservicerpcinnertype()" + }, + { + "label": "SANDBOX_PERMITTED_SEALED_SERVICE_RPC_INNER_TYPES", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxOutboundPolicy.ts", + "source_location": "L92", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_sandbox_permitted_sealed_service_rpc_inner_types", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "sandbox_permitted_sealed_service_rpc_inner_types" + }, + { + "label": "SandboxSealedServiceRpcInnerVerdict", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxOutboundPolicy.ts", + "source_location": "L99", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_sandboxsealedservicerpcinnerverdict", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "sandboxsealedservicerpcinnerverdict" + }, + { + "label": "assertSandboxMaySealServiceRpcInnerType()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxOutboundPolicy.ts", + "source_location": "L113", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_assertsandboxmaysealservicerpcinnertype", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "assertsandboxmaysealservicerpcinnertype()" + }, + { + "label": "SandboxOutboundOperation", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxOutboundPolicy.ts", + "source_location": "L159", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_sandboxoutboundoperation", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "sandboxoutboundoperation" + }, + { + "label": "SandboxEgressRequest", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxOutboundPolicy.ts", + "source_location": "L167", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_sandboxegressrequest", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "sandboxegressrequest" + }, + { + "label": "SandboxEgressVerdict", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxOutboundPolicy.ts", + "source_location": "L175", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_sandboxegressverdict", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "sandboxegressverdict" + }, + { + "label": "deny()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxOutboundPolicy.ts", + "source_location": "L189", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_deny", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "deny()" + }, + { + "label": "assertSandboxDataEgressAllowed()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxOutboundPolicy.ts", + "source_location": "L209", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_assertsandboxdataegressallowed", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "assertsandboxdataegressallowed()" + }, + { + "label": "deriveOutboundCapsuleType()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxOutboundPolicy.ts", + "source_location": "L232", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_deriveoutboundcapsuletype", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "deriveoutboundcapsuletype()" + }, + { + "label": "isEffectiveSandboxNode()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxOutboundPolicy.ts", + "source_location": "L253", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_iseffectivesandboxnode", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "iseffectivesandboxnode()" + }, + { + "label": "resolveEffectiveSandboxNode()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxOutboundPolicy.ts", + "source_location": "L268", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_resolveeffectivesandboxnode", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "resolveeffectivesandboxnode()" + }, + { + "label": "sandboxProcessBridge.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxProcessBridge.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_sandboxprocessbridge", + "community": 137, + "community_name": "Sandbox", + "norm_label": "sandboxprocessbridge.ts" + }, + { + "label": "moduleDir", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxProcessBridge.ts", + "source_location": "L18", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_sandboxprocessbridge_moduledir", + "community": 137, + "community_name": "Sandbox", + "norm_label": "moduledir" + }, + { + "label": "workerPath", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxProcessBridge.ts", + "source_location": "L21", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_sandboxprocessbridge_workerpath", + "community": 137, + "community_name": "Sandbox", + "norm_label": "workerpath" + }, + { + "label": "setWorkerPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxProcessBridge.ts", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_sandboxprocessbridge_setworkerpath", + "community": 137, + "community_name": "Sandbox", + "norm_label": "setworkerpath()" + }, + { + "label": "ensureWorker()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxProcessBridge.ts", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_sandboxprocessbridge_ensureworker", + "community": 137, + "community_name": "Sandbox", + "norm_label": "ensureworker()" + }, + { + "label": "shutdownWorker()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxProcessBridge.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_sandboxprocessbridge_shutdownworker", + "community": 137, + "community_name": "Sandbox", + "norm_label": "shutdownworker()" + }, + { + "label": "processTaskViaWorker()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxProcessBridge.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_sandboxprocessbridge_processtaskviaworker", + "community": 137, + "community_name": "Sandbox", + "norm_label": "processtaskviaworker()" + }, + { + "label": "crashResult()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxProcessBridge.ts", + "source_location": "L103", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_sandboxprocessbridge_crashresult", + "community": 137, + "community_name": "Sandbox", + "norm_label": "crashresult()" + }, + { + "label": "sandboxServiceStub.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxServiceStub.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_sandboxservicestub", + "community": 137, + "community_name": "Sandbox", + "norm_label": "sandboxservicestub.ts" + }, + { + "label": "processTask()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxServiceStub.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_sandboxservicestub_processtask", + "community": 137, + "community_name": "Sandbox", + "norm_label": "processtask()" + }, + { + "label": "sandboxWorker.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxWorker.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_sandboxworker", + "community": 137, + "community_name": "Sandbox", + "norm_label": "sandboxworker.ts" + }, + { + "label": "processTaskInWorker()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxWorker.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_sandboxworker_processtaskinworker", + "community": 137, + "community_name": "Sandbox", + "norm_label": "processtaskinworker()" + }, + { + "label": "sandbox/types.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/types.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_types", + "community": 137, + "community_name": "Sandbox", + "norm_label": "sandbox/types.ts" + }, + { + "label": "SandboxTask", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/types.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_types_sandboxtask", + "community": 137, + "community_name": "Sandbox", + "norm_label": "sandboxtask" + }, + { + "label": "SandboxTaskReason", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/types.ts", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_types_sandboxtaskreason", + "community": 137, + "community_name": "Sandbox", + "norm_label": "sandboxtaskreason" + }, + { + "label": "SandboxConstraints", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/types.ts", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_types_sandboxconstraints", + "community": 137, + "community_name": "Sandbox", + "norm_label": "sandboxconstraints" + }, + { + "label": "SandboxResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/types.ts", + "source_location": "L29", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_types_sandboxresult", + "community": 137, + "community_name": "Sandbox", + "norm_label": "sandboxresult" + }, + { + "label": "SandboxFinding", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/types.ts", + "source_location": "L37", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_types_sandboxfinding", + "community": 137, + "community_name": "Sandbox", + "norm_label": "sandboxfinding" + }, + { + "label": "SANDBOX_CONSTANTS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sandbox/types.ts", + "source_location": "L43", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sandbox_types_sandbox_constants", + "community": 137, + "community_name": "Sandbox", + "norm_label": "sandbox_constants" + }, + { + "label": "b73AttachmentHashVerification.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/b73AttachmentHashVerification.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_tests_b73attachmenthashverification_test", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "b73attachmenthashverification.test.ts" + }, + { + "label": "_req", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/b73AttachmentHashVerification.test.ts", + "source_location": "L44", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_tests_b73attachmenthashverification_test_req", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "_req" + }, + { + "label": "TEST_KEY", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/b73AttachmentHashVerification.test.ts", + "source_location": "L71", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_tests_b73attachmenthashverification_test_test_key", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "test_key" + }, + { + "label": "makeDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/b73AttachmentHashVerification.test.ts", + "source_location": "L74", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_tests_b73attachmenthashverification_test_makedb", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "makedb()" + }, + { + "label": "Db", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/b73AttachmentHashVerification.test.ts", + "source_location": "L96", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_tests_b73attachmenthashverification_test_db", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "db" + }, + { + "label": "buildSeal()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/b73AttachmentHashVerification.test.ts", + "source_location": "L102", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_tests_b73attachmenthashverification_test_buildseal", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "buildseal()" + }, + { + "label": "insertSealedMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/b73AttachmentHashVerification.test.ts", + "source_location": "L112", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_tests_b73attachmenthashverification_test_insertsealedmessage", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "insertsealedmessage()" + }, + { + "label": "insertAttachment()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/b73AttachmentHashVerification.test.ts", + "source_location": "L131", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_tests_b73attachmenthashverification_test_insertattachment", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "insertattachment()" + }, + { + "label": "readMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/b73AttachmentHashVerification.test.ts", + "source_location": "L146", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_tests_b73attachmenthashverification_test_readmessage", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "readmessage()" + }, + { + "label": "sealedQueryDualProvider.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/sealedQueryDualProvider.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_tests_sealedquerydualprovider_test", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "sealedquerydualprovider.test.ts" + }, + { + "label": "OUTER_KEY", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/sealedQueryDualProvider.test.ts", + "source_location": "L23", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_tests_sealedquerydualprovider_test_outer_key", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "outer_key" + }, + { + "label": "bindOuterOnly()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/sealedQueryDualProvider.test.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_tests_sealedquerydualprovider_test_bindouteronly", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "bindouteronly()" + }, + { + "label": "bindInnerOnly()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/sealedQueryDualProvider.test.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_tests_sealedquerydualprovider_test_bindinneronly", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "bindinneronly()" + }, + { + "label": "structural-property.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/structural-property.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_tests_structural_property_test", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "structural-property.test.ts" + }, + { + "label": "_req", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/structural-property.test.ts", + "source_location": "L42", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_tests_structural_property_test_req", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "_req" + }, + { + "label": "Database", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/structural-property.test.ts", + "source_location": "L52", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_tests_structural_property_test_database", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "database" + }, + { + "label": "Statement", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/structural-property.test.ts", + "source_location": "L53", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_tests_structural_property_test_statement", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "statement" + }, + { + "label": "TEST_KEY", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/structural-property.test.ts", + "source_location": "L91", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_tests_structural_property_test_test_key", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "test_key" + }, + { + "label": "TEST_KEY_2", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/structural-property.test.ts", + "source_location": "L92", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_tests_structural_property_test_test_key_2", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "test_key_2" + }, + { + "label": "makeTestSealParams()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/structural-property.test.ts", + "source_location": "L94", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_tests_structural_property_test_maketestsealparams", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "maketestsealparams()" + }, + { + "label": "mockStatement()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/structural-property.test.ts", + "source_location": "L114", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_tests_structural_property_test_mockstatement", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "mockstatement()" + }, + { + "label": "mockDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/structural-property.test.ts", + "source_location": "L127", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_tests_structural_property_test_mockdb", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "mockdb()" + }, + { + "label": "makeInMemoryDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/structural-property.test.ts", + "source_location": "L135", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_tests_structural_property_test_makeinmemorydb", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "makeinmemorydb()" + }, + { + "label": "sealed-storage/index.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_index", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "sealed-storage/index.ts" + }, + { + "label": "SEALED_STORAGE_MODE", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L30", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_index_sealed_storage_mode", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "sealed_storage_mode" + }, + { + "label": "SealKeyProvider", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L41", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_index_sealkeyprovider", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "sealkeyprovider" + }, + { + "label": "KeySource", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L52", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_index_keysource", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "keysource" + }, + { + "label": "SealProviderRegistry", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L54", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_index_sealproviderregistry", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "sealproviderregistry" + }, + { + "label": "_providers", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L59", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_index_providers", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "_providers" + }, + { + "label": "SealKeyNotBoundError", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L69", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_index_sealkeynotbounderror", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "sealkeynotbounderror" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L71", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_index_sealkeynotbounderror_constructor", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": ".constructor()" + }, + { + "label": "bindKeyProvider()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L87", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_index_bindkeyprovider", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "bindkeyprovider()" + }, + { + "label": "unbindKeyProvider()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L97", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_index_unbindkeyprovider", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "unbindkeyprovider()" + }, + { + "label": "isKeyProviderBound()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L102", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_index_iskeyproviderbound", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "iskeyproviderbound()" + }, + { + "label": "isKeyProviderUsable()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L107", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_index_iskeyproviderusable", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "iskeyproviderusable()" + }, + { + "label": "getKey()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L118", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_index_getkey", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "getkey()" + }, + { + "label": "sealKeyCopy()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L125", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_index_sealkeycopy", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "sealkeycopy()" + }, + { + "label": "SealVerificationError", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L135", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_index_sealverificationerror", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "sealverificationerror" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L136", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_index_sealverificationerror_constructor", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": ".constructor()" + }, + { + "label": "TamperReason", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L146", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_index_tamperreason", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "tamperreason" + }, + { + "label": "TamperingEvent", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L156", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_index_tamperingevent", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "tamperingevent" + }, + { + "label": "_tamperingEvents", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L163", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_index_tamperingevents", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "_tamperingevents" + }, + { + "label": "getTamperingEvents()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L165", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_index_gettamperingevents", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "gettamperingevents()" + }, + { + "label": "clearTamperingEvents()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L169", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_index_cleartamperingevents", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "cleartamperingevents()" + }, + { + "label": "recordTamper()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L173", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_index_recordtamper", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "recordtamper()" + }, + { + "label": "enforceOrWarn()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L197", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_index_enforceorwarn", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "enforceorwarn()" + }, + { + "label": "verifyHmacWithProvider()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L225", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_index_verifyhmacwithprovider", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "verifyhmacwithprovider()" + }, + { + "label": "SealBindParams", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L270", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_index_sealbindparams", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "sealbindparams" + }, + { + "label": "SealedRunResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L277", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedrunresult", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "sealedrunresult" + }, + { + "label": "SealedStatement", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L282", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedstatement", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "sealedstatement" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L287", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedstatement_constructor", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": ".constructor()" + }, + { + "label": ".run()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L308", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedstatement_run", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": ".run()" + }, + { + "label": "._exec()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L379", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedstatement_exec", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "._exec()" + }, + { + "label": "computeSeal()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L400", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_index_computeseal", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "computeseal()" + }, + { + "label": "prepareSealedInsert()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L440", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_index_preparesealedinsert", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "preparesealedinsert()" + }, + { + "label": "prepareSealedUpdate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L445", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_index_preparesealedupdate", + "community": 343, + "community_name": "Email Sealed Storage", + "norm_label": "preparesealedupdate()" + }, + { + "label": "ChildAttachmentDescriptor", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L479", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_index_childattachmentdescriptor", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "childattachmentdescriptor" + }, + { + "label": "runSealedTransaction()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L513", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_index_runsealedtransaction", + "community": 44, + "community_name": "Email Quarantineblobstorage Sealed Storage", + "norm_label": "runsealedtransaction()" + }, + { + "label": "SealedRow", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L536", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedrow", + "community": 343, + "community_name": "Email Sealed Storage", + "norm_label": "sealedrow" + }, + { + "label": "rowKeySource()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L554", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_index_rowkeysource", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "rowkeysource()" + }, + { + "label": "sealedQuery()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L578", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedquery", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "sealedquery()" + }, + { + "label": "verifySealAndContent()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L802", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_index_verifysealandcontent", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "verifysealandcontent()" + }, + { + "label": "OPERATIONAL_COLUMNS_ALLOWLIST", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L853", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_index_operational_columns_allowlist", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "operational_columns_allowlist" + }, + { + "label": "OperationalColumn", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L909", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_index_operationalcolumn", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "operationalcolumn" + }, + { + "label": "extractColumnsFromSetClause()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L925", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_index_extractcolumnsfromsetclause", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "extractcolumnsfromsetclause()" + }, + { + "label": "splitAtTopLevelCommas()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L959", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_index_splitattoplevelcommas", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "splitattoplevelcommas()" + }, + { + "label": "SealedOperationalStatement", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L989", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedoperationalstatement", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "sealedoperationalstatement" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L993", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedoperationalstatement_constructor", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": ".constructor()" + }, + { + "label": ".columns()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L998", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedoperationalstatement_columns", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": ".columns()" + }, + { + "label": ".run()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L1002", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedoperationalstatement_run", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": ".run()" + }, + { + "label": "prepareSealedOperationalUpdate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L1029", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_index_preparesealedoperationalupdate", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "preparesealedoperationalupdate()" + }, + { + "label": "ledgerSealKey.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/ledgerSealKey.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_ledgersealkey", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "ledgersealkey.ts" + }, + { + "label": "deriveLedgerSealKey()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/ledgerSealKey.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_sealed_storage_ledgersealkey_deriveledgersealkey", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "deriveledgersealkey()" + }, + { + "label": "ed25519WeakKey.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/security/__tests__/ed25519WeakKey.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_security_tests_ed25519weakkey_test", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "ed25519weakkey.test.ts" + }, + { + "label": "ZERO32", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/security/__tests__/ed25519WeakKey.test.ts", + "source_location": "L21", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_security_tests_ed25519weakkey_test_zero32", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "zero32" + }, + { + "label": "NEUTRAL", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/security/__tests__/ed25519WeakKey.test.ts", + "source_location": "L22", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_security_tests_ed25519weakkey_test_neutral", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "neutral" + }, + { + "label": "SMALL_ORDER", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/security/__tests__/ed25519WeakKey.test.ts", + "source_location": "L27", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_security_tests_ed25519weakkey_test_small_order", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "small_order" + }, + { + "label": "cryptoFingerprint.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/security/cryptoFingerprint.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_security_cryptofingerprint", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "cryptofingerprint.ts" + }, + { + "label": "safeFingerprint()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/security/cryptoFingerprint.ts", + "source_location": "L4", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_security_cryptofingerprint_safefingerprint", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "safefingerprint()" + }, + { + "label": "ed25519WeakKey.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/security/ed25519WeakKey.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_security_ed25519weakkey", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "ed25519weakkey.ts" + }, + { + "label": "PointInstance", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/security/ed25519WeakKey.ts", + "source_location": "L30", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_security_ed25519weakkey_pointinstance", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "pointinstance" + }, + { + "label": ".isSmallOrder()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/security/ed25519WeakKey.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_security_ed25519weakkey_pointinstance_issmallorder", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": ".issmallorder()" + }, + { + "label": "PointCtor", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/security/ed25519WeakKey.ts", + "source_location": "L33", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_security_ed25519weakkey_pointctor", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "pointctor" + }, + { + "label": ".fromHex()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/security/ed25519WeakKey.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_security_ed25519weakkey_pointctor_fromhex", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": ".fromhex()" + }, + { + "label": "isWeakEd25519PublicKey()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/security/ed25519WeakKey.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_security_ed25519weakkey_isweaked25519publickey", + "community": 24, + "community_name": "Hypervisor Depackage Worker", + "norm_label": "isweaked25519publickey()" + }, + { + "label": "secureOperationResult.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/security/secureOperationResult.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_security_secureoperationresult", + "community": 401, + "community_name": "Security", + "norm_label": "secureoperationresult.ts" + }, + { + "label": "SecureOperationReason", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/security/secureOperationResult.ts", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_security_secureoperationresult_secureoperationreason", + "community": 401, + "community_name": "Security", + "norm_label": "secureoperationreason" + }, + { + "label": "SecureOperationState", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/security/secureOperationResult.ts", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_security_secureoperationresult_secureoperationstate", + "community": 401, + "community_name": "Security", + "norm_label": "secureoperationstate" + }, + { + "label": "SecureOperationFailure", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/security/secureOperationResult.ts", + "source_location": "L26", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_security_secureoperationresult_secureoperationfailure", + "community": 401, + "community_name": "Security", + "norm_label": "secureoperationfailure" + }, + { + "label": "SecureOperationSuccess", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/security/secureOperationResult.ts", + "source_location": "L37", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_security_secureoperationresult_secureoperationsuccess", + "community": 401, + "community_name": "Security", + "norm_label": "secureoperationsuccess" + }, + { + "label": "SecureOperationResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/security/secureOperationResult.ts", + "source_location": "L41", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_security_secureoperationresult_secureoperationresult", + "community": 401, + "community_name": "Security", + "norm_label": "secureoperationresult" + }, + { + "label": "secureFailure()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/security/secureOperationResult.ts", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_security_secureoperationresult_securefailure", + "community": 401, + "community_name": "Security", + "norm_label": "securefailure()" + }, + { + "label": "sealedServiceRpc.deviceKeyOpen.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/__tests__/sealedServiceRpc.deviceKeyOpen.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_servicerpc_tests_sealedservicerpc_devicekeyopen_test", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "sealedservicerpc.devicekeyopen.test.ts" + }, + { + "label": "getDeviceX25519KeyPair", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/__tests__/sealedServiceRpc.deviceKeyOpen.test.ts", + "source_location": "L18", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_servicerpc_tests_sealedservicerpc_devicekeyopen_test_getdevicex25519keypair", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "getdevicex25519keypair" + }, + { + "label": "makeX25519Pair()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/__tests__/sealedServiceRpc.deviceKeyOpen.test.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_servicerpc_tests_sealedservicerpc_devicekeyopen_test_makex25519pair", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "makex25519pair()" + }, + { + "label": "hostKeys", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/__tests__/sealedServiceRpc.deviceKeyOpen.test.ts", + "source_location": "L34", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_servicerpc_tests_sealedservicerpc_devicekeyopen_test_hostkeys", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "hostkeys" + }, + { + "label": "sandboxKeys", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/__tests__/sealedServiceRpc.deviceKeyOpen.test.ts", + "source_location": "L35", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_servicerpc_tests_sealedservicerpc_devicekeyopen_test_sandboxkeys", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "sandboxkeys" + }, + { + "label": "recordWithPriv()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/__tests__/sealedServiceRpc.deviceKeyOpen.test.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_servicerpc_tests_sealedservicerpc_devicekeyopen_test_recordwithpriv", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "recordwithpriv()" + }, + { + "label": "recordNoPriv()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/__tests__/sealedServiceRpc.deviceKeyOpen.test.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_servicerpc_tests_sealedservicerpc_devicekeyopen_test_recordnopriv", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "recordnopriv()" + }, + { + "label": "sealedServiceRpc.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/__tests__/sealedServiceRpc.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_servicerpc_tests_sealedservicerpc_test", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "sealedservicerpc.test.ts" + }, + { + "label": "makeX25519Pair()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/__tests__/sealedServiceRpc.test.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_servicerpc_tests_sealedservicerpc_test_makex25519pair", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "makex25519pair()" + }, + { + "label": "makeInternalRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/__tests__/sealedServiceRpc.test.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_servicerpc_tests_sealedservicerpc_test_makeinternalrecord", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "makeinternalrecord()" + }, + { + "label": "sealedServiceRpc.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "sealedservicerpc.ts" + }, + { + "label": "SEALED_SERVICE_RPC_ENVELOPE_TYPE", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L19", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_sealed_service_rpc_envelope_type", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "sealed_service_rpc_envelope_type" + }, + { + "label": "SEALED_SERVICE_RPC_SCHEMA_VERSION", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L21", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_sealed_service_rpc_schema_version", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "sealed_service_rpc_schema_version" + }, + { + "label": "SealedServiceRpcEnvelope", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L29", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_sealedservicerpcenvelope", + "community": 113, + "community_name": "Handshake Servicerpc", + "norm_label": "sealedservicerpcenvelope" + }, + { + "label": "SealServiceRpcInput", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L42", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_sealservicerpcinput", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "sealservicerpcinput" + }, + { + "label": "SealServiceRpcResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L49", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_sealservicerpcresult", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "sealservicerpcresult" + }, + { + "label": "OpenServiceRpcResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L53", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_openservicerpcresult", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "openservicerpcresult" + }, + { + "label": "normalizePlaintextJson()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L57", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_normalizeplaintextjson", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "normalizeplaintextjson()" + }, + { + "label": "trimNonEmpty()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L62", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_trimnonempty", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "trimnonempty()" + }, + { + "label": "decodeX25519PubB64()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L66", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_decodex25519pubb64", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "decodex25519pubb64()" + }, + { + "label": "decodeX25519PrivB64()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L75", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_decodex25519privb64", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "decodex25519privb64()" + }, + { + "label": "buildSealedServiceRpcAad()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L85", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_buildsealedservicerpcaad", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "buildsealedservicerpcaad()" + }, + { + "label": "resolvePeerX25519PubForSeal()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L96", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_resolvepeerx25519pubforseal", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "resolvepeerx25519pubforseal()" + }, + { + "label": "resolveLocalX25519PrivForOpen()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L116", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_resolvelocalx25519privforopen", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "resolvelocalx25519privforopen()" + }, + { + "label": "validateSealInput()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L143", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_validatesealinput", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "validatesealinput()" + }, + { + "label": "validateEnvelopeShape()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L165", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_validateenvelopeshape", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "validateenvelopeshape()" + }, + { + "label": "sealServiceRpcPayload()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L202", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_sealservicerpcpayload", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "sealservicerpcpayload()" + }, + { + "label": "openServiceRpcPayload()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L273", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_openservicerpcpayload", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "openservicerpcpayload()" + }, + { + "label": "openServiceRpcPayloadResolvingLocalKey()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L361", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_openservicerpcpayloadresolvinglocalkey", + "community": 2, + "community_name": "Host AI Relay Capsules", + "norm_label": "openservicerpcpayloadresolvinglocalkey()" + }, + { + "label": "keyFingerprint.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/utils/keyFingerprint.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_utils_keyfingerprint", + "community": 545, + "community_name": "Keyfingerprint", + "norm_label": "keyfingerprint.ts" + }, + { + "label": "fingerprint()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/utils/keyFingerprint.ts", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_utils_keyfingerprint_fingerprint", + "community": 545, + "community_name": "Keyfingerprint", + "norm_label": "fingerprint()" + }, + { + "label": "lifecycle.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validator-process/__tests__/lifecycle.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validator_process_tests_lifecycle_test", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "lifecycle.test.ts" + }, + { + "label": "_req", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validator-process/__tests__/lifecycle.test.ts", + "source_location": "L39", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validator_process_tests_lifecycle_test_req", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "_req" + }, + { + "label": "Database", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validator-process/__tests__/lifecycle.test.ts", + "source_location": "L49", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validator_process_tests_lifecycle_test_database", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "database" + }, + { + "label": "makeInMemoryDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validator-process/__tests__/lifecycle.test.ts", + "source_location": "L86", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validator_process_tests_lifecycle_test_makeinmemorydb", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "makeinmemorydb()" + }, + { + "label": "validator-process/index.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validator-process/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validator_process_index", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "validator-process/index.ts" + }, + { + "label": "computeSeal()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validator-process/index.ts", + "source_location": "L64", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validator_process_index_computeseal", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "computeseal()" + }, + { + "label": "dispatchValidation()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validator-process/index.ts", + "source_location": "L104", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validator_process_index_dispatchvalidation", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "dispatchvalidation()" + }, + { + "label": "computeSealForTest()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validator-process/index.ts", + "source_location": "L187", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validator_process_index_computesealfortest", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "computesealfortest()" + }, + { + "label": "verifySeal()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validator-process/index.ts", + "source_location": "L199", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validator_process_index_verifyseal", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "verifyseal()" + }, + { + "label": "extractContentSha256()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validator-process/index.ts", + "source_location": "L211", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validator_process_index_extractcontentsha256", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "extractcontentsha256()" + }, + { + "label": "sendAck()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validator-process/index.ts", + "source_location": "L224", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validator_process_index_sendack", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "sendack()" + }, + { + "label": "handleControlMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validator-process/index.ts", + "source_location": "L228", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validator_process_index_handlecontrolmessage", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "handlecontrolmessage()" + }, + { + "label": "handleValidateRequest()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validator-process/index.ts", + "source_location": "L258", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validator_process_index_handlevalidaterequest", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "handlevalidaterequest()" + }, + { + "label": "orchestrator.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validator_process_orchestrator", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "orchestrator.ts" + }, + { + "label": "moduleDir", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L51", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validator_process_orchestrator_moduledir", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "moduledir" + }, + { + "label": "workerPath", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L56", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validator_process_orchestrator_workerpath", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "workerpath" + }, + { + "label": "setValidatorWorkerPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L59", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validator_process_orchestrator_setvalidatorworkerpath", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "setvalidatorworkerpath()" + }, + { + "label": "getValidatorWorkerPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L64", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validator_process_orchestrator_getvalidatorworkerpath", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "getvalidatorworkerpath()" + }, + { + "label": "ValidationServiceUnavailableReason", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L72", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validationserviceunavailablereason", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "validationserviceunavailablereason" + }, + { + "label": "onValidationServiceUnavailable()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L81", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validator_process_orchestrator_onvalidationserviceunavailable", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "onvalidationserviceunavailable()" + }, + { + "label": "surfaceUnavailable()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L87", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validator_process_orchestrator_surfaceunavailable", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "surfaceunavailable()" + }, + { + "label": "OrchestratorLiveness", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L96", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validator_process_orchestrator_orchestratorliveness", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "orchestratorliveness" + }, + { + "label": "ValidatorOrchestrator", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L98", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "validatororchestrator" + }, + { + "label": ".getLiveness()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L118", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator_getliveness", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": ".getliveness()" + }, + { + "label": ".start()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L129", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator_start", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": ".start()" + }, + { + "label": ".stop()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L215", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator_stop", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": ".stop()" + }, + { + "label": ".validate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L266", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator_validate", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": ".validate()" + }, + { + "label": ".ping()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L297", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator_ping", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": ".ping()" + }, + { + "label": "._handleSubprocessMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L327", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator_handlesubprocessmessage", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "._handlesubprocessmessage()" + }, + { + "label": "._rejectAllPending()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L369", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator_rejectallpending", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "._rejectallpending()" + }, + { + "label": "._startHealthcheck()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L381", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator_starthealthcheck", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "._starthealthcheck()" + }, + { + "label": "._stopHealthcheck()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L402", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator_stophealthcheck", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "._stophealthcheck()" + }, + { + "label": "test-session.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validator-process/test-session.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validator_process_test_session", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "test-session.ts" + }, + { + "label": "_require", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validator-process/test-session.ts", + "source_location": "L32", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validator_process_test_session_require", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "_require" + }, + { + "label": "__filename", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validator-process/test-session.ts", + "source_location": "L33", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validator_process_test_session_filename", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "__filename" + }, + { + "label": "__dirname", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validator-process/test-session.ts", + "source_location": "L34", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validator_process_test_session_dirname", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "__dirname" + }, + { + "label": "PRODUCTION_VAULT_PATH_MARKERS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validator-process/test-session.ts", + "source_location": "L45", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validator_process_test_session_production_vault_path_markers", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "production_vault_path_markers" + }, + { + "label": "assertNotProductionVaultPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validator-process/test-session.ts", + "source_location": "L57", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validator_process_test_session_assertnotproductionvaultpath", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "assertnotproductionvaultpath()" + }, + { + "label": "TEST_VAULT_MASTER_KEY", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validator-process/test-session.ts", + "source_location": "L78", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validator_process_test_session_test_vault_master_key", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "test_vault_master_key" + }, + { + "label": "deriveTestSealKey()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validator-process/test-session.ts", + "source_location": "L91", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validator_process_test_session_derivetestsealkey", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "derivetestsealkey()" + }, + { + "label": "SUBPROCESS_ENTRY_TS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validator-process/test-session.ts", + "source_location": "L106", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validator_process_test_session_subprocess_entry_ts", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "subprocess_entry_ts" + }, + { + "label": "resolveTsxLoader()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validator-process/test-session.ts", + "source_location": "L116", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validator_process_test_session_resolvetsxloader", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "resolvetsxloader()" + }, + { + "label": "TestVaultServiceMock", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validator-process/test-session.ts", + "source_location": "L133", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validator_process_test_session_testvaultservicemock", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": "testvaultservicemock" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validator-process/test-session.ts", + "source_location": "L136", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validator_process_test_session_testvaultservicemock_constructor", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": ".constructor()" + }, + { + "label": ".deriveApplicationKey()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validator-process/test-session.ts", + "source_location": "L140", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validator_process_test_session_testvaultservicemock_deriveapplicationkey", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": ".deriveapplicationkey()" + }, + { + "label": ".testSealKey()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validator-process/test-session.ts", + "source_location": "L146", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validator_process_test_session_testvaultservicemock_testsealkey", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": ".testsealkey()" + }, + { + "label": ".destroy()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validator-process/test-session.ts", + "source_location": "L150", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validator_process_test_session_testvaultservicemock_destroy", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": ".destroy()" + }, + { + "label": "TestValidatorHandle", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validator-process/test-session.ts", + "source_location": "L159", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validator_process_test_session_testvalidatorhandle", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "testvalidatorhandle" + }, + { + "label": ".stop()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validator-process/test-session.ts", + "source_location": "L169", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validator_process_test_session_testvalidatorhandle_stop", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": ".stop()" + }, + { + "label": "startTestValidator()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validator-process/test-session.ts", + "source_location": "L186", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validator_process_test_session_starttestvalidator", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "starttestvalidator()" + }, + { + "label": "makeTestValidateRequest()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validator-process/test-session.ts", + "source_location": "L226", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validator_process_test_session_maketestvalidaterequest", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "maketestvalidaterequest()" + }, + { + "label": "validatorReadiness.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validatorReadiness.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validatorreadiness", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "validatorreadiness.ts" + }, + { + "label": "ValidatorReadyCode", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validatorReadiness.ts", + "source_location": "L70", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validatorreadiness_validatorreadycode", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "validatorreadycode" + }, + { + "label": "ValidatorReadyResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validatorReadiness.ts", + "source_location": "L76", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validatorreadiness_validatorreadyresult", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "validatorreadyresult" + }, + { + "label": "InnerVaultProbe", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validatorReadiness.ts", + "source_location": "L80", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validatorreadiness_innervaultprobe", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "innervaultprobe" + }, + { + "label": "delay()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validatorReadiness.ts", + "source_location": "L89", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validatorreadiness_delay", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "delay()" + }, + { + "label": "probeInnerVaultState()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validatorReadiness.ts", + "source_location": "L102", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validatorreadiness_probeinnervaultstate", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "probeinnervaultstate()" + }, + { + "label": "ensureValidatorAndSealedStorageReady()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/validatorReadiness.ts", + "source_location": "L174", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_validatorreadiness_ensurevalidatorandsealedstorageready", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "ensurevalidatorandsealedstorageready()" + }, + { + "label": "atomicWrite.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/atomicWrite.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_atomicwrite_test", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "atomicwrite.test.ts" + }, + { + "label": "mWriteFile", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/atomicWrite.test.ts", + "source_location": "L31", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_atomicwrite_test_mwritefile", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "mwritefile" + }, + { + "label": "mOpenSync", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/atomicWrite.test.ts", + "source_location": "L32", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_atomicwrite_test_mopensync", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "mopensync" + }, + { + "label": "mFsync", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/atomicWrite.test.ts", + "source_location": "L33", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_atomicwrite_test_mfsync", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "mfsync" + }, + { + "label": "mClose", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/atomicWrite.test.ts", + "source_location": "L34", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_atomicwrite_test_mclose", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "mclose" + }, + { + "label": "mRename", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/atomicWrite.test.ts", + "source_location": "L35", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_atomicwrite_test_mrename", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "mrename" + }, + { + "label": "atomicWrite.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/atomicWrite.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_atomicwrite", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "atomicwrite.ts" + }, + { + "label": "atomicWriteFileSync()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/atomicWrite.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_atomicwrite_atomicwritefilesync", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "atomicwritefilesync()" + }, + { + "label": "cache.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/cache.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_cache", + "community": 86, + "community_name": "Vault #86", + "norm_label": "cache.ts" + }, + { + "label": "DecryptCacheOptions", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/cache.ts", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_cache_decryptcacheoptions", + "community": 86, + "community_name": "Vault #86", + "norm_label": "decryptcacheoptions" + }, + { + "label": "CacheEntry", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/cache.ts", + "source_location": "L27", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_cache_cacheentry", + "community": 86, + "community_name": "Vault #86", + "norm_label": "cacheentry" + }, + { + "label": "DecryptCache", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/cache.ts", + "source_location": "L33", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_cache_decryptcache", + "community": 86, + "community_name": "Vault #86", + "norm_label": "decryptcache" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/cache.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_cache_decryptcache_constructor", + "community": 86, + "community_name": "Vault #86", + "norm_label": ".constructor()" + }, + { + "label": ".get()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/cache.ts", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_cache_decryptcache_get", + "community": 86, + "community_name": "Vault #86", + "norm_label": ".get()" + }, + { + "label": ".set()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/cache.ts", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_cache_decryptcache_set", + "community": 86, + "community_name": "Vault #86", + "norm_label": ".set()" + }, + { + "label": ".evict()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/cache.ts", + "source_location": "L76", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_cache_decryptcache_evict", + "community": 86, + "community_name": "Vault #86", + "norm_label": ".evict()" + }, + { + "label": ".flush()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/cache.ts", + "source_location": "L87", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_cache_decryptcache_flush", + "community": 86, + "community_name": "Vault #86", + "norm_label": ".flush()" + }, + { + "label": ".size()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/cache.ts", + "source_location": "L94", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_cache_decryptcache_size", + "community": 86, + "community_name": "Vault #86", + "norm_label": ".size()" + }, + { + "label": "main/vault/capabilities.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/capabilities.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_capabilities", + "community": 86, + "community_name": "Vault #86", + "norm_label": "main/vault/capabilities.ts" + }, + { + "label": "capabilityBroker.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/capabilityBroker.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_capabilitybroker_test", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "capabilitybroker.test.ts" + }, + { + "label": "state", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/capabilityBroker.test.ts", + "source_location": "L21", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_capabilitybroker_test_state", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "state" + }, + { + "label": "makeReport()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/capabilityBroker.test.ts", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_capabilitybroker_test_makereport", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "makereport()" + }, + { + "label": "allReady()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/capabilityBroker.test.ts", + "source_location": "L68", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_capabilitybroker_test_allready", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "allready()" + }, + { + "label": "capabilityBroker.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/capabilityBroker.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_capabilitybroker", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "capabilitybroker.ts" + }, + { + "label": "OperationKind", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/capabilityBroker.ts", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_capabilitybroker_operationkind", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "operationkind" + }, + { + "label": "ReasonCode", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/capabilityBroker.ts", + "source_location": "L30", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_capabilitybroker_reasoncode", + "community": 51, + "community_name": "Email BEAP Depackagingmicrovm", + "norm_label": "reasoncode" + }, + { + "label": "RetryStrategy", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/capabilityBroker.ts", + "source_location": "L38", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_capabilitybroker_retrystrategy", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "retrystrategy" + }, + { + "label": "CapabilityResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/capabilityBroker.ts", + "source_location": "L43", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_capabilitybroker_capabilityresult", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "capabilityresult" + }, + { + "label": "OK", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/capabilityBroker.ts", + "source_location": "L50", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_capabilitybroker_ok", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "ok" + }, + { + "label": "canPerform()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/capabilityBroker.ts", + "source_location": "L77", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_capabilitybroker_canperform", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "canperform()" + }, + { + "label": "capabilityGate.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/capabilityGate.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_capabilitygate_test", + "community": 86, + "community_name": "Vault #86", + "norm_label": "capabilitygate.test.ts" + }, + { + "label": "mockedOpenRecord", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/capabilityGate.test.ts", + "source_location": "L27", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_capabilitygate_test_mockedopenrecord", + "community": 86, + "community_name": "Vault #86", + "norm_label": "mockedopenrecord" + }, + { + "label": "FakeRow", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/capabilityGate.test.ts", + "source_location": "L33", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_capabilitygate_test_fakerow", + "community": 86, + "community_name": "Vault #86", + "norm_label": "fakerow" + }, + { + "label": "makeKEK()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/capabilityGate.test.ts", + "source_location": "L42", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_capabilitygate_test_makekek", + "community": 86, + "community_name": "Vault #86", + "norm_label": "makekek()" + }, + { + "label": "fakeGetItem()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/capabilityGate.test.ts", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_capabilitygate_test_fakegetitem", + "community": 86, + "community_name": "Vault #86", + "norm_label": "fakegetitem()" + }, + { + "label": "fakeGetItemCategory()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/capabilityGate.test.ts", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_capabilitygate_test_fakegetitemcategory", + "community": 86, + "community_name": "Vault #86", + "norm_label": "fakegetitemcategory()" + }, + { + "label": "challengeStore.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/challengeStore.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_challengestore_test", + "community": 346, + "community_name": "Vault #346", + "norm_label": "challengestore.test.ts" + }, + { + "label": "challengeStore.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/challengeStore.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_challengestore", + "community": 346, + "community_name": "Vault #346", + "norm_label": "challengestore.ts" + }, + { + "label": "ChallengeStoreOptions", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/challengeStore.ts", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_challengestore_challengestoreoptions", + "community": 346, + "community_name": "Vault #346", + "norm_label": "challengestoreoptions" + }, + { + "label": "ChallengeStore", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/challengeStore.ts", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_challengestore_challengestore", + "community": 346, + "community_name": "Vault #346", + "norm_label": "challengestore" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/challengeStore.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_challengestore_challengestore_constructor", + "community": 346, + "community_name": "Vault #346", + "norm_label": ".constructor()" + }, + { + "label": ".issue()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/challengeStore.ts", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_challengestore_challengestore_issue", + "community": 346, + "community_name": "Vault #346", + "norm_label": ".issue()" + }, + { + "label": ".consume()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/challengeStore.ts", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_challengestore_challengestore_consume", + "community": 346, + "community_name": "Vault #346", + "norm_label": ".consume()" + }, + { + "label": ".has()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/challengeStore.ts", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_challengestore_challengestore_has", + "community": 346, + "community_name": "Vault #346", + "norm_label": ".has()" + }, + { + "label": ".size()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/challengeStore.ts", + "source_location": "L67", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_challengestore_challengestore_size", + "community": 346, + "community_name": "Vault #346", + "norm_label": ".size()" + }, + { + "label": ".clear()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/challengeStore.ts", + "source_location": "L73", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_challengestore_challengestore_clear", + "community": 346, + "community_name": "Vault #346", + "norm_label": ".clear()" + }, + { + "label": ".prune()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/challengeStore.ts", + "source_location": "L78", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_challengestore_challengestore_prune", + "community": 346, + "community_name": "Vault #346", + "norm_label": ".prune()" + }, + { + "label": "crypto.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/crypto.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_crypto", + "community": 177, + "community_name": "Vault #177", + "norm_label": "crypto.ts" + }, + { + "label": "require", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/crypto.ts", + "source_location": "L14", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_crypto_require", + "community": 177, + "community_name": "Vault #177", + "norm_label": "require" + }, + { + "label": "scryptAsync", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/crypto.ts", + "source_location": "L18", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_crypto_scryptasync", + "community": 177, + "community_name": "Vault #177", + "norm_label": "scryptasync" + }, + { + "label": "ensureSodiumReady()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/crypto.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_crypto_ensuresodiumready", + "community": 177, + "community_name": "Vault #177", + "norm_label": "ensuresodiumready()" + }, + { + "label": "KDFParams", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/crypto.ts", + "source_location": "L42", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_crypto_kdfparams", + "community": 177, + "community_name": "Vault #177", + "norm_label": "kdfparams" + }, + { + "label": "DEFAULT_KDF_PARAMS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/crypto.ts", + "source_location": "L59", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_crypto_default_kdf_params", + "community": 177, + "community_name": "Vault #177", + "norm_label": "default_kdf_params" + }, + { + "label": "deriveKEK()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/crypto.ts", + "source_location": "L73", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_crypto_derivekek", + "community": 177, + "community_name": "Vault #177", + "norm_label": "derivekek()" + }, + { + "label": "wrapDEK()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/crypto.ts", + "source_location": "L103", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_crypto_wrapdek", + "community": 177, + "community_name": "Vault #177", + "norm_label": "wrapdek()" + }, + { + "label": "unwrapDEK()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/crypto.ts", + "source_location": "L128", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_crypto_unwrapdek", + "community": 177, + "community_name": "Vault #177", + "norm_label": "unwrapdek()" + }, + { + "label": "deriveFieldKey()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/crypto.ts", + "source_location": "L159", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_crypto_derivefieldkey", + "community": 63, + "community_name": "Vault", + "norm_label": "derivefieldkey()" + }, + { + "label": "encryptField()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/crypto.ts", + "source_location": "L172", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_crypto_encryptfield", + "community": 177, + "community_name": "Vault #177", + "norm_label": "encryptfield()" + }, + { + "label": "decryptField()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/crypto.ts", + "source_location": "L203", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_crypto_decryptfield", + "community": 177, + "community_name": "Vault #177", + "norm_label": "decryptfield()" + }, + { + "label": "zeroize()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/crypto.ts", + "source_location": "L232", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_crypto_zeroize", + "community": 177, + "community_name": "Vault #177", + "norm_label": "zeroize()" + }, + { + "label": "generateRandomKey()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/crypto.ts", + "source_location": "L245", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_crypto_generaterandomkey", + "community": 93, + "community_name": "Vault #93", + "norm_label": "generaterandomkey()" + }, + { + "label": "generateSalt()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/crypto.ts", + "source_location": "L252", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_crypto_generatesalt", + "community": 177, + "community_name": "Vault #177", + "norm_label": "generatesalt()" + }, + { + "label": "constantTimeEqual()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/crypto.ts", + "source_location": "L272", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_crypto_constanttimeequal", + "community": 177, + "community_name": "Vault #177", + "norm_label": "constanttimeequal()" + }, + { + "label": "AAD_SCHEMA_VERSION", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/crypto.ts", + "source_location": "L297", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_crypto_aad_schema_version", + "community": 86, + "community_name": "Vault #86", + "norm_label": "aad_schema_version" + }, + { + "label": "buildAAD()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/crypto.ts", + "source_location": "L318", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_crypto_buildaad", + "community": 138, + "community_name": "Vault #138", + "norm_label": "buildaad()" + }, + { + "label": "vault/db.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_db", + "community": 93, + "community_name": "Vault #93", + "norm_label": "vault/db.ts" + }, + { + "label": "require", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L14", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_db_require", + "community": 93, + "community_name": "Vault #93", + "norm_label": "require" + }, + { + "label": "moduleDir", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L16", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_db_moduledir", + "community": 93, + "community_name": "Vault #93", + "norm_label": "moduledir" + }, + { + "label": "loadSQLCipher()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_db_loadsqlcipher", + "community": 93, + "community_name": "Vault #93", + "norm_label": "loadsqlcipher()" + }, + { + "label": "getVaultPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L93", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_db_getvaultpath", + "community": 93, + "community_name": "Vault #93", + "norm_label": "getvaultpath()" + }, + { + "label": "getVaultMetaPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L111", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_db_getvaultmetapath", + "community": 93, + "community_name": "Vault #93", + "norm_label": "getvaultmetapath()" + }, + { + "label": "getVaultRegistryPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L123", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_db_getvaultregistrypath", + "community": 93, + "community_name": "Vault #93", + "norm_label": "getvaultregistrypath()" + }, + { + "label": "ListedVaultEntry", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L129", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_db_listedvaultentry", + "community": 93, + "community_name": "Vault #93", + "norm_label": "listedvaultentry" + }, + { + "label": "ListVaultsAccountResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L141", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_db_listvaultsaccountresult", + "community": 93, + "community_name": "Vault #93", + "norm_label": "listvaultsaccountresult" + }, + { + "label": "readVaultOwnerFromMetaFile()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L153", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_db_readvaultownerfrommetafile", + "community": 93, + "community_name": "Vault #93", + "norm_label": "readvaultownerfrommetafile()" + }, + { + "label": "vaultExists()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L177", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_db_vaultexists", + "community": 93, + "community_name": "Vault #93", + "norm_label": "vaultexists()" + }, + { + "label": "RegistryVault", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L181", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_db_registryvault", + "community": 93, + "community_name": "Vault #93", + "norm_label": "registryvault" + }, + { + "label": "collectAllVaultBaseRows()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L190", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_db_collectallvaultbaserows", + "community": 93, + "community_name": "Vault #93", + "norm_label": "collectallvaultbaserows()" + }, + { + "label": "listVaultsForAccount()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L253", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_db_listvaultsforaccount", + "community": 93, + "community_name": "Vault #93", + "norm_label": "listvaultsforaccount()" + }, + { + "label": "registerVault()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L321", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_db_registervault", + "community": 93, + "community_name": "Vault #93", + "norm_label": "registervault()" + }, + { + "label": "unregisterVault()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L362", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_db_unregistervault", + "community": 93, + "community_name": "Vault #93", + "norm_label": "unregistervault()" + }, + { + "label": "createVaultDB()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L381", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_db_createvaultdb", + "community": 93, + "community_name": "Vault #93", + "norm_label": "createvaultdb()" + }, + { + "label": "openVaultDB()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L436", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_db_openvaultdb", + "community": 93, + "community_name": "Vault #93", + "norm_label": "openvaultdb()" + }, + { + "label": "closeVaultDB()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L512", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_db_closevaultdb", + "community": 93, + "community_name": "Vault #93", + "norm_label": "closevaultdb()" + }, + { + "label": "migrateDocumentTable()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L523", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_db_migratedocumenttable", + "community": 93, + "community_name": "Vault #93", + "norm_label": "migratedocumenttable()" + }, + { + "label": "migrateEnvelopeColumns()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L559", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_db_migrateenvelopecolumns", + "community": 93, + "community_name": "Vault #93", + "norm_label": "migrateenvelopecolumns()" + }, + { + "label": "migrateHsContextProfileTables()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L597", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_db_migratehscontextprofiletables", + "community": 93, + "community_name": "Vault #93", + "norm_label": "migratehscontextprofiletables()" + }, + { + "label": "createSchema()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L787", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_db_createschema", + "community": 93, + "community_name": "Vault #93", + "norm_label": "createschema()" + }, + { + "label": "NOTE: sqlite_master queries return {} instead of [] with current SQLCipher\u2026", + "file_type": "rationale", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L880", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_db_rationale_880", + "community": 93, + "community_name": "Vault #93", + "norm_label": "note: sqlite_master queries return {} instead of [] with current sqlcipher..." + }, + { + "label": "documentService.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_documentservice_test", + "community": 138, + "community_name": "Vault #138", + "norm_label": "documentservice.test.ts" + }, + { + "label": "documentService.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_documentservice", + "community": 138, + "community_name": "Vault #138", + "norm_label": "documentservice.ts" + }, + { + "label": "sanitiseFilename()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.ts", + "source_location": "L42", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_documentservice_sanitisefilename", + "community": 138, + "community_name": "Vault #138", + "norm_label": "sanitisefilename()" + }, + { + "label": "isBlockedExtension()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.ts", + "source_location": "L57", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_documentservice_isblockedextension", + "community": 138, + "community_name": "Vault #138", + "norm_label": "isblockedextension()" + }, + { + "label": "detectMimeType()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.ts", + "source_location": "L67", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_documentservice_detectmimetype", + "community": 138, + "community_name": "Vault #138", + "norm_label": "detectmimetype()" + }, + { + "label": "importDocument()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.ts", + "source_location": "L119", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_documentservice_importdocument", + "community": 138, + "community_name": "Vault #138", + "norm_label": "importdocument()" + }, + { + "label": "getDocument()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.ts", + "source_location": "L208", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_documentservice_getdocument", + "community": 138, + "community_name": "Vault #138", + "norm_label": "getdocument()" + }, + { + "label": "listDocuments()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.ts", + "source_location": "L252", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_documentservice_listdocuments", + "community": 138, + "community_name": "Vault #138", + "norm_label": "listdocuments()" + }, + { + "label": "deleteDocument()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.ts", + "source_location": "L273", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_documentservice_deletedocument", + "community": 138, + "community_name": "Vault #138", + "norm_label": "deletedocument()" + }, + { + "label": "updateDocumentMeta()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.ts", + "source_location": "L296", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_documentservice_updatedocumentmeta", + "community": 138, + "community_name": "Vault #138", + "norm_label": "updatedocumentmeta()" + }, + { + "label": "rowToDocument()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.ts", + "source_location": "L327", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_documentservice_rowtodocument", + "community": 138, + "community_name": "Vault #138", + "norm_label": "rowtodocument()" + }, + { + "label": "vault/envelope.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_envelope_test", + "community": 86, + "community_name": "Vault #86", + "norm_label": "vault/envelope.test.ts" + }, + { + "label": "makeKEK()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.test.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_envelope_test_makekek", + "community": 86, + "community_name": "Vault #86", + "norm_label": "makekek()" + }, + { + "label": "SAMPLE_FIELDS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.test.ts", + "source_location": "L33", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_envelope_test_sample_fields", + "community": 86, + "community_name": "Vault #86", + "norm_label": "sample_fields" + }, + { + "label": "envelope.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_envelope", + "community": 86, + "community_name": "Vault #86", + "norm_label": "envelope.ts" + }, + { + "label": "require", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.ts", + "source_location": "L22", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_envelope_require", + "community": 86, + "community_name": "Vault #86", + "norm_label": "require" + }, + { + "label": "ensureSodium()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.ts", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_envelope_ensuresodium", + "community": 86, + "community_name": "Vault #86", + "norm_label": "ensuresodium()" + }, + { + "label": "ENVELOPE_SCHEMA_VERSION", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.ts", + "source_location": "L42", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_envelope_envelope_schema_version", + "community": 86, + "community_name": "Vault #86", + "norm_label": "envelope_schema_version" + }, + { + "label": "LEGACY_SCHEMA_VERSION", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.ts", + "source_location": "L45", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_envelope_legacy_schema_version", + "community": 86, + "community_name": "Vault #86", + "norm_label": "legacy_schema_version" + }, + { + "label": "generateRecordDEK()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.ts", + "source_location": "L52", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_envelope_generaterecorddek", + "community": 86, + "community_name": "Vault #86", + "norm_label": "generaterecorddek()" + }, + { + "label": "wrapRecordDEK()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.ts", + "source_location": "L67", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_envelope_wraprecorddek", + "community": 86, + "community_name": "Vault #86", + "norm_label": "wraprecorddek()" + }, + { + "label": "unwrapRecordDEK()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.ts", + "source_location": "L84", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_envelope_unwraprecorddek", + "community": 86, + "community_name": "Vault #86", + "norm_label": "unwraprecorddek()" + }, + { + "label": "encryptRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.ts", + "source_location": "L118", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_envelope_encryptrecord", + "community": 86, + "community_name": "Vault #86", + "norm_label": "encryptrecord()" + }, + { + "label": "decryptRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.ts", + "source_location": "L147", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_envelope_decryptrecord", + "community": 86, + "community_name": "Vault #86", + "norm_label": "decryptrecord()" + }, + { + "label": "EnvelopeWriteResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.ts", + "source_location": "L178", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_envelope_envelopewriteresult", + "community": 86, + "community_name": "Vault #86", + "norm_label": "envelopewriteresult" + }, + { + "label": "sealRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.ts", + "source_location": "L193", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_envelope_sealrecord", + "community": 86, + "community_name": "Vault #86", + "norm_label": "sealrecord()" + }, + { + "label": "openRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.ts", + "source_location": "L218", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_envelope_openrecord", + "community": 86, + "community_name": "Vault #86", + "norm_label": "openrecord()" + }, + { + "label": "hsContextAccessService.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextAccessService.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice_test", + "community": 138, + "community_name": "Vault #138", + "norm_label": "hscontextaccessservice.test.ts" + }, + { + "label": "_require", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextAccessService.test.ts", + "source_location": "L15", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice_test_require", + "community": 138, + "community_name": "Vault #138", + "norm_label": "_require" + }, + { + "label": "makeDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextAccessService.test.ts", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice_test_makedb", + "community": 138, + "community_name": "Vault #138", + "norm_label": "makedb()" + }, + { + "label": "hsContextAccessService.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextAccessService.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice", + "community": 138, + "community_name": "Vault #138", + "norm_label": "hscontextaccessservice.ts" + }, + { + "label": "ACCESS_ACTIONS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextAccessService.ts", + "source_location": "L13", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice_access_actions", + "community": 138, + "community_name": "Vault #138", + "norm_label": "access_actions" + }, + { + "label": "requireHsContextAccess()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextAccessService.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice_requirehscontextaccess", + "community": 138, + "community_name": "Vault #138", + "norm_label": "requirehscontextaccess()" + }, + { + "label": "insertAccessAudit()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextAccessService.ts", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice_insertaccessaudit", + "community": 138, + "community_name": "Vault #138", + "norm_label": "insertaccessaudit()" + }, + { + "label": "isApproved()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextAccessService.ts", + "source_location": "L57", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice_isapproved", + "community": 138, + "community_name": "Vault #138", + "norm_label": "isapproved()" + }, + { + "label": "grantApproval()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextAccessService.ts", + "source_location": "L65", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice_grantapproval", + "community": 138, + "community_name": "Vault #138", + "norm_label": "grantapproval()" + }, + { + "label": "requestOriginalDocumentContent()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextAccessService.ts", + "source_location": "L77", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice_requestoriginaldocumentcontent", + "community": 138, + "community_name": "Vault #138", + "norm_label": "requestoriginaldocumentcontent()" + }, + { + "label": "checkOriginalDocumentApproved()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextAccessService.ts", + "source_location": "L116", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice_checkoriginaldocumentapproved", + "community": 138, + "community_name": "Vault #138", + "norm_label": "checkoriginaldocumentapproved()" + }, + { + "label": "requestLinkOpenApproval()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextAccessService.ts", + "source_location": "L123", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice_requestlinkopenapproval", + "community": 138, + "community_name": "Vault #138", + "norm_label": "requestlinkopenapproval()" + }, + { + "label": "hsContextNormalize.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextNormalize.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_test", + "community": 265, + "community_name": "Vault #265", + "norm_label": "hscontextnormalize.test.ts" + }, + { + "label": "makeProfile()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextNormalize.test.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_test_makeprofile", + "community": 265, + "community_name": "Vault #265", + "norm_label": "makeprofile()" + }, + { + "label": "hsContextNormalize.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextNormalize.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextnormalize", + "community": 265, + "community_name": "Vault #265", + "norm_label": "hscontextnormalize.ts" + }, + { + "label": "PaymentMethodType", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextNormalize.ts", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_paymentmethodtype", + "community": 265, + "community_name": "Vault #265", + "norm_label": "paymentmethodtype" + }, + { + "label": "PaymentMethodBankAccount", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextNormalize.ts", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_paymentmethodbankaccount", + "community": 265, + "community_name": "Vault #265", + "norm_label": "paymentmethodbankaccount" + }, + { + "label": "PaymentMethodCreditCard", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextNormalize.ts", + "source_location": "L30", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_paymentmethodcreditcard", + "community": 265, + "community_name": "Vault #265", + "norm_label": "paymentmethodcreditcard" + }, + { + "label": "PaymentMethodPayPal", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextNormalize.ts", + "source_location": "L38", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_paymentmethodpaypal", + "community": 265, + "community_name": "Vault #265", + "norm_label": "paymentmethodpaypal" + }, + { + "label": "PaymentMethod", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextNormalize.ts", + "source_location": "L43", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_paymentmethod", + "community": 265, + "community_name": "Vault #265", + "norm_label": "paymentmethod" + }, + { + "label": "ProfileFields", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextNormalize.ts", + "source_location": "L45", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_profilefields", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "profilefields" + }, + { + "label": "ContactEntry", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextNormalize.ts", + "source_location": "L96", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_contactentry", + "community": 265, + "community_name": "Vault #265", + "norm_label": "contactentry" + }, + { + "label": "OpeningHoursEntry", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextNormalize.ts", + "source_location": "L104", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_openinghoursentry", + "community": 265, + "community_name": "Vault #265", + "norm_label": "openinghoursentry" + }, + { + "label": "CustomField", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextNormalize.ts", + "source_location": "L110", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_customfield", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "customfield" + }, + { + "label": "HsContextProfile", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextNormalize.ts", + "source_location": "L115", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_hscontextprofile", + "community": 265, + "community_name": "Vault #265", + "norm_label": "hscontextprofile" + }, + { + "label": "ProfileDocumentSummary", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextNormalize.ts", + "source_location": "L124", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_profiledocumentsummary", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "profiledocumentsummary" + }, + { + "label": "trimLines()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextNormalize.ts", + "source_location": "L145", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_trimlines", + "community": 265, + "community_name": "Vault #265", + "norm_label": "trimlines()" + }, + { + "label": "renderJsonValue()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextNormalize.ts", + "source_location": "L155", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_renderjsonvalue", + "community": 265, + "community_name": "Vault #265", + "norm_label": "renderjsonvalue()" + }, + { + "label": "normalizeAdHocContext()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextNormalize.ts", + "source_location": "L184", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_normalizeadhoccontext", + "community": 265, + "community_name": "Vault #265", + "norm_label": "normalizeadhoccontext()" + }, + { + "label": "renderContacts()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextNormalize.ts", + "source_location": "L204", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_rendercontacts", + "community": 265, + "community_name": "Vault #265", + "norm_label": "rendercontacts()" + }, + { + "label": "renderOpeningHours()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextNormalize.ts", + "source_location": "L215", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_renderopeninghours", + "community": 265, + "community_name": "Vault #265", + "norm_label": "renderopeninghours()" + }, + { + "label": "normalizeProfileToText()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextNormalize.ts", + "source_location": "L222", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_normalizeprofiletotext", + "community": 265, + "community_name": "Vault #265", + "norm_label": "normalizeprofiletotext()" + }, + { + "label": "buildCombinedContextText()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextNormalize.ts", + "source_location": "L415", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_buildcombinedcontexttext", + "community": 265, + "community_name": "Vault #265", + "norm_label": "buildcombinedcontexttext()" + }, + { + "label": "hsContextOcrJob.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_test", + "community": 203, + "community_name": "Vault #203", + "norm_label": "hscontextocrjob.test.ts" + }, + { + "label": "makeDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.test.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_test_makedb", + "community": 203, + "community_name": "Vault #203", + "norm_label": "makedb()" + }, + { + "label": "hsContextOcrJob.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextocrjob", + "community": 203, + "community_name": "Vault #203", + "norm_label": "hscontextocrjob.ts" + }, + { + "label": "OcrJobResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L48", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_ocrjobresult", + "community": 203, + "community_name": "Vault #203", + "norm_label": "ocrjobresult" + }, + { + "label": "ExtractionOptions", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L59", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_extractionoptions", + "community": 203, + "community_name": "Vault #203", + "norm_label": "extractionoptions" + }, + { + "label": "loadPdfjs()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L70", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_loadpdfjs", + "community": 203, + "community_name": "Vault #203", + "norm_label": "loadpdfjs()" + }, + { + "label": "PdfMetadata", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L89", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_pdfmetadata", + "community": 203, + "community_name": "Vault #203", + "norm_label": "pdfmetadata" + }, + { + "label": "extractPdfMetadata()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L96", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_extractpdfmetadata", + "community": 203, + "community_name": "Vault #203", + "norm_label": "extractpdfmetadata()" + }, + { + "label": "buildExtractionFailureMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L117", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_buildextractionfailuremessage", + "community": 203, + "community_name": "Vault #203", + "norm_label": "buildextractionfailuremessage()" + }, + { + "label": "reconstructPageText()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L171", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_reconstructpagetext", + "community": 203, + "community_name": "Vault #203", + "norm_label": "reconstructpagetext()" + }, + { + "label": "extractTextDirect()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L217", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_extracttextdirect", + "community": 203, + "community_name": "Vault #203", + "norm_label": "extracttextdirect()" + }, + { + "label": "makeNodeCanvasFactory()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L254", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_makenodecanvasfactory", + "community": 203, + "community_name": "Vault #203", + "norm_label": "makenodecanvasfactory()" + }, + { + "label": "extractTextOcr()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L272", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_extracttextocr", + "community": 203, + "community_name": "Vault #203", + "norm_label": "extracttextocr()" + }, + { + "label": "extractTextVision()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L342", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_extracttextvision", + "community": 203, + "community_name": "Vault #203", + "norm_label": "extracttextvision()" + }, + { + "label": "extractPdfTextWithVisionApi()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L496", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_extractpdftextwithvisionapi", + "community": 203, + "community_name": "Vault #203", + "norm_label": "extractpdftextwithvisionapi()" + }, + { + "label": "extractTextFromPdf()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L525", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_extracttextfrompdf", + "community": 203, + "community_name": "Vault #203", + "norm_label": "extracttextfrompdf()" + }, + { + "label": "validateExtractedText()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L612", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_validateextractedtext", + "community": 203, + "community_name": "Vault #203", + "norm_label": "validateextractedtext()" + }, + { + "label": "markDocumentExtractionPending()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L635", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_markdocumentextractionpending", + "community": 203, + "community_name": "Vault #203", + "norm_label": "markdocumentextractionpending()" + }, + { + "label": "insertDocumentPages()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L647", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_insertdocumentpages", + "community": 203, + "community_name": "Vault #203", + "norm_label": "insertdocumentpages()" + }, + { + "label": "markDocumentExtractionSuccess()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L662", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_markdocumentextractionsuccess", + "community": 203, + "community_name": "Vault #203", + "norm_label": "markdocumentextractionsuccess()" + }, + { + "label": "markDocumentExtractionFailed()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L691", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_markdocumentextractionfailed", + "community": 203, + "community_name": "Vault #203", + "norm_label": "markdocumentextractionfailed()" + }, + { + "label": "updateExtractionProgress()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L712", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_updateextractionprogress", + "community": 203, + "community_name": "Vault #203", + "norm_label": "updateextractionprogress()" + }, + { + "label": "runExtractionJob()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L729", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_runextractionjob", + "community": 203, + "community_name": "Vault #203", + "norm_label": "runextractionjob()" + }, + { + "label": "runExtractionJobWithVision()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L763", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_runextractionjobwithvision", + "community": 203, + "community_name": "Vault #203", + "norm_label": "runextractionjobwithvision()" + }, + { + "label": "hsContextProfileService.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_test", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "hscontextprofileservice.test.ts" + }, + { + "label": "_require", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.test.ts", + "source_location": "L35", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_test_require", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "_require" + }, + { + "label": "DB_AVAILABLE", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.test.ts", + "source_location": "L38", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_test_db_available", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "db_available" + }, + { + "label": "hsContextProfileService.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "hscontextprofileservice.ts" + }, + { + "label": "HsContextProfileRow", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L27", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_hscontextprofilerow", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "hscontextprofilerow" + }, + { + "label": "HsContextProfileDocumentRow", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L41", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_hscontextprofiledocumentrow", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "hscontextprofiledocumentrow" + }, + { + "label": "HsContextProfileSummary", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L63", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_hscontextprofilesummary", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "hscontextprofilesummary" + }, + { + "label": "HsContextProfileDetail", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L82", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_hscontextprofiledetail", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "hscontextprofiledetail" + }, + { + "label": "CreateProfileInput", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L88", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_createprofileinput", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "createprofileinput" + }, + { + "label": "UpdateProfileInput", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L97", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_updateprofileinput", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "updateprofileinput" + }, + { + "label": "requireHsContextAccess()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L108", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_requirehscontextaccess", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "requirehscontextaccess()" + }, + { + "label": "rowToSummary()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L116", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_rowtosummary", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "rowtosummary()" + }, + { + "label": "rowToDetail()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L140", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_rowtodetail", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "rowtodetail()" + }, + { + "label": "detailToProfile()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L169", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_detailtoprofile", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "detailtoprofile()" + }, + { + "label": "listProfiles()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L182", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_listprofiles", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "listprofiles()" + }, + { + "label": "getProfile()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L218", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_getprofile", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "getprofile()" + }, + { + "label": "createProfile()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L238", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_createprofile", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "createprofile()" + }, + { + "label": "updateProfile()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L272", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_updateprofile", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "updateprofile()" + }, + { + "label": "archiveProfile()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L334", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_archiveprofile", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "archiveprofile()" + }, + { + "label": "deleteProfile()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L340", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_deleteprofile", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "deleteprofile()" + }, + { + "label": "duplicateProfile()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L346", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_duplicateprofile", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "duplicateprofile()" + }, + { + "label": "PDF_MAGIC", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L369", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_pdf_magic", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "pdf_magic" + }, + { + "label": "isPdfBuffer()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L371", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_ispdfbuffer", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "ispdfbuffer()" + }, + { + "label": "uploadProfileDocument()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L399", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_uploadprofiledocument", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "uploadprofiledocument()" + }, + { + "label": "getProfileDocumentContent()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L532", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_getprofiledocumentcontent", + "community": 86, + "community_name": "Vault #86", + "norm_label": "getprofiledocumentcontent()" + }, + { + "label": "deleteProfileDocument()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L581", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_deleteprofiledocument", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "deleteprofiledocument()" + }, + { + "label": "splitExtractedTextToPages()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L609", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_splitextractedtexttopages", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "splitextractedtexttopages()" + }, + { + "label": "DocumentPageInfo", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L644", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_documentpageinfo", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "documentpageinfo" + }, + { + "label": "getDocumentPageCount()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L652", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_getdocumentpagecount", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "getdocumentpagecount()" + }, + { + "label": "getDocumentPage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L664", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_getdocumentpage", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "getdocumentpage()" + }, + { + "label": "getDocumentPageList()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L681", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_getdocumentpagelist", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "getdocumentpagelist()" + }, + { + "label": "getDocumentFullText()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L693", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_getdocumentfulltext", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "getdocumentfulltext()" + }, + { + "label": "DocumentSearchMatch", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L699", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_documentsearchmatch", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "documentsearchmatch" + }, + { + "label": "searchDocumentPages()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L709", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_searchdocumentpages", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "searchdocumentpages()" + }, + { + "label": "updateProfileDocumentMeta()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L742", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_updateprofiledocumentmeta", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "updateprofiledocumentmeta()" + }, + { + "label": "resolveProfilesForHandshake()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L787", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_resolveprofilesforhandshake", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "resolveprofilesforhandshake()" + }, + { + "label": "retryDocumentWithVision()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L816", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_retrydocumentwithvision", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "retrydocumentwithvision()" + }, + { + "label": "hsContextServiceRegression.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextServiceRegression.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_hscontextserviceregression_test", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "hscontextserviceregression.test.ts" + }, + { + "label": "lazyDecrypt.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/lazyDecrypt.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_lazydecrypt_test", + "community": 86, + "community_name": "Vault #86", + "norm_label": "lazydecrypt.test.ts" + }, + { + "label": "FakeRow", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/lazyDecrypt.test.ts", + "source_location": "L21", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_lazydecrypt_test_fakerow", + "community": 86, + "community_name": "Vault #86", + "norm_label": "fakerow" + }, + { + "label": "VaultItem", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/lazyDecrypt.test.ts", + "source_location": "L34", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_lazydecrypt_test_vaultitem", + "community": 86, + "community_name": "Vault #86", + "norm_label": "vaultitem" + }, + { + "label": "listItemsMapping()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/lazyDecrypt.test.ts", + "source_location": "L50", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_lazydecrypt_test_listitemsmapping", + "community": 86, + "community_name": "Vault #86", + "norm_label": "listitemsmapping()" + }, + { + "label": "searchMapping()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/lazyDecrypt.test.ts", + "source_location": "L80", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_lazydecrypt_test_searchmapping", + "community": 86, + "community_name": "Vault #86", + "norm_label": "searchmapping()" + }, + { + "label": "now", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/lazyDecrypt.test.ts", + "source_location": "L97", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_lazydecrypt_test_now", + "community": 86, + "community_name": "Vault #86", + "norm_label": "now" + }, + { + "label": "V2_ROW", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/lazyDecrypt.test.ts", + "source_location": "L99", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_lazydecrypt_test_v2_row", + "community": 86, + "community_name": "Vault #86", + "norm_label": "v2_row" + }, + { + "label": "V1_ROW", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/lazyDecrypt.test.ts", + "source_location": "L112", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_lazydecrypt_test_v1_row", + "community": 86, + "community_name": "Vault #86", + "norm_label": "v1_row" + }, + { + "label": "rpc.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_rpc", + "community": 176, + "community_name": "Vault #176", + "norm_label": "rpc.ts" + }, + { + "label": "_haState", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L63", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_rpc_hastate", + "community": 176, + "community_name": "Vault #176", + "norm_label": "_hastate" + }, + { + "label": "getHAState()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L66", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_rpc_gethastate", + "community": 176, + "community_name": "Vault #176", + "norm_label": "gethastate()" + }, + { + "label": "loadHAState()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L69", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_rpc_loadhastate", + "community": 176, + "community_name": "Vault #176", + "norm_label": "loadhastate()" + }, + { + "label": "persistHAState()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L80", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_rpc_persisthastate", + "community": 176, + "community_name": "Vault #176", + "norm_label": "persisthastate()" + }, + { + "label": "setupEmbeddingServiceRef()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L95", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_rpc_setupembeddingserviceref", + "community": 397, + "community_name": "Internal Inference Handshake Vault", + "norm_label": "setupembeddingserviceref()" + }, + { + "label": "clearEmbeddingServiceRef()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L143", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_rpc_clearembeddingserviceref", + "community": 176, + "community_name": "Vault #176", + "norm_label": "clearembeddingserviceref()" + }, + { + "label": "handleVaultRPC()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L154", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_rpc_handlevaultrpc", + "community": 176, + "community_name": "Vault #176", + "norm_label": "handlevaultrpc()" + }, + { + "label": "rpcAuth.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/rpcAuth.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_rpcauth_test", + "community": 63, + "community_name": "Vault", + "norm_label": "rpcauth.test.ts" + }, + { + "label": "simulateServiceGate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/rpcAuth.test.ts", + "source_location": "L82", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_rpcauth_test_simulateservicegate", + "community": 63, + "community_name": "Vault", + "norm_label": "simulateservicegate()" + }, + { + "label": "schemas.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_schemas", + "community": 143, + "community_name": "Vault #143", + "norm_label": "schemas.ts" + }, + { + "label": "ContainerTypeSchema", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L10", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_schemas_containertypeschema", + "community": 143, + "community_name": "Vault #143", + "norm_label": "containertypeschema" + }, + { + "label": "ContainerSchema", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L12", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_schemas_containerschema", + "community": 143, + "community_name": "Vault #143", + "norm_label": "containerschema" + }, + { + "label": "CreateContainerSchema", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L21", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_schemas_createcontainerschema", + "community": 176, + "community_name": "Vault #176", + "norm_label": "createcontainerschema" + }, + { + "label": "UpdateContainerSchema", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L27", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_schemas_updatecontainerschema", + "community": 176, + "community_name": "Vault #176", + "norm_label": "updatecontainerschema" + }, + { + "label": "FieldTypeSchema", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L36", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_schemas_fieldtypeschema", + "community": 143, + "community_name": "Vault #143", + "norm_label": "fieldtypeschema" + }, + { + "label": "FieldSchema", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L38", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_schemas_fieldschema", + "community": 143, + "community_name": "Vault #143", + "norm_label": "fieldschema" + }, + { + "label": "ItemCategorySchema", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L49", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_schemas_itemcategoryschema", + "community": 143, + "community_name": "Vault #143", + "norm_label": "itemcategoryschema" + }, + { + "label": "VaultItemSchema", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L51", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_schemas_vaultitemschema", + "community": 143, + "community_name": "Vault #143", + "norm_label": "vaultitemschema" + }, + { + "label": "CreateItemSchema", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L63", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_schemas_createitemschema", + "community": 176, + "community_name": "Vault #176", + "norm_label": "createitemschema" + }, + { + "label": "UpdateItemSchema", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L72", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_schemas_updateitemschema", + "community": 176, + "community_name": "Vault #176", + "norm_label": "updateitemschema" + }, + { + "label": "CreateVaultRequestSchema", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L83", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_schemas_createvaultrequestschema", + "community": 176, + "community_name": "Vault #176", + "norm_label": "createvaultrequestschema" + }, + { + "label": "UnlockVaultRequestSchema", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L89", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_schemas_unlockvaultrequestschema", + "community": 176, + "community_name": "Vault #176", + "norm_label": "unlockvaultrequestschema" + }, + { + "label": "GetItemRequestSchema", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L94", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_schemas_getitemrequestschema", + "community": 176, + "community_name": "Vault #176", + "norm_label": "getitemrequestschema" + }, + { + "label": "ListItemsRequestSchema", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L98", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_schemas_listitemsrequestschema", + "community": 176, + "community_name": "Vault #176", + "norm_label": "listitemsrequestschema" + }, + { + "label": "DeleteItemRequestSchema", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L106", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_schemas_deleteitemrequestschema", + "community": 176, + "community_name": "Vault #176", + "norm_label": "deleteitemrequestschema" + }, + { + "label": "DeleteContainerRequestSchema", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L110", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_schemas_deletecontainerrequestschema", + "community": 176, + "community_name": "Vault #176", + "norm_label": "deletecontainerrequestschema" + }, + { + "label": "SearchRequestSchema", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L114", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_schemas_searchrequestschema", + "community": 176, + "community_name": "Vault #176", + "norm_label": "searchrequestschema" + }, + { + "label": "GetAutofillCandidatesRequestSchema", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L119", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_schemas_getautofillcandidatesrequestschema", + "community": 176, + "community_name": "Vault #176", + "norm_label": "getautofillcandidatesrequestschema" + }, + { + "label": "AutofillSectionsSchema", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L123", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_schemas_autofillsectionsschema", + "community": 143, + "community_name": "Vault #143", + "norm_label": "autofillsectionsschema" + }, + { + "label": "HAStateSchema", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L131", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_schemas_hastateschema", + "community": 143, + "community_name": "Vault #143", + "norm_label": "hastateschema" + }, + { + "label": "HAModeStateSchema", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L133", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_schemas_hamodestateschema", + "community": 143, + "community_name": "Vault #143", + "norm_label": "hamodestateschema" + }, + { + "label": "UpdateSettingsRequestSchema", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L142", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_schemas_updatesettingsrequestschema", + "community": 176, + "community_name": "Vault #176", + "norm_label": "updatesettingsrequestschema" + }, + { + "label": "ActivateHARequestSchema", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L149", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_schemas_activateharequestschema", + "community": 176, + "community_name": "Vault #176", + "norm_label": "activateharequestschema" + }, + { + "label": "DeactivateHARequestSchema", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L154", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_schemas_deactivateharequestschema", + "community": 176, + "community_name": "Vault #176", + "norm_label": "deactivateharequestschema" + }, + { + "label": "LockHARequestSchema", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L159", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_schemas_lockharequestschema", + "community": 176, + "community_name": "Vault #176", + "norm_label": "lockharequestschema" + }, + { + "label": "UnlockHARequestSchema", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L164", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_schemas_unlockharequestschema", + "community": 176, + "community_name": "Vault #176", + "norm_label": "unlockharequestschema" + }, + { + "label": "ImportCSVRequestSchema", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L168", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_schemas_importcsvrequestschema", + "community": 176, + "community_name": "Vault #176", + "norm_label": "importcsvrequestschema" + }, + { + "label": "VaultStatusSchema", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L175", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_schemas_vaultstatusschema", + "community": 143, + "community_name": "Vault #143", + "norm_label": "vaultstatusschema" + }, + { + "label": "SuccessResponseSchema", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L181", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_schemas_successresponseschema", + "community": 143, + "community_name": "Vault #143", + "norm_label": "successresponseschema" + }, + { + "label": "ErrorResponseSchema", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L186", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_schemas_errorresponseschema", + "community": 143, + "community_name": "Vault #143", + "norm_label": "errorresponseschema" + }, + { + "label": "ListContainersResponseSchema", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L191", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_schemas_listcontainersresponseschema", + "community": 143, + "community_name": "Vault #143", + "norm_label": "listcontainersresponseschema" + }, + { + "label": "ListItemsResponseSchema", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L196", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_schemas_listitemsresponseschema", + "community": 143, + "community_name": "Vault #143", + "norm_label": "listitemsresponseschema" + }, + { + "label": "GetItemResponseSchema", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L201", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_schemas_getitemresponseschema", + "community": 143, + "community_name": "Vault #143", + "norm_label": "getitemresponseschema" + }, + { + "label": "ExportCSVResponseSchema", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L206", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_schemas_exportcsvresponseschema", + "community": 143, + "community_name": "Vault #143", + "norm_label": "exportcsvresponseschema" + }, + { + "label": "GetStatusResponseSchema", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L211", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_schemas_getstatusresponseschema", + "community": 143, + "community_name": "Vault #143", + "norm_label": "getstatusresponseschema" + }, + { + "label": "CreateVaultRequest", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L219", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_schemas_createvaultrequest", + "community": 143, + "community_name": "Vault #143", + "norm_label": "createvaultrequest" + }, + { + "label": "UnlockVaultRequest", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L220", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_schemas_unlockvaultrequest", + "community": 143, + "community_name": "Vault #143", + "norm_label": "unlockvaultrequest" + }, + { + "label": "CreateContainerRequest", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L221", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_schemas_createcontainerrequest", + "community": 143, + "community_name": "Vault #143", + "norm_label": "createcontainerrequest" + }, + { + "label": "UpdateContainerRequest", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L222", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_schemas_updatecontainerrequest", + "community": 143, + "community_name": "Vault #143", + "norm_label": "updatecontainerrequest" + }, + { + "label": "CreateItemRequest", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L223", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_schemas_createitemrequest", + "community": 143, + "community_name": "Vault #143", + "norm_label": "createitemrequest" + }, + { + "label": "UpdateItemRequest", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L224", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_schemas_updateitemrequest", + "community": 143, + "community_name": "Vault #143", + "norm_label": "updateitemrequest" + }, + { + "label": "GetItemRequest", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L225", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_schemas_getitemrequest", + "community": 143, + "community_name": "Vault #143", + "norm_label": "getitemrequest" + }, + { + "label": "ListItemsRequest", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L226", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_schemas_listitemsrequest", + "community": 143, + "community_name": "Vault #143", + "norm_label": "listitemsrequest" + }, + { + "label": "DeleteItemRequest", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L227", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_schemas_deleteitemrequest", + "community": 143, + "community_name": "Vault #143", + "norm_label": "deleteitemrequest" + }, + { + "label": "DeleteContainerRequest", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L228", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_schemas_deletecontainerrequest", + "community": 143, + "community_name": "Vault #143", + "norm_label": "deletecontainerrequest" + }, + { + "label": "SearchRequest", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L229", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_schemas_searchrequest", + "community": 143, + "community_name": "Vault #143", + "norm_label": "searchrequest" + }, + { + "label": "GetAutofillCandidatesRequest", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L230", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_schemas_getautofillcandidatesrequest", + "community": 143, + "community_name": "Vault #143", + "norm_label": "getautofillcandidatesrequest" + }, + { + "label": "UpdateSettingsRequest", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L231", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_schemas_updatesettingsrequest", + "community": 143, + "community_name": "Vault #143", + "norm_label": "updatesettingsrequest" + }, + { + "label": "ImportCSVRequest", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L232", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_schemas_importcsvrequest", + "community": 143, + "community_name": "Vault #143", + "norm_label": "importcsvrequest" + }, + { + "label": "ActivateHARequest", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L233", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_schemas_activateharequest", + "community": 143, + "community_name": "Vault #143", + "norm_label": "activateharequest" + }, + { + "label": "DeactivateHARequest", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L234", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_schemas_deactivateharequest", + "community": 143, + "community_name": "Vault #143", + "norm_label": "deactivateharequest" + }, + { + "label": "LockHARequest", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L235", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_schemas_lockharequest", + "community": 143, + "community_name": "Vault #143", + "norm_label": "lockharequest" + }, + { + "label": "UnlockHARequest", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L236", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_schemas_unlockharequest", + "community": 143, + "community_name": "Vault #143", + "norm_label": "unlockharequest" + }, + { + "label": "vault/security-regression.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/security-regression.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_security_regression_test", + "community": 86, + "community_name": "Vault #86", + "norm_label": "vault/security-regression.test.ts" + }, + { + "label": "validateLaunchSecret()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/security-regression.test.ts", + "source_location": "L223", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_security_regression_test_validatelaunchsecret", + "community": 86, + "community_name": "Vault #86", + "norm_label": "validatelaunchsecret()" + }, + { + "label": "MockSession", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/security-regression.test.ts", + "source_location": "L297", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_security_regression_test_mocksession", + "community": 86, + "community_name": "Vault #86", + "norm_label": "mocksession" + }, + { + "label": ".unlock()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/security-regression.test.ts", + "source_location": "L300", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_security_regression_test_mocksession_unlock", + "community": 86, + "community_name": "Vault #86", + "norm_label": ".unlock()" + }, + { + "label": ".lock()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/security-regression.test.ts", + "source_location": "L305", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_security_regression_test_mocksession_lock", + "community": 86, + "community_name": "Vault #86", + "norm_label": ".lock()" + }, + { + "label": ".validateToken()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/security-regression.test.ts", + "source_location": "L312", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_security_regression_test_mocksession_validatetoken", + "community": 86, + "community_name": "Vault #86", + "norm_label": ".validatetoken()" + }, + { + "label": "routerAllows()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/security-regression.test.ts", + "source_location": "L387", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_security_regression_test_routerallows", + "community": 86, + "community_name": "Vault #86", + "norm_label": "routerallows()" + }, + { + "label": "vault/service.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service", + "community": 84, + "community_name": "Vault Handshake", + "norm_label": "vault/service.ts" + }, + { + "label": "VaultService", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L109", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "community": 63, + "community_name": "Vault", + "norm_label": "vaultservice" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L143", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_constructor", + "community": 93, + "community_name": "Vault #93", + "norm_label": ".constructor()" + }, + { + "label": ".createVault()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L160", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_createvault", + "community": 93, + "community_name": "Vault #93", + "norm_label": ".createvault()" + }, + { + "label": ".unlock()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L235", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_unlock", + "community": 93, + "community_name": "Vault #93", + "norm_label": ".unlock()" + }, + { + "label": ".deleteVault()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L351", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_deletevault", + "community": 63, + "community_name": "Vault", + "norm_label": ".deletevault()" + }, + { + "label": ".getAvailableVaults()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L394", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getavailablevaults", + "community": 93, + "community_name": "Vault #93", + "norm_label": ".getavailablevaults()" + }, + { + "label": ".getVaultListAccountDetail()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L398", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getvaultlistaccountdetail", + "community": 93, + "community_name": "Vault #93", + "norm_label": ".getvaultlistaccountdetail()" + }, + { + "label": ".isActiveVaultAccountAlignedWithSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L403", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_isactivevaultaccountalignedwithsession", + "community": 63, + "community_name": "Vault", + "norm_label": ".isactivevaultaccountalignedwithsession()" + }, + { + "label": ".fingerprintSessionFromInfo()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L412", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_fingerprintsessionfrominfo", + "community": 63, + "community_name": "Vault", + "norm_label": ".fingerprintsessionfrominfo()" + }, + { + "label": ".lock()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L420", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_lock", + "community": 63, + "community_name": "Vault", + "norm_label": ".lock()" + }, + { + "label": ".deriveApplicationKey()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L490", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_deriveapplicationkey", + "community": 63, + "community_name": "Vault", + "norm_label": ".deriveapplicationkey()" + }, + { + "label": ".getStatus()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L502", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getstatus", + "community": 93, + "community_name": "Vault #93", + "norm_label": ".getstatus()" + }, + { + "label": ".createContainer()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L553", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_createcontainer", + "community": 63, + "community_name": "Vault", + "norm_label": ".createcontainer()" + }, + { + "label": ".updateContainer()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L578", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updatecontainer", + "community": 63, + "community_name": "Vault", + "norm_label": ".updatecontainer()" + }, + { + "label": ".deleteContainer()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L604", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_deletecontainer", + "community": 63, + "community_name": "Vault", + "norm_label": ".deletecontainer()" + }, + { + "label": ".listContainers()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L620", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_listcontainers", + "community": 63, + "community_name": "Vault", + "norm_label": ".listcontainers()" + }, + { + "label": ".getContainerById()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L674", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getcontainerbyid", + "community": 63, + "community_name": "Vault", + "norm_label": ".getcontainerbyid()" + }, + { + "label": ".createItem()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L698", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_createitem", + "community": 63, + "community_name": "Vault", + "norm_label": ".createitem()" + }, + { + "label": ".updateItem()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L792", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateitem", + "community": 63, + "community_name": "Vault", + "norm_label": ".updateitem()" + }, + { + "label": ".deleteItem()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L861", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_deleteitem", + "community": 63, + "community_name": "Vault", + "norm_label": ".deleteitem()" + }, + { + "label": ".getItem()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L885", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getitem", + "community": 63, + "community_name": "Vault", + "norm_label": ".getitem()" + }, + { + "label": ".listItems()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L941", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_listitems", + "community": 63, + "community_name": "Vault", + "norm_label": ".listitems()" + }, + { + "label": ".search()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1052", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_search", + "community": 63, + "community_name": "Vault", + "norm_label": ".search()" + }, + { + "label": ".getAutofillCandidates()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1091", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getautofillcandidates", + "community": 63, + "community_name": "Vault", + "norm_label": ".getautofillcandidates()" + }, + { + "label": ".getItemRowById()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1164", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getitemrowbyid", + "community": 63, + "community_name": "Vault", + "norm_label": ".getitemrowbyid()" + }, + { + "label": ".getItemCategory()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1174", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getitemcategory", + "community": 63, + "community_name": "Vault", + "norm_label": ".getitemcategory()" + }, + { + "label": ".rowToItem()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1184", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_rowtoitem", + "community": 63, + "community_name": "Vault", + "norm_label": ".rowtoitem()" + }, + { + "label": ".migrateItemToV2()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1219", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_migrateitemtov2", + "community": 63, + "community_name": "Vault", + "norm_label": ".migrateitemtov2()" + }, + { + "label": ".upgradeVault()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1256", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_upgradevault", + "community": 63, + "community_name": "Vault", + "norm_label": ".upgradevault()" + }, + { + "label": ".importDocument()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1292", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_importdocument", + "community": 63, + "community_name": "Vault", + "norm_label": ".importdocument()" + }, + { + "label": ".getDocument()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1306", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getdocument", + "community": 63, + "community_name": "Vault", + "norm_label": ".getdocument()" + }, + { + "label": ".listDocuments()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1318", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_listdocuments", + "community": 63, + "community_name": "Vault", + "norm_label": ".listdocuments()" + }, + { + "label": ".deleteDocument()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1327", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_deletedocument", + "community": 63, + "community_name": "Vault", + "norm_label": ".deletedocument()" + }, + { + "label": ".updateDocumentMeta()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1336", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updatedocumentmeta", + "community": 63, + "community_name": "Vault", + "norm_label": ".updatedocumentmeta()" + }, + { + "label": ".listHsProfiles()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1350", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_listhsprofiles", + "community": 63, + "community_name": "Vault", + "norm_label": ".listhsprofiles()" + }, + { + "label": ".getHsProfile()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1356", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_gethsprofile", + "community": 63, + "community_name": "Vault", + "norm_label": ".gethsprofile()" + }, + { + "label": ".createHsProfile()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1362", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_createhsprofile", + "community": 63, + "community_name": "Vault", + "norm_label": ".createhsprofile()" + }, + { + "label": ".updateHsProfile()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1368", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updatehsprofile", + "community": 63, + "community_name": "Vault", + "norm_label": ".updatehsprofile()" + }, + { + "label": ".archiveHsProfile()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1382", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_archivehsprofile", + "community": 63, + "community_name": "Vault", + "norm_label": ".archivehsprofile()" + }, + { + "label": ".deleteHsProfile()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1388", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_deletehsprofile", + "community": 63, + "community_name": "Vault", + "norm_label": ".deletehsprofile()" + }, + { + "label": ".duplicateHsProfile()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1394", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_duplicatehsprofile", + "community": 63, + "community_name": "Vault", + "norm_label": ".duplicatehsprofile()" + }, + { + "label": ".uploadHsProfileDocument()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1400", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_uploadhsprofiledocument", + "community": 63, + "community_name": "Vault", + "norm_label": ".uploadhsprofiledocument()" + }, + { + "label": ".updateHsProfileDocumentMeta()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1415", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updatehsprofiledocumentmeta", + "community": 63, + "community_name": "Vault", + "norm_label": ".updatehsprofiledocumentmeta()" + }, + { + "label": ".deleteHsProfileDocument()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1425", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_deletehsprofiledocument", + "community": 63, + "community_name": "Vault", + "norm_label": ".deletehsprofiledocument()" + }, + { + "label": ".resolveHsProfilesForHandshake()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1431", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_resolvehsprofilesforhandshake", + "community": 63, + "community_name": "Vault", + "norm_label": ".resolvehsprofilesforhandshake()" + }, + { + "label": ".requestOriginalDocumentContent()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1446", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_requestoriginaldocumentcontent", + "community": 63, + "community_name": "Vault", + "norm_label": ".requestoriginaldocumentcontent()" + }, + { + "label": ".getOwnerDocumentContent()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1463", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getownerdocumentcontent", + "community": 63, + "community_name": "Vault", + "norm_label": ".getownerdocumentcontent()" + }, + { + "label": ".getDocumentPageCount()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1469", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getdocumentpagecount", + "community": 63, + "community_name": "Vault", + "norm_label": ".getdocumentpagecount()" + }, + { + "label": ".getDocumentPage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1475", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getdocumentpage", + "community": 63, + "community_name": "Vault", + "norm_label": ".getdocumentpage()" + }, + { + "label": ".getDocumentPageList()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1481", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getdocumentpagelist", + "community": 63, + "community_name": "Vault", + "norm_label": ".getdocumentpagelist()" + }, + { + "label": ".getDocumentFullText()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1487", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getdocumentfulltext", + "community": 63, + "community_name": "Vault", + "norm_label": ".getdocumentfulltext()" + }, + { + "label": ".searchDocumentPages()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1493", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_searchdocumentpages", + "community": 63, + "community_name": "Vault", + "norm_label": ".searchdocumentpages()" + }, + { + "label": ".saveAnthropicApiKey()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1502", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_saveanthropicapikey", + "community": 63, + "community_name": "Vault", + "norm_label": ".saveanthropicapikey()" + }, + { + "label": ".hasAnthropicApiKey()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1514", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_hasanthropicapikey", + "community": 63, + "community_name": "Vault", + "norm_label": ".hasanthropicapikey()" + }, + { + "label": ".removeAnthropicApiKey()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1521", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_removeanthropicapikey", + "community": 63, + "community_name": "Vault", + "norm_label": ".removeanthropicapikey()" + }, + { + "label": ".retryDocumentWithVision()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1532", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_retrydocumentwithvision", + "community": 63, + "community_name": "Vault", + "norm_label": ".retrydocumentwithvision()" + }, + { + "label": ".getAnthropicApiKeyForInbox()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1547", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getanthropicapikeyforinbox", + "community": 63, + "community_name": "Vault", + "norm_label": ".getanthropicapikeyforinbox()" + }, + { + "label": ".requestLinkOpenApproval()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1556", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_requestlinkopenapproval", + "community": 63, + "community_name": "Vault", + "norm_label": ".requestlinkopenapproval()" + }, + { + "label": ".getHsProfileDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1566", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_gethsprofiledb", + "community": 63, + "community_name": "Vault", + "norm_label": ".gethsprofiledb()" + }, + { + "label": ".getItemMeta()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1579", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getitemmeta", + "community": 63, + "community_name": "Vault", + "norm_label": ".getitemmeta()" + }, + { + "label": ".setItemMeta()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1597", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_setitemmeta", + "community": 63, + "community_name": "Vault", + "norm_label": ".setitemmeta()" + }, + { + "label": ".evaluateAttach()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1626", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_evaluateattach", + "community": 210, + "community_name": "Vault #210", + "norm_label": ".evaluateattach()" + }, + { + "label": ".updateSettings()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1656", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updatesettings", + "community": 63, + "community_name": "Vault", + "norm_label": ".updatesettings()" + }, + { + "label": ".getSettings()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1682", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getsettings", + "community": 63, + "community_name": "Vault", + "norm_label": ".getsettings()" + }, + { + "label": ".exportCSV()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1694", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_exportcsv", + "community": 63, + "community_name": "Vault", + "norm_label": ".exportcsv()" + }, + { + "label": ".importCSV()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1751", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_importcsv", + "community": 63, + "community_name": "Vault", + "norm_label": ".importcsv()" + }, + { + "label": ".ensureUnlocked()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1815", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensureunlocked", + "community": 63, + "community_name": "Vault", + "norm_label": ".ensureunlocked()" + }, + { + "label": ".assertContextProfileAccountOrThrow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1827", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_assertcontextprofileaccountorthrow", + "community": 63, + "community_name": "Vault", + "norm_label": ".assertcontextprofileaccountorthrow()" + }, + { + "label": ".ensureDbConnection()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1839", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensuredbconnection", + "community": 63, + "community_name": "Vault", + "norm_label": ".ensuredbconnection()" + }, + { + "label": ".updateActivity()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1883", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateactivity", + "community": 63, + "community_name": "Vault", + "norm_label": ".updateactivity()" + }, + { + "label": ".startAutoLockTimer()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1893", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_startautolocktimer", + "community": 63, + "community_name": "Vault", + "norm_label": ".startautolocktimer()" + }, + { + "label": ".generateId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1914", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_generateid", + "community": 63, + "community_name": "Vault", + "norm_label": ".generateid()" + }, + { + "label": ".generateToken()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1925", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_generatetoken", + "community": 93, + "community_name": "Vault #93", + "norm_label": ".generatetoken()" + }, + { + "label": ".decryptItemFields()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1935", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_decryptitemfields", + "community": 63, + "community_name": "Vault", + "norm_label": ".decryptitemfields()" + }, + { + "label": ".loadVaultMetaRaw()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1981", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_loadvaultmetaraw", + "community": 93, + "community_name": "Vault #93", + "norm_label": ".loadvaultmetaraw()" + }, + { + "label": ".saveVaultMeta()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L2018", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_savevaultmeta", + "community": 93, + "community_name": "Vault #93", + "norm_label": ".savevaultmeta()" + }, + { + "label": ".loadSettings()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L2114", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_loadsettings", + "community": 93, + "community_name": "Vault #93", + "norm_label": ".loadsettings()" + }, + { + "label": ".saveSettings()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L2139", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_savesettings", + "community": 63, + "community_name": "Vault", + "norm_label": ".savesettings()" + }, + { + "label": ".cleanupUnlockAttempts()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L2149", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_cleanupunlockattempts", + "community": 93, + "community_name": "Vault #93", + "norm_label": ".cleanupunlockattempts()" + }, + { + "label": ".validateToken()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L2157", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_validatetoken", + "community": 60, + "community_name": "Critical Jobs Depackagingmicrovm Letter", + "norm_label": ".validatetoken()" + }, + { + "label": ".getSessionToken()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L2177", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getsessiontoken", + "community": 63, + "community_name": "Vault", + "norm_label": ".getsessiontoken()" + }, + { + "label": "sessionLock.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/sessionLock.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_sessionlock_test", + "community": 328, + "community_name": "Vault #328", + "norm_label": "sessionlock.test.ts" + }, + { + "label": "FakeVaultService", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/sessionLock.test.ts", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_sessionlock_test_fakevaultservice", + "community": 328, + "community_name": "Vault #328", + "norm_label": "fakevaultservice" + }, + { + "label": ".simulateUnlock()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/sessionLock.test.ts", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_sessionlock_test_fakevaultservice_simulateunlock", + "community": 328, + "community_name": "Vault #328", + "norm_label": ".simulateunlock()" + }, + { + "label": ".lock()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/sessionLock.test.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_sessionlock_test_fakevaultservice_lock", + "community": 328, + "community_name": "Vault #328", + "norm_label": ".lock()" + }, + { + "label": ".ensureUnlocked()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/sessionLock.test.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_sessionlock_test_fakevaultservice_ensureunlocked", + "community": 328, + "community_name": "Vault #328", + "norm_label": ".ensureunlocked()" + }, + { + "label": ".getItem()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/sessionLock.test.ts", + "source_location": "L59", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_sessionlock_test_fakevaultservice_getitem", + "community": 328, + "community_name": "Vault #328", + "norm_label": ".getitem()" + }, + { + "label": ".updateItem()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/sessionLock.test.ts", + "source_location": "L63", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_sessionlock_test_fakevaultservice_updateitem", + "community": 328, + "community_name": "Vault #328", + "norm_label": ".updateitem()" + }, + { + "label": ".deleteItem()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/sessionLock.test.ts", + "source_location": "L67", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_sessionlock_test_fakevaultservice_deleteitem", + "community": 328, + "community_name": "Vault #328", + "norm_label": ".deleteitem()" + }, + { + "label": ".getItemCategory()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/sessionLock.test.ts", + "source_location": "L71", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_sessionlock_test_fakevaultservice_getitemcategory", + "community": 328, + "community_name": "Vault #328", + "norm_label": ".getitemcategory()" + }, + { + "label": ".isLocked()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/sessionLock.test.ts", + "source_location": "L76", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_sessionlock_test_fakevaultservice_islocked", + "community": 328, + "community_name": "Vault #328", + "norm_label": ".islocked()" + }, + { + "label": ".isKEKNull()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/sessionLock.test.ts", + "source_location": "L80", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_sessionlock_test_fakevaultservice_iskeknull", + "community": 328, + "community_name": "Vault #328", + "norm_label": ".iskeknull()" + }, + { + "label": ".wasCacheFlushed()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/sessionLock.test.ts", + "source_location": "L84", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_sessionlock_test_fakevaultservice_wascacheflushed", + "community": 328, + "community_name": "Vault #328", + "norm_label": ".wascacheflushed()" + }, + { + "label": "sessionPlanExtraction.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/sessionPlanExtraction.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_sessionplanextraction_test", + "community": 103, + "community_name": "Auth Vault", + "norm_label": "sessionplanextraction.test.ts" + }, + { + "label": "makeJwt()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/sessionPlanExtraction.test.ts", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_sessionplanextraction_test_makejwt", + "community": 103, + "community_name": "Auth Vault", + "norm_label": "makejwt()" + }, + { + "label": "BASE_PAYLOAD", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/sessionPlanExtraction.test.ts", + "source_location": "L24", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_sessionplanextraction_test_base_payload", + "community": 103, + "community_name": "Auth Vault", + "norm_label": "base_payload" + }, + { + "label": "vault/tierResolution.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/tierResolution.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_tierresolution_test", + "community": 103, + "community_name": "Auth Vault", + "norm_label": "vault/tierresolution.test.ts" + }, + { + "label": "simulateResolveRequestTier()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/tierResolution.test.ts", + "source_location": "L68", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_tierresolution_test_simulateresolverequesttier", + "community": 103, + "community_name": "Auth Vault", + "norm_label": "simulateresolverequesttier()" + }, + { + "label": "main/vault/types.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/types.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_types", + "community": 138, + "community_name": "Vault #138", + "norm_label": "main/vault/types.ts" + }, + { + "label": "ContainerType", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/types.ts", + "source_location": "L33", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_types_containertype", + "community": 138, + "community_name": "Vault #138", + "norm_label": "containertype" + }, + { + "label": "ItemCategory", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/types.ts", + "source_location": "L38", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_types_itemcategory", + "community": 138, + "community_name": "Vault #138", + "norm_label": "itemcategory" + }, + { + "label": "FieldType", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/types.ts", + "source_location": "L43", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_types_fieldtype", + "community": 138, + "community_name": "Vault #138", + "norm_label": "fieldtype" + }, + { + "label": "Container", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/types.ts", + "source_location": "L48", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_types_container", + "community": 63, + "community_name": "Vault", + "norm_label": "container" + }, + { + "label": "Field", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/types.ts", + "source_location": "L60", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_types_field", + "community": 138, + "community_name": "Vault #138", + "norm_label": "field" + }, + { + "label": "VaultItem", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/types.ts", + "source_location": "L71", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_types_vaultitem", + "community": 63, + "community_name": "Vault", + "norm_label": "vaultitem" + }, + { + "label": "VaultSession", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/types.ts", + "source_location": "L86", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_types_vaultsession", + "community": 138, + "community_name": "Vault #138", + "norm_label": "vaultsession" + }, + { + "label": "VaultStatus", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/types.ts", + "source_location": "L98", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_types_vaultstatus", + "community": 93, + "community_name": "Vault #93", + "norm_label": "vaultstatus" + }, + { + "label": "VaultSettings", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/types.ts", + "source_location": "L126", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_types_vaultsettings", + "community": 63, + "community_name": "Vault", + "norm_label": "vaultsettings" + }, + { + "label": "KDFParams", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/types.ts", + "source_location": "L153", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_types_kdfparams", + "community": 138, + "community_name": "Vault #138", + "norm_label": "kdfparams" + }, + { + "label": "CSVRow", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/types.ts", + "source_location": "L162", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_types_csvrow", + "community": 138, + "community_name": "Vault #138", + "norm_label": "csvrow" + }, + { + "label": "MAX_DOCUMENT_SIZE", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/types.ts", + "source_location": "L175", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_types_max_document_size", + "community": 138, + "community_name": "Vault #138", + "norm_label": "max_document_size" + }, + { + "label": "SAFE_PREVIEW_MIMES", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/types.ts", + "source_location": "L182", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_types_safe_preview_mimes", + "community": 138, + "community_name": "Vault #138", + "norm_label": "safe_preview_mimes" + }, + { + "label": "BLOCKED_EXTENSIONS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/types.ts", + "source_location": "L196", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_types_blocked_extensions", + "community": 138, + "community_name": "Vault #138", + "norm_label": "blocked_extensions" + }, + { + "label": "VaultDocument", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/types.ts", + "source_location": "L210", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_types_vaultdocument", + "community": 63, + "community_name": "Vault", + "norm_label": "vaultdocument" + }, + { + "label": "DocumentImportResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/types.ts", + "source_location": "L229", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_types_documentimportresult", + "community": 138, + "community_name": "Vault #138", + "norm_label": "documentimportresult" + }, + { + "label": "unlockProvider.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_unlockprovider", + "community": 177, + "community_name": "Vault #177", + "norm_label": "unlockprovider.ts" + }, + { + "label": "UnlockProviderType", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L21", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_unlockprovider_unlockprovidertype", + "community": 93, + "community_name": "Vault #93", + "norm_label": "unlockprovidertype" + }, + { + "label": "ProviderState", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L27", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_unlockprovider_providerstate", + "community": 93, + "community_name": "Vault #93", + "norm_label": "providerstate" + }, + { + "label": "UnlockResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L39", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_unlockprovider_unlockresult", + "community": 177, + "community_name": "Vault #177", + "norm_label": "unlockresult" + }, + { + "label": "VaultMetaContext", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L50", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_unlockprovider_vaultmetacontext", + "community": 177, + "community_name": "Vault #177", + "norm_label": "vaultmetacontext" + }, + { + "label": "UnlockProvider", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L71", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_unlockprovider_unlockprovider", + "community": 177, + "community_name": "Vault #177", + "norm_label": "unlockprovider" + }, + { + "label": ".isAvailable()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L81", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_unlockprovider_unlockprovider_isavailable", + "community": 177, + "community_name": "Vault #177", + "norm_label": ".isavailable()" + }, + { + "label": ".enroll()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L93", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_unlockprovider_unlockprovider_enroll", + "community": 177, + "community_name": "Vault #177", + "norm_label": ".enroll()" + }, + { + "label": ".unlock()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L112", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_unlockprovider_unlockprovider_unlock", + "community": 177, + "community_name": "Vault #177", + "norm_label": ".unlock()" + }, + { + "label": ".lock()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L121", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_unlockprovider_unlockprovider_lock", + "community": 177, + "community_name": "Vault #177", + "norm_label": ".lock()" + }, + { + "label": "PassphraseUnlockProvider", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L153", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_unlockprovider_passphraseunlockprovider", + "community": 177, + "community_name": "Vault #177", + "norm_label": "passphraseunlockprovider" + }, + { + "label": ".isAvailable()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L160", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_unlockprovider_passphraseunlockprovider_isavailable", + "community": 177, + "community_name": "Vault #177", + "norm_label": ".isavailable()" + }, + { + "label": ".enroll()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L164", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_unlockprovider_passphraseunlockprovider_enroll", + "community": 177, + "community_name": "Vault #177", + "norm_label": ".enroll()" + }, + { + "label": ".unlock()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L197", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_unlockprovider_passphraseunlockprovider_unlock", + "community": 177, + "community_name": "Vault #177", + "norm_label": ".unlock()" + }, + { + "label": ".lock()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L220", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_unlockprovider_passphraseunlockprovider_lock", + "community": 177, + "community_name": "Vault #177", + "norm_label": ".lock()" + }, + { + "label": "PROVIDER_REGISTRY", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L233", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_unlockprovider_provider_registry", + "community": 177, + "community_name": "Vault #177", + "norm_label": "provider_registry" + }, + { + "label": "resolveProvider()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L241", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_unlockprovider_resolveprovider", + "community": 93, + "community_name": "Vault #93", + "norm_label": "resolveprovider()" + }, + { + "label": "listAvailableProviders()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L251", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_unlockprovider_listavailableproviders", + "community": 177, + "community_name": "Vault #177", + "norm_label": "listavailableproviders()" + }, + { + "label": "IMPORTANT: Providers must NOT store the KEK or DEK beyond the current", + "file_type": "rationale", + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L68", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_unlockprovider_rationale_68", + "community": 177, + "community_name": "Vault #177", + "norm_label": "important: providers must not store the kek or dek beyond the current" + }, + { + "label": "vaultAccountGuards.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultAccountGuards.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_vaultaccountguards", + "community": 103, + "community_name": "Auth Vault", + "norm_label": "vaultaccountguards.ts" + }, + { + "label": "assertVaultDbAllowedForHandshakeFallback()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultAccountGuards.ts", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_vaultaccountguards_assertvaultdballowedforhandshakefallback", + "community": 103, + "community_name": "Auth Vault", + "norm_label": "assertvaultdballowedforhandshakefallback()" + }, + { + "label": "assertActiveVaultForOperation()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultAccountGuards.ts", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_vaultaccountguards_assertactivevaultforoperation", + "community": 103, + "community_name": "Auth Vault", + "norm_label": "assertactivevaultforoperation()" + }, + { + "label": "getSessionForVaultCheck()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultAccountGuards.ts", + "source_location": "L42", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_vaultaccountguards_getsessionforvaultcheck", + "community": 103, + "community_name": "Auth Vault", + "norm_label": "getsessionforvaultcheck()" + }, + { + "label": "readOwnerFromVaultMeta()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultAccountGuards.ts", + "source_location": "L46", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_vaultaccountguards_readownerfromvaultmeta", + "community": 103, + "community_name": "Auth Vault", + "norm_label": "readownerfromvaultmeta()" + }, + { + "label": "vaultAccountIsolation.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultAccountIsolation.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_vaultaccountisolation_test", + "community": 93, + "community_name": "Vault #93", + "norm_label": "vaultaccountisolation.test.ts" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultAccountIsolation.test.ts", + "source_location": "L20", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_vaultaccountisolation_test_paths", + "community": 93, + "community_name": "Vault #93", + "norm_label": "paths" + }, + { + "label": "makeOwner()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultAccountIsolation.test.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_vaultaccountisolation_test_makeowner", + "community": 93, + "community_name": "Vault #93", + "norm_label": "makeowner()" + }, + { + "label": "sessionA", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultAccountIsolation.test.ts", + "source_location": "L40", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_vaultaccountisolation_test_sessiona", + "community": 93, + "community_name": "Vault #93", + "norm_label": "sessiona" + }, + { + "label": "sessionB", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultAccountIsolation.test.ts", + "source_location": "L47", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_vaultaccountisolation_test_sessionb", + "community": 93, + "community_name": "Vault #93", + "norm_label": "sessionb" + }, + { + "label": "vaultApiKeyService.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultApiKeyService.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_vaultapikeyservice", + "community": 86, + "community_name": "Vault #86", + "norm_label": "vaultapikeyservice.ts" + }, + { + "label": "settingAad()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultApiKeyService.ts", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_vaultapikeyservice_settingaad", + "community": 86, + "community_name": "Vault #86", + "norm_label": "settingaad()" + }, + { + "label": "SettingBlob", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultApiKeyService.ts", + "source_location": "L26", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_vaultapikeyservice_settingblob", + "community": 86, + "community_name": "Vault #86", + "norm_label": "settingblob" + }, + { + "label": "saveAnthropicApiKey()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultApiKeyService.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_vaultapikeyservice_saveanthropicapikey", + "community": 86, + "community_name": "Vault #86", + "norm_label": "saveanthropicapikey()" + }, + { + "label": "getAnthropicApiKeyAsync()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultApiKeyService.ts", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_vaultapikeyservice_getanthropicapikeyasync", + "community": 86, + "community_name": "Vault #86", + "norm_label": "getanthropicapikeyasync()" + }, + { + "label": "hasAnthropicApiKey()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultApiKeyService.ts", + "source_location": "L80", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_vaultapikeyservice_hasanthropicapikey", + "community": 86, + "community_name": "Vault #86", + "norm_label": "hasanthropicapikey()" + }, + { + "label": "removeAnthropicApiKey()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultApiKeyService.ts", + "source_location": "L90", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_vaultapikeyservice_removeanthropicapikey", + "community": 86, + "community_name": "Vault #86", + "norm_label": "removeanthropicapikey()" + }, + { + "label": "ApiKeyValidationResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultApiKeyService.ts", + "source_location": "L96", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_vaultapikeyservice_apikeyvalidationresult", + "community": 86, + "community_name": "Vault #86", + "norm_label": "apikeyvalidationresult" + }, + { + "label": "validateAnthropicApiKey()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultApiKeyService.ts", + "source_location": "L107", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_vaultapikeyservice_validateanthropicapikey", + "community": 86, + "community_name": "Vault #86", + "norm_label": "validateanthropicapikey()" + }, + { + "label": "vaultCanon.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultCanon.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_vaultcanon", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "vaultcanon.ts" + }, + { + "label": "isOuterVaultActive()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultCanon.ts", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_vaultcanon_isoutervaultactive", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "isoutervaultactive()" + }, + { + "label": "getOuterVaultDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultCanon.ts", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_vaultcanon_getoutervaultdb", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "getoutervaultdb()" + }, + { + "label": "isInnerVaultUnlocked()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultCanon.ts", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_vaultcanon_isinnervaultunlocked", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "isinnervaultunlocked()" + }, + { + "label": "getInnerVaultDb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultCanon.ts", + "source_location": "L58", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_vaultcanon_getinnervaultdb", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "getinnervaultdb()" + }, + { + "label": "VaultStatusReport", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultCanon.ts", + "source_location": "L67", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_vaultcanon_vaultstatusreport", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "vaultstatusreport" + }, + { + "label": "HandshakeClassification", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultCanon.ts", + "source_location": "L82", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_vaultcanon_handshakeclassification", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "handshakeclassification" + }, + { + "label": "getVaultStatusReport()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultCanon.ts", + "source_location": "L92", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_vaultcanon_getvaultstatusreport", + "community": 19, + "community_name": "BEAP Inbox Sealed Read", + "norm_label": "getvaultstatusreport()" + }, + { + "label": "vaultOwnerIdentity.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultOwnerIdentity.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_vaultowneridentity", + "community": 93, + "community_name": "Vault #93", + "norm_label": "vaultowneridentity.ts" + }, + { + "label": "VaultOwnerRecord", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultOwnerIdentity.ts", + "source_location": "L15", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_vaultowneridentity_vaultownerrecord", + "community": 93, + "community_name": "Vault #93", + "norm_label": "vaultownerrecord" + }, + { + "label": "VAULT_OWNER_SCHEMA_VERSION", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultOwnerIdentity.ts", + "source_location": "L26", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_vaultowneridentity_vault_owner_schema_version", + "community": 93, + "community_name": "Vault #93", + "norm_label": "vault_owner_schema_version" + }, + { + "label": "VAULT_ACCOUNT_ERROR", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultOwnerIdentity.ts", + "source_location": "L28", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_vaultowneridentity_vault_account_error", + "community": 103, + "community_name": "Auth Vault", + "norm_label": "vault_account_error" + }, + { + "label": "VaultAccountErrorCode", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultOwnerIdentity.ts", + "source_location": "L36", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_vaultowneridentity_vaultaccounterrorcode", + "community": 93, + "community_name": "Vault #93", + "norm_label": "vaultaccounterrorcode" + }, + { + "label": "getCurrentAccountIdentity()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultOwnerIdentity.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_vaultowneridentity_getcurrentaccountidentity", + "community": 93, + "community_name": "Vault #93", + "norm_label": "getcurrentaccountidentity()" + }, + { + "label": "normalizeVaultOwner()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultOwnerIdentity.ts", + "source_location": "L58", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_vaultowneridentity_normalizevaultowner", + "community": 93, + "community_name": "Vault #93", + "norm_label": "normalizevaultowner()" + }, + { + "label": "sameString()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultOwnerIdentity.ts", + "source_location": "L62", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_vaultowneridentity_samestring", + "community": 93, + "community_name": "Vault #93", + "norm_label": "samestring()" + }, + { + "label": "vaultOwnerMatchesSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultOwnerIdentity.ts", + "source_location": "L67", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_vaultowneridentity_vaultownermatchessession", + "community": 93, + "community_name": "Vault #93", + "norm_label": "vaultownermatchessession()" + }, + { + "label": "assertVaultOwnerMatchesSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultOwnerIdentity.ts", + "source_location": "L80", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_vaultowneridentity_assertvaultownermatchessession", + "community": 93, + "community_name": "Vault #93", + "norm_label": "assertvaultownermatchessession()" + }, + { + "label": "hasVaultOwnerMetadata()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultOwnerIdentity.ts", + "source_location": "L91", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_vaultowneridentity_hasvaultownermetadata", + "community": 93, + "community_name": "Vault #93", + "norm_label": "hasvaultownermetadata()" + }, + { + "label": "vsbt.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/vsbt.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_vsbt_test", + "community": 329, + "community_name": "Vault #329", + "norm_label": "vsbt.test.ts" + }, + { + "label": "MockVaultService", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/vsbt.test.ts", + "source_location": "L48", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_vsbt_test_mockvaultservice", + "community": 329, + "community_name": "Vault #329", + "norm_label": "mockvaultservice" + }, + { + "label": ".unlock()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/vsbt.test.ts", + "source_location": "L51", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_vsbt_test_mockvaultservice_unlock", + "community": 329, + "community_name": "Vault #329", + "norm_label": ".unlock()" + }, + { + "label": ".lock()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/vsbt.test.ts", + "source_location": "L57", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_vsbt_test_mockvaultservice_lock", + "community": 329, + "community_name": "Vault #329", + "norm_label": ".lock()" + }, + { + "label": ".validateToken()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/vsbt.test.ts", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_vsbt_test_mockvaultservice_validatetoken", + "community": 329, + "community_name": "Vault #329", + "norm_label": ".validatetoken()" + }, + { + "label": ".getSessionToken()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/vsbt.test.ts", + "source_location": "L65", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_vsbt_test_mockvaultservice_getsessiontoken", + "community": 329, + "community_name": "Vault #329", + "norm_label": ".getsessiontoken()" + }, + { + "label": "VSBT_EXEMPT_PATHS", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/vsbt.test.ts", + "source_location": "L77", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_vsbt_test_vsbt_exempt_paths", + "community": 329, + "community_name": "Vault #329", + "norm_label": "vsbt_exempt_paths" + }, + { + "label": "simulateHttpMiddleware()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/vsbt.test.ts", + "source_location": "L84", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_vsbt_test_simulatehttpmiddleware", + "community": 329, + "community_name": "Vault #329", + "norm_label": "simulatehttpmiddleware()" + }, + { + "label": "VSBT_EXEMPT_RPC", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/vsbt.test.ts", + "source_location": "L106", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_vsbt_test_vsbt_exempt_rpc", + "community": 329, + "community_name": "Vault #329", + "norm_label": "vsbt_exempt_rpc" + }, + { + "label": "simulateWsVsbtGate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/vsbt.test.ts", + "source_location": "L110", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_vsbt_test_simulatewsvsbtgate", + "community": 329, + "community_name": "Vault #329", + "norm_label": "simulatewsvsbtgate()" + }, + { + "label": "bindSocket()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/vsbt.test.ts", + "source_location": "L272", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_vsbt_test_bindsocket", + "community": 329, + "community_name": "Vault #329", + "norm_label": "bindsocket()" + }, + { + "label": "gateCheck()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/main/vault/vsbt.test.ts", + "source_location": "L280", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_main_vault_vsbt_test_gatecheck", + "community": 329, + "community_name": "Vault #329", + "norm_label": "gatecheck()" + }, + { + "label": "preload.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_preload", + "community": 130, + "community_name": "Handshake #130", + "norm_label": "preload.ts" + }, + { + "label": "ConnectedPeer", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L41", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_preload_connectedpeer", + "community": 130, + "community_name": "Handshake #130", + "norm_label": "connectedpeer" + }, + { + "label": "OrchestratorModeConfig", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L49", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_preload_orchestratormodeconfig", + "community": 130, + "community_name": "Handshake #130", + "norm_label": "orchestratormodeconfig" + }, + { + "label": "Window", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L56", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_preload_window", + "community": 130, + "community_name": "Handshake #130", + "norm_label": "window" + }, + { + "label": "assertString()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L77", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_preload_assertstring", + "community": 130, + "community_name": "Handshake #130", + "norm_label": "assertstring()" + }, + { + "label": "assertExternalUrl()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L85", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_preload_assertexternalurl", + "community": 130, + "community_name": "Handshake #130", + "norm_label": "assertexternalurl()" + }, + { + "label": "assertFsPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L102", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_preload_assertfspath", + "community": 130, + "community_name": "Handshake #130", + "norm_label": "assertfspath()" + }, + { + "label": "assertTemplateFileName()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L109", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_preload_asserttemplatefilename", + "community": 130, + "community_name": "Handshake #130", + "norm_label": "asserttemplatefilename()" + }, + { + "label": "assertSecretString()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L117", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_preload_assertsecretstring", + "community": 130, + "community_name": "Handshake #130", + "norm_label": "assertsecretstring()" + }, + { + "label": "assertSecurityMode()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L124", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_preload_assertsecuritymode", + "community": 130, + "community_name": "Handshake #130", + "norm_label": "assertsecuritymode()" + }, + { + "label": "assertMailboxPort()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L129", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_preload_assertmailboxport", + "community": 130, + "community_name": "Handshake #130", + "norm_label": "assertmailboxport()" + }, + { + "label": "assertHostLike()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L137", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_preload_asserthostlike", + "community": 130, + "community_name": "Handshake #130", + "norm_label": "asserthostlike()" + }, + { + "label": "optionalImapLifecycleMailbox()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L148", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_preload_optionalimaplifecyclemailbox", + "community": 130, + "community_name": "Handshake #130", + "norm_label": "optionalimaplifecyclemailbox()" + }, + { + "label": "assertCustomMailboxPayload()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L158", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_preload_assertcustommailboxpayload", + "community": 130, + "community_name": "Handshake #130", + "norm_label": "assertcustommailboxpayload()" + }, + { + "label": "assertDiagnoseImapParams()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L240", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_preload_assertdiagnoseimapparams", + "community": 130, + "community_name": "Handshake #130", + "norm_label": "assertdiagnoseimapparams()" + }, + { + "label": "assertTheme()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L268", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_preload_asserttheme", + "community": 130, + "community_name": "Handshake #130", + "norm_label": "asserttheme()" + }, + { + "label": "CaptureMode", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L275", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_preload_capturemode", + "community": 130, + "community_name": "Handshake #130", + "norm_label": "capturemode" + }, + { + "label": "CapturePresetPayload", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L277", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_preload_capturepresetpayload", + "community": 130, + "community_name": "Handshake #130", + "norm_label": "capturepresetpayload" + }, + { + "label": "assertCapturePreset()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L283", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_preload_assertcapturepreset", + "community": 130, + "community_name": "Handshake #130", + "norm_label": "assertcapturepreset()" + }, + { + "label": "assertSavePreset()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L310", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_preload_assertsavepreset", + "community": 130, + "community_name": "Handshake #130", + "norm_label": "assertsavepreset()" + }, + { + "label": "assertBeapSessionImportPayload()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L315", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_preload_assertbeapsessionimportpayload", + "community": 130, + "community_name": "Handshake #130", + "norm_label": "assertbeapsessionimportpayload()" + }, + { + "label": "assertRelayAgentBoxOutputData()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L359", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_preload_assertrelayagentboxoutputdata", + "community": 130, + "community_name": "Handshake #130", + "norm_label": "assertrelayagentboxoutputdata()" + }, + { + "label": "subscribeWatchdogAlertIpc()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L407", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_preload_subscribewatchdogalertipc", + "community": 130, + "community_name": "Handshake #130", + "norm_label": "subscribewatchdogalertipc()" + }, + { + "label": "lmgtfyBridge", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L415", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_preload_lmgtfybridge", + "community": 130, + "community_name": "Handshake #130", + "norm_label": "lmgtfybridge" + }, + { + "label": "assertHostChatMessages()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L512", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_preload_asserthostchatmessages", + "community": 130, + "community_name": "Handshake #130", + "norm_label": "asserthostchatmessages()" + }, + { + "label": "buildInternalInferenceHostChatPayload()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L539", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_preload_buildinternalinferencehostchatpayload", + "community": 130, + "community_name": "Handshake #130", + "norm_label": "buildinternalinferencehostchatpayload()" + }, + { + "label": "buildInternalInferenceRequestCompletionPayload()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L565", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_preload_buildinternalinferencerequestcompletionpayload", + "community": 130, + "community_name": "Handshake #130", + "norm_label": "buildinternalinferencerequestcompletionpayload()" + }, + { + "label": "assertRelayUrl()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L1215", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_preload_assertrelayurl", + "community": 130, + "community_name": "Handshake #130", + "norm_label": "assertrelayurl()" + }, + { + "label": "assertBuiltinLetterCore()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L1701", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_preload_assertbuiltinlettercore", + "community": 130, + "community_name": "Handshake #130", + "norm_label": "assertbuiltinlettercore()" + }, + { + "label": "webrtcTransportPreload.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/preload/webrtcTransportPreload.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_preload_webrtctransportpreload", + "community": 505, + "community_name": "Webrtctransportpreload", + "norm_label": "webrtctransportpreload.ts" + }, + { + "label": "api", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/preload/webrtcTransportPreload.ts", + "source_location": "L10", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_preload_webrtctransportpreload_api", + "community": 505, + "community_name": "Webrtctransportpreload", + "norm_label": "api" + }, + { + "label": "WrdeskWebrtcP2p", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/preload/webrtcTransportPreload.ts", + "source_location": "L31", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_preload_webrtctransportpreload_wrdeskwebrtcp2p", + "community": 505, + "community_name": "Webrtctransportpreload", + "norm_label": "wrdeskwebrtcp2p" + }, + { + "label": "PostgresAdapter.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/storage/PostgresAdapter.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_storage_postgresadapter", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": "postgresadapter.ts" + }, + { + "label": "PostgresConfig", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/storage/PostgresAdapter.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_storage_postgresadapter_postgresconfig", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": "postgresconfig" + }, + { + "label": "PostgresAdapter", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/storage/PostgresAdapter.ts", + "source_location": "L19", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_storage_postgresadapter_postgresadapter", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": "postgresadapter" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/storage/PostgresAdapter.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_storage_postgresadapter_postgresadapter_constructor", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": ".constructor()" + }, + { + "label": ".connect()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/storage/PostgresAdapter.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_storage_postgresadapter_postgresadapter_connect", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": ".connect()" + }, + { + "label": ".getPool()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/storage/PostgresAdapter.ts", + "source_location": "L71", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_storage_postgresadapter_postgresadapter_getpool", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": ".getpool()" + }, + { + "label": ".get()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/storage/PostgresAdapter.ts", + "source_location": "L84", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_storage_postgresadapter_postgresadapter_get", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": ".get()" + }, + { + "label": ".set()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/storage/PostgresAdapter.ts", + "source_location": "L102", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_storage_postgresadapter_postgresadapter_set", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": ".set()" + }, + { + "label": ".getAll()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/storage/PostgresAdapter.ts", + "source_location": "L117", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_storage_postgresadapter_postgresadapter_getall", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": ".getall()" + }, + { + "label": ".setAll()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/storage/PostgresAdapter.ts", + "source_location": "L132", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_storage_postgresadapter_postgresadapter_setall", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": ".setall()" + }, + { + "label": ".close()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/storage/PostgresAdapter.ts", + "source_location": "L162", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_storage_postgresadapter_postgresadapter_close", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": ".close()" + }, + { + "label": "migrations.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/storage/migrations.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_storage_migrations", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": "migrations.ts" + }, + { + "label": "runMigrations()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/storage/migrations.ts", + "source_location": "L46", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_storage_migrations_runmigrations", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": "runmigrations()" + }, + { + "label": "userDataBootstrapState.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/userDataBootstrapState.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_userdatabootstrapstate", + "community": 316, + "community_name": "Email #316", + "norm_label": "userdatabootstrapstate.ts" + }, + { + "label": "isUserDataPathBootstrapped()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/userDataBootstrapState.ts", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_userdatabootstrapstate_isuserdatapathbootstrapped", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "isuserdatapathbootstrapped()" + }, + { + "label": "markUserDataPathBootstrapped()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/userDataBootstrapState.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_userdatabootstrapstate_markuserdatapathbootstrapped", + "community": 316, + "community_name": "Email #316", + "norm_label": "markuserdatapathbootstrapped()" + }, + { + "label": "resetUserDataBootstrapStateForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/userDataBootstrapState.ts", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_userdatabootstrapstate_resetuserdatabootstrapstatefortests", + "community": 316, + "community_name": "Email #316", + "norm_label": "resetuserdatabootstrapstatefortests()" + }, + { + "label": "watchdogService.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_watchdog_watchdogservice", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": "watchdogservice.ts" + }, + { + "label": "WatchdogScanRequest", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogscanrequest", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": "watchdogscanrequest" + }, + { + "label": "WatchdogThreat", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L41", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogthreat", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": "watchdogthreat" + }, + { + "label": "WatchdogResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L49", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogresult", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": "watchdogresult" + }, + { + "label": "WatchdogConfig", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L56", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogconfig", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": "watchdogconfig" + }, + { + "label": "DEFAULT_WATCHDOG_CONFIG", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L65", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_watchdog_watchdogservice_default_watchdog_config", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": "default_watchdog_config" + }, + { + "label": "estimateImageTokensFromBase64Length()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L90", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_watchdog_watchdogservice_estimateimagetokensfrombase64length", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": "estimateimagetokensfrombase64length()" + }, + { + "label": "getDirSizeBytesRecursive()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L95", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_watchdog_watchdogservice_getdirsizebytesrecursive", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": "getdirsizebytesrecursive()" + }, + { + "label": "wipeDirContents()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L124", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_watchdog_watchdogservice_wipedircontents", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": "wipedircontents()" + }, + { + "label": "maybeGlobalGc()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L147", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_watchdog_watchdogservice_maybeglobalgc", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": "maybeglobalgc()" + }, + { + "label": "resolveWatchdogSystemPromptFromMode()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L156", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_watchdog_watchdogservice_resolvewatchdogsystempromptfrommode", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": "resolvewatchdogsystempromptfrommode()" + }, + { + "label": "resolveWatchdogEffectiveModelId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L164", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_watchdog_watchdogservice_resolvewatchdogeffectivemodelid", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": "resolvewatchdogeffectivemodelid()" + }, + { + "label": "SEVERITIES", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L186", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_watchdog_watchdogservice_severities", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": "severities" + }, + { + "label": "watchdogTempRoot()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L188", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogtemproot", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": "watchdogtemproot()" + }, + { + "label": "displayLabel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L192", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_watchdog_watchdogservice_displaylabel", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": "displaylabel()" + }, + { + "label": "llmFailureThreat()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L197", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_watchdog_watchdogservice_llmfailurethreat", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": "llmfailurethreat()" + }, + { + "label": "WatchdogService", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L209", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": "watchdogservice" + }, + { + "label": ".setBroadcast()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L238", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_setbroadcast", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": ".setbroadcast()" + }, + { + "label": ".setOnScanComplete()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L242", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_setonscancomplete", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": ".setonscancomplete()" + }, + { + "label": ".setConfig()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L246", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_setconfig", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": ".setconfig()" + }, + { + "label": ".getConfig()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L271", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_getconfig", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": ".getconfig()" + }, + { + "label": ".captureAllScreens()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L275", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_captureallscreens", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": ".captureallscreens()" + }, + { + "label": ".handleDomResponse()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L344", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_handledomresponse", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": ".handledomresponse()" + }, + { + "label": ".requestDomSnapshots()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L360", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_requestdomsnapshots", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": ".requestdomsnapshots()" + }, + { + "label": ".buildWatchdogPrompt()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L410", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_buildwatchdogprompt", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": ".buildwatchdogprompt()" + }, + { + "label": ".buildSummaryPrompt()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L442", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_buildsummaryprompt", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": ".buildsummaryprompt()" + }, + { + "label": ".parseWatchdogResponse()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L467", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_parsewatchdogresponse", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": ".parsewatchdogresponse()" + }, + { + "label": ".runScan()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L511", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_runscan", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": ".runscan()" + }, + { + "label": ".runSmartSummary()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L646", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_runsmartsummary", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": ".runsmartsummary()" + }, + { + "label": ".logWatchdogRemotePrivacyNote()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L710", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_logwatchdogremoteprivacynote", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": ".logwatchdogremoteprivacynote()" + }, + { + "label": ".enforceTempDirSizeLimitBeforeScan()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L724", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_enforcetempdirsizelimitbeforescan", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": ".enforcetempdirsizelimitbeforescan()" + }, + { + "label": ".clearScanSensitivePayload()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L743", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_clearscansensitivepayload", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": ".clearscansensitivepayload()" + }, + { + "label": ".autoIncreaseIntervalAfterSlowScans()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L753", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_autoincreaseintervalafterslowscans", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": ".autoincreaseintervalafterslowscans()" + }, + { + "label": ".deletePaths()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L767", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_deletepaths", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": ".deletepaths()" + }, + { + "label": ".scheduleDeletion()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L777", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_scheduledeletion", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": ".scheduledeletion()" + }, + { + "label": ".startContinuous()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L786", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_startcontinuous", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": ".startcontinuous()" + }, + { + "label": ".stopContinuous()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L795", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_stopcontinuous", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": ".stopcontinuous()" + }, + { + "label": ".isContinuousRunning()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L803", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_iscontinuousrunning", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": ".iscontinuousrunning()" + }, + { + "label": ".isScanning()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L807", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_isscanning", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": ".isscanning()" + }, + { + "label": ".isSmartSummaryRunning()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L811", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_issmartsummaryrunning", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": ".issmartsummaryrunning()" + }, + { + "label": ".cleanup()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L815", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_cleanup", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": ".cleanup()" + }, + { + "label": "stripMarkdownFences()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L829", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_watchdog_watchdogservice_stripmarkdownfences", + "community": 90, + "community_name": "Watchdog Lmgtfy LLM", + "norm_label": "stripmarkdownfences()" + }, + { + "label": "electron/wrChatSurface.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/wrChatSurface.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_wrchatsurface", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "electron/wrchatsurface.ts" + }, + { + "label": "WrChatSurface", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/wrChatSurface.ts", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_wrchatsurface_wrchatsurface", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "wrchatsurface" + }, + { + "label": "SOURCE_TO_SURFACE", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/wrChatSurface.ts", + "source_location": "L9", + "_origin": "ast", + "id": "apps_electron_vite_project_electron_wrchatsurface_source_to_surface", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "source_to_surface" + }, + { + "label": "surfaceFromSource()", + "file_type": "code", + "source_file": "apps/electron-vite-project/electron/wrChatSurface.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_electron_wrchatsurface_surfacefromsource", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": "surfacefromsource()" + }, + { + "label": "get-logs.ps1", + "file_type": "code", + "source_file": "apps/electron-vite-project/get-logs.ps1", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_get_logs", + "community": 592, + "community_name": "Getlogs", + "norm_label": "get-logs.ps1" + }, + { + "label": "_", + "file_type": "code", + "source_file": "apps/electron-vite-project/main.js", + "source_location": "L12", + "_origin": "ast", + "id": "apps_electron_vite_project_main", + "community": 546, + "community_name": "Community 546", + "norm_label": "_" + }, + { + "label": "o", + "file_type": "code", + "source_file": "apps/electron-vite-project/main.js", + "source_location": "L12", + "_origin": "ast", + "id": "apps_electron_vite_project_main_o", + "community": 546, + "community_name": "Community 546", + "norm_label": "o" + }, + { + "label": "electron-vite-project/package.json", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_package", + "community": 157, + "community_name": "Community 157", + "norm_label": "electron-vite-project/package.json" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L2", + "_origin": "ast", + "id": "apps_electron_vite_project_package_name", + "community": 157, + "community_name": "Community 157", + "norm_label": "name" + }, + { + "label": "private", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L3", + "_origin": "ast", + "id": "apps_electron_vite_project_package_private", + "community": 157, + "community_name": "Community 157", + "norm_label": "private" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L4", + "_origin": "ast", + "id": "apps_electron_vite_project_package_version", + "community": 157, + "community_name": "Community 157", + "norm_label": "version" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L5", + "_origin": "ast", + "id": "apps_electron_vite_project_package_type", + "community": 157, + "community_name": "Community 157", + "norm_label": "type" + }, + { + "label": "scripts", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L6", + "_origin": "ast", + "id": "apps_electron_vite_project_package_scripts", + "community": 157, + "community_name": "Community 157", + "norm_label": "scripts" + }, + { + "label": "dev", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L7", + "_origin": "ast", + "id": "apps_electron_vite_project_package_scripts_dev", + "community": 157, + "community_name": "Community 157", + "norm_label": "dev" + }, + { + "label": "prebuild", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L8", + "_origin": "ast", + "id": "apps_electron_vite_project_package_scripts_prebuild", + "community": 157, + "community_name": "Community 157", + "norm_label": "prebuild" + }, + { + "label": "prerebuild", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L9", + "_origin": "ast", + "id": "apps_electron_vite_project_package_scripts_prerebuild", + "community": 157, + "community_name": "Community 157", + "norm_label": "prerebuild" + }, + { + "label": "predist", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L10", + "_origin": "ast", + "id": "apps_electron_vite_project_package_scripts_predist", + "community": 157, + "community_name": "Community 157", + "norm_label": "predist" + }, + { + "label": "prebuild:clean", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L11", + "_origin": "ast", + "id": "apps_electron_vite_project_package_scripts_prebuild_clean", + "community": 157, + "community_name": "Community 157", + "norm_label": "prebuild:clean" + }, + { + "label": "prebuild:portable", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L12", + "_origin": "ast", + "id": "apps_electron_vite_project_package_scripts_prebuild_portable", + "community": 157, + "community_name": "Community 157", + "norm_label": "prebuild:portable" + }, + { + "label": "prebuild:nsis", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L13", + "_origin": "ast", + "id": "apps_electron_vite_project_package_scripts_prebuild_nsis", + "community": 157, + "community_name": "Community 157", + "norm_label": "prebuild:nsis" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L14", + "_origin": "ast", + "id": "apps_electron_vite_project_package_scripts_build", + "community": 157, + "community_name": "Community 157", + "norm_label": "build" + }, + { + "label": "rebuild", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L15", + "_origin": "ast", + "id": "apps_electron_vite_project_package_scripts_rebuild", + "community": 157, + "community_name": "Community 157", + "norm_label": "rebuild" + }, + { + "label": "dist", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L16", + "_origin": "ast", + "id": "apps_electron_vite_project_package_scripts_dist", + "community": 157, + "community_name": "Community 157", + "norm_label": "dist" + }, + { + "label": "dist:clean", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L17", + "_origin": "ast", + "id": "apps_electron_vite_project_package_scripts_dist_clean", + "community": 157, + "community_name": "Community 157", + "norm_label": "dist:clean" + }, + { + "label": "clean", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L18", + "_origin": "ast", + "id": "apps_electron_vite_project_package_scripts_clean", + "community": 157, + "community_name": "Community 157", + "norm_label": "clean" + }, + { + "label": "clear-caches", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L19", + "_origin": "ast", + "id": "apps_electron_vite_project_package_scripts_clear_caches", + "community": 157, + "community_name": "Community 157", + "norm_label": "clear-caches" + }, + { + "label": "kill", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L20", + "_origin": "ast", + "id": "apps_electron_vite_project_package_scripts_kill", + "community": 157, + "community_name": "Community 157", + "norm_label": "kill" + }, + { + "label": "build:clean", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L21", + "_origin": "ast", + "id": "apps_electron_vite_project_package_scripts_build_clean", + "community": 157, + "community_name": "Community 157", + "norm_label": "build:clean" + }, + { + "label": "build:portable", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L22", + "_origin": "ast", + "id": "apps_electron_vite_project_package_scripts_build_portable", + "community": 157, + "community_name": "Community 157", + "norm_label": "build:portable" + }, + { + "label": "build:nsis", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L23", + "_origin": "ast", + "id": "apps_electron_vite_project_package_scripts_build_nsis", + "community": 157, + "community_name": "Community 157", + "norm_label": "build:nsis" + }, + { + "label": "test:installer-win-role", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L24", + "_origin": "ast", + "id": "apps_electron_vite_project_package_scripts_test_installer_win_role", + "community": 157, + "community_name": "Community 157", + "norm_label": "test:installer-win-role" + }, + { + "label": "test:installer-win-home-guest", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L25", + "_origin": "ast", + "id": "apps_electron_vite_project_package_scripts_test_installer_win_home_guest", + "community": 157, + "community_name": "Community 157", + "norm_label": "test:installer-win-home-guest" + }, + { + "label": "lint", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L26", + "_origin": "ast", + "id": "apps_electron_vite_project_package_scripts_lint", + "community": 157, + "community_name": "Community 157", + "norm_label": "lint" + }, + { + "label": "preview", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L27", + "_origin": "ast", + "id": "apps_electron_vite_project_package_scripts_preview", + "community": 157, + "community_name": "Community 157", + "norm_label": "preview" + }, + { + "label": "smoke:pdf", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L28", + "_origin": "ast", + "id": "apps_electron_vite_project_package_scripts_smoke_pdf", + "community": 157, + "community_name": "Community 157", + "norm_label": "smoke:pdf" + }, + { + "label": "diagnose", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L29", + "_origin": "ast", + "id": "apps_electron_vite_project_package_scripts_diagnose", + "community": 157, + "community_name": "Community 157", + "norm_label": "diagnose" + }, + { + "label": "restart", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L30", + "_origin": "ast", + "id": "apps_electron_vite_project_package_scripts_restart", + "community": 157, + "community_name": "Community 157", + "norm_label": "restart" + }, + { + "label": "postinstall", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L31", + "_origin": "ast", + "id": "apps_electron_vite_project_package_scripts_postinstall", + "community": 157, + "community_name": "Community 157", + "norm_label": "postinstall" + }, + { + "label": "rebuild:native", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L32", + "_origin": "ast", + "id": "apps_electron_vite_project_package_scripts_rebuild_native", + "community": 157, + "community_name": "Community 157", + "norm_label": "rebuild:native" + }, + { + "label": "dependencies", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L34", + "_origin": "ast", + "id": "apps_electron_vite_project_package_dependencies", + "community": 96, + "community_name": "Community 96", + "norm_label": "dependencies" + }, + { + "label": "@noble/curves", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L35", + "_origin": "ast", + "id": "apps_electron_vite_project_package_dependencies_noble_curves", + "community": 96, + "community_name": "Community 96", + "norm_label": "@noble/curves" + }, + { + "label": "@noble/curves", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L35", + "_origin": "ast", + "id": "apps_electron_vite_project_package_json_noble_curves", + "community": 96, + "community_name": "Community 96", + "norm_label": "@noble/curves" + }, + { + "label": "@noble/post-quantum", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L36", + "_origin": "ast", + "id": "apps_electron_vite_project_package_dependencies_noble_post_quantum", + "community": 96, + "community_name": "Community 96", + "norm_label": "@noble/post-quantum" + }, + { + "label": "@noble/post-quantum", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L36", + "_origin": "ast", + "id": "noble_post_quantum", + "community": 96, + "community_name": "Community 96", + "norm_label": "@noble/post-quantum" + }, + { + "label": "@repo/ingestion-core", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L37", + "_origin": "ast", + "id": "apps_electron_vite_project_package_dependencies_repo_ingestion_core", + "community": 96, + "community_name": "Community 96", + "norm_label": "@repo/ingestion-core" + }, + { + "label": "@repo/ingestion-core", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L37", + "_origin": "ast", + "id": "apps_electron_vite_project_package_json_repo_ingestion_core", + "community": 96, + "community_name": "Community 96", + "norm_label": "@repo/ingestion-core" + }, + { + "label": "@repo/shared-beap-ui", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L38", + "_origin": "ast", + "id": "apps_electron_vite_project_package_dependencies_repo_shared_beap_ui", + "community": 553, + "community_name": "Community 553", + "norm_label": "@repo/shared-beap-ui" + }, + { + "label": "@repo/shared-beap-ui", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L38", + "_origin": "ast", + "id": "repo_shared_beap_ui", + "community": 553, + "community_name": "Community 553", + "norm_label": "@repo/shared-beap-ui" + }, + { + "label": "@types/express", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L39", + "_origin": "ast", + "id": "apps_electron_vite_project_package_dependencies_types_express", + "community": 554, + "community_name": "Community 554", + "norm_label": "@types/express" + }, + { + "label": "@types/express", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L39", + "_origin": "ast", + "id": "types_express", + "community": 554, + "community_name": "Community 554", + "norm_label": "@types/express" + }, + { + "label": "@types/imap", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L40", + "_origin": "ast", + "id": "apps_electron_vite_project_package_dependencies_types_imap", + "community": 96, + "community_name": "Community 96", + "norm_label": "@types/imap" + }, + { + "label": "@types/imap", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L40", + "_origin": "ast", + "id": "types_imap", + "community": 96, + "community_name": "Community 96", + "norm_label": "@types/imap" + }, + { + "label": "@types/mailparser", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L41", + "_origin": "ast", + "id": "apps_electron_vite_project_package_dependencies_types_mailparser", + "community": 96, + "community_name": "Community 96", + "norm_label": "@types/mailparser" + }, + { + "label": "@types/mailparser", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L41", + "_origin": "ast", + "id": "types_mailparser", + "community": 96, + "community_name": "Community 96", + "norm_label": "@types/mailparser" + }, + { + "label": "@types/nodemailer", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L42", + "_origin": "ast", + "id": "apps_electron_vite_project_package_dependencies_types_nodemailer", + "community": 96, + "community_name": "Community 96", + "norm_label": "@types/nodemailer" + }, + { + "label": "@types/nodemailer", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L42", + "_origin": "ast", + "id": "types_nodemailer", + "community": 96, + "community_name": "Community 96", + "norm_label": "@types/nodemailer" + }, + { + "label": "@types/ws", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L43", + "_origin": "ast", + "id": "apps_electron_vite_project_package_dependencies_types_ws", + "community": 555, + "community_name": "Community 555", + "norm_label": "@types/ws" + }, + { + "label": "@types/ws", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L43", + "_origin": "ast", + "id": "apps_electron_vite_project_package_json_types_ws", + "community": 555, + "community_name": "Community 555", + "norm_label": "@types/ws" + }, + { + "label": "better-sqlite3", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L44", + "_origin": "ast", + "id": "apps_electron_vite_project_package_dependencies_better_sqlite3", + "community": 547, + "community_name": "Community 547", + "norm_label": "better-sqlite3" + }, + { + "label": "better-sqlite3", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L44", + "_origin": "ast", + "id": "apps_electron_vite_project_package_json_better_sqlite3", + "community": 547, + "community_name": "Community 547", + "norm_label": "better-sqlite3" + }, + { + "label": "body-parser", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L45", + "_origin": "ast", + "id": "apps_electron_vite_project_package_dependencies_body_parser", + "community": 96, + "community_name": "Community 96", + "norm_label": "body-parser" + }, + { + "label": "body-parser", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L45", + "_origin": "ast", + "id": "body_parser", + "community": 96, + "community_name": "Community 96", + "norm_label": "body-parser" + }, + { + "label": "bufferutil", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L46", + "_origin": "ast", + "id": "apps_electron_vite_project_package_dependencies_bufferutil", + "community": 96, + "community_name": "Community 96", + "norm_label": "bufferutil" + }, + { + "label": "bufferutil", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L46", + "_origin": "ast", + "id": "bufferutil", + "community": 96, + "community_name": "Community 96", + "norm_label": "bufferutil" + }, + { + "label": "canvas", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L47", + "_origin": "ast", + "id": "apps_electron_vite_project_package_dependencies_canvas", + "community": 96, + "community_name": "Community 96", + "norm_label": "canvas" + }, + { + "label": "canvas", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L47", + "_origin": "ast", + "id": "apps_electron_vite_project_package_json_canvas", + "community": 96, + "community_name": "Community 96", + "norm_label": "canvas" + }, + { + "label": "docx", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L48", + "_origin": "ast", + "id": "apps_electron_vite_project_package_dependencies_docx", + "community": 96, + "community_name": "Community 96", + "norm_label": "docx" + }, + { + "label": "docx", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L48", + "_origin": "ast", + "id": "docx", + "community": 96, + "community_name": "Community 96", + "norm_label": "docx" + }, + { + "label": "express", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L49", + "_origin": "ast", + "id": "apps_electron_vite_project_package_dependencies_express", + "community": 96, + "community_name": "Community 96", + "norm_label": "express" + }, + { + "label": "express", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L49", + "_origin": "ast", + "id": "express", + "community": 96, + "community_name": "Community 96", + "norm_label": "express" + }, + { + "label": "imap", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L50", + "_origin": "ast", + "id": "apps_electron_vite_project_package_dependencies_imap", + "community": 96, + "community_name": "Community 96", + "norm_label": "imap" + }, + { + "label": "imap", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L50", + "_origin": "ast", + "id": "imap", + "community": 96, + "community_name": "Community 96", + "norm_label": "imap" + }, + { + "label": "is-electron", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L51", + "_origin": "ast", + "id": "apps_electron_vite_project_package_dependencies_is_electron", + "community": 96, + "community_name": "Community 96", + "norm_label": "is-electron" + }, + { + "label": "is-electron", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L51", + "_origin": "ast", + "id": "is_electron", + "community": 96, + "community_name": "Community 96", + "norm_label": "is-electron" + }, + { + "label": "jose", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L52", + "_origin": "ast", + "id": "apps_electron_vite_project_package_dependencies_jose", + "community": 548, + "community_name": "Community 548", + "norm_label": "jose" + }, + { + "label": "jose", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L52", + "_origin": "ast", + "id": "apps_electron_vite_project_package_json_jose", + "community": 548, + "community_name": "Community 548", + "norm_label": "jose" + }, + { + "label": "keytar", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L53", + "_origin": "ast", + "id": "apps_electron_vite_project_package_dependencies_keytar", + "community": 96, + "community_name": "Community 96", + "norm_label": "keytar" + }, + { + "label": "keytar", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L53", + "_origin": "ast", + "id": "keytar", + "community": 96, + "community_name": "Community 96", + "norm_label": "keytar" + }, + { + "label": "libsodium-wrappers", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L54", + "_origin": "ast", + "id": "apps_electron_vite_project_package_dependencies_libsodium_wrappers", + "community": 96, + "community_name": "Community 96", + "norm_label": "libsodium-wrappers" + }, + { + "label": "libsodium-wrappers", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L54", + "_origin": "ast", + "id": "libsodium_wrappers", + "community": 96, + "community_name": "Community 96", + "norm_label": "libsodium-wrappers" + }, + { + "label": "mailparser", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L55", + "_origin": "ast", + "id": "apps_electron_vite_project_package_dependencies_mailparser", + "community": 96, + "community_name": "Community 96", + "norm_label": "mailparser" + }, + { + "label": "mailparser", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L55", + "_origin": "ast", + "id": "mailparser", + "community": 96, + "community_name": "Community 96", + "norm_label": "mailparser" + }, + { + "label": "mammoth", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L56", + "_origin": "ast", + "id": "apps_electron_vite_project_package_dependencies_mammoth", + "community": 96, + "community_name": "Community 96", + "norm_label": "mammoth" + }, + { + "label": "mammoth", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L56", + "_origin": "ast", + "id": "mammoth", + "community": 96, + "community_name": "Community 96", + "norm_label": "mammoth" + }, + { + "label": "node-fetch", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L57", + "_origin": "ast", + "id": "apps_electron_vite_project_package_dependencies_node_fetch", + "community": 549, + "community_name": "Community 549", + "norm_label": "node-fetch" + }, + { + "label": "node-fetch", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L57", + "_origin": "ast", + "id": "node_fetch", + "community": 549, + "community_name": "Community 549", + "norm_label": "node-fetch" + }, + { + "label": "nodemailer", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L58", + "_origin": "ast", + "id": "apps_electron_vite_project_package_dependencies_nodemailer", + "community": 96, + "community_name": "Community 96", + "norm_label": "nodemailer" + }, + { + "label": "nodemailer", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L58", + "_origin": "ast", + "id": "nodemailer", + "community": 96, + "community_name": "Community 96", + "norm_label": "nodemailer" + }, + { + "label": "open", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L59", + "_origin": "ast", + "id": "apps_electron_vite_project_package_dependencies_open", + "community": 96, + "community_name": "Community 96", + "norm_label": "open" + }, + { + "label": "open", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L59", + "_origin": "ast", + "id": "open", + "community": 96, + "community_name": "Community 96", + "norm_label": "open" + }, + { + "label": "pdfjs-dist", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L60", + "_origin": "ast", + "id": "apps_electron_vite_project_package_dependencies_pdfjs_dist", + "community": 96, + "community_name": "Community 96", + "norm_label": "pdfjs-dist" + }, + { + "label": "pdfjs-dist", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L60", + "_origin": "ast", + "id": "apps_electron_vite_project_package_json_pdfjs_dist", + "community": 96, + "community_name": "Community 96", + "norm_label": "pdfjs-dist" + }, + { + "label": "pg", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L61", + "_origin": "ast", + "id": "apps_electron_vite_project_package_dependencies_pg", + "community": 96, + "community_name": "Community 96", + "norm_label": "pg" + }, + { + "label": "pg", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L61", + "_origin": "ast", + "id": "pg", + "community": 96, + "community_name": "Community 96", + "norm_label": "pg" + }, + { + "label": "pizzip", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L62", + "_origin": "ast", + "id": "apps_electron_vite_project_package_dependencies_pizzip", + "community": 422, + "community_name": "Letter #422", + "norm_label": "pizzip" + }, + { + "label": "pizzip", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L62", + "_origin": "ast", + "id": "pizzip", + "community": 422, + "community_name": "Letter #422", + "norm_label": "pizzip" + }, + { + "label": "react", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L63", + "_origin": "ast", + "id": "apps_electron_vite_project_package_dependencies_react", + "community": 550, + "community_name": "Community 550", + "norm_label": "react" + }, + { + "label": "react", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L63", + "_origin": "ast", + "id": "apps_electron_vite_project_package_json_react", + "community": 550, + "community_name": "Community 550", + "norm_label": "react" + }, + { + "label": "react-dom", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L64", + "_origin": "ast", + "id": "apps_electron_vite_project_package_dependencies_react_dom", + "community": 96, + "community_name": "Community 96", + "norm_label": "react-dom" + }, + { + "label": "react-dom", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L64", + "_origin": "ast", + "id": "apps_electron_vite_project_package_json_react_dom", + "community": 96, + "community_name": "Community 96", + "norm_label": "react-dom" + }, + { + "label": "recharts", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L65", + "_origin": "ast", + "id": "apps_electron_vite_project_package_dependencies_recharts", + "community": 551, + "community_name": "Community 551", + "norm_label": "recharts" + }, + { + "label": "recharts", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L65", + "_origin": "ast", + "id": "recharts", + "community": 551, + "community_name": "Community 551", + "norm_label": "recharts" + }, + { + "label": "regenerator-runtime", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L66", + "_origin": "ast", + "id": "apps_electron_vite_project_package_dependencies_regenerator_runtime", + "community": 552, + "community_name": "Community 552", + "norm_label": "regenerator-runtime" + }, + { + "label": "regenerator-runtime", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L66", + "_origin": "ast", + "id": "regenerator_runtime", + "community": 552, + "community_name": "Community 552", + "norm_label": "regenerator-runtime" + }, + { + "label": "tesseract.js", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L67", + "_origin": "ast", + "id": "apps_electron_vite_project_package_dependencies_tesseract_js", + "community": 96, + "community_name": "Community 96", + "norm_label": "tesseract.js" + }, + { + "label": "tesseract.js", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L67", + "_origin": "ast", + "id": "tesseract_js", + "community": 96, + "community_name": "Community 96", + "norm_label": "tesseract.js" + }, + { + "label": "utf-8-validate", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L68", + "_origin": "ast", + "id": "apps_electron_vite_project_package_dependencies_utf_8_validate", + "community": 96, + "community_name": "Community 96", + "norm_label": "utf-8-validate" + }, + { + "label": "utf-8-validate", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L68", + "_origin": "ast", + "id": "utf_8_validate", + "community": 96, + "community_name": "Community 96", + "norm_label": "utf-8-validate" + }, + { + "label": "whatwg-url", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L69", + "_origin": "ast", + "id": "apps_electron_vite_project_package_dependencies_whatwg_url", + "community": 556, + "community_name": "Community 556", + "norm_label": "whatwg-url" + }, + { + "label": "whatwg-url", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L69", + "_origin": "ast", + "id": "whatwg_url", + "community": 556, + "community_name": "Community 556", + "norm_label": "whatwg-url" + }, + { + "label": "ws", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L70", + "_origin": "ast", + "id": "apps_electron_vite_project_package_dependencies_ws", + "community": 96, + "community_name": "Community 96", + "norm_label": "ws" + }, + { + "label": "ws", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L70", + "_origin": "ast", + "id": "apps_electron_vite_project_package_json_ws", + "community": 96, + "community_name": "Community 96", + "norm_label": "ws" + }, + { + "label": "zod", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L71", + "_origin": "ast", + "id": "apps_electron_vite_project_package_dependencies_zod", + "community": 557, + "community_name": "Community 557", + "norm_label": "zod" + }, + { + "label": "zod", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L71", + "_origin": "ast", + "id": "apps_electron_vite_project_package_json_zod", + "community": 557, + "community_name": "Community 557", + "norm_label": "zod" + }, + { + "label": "zustand", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L72", + "_origin": "ast", + "id": "apps_electron_vite_project_package_dependencies_zustand", + "community": 96, + "community_name": "Community 96", + "norm_label": "zustand" + }, + { + "label": "zustand", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L72", + "_origin": "ast", + "id": "apps_electron_vite_project_package_json_zustand", + "community": 96, + "community_name": "Community 96", + "norm_label": "zustand" + }, + { + "label": "devDependencies", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L74", + "_origin": "ast", + "id": "apps_electron_vite_project_package_devdependencies", + "community": 117, + "community_name": "Community 117", + "norm_label": "devdependencies" + }, + { + "label": "@types/better-sqlite3", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L75", + "_origin": "ast", + "id": "apps_electron_vite_project_package_devdependencies_types_better_sqlite3", + "community": 117, + "community_name": "Community 117", + "norm_label": "@types/better-sqlite3" + }, + { + "label": "@types/better-sqlite3", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L75", + "_origin": "ast", + "id": "apps_electron_vite_project_package_json_types_better_sqlite3", + "community": 117, + "community_name": "Community 117", + "norm_label": "@types/better-sqlite3" + }, + { + "label": "@types/chrome", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L76", + "_origin": "ast", + "id": "apps_electron_vite_project_package_devdependencies_types_chrome", + "community": 117, + "community_name": "Community 117", + "norm_label": "@types/chrome" + }, + { + "label": "@types/chrome", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L76", + "_origin": "ast", + "id": "apps_electron_vite_project_package_json_types_chrome", + "community": 117, + "community_name": "Community 117", + "norm_label": "@types/chrome" + }, + { + "label": "@types/dompurify", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L77", + "_origin": "ast", + "id": "apps_electron_vite_project_package_devdependencies_types_dompurify", + "community": 117, + "community_name": "Community 117", + "norm_label": "@types/dompurify" + }, + { + "label": "@types/dompurify", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L77", + "_origin": "ast", + "id": "types_dompurify", + "community": 117, + "community_name": "Community 117", + "norm_label": "@types/dompurify" + }, + { + "label": "@types/libsodium-wrappers", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L78", + "_origin": "ast", + "id": "apps_electron_vite_project_package_devdependencies_types_libsodium_wrappers", + "community": 117, + "community_name": "Community 117", + "norm_label": "@types/libsodium-wrappers" + }, + { + "label": "@types/libsodium-wrappers", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L78", + "_origin": "ast", + "id": "types_libsodium_wrappers", + "community": 117, + "community_name": "Community 117", + "norm_label": "@types/libsodium-wrappers" + }, + { + "label": "@types/pg", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L79", + "_origin": "ast", + "id": "apps_electron_vite_project_package_devdependencies_types_pg", + "community": 117, + "community_name": "Community 117", + "norm_label": "@types/pg" + }, + { + "label": "@types/pg", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L79", + "_origin": "ast", + "id": "types_pg", + "community": 117, + "community_name": "Community 117", + "norm_label": "@types/pg" + }, + { + "label": "@types/react", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L80", + "_origin": "ast", + "id": "apps_electron_vite_project_package_devdependencies_types_react", + "community": 117, + "community_name": "Community 117", + "norm_label": "@types/react" + }, + { + "label": "@types/react", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L80", + "_origin": "ast", + "id": "apps_electron_vite_project_package_json_types_react", + "community": 117, + "community_name": "Community 117", + "norm_label": "@types/react" + }, + { + "label": "@types/react-dom", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L81", + "_origin": "ast", + "id": "apps_electron_vite_project_package_devdependencies_types_react_dom", + "community": 117, + "community_name": "Community 117", + "norm_label": "@types/react-dom" + }, + { + "label": "@types/react-dom", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L81", + "_origin": "ast", + "id": "apps_electron_vite_project_package_json_types_react_dom", + "community": 117, + "community_name": "Community 117", + "norm_label": "@types/react-dom" + }, + { + "label": "@typescript-eslint/eslint-plugin", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L82", + "_origin": "ast", + "id": "apps_electron_vite_project_package_devdependencies_typescript_eslint_eslint_plugin", + "community": 117, + "community_name": "Community 117", + "norm_label": "@typescript-eslint/eslint-plugin" + }, + { + "label": "@typescript-eslint/eslint-plugin", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L82", + "_origin": "ast", + "id": "typescript_eslint_eslint_plugin", + "community": 117, + "community_name": "Community 117", + "norm_label": "@typescript-eslint/eslint-plugin" + }, + { + "label": "@typescript-eslint/parser", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L83", + "_origin": "ast", + "id": "apps_electron_vite_project_package_devdependencies_typescript_eslint_parser", + "community": 117, + "community_name": "Community 117", + "norm_label": "@typescript-eslint/parser" + }, + { + "label": "@typescript-eslint/parser", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L83", + "_origin": "ast", + "id": "typescript_eslint_parser", + "community": 117, + "community_name": "Community 117", + "norm_label": "@typescript-eslint/parser" + }, + { + "label": "@vitejs/plugin-react", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L84", + "_origin": "ast", + "id": "apps_electron_vite_project_package_devdependencies_vitejs_plugin_react", + "community": 117, + "community_name": "Community 117", + "norm_label": "@vitejs/plugin-react" + }, + { + "label": "@vitejs/plugin-react", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L84", + "_origin": "ast", + "id": "apps_electron_vite_project_package_json_vitejs_plugin_react", + "community": 117, + "community_name": "Community 117", + "norm_label": "@vitejs/plugin-react" + }, + { + "label": "electron", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L85", + "_origin": "ast", + "id": "apps_electron_vite_project_package_devdependencies_electron", + "community": 117, + "community_name": "Community 117", + "norm_label": "electron" + }, + { + "label": "electron", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L85", + "_origin": "ast", + "id": "apps_electron_vite_project_package_json_electron", + "community": 117, + "community_name": "Community 117", + "norm_label": "electron" + }, + { + "label": "electron-builder", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L86", + "_origin": "ast", + "id": "apps_electron_vite_project_package_devdependencies_electron_builder", + "community": 117, + "community_name": "Community 117", + "norm_label": "electron-builder" + }, + { + "label": "electron-builder", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L86", + "_origin": "ast", + "id": "apps_electron_vite_project_package_json_electron_builder", + "community": 117, + "community_name": "Community 117", + "norm_label": "electron-builder" + }, + { + "label": "electron-rebuild", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L87", + "_origin": "ast", + "id": "apps_electron_vite_project_package_devdependencies_electron_rebuild", + "community": 117, + "community_name": "Community 117", + "norm_label": "electron-rebuild" + }, + { + "label": "electron-rebuild", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L87", + "_origin": "ast", + "id": "electron_rebuild", + "community": 117, + "community_name": "Community 117", + "norm_label": "electron-rebuild" + }, + { + "label": "eslint", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L88", + "_origin": "ast", + "id": "apps_electron_vite_project_package_devdependencies_eslint", + "community": 117, + "community_name": "Community 117", + "norm_label": "eslint" + }, + { + "label": "eslint", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L88", + "_origin": "ast", + "id": "apps_electron_vite_project_package_json_eslint", + "community": 117, + "community_name": "Community 117", + "norm_label": "eslint" + }, + { + "label": "eslint-plugin-react-hooks", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L89", + "_origin": "ast", + "id": "apps_electron_vite_project_package_devdependencies_eslint_plugin_react_hooks", + "community": 117, + "community_name": "Community 117", + "norm_label": "eslint-plugin-react-hooks" + }, + { + "label": "eslint-plugin-react-hooks", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L89", + "_origin": "ast", + "id": "eslint_plugin_react_hooks", + "community": 117, + "community_name": "Community 117", + "norm_label": "eslint-plugin-react-hooks" + }, + { + "label": "eslint-plugin-react-refresh", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L90", + "_origin": "ast", + "id": "apps_electron_vite_project_package_devdependencies_eslint_plugin_react_refresh", + "community": 117, + "community_name": "Community 117", + "norm_label": "eslint-plugin-react-refresh" + }, + { + "label": "eslint-plugin-react-refresh", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L90", + "_origin": "ast", + "id": "eslint_plugin_react_refresh", + "community": 117, + "community_name": "Community 117", + "norm_label": "eslint-plugin-react-refresh" + }, + { + "label": "node-addon-api", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L91", + "_origin": "ast", + "id": "apps_electron_vite_project_package_devdependencies_node_addon_api", + "community": 117, + "community_name": "Community 117", + "norm_label": "node-addon-api" + }, + { + "label": "node-addon-api", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L91", + "_origin": "ast", + "id": "node_addon_api", + "community": 117, + "community_name": "Community 117", + "norm_label": "node-addon-api" + }, + { + "label": "prebuild-install", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L92", + "_origin": "ast", + "id": "apps_electron_vite_project_package_devdependencies_prebuild_install", + "community": 117, + "community_name": "Community 117", + "norm_label": "prebuild-install" + }, + { + "label": "prebuild-install", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L92", + "_origin": "ast", + "id": "prebuild_install", + "community": 117, + "community_name": "Community 117", + "norm_label": "prebuild-install" + }, + { + "label": "typescript", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L93", + "_origin": "ast", + "id": "apps_electron_vite_project_package_devdependencies_typescript", + "community": 117, + "community_name": "Community 117", + "norm_label": "typescript" + }, + { + "label": "typescript", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L93", + "_origin": "ast", + "id": "apps_electron_vite_project_package_json_typescript", + "community": 117, + "community_name": "Community 117", + "norm_label": "typescript" + }, + { + "label": "vite", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L94", + "_origin": "ast", + "id": "apps_electron_vite_project_package_devdependencies_vite", + "community": 117, + "community_name": "Community 117", + "norm_label": "vite" + }, + { + "label": "vite", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L94", + "_origin": "ast", + "id": "apps_electron_vite_project_package_json_vite", + "community": 117, + "community_name": "Community 117", + "norm_label": "vite" + }, + { + "label": "vite-plugin-electron", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L95", + "_origin": "ast", + "id": "apps_electron_vite_project_package_devdependencies_vite_plugin_electron", + "community": 117, + "community_name": "Community 117", + "norm_label": "vite-plugin-electron" + }, + { + "label": "vite-plugin-electron", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L95", + "_origin": "ast", + "id": "vite_plugin_electron", + "community": 117, + "community_name": "Community 117", + "norm_label": "vite-plugin-electron" + }, + { + "label": "vite-plugin-electron-renderer", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L96", + "_origin": "ast", + "id": "apps_electron_vite_project_package_devdependencies_vite_plugin_electron_renderer", + "community": 117, + "community_name": "Community 117", + "norm_label": "vite-plugin-electron-renderer" + }, + { + "label": "vite-plugin-electron-renderer", + "file_type": "concept", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L96", + "_origin": "ast", + "id": "vite_plugin_electron_renderer", + "community": 117, + "community_name": "Community 117", + "norm_label": "vite-plugin-electron-renderer" + }, + { + "label": "main", + "file_type": "code", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L98", + "_origin": "ast", + "id": "apps_electron_vite_project_package_main", + "community": 157, + "community_name": "Community 157", + "norm_label": "main" + }, + { + "label": "query-orchestrator-api.ps1", + "file_type": "code", + "source_file": "apps/electron-vite-project/query-orchestrator-api.ps1", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_query_orchestrator_api", + "community": 593, + "community_name": "Queryorchestratorapi", + "norm_label": "query-orchestrator-api.ps1" + }, + { + "label": "read-electron-logs.ps1", + "file_type": "code", + "source_file": "apps/electron-vite-project/read-electron-logs.ps1", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_read_electron_logs", + "community": 594, + "community_name": "Readelectronlogs", + "norm_label": "read-electron-logs.ps1" + }, + { + "label": "rebuild-and-restart.ps1", + "file_type": "code", + "source_file": "apps/electron-vite-project/rebuild-and-restart.ps1", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_rebuild_and_restart", + "community": 595, + "community_name": "Rebuildandrestart", + "norm_label": "rebuild-and-restart.ps1" + }, + { + "label": "rebuild.sh", + "file_type": "code", + "source_file": "apps/electron-vite-project/rebuild.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "file" + }, + "_origin": "ast", + "id": "apps_electron_vite_project_rebuild", + "community": 558, + "community_name": "Rebuild", + "norm_label": "rebuild.sh" + }, + { + "label": "rebuild.sh script", + "file_type": "code", + "source_file": "apps/electron-vite-project/rebuild.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "bash_entrypoint" + }, + "_origin": "ast", + "id": "apps_electron_vite_project_rebuild_sh__entry", + "community": 558, + "community_name": "Rebuild", + "norm_label": "rebuild.sh script" + }, + { + "label": "reset-vault.ps1", + "file_type": "code", + "source_file": "apps/electron-vite-project/reset-vault.ps1", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_reset_vault", + "community": 596, + "community_name": "Resetvault", + "norm_label": "reset-vault.ps1" + }, + { + "label": "restart-opengiraffe.ps1", + "file_type": "code", + "source_file": "apps/electron-vite-project/restart-opengiraffe.ps1", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_restart_opengiraffe", + "community": 597, + "community_name": "Restartopengiraffe", + "norm_label": "restart-opengiraffe.ps1" + }, + { + "label": "build-workspace-ingestion-core.cjs", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/build-workspace-ingestion-core.cjs", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_build_workspace_ingestion_core", + "community": 436, + "community_name": "Scripts #436", + "norm_label": "build-workspace-ingestion-core.cjs" + }, + { + "label": "{ spawnSync }", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/build-workspace-ingestion-core.cjs", + "source_location": "L6", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_build_workspace_ingestion_core_spawnsync", + "community": 436, + "community_name": "Scripts #436", + "norm_label": "{ spawnsync }" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/build-workspace-ingestion-core.cjs", + "source_location": "L7", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_build_workspace_ingestion_core_path", + "community": 436, + "community_name": "Scripts #436", + "norm_label": "path" + }, + { + "label": "workspaceRoot", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/build-workspace-ingestion-core.cjs", + "source_location": "L9", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_build_workspace_ingestion_core_workspaceroot", + "community": 436, + "community_name": "Scripts #436", + "norm_label": "workspaceroot" + }, + { + "label": "result", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/build-workspace-ingestion-core.cjs", + "source_location": "L13", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_build_workspace_ingestion_core_result", + "community": 436, + "community_name": "Scripts #436", + "norm_label": "result" + }, + { + "label": "clean-windows-build-output.cjs", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/clean-windows-build-output.cjs", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_clean_windows_build_output", + "community": 424, + "community_name": "Scripts #424", + "norm_label": "clean-windows-build-output.cjs" + }, + { + "label": "fs", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/clean-windows-build-output.cjs", + "source_location": "L5", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_clean_windows_build_output_fs", + "community": 424, + "community_name": "Scripts #424", + "norm_label": "fs" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/clean-windows-build-output.cjs", + "source_location": "L6", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_clean_windows_build_output_path", + "community": 424, + "community_name": "Scripts #424", + "norm_label": "path" + }, + { + "label": "getOutputBasename()", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/clean-windows-build-output.cjs", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_clean_windows_build_output_getoutputbasename", + "community": 424, + "community_name": "Scripts #424", + "norm_label": "getoutputbasename()" + }, + { + "label": "basename", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/clean-windows-build-output.cjs", + "source_location": "L21", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_clean_windows_build_output_basename", + "community": 424, + "community_name": "Scripts #424", + "norm_label": "basename" + }, + { + "label": "winUnpacked", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/clean-windows-build-output.cjs", + "source_location": "L27", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_clean_windows_build_output_winunpacked", + "community": 424, + "community_name": "Scripts #424", + "norm_label": "winunpacked" + }, + { + "label": "clean.cjs", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/clean.cjs", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_clean", + "community": 178, + "community_name": "Scripts", + "norm_label": "clean.cjs" + }, + { + "label": "{ execSync }", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/clean.cjs", + "source_location": "L7", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_clean_execsync", + "community": 178, + "community_name": "Scripts", + "norm_label": "{ execsync }" + }, + { + "label": "{ existsSync, rmSync }", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/clean.cjs", + "source_location": "L8", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_clean_existssync_rmsync", + "community": 178, + "community_name": "Scripts", + "norm_label": "{ existssync, rmsync }" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/clean.cjs", + "source_location": "L9", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_clean_path", + "community": 178, + "community_name": "Scripts", + "norm_label": "path" + }, + { + "label": "os", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/clean.cjs", + "source_location": "L10", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_clean_os", + "community": 178, + "community_name": "Scripts", + "norm_label": "os" + }, + { + "label": "appDir", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/clean.cjs", + "source_location": "L12", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_clean_appdir", + "community": 178, + "community_name": "Scripts", + "norm_label": "appdir" + }, + { + "label": "{ clearBuildCaches }", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/clean.cjs", + "source_location": "L13", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_clean_clearbuildcaches", + "community": 178, + "community_name": "Scripts", + "norm_label": "{ clearbuildcaches }" + }, + { + "label": "nativeBuildDirs", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/clean.cjs", + "source_location": "L78", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_clean_nativebuilddirs", + "community": 178, + "community_name": "Scripts", + "norm_label": "nativebuilddirs" + }, + { + "label": "distBuild", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/clean.cjs", + "source_location": "L95", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_clean_distbuild", + "community": 178, + "community_name": "Scripts", + "norm_label": "distbuild" + }, + { + "label": "clear-build-caches.cjs", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/clear-build-caches.cjs", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_clear_build_caches", + "community": 178, + "community_name": "Scripts", + "norm_label": "clear-build-caches.cjs" + }, + { + "label": "fs", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/clear-build-caches.cjs", + "source_location": "L8", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_clear_build_caches_fs", + "community": 178, + "community_name": "Scripts", + "norm_label": "fs" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/clear-build-caches.cjs", + "source_location": "L9", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_clear_build_caches_path", + "community": 178, + "community_name": "Scripts", + "norm_label": "path" + }, + { + "label": "os", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/clear-build-caches.cjs", + "source_location": "L10", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_clear_build_caches_os", + "community": 178, + "community_name": "Scripts", + "norm_label": "os" + }, + { + "label": "rmDir()", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/clear-build-caches.cjs", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_clear_build_caches_rmdir", + "community": 178, + "community_name": "Scripts", + "norm_label": "rmdir()" + }, + { + "label": "getActiveExtensionOutDir()", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/clear-build-caches.cjs", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_clear_build_caches_getactiveextensionoutdir", + "community": 178, + "community_name": "Scripts", + "norm_label": "getactiveextensionoutdir()" + }, + { + "label": "removeStaleExtensionBuildDirs()", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/clear-build-caches.cjs", + "source_location": "L41", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_clear_build_caches_removestaleextensionbuilddirs", + "community": 178, + "community_name": "Scripts", + "norm_label": "removestaleextensionbuilddirs()" + }, + { + "label": "clearBuildCaches()", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/clear-build-caches.cjs", + "source_location": "L62", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_clear_build_caches_clearbuildcaches", + "community": 178, + "community_name": "Scripts", + "norm_label": "clearbuildcaches()" + }, + { + "label": "copy-pnpm-transitive-deps.cjs", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/copy-pnpm-transitive-deps.cjs", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_copy_pnpm_transitive_deps", + "community": 374, + "community_name": "Scripts #374", + "norm_label": "copy-pnpm-transitive-deps.cjs" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/copy-pnpm-transitive-deps.cjs", + "source_location": "L10", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_copy_pnpm_transitive_deps_path", + "community": 374, + "community_name": "Scripts #374", + "norm_label": "path" + }, + { + "label": "fs", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/copy-pnpm-transitive-deps.cjs", + "source_location": "L11", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_copy_pnpm_transitive_deps_fs", + "community": 374, + "community_name": "Scripts #374", + "norm_label": "fs" + }, + { + "label": "appDir", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/copy-pnpm-transitive-deps.cjs", + "source_location": "L13", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_copy_pnpm_transitive_deps_appdir", + "community": 374, + "community_name": "Scripts #374", + "norm_label": "appdir" + }, + { + "label": "appNodeModules", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/copy-pnpm-transitive-deps.cjs", + "source_location": "L14", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_copy_pnpm_transitive_deps_appnodemodules", + "community": 374, + "community_name": "Scripts #374", + "norm_label": "appnodemodules" + }, + { + "label": "packages", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/copy-pnpm-transitive-deps.cjs", + "source_location": "L16", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_copy_pnpm_transitive_deps_packages", + "community": 374, + "community_name": "Scripts #374", + "norm_label": "packages" + }, + { + "label": "copyRecursive()", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/copy-pnpm-transitive-deps.cjs", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_copy_pnpm_transitive_deps_copyrecursive", + "community": 374, + "community_name": "Scripts #374", + "norm_label": "copyrecursive()" + }, + { + "label": "resolveSearchPaths()", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/copy-pnpm-transitive-deps.cjs", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_copy_pnpm_transitive_deps_resolvesearchpaths", + "community": 374, + "community_name": "Scripts #374", + "norm_label": "resolvesearchpaths()" + }, + { + "label": "searchPaths", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/copy-pnpm-transitive-deps.cjs", + "source_location": "L47", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_copy_pnpm_transitive_deps_searchpaths", + "community": 374, + "community_name": "Scripts #374", + "norm_label": "searchpaths" + }, + { + "label": "diagnose-websocket.js", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/diagnose-websocket.js", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_diagnose_websocket", + "community": 318, + "community_name": "Scripts #318", + "norm_label": "diagnose-websocket.js" + }, + { + "label": "__filename", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/diagnose-websocket.js", + "source_location": "L23", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_diagnose_websocket_filename", + "community": 318, + "community_name": "Scripts #318", + "norm_label": "__filename" + }, + { + "label": "__dirname", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/diagnose-websocket.js", + "source_location": "L24", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_diagnose_websocket_dirname", + "community": 318, + "community_name": "Scripts #318", + "norm_label": "__dirname" + }, + { + "label": "loadPgModule()", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/diagnose-websocket.js", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_diagnose_websocket_loadpgmodule", + "community": 318, + "community_name": "Scripts #318", + "norm_label": "loadpgmodule()" + }, + { + "label": "results", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/diagnose-websocket.js", + "source_location": "L44", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_diagnose_websocket_results", + "community": 318, + "community_name": "Scripts #318", + "norm_label": "results" + }, + { + "label": "checkPort()", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/diagnose-websocket.js", + "source_location": "L59", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_diagnose_websocket_checkport", + "community": 318, + "community_name": "Scripts #318", + "norm_label": "checkport()" + }, + { + "label": "checkElectronProcess()", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/diagnose-websocket.js", + "source_location": "L84", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_diagnose_websocket_checkelectronprocess", + "community": 318, + "community_name": "Scripts #318", + "norm_label": "checkelectronprocess()" + }, + { + "label": "testWebSocketConnection()", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/diagnose-websocket.js", + "source_location": "L109", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_diagnose_websocket_testwebsocketconnection", + "community": 318, + "community_name": "Scripts #318", + "norm_label": "testwebsocketconnection()" + }, + { + "label": "testMessageFlow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/diagnose-websocket.js", + "source_location": "L191", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_diagnose_websocket_testmessageflow", + "community": 318, + "community_name": "Scripts #318", + "norm_label": "testmessageflow()" + }, + { + "label": "testDatabaseDirect()", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/diagnose-websocket.js", + "source_location": "L306", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_diagnose_websocket_testdatabasedirect", + "community": 318, + "community_name": "Scripts #318", + "norm_label": "testdatabasedirect()" + }, + { + "label": "generateReport()", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/diagnose-websocket.js", + "source_location": "L371", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_diagnose_websocket_generatereport", + "community": 318, + "community_name": "Scripts #318", + "norm_label": "generatereport()" + }, + { + "label": "parseArgs()", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/diagnose-websocket.js", + "source_location": "L447", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_diagnose_websocket_parseargs", + "community": 318, + "community_name": "Scripts #318", + "norm_label": "parseargs()" + }, + { + "label": "runDiagnostics()", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/diagnose-websocket.js", + "source_location": "L481", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_diagnose_websocket_rundiagnostics", + "community": 318, + "community_name": "Scripts #318", + "norm_label": "rundiagnostics()" + }, + { + "label": "dist-clean-artifacts.cjs", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/dist-clean-artifacts.cjs", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_dist_clean_artifacts", + "community": 437, + "community_name": "Scripts #437", + "norm_label": "dist-clean-artifacts.cjs" + }, + { + "label": "{ existsSync, rmSync }", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/dist-clean-artifacts.cjs", + "source_location": "L9", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_dist_clean_artifacts_existssync_rmsync", + "community": 437, + "community_name": "Scripts #437", + "norm_label": "{ existssync, rmsync }" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/dist-clean-artifacts.cjs", + "source_location": "L10", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_dist_clean_artifacts_path", + "community": 437, + "community_name": "Scripts #437", + "norm_label": "path" + }, + { + "label": "root", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/dist-clean-artifacts.cjs", + "source_location": "L12", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_dist_clean_artifacts_root", + "community": 437, + "community_name": "Scripts #437", + "norm_label": "root" + }, + { + "label": "dirs", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/dist-clean-artifacts.cjs", + "source_location": "L13", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_dist_clean_artifacts_dirs", + "community": 437, + "community_name": "Scripts #437", + "norm_label": "dirs" + }, + { + "label": "winHomeGuest.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/guest/__tests__/winHomeGuest.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_guest_tests_winhomeguest_test", + "community": 319, + "community_name": "Scripts Guest", + "norm_label": "winhomeguest.test.ts" + }, + { + "label": "__dirname", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/guest/__tests__/winHomeGuest.test.ts", + "source_location": "L15", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_guest_tests_winhomeguest_test_dirname", + "community": 319, + "community_name": "Scripts Guest", + "norm_label": "__dirname" + }, + { + "label": "GUEST_DIR", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/guest/__tests__/winHomeGuest.test.ts", + "source_location": "L16", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_guest_tests_winhomeguest_test_guest_dir", + "community": 319, + "community_name": "Scripts Guest", + "norm_label": "guest_dir" + }, + { + "label": "readGuestFile()", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/guest/__tests__/winHomeGuest.test.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_guest_tests_winhomeguest_test_readguestfile", + "community": 319, + "community_name": "Scripts Guest", + "norm_label": "readguestfile()" + }, + { + "label": "guestPorts.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/guest/guestPorts.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_guest_guestports", + "community": 319, + "community_name": "Scripts Guest", + "norm_label": "guestports.ts" + }, + { + "label": "WRDESK_COORDINATION_PORT", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/guest/guestPorts.ts", + "source_location": "L5", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_guest_guestports_wrdesk_coordination_port", + "community": 319, + "community_name": "Scripts Guest", + "norm_label": "wrdesk_coordination_port" + }, + { + "label": "WRDESK_P2P_INGEST_PORT", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/guest/guestPorts.ts", + "source_location": "L6", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_guest_guestports_wrdesk_p2p_ingest_port", + "community": 319, + "community_name": "Scripts Guest", + "norm_label": "wrdesk_p2p_ingest_port" + }, + { + "label": "WRDESK_GUEST_PORTS", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/guest/guestPorts.ts", + "source_location": "L8", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_guest_guestports_wrdesk_guest_ports", + "community": 319, + "community_name": "Scripts Guest", + "norm_label": "wrdesk_guest_ports" + }, + { + "label": "UBUNTU_CLOUD_IMAGE_MANIFEST", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/guest/guestPorts.ts", + "source_location": "L13", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_guest_guestports_ubuntu_cloud_image_manifest", + "community": 319, + "community_name": "Scripts Guest", + "norm_label": "ubuntu_cloud_image_manifest" + }, + { + "label": "HypervisorKind", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/guest/guestPorts.ts", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_guest_guestports_hypervisorkind", + "community": 319, + "community_name": "Scripts Guest", + "norm_label": "hypervisorkind" + }, + { + "label": "resolveHypervisorFromPaths()", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/guest/guestPorts.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_guest_guestports_resolvehypervisorfrompaths", + "community": 319, + "community_name": "Scripts Guest", + "norm_label": "resolvehypervisorfrompaths()" + }, + { + "label": "shouldCreateVm()", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/guest/guestPorts.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_guest_guestports_shouldcreatevm", + "community": 319, + "community_name": "Scripts Guest", + "norm_label": "shouldcreatevm()" + }, + { + "label": "shouldReconvergePortForwards()", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/guest/guestPorts.ts", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_guest_guestports_shouldreconvergeportforwards", + "community": 319, + "community_name": "Scripts Guest", + "norm_label": "shouldreconvergeportforwards()" + }, + { + "label": "winRoleInstaller.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/installer/__tests__/winRoleInstaller.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_installer_tests_winroleinstaller_test", + "community": 276, + "community_name": "Scripts Installer", + "norm_label": "winroleinstaller.test.ts" + }, + { + "label": "expectedWrDeskUserDataPath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/installer/__tests__/winRoleInstaller.test.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_installer_tests_winroleinstaller_test_expectedwrdeskuserdatapath", + "community": 276, + "community_name": "Scripts Installer", + "norm_label": "expectedwrdeskuserdatapath()" + }, + { + "label": "__dirname", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/installer/__tests__/winRoleInstaller.test.ts", + "source_location": "L18", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_installer_tests_winroleinstaller_test_dirname", + "community": 276, + "community_name": "Scripts Installer", + "norm_label": "__dirname" + }, + { + "label": "INSTALLER_DIR", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/installer/__tests__/winRoleInstaller.test.ts", + "source_location": "L19", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_installer_tests_winroleinstaller_test_installer_dir", + "community": 276, + "community_name": "Scripts Installer", + "norm_label": "installer_dir" + }, + { + "label": "SEED_PS1", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/installer/__tests__/winRoleInstaller.test.ts", + "source_location": "L20", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_installer_tests_winroleinstaller_test_seed_ps1", + "community": 276, + "community_name": "Scripts Installer", + "norm_label": "seed_ps1" + }, + { + "label": "EDITION_PS1", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/installer/__tests__/winRoleInstaller.test.ts", + "source_location": "L21", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_installer_tests_winroleinstaller_test_edition_ps1", + "community": 276, + "community_name": "Scripts Installer", + "norm_label": "edition_ps1" + }, + { + "label": "INSTALLER_NSH", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/installer/__tests__/winRoleInstaller.test.ts", + "source_location": "L22", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_installer_tests_winroleinstaller_test_installer_nsh", + "community": 276, + "community_name": "Scripts Installer", + "norm_label": "installer_nsh" + }, + { + "label": "HYPERV_PS1", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/installer/__tests__/winRoleInstaller.test.ts", + "source_location": "L23", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_installer_tests_winroleinstaller_test_hyperv_ps1", + "community": 276, + "community_name": "Scripts Installer", + "norm_label": "hyperv_ps1" + }, + { + "label": "readInstallerText()", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/installer/__tests__/winRoleInstaller.test.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_installer_tests_winroleinstaller_test_readinstallertext", + "community": 276, + "community_name": "Scripts Installer", + "norm_label": "readinstallertext()" + }, + { + "label": "runPowerShellFile()", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/installer/__tests__/winRoleInstaller.test.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_installer_tests_winroleinstaller_test_runpowershellfile", + "community": 276, + "community_name": "Scripts Installer", + "norm_label": "runpowershellfile()" + }, + { + "label": "winRoleEdition.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/installer/winRoleEdition.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_installer_winroleedition", + "community": 276, + "community_name": "Scripts Installer", + "norm_label": "winroleedition.ts" + }, + { + "label": "WindowsEditionClass", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/installer/winRoleEdition.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_installer_winroleedition_windowseditionclass", + "community": 276, + "community_name": "Scripts Installer", + "norm_label": "windowseditionclass" + }, + { + "label": "HOME_EDITION_IDS", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/installer/winRoleEdition.ts", + "source_location": "L7", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_installer_winroleedition_home_edition_ids", + "community": 276, + "community_name": "Scripts Installer", + "norm_label": "home_edition_ids" + }, + { + "label": "PRO_EDITION_IDS", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/installer/winRoleEdition.ts", + "source_location": "L16", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_installer_winroleedition_pro_edition_ids", + "community": 276, + "community_name": "Scripts Installer", + "norm_label": "pro_edition_ids" + }, + { + "label": "classifyWindowsEdition()", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/installer/winRoleEdition.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_installer_winroleedition_classifywindowsedition", + "community": 276, + "community_name": "Scripts Installer", + "norm_label": "classifywindowsedition()" + }, + { + "label": "ORCHESTRATOR_SEED_RELATIVE", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/installer/winRoleEdition.ts", + "source_location": "L38", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_installer_winroleedition_orchestrator_seed_relative", + "community": 276, + "community_name": "Scripts Installer", + "norm_label": "orchestrator_seed_relative" + }, + { + "label": "orchestratorSeedPathFromProfile()", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/installer/winRoleEdition.ts", + "source_location": "L42", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_installer_winroleedition_orchestratorseedpathfromprofile", + "community": 276, + "community_name": "Scripts Installer", + "norm_label": "orchestratorseedpathfromprofile()" + }, + { + "label": "kill-stale-build-output-processes.ps1", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/kill-stale-build-output-processes.ps1", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_kill_stale_build_output_processes", + "community": 599, + "community_name": "Scripts #599", + "norm_label": "kill-stale-build-output-processes.ps1" + }, + { + "label": "kill-wr-desk-unix.sh", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/kill-wr-desk-unix.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "file" + }, + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_kill_wr_desk_unix", + "community": 559, + "community_name": "Scripts #559", + "norm_label": "kill-wr-desk-unix.sh" + }, + { + "label": "kill-wr-desk-unix.sh script", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/kill-wr-desk-unix.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "bash_entrypoint" + }, + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_kill_wr_desk_unix_sh__entry", + "community": 559, + "community_name": "Scripts #559", + "norm_label": "kill-wr-desk-unix.sh script" + }, + { + "label": "kill-wr-desk.cjs", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/kill-wr-desk.cjs", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_kill_wr_desk", + "community": 178, + "community_name": "Scripts", + "norm_label": "kill-wr-desk.cjs" + }, + { + "label": "{ execSync }", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/kill-wr-desk.cjs", + "source_location": "L7", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_kill_wr_desk_execsync", + "community": 178, + "community_name": "Scripts", + "norm_label": "{ execsync }" + }, + { + "label": "fs", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/kill-wr-desk.cjs", + "source_location": "L8", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_kill_wr_desk_fs", + "community": 178, + "community_name": "Scripts", + "norm_label": "fs" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/kill-wr-desk.cjs", + "source_location": "L9", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_kill_wr_desk_path", + "community": 178, + "community_name": "Scripts", + "norm_label": "path" + }, + { + "label": "os", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/kill-wr-desk.cjs", + "source_location": "L10", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_kill_wr_desk_os", + "community": 178, + "community_name": "Scripts", + "norm_label": "os" + }, + { + "label": "{ clearBuildCaches }", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/kill-wr-desk.cjs", + "source_location": "L12", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_kill_wr_desk_clearbuildcaches", + "community": 178, + "community_name": "Scripts", + "norm_label": "{ clearbuildcaches }" + }, + { + "label": "getWindowsExecutableNameFromConfig()", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/kill-wr-desk.cjs", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_kill_wr_desk_getwindowsexecutablenamefromconfig", + "community": 178, + "community_name": "Scripts", + "norm_label": "getwindowsexecutablenamefromconfig()" + }, + { + "label": "getActiveWindowsOutputBasename()", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/kill-wr-desk.cjs", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_kill_wr_desk_getactivewindowsoutputbasename", + "community": 178, + "community_name": "Scripts", + "norm_label": "getactivewindowsoutputbasename()" + }, + { + "label": "tryElevatedDeleteWindowsFolder()", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/kill-wr-desk.cjs", + "source_location": "L59", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_kill_wr_desk_tryelevateddeletewindowsfolder", + "community": 178, + "community_name": "Scripts", + "norm_label": "tryelevateddeletewindowsfolder()" + }, + { + "label": "sleepSyncSeconds()", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/kill-wr-desk.cjs", + "source_location": "L99", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_kill_wr_desk_sleepsyncseconds", + "community": 178, + "community_name": "Scripts", + "norm_label": "sleepsyncseconds()" + }, + { + "label": "killStaleBuildOutputProcesses()", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/kill-wr-desk.cjs", + "source_location": "L108", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_kill_wr_desk_killstalebuildoutputprocesses", + "community": 178, + "community_name": "Scripts", + "norm_label": "killstalebuildoutputprocesses()" + }, + { + "label": "deleteOldBuilds()", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/kill-wr-desk.cjs", + "source_location": "L127", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_kill_wr_desk_deleteoldbuilds", + "community": 178, + "community_name": "Scripts", + "norm_label": "deleteoldbuilds()" + }, + { + "label": "killProcesses()", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/kill-wr-desk.cjs", + "source_location": "L182", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_kill_wr_desk_killprocesses", + "community": 178, + "community_name": "Scripts", + "norm_label": "killprocesses()" + }, + { + "label": "postinstall-native.cjs", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/postinstall-native.cjs", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_postinstall_native", + "community": 402, + "community_name": "Scripts #402", + "norm_label": "postinstall-native.cjs" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/postinstall-native.cjs", + "source_location": "L7", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_postinstall_native_path", + "community": 402, + "community_name": "Scripts #402", + "norm_label": "path" + }, + { + "label": "{ spawnSync }", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/postinstall-native.cjs", + "source_location": "L8", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_postinstall_native_spawnsync", + "community": 402, + "community_name": "Scripts #402", + "norm_label": "{ spawnsync }" + }, + { + "label": "appRoot", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/postinstall-native.cjs", + "source_location": "L10", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_postinstall_native_approot", + "community": 402, + "community_name": "Scripts #402", + "norm_label": "approot" + }, + { + "label": "run()", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/postinstall-native.cjs", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_postinstall_native_run", + "community": 402, + "community_name": "Scripts #402", + "norm_label": "run()" + }, + { + "label": "eb", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/postinstall-native.cjs", + "source_location": "L26", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_postinstall_native_eb", + "community": 402, + "community_name": "Scripts #402", + "norm_label": "eb" + }, + { + "label": "rebuild", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/postinstall-native.cjs", + "source_location": "L33", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_postinstall_native_rebuild", + "community": 402, + "community_name": "Scripts #402", + "norm_label": "rebuild" + }, + { + "label": "prepare-google-oauth-resource.cjs", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/prepare-google-oauth-resource.cjs", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_prepare_google_oauth_resource", + "community": 330, + "community_name": "Scripts #330", + "norm_label": "prepare-google-oauth-resource.cjs" + }, + { + "label": "fs", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/prepare-google-oauth-resource.cjs", + "source_location": "L10", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_prepare_google_oauth_resource_fs", + "community": 330, + "community_name": "Scripts #330", + "norm_label": "fs" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/prepare-google-oauth-resource.cjs", + "source_location": "L11", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_prepare_google_oauth_resource_path", + "community": 330, + "community_name": "Scripts #330", + "norm_label": "path" + }, + { + "label": "root", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/prepare-google-oauth-resource.cjs", + "source_location": "L13", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_prepare_google_oauth_resource_root", + "community": 330, + "community_name": "Scripts #330", + "norm_label": "root" + }, + { + "label": "targetId", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/prepare-google-oauth-resource.cjs", + "source_location": "L14", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_prepare_google_oauth_resource_targetid", + "community": 330, + "community_name": "Scripts #330", + "norm_label": "targetid" + }, + { + "label": "targetSecret", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/prepare-google-oauth-resource.cjs", + "source_location": "L15", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_prepare_google_oauth_resource_targetsecret", + "community": 330, + "community_name": "Scripts #330", + "norm_label": "targetsecret" + }, + { + "label": "firstDataLine()", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/prepare-google-oauth-resource.cjs", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_prepare_google_oauth_resource_firstdataline", + "community": 330, + "community_name": "Scripts #330", + "norm_label": "firstdataline()" + }, + { + "label": "isPlaceholderLine()", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/prepare-google-oauth-resource.cjs", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_prepare_google_oauth_resource_isplaceholderline", + "community": 330, + "community_name": "Scripts #330", + "norm_label": "isplaceholderline()" + }, + { + "label": "isPlaceholderSecretLine()", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/prepare-google-oauth-resource.cjs", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_prepare_google_oauth_resource_isplaceholdersecretline", + "community": 330, + "community_name": "Scripts #330", + "norm_label": "isplaceholdersecretline()" + }, + { + "label": "oauthClientIdFingerprint()", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/prepare-google-oauth-resource.cjs", + "source_location": "L51", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_prepare_google_oauth_resource_oauthclientidfingerprint", + "community": 330, + "community_name": "Scripts #330", + "norm_label": "oauthclientidfingerprint()" + }, + { + "label": "envId", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/prepare-google-oauth-resource.cjs", + "source_location": "L58", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_prepare_google_oauth_resource_envid", + "community": 330, + "community_name": "Scripts #330", + "norm_label": "envid" + }, + { + "label": "envSecret", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/prepare-google-oauth-resource.cjs", + "source_location": "L59", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_prepare_google_oauth_resource_envsecret", + "community": 330, + "community_name": "Scripts #330", + "norm_label": "envsecret" + }, + { + "label": "purge-build017.ps1", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/purge-build017.ps1", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_purge_build017", + "community": 600, + "community_name": "Scripts #600", + "norm_label": "purge-build017.ps1" + }, + { + "label": "rebuild.cjs", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/rebuild.cjs", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_rebuild", + "community": 425, + "community_name": "Scripts #425", + "norm_label": "rebuild.cjs" + }, + { + "label": "{ execSync }", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/rebuild.cjs", + "source_location": "L9", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_rebuild_execsync", + "community": 425, + "community_name": "Scripts #425", + "norm_label": "{ execsync }" + }, + { + "label": "{ existsSync, rmSync }", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/rebuild.cjs", + "source_location": "L10", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_rebuild_existssync_rmsync", + "community": 425, + "community_name": "Scripts #425", + "norm_label": "{ existssync, rmsync }" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/rebuild.cjs", + "source_location": "L11", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_rebuild_path", + "community": 425, + "community_name": "Scripts #425", + "norm_label": "path" + }, + { + "label": "dirs", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/rebuild.cjs", + "source_location": "L26", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_rebuild_dirs", + "community": 425, + "community_name": "Scripts #425", + "norm_label": "dirs" + }, + { + "label": "appDir", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/rebuild.cjs", + "source_location": "L39", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_rebuild_appdir", + "community": 425, + "community_name": "Scripts #425", + "norm_label": "appdir" + }, + { + "label": "repair-handshake-counterparty.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/repair-handshake-counterparty.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_repair_handshake_counterparty", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "repair-handshake-counterparty.ts" + }, + { + "label": "Row", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/repair-handshake-counterparty.ts", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_repair_handshake_counterparty_row", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "row" + }, + { + "label": "parseArgs()", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/repair-handshake-counterparty.ts", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_repair_handshake_counterparty_parseargs", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "parseargs()" + }, + { + "label": "main()", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/repair-handshake-counterparty.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_repair_handshake_counterparty_main", + "community": 31, + "community_name": "Handshake Enforcement Scripts", + "norm_label": "main()" + }, + { + "label": "restart.sh", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/restart.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "file" + }, + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_restart", + "community": 560, + "community_name": "Scripts #560", + "norm_label": "restart.sh" + }, + { + "label": "restart.sh script", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/restart.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "bash_entrypoint" + }, + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_restart_sh__entry", + "community": 560, + "community_name": "Scripts #560", + "norm_label": "restart.sh script" + }, + { + "label": "run-electron-builder.cjs", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/run-electron-builder.cjs", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_run_electron_builder", + "community": 375, + "community_name": "Scripts #375", + "norm_label": "run-electron-builder.cjs" + }, + { + "label": "{ existsSync, rmSync }", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/run-electron-builder.cjs", + "source_location": "L11", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_run_electron_builder_existssync_rmsync", + "community": 375, + "community_name": "Scripts #375", + "norm_label": "{ existssync, rmsync }" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/run-electron-builder.cjs", + "source_location": "L12", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_run_electron_builder_path", + "community": 375, + "community_name": "Scripts #375", + "norm_label": "path" + }, + { + "label": "{ spawnSync }", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/run-electron-builder.cjs", + "source_location": "L13", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_run_electron_builder_spawnsync", + "community": 375, + "community_name": "Scripts #375", + "norm_label": "{ spawnsync }" + }, + { + "label": "root", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/run-electron-builder.cjs", + "source_location": "L15", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_run_electron_builder_root", + "community": 375, + "community_name": "Scripts #375", + "norm_label": "root" + }, + { + "label": "releaseDir", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/run-electron-builder.cjs", + "source_location": "L16", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_run_electron_builder_releasedir", + "community": 375, + "community_name": "Scripts #375", + "norm_label": "releasedir" + }, + { + "label": "ebEnv", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/run-electron-builder.cjs", + "source_location": "L23", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_run_electron_builder_ebenv", + "community": 375, + "community_name": "Scripts #375", + "norm_label": "ebenv" + }, + { + "label": "forwardArgs", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/run-electron-builder.cjs", + "source_location": "L31", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_run_electron_builder_forwardargs", + "community": 375, + "community_name": "Scripts #375", + "norm_label": "forwardargs" + }, + { + "label": "result", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/run-electron-builder.cjs", + "source_location": "L32", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_run_electron_builder_result", + "community": 375, + "community_name": "Scripts #375", + "norm_label": "result" + }, + { + "label": "smoke-pdfjs-parser.cjs", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/smoke-pdfjs-parser.cjs", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_smoke_pdfjs_parser", + "community": 388, + "community_name": "Scripts #388", + "norm_label": "smoke-pdfjs-parser.cjs" + }, + { + "label": "{ createRequire }", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/smoke-pdfjs-parser.cjs", + "source_location": "L9", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_smoke_pdfjs_parser_createrequire", + "community": 388, + "community_name": "Scripts #388", + "norm_label": "{ createrequire }" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/smoke-pdfjs-parser.cjs", + "source_location": "L10", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_smoke_pdfjs_parser_path", + "community": 388, + "community_name": "Scripts #388", + "norm_label": "path" + }, + { + "label": "fs", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/smoke-pdfjs-parser.cjs", + "source_location": "L11", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_smoke_pdfjs_parser_fs", + "community": 388, + "community_name": "Scripts #388", + "norm_label": "fs" + }, + { + "label": "{ pathToFileURL }", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/smoke-pdfjs-parser.cjs", + "source_location": "L12", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_smoke_pdfjs_parser_pathtofileurl", + "community": 388, + "community_name": "Scripts #388", + "norm_label": "{ pathtofileurl }" + }, + { + "label": "appDir", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/smoke-pdfjs-parser.cjs", + "source_location": "L14", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_smoke_pdfjs_parser_appdir", + "community": 388, + "community_name": "Scripts #388", + "norm_label": "appdir" + }, + { + "label": "requireFromPkg", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/smoke-pdfjs-parser.cjs", + "source_location": "L15", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_smoke_pdfjs_parser_requirefrompkg", + "community": 388, + "community_name": "Scripts #388", + "norm_label": "requirefrompkg" + }, + { + "label": "worker", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/smoke-pdfjs-parser.cjs", + "source_location": "L25", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_smoke_pdfjs_parser_worker", + "community": 388, + "community_name": "Scripts #388", + "norm_label": "worker" + }, + { + "label": "verify-windows-unpacked.cjs", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/verify-windows-unpacked.cjs", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_verify_windows_unpacked", + "community": 320, + "community_name": "Scripts #320", + "norm_label": "verify-windows-unpacked.cjs" + }, + { + "label": "fs", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/verify-windows-unpacked.cjs", + "source_location": "L5", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_verify_windows_unpacked_fs", + "community": 320, + "community_name": "Scripts #320", + "norm_label": "fs" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/verify-windows-unpacked.cjs", + "source_location": "L6", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_verify_windows_unpacked_path", + "community": 320, + "community_name": "Scripts #320", + "norm_label": "path" + }, + { + "label": "getOutputBasenameAndExecutableName()", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/verify-windows-unpacked.cjs", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_verify_windows_unpacked_getoutputbasenameandexecutablename", + "community": 320, + "community_name": "Scripts #320", + "norm_label": "getoutputbasenameandexecutablename()" + }, + { + "label": "{ basename, executableName }", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/verify-windows-unpacked.cjs", + "source_location": "L25", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_verify_windows_unpacked_basename_executablename", + "community": 320, + "community_name": "Scripts #320", + "norm_label": "{ basename, executablename }" + }, + { + "label": "winUnpackedDir", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/verify-windows-unpacked.cjs", + "source_location": "L31", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_verify_windows_unpacked_winunpackeddir", + "community": 320, + "community_name": "Scripts #320", + "norm_label": "winunpackeddir" + }, + { + "label": "resolvePackagedExePath()", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/verify-windows-unpacked.cjs", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_verify_windows_unpacked_resolvepackagedexepath", + "community": 320, + "community_name": "Scripts #320", + "norm_label": "resolvepackagedexepath()" + }, + { + "label": "exePath", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/verify-windows-unpacked.cjs", + "source_location": "L46", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_verify_windows_unpacked_exepath", + "community": 320, + "community_name": "Scripts #320", + "norm_label": "exepath" + }, + { + "label": "REQUIRED_PEER_FILES", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/verify-windows-unpacked.cjs", + "source_location": "L49", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_verify_windows_unpacked_required_peer_files", + "community": 320, + "community_name": "Scripts #320", + "norm_label": "required_peer_files" + }, + { + "label": "verifyRequiredPeers()", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/verify-windows-unpacked.cjs", + "source_location": "L51", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_verify_windows_unpacked_verifyrequiredpeers", + "community": 320, + "community_name": "Scripts #320", + "norm_label": "verifyrequiredpeers()" + }, + { + "label": "peers", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/verify-windows-unpacked.cjs", + "source_location": "L93", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_verify_windows_unpacked_peers", + "community": 320, + "community_name": "Scripts #320", + "norm_label": "peers" + }, + { + "label": "expectedConfigured", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/verify-windows-unpacked.cjs", + "source_location": "L107", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_verify_windows_unpacked_expectedconfigured", + "community": 320, + "community_name": "Scripts #320", + "norm_label": "expectedconfigured" + }, + { + "label": "mz", + "file_type": "code", + "source_file": "apps/electron-vite-project/scripts/verify-windows-unpacked.cjs", + "source_location": "L150", + "_origin": "ast", + "id": "apps_electron_vite_project_scripts_verify_windows_unpacked_mz", + "community": 320, + "community_name": "Scripts #320", + "norm_label": "mz" + }, + { + "label": "App.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_app", + "community": 106, + "community_name": "Handshake Shims", + "norm_label": "app.tsx" + }, + { + "label": "DashboardView", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L41", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_app_dashboardview", + "community": 106, + "community_name": "Handshake Shims", + "norm_label": "dashboardview" + }, + { + "label": "ExtensionTheme", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L42", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_app_extensiontheme", + "community": 106, + "community_name": "Handshake Shims", + "norm_label": "extensiontheme" + }, + { + "label": "mapThemeToCss()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_app_mapthemetocss", + "community": 106, + "community_name": "Handshake Shims", + "norm_label": "mapthemetocss()" + }, + { + "label": "WRCodeLogo()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L48", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_app_wrcodelogo", + "community": 106, + "community_name": "Handshake Shims", + "norm_label": "wrcodelogo()" + }, + { + "label": "normalizeTheme()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L65", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_app_normalizetheme", + "community": 106, + "community_name": "Handshake Shims", + "norm_label": "normalizetheme()" + }, + { + "label": "emailAccountsListSignature()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L72", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_app_emailaccountslistsignature", + "community": 106, + "community_name": "Handshake Shims", + "norm_label": "emailaccountslistsignature()" + }, + { + "label": "App()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L87", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_app_app", + "community": 106, + "community_name": "Handshake Shims", + "norm_label": "app()" + }, + { + "label": "ErrorBoundary.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/ErrorBoundary.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_errorboundary", + "community": 106, + "community_name": "Handshake Shims", + "norm_label": "errorboundary.tsx" + }, + { + "label": "Props", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/ErrorBoundary.tsx", + "source_location": "L3", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_errorboundary_props", + "community": 106, + "community_name": "Handshake Shims", + "norm_label": "props" + }, + { + "label": "State", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/ErrorBoundary.tsx", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_errorboundary_state", + "community": 106, + "community_name": "Handshake Shims", + "norm_label": "state" + }, + { + "label": "ErrorBoundary", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/ErrorBoundary.tsx", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_errorboundary_errorboundary", + "community": 106, + "community_name": "Handshake Shims", + "norm_label": "errorboundary" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/ErrorBoundary.tsx", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_errorboundary_errorboundary_constructor", + "community": 106, + "community_name": "Handshake Shims", + "norm_label": ".constructor()" + }, + { + "label": ".getDerivedStateFromError()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/ErrorBoundary.tsx", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_errorboundary_errorboundary_getderivedstatefromerror", + "community": 106, + "community_name": "Handshake Shims", + "norm_label": ".getderivedstatefromerror()" + }, + { + "label": ".componentDidCatch()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/ErrorBoundary.tsx", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_errorboundary_errorboundary_componentdidcatch", + "community": 106, + "community_name": "Handshake Shims", + "norm_label": ".componentdidcatch()" + }, + { + "label": ".render()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/ErrorBoundary.tsx", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_errorboundary_errorboundary_render", + "community": 106, + "community_name": "Handshake Shims", + "norm_label": ".render()" + }, + { + "label": "auth/capabilities.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/capabilities.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_capabilities", + "community": 103, + "community_name": "Auth Vault", + "norm_label": "auth/capabilities.ts" + }, + { + "label": "Tier", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/capabilities.ts", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_capabilities_tier", + "community": 103, + "community_name": "Auth Vault", + "norm_label": "tier" + }, + { + "label": "DEFAULT_TIER", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/capabilities.ts", + "source_location": "L27", + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_capabilities_default_tier", + "community": 103, + "community_name": "Auth Vault", + "norm_label": "default_tier" + }, + { + "label": "UNKNOWN_TIER", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/capabilities.ts", + "source_location": "L33", + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_capabilities_unknown_tier", + "community": 103, + "community_name": "Auth Vault", + "norm_label": "unknown_tier" + }, + { + "label": "TIER_LEVEL", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/capabilities.ts", + "source_location": "L40", + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_capabilities_tier_level", + "community": 103, + "community_name": "Auth Vault", + "norm_label": "tier_level" + }, + { + "label": "VALID_PLAN_TIERS", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/capabilities.ts", + "source_location": "L54", + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_capabilities_valid_plan_tiers", + "community": 103, + "community_name": "Auth Vault", + "norm_label": "valid_plan_tiers" + }, + { + "label": "hasRolesInToken()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/capabilities.ts", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_capabilities_hasrolesintoken", + "community": 103, + "community_name": "Auth Vault", + "norm_label": "hasrolesintoken()" + }, + { + "label": "extractSsoTierFromRoles()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/capabilities.ts", + "source_location": "L75", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_capabilities_extractssotierfromroles", + "community": 103, + "community_name": "Auth Vault", + "norm_label": "extractssotierfromroles()" + }, + { + "label": "tierFromPlanClaim()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/capabilities.ts", + "source_location": "L88", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_capabilities_tierfromplanclaim", + "community": 103, + "community_name": "Auth Vault", + "norm_label": "tierfromplanclaim()" + }, + { + "label": "resolveTier()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/capabilities.ts", + "source_location": "L132", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_capabilities_resolvetier", + "community": 103, + "community_name": "Auth Vault", + "norm_label": "resolvetier()" + }, + { + "label": "mapRolesToTier()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/capabilities.ts", + "source_location": "L176", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_capabilities_maprolestotier", + "community": 103, + "community_name": "Auth Vault", + "norm_label": "maprolestotier()" + }, + { + "label": "discovery.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/discovery.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_discovery", + "community": 121, + "community_name": "Auth", + "norm_label": "discovery.ts" + }, + { + "label": "OidcDiscovery", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/discovery.ts", + "source_location": "L21", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_discovery_oidcdiscovery", + "community": 121, + "community_name": "Auth", + "norm_label": "oidcdiscovery" + }, + { + "label": "DiscoveryError", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/discovery.ts", + "source_location": "L42", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_discovery_discoveryerror", + "community": 121, + "community_name": "Auth", + "norm_label": "discoveryerror" + }, + { + "label": "DiscoverySuccess", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/discovery.ts", + "source_location": "L52", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_discovery_discoverysuccess", + "community": 121, + "community_name": "Auth", + "norm_label": "discoverysuccess" + }, + { + "label": "DiscoveryResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/discovery.ts", + "source_location": "L57", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_discovery_discoveryresult", + "community": 121, + "community_name": "Auth", + "norm_label": "discoveryresult" + }, + { + "label": "isCacheValid()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/discovery.ts", + "source_location": "L66", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_discovery_iscachevalid", + "community": 121, + "community_name": "Auth", + "norm_label": "iscachevalid()" + }, + { + "label": "clearDiscoveryCache()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/discovery.ts", + "source_location": "L73", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_discovery_cleardiscoverycache", + "community": 121, + "community_name": "Auth", + "norm_label": "cleardiscoverycache()" + }, + { + "label": "fetchDiscovery()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/discovery.ts", + "source_location": "L87", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_discovery_fetchdiscovery", + "community": 121, + "community_name": "Auth", + "norm_label": "fetchdiscovery()" + }, + { + "label": "getOidcDiscovery()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/discovery.ts", + "source_location": "L195", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_discovery_getoidcdiscovery", + "community": 121, + "community_name": "Auth", + "norm_label": "getoidcdiscovery()" + }, + { + "label": "getCachedDiscovery()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/discovery.ts", + "source_location": "L209", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_discovery_getcacheddiscovery", + "community": 121, + "community_name": "Auth", + "norm_label": "getcacheddiscovery()" + }, + { + "label": "jwtVerify.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/jwtVerify.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_jwtverify", + "community": 121, + "community_name": "Auth", + "norm_label": "jwtverify.ts" + }, + { + "label": "IdTokenClaims", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/jwtVerify.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_jwtverify_idtokenclaims", + "community": 121, + "community_name": "Auth", + "norm_label": "idtokenclaims" + }, + { + "label": "clearJwksCache()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/jwtVerify.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_jwtverify_clearjwkscache", + "community": 121, + "community_name": "Auth", + "norm_label": "clearjwkscache()" + }, + { + "label": "verifyIdToken()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/jwtVerify.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_jwtverify_verifyidtoken", + "community": 121, + "community_name": "Auth", + "norm_label": "verifyidtoken()" + }, + { + "label": "login.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/login.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_login", + "community": 121, + "community_name": "Auth", + "norm_label": "login.ts" + }, + { + "label": "OidcTokens", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/login.ts", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_login_oidctokens", + "community": 121, + "community_name": "Auth", + "norm_label": "oidctokens" + }, + { + "label": "setUrlOpener()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/login.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_login_seturlopener", + "community": 121, + "community_name": "Auth", + "norm_label": "seturlopener()" + }, + { + "label": "OIDC_USER_ERRORS", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/login.ts", + "source_location": "L33", + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_login_oidc_user_errors", + "community": 121, + "community_name": "Auth", + "norm_label": "oidc_user_errors" + }, + { + "label": "TOKEN_EXCHANGE_ERRORS", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/login.ts", + "source_location": "L42", + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_login_token_exchange_errors", + "community": 121, + "community_name": "Auth", + "norm_label": "token_exchange_errors" + }, + { + "label": "parseTokenError()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/login.ts", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_login_parsetokenerror", + "community": 121, + "community_name": "Auth", + "norm_label": "parsetokenerror()" + }, + { + "label": "openUrlOnWindows()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/login.ts", + "source_location": "L101", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_login_openurlonwindows", + "community": 121, + "community_name": "Auth", + "norm_label": "openurlonwindows()" + }, + { + "label": "prepareLoginUrl()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/login.ts", + "source_location": "L168", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_login_prepareloginurl", + "community": 121, + "community_name": "Auth", + "norm_label": "prepareloginurl()" + }, + { + "label": "loginWithKeycloak()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/login.ts", + "source_location": "L271", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_login_loginwithkeycloak", + "community": 121, + "community_name": "Auth", + "norm_label": "loginwithkeycloak()" + }, + { + "label": "logout.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/logout.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_logout", + "community": 103, + "community_name": "Auth Vault", + "norm_label": "logout.ts" + }, + { + "label": "logoutLocalOnly()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/logout.ts", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_logout_logoutlocalonly", + "community": 103, + "community_name": "Auth Vault", + "norm_label": "logoutlocalonly()" + }, + { + "label": "loopback.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/loopback.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_loopback", + "community": 121, + "community_name": "Auth", + "norm_label": "loopback.ts" + }, + { + "label": "wrDeskLogoHtml()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/loopback.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_loopback_wrdesklogohtml", + "community": 121, + "community_name": "Auth", + "norm_label": "wrdesklogohtml()" + }, + { + "label": "CallbackResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/loopback.ts", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_loopback_callbackresult", + "community": 121, + "community_name": "Auth", + "norm_label": "callbackresult" + }, + { + "label": "LoopbackServer", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/loopback.ts", + "source_location": "L29", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_loopback_loopbackserver", + "community": 121, + "community_name": "Auth", + "norm_label": "loopbackserver" + }, + { + "label": "PREFERRED_PORTS", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/loopback.ts", + "source_location": "L47", + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_loopback_preferred_ports", + "community": 121, + "community_name": "Auth", + "norm_label": "preferred_ports" + }, + { + "label": "startLoopbackServer()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/loopback.ts", + "source_location": "L66", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_loopback_startloopbackserver", + "community": 121, + "community_name": "Auth", + "norm_label": "startloopbackserver()" + }, + { + "label": "tryPortsInOrder()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/loopback.ts", + "source_location": "L73", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_loopback_tryportsinorder", + "community": 121, + "community_name": "Auth", + "norm_label": "tryportsinorder()" + }, + { + "label": "startServerOnPort()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/loopback.ts", + "source_location": "L93", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_loopback_startserveronport", + "community": 121, + "community_name": "Auth", + "norm_label": "startserveronport()" + }, + { + "label": "RFC-8252", + "file_type": "concept", + "source_file": "apps/electron-vite-project/src/auth/loopback.ts", + "source_location": "L55", + "_origin": "ast", + "id": "docref_rfc_8252", + "community": 121, + "community_name": "Auth", + "norm_label": "rfc-8252" + }, + { + "label": "oidcConfig.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/oidcConfig.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_oidcconfig", + "community": 121, + "community_name": "Auth", + "norm_label": "oidcconfig.ts" + }, + { + "label": "oidc", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/oidcConfig.ts", + "source_location": "L4", + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_oidcconfig_oidc", + "community": 121, + "community_name": "Auth", + "norm_label": "oidc" + }, + { + "label": "pkce.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/pkce.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_pkce", + "community": 121, + "community_name": "Auth", + "norm_label": "pkce.ts" + }, + { + "label": "base64url()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/pkce.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_pkce_base64url", + "community": 121, + "community_name": "Auth", + "norm_label": "base64url()" + }, + { + "label": "randomString()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/pkce.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_pkce_randomstring", + "community": 121, + "community_name": "Auth", + "norm_label": "randomstring()" + }, + { + "label": "sha256base64url()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/pkce.ts", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_pkce_sha256base64url", + "community": 121, + "community_name": "Auth", + "norm_label": "sha256base64url()" + }, + { + "label": "RFC-7636", + "file_type": "concept", + "source_file": "apps/electron-vite-project/src/auth/pkce.ts", + "source_location": "L4", + "_origin": "ast", + "id": "docref_rfc_7636", + "community": 121, + "community_name": "Auth", + "norm_label": "rfc-7636" + }, + { + "label": "refresh.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/refresh.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_refresh", + "community": 121, + "community_name": "Auth", + "norm_label": "refresh.ts" + }, + { + "label": "RefreshTokenResponse", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/refresh.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_refresh_refreshtokenresponse", + "community": 121, + "community_name": "Auth", + "norm_label": "refreshtokenresponse" + }, + { + "label": "refreshWithKeycloak()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/refresh.ts", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_refresh_refreshwithkeycloak", + "community": 121, + "community_name": "Auth", + "norm_label": "refreshwithkeycloak()" + }, + { + "label": "session.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_session", + "community": 103, + "community_name": "Auth Vault", + "norm_label": "session.ts" + }, + { + "label": "SessionUserInfo", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_session_sessionuserinfo", + "community": 103, + "community_name": "Auth Vault", + "norm_label": "sessionuserinfo" + }, + { + "label": "decodeJwtPayload()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_session_decodejwtpayload", + "community": 103, + "community_name": "Auth Vault", + "norm_label": "decodejwtpayload()" + }, + { + "label": "PLAN_CLAIM_KEYS", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L55", + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_session_plan_claim_keys", + "community": 103, + "community_name": "Auth Vault", + "norm_label": "plan_claim_keys" + }, + { + "label": "NESTED_ATTRIBUTE_KEYS", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L73", + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_session_nested_attribute_keys", + "community": 103, + "community_name": "Auth Vault", + "norm_label": "nested_attribute_keys" + }, + { + "label": "extractPlanFromPayload()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L84", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_session_extractplanfrompayload", + "community": 103, + "community_name": "Auth Vault", + "norm_label": "extractplanfrompayload()" + }, + { + "label": "extractRoles()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L121", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_session_extractroles", + "community": 103, + "community_name": "Auth Vault", + "norm_label": "extractroles()" + }, + { + "label": "extractProfileFromPayload()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L154", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_session_extractprofilefrompayload", + "community": 103, + "community_name": "Auth Vault", + "norm_label": "extractprofilefrompayload()" + }, + { + "label": "extractUserInfoFromTokens()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L200", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_session_extractuserinfofromtokens", + "community": 103, + "community_name": "Auth Vault", + "norm_label": "extractuserinfofromtokens()" + }, + { + "label": "ensureSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L285", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_session_ensuresession", + "community": 103, + "community_name": "Auth Vault", + "norm_label": "ensuresession()" + }, + { + "label": "updateSessionFromTokens()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L351", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_session_updatesessionfromtokens", + "community": 103, + "community_name": "Auth Vault", + "norm_label": "updatesessionfromtokens()" + }, + { + "label": "getAccessToken()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L384", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_session_getaccesstoken", + "community": 0, + "community_name": "Internal Host Inference", + "norm_label": "getaccesstoken()" + }, + { + "label": "clearSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L391", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_session_clearsession", + "community": 103, + "community_name": "Auth Vault", + "norm_label": "clearsession()" + }, + { + "label": "sessionCache.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/sessionCache.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_sessioncache", + "community": 103, + "community_name": "Auth Vault", + "norm_label": "sessioncache.ts" + }, + { + "label": "getCachedUserInfo()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/sessionCache.ts", + "source_location": "L6", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_sessioncache_getcacheduserinfo", + "community": 103, + "community_name": "Auth Vault", + "norm_label": "getcacheduserinfo()" + }, + { + "label": "setCachedUserInfo()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/sessionCache.ts", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_sessioncache_setcacheduserinfo", + "community": 103, + "community_name": "Auth Vault", + "norm_label": "setcacheduserinfo()" + }, + { + "label": "tokenStore.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/tokenStore.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_tokenstore", + "community": 103, + "community_name": "Auth Vault", + "norm_label": "tokenstore.ts" + }, + { + "label": "saveRefreshToken()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/tokenStore.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_tokenstore_saverefreshtoken", + "community": 103, + "community_name": "Auth Vault", + "norm_label": "saverefreshtoken()" + }, + { + "label": "loadRefreshToken()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/tokenStore.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_tokenstore_loadrefreshtoken", + "community": 103, + "community_name": "Auth Vault", + "norm_label": "loadrefreshtoken()" + }, + { + "label": "clearRefreshToken()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/auth/tokenStore.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_auth_tokenstore_clearrefreshtoken", + "community": 103, + "community_name": "Auth Vault", + "norm_label": "clearrefreshtoken()" + }, + { + "label": "letterComposerChat.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/chat/routing/letterComposerChat.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_chat_routing_lettercomposerchat", + "community": 376, + "community_name": "Chat Routing", + "norm_label": "lettercomposerchat.ts" + }, + { + "label": "FALLBACK_FIELD", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/chat/routing/letterComposerChat.ts", + "source_location": "L10", + "_origin": "ast", + "id": "apps_electron_vite_project_src_chat_routing_lettercomposerchat_fallback_field", + "community": 376, + "community_name": "Chat Routing", + "norm_label": "fallback_field" + }, + { + "label": "LETTER_REFERENCE_PROMPT_KEYS", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/chat/routing/letterComposerChat.ts", + "source_location": "L12", + "_origin": "ast", + "id": "apps_electron_vite_project_src_chat_routing_lettercomposerchat_letter_reference_prompt_keys", + "community": 376, + "community_name": "Chat Routing", + "norm_label": "letter_reference_prompt_keys" + }, + { + "label": "formatReferenceDataFromLetter()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/chat/routing/letterComposerChat.ts", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_chat_routing_lettercomposerchat_formatreferencedatafromletter", + "community": 376, + "community_name": "Chat Routing", + "norm_label": "formatreferencedatafromletter()" + }, + { + "label": "handleLetterComposerChat()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/chat/routing/letterComposerChat.ts", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_chat_routing_lettercomposerchat_handlelettercomposerchat", + "community": 376, + "community_name": "Chat Routing", + "norm_label": "handlelettercomposerchat()" + }, + { + "label": "letterComposerPrompt.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/chat/routing/letterComposerPrompt.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_chat_routing_lettercomposerprompt", + "community": 376, + "community_name": "Chat Routing", + "norm_label": "lettercomposerprompt.ts" + }, + { + "label": "buildLetterComposerSystemPrompt()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/chat/routing/letterComposerPrompt.ts", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_chat_routing_lettercomposerprompt_buildlettercomposersystemprompt", + "community": 376, + "community_name": "Chat Routing", + "norm_label": "buildlettercomposersystemprompt()" + }, + { + "label": "nonEmpty()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/chat/routing/letterComposerPrompt.ts", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_chat_routing_lettercomposerprompt_nonempty", + "community": 376, + "community_name": "Chat Routing", + "norm_label": "nonempty()" + }, + { + "label": "buildLetterComposerUserPrompt()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/chat/routing/letterComposerPrompt.ts", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_chat_routing_lettercomposerprompt_buildlettercomposeruserprompt", + "community": 376, + "community_name": "Chat Routing", + "norm_label": "buildlettercomposeruserprompt()" + }, + { + "label": "letterVaultHelper.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/chat/routing/letterVaultHelper.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_chat_routing_lettervaulthelper", + "community": 277, + "community_name": "Chat Routing Stores", + "norm_label": "lettervaulthelper.ts" + }, + { + "label": "LetterVaultListCategory", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/chat/routing/letterVaultHelper.ts", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_chat_routing_lettervaulthelper_lettervaultlistcategory", + "community": 277, + "community_name": "Chat Routing Stores", + "norm_label": "lettervaultlistcategory" + }, + { + "label": "VaultFieldRow", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/chat/routing/letterVaultHelper.ts", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_chat_routing_lettervaulthelper_vaultfieldrow", + "community": 277, + "community_name": "Chat Routing Stores", + "norm_label": "vaultfieldrow" + }, + { + "label": "parseVaultTier()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/chat/routing/letterVaultHelper.ts", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_chat_routing_lettervaulthelper_parsevaulttier", + "community": 277, + "community_name": "Chat Routing Stores", + "norm_label": "parsevaulttier()" + }, + { + "label": "recordTypeForLetterCategory()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/chat/routing/letterVaultHelper.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_chat_routing_lettervaulthelper_recordtypeforlettercategory", + "community": 277, + "community_name": "Chat Routing Stores", + "norm_label": "recordtypeforlettercategory()" + }, + { + "label": "vaultFieldsToKeyMap()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/chat/routing/letterVaultHelper.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_chat_routing_lettervaulthelper_vaultfieldstokeymap", + "community": 277, + "community_name": "Chat Routing Stores", + "norm_label": "vaultfieldstokeymap()" + }, + { + "label": "assembleStructuredAddress()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/chat/routing/letterVaultHelper.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_chat_routing_lettervaulthelper_assemblestructuredaddress", + "community": 277, + "community_name": "Chat Routing Stores", + "norm_label": "assemblestructuredaddress()" + }, + { + "label": "mapVaultFieldsToLetterData()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/chat/routing/letterVaultHelper.ts", + "source_location": "L71", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_chat_routing_lettervaulthelper_mapvaultfieldstoletterdata", + "community": 277, + "community_name": "Chat Routing Stores", + "norm_label": "mapvaultfieldstoletterdata()" + }, + { + "label": "isVaultRpcSuccess()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/chat/routing/letterVaultHelper.ts", + "source_location": "L118", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_chat_routing_lettervaulthelper_isvaultrpcsuccess", + "community": 277, + "community_name": "Chat Routing Stores", + "norm_label": "isvaultrpcsuccess()" + }, + { + "label": "canAccessLetterVaultCategory()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/chat/routing/letterVaultHelper.ts", + "source_location": "L122", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_chat_routing_lettervaulthelper_canaccesslettervaultcategory", + "community": 277, + "community_name": "Chat Routing Stores", + "norm_label": "canaccesslettervaultcategory()" + }, + { + "label": "listLetterVaultItems()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/chat/routing/letterVaultHelper.ts", + "source_location": "L140", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_chat_routing_lettervaulthelper_listlettervaultitems", + "community": 277, + "community_name": "Chat Routing Stores", + "norm_label": "listlettervaultitems()" + }, + { + "label": "fetchAndMapVaultItem()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/chat/routing/letterVaultHelper.ts", + "source_location": "L195", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_chat_routing_lettervaulthelper_fetchandmapvaultitem", + "community": 277, + "community_name": "Chat Routing Stores", + "norm_label": "fetchandmapvaultitem()" + }, + { + "label": "fetchLetterVaultData()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/chat/routing/letterVaultHelper.ts", + "source_location": "L242", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_chat_routing_lettervaulthelper_fetchlettervaultdata", + "community": 277, + "community_name": "Chat Routing Stores", + "norm_label": "fetchlettervaultdata()" + }, + { + "label": "resolveChatRoute.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/chat/routing/resolveChatRoute.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_chat_routing_resolvechatroute", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "resolvechatroute.ts" + }, + { + "label": "ChatRouteKind", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/chat/routing/resolveChatRoute.ts", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_chat_routing_resolvechatroute_chatroutekind", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "chatroutekind" + }, + { + "label": "ChatRouteDecision", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/chat/routing/resolveChatRoute.ts", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_chat_routing_resolvechatroute_chatroutedecision", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "chatroutedecision" + }, + { + "label": "resolveChatRoute()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/chat/routing/resolveChatRoute.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_chat_routing_resolvechatroute_resolvechatroute", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "resolvechatroute()" + }, + { + "label": "AcceptHandshakeModal.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/AcceptHandshakeModal.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_accepthandshakemodal", + "community": 188, + "community_name": "Handshake #188", + "norm_label": "accepthandshakemodal.tsx" + }, + { + "label": "HandshakeRecord", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/AcceptHandshakeModal.tsx", + "source_location": "L21", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_accepthandshakemodal_handshakerecord", + "community": 188, + "community_name": "Handshake #188", + "norm_label": "handshakerecord" + }, + { + "label": "Props", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/AcceptHandshakeModal.tsx", + "source_location": "L36", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_accepthandshakemodal_props", + "community": 188, + "community_name": "Handshake #188", + "norm_label": "props" + }, + { + "label": "generateBlockId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/AcceptHandshakeModal.tsx", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_accepthandshakemodal_generateblockid", + "community": 188, + "community_name": "Handshake #188", + "norm_label": "generateblockid()" + }, + { + "label": "AcceptHandshakeModal()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/AcceptHandshakeModal.tsx", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_accepthandshakemodal_accepthandshakemodal", + "community": 188, + "community_name": "Handshake #188", + "norm_label": "accepthandshakemodal()" + }, + { + "label": "AiDraftContextRail.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/AiDraftContextRail.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_aidraftcontextrail", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "aidraftcontextrail.tsx" + }, + { + "label": "AiDraftContextRailProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/AiDraftContextRail.tsx", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_aidraftcontextrail_aidraftcontextrailprops", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "aidraftcontextrailprops" + }, + { + "label": "AiDraftContextRail()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/AiDraftContextRail.tsx", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_aidraftcontextrail_aidraftcontextrail", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "aidraftcontextrail()" + }, + { + "label": "AnalysisCanvas.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysiscanvas", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "analysiscanvas.tsx" + }, + { + "label": "DeepLinkState", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L62", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysiscanvas_deeplinkstate", + "community": 132, + "community_name": "Analysis #132", + "norm_label": "deeplinkstate" + }, + { + "label": "AnalysisCanvasProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L69", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysiscanvas_analysiscanvasprops", + "community": 131, + "community_name": "Analysis #131", + "norm_label": "analysiscanvasprops" + }, + { + "label": "AnalysisCanvas()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L97", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysiscanvas_analysiscanvas", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "analysiscanvas()" + }, + { + "label": "AutoSortSessionHistory.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/AutoSortSessionHistory.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_autosortsessionhistory", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "autosortsessionhistory.tsx" + }, + { + "label": "SessionRow", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/AutoSortSessionHistory.tsx", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_autosortsessionhistory_sessionrow", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "sessionrow" + }, + { + "label": "AutoSortSessionHistoryProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/AutoSortSessionHistory.tsx", + "source_location": "L19", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_autosortsessionhistory_autosortsessionhistoryprops", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "autosortsessionhistoryprops" + }, + { + "label": "AutoSortSessionHistory()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/AutoSortSessionHistory.tsx", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_autosortsessionhistory_autosortsessionhistory", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "autosortsessionhistory()" + }, + { + "label": "AutoSortSessionReview.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/AutoSortSessionReview.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_autosortsessionreview", + "community": 231, + "community_name": "Autosortsessionreview", + "norm_label": "autosortsessionreview.tsx" + }, + { + "label": "CATEGORY_COLORS", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/AutoSortSessionReview.tsx", + "source_location": "L31", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_autosortsessionreview_category_colors", + "community": 231, + "community_name": "Autosortsessionreview", + "norm_label": "category_colors" + }, + { + "label": "URGENCY_BUCKET_META", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/AutoSortSessionReview.tsx", + "source_location": "L41", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_autosortsessionreview_urgency_bucket_meta", + "community": 231, + "community_name": "Autosortsessionreview", + "norm_label": "urgency_bucket_meta" + }, + { + "label": "formatCategoryLabel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/AutoSortSessionReview.tsx", + "source_location": "L48", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_autosortsessionreview_formatcategorylabel", + "community": 231, + "community_name": "Autosortsessionreview", + "norm_label": "formatcategorylabel()" + }, + { + "label": "bucketUrgency()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/AutoSortSessionReview.tsx", + "source_location": "L52", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_autosortsessionreview_bucketurgency", + "community": 231, + "community_name": "Autosortsessionreview", + "norm_label": "bucketurgency()" + }, + { + "label": "SessionRow", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/AutoSortSessionReview.tsx", + "source_location": "L60", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_autosortsessionreview_sessionrow", + "community": 231, + "community_name": "Autosortsessionreview", + "norm_label": "sessionrow" + }, + { + "label": "MessageListRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/AutoSortSessionReview.tsx", + "source_location": "L75", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_autosortsessionreview_messagelistrow", + "community": 231, + "community_name": "Autosortsessionreview", + "norm_label": "messagelistrow()" + }, + { + "label": "AiSummaryParsed", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/AutoSortSessionReview.tsx", + "source_location": "L130", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_autosortsessionreview_aisummaryparsed", + "community": 231, + "community_name": "Autosortsessionreview", + "norm_label": "aisummaryparsed" + }, + { + "label": "AutoSortSessionReviewProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/AutoSortSessionReview.tsx", + "source_location": "L135", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_autosortsessionreview_autosortsessionreviewprops", + "community": 231, + "community_name": "Autosortsessionreview", + "norm_label": "autosortsessionreviewprops" + }, + { + "label": "AutoSortSessionReview()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/AutoSortSessionReview.tsx", + "source_location": "L141", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_autosortsessionreview_autosortsessionreview", + "community": 231, + "community_name": "Autosortsessionreview", + "norm_label": "autosortsessionreview()" + }, + { + "label": "AutosortRuntimeStatus.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/AutosortRuntimeStatus.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_autosortruntimestatus", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "autosortruntimestatus.tsx" + }, + { + "label": "GPU_LABEL", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/AutosortRuntimeStatus.tsx", + "source_location": "L13", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_autosortruntimestatus_gpu_label", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "gpu_label" + }, + { + "label": "GPU_COLOR", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/AutosortRuntimeStatus.tsx", + "source_location": "L20", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_autosortruntimestatus_gpu_color", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "gpu_color" + }, + { + "label": "StatusBadgeState", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/AutosortRuntimeStatus.tsx", + "source_location": "L27", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_autosortruntimestatus_statusbadgestate", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "statusbadgestate" + }, + { + "label": "EMPTY", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/AutosortRuntimeStatus.tsx", + "source_location": "L36", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_autosortruntimestatus_empty", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "empty" + }, + { + "label": "AutosortRuntimeStatus()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/AutosortRuntimeStatus.tsx", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_autosortruntimestatus_autosortruntimestatus", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "autosortruntimestatus()" + }, + { + "label": "BeapActionIconButton.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapActionIconButton.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapactioniconbutton", + "community": 252, + "community_name": "Inboxactionicons", + "norm_label": "beapactioniconbutton.tsx" + }, + { + "label": "BeapActionIconKind", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapActionIconButton.tsx", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapactioniconbutton_beapactioniconkind", + "community": 252, + "community_name": "Inboxactionicons", + "norm_label": "beapactioniconkind" + }, + { + "label": "BeapActionIconButtonProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapActionIconButton.tsx", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapactioniconbutton_beapactioniconbuttonprops", + "community": 252, + "community_name": "Inboxactionicons", + "norm_label": "beapactioniconbuttonprops" + }, + { + "label": "BeapActionIconButton()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapActionIconButton.tsx", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapactioniconbutton_beapactioniconbutton", + "community": 252, + "community_name": "Inboxactionicons", + "norm_label": "beapactioniconbutton()" + }, + { + "label": "BeapBulkInboxDashboard.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapBulkInboxDashboard.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapbulkinboxdashboard", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "beapbulkinboxdashboard.tsx" + }, + { + "label": "BeapBulkInboxDashboardProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapBulkInboxDashboard.tsx", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapbulkinboxdashboard_beapbulkinboxdashboardprops", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "beapbulkinboxdashboardprops" + }, + { + "label": "BeapBulkInboxDashboard()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapBulkInboxDashboard.tsx", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapbulkinboxdashboard_beapbulkinboxdashboard", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "beapbulkinboxdashboard()" + }, + { + "label": "BeapInboxDashboard.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapInboxDashboard.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapinboxdashboard", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "beapinboxdashboard.tsx" + }, + { + "label": "THEME", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapInboxDashboard.tsx", + "source_location": "L28", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapinboxdashboard_theme", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "theme" + }, + { + "label": "URGENCY_DOT", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapInboxDashboard.tsx", + "source_location": "L30", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapinboxdashboard_urgency_dot", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "urgency_dot" + }, + { + "label": "TRUST_BADGE", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapInboxDashboard.tsx", + "source_location": "L37", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapinboxdashboard_trust_badge", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "trust_badge" + }, + { + "label": "formatRelativeTime()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapInboxDashboard.tsx", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapinboxdashboard_formatrelativetime", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "formatrelativetime()" + }, + { + "label": "getContentPreview()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapInboxDashboard.tsx", + "source_location": "L59", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapinboxdashboard_getcontentpreview", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "getcontentpreview()" + }, + { + "label": "BeapInboxDashboardProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapInboxDashboard.tsx", + "source_location": "L64", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapinboxdashboard_beapinboxdashboardprops", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "beapinboxdashboardprops" + }, + { + "label": "BeapInboxDashboard()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapInboxDashboard.tsx", + "source_location": "L77", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapinboxdashboard_beapinboxdashboard", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "beapinboxdashboard()" + }, + { + "label": "BeapInboxFirstRun.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapInboxFirstRun.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapinboxfirstrun", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "beapinboxfirstrun.tsx" + }, + { + "label": "useBeapFileImport()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapInboxFirstRun.tsx", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapinboxfirstrun_usebeapfileimport", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "usebeapfileimport()" + }, + { + "label": "Window", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapInboxFirstRun.tsx", + "source_location": "L91", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapinboxfirstrun_window", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "window" + }, + { + "label": "BeapInboxFirstRunProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapInboxFirstRun.tsx", + "source_location": "L101", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapinboxfirstrun_beapinboxfirstrunprops", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "beapinboxfirstrunprops" + }, + { + "label": "BeapInboxFirstRun()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapInboxFirstRun.tsx", + "source_location": "L108", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapinboxfirstrun_beapinboxfirstrun", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "beapinboxfirstrun()" + }, + { + "label": "BeapInboxRedirectIcon.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapInboxRedirectIcon.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapinboxredirecticon", + "community": 252, + "community_name": "Inboxactionicons", + "norm_label": "beapinboxredirecticon.tsx" + }, + { + "label": "BeapInboxRedirectIcon()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapInboxRedirectIcon.tsx", + "source_location": "L4", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapinboxredirecticon_beapinboxredirecticon", + "community": 252, + "community_name": "Inboxactionicons", + "norm_label": "beapinboxredirecticon()" + }, + { + "label": "BeapInboxRunAutomationIcon.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapInboxRunAutomationIcon.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapinboxrunautomationicon", + "community": 252, + "community_name": "Inboxactionicons", + "norm_label": "beapinboxrunautomationicon.tsx" + }, + { + "label": "BeapInboxRunAutomationIcon()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapInboxRunAutomationIcon.tsx", + "source_location": "L2", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapinboxrunautomationicon_beapinboxrunautomationicon", + "community": 252, + "community_name": "Inboxactionicons", + "norm_label": "beapinboxrunautomationicon()" + }, + { + "label": "BeapInboxSandboxCloneIcon.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapInboxSandboxCloneIcon.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapinboxsandboxcloneicon", + "community": 252, + "community_name": "Inboxactionicons", + "norm_label": "beapinboxsandboxcloneicon.tsx" + }, + { + "label": "BeapInboxSandboxCloneIcon()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapInboxSandboxCloneIcon.tsx", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapinboxsandboxcloneicon_beapinboxsandboxcloneicon", + "community": 252, + "community_name": "Inboxactionicons", + "norm_label": "beapinboxsandboxcloneicon()" + }, + { + "label": "src/components/BeapInboxView.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapInboxView.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapinboxview", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "src/components/beapinboxview.tsx" + }, + { + "label": "THEME", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapInboxView.tsx", + "source_location": "L17", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapinboxview_theme", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "theme" + }, + { + "label": "SidebarKey", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapInboxView.tsx", + "source_location": "L19", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapinboxview_sidebarkey", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "sidebarkey" + }, + { + "label": "SIDEBAR_ITEMS", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapInboxView.tsx", + "source_location": "L21", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapinboxview_sidebar_items", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "sidebar_items" + }, + { + "label": "BeapInboxView()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapInboxView.tsx", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapinboxview_beapinboxview", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "beapinboxview()" + }, + { + "label": "BeapInlineComposer.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapinlinecomposer", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "beapinlinecomposer.tsx" + }, + { + "label": "ackToState()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L69", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapinlinecomposer_acktostate", + "community": 139, + "community_name": "Handshake Beapbuilder Shims", + "norm_label": "acktostate()" + }, + { + "label": "BeapInlineComposerProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L104", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapinlinecomposer_beapinlinecomposerprops", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "beapinlinecomposerprops" + }, + { + "label": "LocalAttachment", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L120", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapinlinecomposer_localattachment", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "localattachment" + }, + { + "label": "draftSurface", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L140", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapinlinecomposer_draftsurface", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "draftsurface" + }, + { + "label": "OrchestratorSession", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L150", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapinlinecomposer_orchestratorsession", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "orchestratorsession" + }, + { + "label": "isPdfAttachment()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L152", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapinlinecomposer_ispdfattachment", + "community": 139, + "community_name": "Handshake Beapbuilder Shims", + "norm_label": "ispdfattachment()" + }, + { + "label": "BeapInlineComposer()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L158", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapinlinecomposer_beapinlinecomposer", + "community": 139, + "community_name": "Handshake Beapbuilder Shims", + "norm_label": "beapinlinecomposer()" + }, + { + "label": "BeapMessageImportZone.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapMessageImportZone.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapmessageimportzone", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "beapmessageimportzone.tsx" + }, + { + "label": "Props", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapMessageImportZone.tsx", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapmessageimportzone_props", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "props" + }, + { + "label": "Window", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapMessageImportZone.tsx", + "source_location": "L19", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapmessageimportzone_window", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "window" + }, + { + "label": "BeapMessageImportZone()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapMessageImportZone.tsx", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapmessageimportzone_beapmessageimportzone", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "beapmessageimportzone()" + }, + { + "label": "BeapMessageSafeLinkParts.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapMessageSafeLinkParts.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapmessagesafelinkparts", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "beapmessagesafelinkparts.tsx" + }, + { + "label": "BeapMessageSafeLinkPartsProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapMessageSafeLinkParts.tsx", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapmessagesafelinkparts_beapmessagesafelinkpartsprops", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "beapmessagesafelinkpartsprops" + }, + { + "label": "BeapMessageSafeLinkParts()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapMessageSafeLinkParts.tsx", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapmessagesafelinkparts_beapmessagesafelinkparts", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "beapmessagesafelinkparts()" + }, + { + "label": "BeapMessageUploadZone.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapMessageUploadZone.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapmessageuploadzone", + "community": 460, + "community_name": "Beapmessageuploadzone", + "norm_label": "beapmessageuploadzone.tsx" + }, + { + "label": "BeapMessagePreview", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapMessageUploadZone.tsx", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapmessageuploadzone_beapmessagepreview", + "community": 460, + "community_name": "Beapmessageuploadzone", + "norm_label": "beapmessagepreview" + }, + { + "label": "Props", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapMessageUploadZone.tsx", + "source_location": "L19", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapmessageuploadzone_props", + "community": 460, + "community_name": "Beapmessageuploadzone", + "norm_label": "props" + }, + { + "label": "BeapMessageUploadZone()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapMessageUploadZone.tsx", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapmessageuploadzone_beapmessageuploadzone", + "community": 460, + "community_name": "Beapmessageuploadzone", + "norm_label": "beapmessageuploadzone()" + }, + { + "label": "BeapRedirectDialog.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapRedirectDialog.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapredirectdialog", + "community": 139, + "community_name": "Handshake Beapbuilder Shims", + "norm_label": "beapredirectdialog.tsx" + }, + { + "label": "BeapRedirectSourcePayload", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapRedirectDialog.tsx", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapredirectdialog_beapredirectsourcepayload", + "community": 139, + "community_name": "Handshake Beapbuilder Shims", + "norm_label": "beapredirectsourcepayload" + }, + { + "label": "buildProvenanceBlock()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapRedirectDialog.tsx", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapredirectdialog_buildprovenanceblock", + "community": 139, + "community_name": "Handshake Beapbuilder Shims", + "norm_label": "buildprovenanceblock()" + }, + { + "label": "BeapRedirectDialogProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapRedirectDialog.tsx", + "source_location": "L54", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapredirectdialog_beapredirectdialogprops", + "community": 139, + "community_name": "Handshake Beapbuilder Shims", + "norm_label": "beapredirectdialogprops" + }, + { + "label": "BeapRedirectDialog()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapRedirectDialog.tsx", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapredirectdialog_beapredirectdialog", + "community": 139, + "community_name": "Handshake Beapbuilder Shims", + "norm_label": "beapredirectdialog()" + }, + { + "label": "BeapSandboxCloneDialog.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapSandboxCloneDialog.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapsandboxclonedialog", + "community": 139, + "community_name": "Handshake Beapbuilder Shims", + "norm_label": "beapsandboxclonedialog.tsx" + }, + { + "label": "formatSandboxSelectLabel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapSandboxCloneDialog.tsx", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapsandboxclonedialog_formatsandboxselectlabel", + "community": 139, + "community_name": "Handshake Beapbuilder Shims", + "norm_label": "formatsandboxselectlabel()" + }, + { + "label": "BeapSandboxCloneDialogProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapSandboxCloneDialog.tsx", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapsandboxclonedialog_beapsandboxclonedialogprops", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "beapsandboxclonedialogprops" + }, + { + "label": "BeapSandboxCloneDialog()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapSandboxCloneDialog.tsx", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapsandboxclonedialog_beapsandboxclonedialog", + "community": 139, + "community_name": "Handshake Beapbuilder Shims", + "norm_label": "beapsandboxclonedialog()" + }, + { + "label": "BeapSandboxUnavailableDialog.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapSandboxUnavailableDialog.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapsandboxunavailabledialog", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "beapsandboxunavailabledialog.tsx" + }, + { + "label": "BeapSandboxUnavailableVariant", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapSandboxUnavailableDialog.tsx", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapsandboxunavailabledialog_beapsandboxunavailablevariant", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "beapsandboxunavailablevariant" + }, + { + "label": "BeapSandboxUnavailableDialogProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapSandboxUnavailableDialog.tsx", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapsandboxunavailabledialog_beapsandboxunavailabledialogprops", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "beapsandboxunavailabledialogprops" + }, + { + "label": "DIALOG", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapSandboxUnavailableDialog.tsx", + "source_location": "L28", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapsandboxunavailabledialog_dialog", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "dialog" + }, + { + "label": "BeapSandboxUnavailableDialog()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapSandboxUnavailableDialog.tsx", + "source_location": "L46", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapsandboxunavailabledialog_beapsandboxunavailabledialog", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "beapsandboxunavailabledialog()" + }, + { + "label": "BeapSessionAutomationPanel.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapSessionAutomationPanel.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapsessionautomationpanel", + "community": 204, + "community_name": "Inboxsessionartefact", + "norm_label": "beapsessionautomationpanel.tsx" + }, + { + "label": "BeapSessionAutomationPanelProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapSessionAutomationPanel.tsx", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapsessionautomationpanel_beapsessionautomationpanelprops", + "community": 204, + "community_name": "Inboxsessionartefact", + "norm_label": "beapsessionautomationpanelprops" + }, + { + "label": "BeapSessionAutomationPanel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BeapSessionAutomationPanel.tsx", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_beapsessionautomationpanel_beapsessionautomationpanel", + "community": 204, + "community_name": "Inboxsessionartefact", + "norm_label": "beapsessionautomationpanel()" + }, + { + "label": "BulkInboxAttachmentsStrip.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BulkInboxAttachmentsStrip.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_bulkinboxattachmentsstrip", + "community": 81, + "community_name": "Stores", + "norm_label": "bulkinboxattachmentsstrip.tsx" + }, + { + "label": "isPdfAttachment()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BulkInboxAttachmentsStrip.tsx", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_bulkinboxattachmentsstrip_ispdfattachment", + "community": 81, + "community_name": "Stores", + "norm_label": "ispdfattachment()" + }, + { + "label": "formatKb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BulkInboxAttachmentsStrip.tsx", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_bulkinboxattachmentsstrip_formatkb", + "community": 81, + "community_name": "Stores", + "norm_label": "formatkb()" + }, + { + "label": "AttachmentHydrationState", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BulkInboxAttachmentsStrip.tsx", + "source_location": "L33", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_bulkinboxattachmentsstrip_attachmenthydrationstate", + "community": 81, + "community_name": "Stores", + "norm_label": "attachmenthydrationstate" + }, + { + "label": "BulkInboxAttachmentsStripProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BulkInboxAttachmentsStrip.tsx", + "source_location": "L40", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_bulkinboxattachmentsstrip_bulkinboxattachmentsstripprops", + "community": 186, + "community_name": "Stores #186", + "norm_label": "bulkinboxattachmentsstripprops" + }, + { + "label": "BulkInboxAttachmentsStrip()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BulkInboxAttachmentsStrip.tsx", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_bulkinboxattachmentsstrip_bulkinboxattachmentsstrip", + "community": 81, + "community_name": "Stores", + "norm_label": "bulkinboxattachmentsstrip()" + }, + { + "label": "BulkOllamaModelSelect.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BulkOllamaModelSelect.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_bulkollamamodelselect", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "bulkollamamodelselect.tsx" + }, + { + "label": "GPU_LABEL", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BulkOllamaModelSelect.tsx", + "source_location": "L18", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_bulkollamamodelselect_gpu_label", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "gpu_label" + }, + { + "label": "GPU_COLOR", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BulkOllamaModelSelect.tsx", + "source_location": "L25", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_bulkollamamodelselect_gpu_color", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "gpu_color" + }, + { + "label": "RuntimeChipState", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BulkOllamaModelSelect.tsx", + "source_location": "L32", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_bulkollamamodelselect_runtimechipstate", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "runtimechipstate" + }, + { + "label": "CHIP_EMPTY", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BulkOllamaModelSelect.tsx", + "source_location": "L40", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_bulkollamamodelselect_chip_empty", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "chip_empty" + }, + { + "label": "BulkOllamaModelSelectVariant", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BulkOllamaModelSelect.tsx", + "source_location": "L48", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_bulkollamamodelselect_bulkollamamodelselectvariant", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "bulkollamamodelselectvariant" + }, + { + "label": "BulkOllamaModelSelect()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/BulkOllamaModelSelect.tsx", + "source_location": "L50", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_bulkollamamodelselect_bulkollamamodelselect", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "bulkollamamodelselect()" + }, + { + "label": "CapsuleUploadZone.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/CapsuleUploadZone.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_capsuleuploadzone", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "capsuleuploadzone.tsx" + }, + { + "label": "CapsulePreview", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/CapsuleUploadZone.tsx", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_capsuleuploadzone_capsulepreview", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "capsulepreview" + }, + { + "label": "Props", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/CapsuleUploadZone.tsx", + "source_location": "L26", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_capsuleuploadzone_props", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "props" + }, + { + "label": "mapPipelineError()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/CapsuleUploadZone.tsx", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_capsuleuploadzone_mappipelineerror", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "mappipelineerror()" + }, + { + "label": "CollapsibleSection.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/CollapsibleSection.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_collapsiblesection", + "community": 506, + "community_name": "Collapsiblesection", + "norm_label": "collapsiblesection.tsx" + }, + { + "label": "CollapsibleSectionProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/CollapsibleSection.tsx", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_collapsiblesection_collapsiblesectionprops", + "community": 506, + "community_name": "Collapsiblesection", + "norm_label": "collapsiblesectionprops" + }, + { + "label": "CollapsibleSection()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/CollapsibleSection.tsx", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_collapsiblesection_collapsiblesection", + "community": 506, + "community_name": "Collapsiblesection", + "norm_label": "collapsiblesection()" + }, + { + "label": "ComposeButtons.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/ComposeButtons.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_composebuttons", + "community": 507, + "community_name": "Composebuttons", + "norm_label": "composebuttons.tsx" + }, + { + "label": "ComposeButtonsProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/ComposeButtons.tsx", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_composebuttons_composebuttonsprops", + "community": 507, + "community_name": "Composebuttons", + "norm_label": "composebuttonsprops" + }, + { + "label": "ComposeButtons()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/ComposeButtons.tsx", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_composebuttons_composebuttons", + "community": 507, + "community_name": "Composebuttons", + "norm_label": "composebuttons()" + }, + { + "label": "ComposeFieldsForm.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/ComposeFieldsForm.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_composefieldsform", + "community": 290, + "community_name": "Stores #290", + "norm_label": "composefieldsform.tsx" + }, + { + "label": "FieldGroup", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/ComposeFieldsForm.tsx", + "source_location": "L16", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_composefieldsform_fieldgroup", + "community": 290, + "community_name": "Stores #290", + "norm_label": "fieldgroup" + }, + { + "label": "GROUP_ORDER", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/ComposeFieldsForm.tsx", + "source_location": "L18", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_composefieldsform_group_order", + "community": 290, + "community_name": "Stores #290", + "norm_label": "group_order" + }, + { + "label": "GROUP_TITLES", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/ComposeFieldsForm.tsx", + "source_location": "L20", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_composefieldsform_group_titles", + "community": 290, + "community_name": "Stores #290", + "norm_label": "group_titles" + }, + { + "label": "LANGUAGE_DEFAULTS", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/ComposeFieldsForm.tsx", + "source_location": "L28", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_composefieldsform_language_defaults", + "community": 290, + "community_name": "Stores #290", + "norm_label": "language_defaults" + }, + { + "label": "LANGUAGE_NAMES", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/ComposeFieldsForm.tsx", + "source_location": "L48", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_composefieldsform_language_names", + "community": 290, + "community_name": "Stores #290", + "norm_label": "language_names" + }, + { + "label": "SUPPORTED_LANG_CODES", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/ComposeFieldsForm.tsx", + "source_location": "L65", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_composefieldsform_supported_lang_codes", + "community": 290, + "community_name": "Stores #290", + "norm_label": "supported_lang_codes" + }, + { + "label": "normalizeDetectedLang()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/ComposeFieldsForm.tsx", + "source_location": "L67", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_composefieldsform_normalizedetectedlang", + "community": 290, + "community_name": "Stores #290", + "norm_label": "normalizedetectedlang()" + }, + { + "label": "templateLogoDisplayUrl()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/ComposeFieldsForm.tsx", + "source_location": "L78", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_composefieldsform_templatelogodisplayurl", + "community": 290, + "community_name": "Stores #290", + "norm_label": "templatelogodisplayurl()" + }, + { + "label": "loadSenderProfile()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/ComposeFieldsForm.tsx", + "source_location": "L105", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_composefieldsform_loadsenderprofile", + "community": 290, + "community_name": "Stores #290", + "norm_label": "loadsenderprofile()" + }, + { + "label": "saveSenderProfile()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/ComposeFieldsForm.tsx", + "source_location": "L118", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_composefieldsform_savesenderprofile", + "community": 290, + "community_name": "Stores #290", + "norm_label": "savesenderprofile()" + }, + { + "label": "ComposeFieldsFormProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/ComposeFieldsForm.tsx", + "source_location": "L126", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_composefieldsform_composefieldsformprops", + "community": 290, + "community_name": "Stores #290", + "norm_label": "composefieldsformprops" + }, + { + "label": "ComposeFieldsForm()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/ComposeFieldsForm.tsx", + "source_location": "L132", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_composefieldsform_composefieldsform", + "community": 290, + "community_name": "Stores #290", + "norm_label": "composefieldsform()" + }, + { + "label": "ComposerAttachmentButton.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/ComposerAttachmentButton.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_composerattachmentbutton", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "composerattachmentbutton.tsx" + }, + { + "label": "ComposerAttachmentButtonProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/ComposerAttachmentButton.tsx", + "source_location": "L3", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_composerattachmentbutton_composerattachmentbuttonprops", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "composerattachmentbuttonprops" + }, + { + "label": "base", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/ComposerAttachmentButton.tsx", + "source_location": "L11", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_composerattachmentbutton_base", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "base" + }, + { + "label": "ComposerAttachmentButton()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/ComposerAttachmentButton.tsx", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_composerattachmentbutton_composerattachmentbutton", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "composerattachmentbutton()" + }, + { + "label": "ContextItemEditor.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/ContextItemEditor.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_contextitemeditor", + "community": 221, + "community_name": "Handshakecontextsection", + "norm_label": "contextitemeditor.tsx" + }, + { + "label": "ContextItemGovernanceEdit", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/ContextItemEditor.tsx", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_contextitemeditor_contextitemgovernanceedit", + "community": 221, + "community_name": "Handshakecontextsection", + "norm_label": "contextitemgovernanceedit" + }, + { + "label": "CONTENT_TYPES", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/ContextItemEditor.tsx", + "source_location": "L25", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_contextitemeditor_content_types", + "community": 221, + "community_name": "Handshakecontextsection", + "norm_label": "content_types" + }, + { + "label": "SENSITIVITIES", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/ContextItemEditor.tsx", + "source_location": "L26", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_contextitemeditor_sensitivities", + "community": 221, + "community_name": "Handshakecontextsection", + "norm_label": "sensitivities" + }, + { + "label": "Props", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/ContextItemEditor.tsx", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_contextitemeditor_props", + "community": 221, + "community_name": "Handshakecontextsection", + "norm_label": "props" + }, + { + "label": "ContextItemEditor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/ContextItemEditor.tsx", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_contextitemeditor_contextitemeditor", + "community": 221, + "community_name": "Handshakecontextsection", + "norm_label": "contextitemeditor()" + }, + { + "label": "DashboardBeapComposer.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/DashboardBeapComposer.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_dashboardbeapcomposer", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "dashboardbeapcomposer.tsx" + }, + { + "label": "DashboardBeapComposerProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/DashboardBeapComposer.tsx", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_dashboardbeapcomposer_dashboardbeapcomposerprops", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "dashboardbeapcomposerprops" + }, + { + "label": "DashboardBeapComposer()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/DashboardBeapComposer.tsx", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_dashboardbeapcomposer_dashboardbeapcomposer", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "dashboardbeapcomposer()" + }, + { + "label": "DashboardEmailComposer.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/DashboardEmailComposer.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_dashboardemailcomposer", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "dashboardemailcomposer.tsx" + }, + { + "label": "DashboardEmailComposerProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/DashboardEmailComposer.tsx", + "source_location": "L19", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_dashboardemailcomposer_dashboardemailcomposerprops", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "dashboardemailcomposerprops" + }, + { + "label": "DashboardEmailComposer()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/DashboardEmailComposer.tsx", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_dashboardemailcomposer_dashboardemailcomposer", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "dashboardemailcomposer()" + }, + { + "label": "DashboardHome.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/DashboardHome.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_dashboardhome", + "community": 289, + "community_name": "Analysis #289", + "norm_label": "dashboardhome.tsx" + }, + { + "label": "DashboardHomeProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/DashboardHome.tsx", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_dashboardhome_dashboardhomeprops", + "community": 289, + "community_name": "Analysis #289", + "norm_label": "dashboardhomeprops" + }, + { + "label": "SystemEvent", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/DashboardHome.tsx", + "source_location": "L26", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_dashboardhome_systemevent", + "community": 289, + "community_name": "Analysis #289", + "norm_label": "systemevent" + }, + { + "label": "mockSystemEvents", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/DashboardHome.tsx", + "source_location": "L36", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_dashboardhome_mocksystemevents", + "community": 289, + "community_name": "Analysis #289", + "norm_label": "mocksystemevents" + }, + { + "label": "SystemEventHeroProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/DashboardHome.tsx", + "source_location": "L106", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_dashboardhome_systemeventheroprops", + "community": 289, + "community_name": "Analysis #289", + "norm_label": "systemeventheroprops" + }, + { + "label": "SystemEventHero()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/DashboardHome.tsx", + "source_location": "L113", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_dashboardhome_systemeventhero", + "community": 289, + "community_name": "Analysis #289", + "norm_label": "systemeventhero()" + }, + { + "label": "EventAnalysisModalProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/DashboardHome.tsx", + "source_location": "L232", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_dashboardhome_eventanalysismodalprops", + "community": 289, + "community_name": "Analysis #289", + "norm_label": "eventanalysismodalprops" + }, + { + "label": "EventAnalysisModal()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/DashboardHome.tsx", + "source_location": "L239", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_dashboardhome_eventanalysismodal", + "community": 289, + "community_name": "Analysis #289", + "norm_label": "eventanalysismodal()" + }, + { + "label": "SnapshotCardProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/DashboardHome.tsx", + "source_location": "L421", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_dashboardhome_snapshotcardprops", + "community": 289, + "community_name": "Analysis #289", + "norm_label": "snapshotcardprops" + }, + { + "label": "SnapshotCard()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/DashboardHome.tsx", + "source_location": "L429", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_dashboardhome_snapshotcard", + "community": 289, + "community_name": "Analysis #289", + "norm_label": "snapshotcard()" + }, + { + "label": "PreExecutionSnapshot()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/DashboardHome.tsx", + "source_location": "L446", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_dashboardhome_preexecutionsnapshot", + "community": 289, + "community_name": "Analysis #289", + "norm_label": "preexecutionsnapshot()" + }, + { + "label": "LiveExecutionSnapshotCard()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/DashboardHome.tsx", + "source_location": "L479", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_dashboardhome_liveexecutionsnapshotcard", + "community": 289, + "community_name": "Analysis #289", + "norm_label": "liveexecutionsnapshotcard()" + }, + { + "label": "PostExecutionSnapshotCard()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/DashboardHome.tsx", + "source_location": "L512", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_dashboardhome_postexecutionsnapshotcard", + "community": 289, + "community_name": "Analysis #289", + "norm_label": "postexecutionsnapshotcard()" + }, + { + "label": "DashboardHome()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/DashboardHome.tsx", + "source_location": "L548", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_dashboardhome_dashboardhome", + "community": 289, + "community_name": "Analysis #289", + "norm_label": "dashboardhome()" + }, + { + "label": "DebugLogViewer.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/DebugLogViewer.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_debuglogviewer", + "community": 331, + "community_name": "Debuglogclipboard", + "norm_label": "debuglogviewer.tsx" + }, + { + "label": "MainProcessLogEntry", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/DebugLogViewer.tsx", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_debuglogviewer_mainprocesslogentry", + "community": 331, + "community_name": "Debuglogclipboard", + "norm_label": "mainprocesslogentry" + }, + { + "label": "DebugLogViewer()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/DebugLogViewer.tsx", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_debuglogviewer_debuglogviewer", + "community": 331, + "community_name": "Debuglogclipboard", + "norm_label": "debuglogviewer()" + }, + { + "label": "DraftRefineLabel.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/DraftRefineLabel.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_draftrefinelabel", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "draftrefinelabel.tsx" + }, + { + "label": "DraftRefineLabel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/DraftRefineLabel.tsx", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_draftrefinelabel_draftrefinelabel", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "draftrefinelabel()" + }, + { + "label": "EmailComposeOverlay.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailComposeOverlay.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailcomposeoverlay", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "emailcomposeoverlay.tsx" + }, + { + "label": "EMAIL_SIGNATURE", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailComposeOverlay.tsx", + "source_location": "L10", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailcomposeoverlay_email_signature", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "email_signature" + }, + { + "label": "DraftAttachment", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailComposeOverlay.tsx", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailcomposeoverlay_draftattachment", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "draftattachment" + }, + { + "label": "ReplyToPrefill", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailComposeOverlay.tsx", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailcomposeoverlay_replytoprefill", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "replytoprefill" + }, + { + "label": "EmailComposeOverlayProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailComposeOverlay.tsx", + "source_location": "L26", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailcomposeoverlay_emailcomposeoverlayprops", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "emailcomposeoverlayprops" + }, + { + "label": "EmailComposeOverlay()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailComposeOverlay.tsx", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailcomposeoverlay_emailcomposeoverlay", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "emailcomposeoverlay()" + }, + { + "label": "EmailInboxBulkView.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxbulkview", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "emailinboxbulkview.tsx" + }, + { + "label": "accountEligibleForInboxFullReset()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L128", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxbulkview_accounteligibleforinboxfullreset", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "accounteligibleforinboxfullreset()" + }, + { + "label": "AutosortDiagAcc", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L137", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxbulkview_autosortdiagacc", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "autosortdiagacc" + }, + { + "label": "AutosortReviewBannerState", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L162", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxbulkview_autosortreviewbannerstate", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "autosortreviewbannerstate" + }, + { + "label": "RemoteSyncStatusDot()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L165", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxbulkview_remotesyncstatusdot", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "remotesyncstatusdot()" + }, + { + "label": "QueueStatusRow", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L191", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxbulkview_queuestatusrow", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "queuestatusrow" + }, + { + "label": "QueueAccountStatusRow", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L192", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxbulkview_queueaccountstatusrow", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "queueaccountstatusrow" + }, + { + "label": "QueueByAccountSummaryRow", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L193", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxbulkview_queuebyaccountsummaryrow", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "queuebyaccountsummaryrow" + }, + { + "label": "QueueMsgRow", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L203", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxbulkview_queuemsgrow", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "queuemsgrow" + }, + { + "label": "aggregateLifecycleOpCounts()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L213", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxbulkview_aggregatelifecycleopcounts", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "aggregatelifecycleopcounts()" + }, + { + "label": "countStatus()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L230", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxbulkview_countstatus", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "countstatus()" + }, + { + "label": "buildRemoteSyncUserSummary()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L236", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxbulkview_buildremotesyncusersummary", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "buildremotesyncusersummary()" + }, + { + "label": "RemoteDrainSample", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L249", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxbulkview_remotedrainsample", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "remotedrainsample" + }, + { + "label": "formatDrainEtaLine()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L251", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxbulkview_formatdrainetaline", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "formatdrainetaline()" + }, + { + "label": "withAutosortRetained()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L280", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxbulkview_withautosortretained", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "withautosortretained()" + }, + { + "label": "emptyRetainedCounts()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L293", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxbulkview_emptyretainedcounts", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "emptyretainedcounts()" + }, + { + "label": "mergeRetainedCounts()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L302", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxbulkview_mergeretainedcounts", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "mergeretainedcounts()" + }, + { + "label": "shortIdForSummary()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L314", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxbulkview_shortidforsummary", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "shortidforsummary()" + }, + { + "label": "hasFullBulkAnalysis()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L320", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxbulkview_hasfullbulkanalysis", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "hasfullbulkanalysis()" + }, + { + "label": "bulkRowNeedsLazyAnalyze()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L325", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxbulkview_bulkrowneedslazyanalyze", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "bulkrowneedslazyanalyze()" + }, + { + "label": "scheduleBulkLazyAnalyzeIdle()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L337", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxbulkview_schedulebulklazyanalyzeidle", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "schedulebulklazyanalyzeidle()" + }, + { + "label": "shouldShowBulkAnalyzeButton()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L348", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxbulkview_shouldshowbulkanalyzebutton", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "shouldshowbulkanalyzebutton()" + }, + { + "label": "mergeNormalPartialIntoBulk()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L354", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxbulkview_mergenormalpartialintobulk", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "mergenormalpartialintobulk()" + }, + { + "label": "advisoryNormalToBulkComplete()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L385", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxbulkview_advisorynormaltobulkcomplete", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "advisorynormaltobulkcomplete()" + }, + { + "label": "bulkEntryToManualPersistJson()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L460", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxbulkview_bulkentrytomanualpersistjson", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "bulkentrytomanualpersistjson()" + }, + { + "label": "BulkSortRunAggregate", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L478", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxbulkview_bulksortrunaggregate", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "bulksortrunaggregate" + }, + { + "label": "formatDate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L487", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxbulkview_formatdate", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "formatdate()" + }, + { + "label": "formatRelativeDate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L501", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxbulkview_formatrelativedate", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "formatrelativedate()" + }, + { + "label": "sortCategoryToClassifier()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L518", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxbulkview_sortcategorytoclassifier", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "sortcategorytoclassifier()" + }, + { + "label": "classifierToSortCategory()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L527", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxbulkview_classifiertosortcategory", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "classifiertosortcategory()" + }, + { + "label": "recommendedActionForClassifier()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L539", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxbulkview_recommendedactionforclassifier", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "recommendedactionforclassifier()" + }, + { + "label": "parsePersistedAnalysis()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L548", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxbulkview_parsepersistedanalysis", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "parsepersistedanalysis()" + }, + { + "label": "UndoFadeWrapper()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L604", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxbulkview_undofadewrapper", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "undofadewrapper()" + }, + { + "label": "BulkRecommendedActionMetaFlags()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L638", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxbulkview_bulkrecommendedactionmetaflags", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "bulkrecommendedactionmetaflags()" + }, + { + "label": "WrExpertModal()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L669", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxbulkview_wrexpertmodal", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "wrexpertmodal()" + }, + { + "label": "formatPendingDeleteInfo()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L788", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxbulkview_formatpendingdeleteinfo", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "formatpendingdeleteinfo()" + }, + { + "label": "CATEGORY_ORDER", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L811", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxbulkview_category_order", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "category_order" + }, + { + "label": "CATEGORY_BORDER", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L821", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxbulkview_category_border", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "category_border" + }, + { + "label": "bulkHeaderCategoryBadge()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L832", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxbulkview_bulkheadercategorybadge", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "bulkheadercategorybadge()" + }, + { + "label": "BulkActionCardStructured()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L841", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxbulkview_bulkactioncardstructured", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "bulkactioncardstructured()" + }, + { + "label": "getUrgencyBadgeText()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L1566", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxbulkview_geturgencybadgetext", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "geturgencybadgetext()" + }, + { + "label": "CATEGORY_BG", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L1581", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxbulkview_category_bg", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "category_bg" + }, + { + "label": "sortMessagesByCategory()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L1591", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxbulkview_sortmessagesbycategory", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "sortmessagesbycategory()" + }, + { + "label": "ClassifyBatchRuntimeMeta", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L1605", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxbulkview_classifybatchruntimemeta", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "classifybatchruntimemeta" + }, + { + "label": "AiSortProgressState", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L1607", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxbulkview_aisortprogressstate", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "aisortprogressstate" + }, + { + "label": "EmailInboxBulkViewProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L1620", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkviewprops", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "emailinboxbulkviewprops" + }, + { + "label": "EmailInboxBulkView()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L1637", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "emailinboxbulkview()" + }, + { + "label": "NOTE: sortStopRequestedRef is reset only by handleAiAutoSort (user-initiated\u2026", + "file_type": "rationale", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L3081", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxbulkview_rationale_3081", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "note: sortstoprequestedref is reset only by handleaiautosort (user-initiated..." + }, + { + "label": "EmailInboxSyncControls.dedicatedSandbox.test.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxSyncControls.dedicatedSandbox.test.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxsynccontrols_dedicatedsandbox_test", + "community": 150, + "community_name": "Stores #150", + "norm_label": "emailinboxsynccontrols.dedicatedsandbox.test.tsx" + }, + { + "label": "baseProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxSyncControls.dedicatedSandbox.test.tsx", + "source_location": "L12", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxsynccontrols_dedicatedsandbox_test_baseprops", + "community": 150, + "community_name": "Stores #150", + "norm_label": "baseprops" + }, + { + "label": "EmailInboxSyncControls.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxSyncControls.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxsynccontrols", + "community": 150, + "community_name": "Stores #150", + "norm_label": "emailinboxsynccontrols.tsx" + }, + { + "label": "EmailInboxSyncControlsProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxSyncControls.tsx", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxsynccontrols_emailinboxsynccontrolsprops", + "community": 150, + "community_name": "Stores #150", + "norm_label": "emailinboxsynccontrolsprops" + }, + { + "label": "emailInboxSyncWindowSelectValue()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxSyncControls.tsx", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxsynccontrols_emailinboxsyncwindowselectvalue", + "community": 150, + "community_name": "Stores #150", + "norm_label": "emailinboxsyncwindowselectvalue()" + }, + { + "label": "EmailInboxSyncControls()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxSyncControls.tsx", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxsynccontrols_emailinboxsynccontrols", + "community": 150, + "community_name": "Stores #150", + "norm_label": "emailinboxsynccontrols()" + }, + { + "label": "EmailInboxToolbar.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxToolbar.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxtoolbar", + "community": 150, + "community_name": "Stores #150", + "norm_label": "emailinboxtoolbar.tsx" + }, + { + "label": "EmailInboxToolbarProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxToolbar.tsx", + "source_location": "L15", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxtoolbar_emailinboxtoolbarprops", + "community": 150, + "community_name": "Stores #150", + "norm_label": "emailinboxtoolbarprops" + }, + { + "label": "FILTER_TABS", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxToolbar.tsx", + "source_location": "L68", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxtoolbar_filter_tabs", + "community": 150, + "community_name": "Stores #150", + "norm_label": "filter_tabs" + }, + { + "label": "INBOX_FILTER_LABELS", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxToolbar.tsx", + "source_location": "L69", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxtoolbar_inbox_filter_labels", + "community": 150, + "community_name": "Stores #150", + "norm_label": "inbox_filter_labels" + }, + { + "label": "EmailInboxToolbar()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxToolbar.tsx", + "source_location": "L79", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxtoolbar_emailinboxtoolbar", + "community": 150, + "community_name": "Stores #150", + "norm_label": "emailinboxtoolbar()" + }, + { + "label": "EmailInboxView.sandboxAffordances.test.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.sandboxAffordances.test.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxview_sandboxaffordances_test", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "emailinboxview.sandboxaffordances.test.tsx" + }, + { + "label": "emailInboxState", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.sandboxAffordances.test.tsx", + "source_location": "L35", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxview_sandboxaffordances_test_emailinboxstate", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "emailinboxstate" + }, + { + "label": "baseMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.sandboxAffordances.test.tsx", + "source_location": "L260", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxview_sandboxaffordances_test_basemessage", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "basemessage()" + }, + { + "label": "renderPanel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.sandboxAffordances.test.tsx", + "source_location": "L299", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxview_sandboxaffordances_test_renderpanel", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "renderpanel()" + }, + { + "label": "EmailInboxView.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxview", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "emailinboxview.tsx" + }, + { + "label": "inboxFailureLooksEmbeddingOnly()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L96", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxview_inboxfailurelooksembeddingonly", + "community": 179, + "community_name": "Inboxaicloneclassification", + "norm_label": "inboxfailurelooksembeddingonly()" + }, + { + "label": "mapLedgerRecordToSelectedRecipient()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L118", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxview_mapledgerrecordtoselectedrecipient", + "community": 179, + "community_name": "Inboxaicloneclassification", + "norm_label": "mapledgerrecordtoselectedrecipient()" + }, + { + "label": "formatRelativeDate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L159", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxview_formatrelativedate", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "formatrelativedate()" + }, + { + "label": "NativeBeapDraftData", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L175", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxview_nativebeapdraftdata", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "nativebeapdraftdata" + }, + { + "label": "firstNonEmptyString()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L184", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxview_firstnonemptystring", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "firstnonemptystring()" + }, + { + "label": "resolveNativeBeapDraftFields()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L195", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxview_resolvenativebeapdraftfields", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "resolvenativebeapdraftfields()" + }, + { + "label": "inboxAnalyzeStreamPrivilegedBannerMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L232", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxview_inboxanalyzestreamprivilegedbannermessage", + "community": 179, + "community_name": "Inboxaicloneclassification", + "norm_label": "inboxanalyzestreamprivilegedbannermessage()" + }, + { + "label": "softenAnalysisBannerMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L259", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxview_softenanalysisbannermessage", + "community": 186, + "community_name": "Stores #186", + "norm_label": "softenanalysisbannermessage()" + }, + { + "label": "analysisSoftNoticeBarStyle", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L287", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxview_analysissoftnoticebarstyle", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "analysissoftnoticebarstyle" + }, + { + "label": "analysisSoftNoticeRetryStyle", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L298", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxview_analysissoftnoticeretrystyle", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "analysissoftnoticeretrystyle" + }, + { + "label": "getMessageAiPreviewLine()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L309", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxview_getmessageaipreviewline", + "community": 205, + "community_name": "Stores #205", + "norm_label": "getmessageaipreviewline()" + }, + { + "label": "InboxDetailAiPanelProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L333", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxview_inboxdetailaipanelprops", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "inboxdetailaipanelprops" + }, + { + "label": "InboxDetailAiPanel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L343", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxview_inboxdetailaipanel", + "community": 179, + "community_name": "Inboxaicloneclassification", + "norm_label": "inboxdetailaipanel()" + }, + { + "label": "InboxMessageRowProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L2575", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxview_inboxmessagerowprops", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "inboxmessagerowprops" + }, + { + "label": "PENDING_REASON_UI", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L2609", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxview_pending_reason_ui", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "pending_reason_ui" + }, + { + "label": "PendingInboxRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L2642", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxview_pendinginboxrow", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "pendinginboxrow()" + }, + { + "label": "InboxMessageRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L2796", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxview_inboxmessagerow", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "inboxmessagerow()" + }, + { + "label": "EmailInboxViewProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L3038", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxview_emailinboxviewprops", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "emailinboxviewprops" + }, + { + "label": "EmailInboxView()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L3054", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxview_emailinboxview", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "emailinboxview()" + }, + { + "label": "NOTE: No centralised vault unlock dialog exists in this renderer (stop-and-\u2026", + "file_type": "rationale", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L2637", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinboxview_rationale_2637", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "note: no centralised vault unlock dialog exists in this renderer (stop-and-..." + }, + { + "label": "EmailInlineComposer.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInlineComposer.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinlinecomposer", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "emailinlinecomposer.tsx" + }, + { + "label": "EmailInlineComposerProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInlineComposer.tsx", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinlinecomposer_emailinlinecomposerprops", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "emailinlinecomposerprops" + }, + { + "label": "draftSurface", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInlineComposer.tsx", + "source_location": "L23", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinlinecomposer_draftsurface", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "draftsurface" + }, + { + "label": "EmailInlineComposer()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailInlineComposer.tsx", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailinlinecomposer_emailinlinecomposer", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "emailinlinecomposer()" + }, + { + "label": "EmailMessageDetail.sandboxLockNotice.test.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.sandboxLockNotice.test.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailmessagedetail_sandboxlocknotice_test", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "emailmessagedetail.sandboxlocknotice.test.tsx" + }, + { + "label": "baseMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.sandboxLockNotice.test.tsx", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailmessagedetail_sandboxlocknotice_test_basemessage", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "basemessage()" + }, + { + "label": "EmailMessageDetail.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailmessagedetail", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "emailmessagedetail.tsx" + }, + { + "label": "EmailMessageDetailProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L70", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetailprops", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "emailmessagedetailprops" + }, + { + "label": "formatDate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L128", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailmessagedetail_formatdate", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "formatdate()" + }, + { + "label": "getAutomationTags()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L144", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailmessagedetail_getautomationtags", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "getautomationtags()" + }, + { + "label": "humanizeObjectStrings()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L153", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailmessagedetail_humanizeobjectstrings", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "humanizeobjectstrings()" + }, + { + "label": "extractBodyText()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L168", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailmessagedetail_extractbodytext", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "extractbodytext()" + }, + { + "label": "extractText()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L204", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailmessagedetail_extracttext", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "extracttext()" + }, + { + "label": "isPlaceholder()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L208", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailmessagedetail_isplaceholder", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "isplaceholder()" + }, + { + "label": "depackagedFormatFromMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L218", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailmessagedetail_depackagedformatfrommessage", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "depackagedformatfrommessage()" + }, + { + "label": "isPendingQbeapDepackaged()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L229", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailmessagedetail_ispendingqbeapdepackaged", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "ispendingqbeapdepackaged()" + }, + { + "label": "partyEmail()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L237", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailmessagedetail_partyemail", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "partyemail()" + }, + { + "label": "strField()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L247", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailmessagedetail_strfield", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "strfield()" + }, + { + "label": "transportPlaintextFromBeapPackageJson()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L254", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailmessagedetail_transportplaintextfrombeappackagejson", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "transportplaintextfrombeappackagejson()" + }, + { + "label": "formatToLine()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L299", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailmessagedetail_formattoline", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "formattoline()" + }, + { + "label": "sessionRefToDialogProps()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L313", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailmessagedetail_sessionreftodialogprops", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "sessionreftodialogprops()" + }, + { + "label": "renderDepackagedJson()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L322", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailmessagedetail_renderdepackagedjson", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "renderdepackagedjson()" + }, + { + "label": "EmailMessageDetail()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L337", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetail", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "emailmessagedetail()" + }, + { + "label": "FieldMappingOverlay.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/FieldMappingOverlay.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_fieldmappingoverlay", + "community": 300, + "community_name": "Stores #300", + "norm_label": "fieldmappingoverlay.tsx" + }, + { + "label": "getFieldColor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/FieldMappingOverlay.tsx", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_fieldmappingoverlay_getfieldcolor", + "community": 300, + "community_name": "Stores #300", + "norm_label": "getfieldcolor()" + }, + { + "label": "clamp01()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/FieldMappingOverlay.tsx", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_fieldmappingoverlay_clamp01", + "community": 300, + "community_name": "Stores #300", + "norm_label": "clamp01()" + }, + { + "label": "clampRect()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/FieldMappingOverlay.tsx", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_fieldmappingoverlay_clamprect", + "community": 300, + "community_name": "Stores #300", + "norm_label": "clamprect()" + }, + { + "label": "normalizeDrawRect()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/FieldMappingOverlay.tsx", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_fieldmappingoverlay_normalizedrawrect", + "community": 300, + "community_name": "Stores #300", + "norm_label": "normalizedrawrect()" + }, + { + "label": "PdfPageTextItem", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/FieldMappingOverlay.tsx", + "source_location": "L51", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_fieldmappingoverlay_pdfpagetextitem", + "community": 300, + "community_name": "Stores #300", + "norm_label": "pdfpagetextitem" + }, + { + "label": "getTextInRect()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/FieldMappingOverlay.tsx", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_fieldmappingoverlay_gettextinrect", + "community": 300, + "community_name": "Stores #300", + "norm_label": "gettextinrect()" + }, + { + "label": "ResizeCorner", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/FieldMappingOverlay.tsx", + "source_location": "L73", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_fieldmappingoverlay_resizecorner", + "community": 300, + "community_name": "Stores #300", + "norm_label": "resizecorner" + }, + { + "label": "fixedPointForCorner()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/FieldMappingOverlay.tsx", + "source_location": "L75", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_fieldmappingoverlay_fixedpointforcorner", + "community": 300, + "community_name": "Stores #300", + "norm_label": "fixedpointforcorner()" + }, + { + "label": "FieldMappingOverlayProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/FieldMappingOverlay.tsx", + "source_location": "L94", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_fieldmappingoverlay_fieldmappingoverlayprops", + "community": 300, + "community_name": "Stores #300", + "norm_label": "fieldmappingoverlayprops" + }, + { + "label": "Preset", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/FieldMappingOverlay.tsx", + "source_location": "L111", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_fieldmappingoverlay_preset", + "community": 300, + "community_name": "Stores #300", + "norm_label": "preset" + }, + { + "label": "PRESETS", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/FieldMappingOverlay.tsx", + "source_location": "L113", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_fieldmappingoverlay_presets", + "community": 300, + "community_name": "Stores #300", + "norm_label": "presets" + }, + { + "label": "FieldMappingOverlay()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/FieldMappingOverlay.tsx", + "source_location": "L124", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_fieldmappingoverlay_fieldmappingoverlay", + "community": 300, + "community_name": "Stores #300", + "norm_label": "fieldmappingoverlay()" + }, + { + "label": "GpuInferenceBarBadge.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/GpuInferenceBarBadge.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_gpuinferencebarbadge_test", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "gpuinferencebarbadge.test.ts" + }, + { + "label": "InferenceCapabilityForUi", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/GpuInferenceBarBadge.test.ts", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_gpuinferencebarbadge_test_inferencecapabilityforui", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "inferencecapabilityforui" + }, + { + "label": "BadgeVariant", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/GpuInferenceBarBadge.test.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_gpuinferencebarbadge_test_badgevariant", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "badgevariant" + }, + { + "label": "toVariant()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/GpuInferenceBarBadge.test.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_gpuinferencebarbadge_test_tovariant", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "tovariant()" + }, + { + "label": "LABEL", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/GpuInferenceBarBadge.test.ts", + "source_location": "L27", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_gpuinferencebarbadge_test_label", + "community": 61, + "community_name": "LLM Inference Handshake", + "norm_label": "label" + }, + { + "label": "GpuInferenceBarBadge.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/GpuInferenceBarBadge.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_gpuinferencebarbadge", + "community": 426, + "community_name": "Gpuinferencebarbadge", + "norm_label": "gpuinferencebarbadge.tsx" + }, + { + "label": "BadgeVariant", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/GpuInferenceBarBadge.tsx", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_gpuinferencebarbadge_badgevariant", + "community": 426, + "community_name": "Gpuinferencebarbadge", + "norm_label": "badgevariant" + }, + { + "label": "BG", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/GpuInferenceBarBadge.tsx", + "source_location": "L24", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_gpuinferencebarbadge_bg", + "community": 426, + "community_name": "Gpuinferencebarbadge", + "norm_label": "bg" + }, + { + "label": "LABEL", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/GpuInferenceBarBadge.tsx", + "source_location": "L33", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_gpuinferencebarbadge_label", + "community": 426, + "community_name": "Gpuinferencebarbadge", + "norm_label": "label" + }, + { + "label": "toVariant()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/GpuInferenceBarBadge.tsx", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_gpuinferencebarbadge_tovariant", + "community": 426, + "community_name": "Gpuinferencebarbadge", + "norm_label": "tovariant()" + }, + { + "label": "GpuInferenceBarBadge()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/GpuInferenceBarBadge.tsx", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_gpuinferencebarbadge_gpuinferencebarbadge", + "community": 426, + "community_name": "Gpuinferencebarbadge", + "norm_label": "gpuinferencebarbadge()" + }, + { + "label": "HandshakeBeapMessages.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeBeapMessages.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakebeapmessages", + "community": 81, + "community_name": "Stores", + "norm_label": "handshakebeapmessages.tsx" + }, + { + "label": "formatDate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeBeapMessages.tsx", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakebeapmessages_formatdate", + "community": 81, + "community_name": "Stores", + "norm_label": "formatdate()" + }, + { + "label": "formatSourceBadge()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeBeapMessages.tsx", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakebeapmessages_formatsourcebadge", + "community": 81, + "community_name": "Stores", + "norm_label": "formatsourcebadge()" + }, + { + "label": "HandshakeBeapMessagesProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeBeapMessages.tsx", + "source_location": "L43", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakebeapmessages_handshakebeapmessagesprops", + "community": 81, + "community_name": "Stores", + "norm_label": "handshakebeapmessagesprops" + }, + { + "label": "HandshakeBeapMessages()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeBeapMessages.tsx", + "source_location": "L51", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakebeapmessages_handshakebeapmessages", + "community": 81, + "community_name": "Stores", + "norm_label": "handshakebeapmessages()" + }, + { + "label": "HandshakeChatSidebar.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeChatSidebar.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakechatsidebar", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "handshakechatsidebar.tsx" + }, + { + "label": "ChatMessage", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeChatSidebar.tsx", + "source_location": "L21", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakechatsidebar_chatmessage", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "chatmessage" + }, + { + "label": "Props", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeChatSidebar.tsx", + "source_location": "L27", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakechatsidebar_props", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "props" + }, + { + "label": "HandshakeChatSidebar()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeChatSidebar.tsx", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakechatsidebar_handshakechatsidebar", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "handshakechatsidebar()" + }, + { + "label": "HandshakeContextSection.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeContextSection.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakecontextsection", + "community": 221, + "community_name": "Handshakecontextsection", + "norm_label": "handshakecontextsection.tsx" + }, + { + "label": "HandshakeRecord", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeContextSection.tsx", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakecontextsection_handshakerecord", + "community": 221, + "community_name": "Handshakecontextsection", + "norm_label": "handshakerecord" + }, + { + "label": "HandshakeContextSectionProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeContextSection.tsx", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakecontextsection_handshakecontextsectionprops", + "community": 221, + "community_name": "Handshakecontextsection", + "norm_label": "handshakecontextsectionprops" + }, + { + "label": "contentTypeLabel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeContextSection.tsx", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakecontextsection_contenttypelabel", + "community": 221, + "community_name": "Handshakecontextsection", + "norm_label": "contenttypelabel()" + }, + { + "label": "sensitivityColor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeContextSection.tsx", + "source_location": "L48", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakecontextsection_sensitivitycolor", + "community": 221, + "community_name": "Handshakecontextsection", + "norm_label": "sensitivitycolor()" + }, + { + "label": "ContextBlockCard()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeContextSection.tsx", + "source_location": "L59", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakecontextsection_contextblockcard", + "community": 221, + "community_name": "Handshakecontextsection", + "norm_label": "contextblockcard()" + }, + { + "label": "typeIcon()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeContextSection.tsx", + "source_location": "L250", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakecontextsection_typeicon", + "community": 221, + "community_name": "Handshakecontextsection", + "norm_label": "typeicon()" + }, + { + "label": "PolicyPip()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeContextSection.tsx", + "source_location": "L267", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakecontextsection_policypip", + "community": 221, + "community_name": "Handshakecontextsection", + "norm_label": "policypip()" + }, + { + "label": "HandshakeContextSection()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeContextSection.tsx", + "source_location": "L280", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakecontextsection_handshakecontextsection", + "community": 221, + "community_name": "Handshakecontextsection", + "norm_label": "handshakecontextsection()" + }, + { + "label": "HandshakeHealthOrchestratorBanner.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeHealthOrchestratorBanner.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakehealthorchestratorbanner", + "community": 106, + "community_name": "Handshake Shims", + "norm_label": "handshakehealthorchestratorbanner.tsx" + }, + { + "label": "HandshakeHealthOrchestratorBanner()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeHealthOrchestratorBanner.tsx", + "source_location": "L4", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakehealthorchestratorbanner_handshakehealthorchestratorbanner", + "community": 106, + "community_name": "Handshake Shims", + "norm_label": "handshakehealthorchestratorbanner()" + }, + { + "label": "HandshakeInitiateModal.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeInitiateModal.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakeinitiatemodal", + "community": 153, + "community_name": "Relationshipdetail", + "norm_label": "handshakeinitiatemodal.tsx" + }, + { + "label": "prefillRecipientEmailAsync()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeInitiateModal.tsx", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakeinitiatemodal_prefillrecipientemailasync", + "community": 153, + "community_name": "Relationshipdetail", + "norm_label": "prefillrecipientemailasync()" + }, + { + "label": "prefillRecipientEmail()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeInitiateModal.tsx", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakeinitiatemodal_prefillrecipientemail", + "community": 153, + "community_name": "Relationshipdetail", + "norm_label": "prefillrecipientemail()" + }, + { + "label": "Props", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeInitiateModal.tsx", + "source_location": "L36", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakeinitiatemodal_props", + "community": 153, + "community_name": "Relationshipdetail", + "norm_label": "props" + }, + { + "label": "HandshakeInitiateModal()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeInitiateModal.tsx", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakeinitiatemodal_handshakeinitiatemodal", + "community": 153, + "community_name": "Relationshipdetail", + "norm_label": "handshakeinitiatemodal()" + }, + { + "label": "HandshakeQuickReview.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeQuickReview.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakequickreview", + "community": 321, + "community_name": "Handshakequickreview", + "norm_label": "handshakequickreview.tsx" + }, + { + "label": "ContextBlockWithVisibility", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeQuickReview.tsx", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakequickreview_contextblockwithvisibility", + "community": 321, + "community_name": "Handshakequickreview", + "norm_label": "contextblockwithvisibility" + }, + { + "label": "QuickReviewFilter", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeQuickReview.tsx", + "source_location": "L29", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakequickreview_quickreviewfilter", + "community": 321, + "community_name": "Handshakequickreview", + "norm_label": "quickreviewfilter" + }, + { + "label": "DataSectionProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeQuickReview.tsx", + "source_location": "L36", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakequickreview_datasectionprops", + "community": 321, + "community_name": "Handshakequickreview", + "norm_label": "datasectionprops" + }, + { + "label": "isBlockStructured()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeQuickReview.tsx", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakequickreview_isblockstructured", + "community": 321, + "community_name": "Handshakequickreview", + "norm_label": "isblockstructured()" + }, + { + "label": "extractTextFromPayload()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeQuickReview.tsx", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakequickreview_extracttextfrompayload", + "community": 321, + "community_name": "Handshakequickreview", + "norm_label": "extracttextfrompayload()" + }, + { + "label": "blockTitle()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeQuickReview.tsx", + "source_location": "L84", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakequickreview_blocktitle", + "community": 321, + "community_name": "Handshakequickreview", + "norm_label": "blocktitle()" + }, + { + "label": "matchesSearch()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeQuickReview.tsx", + "source_location": "L100", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakequickreview_matchessearch", + "community": 321, + "community_name": "Handshakequickreview", + "norm_label": "matchessearch()" + }, + { + "label": "DataSection()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeQuickReview.tsx", + "source_location": "L112", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakequickreview_datasection", + "community": 321, + "community_name": "Handshakequickreview", + "norm_label": "datasection()" + }, + { + "label": "BlockCard()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeQuickReview.tsx", + "source_location": "L186", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakequickreview_blockcard", + "community": 321, + "community_name": "Handshakequickreview", + "norm_label": "blockcard()" + }, + { + "label": "FilterChip()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeQuickReview.tsx", + "source_location": "L272", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakequickreview_filterchip", + "community": 321, + "community_name": "Handshakequickreview", + "norm_label": "filterchip()" + }, + { + "label": "HandshakeQuickReviewProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeQuickReview.tsx", + "source_location": "L305", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakequickreview_handshakequickreviewprops", + "community": 321, + "community_name": "Handshakequickreview", + "norm_label": "handshakequickreviewprops" + }, + { + "label": "HandshakeQuickReview()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeQuickReview.tsx", + "source_location": "L312", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakequickreview_handshakequickreview", + "community": 321, + "community_name": "Handshakequickreview", + "norm_label": "handshakequickreview()" + }, + { + "label": "HandshakeRequestView.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeRequestView.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakerequestview", + "community": 153, + "community_name": "Relationshipdetail", + "norm_label": "handshakerequestview.tsx" + }, + { + "label": "prefillRecipientEmail()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeRequestView.tsx", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakerequestview_prefillrecipientemail", + "community": 153, + "community_name": "Relationshipdetail", + "norm_label": "prefillrecipientemail()" + }, + { + "label": "Props", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeRequestView.tsx", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakerequestview_props", + "community": 153, + "community_name": "Relationshipdetail", + "norm_label": "props" + }, + { + "label": "HandshakeRequestView()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeRequestView.tsx", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakerequestview_handshakerequestview", + "community": 153, + "community_name": "Relationshipdetail", + "norm_label": "handshakerequestview()" + }, + { + "label": "HandshakeView.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeView.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakeview", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "handshakeview.tsx" + }, + { + "label": "HandshakeRecord", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeView.tsx", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakeview_handshakerecord", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "handshakerecord" + }, + { + "label": "shortId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeView.tsx", + "source_location": "L62", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakeview_shortid", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "shortid()" + }, + { + "label": "formatDate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeView.tsx", + "source_location": "L67", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakeview_formatdate", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "formatdate()" + }, + { + "label": "counterpartyEmail()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeView.tsx", + "source_location": "L76", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakeview_counterpartyemail", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "counterpartyemail()" + }, + { + "label": "StateBadge()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeView.tsx", + "source_location": "L85", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakeview_statebadge", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "statebadge()" + }, + { + "label": "HandshakeViewProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeView.tsx", + "source_location": "L107", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakeview_handshakeviewprops", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "handshakeviewprops" + }, + { + "label": "HandshakeWorkspace.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakeworkspace", + "community": 171, + "community_name": "Handshake #171", + "norm_label": "handshakeworkspace.tsx" + }, + { + "label": "HandshakeRecord", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakeworkspace_handshakerecord", + "community": 171, + "community_name": "Handshake #171", + "norm_label": "handshakerecord" + }, + { + "label": "ContextBlockWithVisibility", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L57", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakeworkspace_contextblockwithvisibility", + "community": 171, + "community_name": "Handshake #171", + "norm_label": "contextblockwithvisibility" + }, + { + "label": "ContextGraphFilter", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L75", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakeworkspace_contextgraphfilter", + "community": 171, + "community_name": "Handshake #171", + "norm_label": "contextgraphfilter" + }, + { + "label": "HandshakeWorkspaceProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L81", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakeworkspace_handshakeworkspaceprops", + "community": 171, + "community_name": "Handshake #171", + "norm_label": "handshakeworkspaceprops" + }, + { + "label": "formatDate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L102", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakeworkspace_formatdate", + "community": 171, + "community_name": "Handshake #171", + "norm_label": "formatdate()" + }, + { + "label": "shortHash()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L111", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakeworkspace_shorthash", + "community": 171, + "community_name": "Handshake #171", + "norm_label": "shorthash()" + }, + { + "label": "isBlockStructured()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L116", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakeworkspace_isblockstructured", + "community": 171, + "community_name": "Handshake #171", + "norm_label": "isblockstructured()" + }, + { + "label": "PROFILE_KEY_PATTERNS", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L124", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakeworkspace_profile_key_patterns", + "community": 171, + "community_name": "Handshake #171", + "norm_label": "profile_key_patterns" + }, + { + "label": "hasStructuredProfileData()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L130", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakeworkspace_hasstructuredprofiledata", + "community": 171, + "community_name": "Handshake #171", + "norm_label": "hasstructuredprofiledata()" + }, + { + "label": "formatStructuredProfileCompact()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L145", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakeworkspace_formatstructuredprofilecompact", + "community": 171, + "community_name": "Handshake #171", + "norm_label": "formatstructuredprofilecompact()" + }, + { + "label": "extractTextFromPayload()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L157", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakeworkspace_extracttextfrompayload", + "community": 171, + "community_name": "Handshake #171", + "norm_label": "extracttextfrompayload()" + }, + { + "label": "blockTitle()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L181", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakeworkspace_blocktitle", + "community": 171, + "community_name": "Handshake #171", + "norm_label": "blocktitle()" + }, + { + "label": "StateBadge()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L199", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakeworkspace_statebadge", + "community": 171, + "community_name": "Handshake #171", + "norm_label": "statebadge()" + }, + { + "label": "InlineFilterChip()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L222", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakeworkspace_inlinefilterchip", + "community": 171, + "community_name": "Handshake #171", + "norm_label": "inlinefilterchip()" + }, + { + "label": "BlockCard()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L251", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakeworkspace_blockcard", + "community": 171, + "community_name": "Handshake #171", + "norm_label": "blockcard()" + }, + { + "label": "MetaRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L505", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakeworkspace_metarow", + "community": 171, + "community_name": "Handshake #171", + "norm_label": "metarow()" + }, + { + "label": "CopyableHash()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L518", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakeworkspace_copyablehash", + "community": 171, + "community_name": "Handshake #171", + "norm_label": "copyablehash()" + }, + { + "label": "P2PQueueEntry", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L536", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakeworkspace_p2pqueueentry", + "community": 171, + "community_name": "Handshake #171", + "norm_label": "p2pqueueentry" + }, + { + "label": "RelayStatusHint()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L538", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakeworkspace_relaystatushint", + "community": 171, + "community_name": "Handshake #171", + "norm_label": "relaystatushint()" + }, + { + "label": "P2PDeliveryStatus()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L554", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakeworkspace_p2pdeliverystatus", + "community": 171, + "community_name": "Handshake #171", + "norm_label": "p2pdeliverystatus()" + }, + { + "label": "CryptoDetailsContent()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L580", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakeworkspace_cryptodetailscontent", + "community": 171, + "community_name": "Handshake #171", + "norm_label": "cryptodetailscontent()" + }, + { + "label": "parseBlockPayloadForProtectedAccess()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L667", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakeworkspace_parseblockpayloadforprotectedaccess", + "community": 171, + "community_name": "Handshake #171", + "norm_label": "parseblockpayloadforprotectedaccess()" + }, + { + "label": "HandshakeWorkspace()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L697", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakeworkspace_handshakeworkspace", + "community": 171, + "community_name": "Handshake #171", + "norm_label": "handshakeworkspace()" + }, + { + "label": "components/HsContextDocumentReader.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HsContextDocumentReader.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_hscontextdocumentreader", + "community": 191, + "community_name": "Structuredhscontextpanel", + "norm_label": "components/hscontextdocumentreader.tsx" + }, + { + "label": "DocumentSearchMatch", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HsContextDocumentReader.tsx", + "source_location": "L16", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_hscontextdocumentreader_documentsearchmatch", + "community": 191, + "community_name": "Structuredhscontextpanel", + "norm_label": "documentsearchmatch" + }, + { + "label": "HsContextDocumentReaderApi", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HsContextDocumentReader.tsx", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_hscontextdocumentreader_hscontextdocumentreaderapi", + "community": 191, + "community_name": "Structuredhscontextpanel", + "norm_label": "hscontextdocumentreaderapi" + }, + { + "label": "getDefaultApi()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HsContextDocumentReader.tsx", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_hscontextdocumentreader_getdefaultapi", + "community": 191, + "community_name": "Structuredhscontextpanel", + "norm_label": "getdefaultapi()" + }, + { + "label": "HsContextDocumentReaderProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HsContextDocumentReader.tsx", + "source_location": "L45", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_hscontextdocumentreader_hscontextdocumentreaderprops", + "community": 191, + "community_name": "Structuredhscontextpanel", + "norm_label": "hscontextdocumentreaderprops" + }, + { + "label": "splitToSyntheticPages()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HsContextDocumentReader.tsx", + "source_location": "L77", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_hscontextdocumentreader_splittosyntheticpages", + "community": 191, + "community_name": "Structuredhscontextpanel", + "norm_label": "splittosyntheticpages()" + }, + { + "label": "HsContextDocumentReader()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HsContextDocumentReader.tsx", + "source_location": "L82", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_hscontextdocumentreader_hscontextdocumentreader", + "community": 191, + "community_name": "Structuredhscontextpanel", + "norm_label": "hscontextdocumentreader()" + }, + { + "label": "HybridSearch.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_hybridsearch", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "hybridsearch.tsx" + }, + { + "label": "formatOrchestratorSelectionLogValue()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L101", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_hybridsearch_formatorchestratorselectionlogvalue", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "formatorchestratorselectionlogvalue()" + }, + { + "label": "logOrchestratorModelSelectionValidateIfChanged()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L107", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_hybridsearch_logorchestratormodelselectionvalidateifchanged", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "logorchestratormodelselectionvalidateifchanged()" + }, + { + "label": "matchLetterComposerFieldFromMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L140", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_hybridsearch_matchlettercomposerfieldfrommessage", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "matchlettercomposerfieldfrommessage()" + }, + { + "label": "parseMilestoneMarkersFromResponse()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L164", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_hybridsearch_parsemilestonemarkersfromresponse", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "parsemilestonemarkersfromresponse()" + }, + { + "label": "UiFocusContext", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L176", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_hybridsearch_uifocuscontext", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "uifocuscontext" + }, + { + "label": "SUBFOCUS_NONE", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L183", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_hybridsearch_subfocus_none", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "subfocus_none" + }, + { + "label": "SearchMode", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L187", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_hybridsearch_searchmode", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "searchmode" + }, + { + "label": "SearchScope", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L188", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_hybridsearch_searchscope", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "searchscope" + }, + { + "label": "DashboardView", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L189", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_hybridsearch_dashboardview", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "dashboardview" + }, + { + "label": "DraftRefineHistoryEntry", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L191", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_hybridsearch_draftrefinehistoryentry", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "draftrefinehistoryentry" + }, + { + "label": "SearchResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L199", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_hybridsearch_searchresult", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "searchresult" + }, + { + "label": "HybridSearchProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L220", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_hybridsearch_hybridsearchprops", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "hybridsearchprops" + }, + { + "label": "AvailableModel", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L232", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_hybridsearch_availablemodel", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "availablemodel" + }, + { + "label": "isCompactUiRawId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L237", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_hybridsearch_iscompactuirawid", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "iscompactuirawid()" + }, + { + "label": "getModelLabel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L245", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_hybridsearch_getmodellabel", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "getmodellabel()" + }, + { + "label": "defaultScope()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L264", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_hybridsearch_defaultscope", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "defaultscope()" + }, + { + "label": "friendlyTypeName()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L273", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_hybridsearch_friendlytypename", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "friendlytypename()" + }, + { + "label": "truncate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L283", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_hybridsearch_truncate", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "truncate()" + }, + { + "label": "sanitizeSnippet()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L289", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_hybridsearch_sanitizesnippet", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "sanitizesnippet()" + }, + { + "label": "collectStringsFromJson()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L297", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_hybridsearch_collectstringsfromjson", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "collectstringsfromjson()" + }, + { + "label": "extractFullTextFromPayload()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L307", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_hybridsearch_extractfulltextfrompayload", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "extractfulltextfrompayload()" + }, + { + "label": "shortId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L322", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_hybridsearch_shortid", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "shortid()" + }, + { + "label": "SPECIAL_RESULT_IDS", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L327", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_hybridsearch_special_result_ids", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "special_result_ids" + }, + { + "label": "isSpecialResult()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L328", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_hybridsearch_isspecialresult", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "isspecialresult()" + }, + { + "label": "runInboxSearch()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L334", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_hybridsearch_runinboxsearch", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "runinboxsearch()" + }, + { + "label": "runSearch()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L367", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_hybridsearch_runsearch", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "runsearch()" + }, + { + "label": "runSearchSemantic()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L393", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_hybridsearch_runsearchsemantic", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "runsearchsemantic()" + }, + { + "label": "ChatSource", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L483", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_hybridsearch_chatsource", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "chatsource" + }, + { + "label": "SCOPE_LABELS", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L493", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_hybridsearch_scope_labels", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "scope_labels" + }, + { + "label": "ResponseBlock", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L503", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_hybridsearch_responseblock", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "responseblock" + }, + { + "label": "parseResponseIntoBlocks()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L510", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_hybridsearch_parseresponseintoblocks", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "parseresponseintoblocks()" + }, + { + "label": "parseTitleResponse()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L540", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_hybridsearch_parsetitleresponse", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "parsetitleresponse()" + }, + { + "label": "ChatAttachment", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L608", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_hybridsearch_chatattachment", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "chatattachment" + }, + { + "label": "prependChatAttachmentsToUserText()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L619", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_hybridsearch_prependchatattachmentstousertext", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "prependchatattachmentstousertext()" + }, + { + "label": "ChatTurn", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L632", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_hybridsearch_chatturn", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "chatturn" + }, + { + "label": "SUPPORTED_IMAGE_TYPES", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L637", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_hybridsearch_supported_image_types", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "supported_image_types" + }, + { + "label": "fileToDataUrl()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L644", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_hybridsearch_filetodataurl", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "filetodataurl()" + }, + { + "label": "HybridSearch()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L655", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "hybridsearch()" + }, + { + "label": "ResultRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L3842", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_hybridsearch_resultrow", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "resultrow()" + }, + { + "label": "InboxActionIcons.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/InboxActionIcons.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_inboxactionicons", + "community": 252, + "community_name": "Inboxactionicons", + "norm_label": "inboxactionicons.tsx" + }, + { + "label": "RedirectProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/InboxActionIcons.tsx", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_inboxactionicons_redirectprops", + "community": 252, + "community_name": "Inboxactionicons", + "norm_label": "redirectprops" + }, + { + "label": "InboxRedirectActionIcon()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/InboxActionIcons.tsx", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_inboxactionicons_inboxredirectactionicon", + "community": 252, + "community_name": "Inboxactionicons", + "norm_label": "inboxredirectactionicon()" + }, + { + "label": "SandboxProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/InboxActionIcons.tsx", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_inboxactionicons_sandboxprops", + "community": 252, + "community_name": "Inboxactionicons", + "norm_label": "sandboxprops" + }, + { + "label": "InboxSandboxCloneActionIcon()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/InboxActionIcons.tsx", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_inboxactionicons_inboxsandboxcloneactionicon", + "community": 252, + "community_name": "Inboxactionicons", + "norm_label": "inboxsandboxcloneactionicon()" + }, + { + "label": "RunAutomationProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/InboxActionIcons.tsx", + "source_location": "L21", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_inboxactionicons_runautomationprops", + "community": 252, + "community_name": "Inboxactionicons", + "norm_label": "runautomationprops" + }, + { + "label": "InboxRunAutomationActionIcon()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/InboxActionIcons.tsx", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_inboxactionicons_inboxrunautomationactionicon", + "community": 252, + "community_name": "Inboxactionicons", + "norm_label": "inboxrunautomationactionicon()" + }, + { + "label": "InboxAttachmentRow.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/InboxAttachmentRow.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_inboxattachmentrow", + "community": 81, + "community_name": "Stores", + "norm_label": "inboxattachmentrow.tsx" + }, + { + "label": "getFileIcon()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/InboxAttachmentRow.tsx", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_inboxattachmentrow_getfileicon", + "community": 81, + "community_name": "Stores", + "norm_label": "getfileicon()" + }, + { + "label": "isPdfAttachment()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/InboxAttachmentRow.tsx", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_inboxattachmentrow_ispdfattachment", + "community": 81, + "community_name": "Stores", + "norm_label": "ispdfattachment()" + }, + { + "label": "getTypeLabel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/InboxAttachmentRow.tsx", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_inboxattachmentrow_gettypelabel", + "community": 81, + "community_name": "Stores", + "norm_label": "gettypelabel()" + }, + { + "label": "formatSize()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/InboxAttachmentRow.tsx", + "source_location": "L37", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_inboxattachmentrow_formatsize", + "community": 81, + "community_name": "Stores", + "norm_label": "formatsize()" + }, + { + "label": "InboxAttachmentRowProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/InboxAttachmentRow.tsx", + "source_location": "L44", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_inboxattachmentrow_inboxattachmentrowprops", + "community": 81, + "community_name": "Stores", + "norm_label": "inboxattachmentrowprops" + }, + { + "label": "InboxAttachmentRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/InboxAttachmentRow.tsx", + "source_location": "L50", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_inboxattachmentrow_inboxattachmentrow", + "community": 81, + "community_name": "Stores", + "norm_label": "inboxattachmentrow()" + }, + { + "label": "InboxBeapSourceBadge.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/InboxBeapSourceBadge.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_inboxbeapsourcebadge", + "community": 158, + "community_name": "Inboxmessagesandboxclone", + "norm_label": "inboxbeapsourcebadge.tsx" + }, + { + "label": "cn()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/InboxBeapSourceBadge.tsx", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_inboxbeapsourcebadge_cn", + "community": 158, + "community_name": "Inboxmessagesandboxclone", + "norm_label": "cn()" + }, + { + "label": "InboxBeapSourceBadgeListRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/InboxBeapSourceBadge.tsx", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_inboxbeapsourcebadge_inboxbeapsourcebadgelistrow", + "community": 158, + "community_name": "Inboxmessagesandboxclone", + "norm_label": "inboxbeapsourcebadgelistrow()" + }, + { + "label": "InboxBeapSourceBadgeDetail()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/InboxBeapSourceBadge.tsx", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_inboxbeapsourcebadge_inboxbeapsourcebadgedetail", + "community": 158, + "community_name": "Inboxmessagesandboxclone", + "norm_label": "inboxbeapsourcebadgedetail()" + }, + { + "label": "InboxBulkActionsBar.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/InboxBulkActionsBar.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_inboxbulkactionsbar", + "community": 150, + "community_name": "Stores #150", + "norm_label": "inboxbulkactionsbar.tsx" + }, + { + "label": "InboxBulkActionsBarProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/InboxBulkActionsBar.tsx", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_inboxbulkactionsbar_inboxbulkactionsbarprops", + "community": 150, + "community_name": "Stores #150", + "norm_label": "inboxbulkactionsbarprops" + }, + { + "label": "InboxBulkActionsBar()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/InboxBulkActionsBar.tsx", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_inboxbulkactionsbar_inboxbulkactionsbar", + "community": 150, + "community_name": "Stores #150", + "norm_label": "inboxbulkactionsbar()" + }, + { + "label": "InboxDocumentReaderModal.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/InboxDocumentReaderModal.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_inboxdocumentreadermodal", + "community": 81, + "community_name": "Stores", + "norm_label": "inboxdocumentreadermodal.tsx" + }, + { + "label": "isPdfAttachment()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/InboxDocumentReaderModal.tsx", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_inboxdocumentreadermodal_ispdfattachment", + "community": 81, + "community_name": "Stores", + "norm_label": "ispdfattachment()" + }, + { + "label": "InboxDocumentReaderModalAttachment", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/InboxDocumentReaderModal.tsx", + "source_location": "L19", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_inboxdocumentreadermodal_inboxdocumentreadermodalattachment", + "community": 81, + "community_name": "Stores", + "norm_label": "inboxdocumentreadermodalattachment" + }, + { + "label": "InboxDocumentReaderModalProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/InboxDocumentReaderModal.tsx", + "source_location": "L27", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_inboxdocumentreadermodal_inboxdocumentreadermodalprops", + "community": 81, + "community_name": "Stores", + "norm_label": "inboxdocumentreadermodalprops" + }, + { + "label": "InboxDocumentReaderModal()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/InboxDocumentReaderModal.tsx", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_inboxdocumentreadermodal_inboxdocumentreadermodal", + "community": 81, + "community_name": "Stores", + "norm_label": "inboxdocumentreadermodal()" + }, + { + "label": "InboxHandshakeNavIcon.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/InboxHandshakeNavIcon.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_inboxhandshakenavicon", + "community": 150, + "community_name": "Stores #150", + "norm_label": "inboxhandshakenavicon.tsx" + }, + { + "label": "InboxHandshakeNavIconButton()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/InboxHandshakeNavIcon.tsx", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_inboxhandshakenavicon_inboxhandshakenaviconbutton", + "community": 150, + "community_name": "Stores #150", + "norm_label": "inboxhandshakenaviconbutton()" + }, + { + "label": "InboxMessageKindSelect.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/InboxMessageKindSelect.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_inboxmessagekindselect", + "community": 150, + "community_name": "Stores #150", + "norm_label": "inboxmessagekindselect.tsx" + }, + { + "label": "InboxMessageKindSelectProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/InboxMessageKindSelect.tsx", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_inboxmessagekindselect_inboxmessagekindselectprops", + "community": 150, + "community_name": "Stores #150", + "norm_label": "inboxmessagekindselectprops" + }, + { + "label": "OPTIONS", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/InboxMessageKindSelect.tsx", + "source_location": "L19", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_inboxmessagekindselect_options", + "community": 150, + "community_name": "Stores #150", + "norm_label": "options" + }, + { + "label": "InboxMessageKindSelect()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/InboxMessageKindSelect.tsx", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_inboxmessagekindselect_inboxmessagekindselect", + "community": 150, + "community_name": "Stores #150", + "norm_label": "inboxmessagekindselect()" + }, + { + "label": "InboxUrgencyMeter.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/InboxUrgencyMeter.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_inboxurgencymeter", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "inboxurgencymeter.tsx" + }, + { + "label": "UrgencyTierLabel", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/InboxUrgencyMeter.tsx", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_inboxurgencymeter_urgencytierlabel", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "urgencytierlabel" + }, + { + "label": "InboxUrgencyVisuals", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/InboxUrgencyMeter.tsx", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_inboxurgencymeter_inboxurgencyvisuals", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "inboxurgencyvisuals" + }, + { + "label": "getInboxUrgencyVisuals()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/InboxUrgencyMeter.tsx", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_inboxurgencymeter_getinboxurgencyvisuals", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "getinboxurgencyvisuals()" + }, + { + "label": "InboxUrgencyMeterProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/InboxUrgencyMeter.tsx", + "source_location": "L52", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_inboxurgencymeter_inboxurgencymeterprops", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "inboxurgencymeterprops" + }, + { + "label": "InboxUrgencyMeter()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/InboxUrgencyMeter.tsx", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_inboxurgencymeter_inboxurgencymeter", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "inboxurgencymeter()" + }, + { + "label": "IngestionDelegationModal.test.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/IngestionDelegationModal.test.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_ingestiondelegationmodal_test", + "community": 332, + "community_name": "Ingestiondelegationmodal", + "norm_label": "ingestiondelegationmodal.test.tsx" + }, + { + "label": "render()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/IngestionDelegationModal.test.tsx", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_ingestiondelegationmodal_test_render", + "community": 332, + "community_name": "Ingestiondelegationmodal", + "norm_label": "render()" + }, + { + "label": "IngestionDelegationModal.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/IngestionDelegationModal.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_ingestiondelegationmodal", + "community": 332, + "community_name": "Ingestiondelegationmodal", + "norm_label": "ingestiondelegationmodal.tsx" + }, + { + "label": "MODAL_COPY", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/IngestionDelegationModal.tsx", + "source_location": "L15", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_ingestiondelegationmodal_modal_copy", + "community": 332, + "community_name": "Ingestiondelegationmodal", + "norm_label": "modal_copy" + }, + { + "label": "overlayStyle", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/IngestionDelegationModal.tsx", + "source_location": "L26", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_ingestiondelegationmodal_overlaystyle", + "community": 332, + "community_name": "Ingestiondelegationmodal", + "norm_label": "overlaystyle" + }, + { + "label": "cardStyle", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/IngestionDelegationModal.tsx", + "source_location": "L36", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_ingestiondelegationmodal_cardstyle", + "community": 332, + "community_name": "Ingestiondelegationmodal", + "norm_label": "cardstyle" + }, + { + "label": "titleStyle", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/IngestionDelegationModal.tsx", + "source_location": "L47", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_ingestiondelegationmodal_titlestyle", + "community": 332, + "community_name": "Ingestiondelegationmodal", + "norm_label": "titlestyle" + }, + { + "label": "bodyStyle", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/IngestionDelegationModal.tsx", + "source_location": "L54", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_ingestiondelegationmodal_bodystyle", + "community": 332, + "community_name": "Ingestiondelegationmodal", + "norm_label": "bodystyle" + }, + { + "label": "ctaRowStyle", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/IngestionDelegationModal.tsx", + "source_location": "L61", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_ingestiondelegationmodal_ctarowstyle", + "community": 332, + "community_name": "Ingestiondelegationmodal", + "norm_label": "ctarowstyle" + }, + { + "label": "ctaButtonStyle", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/IngestionDelegationModal.tsx", + "source_location": "L67", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_ingestiondelegationmodal_ctabuttonstyle", + "community": 332, + "community_name": "Ingestiondelegationmodal", + "norm_label": "ctabuttonstyle" + }, + { + "label": "Props", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/IngestionDelegationModal.tsx", + "source_location": "L80", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_ingestiondelegationmodal_props", + "community": 332, + "community_name": "Ingestiondelegationmodal", + "norm_label": "props" + }, + { + "label": "IngestionDelegationModal()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/IngestionDelegationModal.tsx", + "source_location": "L86", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_ingestiondelegationmodal_ingestiondelegationmodal", + "community": 332, + "community_name": "Ingestiondelegationmodal", + "norm_label": "ingestiondelegationmodal()" + }, + { + "label": "IngestionStatusBanner.test.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/IngestionStatusBanner.test.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_ingestionstatusbanner_test", + "community": 135, + "community_name": "Email Ingestionpolltrigger", + "norm_label": "ingestionstatusbanner.test.tsx" + }, + { + "label": "makeStatus()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/IngestionStatusBanner.test.tsx", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_ingestionstatusbanner_test_makestatus", + "community": 135, + "community_name": "Email Ingestionpolltrigger", + "norm_label": "makestatus()" + }, + { + "label": "IngestionStatusBanner.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/IngestionStatusBanner.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_ingestionstatusbanner", + "community": 135, + "community_name": "Email Ingestionpolltrigger", + "norm_label": "ingestionstatusbanner.tsx" + }, + { + "label": "COPY", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/IngestionStatusBanner.tsx", + "source_location": "L39", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_ingestionstatusbanner_copy", + "community": 135, + "community_name": "Email Ingestionpolltrigger", + "norm_label": "copy" + }, + { + "label": "copyForStatus()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/IngestionStatusBanner.tsx", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_ingestionstatusbanner_copyforstatus", + "community": 135, + "community_name": "Email Ingestionpolltrigger", + "norm_label": "copyforstatus()" + }, + { + "label": "Props", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/IngestionStatusBanner.tsx", + "source_location": "L112", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_ingestionstatusbanner_props", + "community": 135, + "community_name": "Email Ingestionpolltrigger", + "norm_label": "props" + }, + { + "label": "IngestionStatusBanner()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/IngestionStatusBanner.tsx", + "source_location": "L127", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_ingestionstatusbanner_ingestionstatusbanner", + "community": 135, + "community_name": "Email Ingestionpolltrigger", + "norm_label": "ingestionstatusbanner()" + }, + { + "label": "InternalHandshakeIdentityPanel.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/InternalHandshakeIdentityPanel.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_internalhandshakeidentitypanel", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "internalhandshakeidentitypanel.tsx" + }, + { + "label": "row()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/InternalHandshakeIdentityPanel.tsx", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_internalhandshakeidentitypanel_row", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "row()" + }, + { + "label": "InternalHandshakeIdentityPanel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/InternalHandshakeIdentityPanel.tsx", + "source_location": "L59", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_internalhandshakeidentitypanel_internalhandshakeidentitypanel", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "internalhandshakeidentitypanel()" + }, + { + "label": "LETmeGIRAFFETHATFORYOUIcons.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LETmeGIRAFFETHATFORYOUIcons.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_letmegiraffethatforyouicons", + "community": 561, + "community_name": "Letmegiraffethatforyouicons", + "norm_label": "letmegiraffethatforyouicons.tsx" + }, + { + "label": "LETmeGIRAFFETHATFORYOUIcons()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LETmeGIRAFFETHATFORYOUIcons.tsx", + "source_location": "L3", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_letmegiraffethatforyouicons_letmegiraffethatforyouicons", + "community": 561, + "community_name": "Letmegiraffethatforyouicons", + "norm_label": "letmegiraffethatforyouicons()" + }, + { + "label": "LetterComposerPortSelectButton.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LetterComposerPortSelectButton.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_lettercomposerportselectbutton", + "community": 310, + "community_name": "Stores #310", + "norm_label": "lettercomposerportselectbutton.tsx" + }, + { + "label": "PortSelectButton()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LetterComposerPortSelectButton.tsx", + "source_location": "L3", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_lettercomposerportselectbutton_portselectbutton", + "community": 310, + "community_name": "Stores #310", + "norm_label": "portselectbutton()" + }, + { + "label": "LetterComposerView.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LetterComposerView.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_lettercomposerview", + "community": 277, + "community_name": "Chat Routing Stores", + "norm_label": "lettercomposerview.tsx" + }, + { + "label": "syncLetterComposerChatFocus()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LetterComposerView.tsx", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_lettercomposerview_synclettercomposerchatfocus", + "community": 277, + "community_name": "Chat Routing Stores", + "norm_label": "synclettercomposerchatfocus()" + }, + { + "label": "LetterComposerView()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LetterComposerView.tsx", + "source_location": "L80", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_lettercomposerview_lettercomposerview", + "community": 277, + "community_name": "Chat Routing Stores", + "norm_label": "lettercomposerview()" + }, + { + "label": "LetterTemplatePort.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LetterTemplatePort.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_lettertemplateport", + "community": 310, + "community_name": "Stores #310", + "norm_label": "lettertemplateport.tsx" + }, + { + "label": "BODY_LINE_WIDTHS", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LetterTemplatePort.tsx", + "source_location": "L21", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_lettertemplateport_body_line_widths", + "community": 310, + "community_name": "Stores #310", + "norm_label": "body_line_widths" + }, + { + "label": "letterComposerPdfFriendlyError()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LetterTemplatePort.tsx", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_lettertemplateport_lettercomposerpdffriendlyerror", + "community": 310, + "community_name": "Stores #310", + "norm_label": "lettercomposerpdffriendlyerror()" + }, + { + "label": "TemplatePreviewThumb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LetterTemplatePort.tsx", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_lettertemplateport_templatepreviewthumb", + "community": 310, + "community_name": "Stores #310", + "norm_label": "templatepreviewthumb()" + }, + { + "label": "coerceFieldType()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LetterTemplatePort.tsx", + "source_location": "L137", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_lettertemplateport_coercefieldtype", + "community": 310, + "community_name": "Stores #310", + "norm_label": "coercefieldtype()" + }, + { + "label": "LetterTemplatePort()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LetterTemplatePort.tsx", + "source_location": "L141", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_lettertemplateport_lettertemplateport", + "community": 310, + "community_name": "Stores #310", + "norm_label": "lettertemplateport()" + }, + { + "label": "LetterViewerPort.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_letterviewerport", + "community": 180, + "community_name": "Letterviewerport", + "norm_label": "letterviewerport.tsx" + }, + { + "label": "isImageFileName()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_letterviewerport_isimagefilename", + "community": 180, + "community_name": "Letterviewerport", + "norm_label": "isimagefilename()" + }, + { + "label": "MULTILINE_KEYS", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L23", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_letterviewerport_multiline_keys", + "community": 180, + "community_name": "Letterviewerport", + "norm_label": "multiline_keys" + }, + { + "label": "REFERENCE_CONTACT_KEYS", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L32", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_letterviewerport_reference_contact_keys", + "community": 180, + "community_name": "Letterviewerport", + "norm_label": "reference_contact_keys" + }, + { + "label": "REFERENCE_CONTACT_LABELS", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L43", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_letterviewerport_reference_contact_labels", + "community": 180, + "community_name": "Letterviewerport", + "norm_label": "reference_contact_labels" + }, + { + "label": "getConfidenceLevel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_letterviewerport_getconfidencelevel", + "community": 180, + "community_name": "Letterviewerport", + "norm_label": "getconfidencelevel()" + }, + { + "label": "buildCombinedNameAddressBlock()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_letterviewerport_buildcombinednameaddressblock", + "community": 180, + "community_name": "Letterviewerport", + "norm_label": "buildcombinednameaddressblock()" + }, + { + "label": "averageConfidence()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L78", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_letterviewerport_averageconfidence", + "community": 180, + "community_name": "Letterviewerport", + "norm_label": "averageconfidence()" + }, + { + "label": "combineSenderLinesForReplyRecipient()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L83", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_letterviewerport_combinesenderlinesforreplyrecipient", + "community": 180, + "community_name": "Letterviewerport", + "norm_label": "combinesenderlinesforreplyrecipient()" + }, + { + "label": "findPrimaryRecipientField()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L94", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_letterviewerport_findprimaryrecipientfield", + "community": 180, + "community_name": "Letterviewerport", + "norm_label": "findprimaryrecipientfield()" + }, + { + "label": "applyReplyRecipientToTemplate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L98", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_letterviewerport_applyreplyrecipienttotemplate", + "community": 180, + "community_name": "Letterviewerport", + "norm_label": "applyreplyrecipienttotemplate()" + }, + { + "label": "findSubjectField()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L129", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_letterviewerport_findsubjectfield", + "community": 180, + "community_name": "Letterviewerport", + "norm_label": "findsubjectfield()" + }, + { + "label": "findReferenceField()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L133", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_letterviewerport_findreferencefield", + "community": 180, + "community_name": "Letterviewerport", + "norm_label": "findreferencefield()" + }, + { + "label": "findDateField()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L140", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_letterviewerport_finddatefield", + "community": 180, + "community_name": "Letterviewerport", + "norm_label": "finddatefield()" + }, + { + "label": "isSenderContactSubfield()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L144", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_letterviewerport_issendercontactsubfield", + "community": 180, + "community_name": "Letterviewerport", + "norm_label": "issendercontactsubfield()" + }, + { + "label": "findSenderNameField()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L155", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_letterviewerport_findsendernamefield", + "community": 180, + "community_name": "Letterviewerport", + "norm_label": "findsendernamefield()" + }, + { + "label": "findSenderAddressField()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L169", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_letterviewerport_findsenderaddressfield", + "community": 180, + "community_name": "Letterviewerport", + "norm_label": "findsenderaddressfield()" + }, + { + "label": "resolveSenderTemplateField()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L181", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_letterviewerport_resolvesendertemplatefield", + "community": 180, + "community_name": "Letterviewerport", + "norm_label": "resolvesendertemplatefield()" + }, + { + "label": "findRecipientEmailField()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L187", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_letterviewerport_findrecipientemailfield", + "community": 180, + "community_name": "Letterviewerport", + "norm_label": "findrecipientemailfield()" + }, + { + "label": "findRecipientPhoneField()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L194", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_letterviewerport_findrecipientphonefield", + "community": 180, + "community_name": "Letterviewerport", + "norm_label": "findrecipientphonefield()" + }, + { + "label": "findSalutationField()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L201", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_letterviewerport_findsalutationfield", + "community": 180, + "community_name": "Letterviewerport", + "norm_label": "findsalutationfield()" + }, + { + "label": "findBodyField()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L205", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_letterviewerport_findbodyfield", + "community": 180, + "community_name": "Letterviewerport", + "norm_label": "findbodyfield()" + }, + { + "label": "mapExtractedToTemplateField()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L213", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_letterviewerport_mapextractedtotemplatefield", + "community": 180, + "community_name": "Letterviewerport", + "norm_label": "mapextractedtotemplatefield()" + }, + { + "label": "resolveTemplateFieldForSemanticName()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L240", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_letterviewerport_resolvetemplatefieldforsemanticname", + "community": 180, + "community_name": "Letterviewerport", + "norm_label": "resolvetemplatefieldforsemanticname()" + }, + { + "label": "hasExtractedContent()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L277", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_letterviewerport_hasextractedcontent", + "community": 180, + "community_name": "Letterviewerport", + "norm_label": "hasextractedcontent()" + }, + { + "label": "letterHasLowConfidenceFields()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L282", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_letterviewerport_letterhaslowconfidencefields", + "community": 180, + "community_name": "Letterviewerport", + "norm_label": "letterhaslowconfidencefields()" + }, + { + "label": "readActiveLlmModelId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L292", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_letterviewerport_readactivellmmodelid", + "community": 180, + "community_name": "Letterviewerport", + "norm_label": "readactivellmmodelid()" + }, + { + "label": "ExtractedRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L304", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_letterviewerport_extractedrow", + "community": 180, + "community_name": "Letterviewerport", + "norm_label": "extractedrow()" + }, + { + "label": "saveLetterFileToStorage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L384", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_letterviewerport_saveletterfiletostorage", + "community": 180, + "community_name": "Letterviewerport", + "norm_label": "saveletterfiletostorage()" + }, + { + "label": "LetterViewerPort()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L396", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_letterviewerport_letterviewerport", + "community": 180, + "community_name": "Letterviewerport", + "norm_label": "letterviewerport()" + }, + { + "label": "LinkWarningDialog.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LinkWarningDialog.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_linkwarningdialog", + "community": 252, + "community_name": "Inboxactionicons", + "norm_label": "linkwarningdialog.tsx" + }, + { + "label": "LinkWarningDialogProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LinkWarningDialog.tsx", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_linkwarningdialog_linkwarningdialogprops", + "community": 252, + "community_name": "Inboxactionicons", + "norm_label": "linkwarningdialogprops" + }, + { + "label": "LinkWarningDialog()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LinkWarningDialog.tsx", + "source_location": "L46", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_linkwarningdialog_linkwarningdialog", + "community": 252, + "community_name": "Inboxactionicons", + "norm_label": "linkwarningdialog()" + }, + { + "label": "LiveExecutionAnalysis.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "community": 185, + "community_name": "Analysis #185", + "norm_label": "liveexecutionanalysis.tsx" + }, + { + "label": "LiveDeepLink", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L43", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_liveexecutionanalysis_livedeeplink", + "community": 132, + "community_name": "Analysis #132", + "norm_label": "livedeeplink" + }, + { + "label": "LiveExecutionAnalysisProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L50", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_liveexecutionanalysis_liveexecutionanalysisprops", + "community": 131, + "community_name": "Analysis #131", + "norm_label": "liveexecutionanalysisprops" + }, + { + "label": "ActiveProcess", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L68", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_liveexecutionanalysis_activeprocess", + "community": 185, + "community_name": "Analysis #185", + "norm_label": "activeprocess" + }, + { + "label": "mockActiveProcesses", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L79", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_liveexecutionanalysis_mockactiveprocesses", + "community": 185, + "community_name": "Analysis #185", + "norm_label": "mockactiveprocesses" + }, + { + "label": "ActiveProcessesHeroProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L136", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_liveexecutionanalysis_activeprocessesheroprops", + "community": 185, + "community_name": "Analysis #185", + "norm_label": "activeprocessesheroprops" + }, + { + "label": "ActiveProcessesHero()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L142", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_liveexecutionanalysis_activeprocesseshero", + "community": 185, + "community_name": "Analysis #185", + "norm_label": "activeprocesseshero()" + }, + { + "label": "PanelHeaderProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L317", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_liveexecutionanalysis_panelheaderprops", + "community": 185, + "community_name": "Analysis #185", + "norm_label": "panelheaderprops" + }, + { + "label": "PanelHeader()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L324", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_liveexecutionanalysis_panelheader", + "community": 185, + "community_name": "Analysis #185", + "norm_label": "panelheader()" + }, + { + "label": "getEventIcon()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L340", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_liveexecutionanalysis_geteventicon", + "community": 185, + "community_name": "Analysis #185", + "norm_label": "geteventicon()" + }, + { + "label": "getEventLabel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L353", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_liveexecutionanalysis_geteventlabel", + "community": 185, + "community_name": "Analysis #185", + "norm_label": "geteventlabel()" + }, + { + "label": "TimelinePanelProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L370", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_liveexecutionanalysis_timelinepanelprops", + "community": 196, + "community_name": "Analysis #196", + "norm_label": "timelinepanelprops" + }, + { + "label": "TimelinePanel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L380", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_liveexecutionanalysis_timelinepanel", + "community": 185, + "community_name": "Analysis #185", + "norm_label": "timelinepanel()" + }, + { + "label": "FocusPanelProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L455", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_liveexecutionanalysis_focuspanelprops", + "community": 185, + "community_name": "Analysis #185", + "norm_label": "focuspanelprops" + }, + { + "label": "FocusPanel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L461", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_liveexecutionanalysis_focuspanel", + "community": 185, + "community_name": "Analysis #185", + "norm_label": "focuspanel()" + }, + { + "label": "SecondaryPanelProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L605", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_liveexecutionanalysis_secondarypanelprops", + "community": 185, + "community_name": "Analysis #185", + "norm_label": "secondarypanelprops" + }, + { + "label": "SecondaryPanel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L614", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_liveexecutionanalysis_secondarypanel", + "community": 185, + "community_name": "Analysis #185", + "norm_label": "secondarypanel()" + }, + { + "label": "AlignmentPanelProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L694", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_liveexecutionanalysis_alignmentpanelprops", + "community": 185, + "community_name": "Analysis #185", + "norm_label": "alignmentpanelprops" + }, + { + "label": "getStatusLabel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L701", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_liveexecutionanalysis_getstatuslabel", + "community": 185, + "community_name": "Analysis #185", + "norm_label": "getstatuslabel()" + }, + { + "label": "AlignmentPanel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L711", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_liveexecutionanalysis_alignmentpanel", + "community": 185, + "community_name": "Analysis #185", + "norm_label": "alignmentpanel()" + }, + { + "label": "LiveExecutionAnalysis()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L779", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_liveexecutionanalysis_liveexecutionanalysis", + "community": 80, + "community_name": "Analysis", + "norm_label": "liveexecutionanalysis()" + }, + { + "label": "P2PStatusBadge.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/P2PStatusBadge.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_p2pstatusbadge", + "community": 291, + "community_name": "Uicontrasttokens", + "norm_label": "p2pstatusbadge.tsx" + }, + { + "label": "P2PHealthStatus", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/P2PStatusBadge.tsx", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_p2pstatusbadge_p2phealthstatus", + "community": 291, + "community_name": "Uicontrasttokens", + "norm_label": "p2phealthstatus" + }, + { + "label": "isAuthRelatedError()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/P2PStatusBadge.tsx", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_p2pstatusbadge_isauthrelatederror", + "community": 291, + "community_name": "Uicontrasttokens", + "norm_label": "isauthrelatederror()" + }, + { + "label": "chip", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/P2PStatusBadge.tsx", + "source_location": "L38", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_p2pstatusbadge_chip", + "community": 291, + "community_name": "Uicontrasttokens", + "norm_label": "chip" + }, + { + "label": "P2PStatusBadge()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/P2PStatusBadge.tsx", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_p2pstatusbadge_p2pstatusbadge", + "community": 291, + "community_name": "Uicontrasttokens", + "norm_label": "p2pstatusbadge()" + }, + { + "label": "PendingSlideOut.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PendingSlideOut.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_pendingslideout", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "pendingslideout.tsx" + }, + { + "label": "HandshakeRecord", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PendingSlideOut.tsx", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_pendingslideout_handshakerecord", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "handshakerecord" + }, + { + "label": "shortId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PendingSlideOut.tsx", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_pendingslideout_shortid", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "shortid()" + }, + { + "label": "formatDate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PendingSlideOut.tsx", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_pendingslideout_formatdate", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "formatdate()" + }, + { + "label": "StateBadge()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PendingSlideOut.tsx", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_pendingslideout_statebadge", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "statebadge()" + }, + { + "label": "PendingSlideOutProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PendingSlideOut.tsx", + "source_location": "L52", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_pendingslideout_pendingslideoutprops", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "pendingslideoutprops" + }, + { + "label": "PendingSlideOut()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PendingSlideOut.tsx", + "source_location": "L66", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_pendingslideout_pendingslideout", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "pendingslideout()" + }, + { + "label": "PolicyRadioGroup.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PolicyRadioGroup.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_policyradiogroup", + "community": 153, + "community_name": "Relationshipdetail", + "norm_label": "policyradiogroup.tsx" + }, + { + "label": "PolicySelection", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PolicyRadioGroup.tsx", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_policyradiogroup_policyselection", + "community": 153, + "community_name": "Relationshipdetail", + "norm_label": "policyselection" + }, + { + "label": "DEFAULT_AI_POLICY", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PolicyRadioGroup.tsx", + "source_location": "L14", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_policyradiogroup_default_ai_policy", + "community": 153, + "community_name": "Relationshipdetail", + "norm_label": "default_ai_policy" + }, + { + "label": "OPTIONS", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PolicyRadioGroup.tsx", + "source_location": "L18", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_policyradiogroup_options", + "community": 153, + "community_name": "Relationshipdetail", + "norm_label": "options" + }, + { + "label": "PolicyRadioGroupProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PolicyRadioGroup.tsx", + "source_location": "L24", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_policyradiogroup_policyradiogroupprops", + "community": 153, + "community_name": "Relationshipdetail", + "norm_label": "policyradiogroupprops" + }, + { + "label": "PolicyRadioGroup()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PolicyRadioGroup.tsx", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_policyradiogroup_policyradiogroup", + "community": 153, + "community_name": "Relationshipdetail", + "norm_label": "policyradiogroup()" + }, + { + "label": "PostExecutionVerification.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_postexecutionverification", + "community": 211, + "community_name": "Postexecutionverification", + "norm_label": "postexecutionverification.tsx" + }, + { + "label": "PostExecutionVerificationProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_postexecutionverification_postexecutionverificationprops", + "community": 131, + "community_name": "Analysis #131", + "norm_label": "postexecutionverificationprops" + }, + { + "label": "mockExecutionRecord", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L15", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_postexecutionverification_mockexecutionrecord", + "community": 211, + "community_name": "Postexecutionverification", + "norm_label": "mockexecutionrecord" + }, + { + "label": "mockTimelineSteps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L26", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_postexecutionverification_mocktimelinesteps", + "community": 211, + "community_name": "Postexecutionverification", + "norm_label": "mocktimelinesteps" + }, + { + "label": "mockCapsuleEvidence", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L92", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_postexecutionverification_mockcapsuleevidence", + "community": 211, + "community_name": "Postexecutionverification", + "norm_label": "mockcapsuleevidence" + }, + { + "label": "mockArtefactEvidence", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L105", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_postexecutionverification_mockartefactevidence", + "community": 211, + "community_name": "Postexecutionverification", + "norm_label": "mockartefactevidence" + }, + { + "label": "mockPolicySnapshot", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L111", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_postexecutionverification_mockpolicysnapshot", + "community": 211, + "community_name": "Postexecutionverification", + "norm_label": "mockpolicysnapshot" + }, + { + "label": "mockPoAEPlaceholder", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L117", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_postexecutionverification_mockpoaeplaceholder", + "community": 211, + "community_name": "Postexecutionverification", + "norm_label": "mockpoaeplaceholder" + }, + { + "label": "mockWorkflowAnalysis", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L157", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_postexecutionverification_mockworkflowanalysis", + "community": 211, + "community_name": "Postexecutionverification", + "norm_label": "mockworkflowanalysis" + }, + { + "label": "PoAEEventType", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L224", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_postexecutionverification_poaeeventtype", + "community": 211, + "community_name": "Postexecutionverification", + "norm_label": "poaeeventtype" + }, + { + "label": "PoAEEvent", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L226", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_postexecutionverification_poaeevent", + "community": 211, + "community_name": "Postexecutionverification", + "norm_label": "poaeevent" + }, + { + "label": "AIAgent", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L236", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_postexecutionverification_aiagent", + "community": 211, + "community_name": "Postexecutionverification", + "norm_label": "aiagent" + }, + { + "label": "PoAELogEntry", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L243", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_postexecutionverification_poaelogentry", + "community": 211, + "community_name": "Postexecutionverification", + "norm_label": "poaelogentry" + }, + { + "label": "mockPoAELogHistory", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L257", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_postexecutionverification_mockpoaeloghistory", + "community": 211, + "community_name": "Postexecutionverification", + "norm_label": "mockpoaeloghistory" + }, + { + "label": "getPoAEEventTypeLabel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L417", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_postexecutionverification_getpoaeeventtypelabel", + "community": 211, + "community_name": "Postexecutionverification", + "norm_label": "getpoaeeventtypelabel()" + }, + { + "label": "WorkflowAnalysisModalProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L431", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_postexecutionverification_workflowanalysismodalprops", + "community": 211, + "community_name": "Postexecutionverification", + "norm_label": "workflowanalysismodalprops" + }, + { + "label": "WorkflowAnalysisModal()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L439", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_postexecutionverification_workflowanalysismodal", + "community": 211, + "community_name": "Postexecutionverification", + "norm_label": "workflowanalysismodal()" + }, + { + "label": "PanelHeader()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L649", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_postexecutionverification_panelheader", + "community": 211, + "community_name": "Postexecutionverification", + "norm_label": "panelheader()" + }, + { + "label": "ExecutionSummary()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L664", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_postexecutionverification_executionsummary", + "community": 211, + "community_name": "Postexecutionverification", + "norm_label": "executionsummary()" + }, + { + "label": "ExecutionTimeline()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L704", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_postexecutionverification_executiontimeline", + "community": 211, + "community_name": "Postexecutionverification", + "norm_label": "executiontimeline()" + }, + { + "label": "EvidenceBundle()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L737", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_postexecutionverification_evidencebundle", + "community": 211, + "community_name": "Postexecutionverification", + "norm_label": "evidencebundle()" + }, + { + "label": "AgentTimelineItem()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L838", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_postexecutionverification_agenttimelineitem", + "community": 211, + "community_name": "Postexecutionverification", + "norm_label": "agenttimelineitem()" + }, + { + "label": "PoAEInlineHistory()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L868", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_postexecutionverification_poaeinlinehistory", + "community": 211, + "community_name": "Postexecutionverification", + "norm_label": "poaeinlinehistory()" + }, + { + "label": "PoAEHeroSection()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L981", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_postexecutionverification_poaeherosection", + "community": 211, + "community_name": "Postexecutionverification", + "norm_label": "poaeherosection()" + }, + { + "label": "AuditTrailSection()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L1129", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_postexecutionverification_audittrailsection", + "community": 211, + "community_name": "Postexecutionverification", + "norm_label": "audittrailsection()" + }, + { + "label": "PostExecutionVerification()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L1169", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_postexecutionverification_postexecutionverification", + "community": 211, + "community_name": "Postexecutionverification", + "norm_label": "postexecutionverification()" + }, + { + "label": "PreExecutionAnalysis.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_preexecutionanalysis", + "community": 132, + "community_name": "Analysis #132", + "norm_label": "preexecutionanalysis.tsx" + }, + { + "label": "PreExecutionDeepLink", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_preexecutionanalysis_preexecutiondeeplink", + "community": 132, + "community_name": "Analysis #132", + "norm_label": "preexecutiondeeplink" + }, + { + "label": "PreExecutionAnalysisProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L15", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_preexecutionanalysis_preexecutionanalysisprops", + "community": 131, + "community_name": "Analysis #131", + "norm_label": "preexecutionanalysisprops" + }, + { + "label": "AwaitingApproval", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L27", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_preexecutionanalysis_awaitingapproval", + "community": 132, + "community_name": "Analysis #132", + "norm_label": "awaitingapproval" + }, + { + "label": "mockPreExecutionWorkflow", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L40", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_preexecutionanalysis_mockpreexecutionworkflow", + "community": 132, + "community_name": "Analysis #132", + "norm_label": "mockpreexecutionworkflow" + }, + { + "label": "mockAwaitingApprovals", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L105", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_preexecutionanalysis_mockawaitingapprovals", + "community": 132, + "community_name": "Analysis #132", + "norm_label": "mockawaitingapprovals" + }, + { + "label": "mockTemplateData", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L156", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_preexecutionanalysis_mocktemplatedata", + "community": 132, + "community_name": "Analysis #132", + "norm_label": "mocktemplatedata" + }, + { + "label": "mockSessionData", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L167", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_preexecutionanalysis_mocksessiondata", + "community": 132, + "community_name": "Analysis #132", + "norm_label": "mocksessiondata" + }, + { + "label": "mockAutomationSteps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L174", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_preexecutionanalysis_mockautomationsteps", + "community": 132, + "community_name": "Analysis #132", + "norm_label": "mockautomationsteps" + }, + { + "label": "mockConsentRequirements", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L184", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_preexecutionanalysis_mockconsentrequirements", + "community": 132, + "community_name": "Analysis #132", + "norm_label": "mockconsentrequirements" + }, + { + "label": "mockRiskSummary", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L191", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_preexecutionanalysis_mockrisksummary", + "community": 132, + "community_name": "Analysis #132", + "norm_label": "mockrisksummary" + }, + { + "label": "PreflightAlignmentRow", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L205", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_preexecutionanalysis_preflightalignmentrow", + "community": 132, + "community_name": "Analysis #132", + "norm_label": "preflightalignmentrow" + }, + { + "label": "mockPreflightAlignment", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L214", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_preexecutionanalysis_mockpreflightalignment", + "community": 132, + "community_name": "Analysis #132", + "norm_label": "mockpreflightalignment" + }, + { + "label": "PreflightRiskRule", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L258", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_preexecutionanalysis_preflightriskrule", + "community": 132, + "community_name": "Analysis #132", + "norm_label": "preflightriskrule" + }, + { + "label": "mockPreflightRisks", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L267", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_preexecutionanalysis_mockpreflightrisks", + "community": 132, + "community_name": "Analysis #132", + "norm_label": "mockpreflightrisks" + }, + { + "label": "TemplateAnnotation", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L303", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_preexecutionanalysis_templateannotation", + "community": 132, + "community_name": "Analysis #132", + "norm_label": "templateannotation" + }, + { + "label": "mockTemplateAnnotations", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L361", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_preexecutionanalysis_mocktemplateannotations", + "community": 132, + "community_name": "Analysis #132", + "norm_label": "mocktemplateannotations" + }, + { + "label": "PanelHeader()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L389", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_preexecutionanalysis_panelheader", + "community": 132, + "community_name": "Analysis #132", + "norm_label": "panelheader()" + }, + { + "label": "TemplateInspector()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L399", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_preexecutionanalysis_templateinspector", + "community": 132, + "community_name": "Analysis #132", + "norm_label": "templateinspector()" + }, + { + "label": "AutomationOverview()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L463", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_preexecutionanalysis_automationoverview", + "community": 132, + "community_name": "Analysis #132", + "norm_label": "automationoverview()" + }, + { + "label": "TemplateSourceViewer()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L506", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_preexecutionanalysis_templatesourceviewer", + "community": 132, + "community_name": "Analysis #132", + "norm_label": "templatesourceviewer()" + }, + { + "label": "ConsentRequirements()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L575", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_preexecutionanalysis_consentrequirements", + "community": 132, + "community_name": "Analysis #132", + "norm_label": "consentrequirements()" + }, + { + "label": "RiskSummary()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L618", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_preexecutionanalysis_risksummary", + "community": 132, + "community_name": "Analysis #132", + "norm_label": "risksummary()" + }, + { + "label": "PreflightAlignmentPanelProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L683", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_preexecutionanalysis_preflightalignmentpanelprops", + "community": 132, + "community_name": "Analysis #132", + "norm_label": "preflightalignmentpanelprops" + }, + { + "label": "getAlignmentStatusLabel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L689", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_preexecutionanalysis_getalignmentstatuslabel", + "community": 132, + "community_name": "Analysis #132", + "norm_label": "getalignmentstatuslabel()" + }, + { + "label": "PreflightAlignmentPanel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L698", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_preexecutionanalysis_preflightalignmentpanel", + "community": 132, + "community_name": "Analysis #132", + "norm_label": "preflightalignmentpanel()" + }, + { + "label": "PreflightRiskDetailsPanelProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L757", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_preexecutionanalysis_preflightriskdetailspanelprops", + "community": 132, + "community_name": "Analysis #132", + "norm_label": "preflightriskdetailspanelprops" + }, + { + "label": "getSeverityBadgeClass()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L764", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_preexecutionanalysis_getseveritybadgeclass", + "community": 132, + "community_name": "Analysis #132", + "norm_label": "getseveritybadgeclass()" + }, + { + "label": "PreflightRiskDetailsPanel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L768", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_preexecutionanalysis_preflightriskdetailspanel", + "community": 132, + "community_name": "Analysis #132", + "norm_label": "preflightriskdetailspanel()" + }, + { + "label": "DeepLinkNotFoundBannerProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L818", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_preexecutionanalysis_deeplinknotfoundbannerprops", + "community": 132, + "community_name": "Analysis #132", + "norm_label": "deeplinknotfoundbannerprops" + }, + { + "label": "DeepLinkNotFoundBanner()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L823", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_preexecutionanalysis_deeplinknotfoundbanner", + "community": 132, + "community_name": "Analysis #132", + "norm_label": "deeplinknotfoundbanner()" + }, + { + "label": "PreExecutionWorkflowModalProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L843", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_preexecutionanalysis_preexecutionworkflowmodalprops", + "community": 132, + "community_name": "Analysis #132", + "norm_label": "preexecutionworkflowmodalprops" + }, + { + "label": "PreExecutionAgentItem()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L853", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_preexecutionanalysis_preexecutionagentitem", + "community": 132, + "community_name": "Analysis #132", + "norm_label": "preexecutionagentitem()" + }, + { + "label": "PreExecutionWorkflowModal()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L878", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_preexecutionanalysis_preexecutionworkflowmodal", + "community": 132, + "community_name": "Analysis #132", + "norm_label": "preexecutionworkflowmodal()" + }, + { + "label": "AwaitingApprovalsHeroProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L991", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_preexecutionanalysis_awaitingapprovalsheroprops", + "community": 132, + "community_name": "Analysis #132", + "norm_label": "awaitingapprovalsheroprops" + }, + { + "label": "AwaitingApprovalsHero()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L998", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_preexecutionanalysis_awaitingapprovalshero", + "community": 132, + "community_name": "Analysis #132", + "norm_label": "awaitingapprovalshero()" + }, + { + "label": "PreExecutionAnalysis()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L1215", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_preexecutionanalysis_preexecutionanalysis", + "community": 132, + "community_name": "Analysis #132", + "norm_label": "preexecutionanalysis()" + }, + { + "label": "src/components/ProtectedAccessWarningDialog.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/ProtectedAccessWarningDialog.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_protectedaccesswarningdialog", + "community": 191, + "community_name": "Structuredhscontextpanel", + "norm_label": "src/components/protectedaccesswarningdialog.tsx" + }, + { + "label": "DialogKind", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/ProtectedAccessWarningDialog.tsx", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_protectedaccesswarningdialog_dialogkind", + "community": 191, + "community_name": "Structuredhscontextpanel", + "norm_label": "dialogkind" + }, + { + "label": "Props", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/ProtectedAccessWarningDialog.tsx", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_protectedaccesswarningdialog_props", + "community": 191, + "community_name": "Structuredhscontextpanel", + "norm_label": "props" + }, + { + "label": "ORIGINAL_COPY", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/ProtectedAccessWarningDialog.tsx", + "source_location": "L19", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_protectedaccesswarningdialog_original_copy", + "community": 191, + "community_name": "Structuredhscontextpanel", + "norm_label": "original_copy" + }, + { + "label": "LINK_COPY", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/ProtectedAccessWarningDialog.tsx", + "source_location": "L26", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_protectedaccesswarningdialog_link_copy", + "community": 191, + "community_name": "Structuredhscontextpanel", + "norm_label": "link_copy" + }, + { + "label": "ProtectedAccessWarningDialog()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/ProtectedAccessWarningDialog.tsx", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_protectedaccesswarningdialog_protectedaccesswarningdialog", + "community": 191, + "community_name": "Structuredhscontextpanel", + "norm_label": "protectedaccesswarningdialog()" + }, + { + "label": "RelationshipDetail.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/RelationshipDetail.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_relationshipdetail", + "community": 153, + "community_name": "Relationshipdetail", + "norm_label": "relationshipdetail.tsx" + }, + { + "label": "HandshakeRecord", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/RelationshipDetail.tsx", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_relationshipdetail_handshakerecord", + "community": 153, + "community_name": "Relationshipdetail", + "norm_label": "handshakerecord" + }, + { + "label": "VaultStatus", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/RelationshipDetail.tsx", + "source_location": "L57", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_relationshipdetail_vaultstatus", + "community": 153, + "community_name": "Relationshipdetail", + "norm_label": "vaultstatus" + }, + { + "label": "Props", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/RelationshipDetail.tsx", + "source_location": "L62", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_relationshipdetail_props", + "community": 153, + "community_name": "Relationshipdetail", + "norm_label": "props" + }, + { + "label": "StateBadge()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/RelationshipDetail.tsx", + "source_location": "L72", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_relationshipdetail_statebadge", + "community": 153, + "community_name": "Relationshipdetail", + "norm_label": "statebadge()" + }, + { + "label": "formatDate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/RelationshipDetail.tsx", + "source_location": "L93", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_relationshipdetail_formatdate", + "community": 153, + "community_name": "Relationshipdetail", + "norm_label": "formatdate()" + }, + { + "label": "shortHash()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/RelationshipDetail.tsx", + "source_location": "L103", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_relationshipdetail_shorthash", + "community": 153, + "community_name": "Relationshipdetail", + "norm_label": "shorthash()" + }, + { + "label": "MetaRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/RelationshipDetail.tsx", + "source_location": "L108", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_relationshipdetail_metarow", + "community": 153, + "community_name": "Relationshipdetail", + "norm_label": "metarow()" + }, + { + "label": "CopyableHash()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/RelationshipDetail.tsx", + "source_location": "L128", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_relationshipdetail_copyablehash", + "community": 153, + "community_name": "Relationshipdetail", + "norm_label": "copyablehash()" + }, + { + "label": "P2PQueueEntry", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/RelationshipDetail.tsx", + "source_location": "L162", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_relationshipdetail_p2pqueueentry", + "community": 153, + "community_name": "Relationshipdetail", + "norm_label": "p2pqueueentry" + }, + { + "label": "RelayStatusHint()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/RelationshipDetail.tsx", + "source_location": "L168", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_relationshipdetail_relaystatushint", + "community": 153, + "community_name": "Relationshipdetail", + "norm_label": "relaystatushint()" + }, + { + "label": "P2PDeliveryStatus()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/RelationshipDetail.tsx", + "source_location": "L191", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_relationshipdetail_p2pdeliverystatus", + "community": 153, + "community_name": "Relationshipdetail", + "norm_label": "p2pdeliverystatus()" + }, + { + "label": "RelationshipDetail()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/RelationshipDetail.tsx", + "source_location": "L233", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_relationshipdetail_relationshipdetail", + "community": 153, + "community_name": "Relationshipdetail", + "norm_label": "relationshipdetail()" + }, + { + "label": "RelaySetupWizard.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/RelaySetupWizard.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_relaysetupwizard", + "community": 438, + "community_name": "Relaysetupwizard", + "norm_label": "relaysetupwizard.tsx" + }, + { + "label": "WizardState", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/RelaySetupWizard.tsx", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_relaysetupwizard_wizardstate", + "community": 438, + "community_name": "Relaysetupwizard", + "norm_label": "wizardstate" + }, + { + "label": "CodeBlock()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/RelaySetupWizard.tsx", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_relaysetupwizard_codeblock", + "community": 438, + "community_name": "Relaysetupwizard", + "norm_label": "codeblock()" + }, + { + "label": "RelaySetupWizardProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/RelaySetupWizard.tsx", + "source_location": "L59", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_relaysetupwizard_relaysetupwizardprops", + "community": 438, + "community_name": "Relaysetupwizard", + "norm_label": "relaysetupwizardprops" + }, + { + "label": "RelaySetupWizard()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/RelaySetupWizard.tsx", + "source_location": "L65", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_relaysetupwizard_relaysetupwizard", + "community": 438, + "community_name": "Relaysetupwizard", + "norm_label": "relaysetupwizard()" + }, + { + "label": "RevocationNoticeBanner.test.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/RevocationNoticeBanner.test.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_revocationnoticebanner_test", + "community": 212, + "community_name": "Userevocationbanner", + "norm_label": "revocationnoticebanner.test.tsx" + }, + { + "label": "makeNotice()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/RevocationNoticeBanner.test.tsx", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_revocationnoticebanner_test_makenotice", + "community": 212, + "community_name": "Userevocationbanner", + "norm_label": "makenotice()" + }, + { + "label": "render()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/RevocationNoticeBanner.test.tsx", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_revocationnoticebanner_test_render", + "community": 212, + "community_name": "Userevocationbanner", + "norm_label": "render()" + }, + { + "label": "RevocationNoticeBanner.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/RevocationNoticeBanner.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_revocationnoticebanner", + "community": 212, + "community_name": "Userevocationbanner", + "norm_label": "revocationnoticebanner.tsx" + }, + { + "label": "COPY", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/RevocationNoticeBanner.tsx", + "source_location": "L27", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_revocationnoticebanner_copy", + "community": 212, + "community_name": "Userevocationbanner", + "norm_label": "copy" + }, + { + "label": "bannerStyle", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/RevocationNoticeBanner.tsx", + "source_location": "L43", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_revocationnoticebanner_bannerstyle", + "community": 212, + "community_name": "Userevocationbanner", + "norm_label": "bannerstyle" + }, + { + "label": "contentStyle", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/RevocationNoticeBanner.tsx", + "source_location": "L54", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_revocationnoticebanner_contentstyle", + "community": 212, + "community_name": "Userevocationbanner", + "norm_label": "contentstyle" + }, + { + "label": "titleStyle", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/RevocationNoticeBanner.tsx", + "source_location": "L58", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_revocationnoticebanner_titlestyle", + "community": 212, + "community_name": "Userevocationbanner", + "norm_label": "titlestyle" + }, + { + "label": "detailStyle", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/RevocationNoticeBanner.tsx", + "source_location": "L64", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_revocationnoticebanner_detailstyle", + "community": 212, + "community_name": "Userevocationbanner", + "norm_label": "detailstyle" + }, + { + "label": "dismissBtnStyle", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/RevocationNoticeBanner.tsx", + "source_location": "L70", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_revocationnoticebanner_dismissbtnstyle", + "community": 212, + "community_name": "Userevocationbanner", + "norm_label": "dismissbtnstyle" + }, + { + "label": "Props", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/RevocationNoticeBanner.tsx", + "source_location": "L83", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_revocationnoticebanner_props", + "community": 212, + "community_name": "Userevocationbanner", + "norm_label": "props" + }, + { + "label": "RevocationNoticeBanner()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/RevocationNoticeBanner.tsx", + "source_location": "L88", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_revocationnoticebanner_revocationnoticebanner", + "community": 212, + "community_name": "Userevocationbanner", + "norm_label": "revocationnoticebanner()" + }, + { + "label": "SandboxCloneDisclosure.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/SandboxCloneDisclosure.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_sandboxclonedisclosure", + "community": 158, + "community_name": "Inboxmessagesandboxclone", + "norm_label": "sandboxclonedisclosure.tsx" + }, + { + "label": "Props", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/SandboxCloneDisclosure.tsx", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_sandboxclonedisclosure_props", + "community": 158, + "community_name": "Inboxmessagesandboxclone", + "norm_label": "props" + }, + { + "label": "metaRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/SandboxCloneDisclosure.tsx", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_sandboxclonedisclosure_metarow", + "community": 158, + "community_name": "Inboxmessagesandboxclone", + "norm_label": "metarow()" + }, + { + "label": "SandboxCloneDisclosure()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/SandboxCloneDisclosure.tsx", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_sandboxclonedisclosure_sandboxclonedisclosure", + "community": 158, + "community_name": "Inboxmessagesandboxclone", + "norm_label": "sandboxclonedisclosure()" + }, + { + "label": "SandboxCloneFeedbackBadge.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/SandboxCloneFeedbackBadge.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_sandboxclonefeedbackbadge", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "sandboxclonefeedbackbadge.tsx" + }, + { + "label": "VARIANT_CLASS", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/SandboxCloneFeedbackBadge.tsx", + "source_location": "L7", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_sandboxclonefeedbackbadge_variant_class", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "variant_class" + }, + { + "label": "IconGlyph()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/SandboxCloneFeedbackBadge.tsx", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_sandboxclonefeedbackbadge_iconglyph", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "iconglyph()" + }, + { + "label": "SandboxCloneFeedbackBadgeProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/SandboxCloneFeedbackBadge.tsx", + "source_location": "L29", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_sandboxclonefeedbackbadge_sandboxclonefeedbackbadgeprops", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "sandboxclonefeedbackbadgeprops" + }, + { + "label": "SandboxCloneFeedbackBadge()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/SandboxCloneFeedbackBadge.tsx", + "source_location": "L37", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_sandboxclonefeedbackbadge_sandboxclonefeedbackbadge", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "sandboxclonefeedbackbadge()" + }, + { + "label": "SandboxLinkInfoDialog.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/SandboxLinkInfoDialog.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_sandboxlinkinfodialog", + "community": 291, + "community_name": "Uicontrasttokens", + "norm_label": "sandboxlinkinfodialog.tsx" + }, + { + "label": "SandboxLinkInfoDialogProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/SandboxLinkInfoDialog.tsx", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_sandboxlinkinfodialog_sandboxlinkinfodialogprops", + "community": 291, + "community_name": "Uicontrasttokens", + "norm_label": "sandboxlinkinfodialogprops" + }, + { + "label": "CARD", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/SandboxLinkInfoDialog.tsx", + "source_location": "L15", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_sandboxlinkinfodialog_card", + "community": 291, + "community_name": "Uicontrasttokens", + "norm_label": "card" + }, + { + "label": "SandboxLinkInfoDialog()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/SandboxLinkInfoDialog.tsx", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_sandboxlinkinfodialog_sandboxlinkinfodialog", + "community": 291, + "community_name": "Uicontrasttokens", + "norm_label": "sandboxlinkinfodialog()" + }, + { + "label": "SandboxLockSurface.test.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/SandboxLockSurface.test.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_sandboxlocksurface_test", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "sandboxlocksurface.test.tsx" + }, + { + "label": "render()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/SandboxLockSurface.test.tsx", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_sandboxlocksurface_test_render", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "render()" + }, + { + "label": "SandboxLockSurface.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/SandboxLockSurface.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_sandboxlocksurface", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "sandboxlocksurface.tsx" + }, + { + "label": "SANDBOX_LOCK_COPY", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/SandboxLockSurface.tsx", + "source_location": "L12", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_sandboxlocksurface_sandbox_lock_copy", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "sandbox_lock_copy" + }, + { + "label": "SandboxLockSurfaceProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/SandboxLockSurface.tsx", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_sandboxlocksurface_sandboxlocksurfaceprops", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "sandboxlocksurfaceprops" + }, + { + "label": "SandboxLockSurface()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/SandboxLockSurface.tsx", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_sandboxlocksurface_sandboxlocksurface", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "sandboxlocksurface()" + }, + { + "label": "SandboxReadCleanupHint.test.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/SandboxReadCleanupHint.test.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_sandboxreadcleanuphint_test", + "community": 197, + "community_name": "Sandboxreadcleanuphint", + "norm_label": "sandboxreadcleanuphint.test.tsx" + }, + { + "label": "makeHint()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/SandboxReadCleanupHint.test.tsx", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_sandboxreadcleanuphint_test_makehint", + "community": 197, + "community_name": "Sandboxreadcleanuphint", + "norm_label": "makehint()" + }, + { + "label": "render()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/SandboxReadCleanupHint.test.tsx", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_sandboxreadcleanuphint_test_render", + "community": 197, + "community_name": "Sandboxreadcleanuphint", + "norm_label": "render()" + }, + { + "label": "SandboxReadCleanupHint.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/SandboxReadCleanupHint.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_sandboxreadcleanuphint", + "community": 197, + "community_name": "Sandboxreadcleanuphint", + "norm_label": "sandboxreadcleanuphint.tsx" + }, + { + "label": "PROVIDER_SECURITY_LINKS", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/SandboxReadCleanupHint.tsx", + "source_location": "L27", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_sandboxreadcleanuphint_provider_security_links", + "community": 197, + "community_name": "Sandboxreadcleanuphint", + "norm_label": "provider_security_links" + }, + { + "label": "providerLink()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/SandboxReadCleanupHint.tsx", + "source_location": "L46", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_sandboxreadcleanuphint_providerlink", + "community": 197, + "community_name": "Sandboxreadcleanuphint", + "norm_label": "providerlink()" + }, + { + "label": "bannerStyle", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/SandboxReadCleanupHint.tsx", + "source_location": "L52", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_sandboxreadcleanuphint_bannerstyle", + "community": 197, + "community_name": "Sandboxreadcleanuphint", + "norm_label": "bannerstyle" + }, + { + "label": "rowStyle", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/SandboxReadCleanupHint.tsx", + "source_location": "L60", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_sandboxreadcleanuphint_rowstyle", + "community": 197, + "community_name": "Sandboxreadcleanuphint", + "norm_label": "rowstyle" + }, + { + "label": "contentStyle", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/SandboxReadCleanupHint.tsx", + "source_location": "L66", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_sandboxreadcleanuphint_contentstyle", + "community": 197, + "community_name": "Sandboxreadcleanuphint", + "norm_label": "contentstyle" + }, + { + "label": "titleStyle", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/SandboxReadCleanupHint.tsx", + "source_location": "L70", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_sandboxreadcleanuphint_titlestyle", + "community": 197, + "community_name": "Sandboxreadcleanuphint", + "norm_label": "titlestyle" + }, + { + "label": "detailStyle", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/SandboxReadCleanupHint.tsx", + "source_location": "L76", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_sandboxreadcleanuphint_detailstyle", + "community": 197, + "community_name": "Sandboxreadcleanuphint", + "norm_label": "detailstyle" + }, + { + "label": "actionsStyle", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/SandboxReadCleanupHint.tsx", + "source_location": "L83", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_sandboxreadcleanuphint_actionsstyle", + "community": 197, + "community_name": "Sandboxreadcleanuphint", + "norm_label": "actionsstyle" + }, + { + "label": "removeBtnStyle", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/SandboxReadCleanupHint.tsx", + "source_location": "L90", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_sandboxreadcleanuphint_removebtnstyle", + "community": 197, + "community_name": "Sandboxreadcleanuphint", + "norm_label": "removebtnstyle" + }, + { + "label": "linkStyle", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/SandboxReadCleanupHint.tsx", + "source_location": "L100", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_sandboxreadcleanuphint_linkstyle", + "community": 197, + "community_name": "Sandboxreadcleanuphint", + "norm_label": "linkstyle" + }, + { + "label": "dismissBtnStyle", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/SandboxReadCleanupHint.tsx", + "source_location": "L110", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_sandboxreadcleanuphint_dismissbtnstyle", + "community": 197, + "community_name": "Sandboxreadcleanuphint", + "norm_label": "dismissbtnstyle" + }, + { + "label": "AccountHintProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/SandboxReadCleanupHint.tsx", + "source_location": "L123", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_sandboxreadcleanuphint_accounthintprops", + "community": 197, + "community_name": "Sandboxreadcleanuphint", + "norm_label": "accounthintprops" + }, + { + "label": "AccountHint()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/SandboxReadCleanupHint.tsx", + "source_location": "L130", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_sandboxreadcleanuphint_accounthint", + "community": 197, + "community_name": "Sandboxreadcleanuphint", + "norm_label": "accounthint()" + }, + { + "label": "Props", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/SandboxReadCleanupHint.tsx", + "source_location": "L193", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_sandboxreadcleanuphint_props", + "community": 197, + "community_name": "Sandboxreadcleanuphint", + "norm_label": "props" + }, + { + "label": "SandboxReadCleanupHint()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/SandboxReadCleanupHint.tsx", + "source_location": "L198", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_sandboxreadcleanuphint_sandboxreadcleanuphint", + "community": 197, + "community_name": "Sandboxreadcleanuphint", + "norm_label": "sandboxreadcleanuphint()" + }, + { + "label": "SecureContextSyncPendingBanner.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/SecureContextSyncPendingBanner.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_securecontextsyncpendingbanner", + "community": 153, + "community_name": "Relationshipdetail", + "norm_label": "securecontextsyncpendingbanner.tsx" + }, + { + "label": "QueueSnap", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/SecureContextSyncPendingBanner.tsx", + "source_location": "L3", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_securecontextsyncpendingbanner_queuesnap", + "community": 153, + "community_name": "Relationshipdetail", + "norm_label": "queuesnap" + }, + { + "label": "SecureContextSyncPendingBanner()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/SecureContextSyncPendingBanner.tsx", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_securecontextsyncpendingbanner_securecontextsyncpendingbanner", + "community": 153, + "community_name": "Relationshipdetail", + "norm_label": "securecontextsyncpendingbanner()" + }, + { + "label": "SessionImportDialog.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/SessionImportDialog.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_sessionimportdialog", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "sessionimportdialog.tsx" + }, + { + "label": "SessionImportDialogSessionRef", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/SessionImportDialog.tsx", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_sessionimportdialog_sessionimportdialogsessionref", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "sessionimportdialogsessionref" + }, + { + "label": "SessionImportDialogProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/SessionImportDialog.tsx", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_sessionimportdialog_sessionimportdialogprops", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "sessionimportdialogprops" + }, + { + "label": "SessionImportDialog()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/SessionImportDialog.tsx", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_sessionimportdialog_sessionimportdialog", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "sessionimportdialog()" + }, + { + "label": "StructuredHsContextPanel.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/StructuredHsContextPanel.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_structuredhscontextpanel", + "community": 191, + "community_name": "Structuredhscontextpanel", + "norm_label": "structuredhscontextpanel.tsx" + }, + { + "label": "ParsedProfile", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/StructuredHsContextPanel.tsx", + "source_location": "L16", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_structuredhscontextpanel_parsedprofile", + "community": 191, + "community_name": "Structuredhscontextpanel", + "norm_label": "parsedprofile" + }, + { + "label": "ParsedDocument", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/StructuredHsContextPanel.tsx", + "source_location": "L24", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_structuredhscontextpanel_parseddocument", + "community": 191, + "community_name": "Structuredhscontextpanel", + "norm_label": "parseddocument" + }, + { + "label": "ParsedPayload", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/StructuredHsContextPanel.tsx", + "source_location": "L33", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_structuredhscontextpanel_parsedpayload", + "community": 191, + "community_name": "Structuredhscontextpanel", + "norm_label": "parsedpayload" + }, + { + "label": "parseHsContextPayload()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/StructuredHsContextPanel.tsx", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_structuredhscontextpanel_parsehscontextpayload", + "community": 191, + "community_name": "Structuredhscontextpanel", + "norm_label": "parsehscontextpayload()" + }, + { + "label": "hasStr()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/StructuredHsContextPanel.tsx", + "source_location": "L49", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_structuredhscontextpanel_hasstr", + "community": 191, + "community_name": "Structuredhscontextpanel", + "norm_label": "hasstr()" + }, + { + "label": "hasOpeningHours()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/StructuredHsContextPanel.tsx", + "source_location": "L52", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_structuredhscontextpanel_hasopeninghours", + "community": 191, + "community_name": "Structuredhscontextpanel", + "norm_label": "hasopeninghours()" + }, + { + "label": "hasPaymentMethods()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/StructuredHsContextPanel.tsx", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_structuredhscontextpanel_haspaymentmethods", + "community": 191, + "community_name": "Structuredhscontextpanel", + "norm_label": "haspaymentmethods()" + }, + { + "label": "hasContacts()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/StructuredHsContextPanel.tsx", + "source_location": "L59", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_structuredhscontextpanel_hascontacts", + "community": 191, + "community_name": "Structuredhscontextpanel", + "norm_label": "hascontacts()" + }, + { + "label": "hasAddressParts()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/StructuredHsContextPanel.tsx", + "source_location": "L62", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_structuredhscontextpanel_hasaddressparts", + "community": 191, + "community_name": "Structuredhscontextpanel", + "norm_label": "hasaddressparts()" + }, + { + "label": "hasCustomFieldsWithContent()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/StructuredHsContextPanel.tsx", + "source_location": "L66", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_structuredhscontextpanel_hascustomfieldswithcontent", + "community": 191, + "community_name": "Structuredhscontextpanel", + "norm_label": "hascustomfieldswithcontent()" + }, + { + "label": "SectionRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/StructuredHsContextPanel.tsx", + "source_location": "L71", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_structuredhscontextpanel_sectionrow", + "community": 191, + "community_name": "Structuredhscontextpanel", + "norm_label": "sectionrow()" + }, + { + "label": "SectionHeader()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/StructuredHsContextPanel.tsx", + "source_location": "L81", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_structuredhscontextpanel_sectionheader", + "community": 191, + "community_name": "Structuredhscontextpanel", + "norm_label": "sectionheader()" + }, + { + "label": "KNOWN_HS_CONTEXT_LINK_FIELDS", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/StructuredHsContextPanel.tsx", + "source_location": "L90", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_structuredhscontextpanel_known_hs_context_link_fields", + "community": 171, + "community_name": "Handshake #171", + "norm_label": "known_hs_context_link_fields" + }, + { + "label": "StructuredHsContextPanelProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/StructuredHsContextPanel.tsx", + "source_location": "L93", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_structuredhscontextpanel_structuredhscontextpanelprops", + "community": 191, + "community_name": "Structuredhscontextpanel", + "norm_label": "structuredhscontextpanelprops" + }, + { + "label": "StructuredHsContextBlock()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/StructuredHsContextPanel.tsx", + "source_location": "L114", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_structuredhscontextpanel_structuredhscontextblock", + "community": 191, + "community_name": "Structuredhscontextpanel", + "norm_label": "structuredhscontextblock()" + }, + { + "label": "StructuredHsContextPanel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/StructuredHsContextPanel.tsx", + "source_location": "L463", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_structuredhscontextpanel_structuredhscontextpanel", + "community": 171, + "community_name": "Handshake #171", + "norm_label": "structuredhscontextpanel()" + }, + { + "label": "SyncFailureBanner.test.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/SyncFailureBanner.test.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_syncfailurebanner_test", + "community": 142, + "community_name": "Email", + "norm_label": "syncfailurebanner.test.tsx" + }, + { + "label": "SyncFailureBanner.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/SyncFailureBanner.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_syncfailurebanner", + "community": 142, + "community_name": "Email", + "norm_label": "syncfailurebanner.tsx" + }, + { + "label": "AccountLite", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/SyncFailureBanner.tsx", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_syncfailurebanner_accountlite", + "community": 142, + "community_name": "Email", + "norm_label": "accountlite" + }, + { + "label": "Props", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/SyncFailureBanner.tsx", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_syncfailurebanner_props", + "community": 142, + "community_name": "Email", + "norm_label": "props" + }, + { + "label": "ParsedRow", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/SyncFailureBanner.tsx", + "source_location": "L30", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_syncfailurebanner_parsedrow", + "community": 142, + "community_name": "Email", + "norm_label": "parsedrow" + }, + { + "label": "SyncFailureBanner()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/SyncFailureBanner.tsx", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_syncfailurebanner_syncfailurebanner", + "community": 142, + "community_name": "Email", + "norm_label": "syncfailurebanner()" + }, + { + "label": "ThisDeviceCard.test.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/ThisDeviceCard.test.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_thisdevicecard_test", + "community": 439, + "community_name": "Thisdevicecard", + "norm_label": "thisdevicecard.test.tsx" + }, + { + "label": "ThisDeviceCard.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/ThisDeviceCard.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_thisdevicecard", + "community": 439, + "community_name": "Thisdevicecard", + "norm_label": "thisdevicecard.tsx" + }, + { + "label": "ThisDeviceCardProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/ThisDeviceCard.tsx", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_thisdevicecard_thisdevicecardprops", + "community": 439, + "community_name": "Thisdevicecard", + "norm_label": "thisdevicecardprops" + }, + { + "label": "formatPairingCode()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/ThisDeviceCard.tsx", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_thisdevicecard_formatpairingcode", + "community": 439, + "community_name": "Thisdevicecard", + "norm_label": "formatpairingcode()" + }, + { + "label": "ThisDeviceCard()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/ThisDeviceCard.tsx", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_thisdevicecard_thisdevicecard", + "community": 439, + "community_name": "Thisdevicecard", + "norm_label": "thisdevicecard()" + }, + { + "label": "VaultStatusIndicator.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/VaultStatusIndicator.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_vaultstatusindicator", + "community": 153, + "community_name": "Relationshipdetail", + "norm_label": "vaultstatusindicator.tsx" + }, + { + "label": "VaultStatusIndicatorProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/VaultStatusIndicator.tsx", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_vaultstatusindicator_vaultstatusindicatorprops", + "community": 153, + "community_name": "Relationshipdetail", + "norm_label": "vaultstatusindicatorprops" + }, + { + "label": "VaultStatusIndicator()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/VaultStatusIndicator.tsx", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_vaultstatusindicator_vaultstatusindicator", + "community": 153, + "community_name": "Relationshipdetail", + "norm_label": "vaultstatusindicator()" + }, + { + "label": "WRChatDashboardView.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_wrchatdashboardview", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "wrchatdashboardview.tsx" + }, + { + "label": "WrChatModelOption", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L57", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_wrchatdashboardview_wrchatmodeloption", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "wrchatmodeloption" + }, + { + "label": "wrChatModelsForPersist()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L83", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_wrchatdashboardview_wrchatmodelsforpersist", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "wrchatmodelsforpersist()" + }, + { + "label": "DashboardTheme", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L94", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_wrchatdashboardview_dashboardtheme", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "dashboardtheme" + }, + { + "label": "WRChatDashboardViewProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L96", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_wrchatdashboardview_wrchatdashboardviewprops", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "wrchatdashboardviewprops" + }, + { + "label": "WRChatDashboardView()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L109", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_wrchatdashboardview_wrchatdashboardview", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "wrchatdashboardview()" + }, + { + "label": "WrChatDashboardPanel.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/WrChatDashboardPanel.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_wrchatdashboardpanel", + "community": 106, + "community_name": "Handshake Shims", + "norm_label": "wrchatdashboardpanel.tsx" + }, + { + "label": "ExtensionTheme", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/WrChatDashboardPanel.tsx", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_wrchatdashboardpanel_extensiontheme", + "community": 106, + "community_name": "Handshake Shims", + "norm_label": "extensiontheme" + }, + { + "label": "WrChatDashboardPanelProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/WrChatDashboardPanel.tsx", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_wrchatdashboardpanel_wrchatdashboardpanelprops", + "community": 106, + "community_name": "Handshake Shims", + "norm_label": "wrchatdashboardpanelprops" + }, + { + "label": "WrChatDashboardPanel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/WrChatDashboardPanel.tsx", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_wrchatdashboardpanel_wrchatdashboardpanel", + "community": 106, + "community_name": "Handshake Shims", + "norm_label": "wrchatdashboardpanel()" + }, + { + "label": "EvidenceDrawer.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_evidencedrawer", + "community": 196, + "community_name": "Analysis #196", + "norm_label": "evidencedrawer.tsx" + }, + { + "label": "DrawerTab", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L24", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_evidencedrawer_drawertab", + "community": 196, + "community_name": "Analysis #196", + "norm_label": "drawertab" + }, + { + "label": "EvidenceDrawerProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L26", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_evidencedrawer_evidencedrawerprops", + "community": 196, + "community_name": "Analysis #196", + "norm_label": "evidencedrawerprops" + }, + { + "label": "VerificationFlagsDisplay", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L36", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_evidencedrawer_verificationflagsdisplay", + "community": 196, + "community_name": "Analysis #196", + "norm_label": "verificationflagsdisplay" + }, + { + "label": "CURRENT_FLAGS", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L43", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_evidencedrawer_current_flags", + "community": 196, + "community_name": "Analysis #196", + "norm_label": "current_flags" + }, + { + "label": "generateMockHash()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_evidencedrawer_generatemockhash", + "community": 196, + "community_name": "Analysis #196", + "norm_label": "generatemockhash()" + }, + { + "label": "truncateHash()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L63", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_evidencedrawer_truncatehash", + "community": 196, + "community_name": "Analysis #196", + "norm_label": "truncatehash()" + }, + { + "label": "SemanticExtractionEvidence()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L72", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_evidencedrawer_semanticextractionevidence", + "community": 196, + "community_name": "Analysis #196", + "norm_label": "semanticextractionevidence()" + }, + { + "label": "PackagingEvidence()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L100", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_evidencedrawer_packagingevidence", + "community": 196, + "community_name": "Analysis #196", + "norm_label": "packagingevidence()" + }, + { + "label": "AutomationStepEvidence()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L149", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_evidencedrawer_automationstepevidence", + "community": 196, + "community_name": "Analysis #196", + "norm_label": "automationstepevidence()" + }, + { + "label": "IntentDetectionEvidence()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L205", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_evidencedrawer_intentdetectionevidence", + "community": 196, + "community_name": "Analysis #196", + "norm_label": "intentdetectionevidence()" + }, + { + "label": "ConsentEvidenceProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L241", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_evidencedrawer_consentevidenceprops", + "community": 196, + "community_name": "Analysis #196", + "norm_label": "consentevidenceprops" + }, + { + "label": "ConsentRequiredEvidence()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L246", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_evidencedrawer_consentrequiredevidence", + "community": 196, + "community_name": "Analysis #196", + "norm_label": "consentrequiredevidence()" + }, + { + "label": "PoAEEvidence()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L309", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_evidencedrawer_poaeevidence", + "community": 196, + "community_name": "Analysis #196", + "norm_label": "poaeevidence()" + }, + { + "label": "renderTypeSpecificEvidence()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L353", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_evidencedrawer_rendertypespecificevidence", + "community": 196, + "community_name": "Analysis #196", + "norm_label": "rendertypespecificevidence()" + }, + { + "label": "SeverityBadge()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L386", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_evidencedrawer_severitybadge", + "community": 196, + "community_name": "Analysis #196", + "norm_label": "severitybadge()" + }, + { + "label": "CategoryBadge()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L398", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_evidencedrawer_categorybadge", + "community": 196, + "community_name": "Analysis #196", + "norm_label": "categorybadge()" + }, + { + "label": "RiskItem()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L410", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_evidencedrawer_riskitem", + "community": 196, + "community_name": "Analysis #196", + "norm_label": "riskitem()" + }, + { + "label": "RisksTabContent()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L442", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_evidencedrawer_riskstabcontent", + "community": 196, + "community_name": "Analysis #196", + "norm_label": "riskstabcontent()" + }, + { + "label": "EvidenceTabContent()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L494", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_evidencedrawer_evidencetabcontent", + "community": 196, + "community_name": "Analysis #196", + "norm_label": "evidencetabcontent()" + }, + { + "label": "EvidenceDrawer()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L634", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_evidencedrawer_evidencedrawer", + "community": 196, + "community_name": "Analysis #196", + "norm_label": "evidencedrawer()" + }, + { + "label": "HeroKPI.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/HeroKPI.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_herokpi", + "community": 251, + "community_name": "Analysis #251", + "norm_label": "herokpi.tsx" + }, + { + "label": "KPIStatus", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/HeroKPI.tsx", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_herokpi_kpistatus", + "community": 251, + "community_name": "Analysis #251", + "norm_label": "kpistatus" + }, + { + "label": "KPIData", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/HeroKPI.tsx", + "source_location": "L16", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_herokpi_kpidata", + "community": 251, + "community_name": "Analysis #251", + "norm_label": "kpidata" + }, + { + "label": "StatusHeroData", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/HeroKPI.tsx", + "source_location": "L24", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_herokpi_statusherodata", + "community": 251, + "community_name": "Analysis #251", + "norm_label": "statusherodata" + }, + { + "label": "QuickAction", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/HeroKPI.tsx", + "source_location": "L31", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_herokpi_quickaction", + "community": 251, + "community_name": "Analysis #251", + "norm_label": "quickaction" + }, + { + "label": "KPICardProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/HeroKPI.tsx", + "source_location": "L42", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_herokpi_kpicardprops", + "community": 251, + "community_name": "Analysis #251", + "norm_label": "kpicardprops" + }, + { + "label": "KPICard()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/HeroKPI.tsx", + "source_location": "L46", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_herokpi_kpicard", + "community": 251, + "community_name": "Analysis #251", + "norm_label": "kpicard()" + }, + { + "label": "HeroKPIStripProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/HeroKPI.tsx", + "source_location": "L72", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_herokpi_herokpistripprops", + "community": 251, + "community_name": "Analysis #251", + "norm_label": "herokpistripprops" + }, + { + "label": "HeroKPIStrip()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/HeroKPI.tsx", + "source_location": "L77", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_herokpi_herokpistrip", + "community": 251, + "community_name": "Analysis #251", + "norm_label": "herokpistrip()" + }, + { + "label": "StatusHeroProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/HeroKPI.tsx", + "source_location": "L94", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_herokpi_statusheroprops", + "community": 251, + "community_name": "Analysis #251", + "norm_label": "statusheroprops" + }, + { + "label": "StatusHero()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/HeroKPI.tsx", + "source_location": "L99", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_herokpi_statushero", + "community": 251, + "community_name": "Analysis #251", + "norm_label": "statushero()" + }, + { + "label": "getDefaultStatusIcon()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/HeroKPI.tsx", + "source_location": "L145", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_herokpi_getdefaultstatusicon", + "community": 251, + "community_name": "Analysis #251", + "norm_label": "getdefaultstatusicon()" + }, + { + "label": "QuickActionBarProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/HeroKPI.tsx", + "source_location": "L159", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_herokpi_quickactionbarprops", + "community": 251, + "community_name": "Analysis #251", + "norm_label": "quickactionbarprops" + }, + { + "label": "QuickActionBar()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/HeroKPI.tsx", + "source_location": "L164", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_herokpi_quickactionbar", + "community": 251, + "community_name": "Analysis #251", + "norm_label": "quickactionbar()" + }, + { + "label": "ReadinessGaugeProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/HeroKPI.tsx", + "source_location": "L190", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_herokpi_readinessgaugeprops", + "community": 251, + "community_name": "Analysis #251", + "norm_label": "readinessgaugeprops" + }, + { + "label": "ReadinessGauge()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/HeroKPI.tsx", + "source_location": "L198", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_herokpi_readinessgauge", + "community": 251, + "community_name": "Analysis #251", + "norm_label": "readinessgauge()" + }, + { + "label": "ExecutionStatusHeroProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/HeroKPI.tsx", + "source_location": "L279", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_herokpi_executionstatusheroprops", + "community": 251, + "community_name": "Analysis #251", + "norm_label": "executionstatusheroprops" + }, + { + "label": "ExecutionStatusHero()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/HeroKPI.tsx", + "source_location": "L287", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_herokpi_executionstatushero", + "community": 251, + "community_name": "Analysis #251", + "norm_label": "executionstatushero()" + }, + { + "label": "VerificationStatusHeroProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/HeroKPI.tsx", + "source_location": "L348", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_herokpi_verificationstatusheroprops", + "community": 251, + "community_name": "Analysis #251", + "norm_label": "verificationstatusheroprops" + }, + { + "label": "VerificationStatusHero()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/HeroKPI.tsx", + "source_location": "L357", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_herokpi_verificationstatushero", + "community": 251, + "community_name": "Analysis #251", + "norm_label": "verificationstatushero()" + }, + { + "label": "StatusBadge.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/StatusBadge.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_statusbadge", + "community": 131, + "community_name": "Analysis #131", + "norm_label": "statusbadge.tsx" + }, + { + "label": "StatusBadgeProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/StatusBadge.tsx", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_statusbadge_statusbadgeprops", + "community": 131, + "community_name": "Analysis #131", + "norm_label": "statusbadgeprops" + }, + { + "label": "StatusBadge()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/StatusBadge.tsx", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_statusbadge_statusbadge", + "community": 131, + "community_name": "Analysis #131", + "norm_label": "statusbadge()" + }, + { + "label": "MockDataBadge()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/StatusBadge.tsx", + "source_location": "L52", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_statusbadge_mockdatabadge", + "community": 131, + "community_name": "Analysis #131", + "norm_label": "mockdatabadge()" + }, + { + "label": "SimulatedBadge()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/StatusBadge.tsx", + "source_location": "L63", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_statusbadge_simulatedbadge", + "community": 131, + "community_name": "Analysis #131", + "norm_label": "simulatedbadge()" + }, + { + "label": "PoAEDemoBadge()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/StatusBadge.tsx", + "source_location": "L74", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_statusbadge_poaedemobadge", + "community": 131, + "community_name": "Analysis #131", + "norm_label": "poaedemobadge()" + }, + { + "label": "RecordedBadge()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/StatusBadge.tsx", + "source_location": "L86", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_statusbadge_recordedbadge", + "community": 131, + "community_name": "Analysis #131", + "norm_label": "recordedbadge()" + }, + { + "label": "canvasState.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_canvasstate", + "community": 131, + "community_name": "Analysis #131", + "norm_label": "canvasstate.ts" + }, + { + "label": "AnalysisPhase", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_canvasstate_analysisphase", + "community": 289, + "community_name": "Analysis #289", + "norm_label": "analysisphase" + }, + { + "label": "DrawerTabId", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L27", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_canvasstate_drawertabid", + "community": 132, + "community_name": "Analysis #132", + "norm_label": "drawertabid" + }, + { + "label": "AnalysisOpenPayload", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L35", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_canvasstate_analysisopenpayload", + "community": 131, + "community_name": "Analysis #131", + "norm_label": "analysisopenpayload" + }, + { + "label": "VALID_PHASES", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L51", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_canvasstate_valid_phases", + "community": 131, + "community_name": "Analysis #131", + "norm_label": "valid_phases" + }, + { + "label": "VALID_DRAWER_TABS", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L56", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_canvasstate_valid_drawer_tabs", + "community": 131, + "community_name": "Analysis #131", + "norm_label": "valid_drawer_tabs" + }, + { + "label": "sanitizeAnalysisOpenPayload()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L64", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_canvasstate_sanitizeanalysisopenpayload", + "community": 131, + "community_name": "Analysis #131", + "norm_label": "sanitizeanalysisopenpayload()" + }, + { + "label": "DataSourceStatus", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L107", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_canvasstate_datasourcestatus", + "community": 131, + "community_name": "Analysis #131", + "norm_label": "datasourcestatus" + }, + { + "label": "VerificationFlags", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L117", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_canvasstate_verificationflags", + "community": 131, + "community_name": "Analysis #131", + "norm_label": "verificationflags" + }, + { + "label": "DEFAULT_VERIFICATION_FLAGS", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L132", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_canvasstate_default_verification_flags", + "community": 131, + "community_name": "Analysis #131", + "norm_label": "default_verification_flags" + }, + { + "label": "CanvasEvent", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L146", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_canvasstate_canvasevent", + "community": 131, + "community_name": "Analysis #131", + "norm_label": "canvasevent" + }, + { + "label": "CanvasEventType", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L157", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_canvasstate_canvaseventtype", + "community": 131, + "community_name": "Analysis #131", + "norm_label": "canvaseventtype" + }, + { + "label": "PreExecutionState", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L189", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_canvasstate_preexecutionstate", + "community": 131, + "community_name": "Analysis #131", + "norm_label": "preexecutionstate" + }, + { + "label": "LiveExecutionState", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L231", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_canvasstate_liveexecutionstate", + "community": 131, + "community_name": "Analysis #131", + "norm_label": "liveexecutionstate" + }, + { + "label": "PostExecutionState", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L258", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_canvasstate_postexecutionstate", + "community": 131, + "community_name": "Analysis #131", + "norm_label": "postexecutionstate" + }, + { + "label": "CanvasState", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L308", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_canvasstate_canvasstate", + "community": 131, + "community_name": "Analysis #131", + "norm_label": "canvasstate" + }, + { + "label": "createInitialPreExecutionState()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L328", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_canvasstate_createinitialpreexecutionstate", + "community": 131, + "community_name": "Analysis #131", + "norm_label": "createinitialpreexecutionstate()" + }, + { + "label": "createInitialLiveExecutionState()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L341", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_canvasstate_createinitialliveexecutionstate", + "community": 131, + "community_name": "Analysis #131", + "norm_label": "createinitialliveexecutionstate()" + }, + { + "label": "createInitialPostExecutionState()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L354", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_canvasstate_createinitialpostexecutionstate", + "community": 131, + "community_name": "Analysis #131", + "norm_label": "createinitialpostexecutionstate()" + }, + { + "label": "createInitialCanvasState()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L370", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_canvasstate_createinitialcanvasstate", + "community": 131, + "community_name": "Analysis #131", + "norm_label": "createinitialcanvasstate()" + }, + { + "label": "canClaimVerified()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L388", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_canvasstate_canclaimverified", + "community": 131, + "community_name": "Analysis #131", + "norm_label": "canclaimverified()" + }, + { + "label": "getStatusBadgeText()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L398", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_canvasstate_getstatusbadgetext", + "community": 131, + "community_name": "Analysis #131", + "norm_label": "getstatusbadgetext()" + }, + { + "label": "getStatusBadgeVariant()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L409", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_canvasstate_getstatusbadgevariant", + "community": 131, + "community_name": "Analysis #131", + "norm_label": "getstatusbadgevariant()" + }, + { + "label": "canClaimPoAE()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L420", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_canvasstate_canclaimpoae", + "community": 131, + "community_name": "Analysis #131", + "norm_label": "canclaimpoae()" + }, + { + "label": "generateEventId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L434", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_canvasstate_generateeventid", + "community": 131, + "community_name": "Analysis #131", + "norm_label": "generateeventid()" + }, + { + "label": "resetEventCounter()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L442", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_canvasstate_reseteventcounter", + "community": 131, + "community_name": "Analysis #131", + "norm_label": "reseteventcounter()" + }, + { + "label": "computePriorityAction.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/computePriorityAction.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_computepriorityaction", + "community": 80, + "community_name": "Analysis", + "norm_label": "computepriorityaction.ts" + }, + { + "label": "PriorityTier", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/computePriorityAction.ts", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_computepriorityaction_prioritytier", + "community": 80, + "community_name": "Analysis", + "norm_label": "prioritytier" + }, + { + "label": "ActionStatus", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/computePriorityAction.ts", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_computepriorityaction_actionstatus", + "community": 80, + "community_name": "Analysis", + "norm_label": "actionstatus" + }, + { + "label": "PrimaryCTA", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/computePriorityAction.ts", + "source_location": "L24", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_computepriorityaction_primarycta", + "community": 80, + "community_name": "Analysis", + "norm_label": "primarycta" + }, + { + "label": "PriorityAction", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/computePriorityAction.ts", + "source_location": "L34", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_computepriorityaction_priorityaction", + "community": 80, + "community_name": "Analysis", + "norm_label": "priorityaction" + }, + { + "label": "PreExecutionSnapshot", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/computePriorityAction.ts", + "source_location": "L57", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_computepriorityaction_preexecutionsnapshot", + "community": 80, + "community_name": "Analysis", + "norm_label": "preexecutionsnapshot" + }, + { + "label": "LiveExecutionSnapshot", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/computePriorityAction.ts", + "source_location": "L65", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_computepriorityaction_liveexecutionsnapshot", + "community": 80, + "community_name": "Analysis", + "norm_label": "liveexecutionsnapshot" + }, + { + "label": "PostExecutionSnapshot", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/computePriorityAction.ts", + "source_location": "L73", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_computepriorityaction_postexecutionsnapshot", + "community": 80, + "community_name": "Analysis", + "norm_label": "postexecutionsnapshot" + }, + { + "label": "DashboardState", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/computePriorityAction.ts", + "source_location": "L80", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_computepriorityaction_dashboardstate", + "community": 80, + "community_name": "Analysis", + "norm_label": "dashboardstate" + }, + { + "label": "getMockDashboardState()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/computePriorityAction.ts", + "source_location": "L94", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_computepriorityaction_getmockdashboardstate", + "community": 289, + "community_name": "Analysis #289", + "norm_label": "getmockdashboardstate()" + }, + { + "label": "computePriorityAction()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/computePriorityAction.ts", + "source_location": "L132", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_computepriorityaction_computepriorityaction", + "community": 80, + "community_name": "Analysis", + "norm_label": "computepriorityaction()" + }, + { + "label": "getStatusLabel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/computePriorityAction.ts", + "source_location": "L330", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_computepriorityaction_getstatuslabel", + "community": 80, + "community_name": "Analysis", + "norm_label": "getstatuslabel()" + }, + { + "label": "getStatusColor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/computePriorityAction.ts", + "source_location": "L339", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_computepriorityaction_getstatuscolor", + "community": 80, + "community_name": "Analysis", + "norm_label": "getstatuscolor()" + }, + { + "label": "ActiveAutomationWorkspace.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ActiveAutomationWorkspace.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_activeautomationworkspace", + "community": 122, + "community_name": "Analysis Dashboard", + "norm_label": "activeautomationworkspace.tsx" + }, + { + "label": "MonitorWorkspaceSubActions", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ActiveAutomationWorkspace.tsx", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_activeautomationworkspace_monitorworkspacesubactions", + "community": 122, + "community_name": "Analysis Dashboard", + "norm_label": "monitorworkspacesubactions" + }, + { + "label": "ActiveAutomationWorkspaceProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ActiveAutomationWorkspace.tsx", + "source_location": "L29", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_activeautomationworkspace_activeautomationworkspaceprops", + "community": 122, + "community_name": "Analysis Dashboard", + "norm_label": "activeautomationworkspaceprops" + }, + { + "label": "ActiveAutomationWorkspace", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ActiveAutomationWorkspace.tsx", + "source_location": "L41", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_activeautomationworkspace_activeautomationworkspace", + "community": 122, + "community_name": "Analysis Dashboard", + "norm_label": "activeautomationworkspace" + }, + { + "label": "ActivityFeedColumn.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ActivityFeedColumn.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_activityfeedcolumn", + "community": 122, + "community_name": "Analysis Dashboard", + "norm_label": "activityfeedcolumn.tsx" + }, + { + "label": "ActivityFeedColumnProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ActivityFeedColumn.tsx", + "source_location": "L21", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_activityfeedcolumn_activityfeedcolumnprops", + "community": 122, + "community_name": "Analysis Dashboard", + "norm_label": "activityfeedcolumnprops" + }, + { + "label": "ActivityFeedColumn()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ActivityFeedColumn.tsx", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_activityfeedcolumn_activityfeedcolumn", + "community": 122, + "community_name": "Analysis Dashboard", + "norm_label": "activityfeedcolumn()" + }, + { + "label": "DashboardAutomationHome.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "dashboardautomationhome.tsx" + }, + { + "label": "getDashboardLaunchSecret()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome_getdashboardlaunchsecret", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "getdashboardlaunchsecret()" + }, + { + "label": "appendWrChatAssistant()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L57", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome_appendwrchatassistant", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "appendwrchatassistant()" + }, + { + "label": "composerIconPickerLabel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L65", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome_composericonpickerlabel", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "composericonpickerlabel()" + }, + { + "label": "ComposerIconPickerDialog()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L80", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome_composericonpickerdialog", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "composericonpickerdialog()" + }, + { + "label": "DashboardAutomationHomeProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L169", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome_dashboardautomationhomeprops", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "dashboardautomationhomeprops" + }, + { + "label": "Accent", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L187", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome_accent", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "accent" + }, + { + "label": "AutomationCardDef", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L189", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome_automationcarddef", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "automationcarddef" + }, + { + "label": "resolveAutomationCardIcon()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L206", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome_resolveautomationcardicon", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "resolveautomationcardicon()" + }, + { + "label": "stripLeadingEmojiRuns()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L223", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome_stripleadingemojiruns", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "stripleadingemojiruns()" + }, + { + "label": "stripLeadingDisplayEmoji()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L237", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome_stripleadingdisplayemoji", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "stripleadingdisplayemoji()" + }, + { + "label": "milestoneLine()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L255", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome_milestoneline", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "milestoneline()" + }, + { + "label": "DashboardAutomationHome()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L264", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome_dashboardautomationhome", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "dashboardautomationhome()" + }, + { + "label": "DashboardHandshakeSummarySection.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardHandshakeSummarySection.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardhandshakesummarysection", + "community": 125, + "community_name": "Analysis Dashboard #125", + "norm_label": "dashboardhandshakesummarysection.tsx" + }, + { + "label": "STATE_ORDER", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardHandshakeSummarySection.tsx", + "source_location": "L12", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardhandshakesummarysection_state_order", + "community": 125, + "community_name": "Analysis Dashboard #125", + "norm_label": "state_order" + }, + { + "label": "STATE_LABELS", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardHandshakeSummarySection.tsx", + "source_location": "L20", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardhandshakesummarysection_state_labels", + "community": 125, + "community_name": "Analysis Dashboard #125", + "norm_label": "state_labels" + }, + { + "label": "DashboardHandshakeSummarySectionProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardHandshakeSummarySection.tsx", + "source_location": "L29", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardhandshakesummarysection_dashboardhandshakesummarysectionprops", + "community": 125, + "community_name": "Analysis Dashboard #125", + "norm_label": "dashboardhandshakesummarysectionprops" + }, + { + "label": "DashboardHandshakeSummarySection()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardHandshakeSummarySection.tsx", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardhandshakesummarysection_dashboardhandshakesummarysection", + "community": 125, + "community_name": "Analysis Dashboard #125", + "norm_label": "dashboardhandshakesummarysection()" + }, + { + "label": "DashboardTopCardsRow.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardTopCardsRow.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardtopcardsrow", + "community": 403, + "community_name": "Analysis Dashboard #403", + "norm_label": "dashboardtopcardsrow.tsx" + }, + { + "label": "Props", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardTopCardsRow.tsx", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardtopcardsrow_props", + "community": 403, + "community_name": "Analysis Dashboard #403", + "norm_label": "props" + }, + { + "label": "formatShortDate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardTopCardsRow.tsx", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardtopcardsrow_formatshortdate", + "community": 403, + "community_name": "Analysis Dashboard #403", + "norm_label": "formatshortdate()" + }, + { + "label": "humanizeCategory()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardTopCardsRow.tsx", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardtopcardsrow_humanizecategory", + "community": 403, + "community_name": "Analysis Dashboard #403", + "norm_label": "humanizecategory()" + }, + { + "label": "formatSortComposition()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardTopCardsRow.tsx", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardtopcardsrow_formatsortcomposition", + "community": 403, + "community_name": "Analysis Dashboard #403", + "norm_label": "formatsortcomposition()" + }, + { + "label": "showCount()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardTopCardsRow.tsx", + "source_location": "L57", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardtopcardsrow_showcount", + "community": 403, + "community_name": "Analysis Dashboard #403", + "norm_label": "showcount()" + }, + { + "label": "DashboardTopCardsRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardTopCardsRow.tsx", + "source_location": "L62", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardtopcardsrow_dashboardtopcardsrow", + "community": 403, + "community_name": "Analysis Dashboard #403", + "norm_label": "dashboardtopcardsrow()" + }, + { + "label": "IntelligenceDashboard.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/IntelligenceDashboard.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard", + "community": 266, + "community_name": "Analysis Dashboard #266", + "norm_label": "intelligencedashboard.tsx" + }, + { + "label": "IntelligenceDashboardProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/IntelligenceDashboard.tsx", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard_intelligencedashboardprops", + "community": 266, + "community_name": "Analysis Dashboard #266", + "norm_label": "intelligencedashboardprops" + }, + { + "label": "formatDDMM()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/IntelligenceDashboard.tsx", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard_formatddmm", + "community": 266, + "community_name": "Analysis Dashboard #266", + "norm_label": "formatddmm()" + }, + { + "label": "formatDateTime()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/IntelligenceDashboard.tsx", + "source_location": "L50", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard_formatdatetime", + "community": 266, + "community_name": "Analysis Dashboard #266", + "norm_label": "formatdatetime()" + }, + { + "label": "getCatColor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/IntelligenceDashboard.tsx", + "source_location": "L65", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard_getcatcolor", + "community": 266, + "community_name": "Analysis Dashboard #266", + "norm_label": "getcatcolor()" + }, + { + "label": "SecurityCard()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/IntelligenceDashboard.tsx", + "source_location": "L79", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard_securitycard", + "community": 266, + "community_name": "Analysis Dashboard #266", + "norm_label": "securitycard()" + }, + { + "label": "AutosortCard()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/IntelligenceDashboard.tsx", + "source_location": "L153", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard_autosortcard", + "community": 266, + "community_name": "Analysis Dashboard #266", + "norm_label": "autosortcard()" + }, + { + "label": "TransportCard()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/IntelligenceDashboard.tsx", + "source_location": "L242", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard_transportcard", + "community": 266, + "community_name": "Analysis Dashboard #266", + "norm_label": "transportcard()" + }, + { + "label": "StatusCard()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/IntelligenceDashboard.tsx", + "source_location": "L335", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard_statuscard", + "community": 266, + "community_name": "Analysis Dashboard #266", + "norm_label": "statuscard()" + }, + { + "label": "SkeletonCard()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/IntelligenceDashboard.tsx", + "source_location": "L505", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard_skeletoncard", + "community": 266, + "community_name": "Analysis Dashboard #266", + "norm_label": "skeletoncard()" + }, + { + "label": "LoadingSkeletons()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/IntelligenceDashboard.tsx", + "source_location": "L519", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard_loadingskeletons", + "community": 266, + "community_name": "Analysis Dashboard #266", + "norm_label": "loadingskeletons()" + }, + { + "label": "IntelligenceDashboard()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/IntelligenceDashboard.tsx", + "source_location": "L616", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard_intelligencedashboard", + "community": 266, + "community_name": "Analysis Dashboard #266", + "norm_label": "intelligencedashboard()" + }, + { + "label": "TODO: wire to a dedicated suspicious/malicious category once model ships those\u2026", + "file_type": "rationale", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/IntelligenceDashboard.tsx", + "source_location": "L82", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard_rationale_82", + "community": 266, + "community_name": "Analysis Dashboard #266", + "norm_label": "todo: wire to a dedicated suspicious/malicious category once model ships those..." + }, + { + "label": "TODO: wire to real link-opened-off-band tracking when that feature ships", + "file_type": "rationale", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/IntelligenceDashboard.tsx", + "source_location": "L87", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard_rationale_87", + "community": 266, + "community_name": "Analysis Dashboard #266", + "norm_label": "todo: wire to real link-opened-off-band tracking when that feature ships" + }, + { + "label": "TODO: wire to real PDF-parsed-to-text count when that feature ships", + "file_type": "rationale", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/IntelligenceDashboard.tsx", + "source_location": "L89", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard_rationale_89", + "community": 266, + "community_name": "Analysis Dashboard #266", + "norm_label": "todo: wire to real pdf-parsed-to-text count when that feature ships" + }, + { + "label": "PoaeArchiveSection.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArchiveSection.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_poaearchivesection", + "community": 122, + "community_name": "Analysis Dashboard", + "norm_label": "poaearchivesection.tsx" + }, + { + "label": "EMPTY_POAE", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArchiveSection.tsx", + "source_location": "L9", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_poaearchivesection_empty_poae", + "community": 122, + "community_name": "Analysis Dashboard", + "norm_label": "empty_poae" + }, + { + "label": "formatArtifactChannel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArchiveSection.tsx", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_poaearchivesection_formatartifactchannel", + "community": 122, + "community_name": "Analysis Dashboard", + "norm_label": "formatartifactchannel()" + }, + { + "label": "formatTimeCompact()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArchiveSection.tsx", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_poaearchivesection_formattimecompact", + "community": 122, + "community_name": "Analysis Dashboard", + "norm_label": "formattimecompact()" + }, + { + "label": "participantLines()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArchiveSection.tsx", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_poaearchivesection_participantlines", + "community": 122, + "community_name": "Analysis Dashboard", + "norm_label": "participantlines()" + }, + { + "label": "idHint()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArchiveSection.tsx", + "source_location": "L41", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_poaearchivesection_idhint", + "community": 122, + "community_name": "Analysis Dashboard", + "norm_label": "idhint()" + }, + { + "label": "copyArtifactRefs()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArchiveSection.tsx", + "source_location": "L46", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_poaearchivesection_copyartifactrefs", + "community": 122, + "community_name": "Analysis Dashboard", + "norm_label": "copyartifactrefs()" + }, + { + "label": "PoaeArchiveSectionProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArchiveSection.tsx", + "source_location": "L57", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_poaearchivesection_poaearchivesectionprops", + "community": 122, + "community_name": "Analysis Dashboard", + "norm_label": "poaearchivesectionprops" + }, + { + "label": "PoaeArchiveSection()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArchiveSection.tsx", + "source_location": "L64", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_poaearchivesection_poaearchivesection", + "community": 122, + "community_name": "Analysis Dashboard", + "norm_label": "poaearchivesection()" + }, + { + "label": "PoaeArtifactsPanel.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArtifactsPanel.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel", + "community": 122, + "community_name": "Analysis Dashboard", + "norm_label": "poaeartifactspanel.tsx" + }, + { + "label": "PoaeArtifactsPanelProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArtifactsPanel.tsx", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel_poaeartifactspanelprops", + "community": 122, + "community_name": "Analysis Dashboard", + "norm_label": "poaeartifactspanelprops" + }, + { + "label": "EMPTY_POAE", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArtifactsPanel.tsx", + "source_location": "L32", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel_empty_poae", + "community": 122, + "community_name": "Analysis Dashboard", + "norm_label": "empty_poae" + }, + { + "label": "formatArtifactChannel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArtifactsPanel.tsx", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel_formatartifactchannel", + "community": 122, + "community_name": "Analysis Dashboard", + "norm_label": "formatartifactchannel()" + }, + { + "label": "channelMod()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArtifactsPanel.tsx", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel_channelmod", + "community": 122, + "community_name": "Analysis Dashboard", + "norm_label": "channelmod()" + }, + { + "label": "formatTimeCompact()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArtifactsPanel.tsx", + "source_location": "L62", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel_formattimecompact", + "community": 122, + "community_name": "Analysis Dashboard", + "norm_label": "formattimecompact()" + }, + { + "label": "participantLines()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArtifactsPanel.tsx", + "source_location": "L69", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel_participantlines", + "community": 122, + "community_name": "Analysis Dashboard", + "norm_label": "participantlines()" + }, + { + "label": "idHint()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArtifactsPanel.tsx", + "source_location": "L77", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel_idhint", + "community": 122, + "community_name": "Analysis Dashboard", + "norm_label": "idhint()" + }, + { + "label": "copyArtifactRefs()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArtifactsPanel.tsx", + "source_location": "L81", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel_copyartifactrefs", + "community": 122, + "community_name": "Analysis Dashboard", + "norm_label": "copyartifactrefs()" + }, + { + "label": "SkeletonRows()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArtifactsPanel.tsx", + "source_location": "L94", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel_skeletonrows", + "community": 122, + "community_name": "Analysis Dashboard", + "norm_label": "skeletonrows()" + }, + { + "label": "ArtifactRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArtifactsPanel.tsx", + "source_location": "L111", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel_artifactrow", + "community": 122, + "community_name": "Analysis Dashboard", + "norm_label": "artifactrow()" + }, + { + "label": "PoaeArtifactsPanel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArtifactsPanel.tsx", + "source_location": "L191", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel_poaeartifactspanel", + "community": 122, + "community_name": "Analysis Dashboard", + "norm_label": "poaeartifactspanel()" + }, + { + "label": "TODO: Replace with dedicated PoAE automation log IPC when available.", + "file_type": "rationale", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArtifactsPanel.tsx", + "source_location": "L199", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel_rationale_199", + "community": 122, + "community_name": "Analysis Dashboard", + "norm_label": "todo: replace with dedicated poae automation log ipc when available." + }, + { + "label": "TODO: return true when r.recordType === 'automation_log' or equivalent", + "file_type": "rationale", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArtifactsPanel.tsx", + "source_location": "L208", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel_rationale_208", + "community": 122, + "community_name": "Analysis Dashboard", + "norm_label": "todo: return true when r.recordtype === 'automation_log' or equivalent" + }, + { + "label": "ProjectAssistantConfigModal.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectAssistantConfigModal.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_projectassistantconfigmodal", + "community": 122, + "community_name": "Analysis Dashboard", + "norm_label": "projectassistantconfigmodal.tsx" + }, + { + "label": "ProjectAssistantConfigModalProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectAssistantConfigModal.tsx", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_projectassistantconfigmodal_projectassistantconfigmodalprops", + "community": 122, + "community_name": "Analysis Dashboard", + "norm_label": "projectassistantconfigmodalprops" + }, + { + "label": "ProjectAssistantConfigModal()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectAssistantConfigModal.tsx", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_projectassistantconfigmodal_projectassistantconfigmodal", + "community": 122, + "community_name": "Analysis Dashboard", + "norm_label": "projectassistantconfigmodal()" + }, + { + "label": "ProjectOptimizationPanel.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "community": 99, + "community_name": "Analysis Dashboard Stores", + "norm_label": "projectoptimizationpanel.tsx" + }, + { + "label": "flashFieldEl()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L103", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel_flashfieldel", + "community": 99, + "community_name": "Analysis Dashboard Stores", + "norm_label": "flashfieldel()" + }, + { + "label": "flashMilestoneEl()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L115", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel_flashmilestoneel", + "community": 99, + "community_name": "Analysis Dashboard Stores", + "norm_label": "flashmilestoneel()" + }, + { + "label": "DashboardEmailAccountRow", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L128", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel_dashboardemailaccountrow", + "community": 122, + "community_name": "Analysis Dashboard", + "norm_label": "dashboardemailaccountrow" + }, + { + "label": "ProjectOptimizationPanelProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L135", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel_projectoptimizationpanelprops", + "community": 122, + "community_name": "Analysis Dashboard", + "norm_label": "projectoptimizationpanelprops" + }, + { + "label": "ProjectOptimizationPanelOpenCreateOpts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L157", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel_projectoptimizationpanelopencreateopts", + "community": 122, + "community_name": "Analysis Dashboard", + "norm_label": "projectoptimizationpanelopencreateopts" + }, + { + "label": "ProjectOptimizationPanelHandle", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L162", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel_projectoptimizationpanelhandle", + "community": 122, + "community_name": "Analysis Dashboard", + "norm_label": "projectoptimizationpanelhandle" + }, + { + "label": "focusHeaderAiChat()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L175", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel_focusheaderaichat", + "community": 99, + "community_name": "Analysis Dashboard Stores", + "norm_label": "focusheaderaichat()" + }, + { + "label": "formatStatusDate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L179", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel_formatstatusdate", + "community": 99, + "community_name": "Analysis Dashboard Stores", + "norm_label": "formatstatusdate()" + }, + { + "label": "formatLinkedSessionRepeatCadence()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L187", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel_formatlinkedsessionrepeatcadence", + "community": 99, + "community_name": "Analysis Dashboard Stores", + "norm_label": "formatlinkedsessionrepeatcadence()" + }, + { + "label": "getMimeLabel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L193", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel_getmimelabel", + "community": 99, + "community_name": "Analysis Dashboard Stores", + "norm_label": "getmimelabel()" + }, + { + "label": "ProjectOptimizationPanel", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L201", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel_projectoptimizationpanel", + "community": 122, + "community_name": "Analysis Dashboard", + "norm_label": "projectoptimizationpanel" + }, + { + "label": "ProjectSetupModal.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupModal.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupmodal", + "community": 99, + "community_name": "Analysis Dashboard Stores", + "norm_label": "projectsetupmodal.tsx" + }, + { + "label": "ProjectSetupModalProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupModal.tsx", + "source_location": "L33", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupmodal_projectsetupmodalprops", + "community": 99, + "community_name": "Analysis Dashboard Stores", + "norm_label": "projectsetupmodalprops" + }, + { + "label": "ModalMilestone", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupModal.tsx", + "source_location": "L41", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupmodal_modalmilestone", + "community": 99, + "community_name": "Analysis Dashboard Stores", + "norm_label": "modalmilestone" + }, + { + "label": "focusHeaderAiChat()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupModal.tsx", + "source_location": "L52", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupmodal_focusheaderaichat", + "community": 99, + "community_name": "Analysis Dashboard Stores", + "norm_label": "focusheaderaichat()" + }, + { + "label": "ProjectSetupModal()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupModal.tsx", + "source_location": "L58", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupmodal_projectsetupmodal", + "community": 99, + "community_name": "Analysis Dashboard Stores", + "norm_label": "projectsetupmodal()" + }, + { + "label": "TODO: extract PDF text via IPC when mimeType is application/pdf", + "file_type": "rationale", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupModal.tsx", + "source_location": "L204", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupmodal_rationale_204", + "community": 99, + "community_name": "Analysis Dashboard Stores", + "norm_label": "todo: extract pdf text via ipc when mimetype is application/pdf" + }, + { + "label": "ProjectSetupSection.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupSection.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "projectsetupsection.tsx" + }, + { + "label": "FALLBACK_SETUP", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupSection.tsx", + "source_location": "L17", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection_fallback_setup", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "fallback_setup" + }, + { + "label": "ProjectSetupModalTab", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupSection.tsx", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection_projectsetupmodaltab", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "projectsetupmodaltab" + }, + { + "label": "DashboardEmailAccountRow", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupSection.tsx", + "source_location": "L25", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection_dashboardemailaccountrow", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "dashboardemailaccountrow" + }, + { + "label": "ProjectSetupSectionProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupSection.tsx", + "source_location": "L27", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection_projectsetupsectionprops", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "projectsetupsectionprops" + }, + { + "label": "focusHeaderAiChat()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupSection.tsx", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection_focusheaderaichat", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "focusheaderaichat()" + }, + { + "label": "formatStatusDate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupSection.tsx", + "source_location": "L48", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection_formatstatusdate", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "formatstatusdate()" + }, + { + "label": "sessionIdShort()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupSection.tsx", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection_sessionidshort", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "sessionidshort()" + }, + { + "label": "ProjectSetupModalDraftBindings", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupSection.tsx", + "source_location": "L61", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection_projectsetupmodaldraftbindings", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "projectsetupmodaldraftbindings" + }, + { + "label": "SetupModalProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupSection.tsx", + "source_location": "L74", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection_setupmodalprops", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "setupmodalprops" + }, + { + "label": "ProjectSetupModal()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupSection.tsx", + "source_location": "L82", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection_projectsetupmodal", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "projectsetupmodal()" + }, + { + "label": "ProjectSetupSection()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupSection.tsx", + "source_location": "L288", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection_projectsetupsection", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "projectsetupsection()" + }, + { + "label": "StatusToggle.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/StatusToggle.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_statustoggle", + "community": 266, + "community_name": "Analysis Dashboard #266", + "norm_label": "statustoggle.tsx" + }, + { + "label": "StatusToggleProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/StatusToggle.tsx", + "source_location": "L3", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_statustoggle_statustoggleprops", + "community": 266, + "community_name": "Analysis Dashboard #266", + "norm_label": "statustoggleprops" + }, + { + "label": "StatusToggle()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/StatusToggle.tsx", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_statustoggle_statustoggle", + "community": 266, + "community_name": "Analysis Dashboard #266", + "norm_label": "statustoggle()" + }, + { + "label": "UrgentAutosortSessionSection.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentAutosortSessionSection.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection", + "community": 230, + "community_name": "Analysis Dashboard #230", + "norm_label": "urgentautosortsessionsection.tsx" + }, + { + "label": "OpenInboxMessagePayload", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentAutosortSessionSection.tsx", + "source_location": "L16", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection_openinboxmessagepayload", + "community": 122, + "community_name": "Analysis Dashboard", + "norm_label": "openinboxmessagepayload" + }, + { + "label": "UrgentAutosortSessionSectionProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentAutosortSessionSection.tsx", + "source_location": "L21", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection_urgentautosortsessionsectionprops", + "community": 125, + "community_name": "Analysis Dashboard #125", + "norm_label": "urgentautosortsessionsectionprops" + }, + { + "label": "toSessionReviewRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentAutosortSessionSection.tsx", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection_tosessionreviewrow", + "community": 230, + "community_name": "Analysis Dashboard #230", + "norm_label": "tosessionreviewrow()" + }, + { + "label": "formatTimeCompact()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentAutosortSessionSection.tsx", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection_formattimecompact", + "community": 230, + "community_name": "Analysis Dashboard #230", + "norm_label": "formattimecompact()" + }, + { + "label": "participantDisplay()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentAutosortSessionSection.tsx", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection_participantdisplay", + "community": 230, + "community_name": "Analysis Dashboard #230", + "norm_label": "participantdisplay()" + }, + { + "label": "compactUrgentReason()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentAutosortSessionSection.tsx", + "source_location": "L65", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection_compacturgentreason", + "community": 230, + "community_name": "Analysis Dashboard #230", + "norm_label": "compacturgentreason()" + }, + { + "label": "triageMetaLine()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentAutosortSessionSection.tsx", + "source_location": "L83", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection_triagemetaline", + "community": 230, + "community_name": "Analysis Dashboard #230", + "norm_label": "triagemetaline()" + }, + { + "label": "UrgentAutosortSessionSection()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentAutosortSessionSection.tsx", + "source_location": "L94", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection_urgentautosortsessionsection", + "community": 230, + "community_name": "Analysis Dashboard #230", + "norm_label": "urgentautosortsessionsection()" + }, + { + "label": "UrgentMessagesPanel.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentMessagesPanel.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel", + "community": 230, + "community_name": "Analysis Dashboard #230", + "norm_label": "urgentmessagespanel.tsx" + }, + { + "label": "UrgentMessagesPanelProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentMessagesPanel.tsx", + "source_location": "L29", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel_urgentmessagespanelprops", + "community": 122, + "community_name": "Analysis Dashboard", + "norm_label": "urgentmessagespanelprops" + }, + { + "label": "toSessionReviewRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentMessagesPanel.tsx", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel_tosessionreviewrow", + "community": 230, + "community_name": "Analysis Dashboard #230", + "norm_label": "tosessionreviewrow()" + }, + { + "label": "formatTimeCompact()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentMessagesPanel.tsx", + "source_location": "L60", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel_formattimecompact", + "community": 230, + "community_name": "Analysis Dashboard #230", + "norm_label": "formattimecompact()" + }, + { + "label": "participantDisplay()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentMessagesPanel.tsx", + "source_location": "L67", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel_participantdisplay", + "community": 230, + "community_name": "Analysis Dashboard #230", + "norm_label": "participantdisplay()" + }, + { + "label": "compactUrgentReason()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentMessagesPanel.tsx", + "source_location": "L75", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel_compacturgentreason", + "community": 230, + "community_name": "Analysis Dashboard #230", + "norm_label": "compacturgentreason()" + }, + { + "label": "triageMetaLine()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentMessagesPanel.tsx", + "source_location": "L88", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel_triagemetaline", + "community": 230, + "community_name": "Analysis Dashboard #230", + "norm_label": "triagemetaline()" + }, + { + "label": "sessionIdShort()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentMessagesPanel.tsx", + "source_location": "L98", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel_sessionidshort", + "community": 230, + "community_name": "Analysis Dashboard #230", + "norm_label": "sessionidshort()" + }, + { + "label": "scoreLevel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentMessagesPanel.tsx", + "source_location": "L106", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel_scorelevel", + "community": 230, + "community_name": "Analysis Dashboard #230", + "norm_label": "scorelevel()" + }, + { + "label": "SkeletonRows()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentMessagesPanel.tsx", + "source_location": "L115", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel_skeletonrows", + "community": 230, + "community_name": "Analysis Dashboard #230", + "norm_label": "skeletonrows()" + }, + { + "label": "MessageRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentMessagesPanel.tsx", + "source_location": "L134", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel_messagerow", + "community": 230, + "community_name": "Analysis Dashboard #230", + "norm_label": "messagerow()" + }, + { + "label": "UrgentMessagesPanel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentMessagesPanel.tsx", + "source_location": "L207", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel_urgentmessagespanel", + "community": 230, + "community_name": "Analysis Dashboard #230", + "norm_label": "urgentmessagespanel()" + }, + { + "label": "dashboard/index.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_index", + "community": 122, + "community_name": "Analysis Dashboard", + "norm_label": "dashboard/index.ts" + }, + { + "label": "projectIconChoices.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/projectIconChoices.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_projecticonchoices", + "community": 99, + "community_name": "Analysis Dashboard Stores", + "norm_label": "projecticonchoices.ts" + }, + { + "label": "PROJECT_ICON_CHOICES", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/projectIconChoices.ts", + "source_location": "L6", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_dashboard_projecticonchoices_project_icon_choices", + "community": 99, + "community_name": "Analysis Dashboard Stores", + "norm_label": "project_icon_choices" + }, + { + "label": "focusLayoutEngine.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "community": 80, + "community_name": "Analysis", + "norm_label": "focuslayoutengine.ts" + }, + { + "label": "LiveEventType", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_liveeventtype", + "community": 185, + "community_name": "Analysis #185", + "norm_label": "liveeventtype" + }, + { + "label": "PanelId", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L35", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_panelid", + "community": 185, + "community_name": "Analysis #185", + "norm_label": "panelid" + }, + { + "label": "EventDomain", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L47", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_eventdomain", + "community": 80, + "community_name": "Analysis", + "norm_label": "eventdomain" + }, + { + "label": "LiveEvent", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L59", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_liveevent", + "community": 196, + "community_name": "Analysis #196", + "norm_label": "liveevent" + }, + { + "label": "EVENT_TYPE_TO_DOMAIN", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L75", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_event_type_to_domain", + "community": 185, + "community_name": "Analysis #185", + "norm_label": "event_type_to_domain" + }, + { + "label": "RiskSeverity", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L92", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_riskseverity", + "community": 196, + "community_name": "Analysis #196", + "norm_label": "riskseverity" + }, + { + "label": "RiskCategory", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L97", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_riskcategory", + "community": 80, + "community_name": "Analysis", + "norm_label": "riskcategory" + }, + { + "label": "RiskEvent", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L102", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_riskevent", + "community": 196, + "community_name": "Analysis #196", + "norm_label": "riskevent" + }, + { + "label": "SEVERITY_PRIORITY", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L119", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_severity_priority", + "community": 196, + "community_name": "Analysis #196", + "norm_label": "severity_priority" + }, + { + "label": "compareRisks()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L130", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_comparerisks", + "community": 80, + "community_name": "Analysis", + "norm_label": "comparerisks()" + }, + { + "label": "ReadmeClaims", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L144", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_readmeclaims", + "community": 80, + "community_name": "Analysis", + "norm_label": "readmeclaims" + }, + { + "label": "TemplateClaims", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L153", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_templateclaims", + "community": 80, + "community_name": "Analysis", + "norm_label": "templateclaims" + }, + { + "label": "ClaimSet", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L162", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_claimset", + "community": 80, + "community_name": "Analysis", + "norm_label": "claimset" + }, + { + "label": "DEFAULT_CLAIMS", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L170", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_default_claims", + "community": 185, + "community_name": "Analysis #185", + "norm_label": "default_claims" + }, + { + "label": "ObservationSet", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L186", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_observationset", + "community": 80, + "community_name": "Analysis", + "norm_label": "observationset" + }, + { + "label": "createEmptyObservations()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L199", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_createemptyobservations", + "community": 80, + "community_name": "Analysis", + "norm_label": "createemptyobservations()" + }, + { + "label": "computeObservations()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L215", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_computeobservations", + "community": 80, + "community_name": "Analysis", + "norm_label": "computeobservations()" + }, + { + "label": "AlignmentStatus", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L280", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_alignmentstatus", + "community": 185, + "community_name": "Analysis #185", + "norm_label": "alignmentstatus" + }, + { + "label": "AlignmentRow", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L285", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_alignmentrow", + "community": 185, + "community_name": "Analysis #185", + "norm_label": "alignmentrow" + }, + { + "label": "computeAlignment()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L297", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_computealignment", + "community": 80, + "community_name": "Analysis", + "norm_label": "computealignment()" + }, + { + "label": "getRisksForAlignmentRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L380", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_getrisksforalignmentrow", + "community": 185, + "community_name": "Analysis #185", + "norm_label": "getrisksforalignmentrow()" + }, + { + "label": "MockRiskRule", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L389", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_mockriskrule", + "community": 80, + "community_name": "Analysis", + "norm_label": "mockriskrule" + }, + { + "label": "MOCK_RISK_RULES", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L401", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_mock_risk_rules", + "community": 80, + "community_name": "Analysis", + "norm_label": "mock_risk_rules" + }, + { + "label": "generateRiskEvents()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L477", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_generateriskevents", + "community": 80, + "community_name": "Analysis", + "norm_label": "generateriskevents()" + }, + { + "label": "filterRisksByTrace()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L511", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_filterrisksbytrace", + "community": 80, + "community_name": "Analysis", + "norm_label": "filterrisksbytrace()" + }, + { + "label": "getRisksForEvent()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L519", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_getrisksforevent", + "community": 80, + "community_name": "Analysis", + "norm_label": "getrisksforevent()" + }, + { + "label": "getRisksForTrace()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L526", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_getrisksfortrace", + "community": 80, + "community_name": "Analysis", + "norm_label": "getrisksfortrace()" + }, + { + "label": "getHighestSeverity()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L533", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_gethighestseverity", + "community": 80, + "community_name": "Analysis", + "norm_label": "gethighestseverity()" + }, + { + "label": "getTopRisks()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L543", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_gettoprisks", + "community": 80, + "community_name": "Analysis", + "norm_label": "gettoprisks()" + }, + { + "label": "TraceId", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L550", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_traceid", + "community": 196, + "community_name": "Analysis #196", + "norm_label": "traceid" + }, + { + "label": "EventFilter", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L555", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_eventfilter", + "community": 185, + "community_name": "Analysis #185", + "norm_label": "eventfilter" + }, + { + "label": "createDefaultFilter()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L563", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_createdefaultfilter", + "community": 80, + "community_name": "Analysis", + "norm_label": "createdefaultfilter()" + }, + { + "label": "filterEvents()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L581", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_filterevents", + "community": 80, + "community_name": "Analysis", + "norm_label": "filterevents()" + }, + { + "label": "FocusStickinessState", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L598", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_focusstickinessstate", + "community": 185, + "community_name": "Analysis #185", + "norm_label": "focusstickinessstate" + }, + { + "label": "FocusState", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L608", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_focusstate", + "community": 185, + "community_name": "Analysis #185", + "norm_label": "focusstate" + }, + { + "label": "LayoutSpec", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L620", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_layoutspec", + "community": 185, + "community_name": "Analysis #185", + "norm_label": "layoutspec" + }, + { + "label": "ViewportSize", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L631", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_viewportsize", + "community": 80, + "community_name": "Analysis", + "norm_label": "viewportsize" + }, + { + "label": "EVENT_TO_PANEL", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L643", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_event_to_panel", + "community": 80, + "community_name": "Analysis", + "norm_label": "event_to_panel" + }, + { + "label": "EVENT_PRIORITY", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L657", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_event_priority", + "community": 80, + "community_name": "Analysis", + "norm_label": "event_priority" + }, + { + "label": "SECONDARY_PANELS", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L670", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_secondary_panels", + "community": 80, + "community_name": "Analysis", + "norm_label": "secondary_panels" + }, + { + "label": "BREAKPOINTS", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L675", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_breakpoints", + "community": 80, + "community_name": "Analysis", + "norm_label": "breakpoints" + }, + { + "label": "TIMELINE", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L683", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_timeline", + "community": 80, + "community_name": "Analysis", + "norm_label": "timeline" + }, + { + "label": "compareEvents()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L703", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_compareevents", + "community": 80, + "community_name": "Analysis", + "norm_label": "compareevents()" + }, + { + "label": "getMostRecentEvent()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L715", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_getmostrecentevent", + "community": 80, + "community_name": "Analysis", + "norm_label": "getmostrecentevent()" + }, + { + "label": "getUnresolvedConsents()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L723", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_getunresolvedconsents", + "community": 80, + "community_name": "Analysis", + "norm_label": "getunresolvedconsents()" + }, + { + "label": "computeNaturalFocus()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L734", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_computenaturalfocus", + "community": 80, + "community_name": "Analysis", + "norm_label": "computenaturalfocus()" + }, + { + "label": "applyStickiness()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L783", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_applystickiness", + "community": 80, + "community_name": "Analysis", + "norm_label": "applystickiness()" + }, + { + "label": "computeFocusState()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L863", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_computefocusstate", + "community": 80, + "community_name": "Analysis", + "norm_label": "computefocusstate()" + }, + { + "label": "computeFocusStateWithStickiness()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L880", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_computefocusstatewithstickiness", + "community": 80, + "community_name": "Analysis", + "norm_label": "computefocusstatewithstickiness()" + }, + { + "label": "createInitialStickinessState()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L891", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_createinitialstickinessstate", + "community": 80, + "community_name": "Analysis", + "norm_label": "createinitialstickinessstate()" + }, + { + "label": "computeLayoutSpec()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L907", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_computelayoutspec", + "community": 80, + "community_name": "Analysis", + "norm_label": "computelayoutspec()" + }, + { + "label": "getSecondaryPanelOrder()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L955", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_getsecondarypanelorder", + "community": 80, + "community_name": "Analysis", + "norm_label": "getsecondarypanelorder()" + }, + { + "label": "generateLayoutCSSVars()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L975", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_generatelayoutcssvars", + "community": 80, + "community_name": "Analysis", + "norm_label": "generatelayoutcssvars()" + }, + { + "label": "getNextSeq()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L995", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_getnextseq", + "community": 80, + "community_name": "Analysis", + "norm_label": "getnextseq()" + }, + { + "label": "resetSeqCounter()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L1003", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_resetseqcounter", + "community": 80, + "community_name": "Analysis", + "norm_label": "resetseqcounter()" + }, + { + "label": "generateEventId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L1012", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_generateeventid", + "community": 80, + "community_name": "Analysis", + "norm_label": "generateeventid()" + }, + { + "label": "createLiveEvent()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L1020", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_createliveevent", + "community": 80, + "community_name": "Analysis", + "norm_label": "createliveevent()" + }, + { + "label": "resetEventIdCounter()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L1045", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_reseteventidcounter", + "community": 80, + "community_name": "Analysis", + "norm_label": "reseteventidcounter()" + }, + { + "label": "DemoEventSpec", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L1056", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_demoeventspec", + "community": 80, + "community_name": "Analysis", + "norm_label": "demoeventspec" + }, + { + "label": "DEMO_EVENT_SEQUENCE", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L1074", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_demo_event_sequence", + "community": 80, + "community_name": "Analysis", + "norm_label": "demo_event_sequence" + }, + { + "label": "createDemoEvents()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L1162", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_createdemoevents", + "community": 80, + "community_name": "Analysis", + "norm_label": "createdemoevents()" + }, + { + "label": "AVAILABLE_TRACES", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L1185", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_available_traces", + "community": 80, + "community_name": "Analysis", + "norm_label": "available_traces" + }, + { + "label": "ALL_DOMAINS", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L1190", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_all_domains", + "community": 185, + "community_name": "Analysis #185", + "norm_label": "all_domains" + }, + { + "label": "analysis/index.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_index", + "community": 80, + "community_name": "Analysis", + "norm_label": "analysis/index.ts" + }, + { + "label": "useCanvasState.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/useCanvasState.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_usecanvasstate", + "community": 131, + "community_name": "Analysis #131", + "norm_label": "usecanvasstate.ts" + }, + { + "label": "CanvasStateActions", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/useCanvasState.ts", + "source_location": "L31", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_usecanvasstate_canvasstateactions", + "community": 131, + "community_name": "Analysis #131", + "norm_label": "canvasstateactions" + }, + { + "label": "CanvasStateHelpers", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/useCanvasState.ts", + "source_location": "L57", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_usecanvasstate_canvasstatehelpers", + "community": 131, + "community_name": "Analysis #131", + "norm_label": "canvasstatehelpers" + }, + { + "label": "useCanvasState()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/analysis/useCanvasState.ts", + "source_location": "L74", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_analysis_usecanvasstate_usecanvasstate", + "community": 131, + "community_name": "Analysis #131", + "norm_label": "usecanvasstate()" + }, + { + "label": "bulkInboxAttachmentHydration.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/bulkInboxAttachmentHydration.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_bulkinboxattachmenthydration_test", + "community": 81, + "community_name": "Stores", + "norm_label": "bulkinboxattachmenthydration.test.ts" + }, + { + "label": "att()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/bulkInboxAttachmentHydration.test.ts", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_bulkinboxattachmenthydration_test_att", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "att()" + }, + { + "label": "bulkInboxAttachmentHydration.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/bulkInboxAttachmentHydration.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_bulkinboxattachmenthydration", + "community": 81, + "community_name": "Stores", + "norm_label": "bulkinboxattachmenthydration.ts" + }, + { + "label": "HydrationTerminal", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/bulkInboxAttachmentHydration.ts", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_bulkinboxattachmenthydration_hydrationterminal", + "community": 81, + "community_name": "Stores", + "norm_label": "hydrationterminal" + }, + { + "label": "hydrationAfterGetMessageSuccess()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/bulkInboxAttachmentHydration.ts", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_bulkinboxattachmenthydration_hydrationaftergetmessagesuccess", + "community": 81, + "community_name": "Stores", + "norm_label": "hydrationaftergetmessagesuccess()" + }, + { + "label": "hydrationAfterGetMessageIpcError()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/bulkInboxAttachmentHydration.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_bulkinboxattachmenthydration_hydrationaftergetmessageipcerror", + "community": 81, + "community_name": "Stores", + "norm_label": "hydrationaftergetmessageipcerror()" + }, + { + "label": "hydrationAfterGetMessageReject()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/bulkInboxAttachmentHydration.ts", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_bulkinboxattachmenthydration_hydrationaftergetmessagereject", + "community": 81, + "community_name": "Stores", + "norm_label": "hydrationaftergetmessagereject()" + }, + { + "label": "contextEscaping.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/contextEscaping.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_contextescaping", + "community": 221, + "community_name": "Handshakecontextsection", + "norm_label": "contextescaping.ts" + }, + { + "label": "ContextItemGovernance", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/contextEscaping.ts", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_contextescaping_contextitemgovernance", + "community": 221, + "community_name": "Handshakecontextsection", + "norm_label": "contextitemgovernance" + }, + { + "label": "VerifiedContextBlock", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/contextEscaping.ts", + "source_location": "L32", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_contextescaping_verifiedcontextblock", + "community": 221, + "community_name": "Handshakecontextsection", + "norm_label": "verifiedcontextblock" + }, + { + "label": "escapeXml()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/contextEscaping.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_contextescaping_escapexml", + "community": 221, + "community_name": "Handshakecontextsection", + "norm_label": "escapexml()" + }, + { + "label": "escapeAttr()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/contextEscaping.ts", + "source_location": "L66", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_contextescaping_escapeattr", + "community": 221, + "community_name": "Handshakecontextsection", + "norm_label": "escapeattr()" + }, + { + "label": "filterBlocksForLocalAI()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/contextEscaping.ts", + "source_location": "L87", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_contextescaping_filterblocksforlocalai", + "community": 221, + "community_name": "Handshakecontextsection", + "norm_label": "filterblocksforlocalai()" + }, + { + "label": "prepareContextForLLM()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/contextEscaping.ts", + "source_location": "L97", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_contextescaping_preparecontextforllm", + "community": 221, + "community_name": "Handshakecontextsection", + "norm_label": "preparecontextforllm()" + }, + { + "label": "buildDataWrapper()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/contextEscaping.ts", + "source_location": "L130", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_contextescaping_builddatawrapper", + "community": 221, + "community_name": "Handshakecontextsection", + "norm_label": "builddatawrapper()" + }, + { + "label": "buildSystemMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/contextEscaping.ts", + "source_location": "L148", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_contextescaping_buildsystemmessage", + "community": 221, + "community_name": "Handshakecontextsection", + "norm_label": "buildsystemmessage()" + }, + { + "label": "handshakeViewTypes.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/handshakeViewTypes.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakeviewtypes", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "handshakeviewtypes.ts" + }, + { + "label": "BeapAckReasonCode", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/handshakeViewTypes.ts", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakeviewtypes_beapackreasoncode", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "beapackreasoncode" + }, + { + "label": "BeapDeliveryAckData", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/handshakeViewTypes.ts", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakeviewtypes_beapdeliveryackdata", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "beapdeliveryackdata" + }, + { + "label": "AutosortSessionAPI", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/handshakeViewTypes.ts", + "source_location": "L36", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakeviewtypes_autosortsessionapi", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "autosortsessionapi" + }, + { + "label": "Window", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/handshakeViewTypes.ts", + "source_location": "L47", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakeviewtypes_window", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "window" + }, + { + "label": "EmailInboxBridge", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/handshakeViewTypes.ts", + "source_location": "L592", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_handshakeviewtypes_emailinboxbridge", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "emailinboxbridge" + }, + { + "label": "EmailAccountSelector.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/shared/EmailAccountSelector.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_shared_emailaccountselector", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "emailaccountselector.tsx" + }, + { + "label": "EmailAccountSelectorAccount", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/shared/EmailAccountSelector.tsx", + "source_location": "L15", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_shared_emailaccountselector_emailaccountselectoraccount", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "emailaccountselectoraccount" + }, + { + "label": "providerLabel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/shared/EmailAccountSelector.tsx", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_shared_emailaccountselector_providerlabel", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "providerlabel()" + }, + { + "label": "accountStatusLabel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/shared/EmailAccountSelector.tsx", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_shared_emailaccountselector_accountstatuslabel", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "accountstatuslabel()" + }, + { + "label": "fetchAccountRows()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/shared/EmailAccountSelector.tsx", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_shared_emailaccountselector_fetchaccountrows", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "fetchaccountrows()" + }, + { + "label": "EmailAccountSelectorProps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/shared/EmailAccountSelector.tsx", + "source_location": "L69", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_shared_emailaccountselector_emailaccountselectorprops", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "emailaccountselectorprops" + }, + { + "label": "EmailAccountSelector()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/components/shared/EmailAccountSelector.tsx", + "source_location": "L79", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_components_shared_emailaccountselector_emailaccountselector", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "emailaccountselector()" + }, + { + "label": "useActiveHandshakeHealthBanner.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useActiveHandshakeHealthBanner.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_useactivehandshakehealthbanner", + "community": 106, + "community_name": "Handshake Shims", + "norm_label": "useactivehandshakehealthbanner.ts" + }, + { + "label": "readDismissed()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useActiveHandshakeHealthBanner.ts", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_useactivehandshakehealthbanner_readdismissed", + "community": 106, + "community_name": "Handshake Shims", + "norm_label": "readdismissed()" + }, + { + "label": "writeDismissed()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useActiveHandshakeHealthBanner.ts", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_useactivehandshakehealthbanner_writedismissed", + "community": 106, + "community_name": "Handshake Shims", + "norm_label": "writedismissed()" + }, + { + "label": "useActiveHandshakeHealthBanner()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useActiveHandshakeHealthBanner.ts", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_useactivehandshakehealthbanner_useactivehandshakehealthbanner", + "community": 106, + "community_name": "Handshake Shims", + "norm_label": "useactivehandshakehealthbanner()" + }, + { + "label": "useDeleteFromProviderOnLocalDelete.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useDeleteFromProviderOnLocalDelete.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_usedeletefromprovideronlocaldelete", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "usedeletefromprovideronlocaldelete.ts" + }, + { + "label": "SmartSyncProviderAccountRow", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useDeleteFromProviderOnLocalDelete.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_usedeletefromprovideronlocaldelete_smartsyncprovideraccountrow", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "smartsyncprovideraccountrow" + }, + { + "label": "useDeleteFromProviderOnLocalDelete()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useDeleteFromProviderOnLocalDelete.ts", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_usedeletefromprovideronlocaldelete_usedeletefromprovideronlocaldelete", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "usedeletefromprovideronlocaldelete()" + }, + { + "label": "useHostToSandboxDirectReachability.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useHostToSandboxDirectReachability.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_usehosttosandboxdirectreachability", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "usehosttosandboxdirectreachability.ts" + }, + { + "label": "SandboxPeerRow", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useHostToSandboxDirectReachability.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_usehosttosandboxdirectreachability_sandboxpeerrow", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "sandboxpeerrow" + }, + { + "label": "useHostToSandboxDirectReachability()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useHostToSandboxDirectReachability.ts", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_usehosttosandboxdirectreachability_usehosttosandboxdirectreachability", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "usehosttosandboxdirectreachability()" + }, + { + "label": "useInboxPreloadQueue.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useInboxPreloadQueue.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_useinboxpreloadqueue", + "community": 205, + "community_name": "Stores #205", + "norm_label": "useinboxpreloadqueue.ts" + }, + { + "label": "scheduleIdle()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useInboxPreloadQueue.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_useinboxpreloadqueue_scheduleidle", + "community": 205, + "community_name": "Stores #205", + "norm_label": "scheduleidle()" + }, + { + "label": "AdaptiveState", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useInboxPreloadQueue.ts", + "source_location": "L47", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_useinboxpreloadqueue_adaptivestate", + "community": 205, + "community_name": "Stores #205", + "norm_label": "adaptivestate" + }, + { + "label": "UseInboxPreloadQueueOptions", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useInboxPreloadQueue.ts", + "source_location": "L54", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_useinboxpreloadqueue_useinboxpreloadqueueoptions", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "useinboxpreloadqueueoptions" + }, + { + "label": "useInboxPreloadQueue()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useInboxPreloadQueue.ts", + "source_location": "L59", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_useinboxpreloadqueue_useinboxpreloadqueue", + "community": 205, + "community_name": "Stores #205", + "norm_label": "useinboxpreloadqueue()" + }, + { + "label": "useIngestionStatus.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useIngestionStatus.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_useingestionstatus_test", + "community": 562, + "community_name": "Useingestionstatustest", + "norm_label": "useingestionstatus.test.ts" + }, + { + "label": "shouldSuppressBanners()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useIngestionStatus.test.ts", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_useingestionstatus_test_shouldsuppressbanners", + "community": 562, + "community_name": "Useingestionstatustest", + "norm_label": "shouldsuppressbanners()" + }, + { + "label": "useIngestionStatus.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useIngestionStatus.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_useingestionstatus", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "useingestionstatus.ts" + }, + { + "label": "shouldSuppressBanners()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useIngestionStatus.ts", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_useingestionstatus_shouldsuppressbanners", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "shouldsuppressbanners()" + }, + { + "label": "UseIngestionStatusOptions", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useIngestionStatus.ts", + "source_location": "L44", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_useingestionstatus_useingestionstatusoptions", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "useingestionstatusoptions" + }, + { + "label": "UseIngestionStatusResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useIngestionStatus.ts", + "source_location": "L51", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_useingestionstatus_useingestionstatusresult", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "useingestionstatusresult" + }, + { + "label": "useIngestionStatus()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useIngestionStatus.ts", + "source_location": "L59", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_useingestionstatus_useingestionstatus", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "useingestionstatus()" + }, + { + "label": "useInternalSandboxesList.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useInternalSandboxesList.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_useinternalsandboxeslist", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "useinternalsandboxeslist.ts" + }, + { + "label": "InternalSandboxTargetWire", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useInternalSandboxesList.ts", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_useinternalsandboxeslist_internalsandboxtargetwire", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "internalsandboxtargetwire" + }, + { + "label": "InternalSandboxIncompleteWire", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useInternalSandboxesList.ts", + "source_location": "L32", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_useinternalsandboxeslist_internalsandboxincompletewire", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "internalsandboxincompletewire" + }, + { + "label": "InternalSandboxesListSnapshot", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useInternalSandboxesList.ts", + "source_location": "L39", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_useinternalsandboxeslist_internalsandboxeslistsnapshot", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "internalsandboxeslistsnapshot" + }, + { + "label": "useInternalSandboxesList()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useInternalSandboxesList.ts", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_useinternalsandboxeslist_useinternalsandboxeslist", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "useinternalsandboxeslist()" + }, + { + "label": "useOrchestratorMode.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useOrchestratorMode.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_useorchestratormode", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "useorchestratormode.ts" + }, + { + "label": "useOrchestratorMode()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useOrchestratorMode.ts", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_useorchestratormode_useorchestratormode", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "useorchestratormode()" + }, + { + "label": "useRevocationBanner.logic.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useRevocationBanner.logic.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_userevocationbanner_logic_test", + "community": 212, + "community_name": "Userevocationbanner", + "norm_label": "userevocationbanner.logic.test.ts" + }, + { + "label": "isActive()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useRevocationBanner.logic.test.ts", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_userevocationbanner_logic_test_isactive", + "community": 212, + "community_name": "Userevocationbanner", + "norm_label": "isactive()" + }, + { + "label": "findLatestActive()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useRevocationBanner.logic.test.ts", + "source_location": "L93", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_userevocationbanner_logic_test_findlatestactive", + "community": 212, + "community_name": "Userevocationbanner", + "norm_label": "findlatestactive()" + }, + { + "label": "useRevocationBanner.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useRevocationBanner.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_userevocationbanner", + "community": 212, + "community_name": "Userevocationbanner", + "norm_label": "userevocationbanner.ts" + }, + { + "label": "RevokeNoticeRecord", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useRevocationBanner.ts", + "source_location": "L29", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_userevocationbanner_revokenoticerecord", + "community": 212, + "community_name": "Userevocationbanner", + "norm_label": "revokenoticerecord" + }, + { + "label": "UseRevocationBannerResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useRevocationBanner.ts", + "source_location": "L36", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_userevocationbanner_userevocationbannerresult", + "community": 212, + "community_name": "Userevocationbanner", + "norm_label": "userevocationbannerresult" + }, + { + "label": "storageKey()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useRevocationBanner.ts", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_userevocationbanner_storagekey", + "community": 212, + "community_name": "Userevocationbanner", + "norm_label": "storagekey()" + }, + { + "label": "readRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useRevocationBanner.ts", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_userevocationbanner_readrecord", + "community": 212, + "community_name": "Userevocationbanner", + "norm_label": "readrecord()" + }, + { + "label": "writeRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useRevocationBanner.ts", + "source_location": "L57", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_userevocationbanner_writerecord", + "community": 212, + "community_name": "Userevocationbanner", + "norm_label": "writerecord()" + }, + { + "label": "isActive()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useRevocationBanner.ts", + "source_location": "L65", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_userevocationbanner_isactive", + "community": 212, + "community_name": "Userevocationbanner", + "norm_label": "isactive()" + }, + { + "label": "findActiveNotice()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useRevocationBanner.ts", + "source_location": "L70", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_userevocationbanner_findactivenotice", + "community": 212, + "community_name": "Userevocationbanner", + "norm_label": "findactivenotice()" + }, + { + "label": "useRevocationBanner()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useRevocationBanner.ts", + "source_location": "L96", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_userevocationbanner_userevocationbanner", + "community": 212, + "community_name": "Userevocationbanner", + "norm_label": "userevocationbanner()" + }, + { + "label": "NOTE: Only fires for local-user revocations (remote-capsule path is a known gap,", + "file_type": "rationale", + "source_file": "apps/electron-vite-project/src/hooks/useRevocationBanner.ts", + "source_location": "L20", + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_userevocationbanner_rationale_20", + "community": 212, + "community_name": "Userevocationbanner", + "norm_label": "note: only fires for local-user revocations (remote-capsule path is a known gap," + }, + { + "label": "useSandboxHostInference.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useSandboxHostInference.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_usesandboxhostinference", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "usesandboxhostinference.ts" + }, + { + "label": "HostInferenceCandidateRow", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useSandboxHostInference.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_usesandboxhostinference_hostinferencecandidaterow", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "hostinferencecandidaterow" + }, + { + "label": "HostInferenceTargetRow", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useSandboxHostInference.ts", + "source_location": "L24", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_usesandboxhostinference_hostinferencetargetrow", + "community": 159, + "community_name": "Hostaitargetconnectionpresentation", + "norm_label": "hostinferencetargetrow" + }, + { + "label": "PolicyState", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useSandboxHostInference.ts", + "source_location": "L99", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_usesandboxhostinference_policystate", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "policystate" + }, + { + "label": "formatPairingDisplay()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useSandboxHostInference.ts", + "source_location": "L101", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_usesandboxhostinference_formatpairingdisplay", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "formatpairingdisplay()" + }, + { + "label": "targetsToCandidates()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useSandboxHostInference.ts", + "source_location": "L109", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_usesandboxhostinference_targetstocandidates", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "targetstocandidates()" + }, + { + "label": "HostInferenceGavSync", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useSandboxHostInference.ts", + "source_location": "L124", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_usesandboxhostinference_hostinferencegavsync", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "hostinferencegavsync" + }, + { + "label": "useSandboxHostInference()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useSandboxHostInference.ts", + "source_location": "L133", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_usesandboxhostinference_usesandboxhostinference", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "usesandboxhostinference()" + }, + { + "label": "useSandboxReadCleanupHint.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useSandboxReadCleanupHint.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_usesandboxreadcleanuphint", + "community": 197, + "community_name": "Sandboxreadcleanuphint", + "norm_label": "usesandboxreadcleanuphint.ts" + }, + { + "label": "ReadAccount", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useSandboxReadCleanupHint.ts", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_usesandboxreadcleanuphint_readaccount", + "community": 197, + "community_name": "Sandboxreadcleanuphint", + "norm_label": "readaccount" + }, + { + "label": "SandboxReadCleanupHintState", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useSandboxReadCleanupHint.ts", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_usesandboxreadcleanuphint_sandboxreadcleanuphintstate", + "community": 197, + "community_name": "Sandboxreadcleanuphint", + "norm_label": "sandboxreadcleanuphintstate" + }, + { + "label": "UseSandboxReadCleanupHintResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useSandboxReadCleanupHint.ts", + "source_location": "L33", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_usesandboxreadcleanuphint_usesandboxreadcleanuphintresult", + "community": 197, + "community_name": "Sandboxreadcleanuphint", + "norm_label": "usesandboxreadcleanuphintresult" + }, + { + "label": "isDismissed()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useSandboxReadCleanupHint.ts", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_usesandboxreadcleanuphint_isdismissed", + "community": 197, + "community_name": "Sandboxreadcleanuphint", + "norm_label": "isdismissed()" + }, + { + "label": "markDismissed()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useSandboxReadCleanupHint.ts", + "source_location": "L48", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_usesandboxreadcleanuphint_markdismissed", + "community": 197, + "community_name": "Sandboxreadcleanuphint", + "norm_label": "markdismissed()" + }, + { + "label": "useSandboxReadCleanupHint()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useSandboxReadCleanupHint.ts", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_usesandboxreadcleanuphint_usesandboxreadcleanuphint", + "community": 197, + "community_name": "Sandboxreadcleanuphint", + "norm_label": "usesandboxreadcleanuphint()" + }, + { + "label": "NOTE: Fires for both the local-user and remote-capsule revoke paths, driven", + "file_type": "rationale", + "source_file": "apps/electron-vite-project/src/hooks/useSandboxReadCleanupHint.ts", + "source_location": "L15", + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_usesandboxreadcleanuphint_rationale_15", + "community": 197, + "community_name": "Sandboxreadcleanuphint", + "norm_label": "note: fires for both the local-user and remote-capsule revoke paths, driven" + }, + { + "label": "useTopologyDelegationModal.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useTopologyDelegationModal.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_usetopologydelegationmodal", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "usetopologydelegationmodal.ts" + }, + { + "label": "isDismissed()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useTopologyDelegationModal.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_usetopologydelegationmodal_isdismissed", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "isdismissed()" + }, + { + "label": "markDismissed()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useTopologyDelegationModal.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_usetopologydelegationmodal_markdismissed", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "markdismissed()" + }, + { + "label": "UseTopologyDelegationModalResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useTopologyDelegationModal.ts", + "source_location": "L37", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_usetopologydelegationmodal_usetopologydelegationmodalresult", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "usetopologydelegationmodalresult" + }, + { + "label": "useTopologyDelegationModal()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/hooks/useTopologyDelegationModal.ts", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_hooks_usetopologydelegationmodal_usetopologydelegationmodal", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "usetopologydelegationmodal()" + }, + { + "label": "transportPage.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage", + "community": 187, + "community_name": "Internalinferencep2ptransport", + "norm_label": "transportpage.ts" + }, + { + "label": "RTC_CFG", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L6", + "_origin": "ast", + "id": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_rtc_cfg", + "community": 187, + "community_name": "Internalinferencep2ptransport", + "norm_label": "rtc_cfg" + }, + { + "label": "Role", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_role", + "community": 187, + "community_name": "Internalinferencep2ptransport", + "norm_label": "role" + }, + { + "label": "WrdeskWebrtcP2p", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L15", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_wrdeskwebrtcp2p", + "community": 187, + "community_name": "Internalinferencep2ptransport", + "norm_label": "wrdeskwebrtcp2p" + }, + { + "label": "Session", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_session", + "community": 187, + "community_name": "Internalinferencep2ptransport", + "norm_label": "session" + }, + { + "label": "sessions", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L33", + "_origin": "ast", + "id": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_sessions", + "community": 187, + "community_name": "Internalinferencep2ptransport", + "norm_label": "sessions" + }, + { + "label": "handshakeActiveSessionId", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L36", + "_origin": "ast", + "id": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_handshakeactivesessionid", + "community": 187, + "community_name": "Internalinferencep2ptransport", + "norm_label": "handshakeactivesessionid" + }, + { + "label": "FromMain", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L38", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_frommain", + "community": 187, + "community_name": "Internalinferencep2ptransport", + "norm_label": "frommain" + }, + { + "label": "getPod()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_getpod", + "community": 187, + "community_name": "Internalinferencep2ptransport", + "norm_label": "getpod()" + }, + { + "label": "out()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_out", + "community": 187, + "community_name": "Internalinferencep2ptransport", + "norm_label": "out()" + }, + { + "label": "emitState()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L59", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_emitstate", + "community": 187, + "community_name": "Internalinferencep2ptransport", + "norm_label": "emitstate()" + }, + { + "label": "emitError()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L63", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_emiterror", + "community": 187, + "community_name": "Internalinferencep2ptransport", + "norm_label": "emiterror()" + }, + { + "label": "clearIceToMainDrain()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L67", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_clearicetomaindrain", + "community": 187, + "community_name": "Internalinferencep2ptransport", + "norm_label": "clearicetomaindrain()" + }, + { + "label": "iceStampForActiveSessionOrNull()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L78", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_icestampforactivesessionornull", + "community": 187, + "community_name": "Internalinferencep2ptransport", + "norm_label": "icestampforactivesessionornull()" + }, + { + "label": "isSessionActiveForOutboundIce()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L86", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_issessionactiveforoutboundice", + "community": 187, + "community_name": "Internalinferencep2ptransport", + "norm_label": "issessionactiveforoutboundice()" + }, + { + "label": "emitPendingIceEndToMain()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L90", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_emitpendingiceendtomain", + "community": 187, + "community_name": "Internalinferencep2ptransport", + "norm_label": "emitpendingiceendtomain()" + }, + { + "label": "pumpIceToMain()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L116", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_pumpicetomain", + "community": 187, + "community_name": "Internalinferencep2ptransport", + "norm_label": "pumpicetomain()" + }, + { + "label": "enqueueLocalIceCandidate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L157", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_enqueuelocalicecandidate", + "community": 187, + "community_name": "Internalinferencep2ptransport", + "norm_label": "enqueuelocalicecandidate()" + }, + { + "label": "onPcSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L166", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_onpcsession", + "community": 187, + "community_name": "Internalinferencep2ptransport", + "norm_label": "onpcsession()" + }, + { + "label": "createOne()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L197", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_createone", + "community": 187, + "community_name": "Internalinferencep2ptransport", + "norm_label": "createone()" + }, + { + "label": "attachDc()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L229", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_attachdc", + "community": 187, + "community_name": "Internalinferencep2ptransport", + "norm_label": "attachdc()" + }, + { + "label": "maybeNegotiate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L264", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_maybenegotiate", + "community": 187, + "community_name": "Internalinferencep2ptransport", + "norm_label": "maybenegotiate()" + }, + { + "label": "applyRemoteOffer()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L291", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_applyremoteoffer", + "community": 187, + "community_name": "Internalinferencep2ptransport", + "norm_label": "applyremoteoffer()" + }, + { + "label": "applyRemoteAnswer()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L306", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_applyremoteanswer", + "community": 187, + "community_name": "Internalinferencep2ptransport", + "norm_label": "applyremoteanswer()" + }, + { + "label": "addRemoteIce()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L318", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_addremoteice", + "community": 187, + "community_name": "Internalinferencep2ptransport", + "norm_label": "addremoteice()" + }, + { + "label": "closeOne()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L334", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_closeone", + "community": 187, + "community_name": "Internalinferencep2ptransport", + "norm_label": "closeone()" + }, + { + "label": "sendDataToDc()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L358", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_senddatatodc", + "community": 187, + "community_name": "Internalinferencep2ptransport", + "norm_label": "senddatatodc()" + }, + { + "label": "runInPageLocalPair()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L376", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_runinpagelocalpair", + "community": 187, + "community_name": "Internalinferencep2ptransport", + "norm_label": "runinpagelocalpair()" + }, + { + "label": "handleFromMain()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L410", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_handlefrommain", + "community": 187, + "community_name": "Internalinferencep2ptransport", + "norm_label": "handlefrommain()" + }, + { + "label": "beapInboxActionTooltips.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/beapInboxActionTooltips.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_beapinboxactiontooltips_test", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "beapinboxactiontooltips.test.ts" + }, + { + "label": "beapInboxHostSandboxClickPolicy.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/beapInboxHostSandboxClickPolicy.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_beapinboxhostsandboxclickpolicy_test", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "beapinboxhostsandboxclickpolicy.test.ts" + }, + { + "label": "beapInboxSandboxVisibility.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/beapInboxSandboxVisibility.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_beapinboxsandboxvisibility_test", + "community": 186, + "community_name": "Stores #186", + "norm_label": "beapinboxsandboxvisibility.test.ts" + }, + { + "label": "listOkHost", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/beapInboxSandboxVisibility.test.ts", + "source_location": "L10", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_beapinboxsandboxvisibility_test_listokhost", + "community": 186, + "community_name": "Stores #186", + "norm_label": "listokhost" + }, + { + "label": "listOkNone", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/beapInboxSandboxVisibility.test.ts", + "source_location": "L14", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_beapinboxsandboxvisibility_test_listoknone", + "community": 186, + "community_name": "Stores #186", + "norm_label": "listoknone" + }, + { + "label": "msg()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/beapInboxSandboxVisibility.test.ts", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_beapinboxsandboxvisibility_test_msg", + "community": 186, + "community_name": "Stores #186", + "norm_label": "msg()" + }, + { + "label": "params()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/beapInboxSandboxVisibility.test.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_beapinboxsandboxvisibility_test_params", + "community": 186, + "community_name": "Stores #186", + "norm_label": "params()" + }, + { + "label": "beapInboxUxSourceRegressions.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/beapInboxUxSourceRegressions.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_beapinboxuxsourceregressions_test", + "community": 461, + "community_name": "Beapinboxuxsourceregressionstest", + "norm_label": "beapinboxuxsourceregressions.test.ts" + }, + { + "label": "__dirname", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/beapInboxUxSourceRegressions.test.ts", + "source_location": "L11", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_beapinboxuxsourceregressions_test_dirname", + "community": 461, + "community_name": "Beapinboxuxsourceregressionstest", + "norm_label": "__dirname" + }, + { + "label": "evpRoot", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/beapInboxUxSourceRegressions.test.ts", + "source_location": "L12", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_beapinboxuxsourceregressions_test_evproot", + "community": 461, + "community_name": "Beapinboxuxsourceregressionstest", + "norm_label": "evproot" + }, + { + "label": "readRel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/beapInboxUxSourceRegressions.test.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_beapinboxuxsourceregressions_test_readrel", + "community": 461, + "community_name": "Beapinboxuxsourceregressionstest", + "norm_label": "readrel()" + }, + { + "label": "beapInboxVisibleSandboxClone.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/beapInboxVisibleSandboxClone.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_beapinboxvisiblesandboxclone_test", + "community": 508, + "community_name": "Beapinboxvisiblesandboxclone", + "norm_label": "beapinboxvisiblesandboxclone.test.ts" + }, + { + "label": "beapSandboxCloneDeliverySemantics.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/beapSandboxCloneDeliverySemantics.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_beapsandboxclonedeliverysemantics_test", + "community": 139, + "community_name": "Handshake Beapbuilder Shims", + "norm_label": "beapsandboxclonedeliverysemantics.test.ts" + }, + { + "label": "buildBSandboxViewportUi.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/buildBSandboxViewportUi.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_buildbsandboxviewportui_test", + "community": 462, + "community_name": "Buildbsandboxviewportuitest", + "norm_label": "buildbsandboxviewportui.test.ts" + }, + { + "label": "__dir", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/buildBSandboxViewportUi.test.ts", + "source_location": "L16", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_buildbsandboxviewportui_test_dir", + "community": 462, + "community_name": "Buildbsandboxviewportuitest", + "norm_label": "__dir" + }, + { + "label": "srcRoot", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/buildBSandboxViewportUi.test.ts", + "source_location": "L18", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_buildbsandboxviewportui_test_srcroot", + "community": 462, + "community_name": "Buildbsandboxviewportuitest", + "norm_label": "srcroot" + }, + { + "label": "read()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/buildBSandboxViewportUi.test.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_buildbsandboxviewportui_test_read", + "community": 462, + "community_name": "Buildbsandboxviewportuitest", + "norm_label": "read()" + }, + { + "label": "coalescedListInferenceTargets.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/coalescedListInferenceTargets.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_coalescedlistinferencetargets_test", + "community": 377, + "community_name": "Coalescedlistinferencetargets", + "norm_label": "coalescedlistinferencetargets.test.ts" + }, + { + "label": "debugLogClipboard.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/debugLogClipboard.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_debuglogclipboard_test", + "community": 331, + "community_name": "Debuglogclipboard", + "norm_label": "debuglogclipboard.test.ts" + }, + { + "label": "makeEntry()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/debugLogClipboard.test.ts", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_debuglogclipboard_test_makeentry", + "community": 331, + "community_name": "Debuglogclipboard", + "norm_label": "makeentry()" + }, + { + "label": "MIXED_LOGS", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/debugLogClipboard.test.ts", + "source_location": "L30", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_debuglogclipboard_test_mixed_logs", + "community": 331, + "community_name": "Debuglogclipboard", + "norm_label": "mixed_logs" + }, + { + "label": "dedicatedSandboxIngestionUi.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/dedicatedSandboxIngestionUi.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_dedicatedsandboxingestionui_test", + "community": 150, + "community_name": "Stores #150", + "norm_label": "dedicatedsandboxingestionui.test.ts" + }, + { + "label": "fetchSelectorModelListFromHostDiscovery.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/fetchSelectorModelListFromHostDiscovery.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_fetchselectormodellistfromhostdiscovery_test", + "community": 159, + "community_name": "Hostaitargetconnectionpresentation", + "norm_label": "fetchselectormodellistfromhostdiscovery.test.ts" + }, + { + "label": "append", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/fetchSelectorModelListFromHostDiscovery.test.ts", + "source_location": "L7", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_fetchselectormodellistfromhostdiscovery_test_append", + "community": 159, + "community_name": "Hostaitargetconnectionpresentation", + "norm_label": "append" + }, + { + "label": "finalAcceptance.hostAiInvariants.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/finalAcceptance.hostAiInvariants.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_finalacceptance_hostaiinvariants_test", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "finalacceptance.hostaiinvariants.test.ts" + }, + { + "label": "__dir", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/finalAcceptance.hostAiInvariants.test.ts", + "source_location": "L18", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_finalacceptance_hostaiinvariants_test_dir", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "__dir" + }, + { + "label": "projectRoot", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/finalAcceptance.hostAiInvariants.test.ts", + "source_location": "L20", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_finalacceptance_hostaiinvariants_test_projectroot", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "projectroot" + }, + { + "label": "srcApp", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/finalAcceptance.hostAiInvariants.test.ts", + "source_location": "L21", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_finalacceptance_hostaiinvariants_test_srcapp", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "srcapp" + }, + { + "label": "hybridPath", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/finalAcceptance.hostAiInvariants.test.ts", + "source_location": "L22", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_finalacceptance_hostaiinvariants_test_hybridpath", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "hybridpath" + }, + { + "label": "wrPath", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/finalAcceptance.hostAiInvariants.test.ts", + "source_location": "L23", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_finalacceptance_hostaiinvariants_test_wrpath", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "wrpath" + }, + { + "label": "listInfMainPath", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/finalAcceptance.hostAiInvariants.test.ts", + "source_location": "L24", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_finalacceptance_hostaiinvariants_test_listinfmainpath", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "listinfmainpath" + }, + { + "label": "gavPath", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/finalAcceptance.hostAiInvariants.test.ts", + "source_location": "L25", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_finalacceptance_hostaiinvariants_test_gavpath", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "gavpath" + }, + { + "label": "treatAsSandboxForHostInternal()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/finalAcceptance.hostAiInvariants.test.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_finalacceptance_hostaiinvariants_test_treatassandboxforhostinternal", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "treatassandboxforhostinternal()" + }, + { + "label": "append", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/finalAcceptance.hostAiInvariants.test.ts", + "source_location": "L41", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_finalacceptance_hostaiinvariants_test_append", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "append" + }, + { + "label": "hostActiveModelSelection.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostActiveModelSelection.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_hostactivemodelselection_test", + "community": 166, + "community_name": "LLM #166", + "norm_label": "hostactivemodelselection.test.ts" + }, + { + "label": "row()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostActiveModelSelection.test.ts", + "source_location": "L6", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_hostactivemodelselection_test_row", + "community": 166, + "community_name": "LLM #166", + "norm_label": "row()" + }, + { + "label": "hostAiRemoteChatLane.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostAiRemoteChatLane.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_hostairemotechatlane_test", + "community": 166, + "community_name": "LLM #166", + "norm_label": "hostairemotechatlane.test.ts" + }, + { + "label": "base()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostAiRemoteChatLane.test.ts", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_hostairemotechatlane_test_base", + "community": 166, + "community_name": "LLM #166", + "norm_label": "base()" + }, + { + "label": "hostAiTargetConnectionPresentation.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostAiTargetConnectionPresentation.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_hostaitargetconnectionpresentation_test", + "community": 159, + "community_name": "Hostaitargetconnectionpresentation", + "norm_label": "hostaitargetconnectionpresentation.test.ts" + }, + { + "label": "fakeBase()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostAiTargetConnectionPresentation.test.ts", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_hostaitargetconnectionpresentation_test_fakebase", + "community": 159, + "community_name": "Hostaitargetconnectionpresentation", + "norm_label": "fakebase()" + }, + { + "label": "hostAiTargetUiNormalization.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostAiTargetUiNormalization.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_hostaitargetuinormalization_test", + "community": 363, + "community_name": "Hostaitargetuinormalization", + "norm_label": "hostaitargetuinormalization.test.ts" + }, + { + "label": "baseHostRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostAiTargetUiNormalization.test.ts", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_hostaitargetuinormalization_test_basehostrow", + "community": 363, + "community_name": "Hostaitargetuinormalization", + "norm_label": "basehostrow()" + }, + { + "label": "hostAiUiDiagnostics.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostAiUiDiagnostics.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_hostaiuidiagnostics_test", + "community": 114, + "community_name": "Hostaiselectorcopy", + "norm_label": "hostaiuidiagnostics.test.ts" + }, + { + "label": "hostInferenceDirectReachabilityUi.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceDirectReachabilityUi.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_hostinferencedirectreachabilityui_test", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "hostinferencedirectreachabilityui.test.ts" + }, + { + "label": "hostInferenceModelIds.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceModelIds.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_hostinferencemodelids_test", + "community": 166, + "community_name": "LLM #166", + "norm_label": "hostinferencemodelids.test.ts" + }, + { + "label": "hostInferenceSelectorIntegration.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceSelectorIntegration.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_hostinferenceselectorintegration_test", + "community": 101, + "community_name": "Inferenceselectionpersistence", + "norm_label": "hostinferenceselectorintegration.test.ts" + }, + { + "label": "Available", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceSelectorIntegration.test.ts", + "source_location": "L35", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_hostinferenceselectorintegration_test_available", + "community": 101, + "community_name": "Inferenceselectionpersistence", + "norm_label": "available" + }, + { + "label": "Target", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceSelectorIntegration.test.ts", + "source_location": "L36", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_hostinferenceselectorintegration_test_target", + "community": 101, + "community_name": "Inferenceselectionpersistence", + "norm_label": "target" + }, + { + "label": "modelMenuState()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceSelectorIntegration.test.ts", + "source_location": "L50", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_hostinferenceselectorintegration_test_modelmenustate", + "community": 101, + "community_name": "Inferenceselectionpersistence", + "norm_label": "modelmenustate()" + }, + { + "label": "showHostInferenceOption()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceSelectorIntegration.test.ts", + "source_location": "L59", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_hostinferenceselectorintegration_test_showhostinferenceoption", + "community": 101, + "community_name": "Inferenceselectionpersistence", + "norm_label": "showhostinferenceoption()" + }, + { + "label": "installLocalStorage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceSelectorIntegration.test.ts", + "source_location": "L85", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_hostinferenceselectorintegration_test_installlocalstorage", + "community": 101, + "community_name": "Inferenceselectionpersistence", + "norm_label": "installlocalstorage()" + }, + { + "label": "hostInferenceSurface.regression.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceSurface.regression.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_hostinferencesurface_regression_test", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "hostinferencesurface.regression.test.ts" + }, + { + "label": "hostInferenceUiGates.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceUiGates.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_hostinferenceuigates_test", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "hostinferenceuigates.test.ts" + }, + { + "label": "hostModelSelectorRowUi.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostModelSelectorRowUi.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_hostmodelselectorrowui_test", + "community": 114, + "community_name": "Hostaiselectorcopy", + "norm_label": "hostmodelselectorrowui.test.ts" + }, + { + "label": "baseM()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostModelSelectorRowUi.test.ts", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_hostmodelselectorrowui_test_basem", + "community": 114, + "community_name": "Hostaiselectorcopy", + "norm_label": "basem()" + }, + { + "label": "hybridChatRagSuccessDisplay.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hybridChatRagSuccessDisplay.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_hybridchatragsuccessdisplay_test", + "community": 563, + "community_name": "Hybridchatragsuccessdisplaytest", + "norm_label": "hybridchatragsuccessdisplay.test.ts" + }, + { + "label": "mergeStreamedHybridAnswer()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hybridChatRagSuccessDisplay.test.ts", + "source_location": "L4", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_hybridchatragsuccessdisplay_test_mergestreamedhybridanswer", + "community": 563, + "community_name": "Hybridchatragsuccessdisplaytest", + "norm_label": "mergestreamedhybridanswer()" + }, + { + "label": "inboxAiCloneClassification.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/inboxAiCloneClassification.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_inboxaicloneclassification_test", + "community": 179, + "community_name": "Inboxaicloneclassification", + "norm_label": "inboxaicloneclassification.test.ts" + }, + { + "label": "inboxDetailAnalysisSelection.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/inboxDetailAnalysisSelection.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_inboxdetailanalysisselection_test", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "inboxdetailanalysisselection.test.ts" + }, + { + "label": "inboxMessageActionable.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/inboxMessageActionable.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_inboxmessageactionable_test", + "community": 186, + "community_name": "Stores #186", + "norm_label": "inboxmessageactionable.test.ts" + }, + { + "label": "inboxMessageSandboxClone.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/inboxMessageSandboxClone.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_inboxmessagesandboxclone_test", + "community": 158, + "community_name": "Inboxmessagesandboxclone", + "norm_label": "inboxmessagesandboxclone.test.ts" + }, + { + "label": "base", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/inboxMessageSandboxClone.test.ts", + "source_location": "L11", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_inboxmessagesandboxclone_test_base", + "community": 158, + "community_name": "Inboxmessagesandboxclone", + "norm_label": "base" + }, + { + "label": "inboxSessionArtefact.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/inboxSessionArtefact.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_inboxsessionartefact_test", + "community": 204, + "community_name": "Inboxsessionartefact", + "norm_label": "inboxsessionartefact.test.ts" + }, + { + "label": "baseMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/inboxSessionArtefact.test.ts", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_inboxsessionartefact_test_basemessage", + "community": 204, + "community_name": "Inboxsessionartefact", + "norm_label": "basemessage()" + }, + { + "label": "inferenceSandboxVsHostContext.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/inferenceSandboxVsHostContext.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_inferencesandboxvshostcontext_test", + "community": 101, + "community_name": "Inferenceselectionpersistence", + "norm_label": "inferencesandboxvshostcontext.test.ts" + }, + { + "label": "inferenceSelectionPersistence.ollamaDirect.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/inferenceSelectionPersistence.ollamaDirect.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_inferenceselectionpersistence_ollamadirect_test", + "community": 101, + "community_name": "Inferenceselectionpersistence", + "norm_label": "inferenceselectionpersistence.ollamadirect.test.ts" + }, + { + "label": "modelSelectorHostRefreshVisibility.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/modelSelectorHostRefreshVisibility.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_modelselectorhostrefreshvisibility_test", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "modelselectorhostrefreshvisibility.test.ts" + }, + { + "label": "phase11.beapRegression.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/phase11.beapRegression.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_phase11_beapregression_test", + "community": 158, + "community_name": "Inboxmessagesandboxclone", + "norm_label": "phase11.beapregression.test.ts" + }, + { + "label": "__dir", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/phase11.beapRegression.test.ts", + "source_location": "L11", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_phase11_beapregression_test_dir", + "community": 158, + "community_name": "Inboxmessagesandboxclone", + "norm_label": "__dir" + }, + { + "label": "appsRoot", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/phase11.beapRegression.test.ts", + "source_location": "L12", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_phase11_beapregression_test_appsroot", + "community": 158, + "community_name": "Inboxmessagesandboxclone", + "norm_label": "appsroot" + }, + { + "label": "readApp()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/phase11.beapRegression.test.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_phase11_beapregression_test_readapp", + "community": 158, + "community_name": "Inboxmessagesandboxclone", + "norm_label": "readapp()" + }, + { + "label": "phase11.uiInvariants.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/phase11.uiInvariants.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_phase11_uiinvariants_test", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "phase11.uiinvariants.test.ts" + }, + { + "label": "__dir", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/phase11.uiInvariants.test.ts", + "source_location": "L13", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_phase11_uiinvariants_test_dir", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "__dir" + }, + { + "label": "srcRoot", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/phase11.uiInvariants.test.ts", + "source_location": "L14", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_phase11_uiinvariants_test_srcroot", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "srcroot" + }, + { + "label": "readSrc()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/phase11.uiInvariants.test.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_phase11_uiinvariants_test_readsrc", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "readsrc()" + }, + { + "label": "resolveActiveSandboxCloneTargets.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/resolveActiveSandboxCloneTargets.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_resolveactivesandboxclonetargets_test", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "resolveactivesandboxclonetargets.test.ts" + }, + { + "label": "row()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/resolveActiveSandboxCloneTargets.test.ts", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_resolveactivesandboxclonetargets_test_row", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "row()" + }, + { + "label": "sandboxCloneEntitlementFeedback.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/sandboxCloneEntitlementFeedback.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_sandboxcloneentitlementfeedback_test", + "community": 139, + "community_name": "Handshake Beapbuilder Shims", + "norm_label": "sandboxcloneentitlementfeedback.test.ts" + }, + { + "label": "entitlementFailure()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/sandboxCloneEntitlementFeedback.test.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_sandboxcloneentitlementfeedback_test_entitlementfailure", + "community": 139, + "community_name": "Handshake Beapbuilder Shims", + "norm_label": "entitlementfailure()" + }, + { + "label": "sendFailed()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/sandboxCloneEntitlementFeedback.test.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_sandboxcloneentitlementfeedback_test_sendfailed", + "community": 139, + "community_name": "Handshake Beapbuilder Shims", + "norm_label": "sendfailed()" + }, + { + "label": "prepareFailed()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/sandboxCloneEntitlementFeedback.test.ts", + "source_location": "L42", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_sandboxcloneentitlementfeedback_test_preparefailed", + "community": 139, + "community_name": "Handshake Beapbuilder Shims", + "norm_label": "preparefailed()" + }, + { + "label": "sandboxComposerGate.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/sandboxComposerGate.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_sandboxcomposergate_test", + "community": 463, + "community_name": "Sandboxcomposergatetest", + "norm_label": "sandboxcomposergate.test.ts" + }, + { + "label": "__dir", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/sandboxComposerGate.test.ts", + "source_location": "L19", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_sandboxcomposergate_test_dir", + "community": 463, + "community_name": "Sandboxcomposergatetest", + "norm_label": "__dir" + }, + { + "label": "srcRoot", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/sandboxComposerGate.test.ts", + "source_location": "L20", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_sandboxcomposergate_test_srcroot", + "community": 463, + "community_name": "Sandboxcomposergatetest", + "norm_label": "srcroot" + }, + { + "label": "read()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/sandboxComposerGate.test.ts", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_sandboxcomposergate_test_read", + "community": 463, + "community_name": "Sandboxcomposergatetest", + "norm_label": "read()" + }, + { + "label": "step10.productionReadiness.acceptance.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step10.productionReadiness.acceptance.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_step10_productionreadiness_acceptance_test", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "step10.productionreadiness.acceptance.test.ts" + }, + { + "label": "__dir", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step10.productionReadiness.acceptance.test.ts", + "source_location": "L21", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_step10_productionreadiness_acceptance_test_dir", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "__dir" + }, + { + "label": "evRoot", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step10.productionReadiness.acceptance.test.ts", + "source_location": "L22", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_step10_productionreadiness_acceptance_test_evroot", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "evroot" + }, + { + "label": "readEv()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step10.productionReadiness.acceptance.test.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_step10_productionreadiness_acceptance_test_readev", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "readev()" + }, + { + "label": "step10.wrChatHostDiscoveryOrder.contract.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step10.wrChatHostDiscoveryOrder.contract.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_step10_wrchathostdiscoveryorder_contract_test", + "community": 464, + "community_name": "Step10wrchathostdiscoveryordercontractte", + "norm_label": "step10.wrchathostdiscoveryorder.contract.test.ts" + }, + { + "label": "__dir", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step10.wrChatHostDiscoveryOrder.contract.test.ts", + "source_location": "L9", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_step10_wrchathostdiscoveryorder_contract_test_dir", + "community": 464, + "community_name": "Step10wrchathostdiscoveryordercontractte", + "norm_label": "__dir" + }, + { + "label": "src", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step10.wrChatHostDiscoveryOrder.contract.test.ts", + "source_location": "L10", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_step10_wrchathostdiscoveryorder_contract_test_src", + "community": 464, + "community_name": "Step10wrchathostdiscoveryordercontractte", + "norm_label": "src" + }, + { + "label": "content", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step10.wrChatHostDiscoveryOrder.contract.test.ts", + "source_location": "L11", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_step10_wrchathostdiscoveryorder_contract_test_content", + "community": 464, + "community_name": "Step10wrchathostdiscoveryordercontractte", + "norm_label": "content" + }, + { + "label": "step8.productionSafety.integration.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.productionSafety.integration.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_step8_productionsafety_integration_test", + "community": 159, + "community_name": "Hostaitargetconnectionpresentation", + "norm_label": "step8.productionsafety.integration.test.ts" + }, + { + "label": "append", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.productionSafety.integration.test.ts", + "source_location": "L10", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_step8_productionsafety_integration_test_append", + "community": 159, + "community_name": "Hostaitargetconnectionpresentation", + "norm_label": "append" + }, + { + "label": "hostFromMain", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.productionSafety.integration.test.ts", + "source_location": "L21", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_step8_productionsafety_integration_test_hostfrommain", + "community": 159, + "community_name": "Hostaitargetconnectionpresentation", + "norm_label": "hostfrommain" + }, + { + "label": "step8.productionSafety.regression.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.productionSafety.regression.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_step8_productionsafety_regression_test", + "community": 158, + "community_name": "Inboxmessagesandboxclone", + "norm_label": "step8.productionsafety.regression.test.ts" + }, + { + "label": "__dir", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.productionSafety.regression.test.ts", + "source_location": "L11", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_step8_productionsafety_regression_test_dir", + "community": 158, + "community_name": "Inboxmessagesandboxclone", + "norm_label": "__dir" + }, + { + "label": "appsRoot", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.productionSafety.regression.test.ts", + "source_location": "L12", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_step8_productionsafety_regression_test_appsroot", + "community": 158, + "community_name": "Inboxmessagesandboxclone", + "norm_label": "appsroot" + }, + { + "label": "readApp()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.productionSafety.regression.test.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_step8_productionsafety_regression_test_readapp", + "community": 158, + "community_name": "Inboxmessagesandboxclone", + "norm_label": "readapp()" + }, + { + "label": "step8.sandboxHostUiAndClone.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.sandboxHostUiAndClone.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_step8_sandboxhostuiandclone_test", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "step8.sandboxhostuiandclone.test.ts" + }, + { + "label": "__dir", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.sandboxHostUiAndClone.test.ts", + "source_location": "L17", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_step8_sandboxhostuiandclone_test_dir", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "__dir" + }, + { + "label": "srcRoot", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.sandboxHostUiAndClone.test.ts", + "source_location": "L19", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_step8_sandboxhostuiandclone_test_srcroot", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "srcroot" + }, + { + "label": "appsRoot", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.sandboxHostUiAndClone.test.ts", + "source_location": "L21", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_step8_sandboxhostuiandclone_test_appsroot", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "appsroot" + }, + { + "label": "readRel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.sandboxHostUiAndClone.test.ts", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_step8_sandboxhostuiandclone_test_readrel", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "readrel()" + }, + { + "label": "readExt()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.sandboxHostUiAndClone.test.ts", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_step8_sandboxhostuiandclone_test_readext", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "readext()" + }, + { + "label": "step8.themeContrastRegressions.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.themeContrastRegressions.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_step8_themecontrastregressions_test", + "community": 364, + "community_name": "Step8themecontrastregressionstest", + "norm_label": "step8.themecontrastregressions.test.ts" + }, + { + "label": "__dir", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.themeContrastRegressions.test.ts", + "source_location": "L16", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_step8_themecontrastregressions_test_dir", + "community": 364, + "community_name": "Step8themecontrastregressionstest", + "norm_label": "__dir" + }, + { + "label": "srcRoot", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.themeContrastRegressions.test.ts", + "source_location": "L17", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_step8_themecontrastregressions_test_srcroot", + "community": 364, + "community_name": "Step8themecontrastregressionstest", + "norm_label": "srcroot" + }, + { + "label": "readRel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.themeContrastRegressions.test.ts", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_step8_themecontrastregressions_test_readrel", + "community": 364, + "community_name": "Step8themecontrastregressionstest", + "norm_label": "readrel()" + }, + { + "label": "extractCssSection()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.themeContrastRegressions.test.ts", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_step8_themecontrastregressions_test_extractcsssection", + "community": 364, + "community_name": "Step8themecontrastregressionstest", + "norm_label": "extractcsssection()" + }, + { + "label": "hexToRgb()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.themeContrastRegressions.test.ts", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_step8_themecontrastregressions_test_hextorgb", + "community": 364, + "community_name": "Step8themecontrastregressionstest", + "norm_label": "hextorgb()" + }, + { + "label": "channelLuminance()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.themeContrastRegressions.test.ts", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_step8_themecontrastregressions_test_channelluminance", + "community": 364, + "community_name": "Step8themecontrastregressionstest", + "norm_label": "channelluminance()" + }, + { + "label": "relativeLuminance()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.themeContrastRegressions.test.ts", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_step8_themecontrastregressions_test_relativeluminance", + "community": 364, + "community_name": "Step8themecontrastregressionstest", + "norm_label": "relativeluminance()" + }, + { + "label": "contrastRatio()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.themeContrastRegressions.test.ts", + "source_location": "L52", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_step8_themecontrastregressions_test_contrastratio", + "community": 364, + "community_name": "Step8themecontrastregressionstest", + "norm_label": "contrastratio()" + }, + { + "label": "MANUAL_STEP8_THEME_SCREENSHOTS", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.themeContrastRegressions.test.ts", + "source_location": "L166", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_step8_themecontrastregressions_test_manual_step8_theme_screenshots", + "community": 364, + "community_name": "Step8themecontrastregressionstest", + "norm_label": "manual_step8_theme_screenshots" + }, + { + "label": "step9.regression.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step9.regression.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_step9_regression_test", + "community": 159, + "community_name": "Hostaitargetconnectionpresentation", + "norm_label": "step9.regression.test.ts" + }, + { + "label": "hostRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step9.regression.test.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_tests_step9_regression_test_hostrow", + "community": 159, + "community_name": "Hostaitargetconnectionpresentation", + "norm_label": "hostrow()" + }, + { + "label": "aiExecutionContextFromSelection.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/aiExecutionContextFromSelection.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_aiexecutioncontextfromselection", + "community": 166, + "community_name": "LLM #166", + "norm_label": "aiexecutioncontextfromselection.ts" + }, + { + "label": "AiExecutionContextIpcPayload", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/aiExecutionContextFromSelection.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_aiexecutioncontextfromselection_aiexecutioncontextipcpayload", + "community": 166, + "community_name": "LLM #166", + "norm_label": "aiexecutioncontextipcpayload" + }, + { + "label": "normalizeModelName()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/aiExecutionContextFromSelection.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_aiexecutioncontextfromselection_normalizemodelname", + "community": 166, + "community_name": "LLM #166", + "norm_label": "normalizemodelname()" + }, + { + "label": "buildAiExecutionContextIpcPayload()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/aiExecutionContextFromSelection.ts", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_aiexecutioncontextfromselection_buildaiexecutioncontextipcpayload", + "community": 166, + "community_name": "LLM #166", + "norm_label": "buildaiexecutioncontextipcpayload()" + }, + { + "label": "appendHostRowsFromListInference.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/appendHostRowsFromListInference.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_appendhostrowsfromlistinference", + "community": 159, + "community_name": "Hostaitargetconnectionpresentation", + "norm_label": "appendhostrowsfromlistinference.ts" + }, + { + "label": "HostModelRow", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/appendHostRowsFromListInference.ts", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_appendhostrowsfromlistinference_hostmodelrow", + "community": 159, + "community_name": "Hostaitargetconnectionpresentation", + "norm_label": "hostmodelrow" + }, + { + "label": "appendHostRowsFromListInference()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/appendHostRowsFromListInference.ts", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_appendhostrowsfromlistinference_appendhostrowsfromlistinference", + "community": 159, + "community_name": "Hostaitargetconnectionpresentation", + "norm_label": "appendhostrowsfromlistinference()" + }, + { + "label": "autoOptimizationEngine.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationEngine.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_autooptimizationengine", + "community": 213, + "community_name": "Autooptimizationfingerprint", + "norm_label": "autooptimizationengine.ts" + }, + { + "label": "newRunId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationEngine.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_autooptimizationengine_newrunid", + "community": 213, + "community_name": "Autooptimizationfingerprint", + "norm_label": "newrunid()" + }, + { + "label": "startAutoOptimization()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationEngine.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_autooptimizationengine_startautooptimization", + "community": 213, + "community_name": "Autooptimizationfingerprint", + "norm_label": "startautooptimization()" + }, + { + "label": "stopAutoOptimization()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationEngine.ts", + "source_location": "L68", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_autooptimizationengine_stopautooptimization", + "community": 213, + "community_name": "Autooptimizationfingerprint", + "norm_label": "stopautooptimization()" + }, + { + "label": "triggerSnapshotOptimization()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationEngine.ts", + "source_location": "L82", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_autooptimizationengine_triggersnapshotoptimization", + "community": 213, + "community_name": "Autooptimizationfingerprint", + "norm_label": "triggersnapshotoptimization()" + }, + { + "label": "runTrigger()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationEngine.ts", + "source_location": "L95", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_autooptimizationengine_runtrigger", + "community": 213, + "community_name": "Autooptimizationfingerprint", + "norm_label": "runtrigger()" + }, + { + "label": "triggerOptimizationRun()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationEngine.ts", + "source_location": "L135", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_autooptimizationengine_triggeroptimizationrun", + "community": 213, + "community_name": "Autooptimizationfingerprint", + "norm_label": "triggeroptimizationrun()" + }, + { + "label": "autoOptimizationFingerprint.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationFingerprint.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_autooptimizationfingerprint", + "community": 213, + "community_name": "Autooptimizationfingerprint", + "norm_label": "autooptimizationfingerprint.ts" + }, + { + "label": "OptimizationFingerprint", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationFingerprint.ts", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_autooptimizationfingerprint_optimizationfingerprint", + "community": 213, + "community_name": "Autooptimizationfingerprint", + "norm_label": "optimizationfingerprint" + }, + { + "label": "quickHash()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationFingerprint.ts", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_autooptimizationfingerprint_quickhash", + "community": 213, + "community_name": "Autooptimizationfingerprint", + "norm_label": "quickhash()" + }, + { + "label": "getLastFingerprint()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationFingerprint.ts", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_autooptimizationfingerprint_getlastfingerprint", + "community": 213, + "community_name": "Autooptimizationfingerprint", + "norm_label": "getlastfingerprint()" + }, + { + "label": "setLastFingerprint()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationFingerprint.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_autooptimizationfingerprint_setlastfingerprint", + "community": 213, + "community_name": "Autooptimizationfingerprint", + "norm_label": "setlastfingerprint()" + }, + { + "label": "clearLastFingerprint()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationFingerprint.ts", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_autooptimizationfingerprint_clearlastfingerprint", + "community": 213, + "community_name": "Autooptimizationfingerprint", + "norm_label": "clearlastfingerprint()" + }, + { + "label": "computeProjectFingerprint()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationFingerprint.ts", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_autooptimizationfingerprint_computeprojectfingerprint", + "community": 213, + "community_name": "Autooptimizationfingerprint", + "norm_label": "computeprojectfingerprint()" + }, + { + "label": "computeSidebarFingerprint()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationFingerprint.ts", + "source_location": "L76", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_autooptimizationfingerprint_computesidebarfingerprint", + "community": 213, + "community_name": "Autooptimizationfingerprint", + "norm_label": "computesidebarfingerprint()" + }, + { + "label": "computeDomFingerprint()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationFingerprint.ts", + "source_location": "L98", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_autooptimizationfingerprint_computedomfingerprint", + "community": 213, + "community_name": "Autooptimizationfingerprint", + "norm_label": "computedomfingerprint()" + }, + { + "label": "mergeOptimizationFingerprint()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationFingerprint.ts", + "source_location": "L109", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_autooptimizationfingerprint_mergeoptimizationfingerprint", + "community": 213, + "community_name": "Autooptimizationfingerprint", + "norm_label": "mergeoptimizationfingerprint()" + }, + { + "label": "fingerprintsMatch()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationFingerprint.ts", + "source_location": "L127", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_autooptimizationfingerprint_fingerprintsmatch", + "community": 213, + "community_name": "Autooptimizationfingerprint", + "norm_label": "fingerprintsmatch()" + }, + { + "label": "autoOptimizationGuards.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationGuards.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_autooptimizationguards", + "community": 72, + "community_name": "Services", + "norm_label": "autooptimizationguards.ts" + }, + { + "label": "hasLinkedSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationGuards.ts", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_autooptimizationguards_haslinkedsession", + "community": 72, + "community_name": "Services", + "norm_label": "haslinkedsession()" + }, + { + "label": "resolveProject()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationGuards.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_autooptimizationguards_resolveproject", + "community": 72, + "community_name": "Services", + "norm_label": "resolveproject()" + }, + { + "label": "canRunOptimization()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationGuards.ts", + "source_location": "L74", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_autooptimizationguards_canrunoptimization", + "community": 72, + "community_name": "Services", + "norm_label": "canrunoptimization()" + }, + { + "label": "applyOptimizationGuardFallback()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationGuards.ts", + "source_location": "L135", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_autooptimizationguards_applyoptimizationguardfallback", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "applyoptimizationguardfallback()" + }, + { + "label": "autoSortSessionReviewCharts.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/autoSortSessionReviewCharts.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_autosortsessionreviewcharts_test", + "community": 231, + "community_name": "Autosortsessionreview", + "norm_label": "autosortsessionreviewcharts.test.ts" + }, + { + "label": "row()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/autoSortSessionReviewCharts.test.ts", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_autosortsessionreviewcharts_test_row", + "community": 231, + "community_name": "Autosortsessionreview", + "norm_label": "row()" + }, + { + "label": "autoSortSessionReviewCharts.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/autoSortSessionReviewCharts.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_autosortsessionreviewcharts", + "community": 231, + "community_name": "Autosortsessionreview", + "norm_label": "autosortsessionreviewcharts.ts" + }, + { + "label": "TOP_SENDERS_MAX", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/autoSortSessionReviewCharts.ts", + "source_location": "L8", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_autosortsessionreviewcharts_top_senders_max", + "community": 231, + "community_name": "Autosortsessionreview", + "norm_label": "top_senders_max" + }, + { + "label": "RECEIVED_DAY_BUCKETS", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/autoSortSessionReviewCharts.ts", + "source_location": "L9", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_autosortsessionreviewcharts_received_day_buckets", + "community": 231, + "community_name": "Autosortsessionreview", + "norm_label": "received_day_buckets" + }, + { + "label": "SENDER_BAR_COLORS", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/autoSortSessionReviewCharts.ts", + "source_location": "L11", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_autosortsessionreviewcharts_sender_bar_colors", + "community": 231, + "community_name": "Autosortsessionreview", + "norm_label": "sender_bar_colors" + }, + { + "label": "truncateSenderLabel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/autoSortSessionReviewCharts.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_autosortsessionreviewcharts_truncatesenderlabel", + "community": 231, + "community_name": "Autosortsessionreview", + "norm_label": "truncatesenderlabel()" + }, + { + "label": "aggregateTopSenders()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/autoSortSessionReviewCharts.ts", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_autosortsessionreviewcharts_aggregatetopsenders", + "community": 231, + "community_name": "Autosortsessionreview", + "norm_label": "aggregatetopsenders()" + }, + { + "label": "aggregateReceivedByDay()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/autoSortSessionReviewCharts.ts", + "source_location": "L42", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_autosortsessionreviewcharts_aggregatereceivedbyday", + "community": 231, + "community_name": "Autosortsessionreview", + "norm_label": "aggregatereceivedbyday()" + }, + { + "label": "aggregateReplyNeededForSessionReview()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/autoSortSessionReviewCharts.ts", + "source_location": "L73", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_autosortsessionreviewcharts_aggregatereplyneededforsessionreview", + "community": 231, + "community_name": "Autosortsessionreview", + "norm_label": "aggregatereplyneededforsessionreview()" + }, + { + "label": "formatSessionReviewReceivedAtShort()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/autoSortSessionReviewCharts.ts", + "source_location": "L90", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_autosortsessionreviewcharts_formatsessionreviewreceivedatshort", + "community": 231, + "community_name": "Autosortsessionreview", + "norm_label": "formatsessionreviewreceivedatshort()" + }, + { + "label": "lib/autosortDiagnostics.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/autosortDiagnostics.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_autosortdiagnostics", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "lib/autosortdiagnostics.ts" + }, + { + "label": "DEBUG_AUTOSORT_DIAGNOSTICS", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/autosortDiagnostics.ts", + "source_location": "L19", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_autosortdiagnostics_debug_autosort_diagnostics", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "debug_autosort_diagnostics" + }, + { + "label": "DEBUG_AUTOSORT_TIMING", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/autosortDiagnostics.ts", + "source_location": "L25", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_autosortdiagnostics_debug_autosort_timing", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "debug_autosort_timing" + }, + { + "label": "AutosortTimingCounters", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/autosortDiagnostics.ts", + "source_location": "L27", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_autosortdiagnostics_autosorttimingcounters", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "autosorttimingcounters" + }, + { + "label": "emptyCounters()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/autosortDiagnostics.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_autosortdiagnostics_emptycounters", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "emptycounters()" + }, + { + "label": "_timingCounters", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/autosortDiagnostics.ts", + "source_location": "L46", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_autosortdiagnostics_timingcounters", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "_timingcounters" + }, + { + "label": "autosortTimingRunStart()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/autosortDiagnostics.ts", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_autosortdiagnostics_autosorttimingrunstart", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "autosorttimingrunstart()" + }, + { + "label": "autosortTimingRunActive()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/autosortDiagnostics.ts", + "source_location": "L67", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_autosortdiagnostics_autosorttimingrunactive", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "autosorttimingrunactive()" + }, + { + "label": "autosortTimingBump()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/autosortDiagnostics.ts", + "source_location": "L71", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_autosortdiagnostics_autosorttimingbump", + "community": 81, + "community_name": "Stores", + "norm_label": "autosorttimingbump()" + }, + { + "label": "autosortTimingAccumulateOuterChunk()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/autosortDiagnostics.ts", + "source_location": "L77", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_autosortdiagnostics_autosorttimingaccumulateouterchunk", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "autosorttimingaccumulateouterchunk()" + }, + { + "label": "autosortTimingNoteCompletenessRetry()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/autosortDiagnostics.ts", + "source_location": "L84", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_autosortdiagnostics_autosorttimingnotecompletenessretry", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "autosorttimingnotecompletenessretry()" + }, + { + "label": "autosortTimingSetPostRunTailMs()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/autosortDiagnostics.ts", + "source_location": "L90", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_autosortdiagnostics_autosorttimingsetpostruntailms", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "autosorttimingsetpostruntailms()" + }, + { + "label": "autosortTimingRunEnd()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/autosortDiagnostics.ts", + "source_location": "L96", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_autosortdiagnostics_autosorttimingrunend", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "autosorttimingrunend()" + }, + { + "label": "autosortTimingLog()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/autosortDiagnostics.ts", + "source_location": "L134", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_autosortdiagnostics_autosorttiminglog", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "autosorttiminglog()" + }, + { + "label": "setAutosortDiagRunId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/autosortDiagnostics.ts", + "source_location": "L141", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_autosortdiagnostics_setautosortdiagrunid", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "setautosortdiagrunid()" + }, + { + "label": "getAutosortDiagRunId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/autosortDiagnostics.ts", + "source_location": "L145", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_autosortdiagnostics_getautosortdiagrunid", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "getautosortdiagrunid()" + }, + { + "label": "autosortDiagLog()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/autosortDiagnostics.ts", + "source_location": "L149", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_autosortdiagnostics_autosortdiaglog", + "community": 205, + "community_name": "Stores #205", + "norm_label": "autosortdiaglog()" + }, + { + "label": "beapInboxActionTooltips.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/beapInboxActionTooltips.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_beapinboxactiontooltips", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "beapinboxactiontooltips.ts" + }, + { + "label": "beapHostSandboxCloneTooltipForAvailability()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/beapInboxActionTooltips.ts", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_beapinboxactiontooltips_beaphostsandboxclonetooltipforavailability", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "beaphostsandboxclonetooltipforavailability()" + }, + { + "label": "BEAP_INBOX_REDIRECT_TIP", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/beapInboxActionTooltips.ts", + "source_location": "L25", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_beapinboxactiontooltips_beap_inbox_redirect_tip", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "beap_inbox_redirect_tip" + }, + { + "label": "BEAP_INBOX_REDIRECT_ARIA", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/beapInboxActionTooltips.ts", + "source_location": "L27", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_beapinboxactiontooltips_beap_inbox_redirect_aria", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "beap_inbox_redirect_aria" + }, + { + "label": "beapInboxRedirectTooltipPropsForRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/beapInboxActionTooltips.ts", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_beapinboxactiontooltips_beapinboxredirecttooltippropsforrow", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "beapinboxredirecttooltippropsforrow()" + }, + { + "label": "beapInboxRedirectTooltipPropsForDetail()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/beapInboxActionTooltips.ts", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_beapinboxactiontooltips_beapinboxredirecttooltippropsfordetail", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "beapinboxredirecttooltippropsfordetail()" + }, + { + "label": "BEAP_INBOX_REPLY_TOOLTIP", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/beapInboxActionTooltips.ts", + "source_location": "L39", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_beapinboxactiontooltips_beap_inbox_reply_tooltip", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "beap_inbox_reply_tooltip" + }, + { + "label": "beapInboxReplyTooltipProps()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/beapInboxActionTooltips.ts", + "source_location": "L41", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_beapinboxactiontooltips_beapinboxreplytooltipprops", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "beapinboxreplytooltipprops()" + }, + { + "label": "beapInboxCloneToSandbox.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox", + "community": 139, + "community_name": "Handshake Beapbuilder Shims", + "norm_label": "beapinboxclonetosandbox.ts" + }, + { + "label": "buildCloneProvenanceObject()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_buildcloneprovenanceobject", + "community": 139, + "community_name": "Handshake Beapbuilder Shims", + "norm_label": "buildcloneprovenanceobject()" + }, + { + "label": "BeapInboxCloneAuditMetadata", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L63", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_beapinboxcloneauditmetadata", + "community": 139, + "community_name": "Handshake Beapbuilder Shims", + "norm_label": "beapinboxcloneauditmetadata" + }, + { + "label": "BeapInboxCloneToSandboxResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L81", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_beapinboxclonetosandboxresult", + "community": 139, + "community_name": "Handshake Beapbuilder Shims", + "norm_label": "beapinboxclonetosandboxresult" + }, + { + "label": "waitForCloneDeliveryAck()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L104", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_waitforclonedeliveryack", + "community": 139, + "community_name": "Handshake Beapbuilder Shims", + "norm_label": "waitforclonedeliveryack()" + }, + { + "label": "cloneBeapInboxToSandbox()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L139", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_clonebeapinboxtosandbox", + "community": 139, + "community_name": "Handshake Beapbuilder Shims", + "norm_label": "clonebeapinboxtosandbox()" + }, + { + "label": "buildCloneMetadata()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L281", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_buildclonemetadata", + "community": 139, + "community_name": "Handshake Beapbuilder Shims", + "norm_label": "buildclonemetadata()" + }, + { + "label": "insertOutboxEntry()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L305", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_insertoutboxentry", + "community": 139, + "community_name": "Handshake Beapbuilder Shims", + "norm_label": "insertoutboxentry()" + }, + { + "label": "BeapInboxClonePrepareFailure", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L350", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_beapinboxclonepreparefailure", + "community": 139, + "community_name": "Handshake Beapbuilder Shims", + "norm_label": "beapinboxclonepreparefailure" + }, + { + "label": "sandboxCloneFailureUserText()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L358", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_sandboxclonefailureusertext", + "community": 139, + "community_name": "Handshake Beapbuilder Shims", + "norm_label": "sandboxclonefailureusertext()" + }, + { + "label": "sandboxCloneFeedbackFromOutcome()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L387", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_sandboxclonefeedbackfromoutcome", + "community": 139, + "community_name": "Handshake Beapbuilder Shims", + "norm_label": "sandboxclonefeedbackfromoutcome()" + }, + { + "label": "beapInboxCloneToSandboxApi()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L479", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_beapinboxclonetosandboxapi", + "community": 139, + "community_name": "Handshake Beapbuilder Shims", + "norm_label": "beapinboxclonetosandboxapi()" + }, + { + "label": "beapInboxHostSandboxClickPolicy.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/beapInboxHostSandboxClickPolicy.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "beapinboxhostsandboxclickpolicy.ts" + }, + { + "label": "HostSandboxCloneClickAction", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/beapInboxHostSandboxClickPolicy.ts", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy_hostsandboxcloneclickaction", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "hostsandboxcloneclickaction" + }, + { + "label": "resolveHostSandboxCloneClickAction()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/beapInboxHostSandboxClickPolicy.ts", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy_resolvehostsandboxcloneclickaction", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "resolvehostsandboxcloneclickaction()" + }, + { + "label": "sandboxCloneUnavailableDialogVariant()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/beapInboxHostSandboxClickPolicy.ts", + "source_location": "L57", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy_sandboxcloneunavailabledialogvariant", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "sandboxcloneunavailabledialogvariant()" + }, + { + "label": "SANDBOX_KEYING_INCOMPLETE_USER_MESSAGE", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/beapInboxHostSandboxClickPolicy.ts", + "source_location": "L64", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy_sandbox_keying_incomplete_user_message", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "sandbox_keying_incomplete_user_message" + }, + { + "label": "SANDBOX_IDENTITY_INCOMPLETE_USER_MESSAGE", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/beapInboxHostSandboxClickPolicy.ts", + "source_location": "L68", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy_sandbox_identity_incomplete_user_message", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "sandbox_identity_incomplete_user_message" + }, + { + "label": "SandboxTargetResolutionLogDecision", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/beapInboxHostSandboxClickPolicy.ts", + "source_location": "L71", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy_sandboxtargetresolutionlogdecision", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "sandboxtargetresolutionlogdecision" + }, + { + "label": "toProductSandboxTargetDecision()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/beapInboxHostSandboxClickPolicy.ts", + "source_location": "L84", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy_toproductsandboxtargetdecision", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "toproductsandboxtargetdecision()" + }, + { + "label": "logSandboxTargetResolution()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/beapInboxHostSandboxClickPolicy.ts", + "source_location": "L120", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy_logsandboxtargetresolution", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "logsandboxtargetresolution()" + }, + { + "label": "mapSandboxClickActionToResolutionDecision()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/beapInboxHostSandboxClickPolicy.ts", + "source_location": "L163", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy_mapsandboxclickactiontoresolutiondecision", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "mapsandboxclickactiontoresolutiondecision()" + }, + { + "label": "beapInboxSandboxVisibility.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/beapInboxSandboxVisibility.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility", + "community": 186, + "community_name": "Stores #186", + "norm_label": "beapinboxsandboxvisibility.ts" + }, + { + "label": "CanShowSandboxCloneIconParams", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/beapInboxSandboxVisibility.ts", + "source_location": "L16", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility_canshowsandboxcloneiconparams", + "community": 186, + "community_name": "Stores #186", + "norm_label": "canshowsandboxcloneiconparams" + }, + { + "label": "CanShowSandboxCloneActionParams", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/beapInboxSandboxVisibility.ts", + "source_location": "L30", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility_canshowsandboxcloneactionparams", + "community": 186, + "community_name": "Stores #186", + "norm_label": "canshowsandboxcloneactionparams" + }, + { + "label": "SandboxCloneEligibilityDetail", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/beapInboxSandboxVisibility.ts", + "source_location": "L32", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility_sandboxcloneeligibilitydetail", + "community": 186, + "community_name": "Stores #186", + "norm_label": "sandboxcloneeligibilitydetail" + }, + { + "label": "SandboxActionHiddenReason", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/beapInboxSandboxVisibility.ts", + "source_location": "L41", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility_sandboxactionhiddenreason", + "community": 186, + "community_name": "Stores #186", + "norm_label": "sandboxactionhiddenreason" + }, + { + "label": "getSandboxCloneEligibilityDetail()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/beapInboxSandboxVisibility.ts", + "source_location": "L46", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility_getsandboxcloneeligibilitydetail", + "community": 186, + "community_name": "Stores #186", + "norm_label": "getsandboxcloneeligibilitydetail()" + }, + { + "label": "toSandboxActionHiddenReason()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/beapInboxSandboxVisibility.ts", + "source_location": "L79", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility_tosandboxactionhiddenreason", + "community": 186, + "community_name": "Stores #186", + "norm_label": "tosandboxactionhiddenreason()" + }, + { + "label": "canShowSandboxCloneIcon()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/beapInboxSandboxVisibility.ts", + "source_location": "L91", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility_canshowsandboxcloneicon", + "community": 186, + "community_name": "Stores #186", + "norm_label": "canshowsandboxcloneicon()" + }, + { + "label": "canShowSandboxCloneAction", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/beapInboxSandboxVisibility.ts", + "source_location": "L96", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility_canshowsandboxcloneaction", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "canshowsandboxcloneaction" + }, + { + "label": "canShowSandboxAction", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/beapInboxSandboxVisibility.ts", + "source_location": "L98", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility_canshowsandboxaction", + "community": 186, + "community_name": "Stores #186", + "norm_label": "canshowsandboxaction" + }, + { + "label": "logOrchestratorRoleModeConflict()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/beapInboxSandboxVisibility.ts", + "source_location": "L105", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility_logorchestratorrolemodeconflict", + "community": 186, + "community_name": "Stores #186", + "norm_label": "logorchestratorrolemodeconflict()" + }, + { + "label": "logSandboxCloneEligibilityDebug()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/beapInboxSandboxVisibility.ts", + "source_location": "L128", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility_logsandboxcloneeligibilitydebug", + "community": 186, + "community_name": "Stores #186", + "norm_label": "logsandboxcloneeligibilitydebug()" + }, + { + "label": "logSandboxActionVisibility()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/beapInboxSandboxVisibility.ts", + "source_location": "L152", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility_logsandboxactionvisibility", + "community": 186, + "community_name": "Stores #186", + "norm_label": "logsandboxactionvisibility()" + }, + { + "label": "beapInboxVisibleSandboxClone.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/beapInboxVisibleSandboxClone.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_beapinboxvisiblesandboxclone", + "community": 508, + "community_name": "Beapinboxvisiblesandboxclone", + "norm_label": "beapinboxvisiblesandboxclone.ts" + }, + { + "label": "canCloneVisibleInboxMessageToSandbox()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/beapInboxVisibleSandboxClone.ts", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_beapinboxvisiblesandboxclone_canclonevisibleinboxmessagetosandbox", + "community": 508, + "community_name": "Beapinboxvisiblesandboxclone", + "norm_label": "canclonevisibleinboxmessagetosandbox()" + }, + { + "label": "beapPackageAttachmentPreview.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/beapPackageAttachmentPreview.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_beappackageattachmentpreview", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "beappackageattachmentpreview.ts" + }, + { + "label": "extractPdfViaMainProcess()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/beapPackageAttachmentPreview.ts", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_beappackageattachmentpreview_extractpdfviamainprocess", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "extractpdfviamainprocess()" + }, + { + "label": "base64ToUtf8()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/beapPackageAttachmentPreview.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_beappackageattachmentpreview_base64toutf8", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "base64toutf8()" + }, + { + "label": "extractTextForPackagePreview()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/beapPackageAttachmentPreview.ts", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_beappackageattachmentpreview_extracttextforpackagepreview", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "extracttextforpackagepreview()" + }, + { + "label": "beapSandboxCloneDeliverySemantics.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/beapSandboxCloneDeliverySemantics.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_beapsandboxclonedeliverysemantics", + "community": 139, + "community_name": "Handshake Beapbuilder Shims", + "norm_label": "beapsandboxclonedeliverysemantics.ts" + }, + { + "label": "SandboxCloneMatrixDelivery", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/beapSandboxCloneDeliverySemantics.ts", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_beapsandboxclonedeliverysemantics_sandboxclonematrixdelivery", + "community": 139, + "community_name": "Handshake Beapbuilder Shims", + "norm_label": "sandboxclonematrixdelivery" + }, + { + "label": "mapCoordinationDeliveryToMatrixMode()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/beapSandboxCloneDeliverySemantics.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_beapsandboxclonedeliverysemantics_mapcoordinationdeliverytomatrixmode", + "community": 139, + "community_name": "Handshake Beapbuilder Shims", + "norm_label": "mapcoordinationdeliverytomatrixmode()" + }, + { + "label": "buildProjectSetupChatPrefix.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/buildProjectSetupChatPrefix.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_buildprojectsetupchatprefix", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "buildprojectsetupchatprefix.ts" + }, + { + "label": "clip()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/buildProjectSetupChatPrefix.ts", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_buildprojectsetupchatprefix_clip", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "clip()" + }, + { + "label": "buildProjectSetupChatPrefix()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/buildProjectSetupChatPrefix.ts", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_buildprojectsetupchatprefix_buildprojectsetupchatprefix", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "buildprojectsetupchatprefix()" + }, + { + "label": "coalescedListInferenceTargets.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/coalescedListInferenceTargets.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_coalescedlistinferencetargets", + "community": 377, + "community_name": "Coalescedlistinferencetargets", + "norm_label": "coalescedlistinferencetargets.ts" + }, + { + "label": "inFlight", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/coalescedListInferenceTargets.ts", + "source_location": "L8", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_coalescedlistinferencetargets_inflight", + "community": 377, + "community_name": "Coalescedlistinferencetargets", + "norm_label": "inflight" + }, + { + "label": "recentlyCompleted", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/coalescedListInferenceTargets.ts", + "source_location": "L9", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_coalescedlistinferencetargets_recentlycompleted", + "community": 377, + "community_name": "Coalescedlistinferencetargets", + "norm_label": "recentlycompleted" + }, + { + "label": "CoalescedListInferenceInvokeOpts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/coalescedListInferenceTargets.ts", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_coalescedlistinferencetargets_coalescedlistinferenceinvokeopts", + "community": 377, + "community_name": "Coalescedlistinferencetargets", + "norm_label": "coalescedlistinferenceinvokeopts" + }, + { + "label": "cacheKey()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/coalescedListInferenceTargets.ts", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_coalescedlistinferencetargets_cachekey", + "community": 377, + "community_name": "Coalescedlistinferencetargets", + "norm_label": "cachekey()" + }, + { + "label": "handshakeLogLabel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/coalescedListInferenceTargets.ts", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_coalescedlistinferencetargets_handshakeloglabel", + "community": 377, + "community_name": "Coalescedlistinferencetargets", + "norm_label": "handshakeloglabel()" + }, + { + "label": "resetCoalescedListInferenceTargetsForTests()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/coalescedListInferenceTargets.ts", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_coalescedlistinferencetargets_resetcoalescedlistinferencetargetsfortests", + "community": 377, + "community_name": "Coalescedlistinferencetargets", + "norm_label": "resetcoalescedlistinferencetargetsfortests()" + }, + { + "label": "coalescedListInferenceTargetsInvoke()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/coalescedListInferenceTargets.ts", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_coalescedlistinferencetargets_coalescedlistinferencetargetsinvoke", + "community": 377, + "community_name": "Coalescedlistinferencetargets", + "norm_label": "coalescedlistinferencetargetsinvoke()" + }, + { + "label": "debugLogClipboard.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/debugLogClipboard.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_debuglogclipboard", + "community": 331, + "community_name": "Debuglogclipboard", + "norm_label": "debuglogclipboard.ts" + }, + { + "label": "LogEntry", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/debugLogClipboard.ts", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_debuglogclipboard_logentry", + "community": 331, + "community_name": "Debuglogclipboard", + "norm_label": "logentry" + }, + { + "label": "formatLineDisplay()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/debugLogClipboard.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_debuglogclipboard_formatlinedisplay", + "community": 331, + "community_name": "Debuglogclipboard", + "norm_label": "formatlinedisplay()" + }, + { + "label": "formatLinePlain()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/debugLogClipboard.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_debuglogclipboard_formatlineplain", + "community": 331, + "community_name": "Debuglogclipboard", + "norm_label": "formatlineplain()" + }, + { + "label": "buildClipboardText()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/debugLogClipboard.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_debuglogclipboard_buildclipboardtext", + "community": 331, + "community_name": "Debuglogclipboard", + "norm_label": "buildclipboardtext()" + }, + { + "label": "filterLogEntries()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/debugLogClipboard.ts", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_debuglogclipboard_filterlogentries", + "community": 331, + "community_name": "Debuglogclipboard", + "norm_label": "filterlogentries()" + }, + { + "label": "dedicatedSandboxIngestionUi.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/dedicatedSandboxIngestionUi.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_dedicatedsandboxingestionui", + "community": 150, + "community_name": "Stores #150", + "norm_label": "dedicatedsandboxingestionui.ts" + }, + { + "label": "SandboxTopologyKind", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/dedicatedSandboxIngestionUi.ts", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_dedicatedsandboxingestionui_sandboxtopologykind", + "community": 150, + "community_name": "Stores #150", + "norm_label": "sandboxtopologykind" + }, + { + "label": "DEDICATED_SANDBOX_HOST_TRIGGERED_STATUS", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/dedicatedSandboxIngestionUi.ts", + "source_location": "L9", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_dedicatedsandboxingestionui_dedicated_sandbox_host_triggered_status", + "community": 150, + "community_name": "Stores #150", + "norm_label": "dedicated_sandbox_host_triggered_status" + }, + { + "label": "DEDICATED_SANDBOX_SYNC_WINDOW_HINT", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/dedicatedSandboxIngestionUi.ts", + "source_location": "L13", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_dedicatedsandboxingestionui_dedicated_sandbox_sync_window_hint", + "community": 150, + "community_name": "Stores #150", + "norm_label": "dedicated_sandbox_sync_window_hint" + }, + { + "label": "isDedicatedSandboxHostTriggeredIngestion()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/dedicatedSandboxIngestionUi.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_dedicatedsandboxingestionui_isdedicatedsandboxhosttriggeredingestion", + "community": 150, + "community_name": "Stores #150", + "norm_label": "isdedicatedsandboxhosttriggeredingestion()" + }, + { + "label": "dedicatedSandboxMissingReadProviderCopy.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/dedicatedSandboxMissingReadProviderCopy.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_dedicatedsandboxmissingreadprovidercopy", + "community": 135, + "community_name": "Email Ingestionpolltrigger", + "norm_label": "dedicatedsandboxmissingreadprovidercopy.ts" + }, + { + "label": "HOST_SANDBOX_READ_ACCOUNT_MISSING_HINT", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/dedicatedSandboxMissingReadProviderCopy.ts", + "source_location": "L5", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_dedicatedsandboxmissingreadprovidercopy_host_sandbox_read_account_missing_hint", + "community": 135, + "community_name": "Email Ingestionpolltrigger", + "norm_label": "host_sandbox_read_account_missing_hint" + }, + { + "label": "HOST_SANDBOX_POLL_UNREACHABLE_HINT", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/dedicatedSandboxMissingReadProviderCopy.ts", + "source_location": "L8", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_dedicatedsandboxmissingreadprovidercopy_host_sandbox_poll_unreachable_hint", + "community": 135, + "community_name": "Email Ingestionpolltrigger", + "norm_label": "host_sandbox_poll_unreachable_hint" + }, + { + "label": "SANDBOX_READ_ACCOUNT_SETUP_DETAIL", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/dedicatedSandboxMissingReadProviderCopy.ts", + "source_location": "L11", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_dedicatedsandboxmissingreadprovidercopy_sandbox_read_account_setup_detail", + "community": 135, + "community_name": "Email Ingestionpolltrigger", + "norm_label": "sandbox_read_account_setup_detail" + }, + { + "label": "SANDBOX_READ_ACCOUNT_SETUP_TITLE", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/dedicatedSandboxMissingReadProviderCopy.ts", + "source_location": "L14", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_dedicatedsandboxmissingreadprovidercopy_sandbox_read_account_setup_title", + "community": 135, + "community_name": "Email Ingestionpolltrigger", + "norm_label": "sandbox_read_account_setup_title" + }, + { + "label": "SANDBOX_READ_ACCOUNT_SETUP_CTA", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/dedicatedSandboxMissingReadProviderCopy.ts", + "source_location": "L16", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_dedicatedsandboxmissingreadprovidercopy_sandbox_read_account_setup_cta", + "community": 135, + "community_name": "Email Ingestionpolltrigger", + "norm_label": "sandbox_read_account_setup_cta" + }, + { + "label": "fetchAnalysisDashboardSnapshot.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/fetchAnalysisDashboardSnapshot.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot", + "community": 125, + "community_name": "Analysis Dashboard #125", + "norm_label": "fetchanalysisdashboardsnapshot.ts" + }, + { + "label": "PROJECT_SECTION", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/fetchAnalysisDashboardSnapshot.ts", + "source_location": "L23", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot_project_section", + "community": 125, + "community_name": "Analysis Dashboard #125", + "norm_label": "project_section" + }, + { + "label": "HANDSHAKE_STATES", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/fetchAnalysisDashboardSnapshot.ts", + "source_location": "L29", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot_handshake_states", + "community": 125, + "community_name": "Analysis Dashboard #125", + "norm_label": "handshake_states" + }, + { + "label": "isHandshakeState()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/fetchAnalysisDashboardSnapshot.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot_ishandshakestate", + "community": 125, + "community_name": "Analysis Dashboard #125", + "norm_label": "ishandshakestate()" + }, + { + "label": "summarizeHandshakes()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/fetchAnalysisDashboardSnapshot.ts", + "source_location": "L42", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot_summarizehandshakes", + "community": 125, + "community_name": "Analysis Dashboard #125", + "norm_label": "summarizehandshakes()" + }, + { + "label": "wireToPoaeSection()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/fetchAnalysisDashboardSnapshot.ts", + "source_location": "L57", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot_wiretopoaesection", + "community": 125, + "community_name": "Analysis Dashboard #125", + "norm_label": "wiretopoaesection()" + }, + { + "label": "wireToSnapshot()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/fetchAnalysisDashboardSnapshot.ts", + "source_location": "L78", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot_wiretosnapshot", + "community": 125, + "community_name": "Analysis Dashboard #125", + "norm_label": "wiretosnapshot()" + }, + { + "label": "categoryMatches()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/fetchAnalysisDashboardSnapshot.ts", + "source_location": "L115", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot_categorymatches", + "community": 125, + "community_name": "Analysis Dashboard #125", + "norm_label": "categorymatches()" + }, + { + "label": "sumMatchingCategories()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/fetchAnalysisDashboardSnapshot.ts", + "source_location": "L123", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot_summatchingcategories", + "community": 125, + "community_name": "Analysis Dashboard #125", + "norm_label": "summatchingcategories()" + }, + { + "label": "deriveThreatMetrics()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/fetchAnalysisDashboardSnapshot.ts", + "source_location": "L142", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot_derivethreatmetrics", + "community": 125, + "community_name": "Analysis Dashboard #125", + "norm_label": "derivethreatmetrics()" + }, + { + "label": "deriveAutomationMetrics()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/fetchAnalysisDashboardSnapshot.ts", + "source_location": "L189", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot_deriveautomationmetrics", + "community": 125, + "community_name": "Analysis Dashboard #125", + "norm_label": "deriveautomationmetrics()" + }, + { + "label": "deriveTransportRatio()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/fetchAnalysisDashboardSnapshot.ts", + "source_location": "L213", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot_derivetransportratio", + "community": 125, + "community_name": "Analysis Dashboard #125", + "norm_label": "derivetransportratio()" + }, + { + "label": "deriveQueueVelocity()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/fetchAnalysisDashboardSnapshot.ts", + "source_location": "L239", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot_derivequeuevelocity", + "community": 125, + "community_name": "Analysis Dashboard #125", + "norm_label": "derivequeuevelocity()" + }, + { + "label": "FetchAnalysisDashboardSnapshotResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/fetchAnalysisDashboardSnapshot.ts", + "source_location": "L254", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot_fetchanalysisdashboardsnapshotresult", + "community": 125, + "community_name": "Analysis Dashboard #125", + "norm_label": "fetchanalysisdashboardsnapshotresult" + }, + { + "label": "fetchAnalysisDashboardSnapshot()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/fetchAnalysisDashboardSnapshot.ts", + "source_location": "L264", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot_fetchanalysisdashboardsnapshot", + "community": 125, + "community_name": "Analysis Dashboard #125", + "norm_label": "fetchanalysisdashboardsnapshot()" + }, + { + "label": "handshakeHealthBannerCopy.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/handshakeHealthBannerCopy.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_handshakehealthbannercopy", + "community": 106, + "community_name": "Handshake Shims", + "norm_label": "handshakehealthbannercopy.ts" + }, + { + "label": "formatPairing6()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/handshakeHealthBannerCopy.ts", + "source_location": "L3", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_handshakehealthbannercopy_formatpairing6", + "community": 106, + "community_name": "Handshake Shims", + "norm_label": "formatpairing6()" + }, + { + "label": "handshakeHealthBannerMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/handshakeHealthBannerCopy.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_handshakehealthbannercopy_handshakehealthbannermessage", + "community": 106, + "community_name": "Handshake Shims", + "norm_label": "handshakehealthbannermessage()" + }, + { + "label": "handshakeHealthDismissKey()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/handshakeHealthBannerCopy.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_handshakehealthbannercopy_handshakehealthdismisskey", + "community": 106, + "community_name": "Handshake Shims", + "norm_label": "handshakehealthdismisskey()" + }, + { + "label": "handshakeHealthIssueRank()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/handshakeHealthBannerCopy.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_handshakehealthbannercopy_handshakehealthissuerank", + "community": 106, + "community_name": "Handshake Shims", + "norm_label": "handshakehealthissuerank()" + }, + { + "label": "handshakeRecipientMap.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/handshakeRecipientMap.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_handshakerecipientmap", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "handshakerecipientmap.ts" + }, + { + "label": "handshakeRecordToSelectedRecipient()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/handshakeRecipientMap.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_handshakerecipientmap_handshakerecordtoselectedrecipient", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "handshakerecordtoselectedrecipient()" + }, + { + "label": "hostActiveModelSelection.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostActiveModelSelection.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostactivemodelselection", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "hostactivemodelselection.ts" + }, + { + "label": "HostAiSelectionSource", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostActiveModelSelection.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostactivemodelselection_hostaiselectionsource", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "hostaiselectionsource" + }, + { + "label": "getHostActiveModelIdFromTargets()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostActiveModelSelection.ts", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostactivemodelselection_gethostactivemodelidfromtargets", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "gethostactivemodelidfromtargets()" + }, + { + "label": "getHostActiveModelIdFromModels()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostActiveModelSelection.ts", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostactivemodelselection_gethostactivemodelidfrommodels", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "gethostactivemodelidfrommodels()" + }, + { + "label": "getFirstAvailableHostModelId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostActiveModelSelection.ts", + "source_location": "L42", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostactivemodelselection_getfirstavailablehostmodelid", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "getfirstavailablehostmodelid()" + }, + { + "label": "hostAiRemoteChatLane.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostAiRemoteChatLane.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostairemotechatlane", + "community": 166, + "community_name": "LLM #166", + "norm_label": "hostairemotechatlane.ts" + }, + { + "label": "HostModelRemoteLane", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostAiRemoteChatLane.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostairemotechatlane_hostmodelremotelane", + "community": 159, + "community_name": "Hostaitargetconnectionpresentation", + "norm_label": "hostmodelremotelane" + }, + { + "label": "inferHostModelRemoteLane()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostAiRemoteChatLane.ts", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostairemotechatlane_inferhostmodelremotelane", + "community": 166, + "community_name": "LLM #166", + "norm_label": "inferhostmodelremotelane()" + }, + { + "label": "findHostInferenceTargetRowForChatSelection()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostAiRemoteChatLane.ts", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostairemotechatlane_findhostinferencetargetrowforchatselection", + "community": 166, + "community_name": "LLM #166", + "norm_label": "findhostinferencetargetrowforchatselection()" + }, + { + "label": "electron-vite-project/src/lib/hostAiSelectorCopy.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostAiSelectorCopy.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostaiselectorcopy", + "community": 114, + "community_name": "Hostaiselectorcopy", + "norm_label": "electron-vite-project/src/lib/hostaiselectorcopy.ts" + }, + { + "label": "HOST_AI_OPTION_TOOLTIP", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostAiSelectorCopy.ts", + "source_location": "L6", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostaiselectorcopy_host_ai_option_tooltip", + "community": 114, + "community_name": "Hostaiselectorcopy", + "norm_label": "host_ai_option_tooltip" + }, + { + "label": "HOST_AI_UNREACHABLE_TOOLTIP", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostAiSelectorCopy.ts", + "source_location": "L9", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostaiselectorcopy_host_ai_unreachable_tooltip", + "community": 114, + "community_name": "Hostaiselectorcopy", + "norm_label": "host_ai_unreachable_tooltip" + }, + { + "label": "HOST_AI_PATH_UNAVAILABLE_TOOLTIP", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostAiSelectorCopy.ts", + "source_location": "L15", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostaiselectorcopy_host_ai_path_unavailable_tooltip", + "community": 114, + "community_name": "Hostaiselectorcopy", + "norm_label": "host_ai_path_unavailable_tooltip" + }, + { + "label": "HOST_AI_P2P_OFFLINE_DETAIL_TOOLTIP", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostAiSelectorCopy.ts", + "source_location": "L24", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostaiselectorcopy_host_ai_p2p_offline_detail_tooltip", + "community": 114, + "community_name": "Hostaiselectorcopy", + "norm_label": "host_ai_p2p_offline_detail_tooltip" + }, + { + "label": "HOST_AI_MVP_P2P_ENDPOINT_INVALID_TOOLTIP", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostAiSelectorCopy.ts", + "source_location": "L29", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostaiselectorcopy_host_ai_mvp_p2p_endpoint_invalid_tooltip", + "community": 114, + "community_name": "Hostaiselectorcopy", + "norm_label": "host_ai_mvp_p2p_endpoint_invalid_tooltip" + }, + { + "label": "HOST_AI_CHECKING_TOOLTIP", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostAiSelectorCopy.ts", + "source_location": "L33", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostaiselectorcopy_host_ai_checking_tooltip", + "community": 114, + "community_name": "Hostaiselectorcopy", + "norm_label": "host_ai_checking_tooltip" + }, + { + "label": "HOST_AI_STALE_INLINE", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostAiSelectorCopy.ts", + "source_location": "L36", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostaiselectorcopy_host_ai_stale_inline", + "community": 114, + "community_name": "Hostaiselectorcopy", + "norm_label": "host_ai_stale_inline" + }, + { + "label": "HOST_INFERENCE_UNAVAILABLE", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostAiSelectorCopy.ts", + "source_location": "L40", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostaiselectorcopy_host_inference_unavailable", + "community": 114, + "community_name": "Hostaiselectorcopy", + "norm_label": "host_inference_unavailable" + }, + { + "label": "HOST_AI_SELECTOR_ICON_CLASS", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostAiSelectorCopy.ts", + "source_location": "L44", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostaiselectorcopy_host_ai_selector_icon_class", + "community": 114, + "community_name": "Hostaiselectorcopy", + "norm_label": "host_ai_selector_icon_class" + }, + { + "label": "GROUP_LOCAL_MODELS", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostAiSelectorCopy.ts", + "source_location": "L46", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostaiselectorcopy_group_local_models", + "community": 101, + "community_name": "Inferenceselectionpersistence", + "norm_label": "group_local_models" + }, + { + "label": "GROUP_HOST_MODELS", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostAiSelectorCopy.ts", + "source_location": "L47", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostaiselectorcopy_group_host_models", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "group_host_models" + }, + { + "label": "GROUP_INTERNAL_HOST", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostAiSelectorCopy.ts", + "source_location": "L49", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostaiselectorcopy_group_internal_host", + "community": 101, + "community_name": "Inferenceselectionpersistence", + "norm_label": "group_internal_host" + }, + { + "label": "GROUP_CLOUD", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostAiSelectorCopy.ts", + "source_location": "L50", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostaiselectorcopy_group_cloud", + "community": 101, + "community_name": "Inferenceselectionpersistence", + "norm_label": "group_cloud" + }, + { + "label": "TOOLTIP_DISABLED", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostAiSelectorCopy.ts", + "source_location": "L57", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostaiselectorcopy_tooltip_disabled", + "community": 114, + "community_name": "Hostaiselectorcopy", + "norm_label": "tooltip_disabled" + }, + { + "label": "TOOLTIP_NO_MODEL", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostAiSelectorCopy.ts", + "source_location": "L62", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostaiselectorcopy_tooltip_no_model", + "community": 114, + "community_name": "Hostaiselectorcopy", + "norm_label": "tooltip_no_model" + }, + { + "label": "TOOLTIP_ROLE", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostAiSelectorCopy.ts", + "source_location": "L67", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostaiselectorcopy_tooltip_role", + "community": 114, + "community_name": "Hostaiselectorcopy", + "norm_label": "tooltip_role" + }, + { + "label": "TOOLTIP_IDENTITY", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostAiSelectorCopy.ts", + "source_location": "L72", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostaiselectorcopy_tooltip_identity", + "community": 114, + "community_name": "Hostaiselectorcopy", + "norm_label": "tooltip_identity" + }, + { + "label": "TOOLTIP_LEGACY_PATH", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostAiSelectorCopy.ts", + "source_location": "L77", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostaiselectorcopy_tooltip_legacy_path", + "community": 114, + "community_name": "Hostaiselectorcopy", + "norm_label": "tooltip_legacy_path" + }, + { + "label": "phaseFrom()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostAiSelectorCopy.ts", + "source_location": "L82", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostaiselectorcopy_phasefrom", + "community": 114, + "community_name": "Hostaiselectorcopy", + "norm_label": "phasefrom()" + }, + { + "label": "hostAiChatBlockedUserMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostAiSelectorCopy.ts", + "source_location": "L89", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostaiselectorcopy_hostaichatblockedusermessage", + "community": 114, + "community_name": "Hostaiselectorcopy", + "norm_label": "hostaichatblockedusermessage()" + }, + { + "label": "hostAiRowUnavailableTooltip()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostAiSelectorCopy.ts", + "source_location": "L185", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostaiselectorcopy_hostairowunavailabletooltip", + "community": 114, + "community_name": "Hostaiselectorcopy", + "norm_label": "hostairowunavailabletooltip()" + }, + { + "label": "hostAiTargetConnectionPresentation.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostAiTargetConnectionPresentation.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation", + "community": 159, + "community_name": "Hostaitargetconnectionpresentation", + "norm_label": "hostaitargetconnectionpresentation.ts" + }, + { + "label": "hostInferenceRowHasModelId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostAiTargetConnectionPresentation.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation_hostinferencerowhasmodelid", + "community": 159, + "community_name": "Hostaitargetconnectionpresentation", + "norm_label": "hostinferencerowhasmodelid()" + }, + { + "label": "hostInferenceTargetMenuSelectable()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostAiTargetConnectionPresentation.ts", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation_hostinferencetargetmenuselectable", + "community": 159, + "community_name": "Hostaitargetconnectionpresentation", + "norm_label": "hostinferencetargetmenuselectable()" + }, + { + "label": "hostAiConnectionStatusLabel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostAiTargetConnectionPresentation.ts", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation_hostaiconnectionstatuslabel", + "community": 159, + "community_name": "Hostaitargetconnectionpresentation", + "norm_label": "hostaiconnectionstatuslabel()" + }, + { + "label": "hostAiConnectionStatusDetail()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostAiTargetConnectionPresentation.ts", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation_hostaiconnectionstatusdetail", + "community": 159, + "community_name": "Hostaitargetconnectionpresentation", + "norm_label": "hostaiconnectionstatusdetail()" + }, + { + "label": "composeHostAiConnectionSubtitle()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostAiTargetConnectionPresentation.ts", + "source_location": "L66", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation_composehostaiconnectionsubtitle", + "community": 159, + "community_name": "Hostaitargetconnectionpresentation", + "norm_label": "composehostaiconnectionsubtitle()" + }, + { + "label": "hostAiTargetDevDebugSnippet()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostAiTargetConnectionPresentation.ts", + "source_location": "L80", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation_hostaitargetdevdebugsnippet", + "community": 159, + "community_name": "Hostaitargetconnectionpresentation", + "norm_label": "hostaitargetdevdebugsnippet()" + }, + { + "label": "deriveRawHostSelectorStateFromTarget()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostAiTargetConnectionPresentation.ts", + "source_location": "L97", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation_deriverawhostselectorstatefromtarget", + "community": 159, + "community_name": "Hostaitargetconnectionpresentation", + "norm_label": "deriverawhostselectorstatefromtarget()" + }, + { + "label": "computeHostInferenceGavRowPresentation()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostAiTargetConnectionPresentation.ts", + "source_location": "L118", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation_computehostinferencegavrowpresentation", + "community": 159, + "community_name": "Hostaitargetconnectionpresentation", + "norm_label": "computehostinferencegavrowpresentation()" + }, + { + "label": "hostAiTargetUiNormalization.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostAiTargetUiNormalization.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostaitargetuinormalization", + "community": 363, + "community_name": "Hostaitargetuinormalization", + "norm_label": "hostaitargetuinormalization.ts" + }, + { + "label": "HostRowExtras", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostAiTargetUiNormalization.ts", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostaitargetuinormalization_hostrowextras", + "community": 363, + "community_name": "Hostaitargetuinormalization", + "norm_label": "hostrowextras" + }, + { + "label": "VOLATILE_ROOT_KEYS", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostAiTargetUiNormalization.ts", + "source_location": "L22", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostaitargetuinormalization_volatile_root_keys", + "community": 363, + "community_name": "Hostaitargetuinormalization", + "norm_label": "volatile_root_keys" + }, + { + "label": "stripVolatileShallow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostAiTargetUiNormalization.ts", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostaitargetuinormalization_stripvolatileshallow", + "community": 363, + "community_name": "Hostaitargetuinormalization", + "norm_label": "stripvolatileshallow()" + }, + { + "label": "normalizeHostAiTargetForUi()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostAiTargetUiNormalization.ts", + "source_location": "L46", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostaitargetuinormalization_normalizehostaitargetforui", + "community": 363, + "community_name": "Hostaitargetuinormalization", + "norm_label": "normalizehostaitargetforui()" + }, + { + "label": "serializeNormalizedHostAiTargetListUi()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostAiTargetUiNormalization.ts", + "source_location": "L122", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostaitargetuinormalization_serializenormalizedhostaitargetlistui", + "community": 363, + "community_name": "Hostaitargetuinormalization", + "norm_label": "serializenormalizedhostaitargetlistui()" + }, + { + "label": "areNormalizedHostAiTargetListsEqual()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostAiTargetUiNormalization.ts", + "source_location": "L133", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostaitargetuinormalization_arenormalizedhostaitargetlistsequal", + "community": 363, + "community_name": "Hostaitargetuinormalization", + "norm_label": "arenormalizedhostaitargetlistsequal()" + }, + { + "label": "serializeMergedSelectorModelsForStableUi()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostAiTargetUiNormalization.ts", + "source_location": "L141", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostaitargetuinormalization_serializemergedselectormodelsforstableui", + "community": 363, + "community_name": "Hostaitargetuinormalization", + "norm_label": "serializemergedselectormodelsforstableui()" + }, + { + "label": "hostAiUiDiagnostics.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostAiUiDiagnostics.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostaiuidiagnostics", + "community": 114, + "community_name": "Hostaiselectorcopy", + "norm_label": "hostaiuidiagnostics.ts" + }, + { + "label": "HostAiEndpointDiagnostics", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostAiUiDiagnostics.ts", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostaiuidiagnostics_hostaiendpointdiagnostics", + "community": 15, + "community_name": "Sandbox Inference Targets", + "norm_label": "hostaiendpointdiagnostics" + }, + { + "label": "HostAiProbeCode", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostAiUiDiagnostics.ts", + "source_location": "L29", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostaiuidiagnostics_hostaiprobecode", + "community": 114, + "community_name": "Hostaiselectorcopy", + "norm_label": "hostaiprobecode" + }, + { + "label": "HOST_AI_MSG", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostAiUiDiagnostics.ts", + "source_location": "L55", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostaiuidiagnostics_host_ai_msg", + "community": 114, + "community_name": "Hostaiselectorcopy", + "norm_label": "host_ai_msg" + }, + { + "label": "HOST_AI_DIAGNOSTICS_EXAMPLE_SELF_LOCAL_BEAP", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostAiUiDiagnostics.ts", + "source_location": "L77", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostaiuidiagnostics_host_ai_diagnostics_example_self_local_beap", + "community": 114, + "community_name": "Hostaiselectorcopy", + "norm_label": "host_ai_diagnostics_example_self_local_beap" + }, + { + "label": "HostAiTargetLike", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostAiUiDiagnostics.ts", + "source_location": "L87", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostaiuidiagnostics_hostaitargetlike", + "community": 114, + "community_name": "Hostaiselectorcopy", + "norm_label": "hostaitargetlike" + }, + { + "label": "isSelfLocalBeapDeny()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostAiUiDiagnostics.ts", + "source_location": "L98", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostaiuidiagnostics_isselflocalbeapdeny", + "community": 114, + "community_name": "Hostaiselectorcopy", + "norm_label": "isselflocalbeapdeny()" + }, + { + "label": "identityUiCode()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostAiUiDiagnostics.ts", + "source_location": "L105", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostaiuidiagnostics_identityuicode", + "community": 114, + "community_name": "Hostaiselectorcopy", + "norm_label": "identityuicode()" + }, + { + "label": "shouldSuppressOllamaUnreachableSandboxAsHostFailure()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostAiUiDiagnostics.ts", + "source_location": "L130", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostaiuidiagnostics_shouldsuppressollamaunreachablesandboxashostfailure", + "community": 114, + "community_name": "Hostaiselectorcopy", + "norm_label": "shouldsuppressollamaunreachablesandboxashostfailure()" + }, + { + "label": "hostAiUserFacingMessageFromTarget()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostAiUiDiagnostics.ts", + "source_location": "L143", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostaiuidiagnostics_hostaiuserfacingmessagefromtarget", + "community": 114, + "community_name": "Hostaiselectorcopy", + "norm_label": "hostaiuserfacingmessagefromtarget()" + }, + { + "label": "hostAiGenericP2pUnavailableLine()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostAiUiDiagnostics.ts", + "source_location": "L277", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostaiuidiagnostics_hostaigenericp2punavailableline", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "hostaigenericp2punavailableline()" + }, + { + "label": "hostInferenceModelIds.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostInferenceModelIds.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostinferencemodelids", + "community": 166, + "community_name": "LLM #166", + "norm_label": "hostinferencemodelids.ts" + }, + { + "label": "HOST_INFERENCE_PREFIX", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostInferenceModelIds.ts", + "source_location": "L2", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostinferencemodelids_host_inference_prefix", + "community": 166, + "community_name": "LLM #166", + "norm_label": "host_inference_prefix" + }, + { + "label": "HOST_INTERNAL_PREFIX", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostInferenceModelIds.ts", + "source_location": "L5", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostinferencemodelids_host_internal_prefix", + "community": 166, + "community_name": "LLM #166", + "norm_label": "host_internal_prefix" + }, + { + "label": "hostInferenceModelId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostInferenceModelIds.ts", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostinferencemodelids_hostinferencemodelid", + "community": 166, + "community_name": "LLM #166", + "norm_label": "hostinferencemodelid()" + }, + { + "label": "hostInternalInferenceModelId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostInferenceModelIds.ts", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostinferencemodelids_hostinternalinferencemodelid", + "community": 166, + "community_name": "LLM #166", + "norm_label": "hostinternalinferencemodelid()" + }, + { + "label": "parseHostInferenceModelId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostInferenceModelIds.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostinferencemodelids_parsehostinferencemodelid", + "community": 166, + "community_name": "LLM #166", + "norm_label": "parsehostinferencemodelid()" + }, + { + "label": "parseHostInternalInferenceModelId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostInferenceModelIds.ts", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostinferencemodelids_parsehostinternalinferencemodelid", + "community": 166, + "community_name": "LLM #166", + "norm_label": "parsehostinternalinferencemodelid()" + }, + { + "label": "parseAnyHostInferenceModelId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostInferenceModelIds.ts", + "source_location": "L51", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostinferencemodelids_parseanyhostinferencemodelid", + "community": 166, + "community_name": "LLM #166", + "norm_label": "parseanyhostinferencemodelid()" + }, + { + "label": "isHostInferenceModelId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostInferenceModelIds.ts", + "source_location": "L69", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostinferencemodelids_ishostinferencemodelid", + "community": 166, + "community_name": "LLM #166", + "norm_label": "ishostinferencemodelid()" + }, + { + "label": "bareOllamaModelNameForApi()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostInferenceModelIds.ts", + "source_location": "L78", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostinferencemodelids_bareollamamodelnameforapi", + "community": 166, + "community_name": "LLM #166", + "norm_label": "bareollamamodelnameforapi()" + }, + { + "label": "hostInferenceUiGates.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostInferenceUiGates.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostinferenceuigates", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "hostinferenceuigates.ts" + }, + { + "label": "DirectP2pReachabilityStatus", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostInferenceUiGates.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostinferenceuigates_directp2preachabilitystatus", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "directp2preachabilitystatus" + }, + { + "label": "directP2pReachabilityCopyForSandboxToHost()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostInferenceUiGates.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostinferenceuigates_directp2preachabilitycopyforsandboxtohost", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "directp2preachabilitycopyforsandboxtohost()" + }, + { + "label": "directP2pReachabilityCopyForHostToSandbox()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostInferenceUiGates.ts", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostinferenceuigates_directp2preachabilitycopyforhosttosandbox", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "directp2preachabilitycopyforhosttosandbox()" + }, + { + "label": "hostInferenceOptionVisible()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostInferenceUiGates.ts", + "source_location": "L64", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostinferenceuigates_hostinferenceoptionvisible", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "hostinferenceoptionvisible()" + }, + { + "label": "hostInferenceSetupMessageVisible()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostInferenceUiGates.ts", + "source_location": "L72", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostinferenceuigates_hostinferencesetupmessagevisible", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "hostinferencesetupmessagevisible()" + }, + { + "label": "hostInferenceSelectorMultiple()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostInferenceUiGates.ts", + "source_location": "L86", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostinferenceuigates_hostinferenceselectormultiple", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "hostinferenceselectormultiple()" + }, + { + "label": "hostInferenceDirectUnavailableMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostInferenceUiGates.ts", + "source_location": "L94", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostinferenceuigates_hostinferencedirectunavailablemessage", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "hostinferencedirectunavailablemessage()" + }, + { + "label": "hostModelSelectorRowUi.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostModelSelectorRowUi.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostmodelselectorrowui", + "community": 114, + "community_name": "Hostaiselectorcopy", + "norm_label": "hostmodelselectorrowui.ts" + }, + { + "label": "HostP2pUiPhase", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostModelSelectorRowUi.ts", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_hostp2puiphase", + "community": 114, + "community_name": "Hostaiselectorcopy", + "norm_label": "hostp2puiphase" + }, + { + "label": "HostModelSelectorRowUiIn", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostModelSelectorRowUi.ts", + "source_location": "L30", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_hostmodelselectorrowuiin", + "community": 114, + "community_name": "Hostaiselectorcopy", + "norm_label": "hostmodelselectorrowuiin" + }, + { + "label": "hostDisplayName()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostModelSelectorRowUi.ts", + "source_location": "L64", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_hostdisplayname", + "community": 114, + "community_name": "Hostaiselectorcopy", + "norm_label": "hostdisplayname()" + }, + { + "label": "formatHostPairingIdDigits()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostModelSelectorRowUi.ts", + "source_location": "L68", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_formathostpairingiddigits", + "community": 114, + "community_name": "Hostaiselectorcopy", + "norm_label": "formathostpairingiddigits()" + }, + { + "label": "secondaryHostIdLine()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostModelSelectorRowUi.ts", + "source_location": "L78", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_secondaryhostidline", + "community": 114, + "community_name": "Hostaiselectorcopy", + "norm_label": "secondaryhostidline()" + }, + { + "label": "projectPhase()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostModelSelectorRowUi.ts", + "source_location": "L82", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_projectphase", + "community": 114, + "community_name": "Hostaiselectorcopy", + "norm_label": "projectphase()" + }, + { + "label": "isChecking()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostModelSelectorRowUi.ts", + "source_location": "L91", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_ischecking", + "community": 114, + "community_name": "Hostaiselectorcopy", + "norm_label": "ischecking()" + }, + { + "label": "hostModelSelectorShowsDefinitiveHostFailure()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostModelSelectorRowUi.ts", + "source_location": "L110", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_hostmodelselectorshowsdefinitivehostfailure", + "community": 114, + "community_name": "Hostaiselectorcopy", + "norm_label": "hostmodelselectorshowsdefinitivehostfailure()" + }, + { + "label": "projectionSubtitle()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostModelSelectorRowUi.ts", + "source_location": "L125", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_projectionsubtitle", + "community": 114, + "community_name": "Hostaiselectorcopy", + "norm_label": "projectionsubtitle()" + }, + { + "label": "fallbackTitleForPhase()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostModelSelectorRowUi.ts", + "source_location": "L136", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_fallbacktitleforphase", + "community": 114, + "community_name": "Hostaiselectorcopy", + "norm_label": "fallbacktitleforphase()" + }, + { + "label": "isPolicyDisabled()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostModelSelectorRowUi.ts", + "source_location": "L192", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_ispolicydisabled", + "community": 114, + "community_name": "Hostaiselectorcopy", + "norm_label": "ispolicydisabled()" + }, + { + "label": "isIdentityIncomplete()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostModelSelectorRowUi.ts", + "source_location": "L200", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_isidentityincomplete", + "community": 114, + "community_name": "Hostaiselectorcopy", + "norm_label": "isidentityincomplete()" + }, + { + "label": "isRoleMetadata()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostModelSelectorRowUi.ts", + "source_location": "L205", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_isrolemetadata", + "community": 114, + "community_name": "Hostaiselectorcopy", + "norm_label": "isrolemetadata()" + }, + { + "label": "hostModelSelectorRowUi()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostModelSelectorRowUi.ts", + "source_location": "L214", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_hostmodelselectorrowui", + "community": 114, + "community_name": "Hostaiselectorcopy", + "norm_label": "hostmodelselectorrowui()" + }, + { + "label": "buildHostAiSelectorTooltip()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostModelSelectorRowUi.ts", + "source_location": "L282", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_buildhostaiselectortooltip", + "community": 114, + "community_name": "Hostaiselectorcopy", + "norm_label": "buildhostaiselectortooltip()" + }, + { + "label": "hostRefreshFeedback.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostRefreshFeedback.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostrefreshfeedback", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "hostrefreshfeedback.ts" + }, + { + "label": "HostRefreshFeedback", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostRefreshFeedback.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostrefreshfeedback_hostrefreshfeedback", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "hostrefreshfeedback" + }, + { + "label": "COPY", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostRefreshFeedback.ts", + "source_location": "L12", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostrefreshfeedback_copy", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "copy" + }, + { + "label": "hostTargetDisplayModel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostRefreshFeedback.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostrefreshfeedback_hosttargetdisplaymodel", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "hosttargetdisplaymodel()" + }, + { + "label": "getHostRefreshFeedbackFromTargets()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostRefreshFeedback.ts", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostrefreshfeedback_gethostrefreshfeedbackfromtargets", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "gethostrefreshfeedbackfromtargets()" + }, + { + "label": "isHostPathOfflineByProjection()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/hostRefreshFeedback.ts", + "source_location": "L97", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_hostrefreshfeedback_ishostpathofflinebyprojection", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "ishostpathofflinebyprojection()" + }, + { + "label": "inboxAiCloneClassification.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxaicloneclassification", + "community": 179, + "community_name": "Inboxaicloneclassification", + "norm_label": "inboxaicloneclassification.ts" + }, + { + "label": "InboxMessageAiClassificationRow", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxaicloneclassification_inboxmessageaiclassificationrow", + "community": 150, + "community_name": "Stores #150", + "norm_label": "inboxmessageaiclassificationrow" + }, + { + "label": "safeParseJsonObject()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxaicloneclassification_safeparsejsonobject", + "community": 179, + "community_name": "Inboxaicloneclassification", + "norm_label": "safeparsejsonobject()" + }, + { + "label": "considerProvKeys()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxaicloneclassification_considerprovkeys", + "community": 179, + "community_name": "Inboxaicloneclassification", + "norm_label": "considerprovkeys()" + }, + { + "label": "walkClonePlainSignals()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L51", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxaicloneclassification_walkcloneplainsignals", + "community": 179, + "community_name": "Inboxaicloneclassification", + "norm_label": "walkcloneplainsignals()" + }, + { + "label": "forEachTrailingProvenanceJson()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L75", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxaicloneclassification_foreachtrailingprovenancejson", + "community": 179, + "community_name": "Inboxaicloneclassification", + "norm_label": "foreachtrailingprovenancejson()" + }, + { + "label": "sandboxCloneSignalsPresent()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L89", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxaicloneclassification_sandboxclonesignalspresent", + "community": 179, + "community_name": "Inboxaicloneclassification", + "norm_label": "sandboxclonesignalspresent()" + }, + { + "label": "inboxRowIsClonedPlainEmail()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L105", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxaicloneclassification_inboxrowisclonedplainemail", + "community": 179, + "community_name": "Inboxaicloneclassification", + "norm_label": "inboxrowisclonedplainemail()" + }, + { + "label": "InboxReplyModeMetadata", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L124", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxaicloneclassification_inboxreplymodemetadata", + "community": 179, + "community_name": "Inboxaicloneclassification", + "norm_label": "inboxreplymodemetadata" + }, + { + "label": "firstString()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L131", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxaicloneclassification_firststring", + "community": 179, + "community_name": "Inboxaicloneclassification", + "norm_label": "firststring()" + }, + { + "label": "collectReplyModeMetadataFromObject()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L138", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxaicloneclassification_collectreplymodemetadatafromobject", + "community": 179, + "community_name": "Inboxaicloneclassification", + "norm_label": "collectreplymodemetadatafromobject()" + }, + { + "label": "walkReplyModeMetadata()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L164", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxaicloneclassification_walkreplymodemetadata", + "community": 179, + "community_name": "Inboxaicloneclassification", + "norm_label": "walkreplymodemetadata()" + }, + { + "label": "getInboxReplyModeMetadata()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L190", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxaicloneclassification_getinboxreplymodemetadata", + "community": 179, + "community_name": "Inboxaicloneclassification", + "norm_label": "getinboxreplymodemetadata()" + }, + { + "label": "rowIsActualNativeBeap()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L209", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxaicloneclassification_rowisactualnativebeap", + "community": 179, + "community_name": "Inboxaicloneclassification", + "norm_label": "rowisactualnativebeap()" + }, + { + "label": "InboxReplyMode", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L216", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxaicloneclassification_inboxreplymode", + "community": 179, + "community_name": "Inboxaicloneclassification", + "norm_label": "inboxreplymode" + }, + { + "label": "resolveInboxReplyMode()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L218", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxaicloneclassification_resolveinboxreplymode", + "community": 179, + "community_name": "Inboxaicloneclassification", + "norm_label": "resolveinboxreplymode()" + }, + { + "label": "classifyInboxRowForAi()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L240", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxaicloneclassification_classifyinboxrowforai", + "community": 179, + "community_name": "Inboxaicloneclassification", + "norm_label": "classifyinboxrowforai()" + }, + { + "label": "InboxReplyTransport", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L245", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxaicloneclassification_inboxreplytransport", + "community": 179, + "community_name": "Inboxaicloneclassification", + "norm_label": "inboxreplytransport" + }, + { + "label": "InboxReplyTransportRouterReason", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L247", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxaicloneclassification_inboxreplytransportrouterreason", + "community": 179, + "community_name": "Inboxaicloneclassification", + "norm_label": "inboxreplytransportrouterreason" + }, + { + "label": "InboxReplyTransportResolutionMeta", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L256", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxaicloneclassification_inboxreplytransportresolutionmeta", + "community": 179, + "community_name": "Inboxaicloneclassification", + "norm_label": "inboxreplytransportresolutionmeta" + }, + { + "label": "resolveInboxReplyTransportMeta()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L266", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxaicloneclassification_resolveinboxreplytransportmeta", + "community": 179, + "community_name": "Inboxaicloneclassification", + "norm_label": "resolveinboxreplytransportmeta()" + }, + { + "label": "resolveInboxReplyTransport()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L290", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxaicloneclassification_resolveinboxreplytransport", + "community": 179, + "community_name": "Inboxaicloneclassification", + "norm_label": "resolveinboxreplytransport()" + }, + { + "label": "InboxReplySelectedPath", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L295", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxaicloneclassification_inboxreplyselectedpath", + "community": 179, + "community_name": "Inboxaicloneclassification", + "norm_label": "inboxreplyselectedpath" + }, + { + "label": "InboxReplyDecisionPhase", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L296", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxaicloneclassification_inboxreplydecisionphase", + "community": 179, + "community_name": "Inboxaicloneclassification", + "norm_label": "inboxreplydecisionphase" + }, + { + "label": "logInboxReplyTransportDecision()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L298", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxaicloneclassification_loginboxreplytransportdecision", + "community": 179, + "community_name": "Inboxaicloneclassification", + "norm_label": "loginboxreplytransportdecision()" + }, + { + "label": "INBOX_EMAIL_REPLY_METADATA_MISSING", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L330", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxaicloneclassification_inbox_email_reply_metadata_missing", + "community": 179, + "community_name": "Inboxaicloneclassification", + "norm_label": "inbox_email_reply_metadata_missing" + }, + { + "label": "inboxAiUserMessages.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxAiUserMessages.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxaiusermessages", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "inboxaiusermessages.ts" + }, + { + "label": "InboxAiErrorDebugPayload", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxAiUserMessages.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxaiusermessages_inboxaierrordebugpayload", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "inboxaierrordebugpayload" + }, + { + "label": "userMessageForInboxAiCode()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxAiUserMessages.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxaiusermessages_usermessageforinboxaicode", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "usermessageforinboxaicode()" + }, + { + "label": "inboxAiAnalyzeStreamErrorDisplay()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxAiUserMessages.ts", + "source_location": "L67", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxaiusermessages_inboxaianalyzestreamerrordisplay", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "inboxaianalyzestreamerrordisplay()" + }, + { + "label": "inboxAiDraftReplyErrorDisplay()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxAiUserMessages.ts", + "source_location": "L90", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxaiusermessages_inboxaidraftreplyerrordisplay", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "inboxaidraftreplyerrordisplay()" + }, + { + "label": "inboxBeapOutbound.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxBeapOutbound.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxbeapoutbound", + "community": 186, + "community_name": "Stores #186", + "norm_label": "inboxbeapoutbound.ts" + }, + { + "label": "isBeapQbeapOutboundEcho()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxBeapOutbound.ts", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxbeapoutbound_isbeapqbeapoutboundecho", + "community": 186, + "community_name": "Stores #186", + "norm_label": "isbeapqbeapoutboundecho()" + }, + { + "label": "inboxBeapRowEligibility.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxBeapRowEligibility.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxbeaproweligibility", + "community": 186, + "community_name": "Stores #186", + "norm_label": "inboxbeaproweligibility.ts" + }, + { + "label": "depackagedFormatFromJson()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxBeapRowEligibility.ts", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxbeaproweligibility_depackagedformatfromjson", + "community": 186, + "community_name": "Stores #186", + "norm_label": "depackagedformatfromjson()" + }, + { + "label": "isEmailPlainRowWithBeapPayload()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxBeapRowEligibility.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxbeaproweligibility_isemailplainrowwithbeappayload", + "community": 186, + "community_name": "Stores #186", + "norm_label": "isemailplainrowwithbeappayload()" + }, + { + "label": "isReceivedBeapInboxMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxBeapRowEligibility.ts", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxbeaproweligibility_isreceivedbeapinboxmessage", + "community": 186, + "community_name": "Stores #186", + "norm_label": "isreceivedbeapinboxmessage()" + }, + { + "label": "inboxClassificationReconcile.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxClassificationReconcile.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxclassificationreconcile_test", + "community": 322, + "community_name": "Inboxclassificationreconcile", + "norm_label": "inboxclassificationreconcile.test.ts" + }, + { + "label": "inboxClassificationReconcile.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxClassificationReconcile.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxclassificationreconcile", + "community": 322, + "community_name": "Inboxclassificationreconcile", + "norm_label": "inboxclassificationreconcile.ts" + }, + { + "label": "ReconcileClassifyInput", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxClassificationReconcile.ts", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxclassificationreconcile_reconcileclassifyinput", + "community": 322, + "community_name": "Inboxclassificationreconcile", + "norm_label": "reconcileclassifyinput" + }, + { + "label": "ReconcileContext", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxClassificationReconcile.ts", + "source_location": "L26", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxclassificationreconcile_reconcilecontext", + "community": 322, + "community_name": "Inboxclassificationreconcile", + "norm_label": "reconcilecontext" + }, + { + "label": "combinedClassificationText()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxClassificationReconcile.ts", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxclassificationreconcile_combinedclassificationtext", + "community": 322, + "community_name": "Inboxclassificationreconcile", + "norm_label": "combinedclassificationtext()" + }, + { + "label": "HIGH_STAKES_RE", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxClassificationReconcile.ts", + "source_location": "L42", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxclassificationreconcile_high_stakes_re", + "community": 322, + "community_name": "Inboxclassificationreconcile", + "norm_label": "high_stakes_re" + }, + { + "label": "PROMOTIONAL_RE", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxClassificationReconcile.ts", + "source_location": "L75", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxclassificationreconcile_promotional_re", + "community": 322, + "community_name": "Inboxclassificationreconcile", + "norm_label": "promotional_re" + }, + { + "label": "detectPromotionalAndHighStakes()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxClassificationReconcile.ts", + "source_location": "L106", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxclassificationreconcile_detectpromotionalandhighstakes", + "community": 322, + "community_name": "Inboxclassificationreconcile", + "norm_label": "detectpromotionalandhighstakes()" + }, + { + "label": "ESCALATED_CATEGORIES", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxClassificationReconcile.ts", + "source_location": "L114", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxclassificationreconcile_escalated_categories", + "community": 322, + "community_name": "Inboxclassificationreconcile", + "norm_label": "escalated_categories" + }, + { + "label": "applySortSourceWeighting()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxClassificationReconcile.ts", + "source_location": "L122", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxclassificationreconcile_applysortsourceweighting", + "community": 322, + "community_name": "Inboxclassificationreconcile", + "norm_label": "applysortsourceweighting()" + }, + { + "label": "reconcileInboxClassification()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxClassificationReconcile.ts", + "source_location": "L158", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxclassificationreconcile_reconcileinboxclassification", + "community": 322, + "community_name": "Inboxclassificationreconcile", + "norm_label": "reconcileinboxclassification()" + }, + { + "label": "reconcileAnalyzeTriage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxClassificationReconcile.ts", + "source_location": "L192", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxclassificationreconcile_reconcileanalyzetriage", + "community": 322, + "community_name": "Inboxclassificationreconcile", + "norm_label": "reconcileanalyzetriage()" + }, + { + "label": "inboxDetailAnalysisSelection.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxDetailAnalysisSelection.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxdetailanalysisselection", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "inboxdetailanalysisselection.ts" + }, + { + "label": "INBOX_ANALYSIS_SELECTION_DEBOUNCE_MS", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxDetailAnalysisSelection.ts", + "source_location": "L6", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxdetailanalysisselection_inbox_analysis_selection_debounce_ms", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "inbox_analysis_selection_debounce_ms" + }, + { + "label": "shouldTriggerAnalysisOnSelectionChange()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxDetailAnalysisSelection.ts", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxdetailanalysisselection_shouldtriggeranalysisonselectionchange", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "shouldtriggeranalysisonselectionchange()" + }, + { + "label": "shouldApplyAnalysisStreamResult()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxDetailAnalysisSelection.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxdetailanalysisselection_shouldapplyanalysisstreamresult", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "shouldapplyanalysisstreamresult()" + }, + { + "label": "resolveSelectionAnalysisRun()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxDetailAnalysisSelection.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxdetailanalysisselection_resolveselectionanalysisrun", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "resolveselectionanalysisrun()" + }, + { + "label": "inboxMessageActionable.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageActionable.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxmessageactionable", + "community": 186, + "community_name": "Stores #186", + "norm_label": "inboxmessageactionable.ts" + }, + { + "label": "isInboxMessageActionable()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageActionable.ts", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxmessageactionable_isinboxmessageactionable", + "community": 186, + "community_name": "Stores #186", + "norm_label": "isinboxmessageactionable()" + }, + { + "label": "inboxMessageKind.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageKind.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxmessagekind", + "community": 150, + "community_name": "Stores #150", + "norm_label": "inboxmessagekind.ts" + }, + { + "label": "InboxMessageKindFilter", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageKind.ts", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxmessagekind_inboxmessagekindfilter", + "community": 150, + "community_name": "Stores #150", + "norm_label": "inboxmessagekindfilter" + }, + { + "label": "coerceInboxMessageKindFilter()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageKind.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxmessagekind_coerceinboxmessagekindfilter", + "community": 150, + "community_name": "Stores #150", + "norm_label": "coerceinboxmessagekindfilter()" + }, + { + "label": "InboxMessageKindDerived", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageKind.ts", + "source_location": "L26", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxmessagekind_inboxmessagekindderived", + "community": 150, + "community_name": "Stores #150", + "norm_label": "inboxmessagekindderived" + }, + { + "label": "InboxMessageKindFields", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageKind.ts", + "source_location": "L29", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxmessagekind_inboxmessagekindfields", + "community": 150, + "community_name": "Stores #150", + "norm_label": "inboxmessagekindfields" + }, + { + "label": "deriveInboxMessageKind()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageKind.ts", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxmessagekind_deriveinboxmessagekind", + "community": 158, + "community_name": "Inboxmessagesandboxclone", + "norm_label": "deriveinboxmessagekind()" + }, + { + "label": "messageMatchesKindFilter()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageKind.ts", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxmessagekind_messagematcheskindfilter", + "community": 81, + "community_name": "Stores", + "norm_label": "messagematcheskindfilter()" + }, + { + "label": "showHandshakeNavIcon()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageKind.ts", + "source_location": "L52", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxmessagekind_showhandshakenavicon", + "community": 150, + "community_name": "Stores #150", + "norm_label": "showhandshakenavicon()" + }, + { + "label": "inboxMessageSandboxClone.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageSandboxClone.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone", + "community": 158, + "community_name": "Inboxmessagesandboxclone", + "norm_label": "inboxmessagesandboxclone.ts" + }, + { + "label": "SANDBOX_CLONE_INBOX_LEAD_IN", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageSandboxClone.ts", + "source_location": "L15", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_sandbox_clone_inbox_lead_in", + "community": 158, + "community_name": "Inboxmessagesandboxclone", + "norm_label": "sandbox_clone_inbox_lead_in" + }, + { + "label": "stringHintsSandboxClone()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageSandboxClone.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_stringhintssandboxclone", + "community": 158, + "community_name": "Inboxmessagesandboxclone", + "norm_label": "stringhintssandboxclone()" + }, + { + "label": "walkValue()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageSandboxClone.ts", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_walkvalue", + "community": 158, + "community_name": "Inboxmessagesandboxclone", + "norm_label": "walkvalue()" + }, + { + "label": "tryParseJson()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageSandboxClone.ts", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_tryparsejson", + "community": 158, + "community_name": "Inboxmessagesandboxclone", + "norm_label": "tryparsejson()" + }, + { + "label": "inboxMessageIsSandboxBeapClone()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageSandboxClone.ts", + "source_location": "L67", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_inboxmessageissandboxbeapclone", + "community": 158, + "community_name": "Inboxmessagesandboxclone", + "norm_label": "inboxmessageissandboxbeapclone()" + }, + { + "label": "inboxMessageUsesNativeBeapPbeapQbeapSplit()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageSandboxClone.ts", + "source_location": "L81", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_inboxmessageusesnativebeappbeapqbeapsplit", + "community": 158, + "community_name": "Inboxmessagesandboxclone", + "norm_label": "inboxmessageusesnativebeappbeapqbeapsplit()" + }, + { + "label": "INBOX_SANDBOX_CLONE_BADGE_TOOLTIP", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageSandboxClone.ts", + "source_location": "L87", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_inbox_sandbox_clone_badge_tooltip", + "community": 158, + "community_name": "Inboxmessagesandboxclone", + "norm_label": "inbox_sandbox_clone_badge_tooltip" + }, + { + "label": "INBOX_DIRECT_BEAP_BADGE_TOOLTIP", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageSandboxClone.ts", + "source_location": "L90", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_inbox_direct_beap_badge_tooltip", + "community": 158, + "community_name": "Inboxmessagesandboxclone", + "norm_label": "inbox_direct_beap_badge_tooltip" + }, + { + "label": "SandboxCloneUiMeta", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageSandboxClone.ts", + "source_location": "L93", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_sandboxcloneuimeta", + "community": 158, + "community_name": "Inboxmessagesandboxclone", + "norm_label": "sandboxcloneuimeta" + }, + { + "label": "shortenId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageSandboxClone.ts", + "source_location": "L100", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_shortenid", + "community": 158, + "community_name": "Inboxmessagesandboxclone", + "norm_label": "shortenid()" + }, + { + "label": "extractSandboxCloneUiMeta()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageSandboxClone.ts", + "source_location": "L113", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_extractsandboxcloneuimeta", + "community": 158, + "community_name": "Inboxmessagesandboxclone", + "norm_label": "extractsandboxcloneuimeta()" + }, + { + "label": "tryGetCloneBlockFromPackageJson()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageSandboxClone.ts", + "source_location": "L167", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_trygetcloneblockfrompackagejson", + "community": 158, + "community_name": "Inboxmessagesandboxclone", + "norm_label": "trygetcloneblockfrompackagejson()" + }, + { + "label": "stripSandboxCloneLeadInFromBodyText()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageSandboxClone.ts", + "source_location": "L190", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_stripsandboxcloneleadinfrombodytext", + "community": 158, + "community_name": "Inboxmessagesandboxclone", + "norm_label": "stripsandboxcloneleadinfrombodytext()" + }, + { + "label": "inboxSessionArtefact.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxSessionArtefact.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxsessionartefact", + "community": 204, + "community_name": "Inboxsessionartefact", + "norm_label": "inboxsessionartefact.ts" + }, + { + "label": "SessionImportRequestedAction", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxSessionArtefact.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxsessionartefact_sessionimportrequestedaction", + "community": 204, + "community_name": "Inboxsessionartefact", + "norm_label": "sessionimportrequestedaction" + }, + { + "label": "InboxSessionArtefactResolution", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxSessionArtefact.ts", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxsessionartefact_inboxsessionartefactresolution", + "community": 204, + "community_name": "Inboxsessionartefact", + "norm_label": "inboxsessionartefactresolution" + }, + { + "label": "parseJsonObject()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxSessionArtefact.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxsessionartefact_parsejsonobject", + "community": 204, + "community_name": "Inboxsessionartefact", + "norm_label": "parsejsonobject()" + }, + { + "label": "decodePBeapCapsuleObject()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxSessionArtefact.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxsessionartefact_decodepbeapcapsuleobject", + "community": 204, + "community_name": "Inboxsessionartefact", + "norm_label": "decodepbeapcapsuleobject()" + }, + { + "label": "readArtefactFromObject()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxSessionArtefact.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxsessionartefact_readartefactfromobject", + "community": 204, + "community_name": "Inboxsessionartefact", + "norm_label": "readartefactfromobject()" + }, + { + "label": "artefactToSessionRefs()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxSessionArtefact.ts", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxsessionartefact_artefacttosessionrefs", + "community": 204, + "community_name": "Inboxsessionartefact", + "norm_label": "artefacttosessionrefs()" + }, + { + "label": "resolveInboxSessionArtefact()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxSessionArtefact.ts", + "source_location": "L78", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxsessionartefact_resolveinboxsessionartefact", + "community": 204, + "community_name": "Inboxsessionartefact", + "norm_label": "resolveinboxsessionartefact()" + }, + { + "label": "isSessionAutomationValidationEligible()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxSessionArtefact.ts", + "source_location": "L102", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxsessionartefact_issessionautomationvalidationeligible", + "community": 204, + "community_name": "Inboxsessionartefact", + "norm_label": "issessionautomationvalidationeligible()" + }, + { + "label": "canShowInboxRunAutomation()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxSessionArtefact.ts", + "source_location": "L114", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxsessionartefact_canshowinboxrunautomation", + "community": 204, + "community_name": "Inboxsessionartefact", + "norm_label": "canshowinboxrunautomation()" + }, + { + "label": "inboxValidationState()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxSessionArtefact.ts", + "source_location": "L126", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxsessionartefact_inboxvalidationstate", + "community": 204, + "community_name": "Inboxsessionartefact", + "norm_label": "inboxvalidationstate()" + }, + { + "label": "capabilitiesForSessionAttach()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxSessionArtefact.ts", + "source_location": "L131", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxsessionartefact_capabilitiesforsessionattach", + "community": 204, + "community_name": "Inboxsessionartefact", + "norm_label": "capabilitiesforsessionattach()" + }, + { + "label": "inboxSessionReviewOpen.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxSessionReviewOpen.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxsessionreviewopen_test", + "community": 230, + "community_name": "Analysis Dashboard #230", + "norm_label": "inboxsessionreviewopen.test.ts" + }, + { + "label": "inboxSessionReviewOpen.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxSessionReviewOpen.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxsessionreviewopen", + "community": 230, + "community_name": "Analysis Dashboard #230", + "norm_label": "inboxsessionreviewopen.ts" + }, + { + "label": "SessionReviewMessageRow", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxSessionReviewOpen.ts", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxsessionreviewopen_sessionreviewmessagerow", + "community": 231, + "community_name": "Autosortsessionreview", + "norm_label": "sessionreviewmessagerow" + }, + { + "label": "workflowFilterFromSessionReviewRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxSessionReviewOpen.ts", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxsessionreviewopen_workflowfilterfromsessionreviewrow", + "community": 230, + "community_name": "Analysis Dashboard #230", + "norm_label": "workflowfilterfromsessionreviewrow()" + }, + { + "label": "inboxSortSourceWeighting.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxSortSourceWeighting.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxsortsourceweighting", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "inboxsortsourceweighting.ts" + }, + { + "label": "SortSourceWeighting", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxSortSourceWeighting.ts", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxsortsourceweighting_sortsourceweighting", + "community": 322, + "community_name": "Inboxclassificationreconcile", + "norm_label": "sortsourceweighting" + }, + { + "label": "sortSourceWeightingFromMessageRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxSortSourceWeighting.ts", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxsortsourceweighting_sortsourceweightingfrommessagerow", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "sortsourceweightingfrommessagerow()" + }, + { + "label": "formatSourceWeightingForPrompt()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inboxSortSourceWeighting.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inboxsortsourceweighting_formatsourceweightingforprompt", + "community": 9, + "community_name": "Email Inbox Orchestration", + "norm_label": "formatsourceweightingforprompt()" + }, + { + "label": "inferenceSelectionPersistence.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "community": 101, + "community_name": "Inferenceselectionpersistence", + "norm_label": "inferenceselectionpersistence.ts" + }, + { + "label": "SELECTION_V", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L11", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_selection_v", + "community": 101, + "community_name": "Inferenceselectionpersistence", + "norm_label": "selection_v" + }, + { + "label": "InferenceSelectionKind", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_inferenceselectionkind", + "community": 101, + "community_name": "Inferenceselectionpersistence", + "norm_label": "inferenceselectionkind" + }, + { + "label": "InferenceSelectionSource", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_inferenceselectionsource", + "community": 101, + "community_name": "Inferenceselectionpersistence", + "norm_label": "inferenceselectionsource" + }, + { + "label": "StoredInferenceSelectionV1", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_storedinferenceselectionv1", + "community": 159, + "community_name": "Hostaitargetconnectionpresentation", + "norm_label": "storedinferenceselectionv1" + }, + { + "label": "LEGACY_ORCH_MODEL_KEY", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L32", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_legacy_orch_model_key", + "community": 101, + "community_name": "Inferenceselectionpersistence", + "norm_label": "legacy_orch_model_key" + }, + { + "label": "legacyOrchScopedKey()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_legacyorchscopedkey", + "community": 101, + "community_name": "Inferenceselectionpersistence", + "norm_label": "legacyorchscopedkey()" + }, + { + "label": "legacyWrScoped()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_legacywrscoped", + "community": 101, + "community_name": "Inferenceselectionpersistence", + "norm_label": "legacywrscoped()" + }, + { + "label": "accountKeyFromSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_accountkeyfromsession", + "community": 101, + "community_name": "Inferenceselectionpersistence", + "norm_label": "accountkeyfromsession()" + }, + { + "label": "orchV1Key()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_orchv1key", + "community": 101, + "community_name": "Inferenceselectionpersistence", + "norm_label": "orchv1key()" + }, + { + "label": "wrV1Key()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_wrv1key", + "community": 101, + "community_name": "Inferenceselectionpersistence", + "norm_label": "wrv1key()" + }, + { + "label": "stampAccount()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L60", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_stampaccount", + "community": 101, + "community_name": "Inferenceselectionpersistence", + "norm_label": "stampaccount()" + }, + { + "label": "parseJson()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L64", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_parsejson", + "community": 101, + "community_name": "Inferenceselectionpersistence", + "norm_label": "parsejson()" + }, + { + "label": "inferKindFromId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L94", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_inferkindfromid", + "community": 101, + "community_name": "Inferenceselectionpersistence", + "norm_label": "inferkindfromid()" + }, + { + "label": "toStoredSelection()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L104", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_tostoredselection", + "community": 101, + "community_name": "Inferenceselectionpersistence", + "norm_label": "tostoredselection()" + }, + { + "label": "persistOrchestratorModelId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L124", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_persistorchestratormodelid", + "community": 101, + "community_name": "Inferenceselectionpersistence", + "norm_label": "persistorchestratormodelid()" + }, + { + "label": "readOrchestratorInferenceSelection()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L143", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_readorchestratorinferenceselection", + "community": 101, + "community_name": "Inferenceselectionpersistence", + "norm_label": "readorchestratorinferenceselection()" + }, + { + "label": "migrateUnscopedOrchHost()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L201", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_migrateunscopedorchhost", + "community": 101, + "community_name": "Inferenceselectionpersistence", + "norm_label": "migrateunscopedorchhost()" + }, + { + "label": "clearOrchestratorInferenceSelection()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L213", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_clearorchestratorinferenceselection", + "community": 101, + "community_name": "Inferenceselectionpersistence", + "norm_label": "clearorchestratorinferenceselection()" + }, + { + "label": "OrchestratorHostInferenceTargetSnapshot", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L224", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_orchestratorhostinferencetargetsnapshot", + "community": 101, + "community_name": "Inferenceselectionpersistence", + "norm_label": "orchestratorhostinferencetargetsnapshot" + }, + { + "label": "definitiveP2pSessionFailureCode()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L242", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_definitivep2psessionfailurecode", + "community": 101, + "community_name": "Inferenceselectionpersistence", + "norm_label": "definitivep2psessionfailurecode()" + }, + { + "label": "resolveHostHandshakeIdFromInferenceSelection()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L263", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_resolvehosthandshakeidfrominferenceselection", + "community": 101, + "community_name": "Inferenceselectionpersistence", + "norm_label": "resolvehosthandshakeidfrominferenceselection()" + }, + { + "label": "findHostInferenceTargetForHandshakeAndId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L276", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_findhostinferencetargetforhandshakeandid", + "community": 101, + "community_name": "Inferenceselectionpersistence", + "norm_label": "findhostinferencetargetforhandshakeandid()" + }, + { + "label": "isHostInferenceTargetPendingForRestore()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L295", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_ishostinferencetargetpendingforrestore", + "community": 101, + "community_name": "Inferenceselectionpersistence", + "norm_label": "ishostinferencetargetpendingforrestore()" + }, + { + "label": "isHostInferenceTargetDefinitivelyInvalidForRestore()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L300", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_ishostinferencetargetdefinitivelyinvalidforrestore", + "community": 101, + "community_name": "Inferenceselectionpersistence", + "norm_label": "ishostinferencetargetdefinitivelyinvalidforrestore()" + }, + { + "label": "OrchestratorUiHostListRow", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L375", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_orchestratoruihostlistrow", + "community": 101, + "community_name": "Inferenceselectionpersistence", + "norm_label": "orchestratoruihostlistrow" + }, + { + "label": "isHostInternalSelectionStaleForOrchestratorUi()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L386", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_ishostinternalselectionstalefororchestratorui", + "community": 101, + "community_name": "Inferenceselectionpersistence", + "norm_label": "ishostinternalselectionstalefororchestratorui()" + }, + { + "label": "ValidateSelectionResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L435", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_validateselectionresult", + "community": 101, + "community_name": "Inferenceselectionpersistence", + "norm_label": "validateselectionresult" + }, + { + "label": "OrchestratorSelectionValidateReason", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L440", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_orchestratorselectionvalidatereason", + "community": 101, + "community_name": "Inferenceselectionpersistence", + "norm_label": "orchestratorselectionvalidatereason" + }, + { + "label": "OrchestratorSelectionDiagnostics", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L449", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_orchestratorselectiondiagnostics", + "community": 101, + "community_name": "Inferenceselectionpersistence", + "norm_label": "orchestratorselectiondiagnostics" + }, + { + "label": "ValidateSelectionResultWithDiagnostics", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L465", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_validateselectionresultwithdiagnostics", + "community": 101, + "community_name": "Inferenceselectionpersistence", + "norm_label": "validateselectionresultwithdiagnostics" + }, + { + "label": "orchestratorDiagHostRowFields()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L469", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_orchestratordiaghostrowfields", + "community": 101, + "community_name": "Inferenceselectionpersistence", + "norm_label": "orchestratordiaghostrowfields()" + }, + { + "label": "emptyNonHostRowFields", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L484", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_emptynonhostrowfields", + "community": 101, + "community_name": "Inferenceselectionpersistence", + "norm_label": "emptynonhostrowfields" + }, + { + "label": "validateStoredSelectionForOrchestratorWithDiagnostics()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L499", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_validatestoredselectionfororchestratorwithdiagnostics", + "community": 101, + "community_name": "Inferenceselectionpersistence", + "norm_label": "validatestoredselectionfororchestratorwithdiagnostics()" + }, + { + "label": "validateStoredSelectionForOrchestrator()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L651", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_validatestoredselectionfororchestrator", + "community": 101, + "community_name": "Inferenceselectionpersistence", + "norm_label": "validatestoredselectionfororchestrator()" + }, + { + "label": "readWrChatInferenceSelection()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L670", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_readwrchatinferenceselection", + "community": 101, + "community_name": "Inferenceselectionpersistence", + "norm_label": "readwrchatinferenceselection()" + }, + { + "label": "persistWrChatModelId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L719", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_persistwrchatmodelid", + "community": 101, + "community_name": "Inferenceselectionpersistence", + "norm_label": "persistwrchatmodelid()" + }, + { + "label": "clearWrChatInferenceSelection()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L738", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_clearwrchatinferenceselection", + "community": 101, + "community_name": "Inferenceselectionpersistence", + "norm_label": "clearwrchatinferenceselection()" + }, + { + "label": "clearPersistedHostAiInferenceSelection()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L749", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_clearpersistedhostaiinferenceselection", + "community": 101, + "community_name": "Inferenceselectionpersistence", + "norm_label": "clearpersistedhostaiinferenceselection()" + }, + { + "label": "WrHostish", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L766", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_wrhostish", + "community": 101, + "community_name": "Inferenceselectionpersistence", + "norm_label": "wrhostish" + }, + { + "label": "validateStoredSelectionForWrChat()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L774", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_validatestoredselectionforwrchat", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "validatestoredselectionforwrchat()" + }, + { + "label": "inferenceTargetRefreshLog.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inferenceTargetRefreshLog.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inferencetargetrefreshlog", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "inferencetargetrefreshlog.ts" + }, + { + "label": "InferenceTargetRefreshReason", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inferenceTargetRefreshLog.ts", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inferencetargetrefreshlog_inferencetargetrefreshreason", + "community": 159, + "community_name": "Hostaitargetconnectionpresentation", + "norm_label": "inferencetargetrefreshreason" + }, + { + "label": "logInferenceTargetRefreshReason()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inferenceTargetRefreshLog.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inferencetargetrefreshlog_loginferencetargetrefreshreason", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "loginferencetargetrefreshreason()" + }, + { + "label": "logInferenceTargetRefreshResult()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inferenceTargetRefreshLog.ts", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inferencetargetrefreshlog_loginferencetargetrefreshresult", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "loginferencetargetrefreshresult()" + }, + { + "label": "logInferenceTargetRefresh()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inferenceTargetRefreshLog.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inferencetargetrefreshlog_loginferencetargetrefresh", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "loginferencetargetrefresh()" + }, + { + "label": "logInferenceTargetRefreshStart()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inferenceTargetRefreshLog.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inferencetargetrefreshlog_loginferencetargetrefreshstart", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "loginferencetargetrefreshstart()" + }, + { + "label": "logInferenceTargetRefreshFromLoad()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inferenceTargetRefreshLog.ts", + "source_location": "L46", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inferencetargetrefreshlog_loginferencetargetrefreshfromload", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "loginferencetargetrefreshfromload()" + }, + { + "label": "countMergedModelList()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inferenceTargetRefreshLog.ts", + "source_location": "L67", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inferencetargetrefreshlog_countmergedmodellist", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "countmergedmodellist()" + }, + { + "label": "countWrChatMerged()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inferenceTargetRefreshLog.ts", + "source_location": "L78", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inferencetargetrefreshlog_countwrchatmerged", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "countwrchatmerged()" + }, + { + "label": "inferenceTargetTypes.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inferenceTargetTypes.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inferencetargettypes", + "community": 440, + "community_name": "Inferencetargettypes", + "norm_label": "inferencetargettypes.ts" + }, + { + "label": "HostInferenceListAvailability", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inferenceTargetTypes.ts", + "source_location": "L21", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inferencetargettypes_hostinferencelistavailability", + "community": 440, + "community_name": "Inferencetargettypes", + "norm_label": "hostinferencelistavailability" + }, + { + "label": "InferenceTarget", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inferenceTargetTypes.ts", + "source_location": "L31", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inferencetargettypes_inferencetarget", + "community": 440, + "community_name": "Inferencetargettypes", + "norm_label": "inferencetarget" + }, + { + "label": "ollamaInferenceTargetId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inferenceTargetTypes.ts", + "source_location": "L71", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inferencetargettypes_ollamainferencetargetid", + "community": 440, + "community_name": "Inferencetargettypes", + "norm_label": "ollamainferencetargetid()" + }, + { + "label": "displayPairingId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/inferenceTargetTypes.ts", + "source_location": "L75", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_inferencetargettypes_displaypairingid", + "community": 440, + "community_name": "Inferencetargettypes", + "norm_label": "displaypairingid()" + }, + { + "label": "ingestAiContextFiles.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/ingestAiContextFiles.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_ingestaicontextfiles", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "ingestaicontextfiles.ts" + }, + { + "label": "CONTEXT_PDF_ATTACHMENT_ID", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/ingestAiContextFiles.ts", + "source_location": "L4", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_ingestaicontextfiles_context_pdf_attachment_id", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "context_pdf_attachment_id" + }, + { + "label": "arrayBufferToBase64()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/ingestAiContextFiles.ts", + "source_location": "L6", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_ingestaicontextfiles_arraybuffertobase64", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "arraybuffertobase64()" + }, + { + "label": "ingestAiContextFiles()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/ingestAiContextFiles.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_ingestaicontextfiles_ingestaicontextfiles", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "ingestaicontextfiles()" + }, + { + "label": "letterTemplateMultiVersion.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/letterTemplateMultiVersion.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_lettertemplatemultiversion", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "lettertemplatemultiversion.ts" + }, + { + "label": "wantsLetterTemplateMultiVersion()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/letterTemplateMultiVersion.ts", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_lettertemplatemultiversion_wantslettertemplatemultiversion", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "wantslettertemplatemultiversion()" + }, + { + "label": "parseLetterFillJson()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/letterTemplateMultiVersion.ts", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_lettertemplatemultiversion_parseletterfilljson", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "parseletterfilljson()" + }, + { + "label": "letterTemplateFilledHtml()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/letterTemplateMultiVersion.ts", + "source_location": "L46", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_lettertemplatemultiversion_lettertemplatefilledhtml", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "lettertemplatefilledhtml()" + }, + { + "label": "modelSelectorHostRefreshVisibility.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/modelSelectorHostRefreshVisibility.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "modelselectorhostrefreshvisibility.ts" + }, + { + "label": "SelectorRowLike", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/modelSelectorHostRefreshVisibility.ts", + "source_location": "L3", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility_selectorrowlike", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "selectorrowlike" + }, + { + "label": "HostTargetLike", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/modelSelectorHostRefreshVisibility.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility_hosttargetlike", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "hosttargetlike" + }, + { + "label": "discoveryHasHostInternalRows()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/modelSelectorHostRefreshVisibility.ts", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility_discoveryhashostinternalrows", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "discoveryhashostinternalrows()" + }, + { + "label": "HandshakeLocalRoleForLog", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/modelSelectorHostRefreshVisibility.ts", + "source_location": "L36", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility_handshakelocalroleforlog", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "handshakelocalroleforlog" + }, + { + "label": "handshakeLocalRoleForModelSelectorLog()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/modelSelectorHostRefreshVisibility.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility_handshakelocalroleformodelselectorlog", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "handshakelocalroleformodelselectorlog()" + }, + { + "label": "computeShowHostInferenceRefresh()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/modelSelectorHostRefreshVisibility.ts", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility_computeshowhostinferencerefresh", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "computeshowhostinferencerefresh()" + }, + { + "label": "logModelSelectorShowRefresh()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/modelSelectorHostRefreshVisibility.ts", + "source_location": "L80", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility_logmodelselectorshowrefresh", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "logmodelselectorshowrefresh()" + }, + { + "label": "modelSelectorMerge.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/modelSelectorMerge.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_modelselectormerge", + "community": 159, + "community_name": "Hostaitargetconnectionpresentation", + "norm_label": "modelselectormerge.ts" + }, + { + "label": "orderModelsLocalHostCloud()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/modelSelectorMerge.ts", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_modelselectormerge_ordermodelslocalhostcloud", + "community": 159, + "community_name": "Hostaitargetconnectionpresentation", + "norm_label": "ordermodelslocalhostcloud()" + }, + { + "label": "mapHostTargetsToGavModelEntries()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/modelSelectorMerge.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_modelselectormerge_maphosttargetstogavmodelentries", + "community": 159, + "community_name": "Hostaitargetconnectionpresentation", + "norm_label": "maphosttargetstogavmodelentries()" + }, + { + "label": "modelSelectorTargetsLog.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/modelSelectorTargetsLog.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_modelselectortargetslog", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "modelselectortargetslog.ts" + }, + { + "label": "scrubValue()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/modelSelectorTargetsLog.ts", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_modelselectortargetslog_scrubvalue", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "scrubvalue()" + }, + { + "label": "ModelSelectorSurface", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/modelSelectorTargetsLog.ts", + "source_location": "L34", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_modelselectortargetslog_modelselectorsurface", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "modelselectorsurface" + }, + { + "label": "logModelSelectorTargets()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/modelSelectorTargetsLog.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_modelselectortargetslog_logmodelselectortargets", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "logmodelselectortargets()" + }, + { + "label": "openAppExternalUrl.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/openAppExternalUrl.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_openappexternalurl", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "openappexternalurl.ts" + }, + { + "label": "openAppExternalUrl()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/openAppExternalUrl.ts", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_openappexternalurl_openappexternalurl", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "openappexternalurl()" + }, + { + "label": "openSessionDisplayGridsFromDashboard.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/openSessionDisplayGridsFromDashboard.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_opensessiondisplaygridsfromdashboard", + "community": 72, + "community_name": "Services", + "norm_label": "opensessiondisplaygridsfromdashboard.ts" + }, + { + "label": "SessionGridPresentSource", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/openSessionDisplayGridsFromDashboard.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_opensessiondisplaygridsfromdashboard_sessiongridpresentsource", + "community": 72, + "community_name": "Services", + "norm_label": "sessiongridpresentsource" + }, + { + "label": "openSessionDisplayGridsFromDashboard()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/openSessionDisplayGridsFromDashboard.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_opensessiondisplaygridsfromdashboard_opensessiondisplaygridsfromdashboard", + "community": 72, + "community_name": "Services", + "norm_label": "opensessiondisplaygridsfromdashboard()" + }, + { + "label": "optimizationAgentBoxModel.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/optimizationAgentBoxModel.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_optimizationagentboxmodel", + "community": 72, + "community_name": "Services", + "norm_label": "optimizationagentboxmodel.ts" + }, + { + "label": "OPTIMIZATION_AGENT_DEFAULT_MODEL", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/optimizationAgentBoxModel.ts", + "source_location": "L8", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_optimizationagentboxmodel_optimization_agent_default_model", + "community": 72, + "community_name": "Services", + "norm_label": "optimization_agent_default_model" + }, + { + "label": "resolveOptimizationAgentInference()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/optimizationAgentBoxModel.ts", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_optimizationagentboxmodel_resolveoptimizationagentinference", + "community": 72, + "community_name": "Services", + "norm_label": "resolveoptimizationagentinference()" + }, + { + "label": "optimizationDashboardAgentBoxSetAiExecutionContext()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/optimizationAgentBoxModel.ts", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_optimizationagentboxmodel_optimizationdashboardagentboxsetaiexecutioncontext", + "community": 72, + "community_name": "Services", + "norm_label": "optimizationdashboardagentboxsetaiexecutioncontext()" + }, + { + "label": "logOptimizationAgentBoxSend()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/optimizationAgentBoxModel.ts", + "source_location": "L52", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_optimizationagentboxmodel_logoptimizationagentboxsend", + "community": 72, + "community_name": "Services", + "norm_label": "logoptimizationagentboxsend()" + }, + { + "label": "optimizationAgentRunner.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/optimizationAgentRunner.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_optimizationagentrunner", + "community": 72, + "community_name": "Services", + "norm_label": "optimizationagentrunner.ts" + }, + { + "label": "chunkAgents()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/optimizationAgentRunner.ts", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_optimizationagentrunner_chunkagents", + "community": 72, + "community_name": "Services", + "norm_label": "chunkagents()" + }, + { + "label": "runAgentsParallel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/optimizationAgentRunner.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_optimizationagentrunner_runagentsparallel", + "community": 72, + "community_name": "Services", + "norm_label": "runagentsparallel()" + }, + { + "label": "optimizationChainRunner.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/optimizationChainRunner.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_optimizationchainrunner", + "community": 72, + "community_name": "Services", + "norm_label": "optimizationchainrunner.ts" + }, + { + "label": "summarizeAgentOutput()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/optimizationChainRunner.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_optimizationchainrunner_summarizeagentoutput", + "community": 72, + "community_name": "Services", + "norm_label": "summarizeagentoutput()" + }, + { + "label": "runAgentsSequential()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/optimizationChainRunner.ts", + "source_location": "L42", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_optimizationchainrunner_runagentssequential", + "community": 72, + "community_name": "Services", + "norm_label": "runagentssequential()" + }, + { + "label": "optimizationContextAssembler.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_optimizationcontextassembler", + "community": 292, + "community_name": "Optimizationcontextassembler", + "norm_label": "optimizationcontextassembler.ts" + }, + { + "label": "mapProjectToSection()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_optimizationcontextassembler_mapprojecttosection", + "community": 292, + "community_name": "Optimizationcontextassembler", + "norm_label": "mapprojecttosection()" + }, + { + "label": "attachmentsFromProject()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_optimizationcontextassembler_attachmentsfromproject", + "community": 72, + "community_name": "Services", + "norm_label": "attachmentsfromproject()" + }, + { + "label": "AssembleOptimizationContextParams", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L47", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_optimizationcontextassembler_assembleoptimizationcontextparams", + "community": 292, + "community_name": "Optimizationcontextassembler", + "norm_label": "assembleoptimizationcontextparams" + }, + { + "label": "assembleOptimizationContext()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L58", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_optimizationcontextassembler_assembleoptimizationcontext", + "community": 292, + "community_name": "Optimizationcontextassembler", + "norm_label": "assembleoptimizationcontext()" + }, + { + "label": "estimateTokens()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L76", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_optimizationcontextassembler_estimatetokens", + "community": 292, + "community_name": "Optimizationcontextassembler", + "norm_label": "estimatetokens()" + }, + { + "label": "estimateContextTokens()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L81", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_optimizationcontextassembler_estimatecontexttokens", + "community": 292, + "community_name": "Optimizationcontextassembler", + "norm_label": "estimatecontexttokens()" + }, + { + "label": "cloneCtx()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L85", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_optimizationcontextassembler_clonectx", + "community": 292, + "community_name": "Optimizationcontextassembler", + "norm_label": "clonectx()" + }, + { + "label": "truncateStr()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L89", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_optimizationcontextassembler_truncatestr", + "community": 292, + "community_name": "Optimizationcontextassembler", + "norm_label": "truncatestr()" + }, + { + "label": "trimToTokenBudget()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L106", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_optimizationcontextassembler_trimtotokenbudget", + "community": 292, + "community_name": "Optimizationcontextassembler", + "norm_label": "trimtotokenbudget()" + }, + { + "label": "trimUserMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L132", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_optimizationcontextassembler_trimusermessage", + "community": 292, + "community_name": "Optimizationcontextassembler", + "norm_label": "trimusermessage()" + }, + { + "label": "trimDomSlots()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L144", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_optimizationcontextassembler_trimdomslots", + "community": 292, + "community_name": "Optimizationcontextassembler", + "norm_label": "trimdomslots()" + }, + { + "label": "trimPriorOutputs()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L167", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_optimizationcontextassembler_trimprioroutputs", + "community": 292, + "community_name": "Optimizationcontextassembler", + "norm_label": "trimprioroutputs()" + }, + { + "label": "trimAttachments()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L191", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_optimizationcontextassembler_trimattachments", + "community": 292, + "community_name": "Optimizationcontextassembler", + "norm_label": "trimattachments()" + }, + { + "label": "trimMilestonesCompleted()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L212", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_optimizationcontextassembler_trimmilestonescompleted", + "community": 292, + "community_name": "Optimizationcontextassembler", + "norm_label": "trimmilestonescompleted()" + }, + { + "label": "trimAgentExistingBoxOutputs()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L220", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_optimizationcontextassembler_trimagentexistingboxoutputs", + "community": 292, + "community_name": "Optimizationcontextassembler", + "norm_label": "trimagentexistingboxoutputs()" + }, + { + "label": "trimAgentSystemPrompts()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L242", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_optimizationcontextassembler_trimagentsystemprompts", + "community": 292, + "community_name": "Optimizationcontextassembler", + "norm_label": "trimagentsystemprompts()" + }, + { + "label": "optimizationLlmAdapter.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/optimizationLlmAdapter.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_optimizationllmadapter", + "community": 72, + "community_name": "Services", + "norm_label": "optimizationllmadapter.ts" + }, + { + "label": "readCloudApiKeyFromLocalStorage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/optimizationLlmAdapter.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_optimizationllmadapter_readcloudapikeyfromlocalstorage", + "community": 72, + "community_name": "Services", + "norm_label": "readcloudapikeyfromlocalstorage()" + }, + { + "label": "defaultDashboardLlmHeaders()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/optimizationLlmAdapter.ts", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_optimizationllmadapter_defaultdashboardllmheaders", + "community": 72, + "community_name": "Services", + "norm_label": "defaultdashboardllmheaders()" + }, + { + "label": "OptimizationLlmAdapterOptions", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/optimizationLlmAdapter.ts", + "source_location": "L46", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_optimizationllmadapter_optimizationllmadapteroptions", + "community": 72, + "community_name": "Services", + "norm_label": "optimizationllmadapteroptions" + }, + { + "label": "createOptimizationLlmSend()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/optimizationLlmAdapter.ts", + "source_location": "L58", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_optimizationllmadapter_createoptimizationllmsend", + "community": 72, + "community_name": "Services", + "norm_label": "createoptimizationllmsend()" + }, + { + "label": "optimizationPromptBuilder.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/optimizationPromptBuilder.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_optimizationpromptbuilder", + "community": 72, + "community_name": "Services", + "norm_label": "optimizationpromptbuilder.ts" + }, + { + "label": "formatMilestonesForAdvisor()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/optimizationPromptBuilder.ts", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_optimizationpromptbuilder_formatmilestonesforadvisor", + "community": 72, + "community_name": "Services", + "norm_label": "formatmilestonesforadvisor()" + }, + { + "label": "formatDomBlock()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/optimizationPromptBuilder.ts", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_optimizationpromptbuilder_formatdomblock", + "community": 72, + "community_name": "Services", + "norm_label": "formatdomblock()" + }, + { + "label": "formatReferenceDocuments()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/optimizationPromptBuilder.ts", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_optimizationpromptbuilder_formatreferencedocuments", + "community": 72, + "community_name": "Services", + "norm_label": "formatreferencedocuments()" + }, + { + "label": "formatPriorSummaries()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/optimizationPromptBuilder.ts", + "source_location": "L57", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_optimizationpromptbuilder_formatpriorsummaries", + "community": 72, + "community_name": "Services", + "norm_label": "formatpriorsummaries()" + }, + { + "label": "activeMilestoneTitle()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/optimizationPromptBuilder.ts", + "source_location": "L64", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_optimizationpromptbuilder_activemilestonetitle", + "community": 72, + "community_name": "Services", + "norm_label": "activemilestonetitle()" + }, + { + "label": "buildMessagesForAgent()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/optimizationPromptBuilder.ts", + "source_location": "L74", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_optimizationpromptbuilder_buildmessagesforagent", + "community": 72, + "community_name": "Services", + "norm_label": "buildmessagesforagent()" + }, + { + "label": "optimizationRunCoordinator.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_optimizationruncoordinator", + "community": 72, + "community_name": "Services", + "norm_label": "optimizationruncoordinator.ts" + }, + { + "label": "logStep()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_optimizationruncoordinator_logstep", + "community": 72, + "community_name": "Services", + "norm_label": "logstep()" + }, + { + "label": "triggerToOptimizationSource()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_optimizationruncoordinator_triggertooptimizationsource", + "community": 72, + "community_name": "Services", + "norm_label": "triggertooptimizationsource()" + }, + { + "label": "LooseAgent", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L46", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_optimizationruncoordinator_looseagent", + "community": 72, + "community_name": "Services", + "norm_label": "looseagent" + }, + { + "label": "formatSidebarChatFromSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_optimizationruncoordinator_formatsidebarchatfromsession", + "community": 72, + "community_name": "Services", + "norm_label": "formatsidebarchatfromsession()" + }, + { + "label": "buildAgentEntries()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L72", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_optimizationruncoordinator_buildagententries", + "community": 72, + "community_name": "Services", + "norm_label": "buildagententries()" + }, + { + "label": "shouldRunSequential()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L136", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_optimizationruncoordinator_shouldrunsequential", + "community": 72, + "community_name": "Services", + "norm_label": "shouldrunsequential()" + }, + { + "label": "orderAgentsSequential()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L147", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_optimizationruncoordinator_orderagentssequential", + "community": 72, + "community_name": "Services", + "norm_label": "orderagentssequential()" + }, + { + "label": "tryDomSnapshot()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L172", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_optimizationruncoordinator_trydomsnapshot", + "community": 72, + "community_name": "Services", + "norm_label": "trydomsnapshot()" + }, + { + "label": "executeOptimizationRun()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L188", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_optimizationruncoordinator_executeoptimizationrun", + "community": 72, + "community_name": "Services", + "norm_label": "executeoptimizationrun()" + }, + { + "label": "orchestratorModeVsHandshake.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/orchestratorModeVsHandshake.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_orchestratormodevshandshake", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "orchestratormodevshandshake.ts" + }, + { + "label": "ModeHandshakeMismatchInfo", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/orchestratorModeVsHandshake.ts", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_orchestratormodevshandshake_modehandshakemismatchinfo", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "modehandshakemismatchinfo" + }, + { + "label": "getOrchestratorModeVsHandshakeInfo()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/orchestratorModeVsHandshake.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_orchestratormodevshandshake_getorchestratormodevshandshakeinfo", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "getorchestratormodevshandshakeinfo()" + }, + { + "label": "logOrchestratorModeVsHandshakeMismatch()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/orchestratorModeVsHandshake.ts", + "source_location": "L51", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_orchestratormodevshandshake_logorchestratormodevshandshakemismatch", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "logorchestratormodevshandshakemismatch()" + }, + { + "label": "handshakeRoleForModeMismatch()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/orchestratorModeVsHandshake.ts", + "source_location": "L60", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_orchestratormodevshandshake_handshakeroleformodemismatch", + "community": 82, + "community_name": "Finalacceptancehostaiinvariantstest", + "norm_label": "handshakeroleformodemismatch()" + }, + { + "label": "orchestratorSessionClient.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/orchestratorSessionClient.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_orchestratorsessionclient", + "community": 72, + "community_name": "Services", + "norm_label": "orchestratorsessionclient.ts" + }, + { + "label": "OrchestratorSessionJson", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/orchestratorSessionClient.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_orchestratorsessionclient_orchestratorsessionjson", + "community": 72, + "community_name": "Services", + "norm_label": "orchestratorsessionjson" + }, + { + "label": "FetchOrchestratorSessionResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/orchestratorSessionClient.ts", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_orchestratorsessionclient_fetchorchestratorsessionresult", + "community": 72, + "community_name": "Services", + "norm_label": "fetchorchestratorsessionresult" + }, + { + "label": "fetchOrchestratorSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/orchestratorSessionClient.ts", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_orchestratorsessionclient_fetchorchestratorsession", + "community": 72, + "community_name": "Services", + "norm_label": "fetchorchestratorsession()" + }, + { + "label": "projectAssistantAiFieldContracts.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/projectAssistantAiFieldContracts.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_projectassistantaifieldcontracts_test", + "community": 99, + "community_name": "Analysis Dashboard Stores", + "norm_label": "projectassistantaifieldcontracts.test.ts" + }, + { + "label": "projectAssistantAiFieldContracts.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/projectAssistantAiFieldContracts.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_projectassistantaifieldcontracts", + "community": 99, + "community_name": "Analysis Dashboard Stores", + "norm_label": "projectassistantaifieldcontracts.ts" + }, + { + "label": "PROJECT_ASSISTANT_DATA_FIELD_IDS", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/projectAssistantAiFieldContracts.ts", + "source_location": "L13", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_projectassistantaifieldcontracts_project_assistant_data_field_ids", + "community": 99, + "community_name": "Analysis Dashboard Stores", + "norm_label": "project_assistant_data_field_ids" + }, + { + "label": "ProjectAssistantDataFieldId", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/projectAssistantAiFieldContracts.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_projectassistantaifieldcontracts_projectassistantdatafieldid", + "community": 99, + "community_name": "Analysis Dashboard Stores", + "norm_label": "projectassistantdatafieldid" + }, + { + "label": "projectAssistantDataFieldSelector()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/projectAssistantAiFieldContracts.ts", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_projectassistantaifieldcontracts_projectassistantdatafieldselector", + "community": 99, + "community_name": "Analysis Dashboard Stores", + "norm_label": "projectassistantdatafieldselector()" + }, + { + "label": "projectAssistantMilestoneSelector()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/projectAssistantAiFieldContracts.ts", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_projectassistantaifieldcontracts_projectassistantmilestoneselector", + "community": 99, + "community_name": "Analysis Dashboard Stores", + "norm_label": "projectassistantmilestoneselector()" + }, + { + "label": "devAssertProjectAssistantAiDomHook()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/projectAssistantAiFieldContracts.ts", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_projectassistantaifieldcontracts_devassertprojectassistantaidomhook", + "community": 99, + "community_name": "Analysis Dashboard Stores", + "norm_label": "devassertprojectassistantaidomhook()" + }, + { + "label": "refreshHostInferenceTargets.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/refreshHostInferenceTargets.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_refreshhostinferencetargets", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "refreshhostinferencetargets.ts" + }, + { + "label": "RefreshHostInferenceTargetsArgs", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/refreshHostInferenceTargets.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_refreshhostinferencetargets_refreshhostinferencetargetsargs", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "refreshhostinferencetargetsargs" + }, + { + "label": "HostInferenceRunContext", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/refreshHostInferenceTargets.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_refreshhostinferencetargets_hostinferenceruncontext", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "hostinferenceruncontext" + }, + { + "label": "refreshHostInferenceTargets()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/refreshHostInferenceTargets.ts", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_refreshhostinferencetargets_refreshhostinferencetargets", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "refreshhostinferencetargets()" + }, + { + "label": "refreshOrchestratorSessions.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/refreshOrchestratorSessions.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_refreshorchestratorsessions", + "community": 99, + "community_name": "Analysis Dashboard Stores", + "norm_label": "refreshorchestratorsessions.ts" + }, + { + "label": "mapRow()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/refreshOrchestratorSessions.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_refreshorchestratorsessions_maprow", + "community": 99, + "community_name": "Analysis Dashboard Stores", + "norm_label": "maprow()" + }, + { + "label": "pickSessionIsoDate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/refreshOrchestratorSessions.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_refreshorchestratorsessions_picksessionisodate", + "community": 99, + "community_name": "Analysis Dashboard Stores", + "norm_label": "picksessionisodate()" + }, + { + "label": "refreshOrchestratorSessionsFromBridge()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/refreshOrchestratorSessions.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_refreshorchestratorsessions_refreshorchestratorsessionsfrombridge", + "community": 99, + "community_name": "Analysis Dashboard Stores", + "norm_label": "refreshorchestratorsessionsfrombridge()" + }, + { + "label": "resolveActiveSandboxCloneTargets.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/resolveActiveSandboxCloneTargets.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_resolveactivesandboxclonetargets", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "resolveactivesandboxclonetargets.ts" + }, + { + "label": "ResolveActiveSandboxCloneTargetsResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/resolveActiveSandboxCloneTargets.ts", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_resolveactivesandboxclonetargets_resolveactivesandboxclonetargetsresult", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "resolveactivesandboxclonetargetsresult" + }, + { + "label": "resolveActiveSandboxCloneTargets()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/resolveActiveSandboxCloneTargets.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_resolveactivesandboxclonetargets_resolveactivesandboxclonetargets", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "resolveactivesandboxclonetargets()" + }, + { + "label": "runBeapSessionAutomation.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/runBeapSessionAutomation.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_runbeapsessionautomation", + "community": 204, + "community_name": "Inboxsessionartefact", + "norm_label": "runbeapsessionautomation.ts" + }, + { + "label": "RunBeapSessionAutomationResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/runBeapSessionAutomation.ts", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_runbeapsessionautomation_runbeapsessionautomationresult", + "community": 204, + "community_name": "Inboxsessionartefact", + "norm_label": "runbeapsessionautomationresult" + }, + { + "label": "mapAutomationError()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/runBeapSessionAutomation.ts", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_runbeapsessionautomation_mapautomationerror", + "community": 204, + "community_name": "Inboxsessionartefact", + "norm_label": "mapautomationerror()" + }, + { + "label": "runBeapSessionAutomationForMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/runBeapSessionAutomation.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_runbeapsessionautomation_runbeapsessionautomationformessage", + "community": 204, + "community_name": "Inboxsessionartefact", + "norm_label": "runbeapsessionautomationformessage()" + }, + { + "label": "sandboxCloneFeedbackUi.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/sandboxCloneFeedbackUi.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "sandboxclonefeedbackui.ts" + }, + { + "label": "SANDBOX_UPGRADE_URL_FALLBACK", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/sandboxCloneFeedbackUi.ts", + "source_location": "L9", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_sandbox_upgrade_url_fallback", + "community": 139, + "community_name": "Handshake Beapbuilder Shims", + "norm_label": "sandbox_upgrade_url_fallback" + }, + { + "label": "SANDBOX_CLONE_COPY", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/sandboxCloneFeedbackUi.ts", + "source_location": "L11", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_sandbox_clone_copy", + "community": 139, + "community_name": "Handshake Beapbuilder Shims", + "norm_label": "sandbox_clone_copy" + }, + { + "label": "SandboxCloneFeedbackVariant", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/sandboxCloneFeedbackUi.ts", + "source_location": "L27", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_sandboxclonefeedbackvariant", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "sandboxclonefeedbackvariant" + }, + { + "label": "SandboxCloneFeedbackView", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/sandboxCloneFeedbackUi.ts", + "source_location": "L33", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_sandboxclonefeedbackview", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "sandboxclonefeedbackview" + }, + { + "label": "viewSandboxKeyingIncomplete()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/sandboxCloneFeedbackUi.ts", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_viewsandboxkeyingincomplete", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "viewsandboxkeyingincomplete()" + }, + { + "label": "viewSandboxIdentityIncomplete()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/sandboxCloneFeedbackUi.ts", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_viewsandboxidentityincomplete", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "viewsandboxidentityincomplete()" + }, + { + "label": "viewSandboxChecking()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/sandboxCloneFeedbackUi.ts", + "source_location": "L63", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_viewsandboxchecking", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "viewsandboxchecking()" + }, + { + "label": "viewSandboxCloning()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/sandboxCloneFeedbackUi.ts", + "source_location": "L71", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_viewsandboxcloning", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "viewsandboxcloning()" + }, + { + "label": "viewSandboxNoOrchestrator()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/sandboxCloneFeedbackUi.ts", + "source_location": "L79", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_viewsandboxnoorchestrator", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "viewsandboxnoorchestrator()" + }, + { + "label": "viewSandboxEntitlementRequired()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/sandboxCloneFeedbackUi.ts", + "source_location": "L91", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_viewsandboxentitlementrequired", + "community": 139, + "community_name": "Handshake Beapbuilder Shims", + "norm_label": "viewsandboxentitlementrequired()" + }, + { + "label": "viewSandboxListLoadFailed()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/sandboxCloneFeedbackUi.ts", + "source_location": "L102", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_viewsandboxlistloadfailed", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "viewsandboxlistloadfailed()" + }, + { + "label": "selectorModelListFromHostDiscovery.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/selectorModelListFromHostDiscovery.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_selectormodellistfromhostdiscovery", + "community": 159, + "community_name": "Hostaitargetconnectionpresentation", + "norm_label": "selectormodellistfromhostdiscovery.ts" + }, + { + "label": "HostRowMeta", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/selectorModelListFromHostDiscovery.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_selectormodellistfromhostdiscovery_hostrowmeta", + "community": 159, + "community_name": "Hostaitargetconnectionpresentation", + "norm_label": "hostrowmeta" + }, + { + "label": "SelectorAvailableModel", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/selectorModelListFromHostDiscovery.ts", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_selectormodellistfromhostdiscovery_selectoravailablemodel", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "selectoravailablemodel" + }, + { + "label": "FetchSelectorModelListResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/selectorModelListFromHostDiscovery.ts", + "source_location": "L49", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_selectormodellistfromhostdiscovery_fetchselectormodellistresult", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "fetchselectormodellistresult" + }, + { + "label": "fetchSelectorModelListFromHostDiscovery()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/selectorModelListFromHostDiscovery.ts", + "source_location": "L69", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_selectormodellistfromhostdiscovery_fetchselectormodellistfromhostdiscovery", + "community": 159, + "community_name": "Hostaitargetconnectionpresentation", + "norm_label": "fetchselectormodellistfromhostdiscovery()" + }, + { + "label": "wrChatModelOptionsFromSelectorModels()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/selectorModelListFromHostDiscovery.ts", + "source_location": "L164", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_selectormodellistfromhostdiscovery_wrchatmodeloptionsfromselectormodels", + "community": 159, + "community_name": "Hostaitargetconnectionpresentation", + "norm_label": "wrchatmodeloptionsfromselectormodels()" + }, + { + "label": "useAnalysisDashboardSnapshot.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/useAnalysisDashboardSnapshot.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_useanalysisdashboardsnapshot", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "useanalysisdashboardsnapshot.ts" + }, + { + "label": "useAnalysisDashboardSnapshot()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/useAnalysisDashboardSnapshot.ts", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_useanalysisdashboardsnapshot_useanalysisdashboardsnapshot", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "useanalysisdashboardsnapshot()" + }, + { + "label": "wrChatDashboardBootstrap.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/wrChatDashboardBootstrap.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_wrchatdashboardbootstrap", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "wrchatdashboardbootstrap.ts" + }, + { + "label": "SessionsResponse", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/wrChatDashboardBootstrap.ts", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_wrchatdashboardbootstrap_sessionsresponse", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "sessionsresponse" + }, + { + "label": "sendGetAllSessions()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/wrChatDashboardBootstrap.ts", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_wrchatdashboardbootstrap_sendgetallsessions", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "sendgetallsessions()" + }, + { + "label": "pickMostRecentSessionKey()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/wrChatDashboardBootstrap.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_wrchatdashboardbootstrap_pickmostrecentsessionkey", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "pickmostrecentsessionkey()" + }, + { + "label": "ensureOrchestratorSessionForDashboard()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/wrChatDashboardBootstrap.ts", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_wrchatdashboardbootstrap_ensureorchestratorsessionfordashboard", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "ensureorchestratorsessionfordashboard()" + }, + { + "label": "wrChatDashboardConstants.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/wrChatDashboardConstants.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_wrchatdashboardconstants", + "community": 564, + "community_name": "Wrchatdashboardconstants", + "norm_label": "wrchatdashboardconstants.ts" + }, + { + "label": "WR_CHAT_DASHBOARD_TRANSCRIPT_KEY", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/wrChatDashboardConstants.ts", + "source_location": "L2", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_wrchatdashboardconstants_wr_chat_dashboard_transcript_key", + "community": 564, + "community_name": "Wrchatdashboardconstants", + "norm_label": "wr_chat_dashboard_transcript_key" + }, + { + "label": "wrChatDashboardLog.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/wrChatDashboardLog.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_wrchatdashboardlog", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "wrchatdashboardlog.ts" + }, + { + "label": "wrChatDashboardWarn()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/wrChatDashboardLog.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_wrchatdashboardlog_wrchatdashboardwarn", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "wrchatdashboardwarn()" + }, + { + "label": "wrChatDashboardDebug()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/wrChatDashboardLog.ts", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_wrchatdashboardlog_wrchatdashboarddebug", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "wrchatdashboarddebug()" + }, + { + "label": "wrChatDashboardSpeechContext.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/wrChatDashboardSpeechContext.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_wrchatdashboardspeechcontext", + "community": 106, + "community_name": "Handshake Shims", + "norm_label": "wrchatdashboardspeechcontext.ts" + }, + { + "label": "DashboardWrChatSpeechOpenMeta", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/wrChatDashboardSpeechContext.ts", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_wrchatdashboardspeechcontext_dashboardwrchatspeechopenmeta", + "community": 106, + "community_name": "Handshake Shims", + "norm_label": "dashboardwrchatspeechopenmeta" + }, + { + "label": "dashboardModeKeyFromTriggerFunctionId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/wrChatDashboardSpeechContext.ts", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_wrchatdashboardspeechcontext_dashboardmodekeyfromtriggerfunctionid", + "community": 106, + "community_name": "Handshake Shims", + "norm_label": "dashboardmodekeyfromtriggerfunctionid()" + }, + { + "label": "recordDashboardWrChatSpeechIconOpen()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/wrChatDashboardSpeechContext.ts", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_wrchatdashboardspeechcontext_recorddashboardwrchatspeechiconopen", + "community": 106, + "community_name": "Handshake Shims", + "norm_label": "recorddashboardwrchatspeechiconopen()" + }, + { + "label": "peekDashboardWrChatSpeechOpenMeta()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/wrChatDashboardSpeechContext.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_wrchatdashboardspeechcontext_peekdashboardwrchatspeechopenmeta", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "peekdashboardwrchatspeechopenmeta()" + }, + { + "label": "clearDashboardWrChatSpeechOpenMeta()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/wrChatDashboardSpeechContext.ts", + "source_location": "L41", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_wrchatdashboardspeechcontext_cleardashboardwrchatspeechopenmeta", + "community": 106, + "community_name": "Handshake Shims", + "norm_label": "cleardashboardwrchatspeechopenmeta()" + }, + { + "label": "wrChatRuntimeMode.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/wrChatRuntimeMode.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_wrchatruntimemode", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "wrchatruntimemode.ts" + }, + { + "label": "WrChatRuntimeSurface", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/wrChatRuntimeMode.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_wrchatruntimemode_wrchatruntimesurface", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "wrchatruntimesurface" + }, + { + "label": "setWrChatRuntimeSurface()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/wrChatRuntimeMode.ts", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_wrchatruntimemode_setwrchatruntimesurface", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "setwrchatruntimesurface()" + }, + { + "label": "getWrChatRuntimeSurface()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/wrChatRuntimeMode.ts", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_wrchatruntimemode_getwrchatruntimesurface", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "getwrchatruntimesurface()" + }, + { + "label": "isWrChatDashboardSurface()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/wrChatRuntimeMode.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_wrchatruntimemode_iswrchatdashboardsurface", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "iswrchatdashboardsurface()" + }, + { + "label": "wrDeskOptimizerHttpBridge.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/wrDeskOptimizerHttpBridge.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_wrdeskoptimizerhttpbridge", + "community": 213, + "community_name": "Autooptimizationfingerprint", + "norm_label": "wrdeskoptimizerhttpbridge.ts" + }, + { + "label": "BridgeOkSnapshot", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/wrDeskOptimizerHttpBridge.ts", + "source_location": "L25", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_wrdeskoptimizerhttpbridge_bridgeoksnapshot", + "community": 213, + "community_name": "Autooptimizationfingerprint", + "norm_label": "bridgeoksnapshot" + }, + { + "label": "BridgeFail", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/wrDeskOptimizerHttpBridge.ts", + "source_location": "L26", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_wrdeskoptimizerhttpbridge_bridgefail", + "community": 213, + "community_name": "Autooptimizationfingerprint", + "norm_label": "bridgefail" + }, + { + "label": "BridgeApi", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/wrDeskOptimizerHttpBridge.ts", + "source_location": "L33", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_wrdeskoptimizerhttpbridge_bridgeapi", + "community": 213, + "community_name": "Autooptimizationfingerprint", + "norm_label": "bridgeapi" + }, + { + "label": "hasLinkedSessionIds()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/wrDeskOptimizerHttpBridge.ts", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_wrdeskoptimizerhttpbridge_haslinkedsessionids", + "community": 213, + "community_name": "Autooptimizationfingerprint", + "norm_label": "haslinkedsessionids()" + }, + { + "label": "registerWrDeskOptimizerHttpBridge()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/wrDeskOptimizerHttpBridge.ts", + "source_location": "L52", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_wrdeskoptimizerhttpbridge_registerwrdeskoptimizerhttpbridge", + "community": 106, + "community_name": "Handshake Shims", + "norm_label": "registerwrdeskoptimizerhttpbridge()" + }, + { + "label": "wrdeskUiEvents.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/wrdeskUiEvents.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_wrdeskuievents", + "community": 72, + "community_name": "Services", + "norm_label": "wrdeskuievents.ts" + }, + { + "label": "WRDESK_FOCUS_AI_CHAT_EVENT", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/wrdeskUiEvents.ts", + "source_location": "L20", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_wrdeskuievents_wrdesk_focus_ai_chat_event", + "community": 99, + "community_name": "Analysis Dashboard Stores", + "norm_label": "wrdesk_focus_ai_chat_event" + }, + { + "label": "WRDESK_AUTO_OPTIM_ACTIVATE_SESSIONS", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/wrdeskUiEvents.ts", + "source_location": "L23", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_wrdeskuievents_wrdesk_auto_optim_activate_sessions", + "community": 72, + "community_name": "Services", + "norm_label": "wrdesk_auto_optim_activate_sessions" + }, + { + "label": "WrdeskAutoOptimActivateDetail", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/wrdeskUiEvents.ts", + "source_location": "L26", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_wrdeskuievents_wrdeskautooptimactivatedetail", + "community": 72, + "community_name": "Services", + "norm_label": "wrdeskautooptimactivatedetail" + }, + { + "label": "WRDESK_OPTIMIZATION_GUARD_TOAST", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/wrdeskUiEvents.ts", + "source_location": "L29", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_wrdeskuievents_wrdesk_optimization_guard_toast", + "community": 72, + "community_name": "Services", + "norm_label": "wrdesk_optimization_guard_toast" + }, + { + "label": "WRDESK_OPTIMIZATION_RUN_RESULTS", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/wrdeskUiEvents.ts", + "source_location": "L32", + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_wrdeskuievents_wrdesk_optimization_run_results", + "community": 72, + "community_name": "Services", + "norm_label": "wrdesk_optimization_run_results" + }, + { + "label": "WrdeskOptimizationRunResultsDetail", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/lib/wrdeskUiEvents.ts", + "source_location": "L34", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_lib_wrdeskuievents_wrdeskoptimizationrunresultsdetail", + "community": 72, + "community_name": "Services", + "norm_label": "wrdeskoptimizationrunresultsdetail" + }, + { + "label": "main.tsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/main.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_main", + "community": 106, + "community_name": "Handshake Shims", + "norm_label": "main.tsx" + }, + { + "label": "handshakeRpc.acceptX25519.shim.regression.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/__tests__/handshakeRpc.acceptX25519.shim.regression.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_tests_handshakerpc_acceptx25519_shim_regression_test", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "handshakerpc.acceptx25519.shim.regression.test.ts" + }, + { + "label": "audit.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/audit.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_audit", + "community": 224, + "community_name": "Shims", + "norm_label": "audit.ts" + }, + { + "label": "AuditTrailPanel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/audit.ts", + "source_location": "L6", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_audit_audittrailpanel", + "community": 224, + "community_name": "Shims", + "norm_label": "audittrailpanel()" + }, + { + "label": "ArchiveButton()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/audit.ts", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_audit_archivebutton", + "community": 224, + "community_name": "Shims", + "norm_label": "archivebutton()" + }, + { + "label": "useAuditStore()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/audit.ts", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_audit_useauditstore", + "community": 224, + "community_name": "Shims", + "norm_label": "useauditstore()" + }, + { + "label": "useAuditEvents()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/audit.ts", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_audit_useauditevents", + "community": 224, + "community_name": "Shims", + "norm_label": "useauditevents()" + }, + { + "label": "useAuditChain()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/audit.ts", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_audit_useauditchain", + "community": 224, + "community_name": "Shims", + "norm_label": "useauditchain()" + }, + { + "label": "logImportEvent()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/audit.ts", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_audit_logimportevent", + "community": 224, + "community_name": "Shims", + "norm_label": "logimportevent()" + }, + { + "label": "logVerificationEvent()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/audit.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_audit_logverificationevent", + "community": 224, + "community_name": "Shims", + "norm_label": "logverificationevent()" + }, + { + "label": "logDispatchEvent()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/audit.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_audit_logdispatchevent", + "community": 224, + "community_name": "Shims", + "norm_label": "logdispatchevent()" + }, + { + "label": "logDeliveryEvent()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/audit.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_audit_logdeliveryevent", + "community": 224, + "community_name": "Shims", + "norm_label": "logdeliveryevent()" + }, + { + "label": "logReconstructionEvent()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/audit.ts", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_audit_logreconstructionevent", + "community": 224, + "community_name": "Shims", + "norm_label": "logreconstructionevent()" + }, + { + "label": "logArchiveEvent()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/audit.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_audit_logarchiveevent", + "community": 224, + "community_name": "Shims", + "norm_label": "logarchiveevent()" + }, + { + "label": "logExportEvent()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/audit.ts", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_audit_logexportevent", + "community": 224, + "community_name": "Shims", + "norm_label": "logexportevent()" + }, + { + "label": "checkArchiveEligibility()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/audit.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_audit_checkarchiveeligibility", + "community": 224, + "community_name": "Shims", + "norm_label": "checkarchiveeligibility()" + }, + { + "label": "archiveMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/audit.ts", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_audit_archivemessage", + "community": 224, + "community_name": "Shims", + "norm_label": "archivemessage()" + }, + { + "label": "storeArchiveRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/audit.ts", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_audit_storearchiverecord", + "community": 224, + "community_name": "Shims", + "norm_label": "storearchiverecord()" + }, + { + "label": "getArchiveRecord()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/audit.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_audit_getarchiverecord", + "community": 224, + "community_name": "Shims", + "norm_label": "getarchiverecord()" + }, + { + "label": "isArchived()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/audit.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_audit_isarchived", + "community": 224, + "community_name": "Shims", + "norm_label": "isarchived()" + }, + { + "label": "exportAuditLog()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/audit.ts", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_audit_exportauditlog", + "community": 224, + "community_name": "Shims", + "norm_label": "exportauditlog()" + }, + { + "label": "downloadAuditLog()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/audit.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_audit_downloadauditlog", + "community": 224, + "community_name": "Shims", + "norm_label": "downloadauditlog()" + }, + { + "label": "buildProofBundle()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/audit.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_audit_buildproofbundle", + "community": 224, + "community_name": "Shims", + "norm_label": "buildproofbundle()" + }, + { + "label": "downloadProofBundle()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/audit.ts", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_audit_downloadproofbundle", + "community": 224, + "community_name": "Shims", + "norm_label": "downloadproofbundle()" + }, + { + "label": "exportRejectedProof()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/audit.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_audit_exportrejectedproof", + "community": 224, + "community_name": "Shims", + "norm_label": "exportrejectedproof()" + }, + { + "label": "envelope-evaluation.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/envelope-evaluation.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_envelope_evaluation", + "community": 465, + "community_name": "Shims #465", + "norm_label": "envelope-evaluation.ts" + }, + { + "label": "useVerifyMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/envelope-evaluation.ts", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_envelope_evaluation_useverifymessage", + "community": 465, + "community_name": "Shims #465", + "norm_label": "useverifymessage()" + }, + { + "label": "evaluateIncomingMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/envelope-evaluation.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_envelope_evaluation_evaluateincomingmessage", + "community": 465, + "community_name": "Shims #465", + "norm_label": "evaluateincomingmessage()" + }, + { + "label": "createMockIncomingMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/envelope-evaluation.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_envelope_evaluation_createmockincomingmessage", + "community": 465, + "community_name": "Shims #465", + "norm_label": "createmockincomingmessage()" + }, + { + "label": "shims/handshakeRpc.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_handshakerpc", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "shims/handshakerpc.ts" + }, + { + "label": "LedgerParty", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L15", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_handshakerpc_ledgerparty", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "ledgerparty" + }, + { + "label": "mapLedgerHandshakeToRpc()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_handshakerpc_mapledgerhandshaketorpc", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "mapledgerhandshaketorpc()" + }, + { + "label": "listHandshakes()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L119", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_handshakerpc_listhandshakes", + "community": 139, + "community_name": "Handshake Beapbuilder Shims", + "norm_label": "listhandshakes()" + }, + { + "label": "getHandshake()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L137", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_handshakerpc_gethandshake", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "gethandshake()" + }, + { + "label": "initiateHandshake()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L141", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_handshakerpc_initiatehandshake", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "initiatehandshake()" + }, + { + "label": "buildHandshakeForDownload()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L162", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_handshakerpc_buildhandshakefordownload", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "buildhandshakefordownload()" + }, + { + "label": "extractDevicePublicKeyB64()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L190", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_handshakerpc_extractdevicepublickeyb64", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "extractdevicepublickeyb64()" + }, + { + "label": "BeapDevicePublicKeyResultShape", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L203", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_handshakerpc_beapdevicepublickeyresultshape", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "beapdevicepublickeyresultshape" + }, + { + "label": "classifyBeapGetDevicePublicKeyResultShape()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L205", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_handshakerpc_classifybeapgetdevicepublickeyresultshape", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "classifybeapgetdevicepublickeyresultshape()" + }, + { + "label": "logNormalAcceptX25519ShimFailure()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L219", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_handshakerpc_lognormalacceptx25519shimfailure", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "lognormalacceptx25519shimfailure()" + }, + { + "label": "acceptHandshake()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L240", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_handshakerpc_accepthandshake", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "accepthandshake()" + }, + { + "label": "refreshHandshake()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L397", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_handshakerpc_refreshhandshake", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "refreshhandshake()" + }, + { + "label": "revokeHandshake()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L405", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_handshakerpc_revokehandshake", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "revokehandshake()" + }, + { + "label": "deleteHandshake()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L409", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_handshakerpc_deletehandshake", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "deletehandshake()" + }, + { + "label": "PendingP2PBeapEntry", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L414", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_handshakerpc_pendingp2pbeapentry", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "pendingp2pbeapentry" + }, + { + "label": "getPendingP2PBeapMessages()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L421", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_handshakerpc_getpendingp2pbeapmessages", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "getpendingp2pbeapmessages()" + }, + { + "label": "ackPendingP2PBeap()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L430", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_handshakerpc_ackpendingp2pbeap", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "ackpendingp2pbeap()" + }, + { + "label": "PendingPlainEmailEntry", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L435", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_handshakerpc_pendingplainemailentry", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "pendingplainemailentry" + }, + { + "label": "getPendingPlainEmails()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L443", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_handshakerpc_getpendingplainemails", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "getpendingplainemails()" + }, + { + "label": "ackPendingPlainEmail()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L452", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_handshakerpc_ackpendingplainemail", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "ackpendingplainemail()" + }, + { + "label": "sendBeapViaP2P()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L458", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_handshakerpc_sendbeapviap2p", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "sendbeapviap2p()" + }, + { + "label": "checkHandshakeSendReady()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L476", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_handshakerpc_checkhandshakesendready", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "checkhandshakesendready()" + }, + { + "label": "shims/hsContextProfilesRpc.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/hsContextProfilesRpc.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_hscontextprofilesrpc", + "community": 404, + "community_name": "Shims #404", + "norm_label": "shims/hscontextprofilesrpc.ts" + }, + { + "label": "HsContextProfileSummary", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/hsContextProfilesRpc.ts", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_hscontextprofilesrpc_hscontextprofilesummary", + "community": 404, + "community_name": "Shims #404", + "norm_label": "hscontextprofilesummary" + }, + { + "label": "listHsProfiles()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/hsContextProfilesRpc.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_hscontextprofilesrpc_listhsprofiles", + "community": 404, + "community_name": "Shims #404", + "norm_label": "listhsprofiles()" + }, + { + "label": "getHsProfile()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/hsContextProfilesRpc.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_hscontextprofilesrpc_gethsprofile", + "community": 404, + "community_name": "Shims #404", + "norm_label": "gethsprofile()" + }, + { + "label": "createHsProfile()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/hsContextProfilesRpc.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_hscontextprofilesrpc_createhsprofile", + "community": 404, + "community_name": "Shims #404", + "norm_label": "createhsprofile()" + }, + { + "label": "updateHsProfile()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/hsContextProfilesRpc.ts", + "source_location": "L42", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_hscontextprofilesrpc_updatehsprofile", + "community": 404, + "community_name": "Shims #404", + "norm_label": "updatehsprofile()" + }, + { + "label": "deleteHsProfile()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/hsContextProfilesRpc.ts", + "source_location": "L46", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_hscontextprofilesrpc_deletehsprofile", + "community": 404, + "community_name": "Shims #404", + "norm_label": "deletehsprofile()" + }, + { + "label": "shims/ingress.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/ingress.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_ingress", + "community": 441, + "community_name": "Shims #441", + "norm_label": "shims/ingress.ts" + }, + { + "label": "InboxImportBar()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/ingress.ts", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_ingress_inboximportbar", + "community": 441, + "community_name": "Shims #441", + "norm_label": "inboximportbar()" + }, + { + "label": "ImportEmailModal()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/ingress.ts", + "source_location": "L6", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_ingress_importemailmodal", + "community": 441, + "community_name": "Shims #441", + "norm_label": "importemailmodal()" + }, + { + "label": "ImportMessengerModal()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/ingress.ts", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_ingress_importmessengermodal", + "community": 441, + "community_name": "Shims #441", + "norm_label": "importmessengermodal()" + }, + { + "label": "ImportFileModal()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/ingress.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_ingress_importfilemodal", + "community": 441, + "community_name": "Shims #441", + "norm_label": "importfilemodal()" + }, + { + "label": "reconstruction.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/reconstruction.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_reconstruction", + "community": 267, + "community_name": "Shims #267", + "norm_label": "reconstruction.ts" + }, + { + "label": "SafePreviewPanel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/reconstruction.ts", + "source_location": "L6", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_reconstruction_safepreviewpanel", + "community": 267, + "community_name": "Shims #267", + "norm_label": "safepreviewpanel()" + }, + { + "label": "ReconstructionStatus()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/reconstruction.ts", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_reconstruction_reconstructionstatus", + "community": 267, + "community_name": "Shims #267", + "norm_label": "reconstructionstatus()" + }, + { + "label": "SemanticPreview()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/reconstruction.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_reconstruction_semanticpreview", + "community": 267, + "community_name": "Shims #267", + "norm_label": "semanticpreview()" + }, + { + "label": "RasterPreview()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/reconstruction.ts", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_reconstruction_rasterpreview", + "community": 267, + "community_name": "Shims #267", + "norm_label": "rasterpreview()" + }, + { + "label": "useReconstructionStore()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/reconstruction.ts", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_reconstruction_usereconstructionstore", + "community": 267, + "community_name": "Shims #267", + "norm_label": "usereconstructionstore()" + }, + { + "label": "useReconstructionState()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/reconstruction.ts", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_reconstruction_usereconstructionstate", + "community": 267, + "community_name": "Shims #267", + "norm_label": "usereconstructionstate()" + }, + { + "label": "useIsReconstructed()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/reconstruction.ts", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_reconstruction_useisreconstructed", + "community": 267, + "community_name": "Shims #267", + "norm_label": "useisreconstructed()" + }, + { + "label": "useSemanticText()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/reconstruction.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_reconstruction_usesemantictext", + "community": 267, + "community_name": "Shims #267", + "norm_label": "usesemantictext()" + }, + { + "label": "useRasterRefs()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/reconstruction.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_reconstruction_userasterrefs", + "community": 267, + "community_name": "Shims #267", + "norm_label": "userasterrefs()" + }, + { + "label": "useReconstruction()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/reconstruction.ts", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_reconstruction_usereconstruction", + "community": 267, + "community_name": "Shims #267", + "norm_label": "usereconstruction()" + }, + { + "label": "runReconstruction()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/reconstruction.ts", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_reconstruction_runreconstruction", + "community": 267, + "community_name": "Shims #267", + "norm_label": "runreconstruction()" + }, + { + "label": "canReconstruct()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/reconstruction.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_reconstruction_canreconstruct", + "community": 267, + "community_name": "Shims #267", + "norm_label": "canreconstruct()" + }, + { + "label": "validateReconstructionIntegrity()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/reconstruction.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_reconstruction_validatereconstructionintegrity", + "community": 267, + "community_name": "Shims #267", + "norm_label": "validatereconstructionintegrity()" + }, + { + "label": "TIKA_SUPPORTED_TYPES", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/reconstruction.ts", + "source_location": "L23", + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_reconstruction_tika_supported_types", + "community": 267, + "community_name": "Shims #267", + "norm_label": "tika_supported_types" + }, + { + "label": "PDFIUM_SUPPORTED_TYPES", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/reconstruction.ts", + "source_location": "L24", + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_reconstruction_pdfium_supported_types", + "community": 267, + "community_name": "Shims #267", + "norm_label": "pdfium_supported_types" + }, + { + "label": "isTikaSupported()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/reconstruction.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_reconstruction_istikasupported", + "community": 267, + "community_name": "Shims #267", + "norm_label": "istikasupported()" + }, + { + "label": "isPdfiumSupported()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/reconstruction.ts", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_reconstruction_ispdfiumsupported", + "community": 267, + "community_name": "Shims #267", + "norm_label": "ispdfiumsupported()" + }, + { + "label": "wrChatDashboardChrome.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardChrome.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_wrchatdashboardchrome", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "wrchatdashboardchrome.ts" + }, + { + "label": "buildUpdateAgentBoxOutputRelayData()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardChrome.ts", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_wrchatdashboardchrome_buildupdateagentboxoutputrelaydata", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "buildupdateagentboxoutputrelaydata()" + }, + { + "label": "getAuthHeaders()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardChrome.ts", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_wrchatdashboardchrome_getauthheaders", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "getauthheaders()" + }, + { + "label": "readStorageKey()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardChrome.ts", + "source_location": "L80", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_wrchatdashboardchrome_readstoragekey", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "readstoragekey()" + }, + { + "label": "readSessionMirrorsFromLocalStorage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardChrome.ts", + "source_location": "L114", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_wrchatdashboardchrome_readsessionmirrorsfromlocalstorage", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "readsessionmirrorsfromlocalstorage()" + }, + { + "label": "writeStorageItems()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardChrome.ts", + "source_location": "L134", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_wrchatdashboardchrome_writestorageitems", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "writestorageitems()" + }, + { + "label": "clearLastError()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardChrome.ts", + "source_location": "L184", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_wrchatdashboardchrome_clearlasterror", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "clearlasterror()" + }, + { + "label": "setLastError()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardChrome.ts", + "source_location": "L188", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_wrchatdashboardchrome_setlasterror", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "setlasterror()" + }, + { + "label": "ensureWrdeskChromeShim()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardChrome.ts", + "source_location": "L192", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_wrchatdashboardchrome_ensurewrdeskchromeshim", + "community": 106, + "community_name": "Handshake Shims", + "norm_label": "ensurewrdeskchromeshim()" + }, + { + "label": "wrChatDashboardModeInterval.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeInterval.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_wrchatdashboardmodeinterval", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "wrchatdashboardmodeinterval.ts" + }, + { + "label": "intervalSecondsByModeId", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeInterval.ts", + "source_location": "L13", + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_wrchatdashboardmodeinterval_intervalsecondsbymodeid", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "intervalsecondsbymodeid" + }, + { + "label": "timersByModeId", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeInterval.ts", + "source_location": "L14", + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_wrchatdashboardmodeinterval_timersbymodeid", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "timersbymodeid" + }, + { + "label": "clearModeTimer()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeInterval.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_wrchatdashboardmodeinterval_clearmodetimer", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "clearmodetimer()" + }, + { + "label": "scheduleModeIntervalTimer()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeInterval.ts", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_wrchatdashboardmodeinterval_schedulemodeintervaltimer", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "schedulemodeintervaltimer()" + }, + { + "label": "handleDashboardModeIntervalTick()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeInterval.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_wrchatdashboardmodeinterval_handledashboardmodeintervaltick", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "handledashboardmodeintervaltick()" + }, + { + "label": "syncDashboardModeIntervalSchedulers()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeInterval.ts", + "source_location": "L60", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_wrchatdashboardmodeinterval_syncdashboardmodeintervalschedulers", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "syncdashboardmodeintervalschedulers()" + }, + { + "label": "wrChatDashboardModeRunBridge.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeRunBridge.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_wrchatdashboardmoderunbridge", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "wrchatdashboardmoderunbridge.ts" + }, + { + "label": "modeSessionExecuteInFlight", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeRunBridge.ts", + "source_location": "L33", + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_wrchatdashboardmoderunbridge_modesessionexecuteinflight", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "modesessionexecuteinflight" + }, + { + "label": "pendingModeRunsForExtension", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeRunBridge.ts", + "source_location": "L39", + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_wrchatdashboardmoderunbridge_pendingmoderunsforextension", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "pendingmoderunsforextension" + }, + { + "label": "isSessionRunInFlight()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeRunBridge.ts", + "source_location": "L49", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_wrchatdashboardmoderunbridge_issessionruninflight", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "issessionruninflight()" + }, + { + "label": "executeModeSessionRunDirectForDashboard()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeRunBridge.ts", + "source_location": "L57", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_wrchatdashboardmoderunbridge_executemodesessionrundirectfordashboard", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "executemodesessionrundirectfordashboard()" + }, + { + "label": "findOpenSessionSurfaceForDashboard()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeRunBridge.ts", + "source_location": "L105", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_wrchatdashboardmoderunbridge_findopensessionsurfacefordashboard", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "findopensessionsurfacefordashboard()" + }, + { + "label": "presentOrchestratorDisplayGridForModeRun()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeRunBridge.ts", + "source_location": "L131", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_wrchatdashboardmoderunbridge_presentorchestratordisplaygridformoderun", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "presentorchestratordisplaygridformoderun()" + }, + { + "label": "registerPendingModeSessionRunForDashboard()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeRunBridge.ts", + "source_location": "L177", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_wrchatdashboardmoderunbridge_registerpendingmodesessionrunfordashboard", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "registerpendingmodesessionrunfordashboard()" + }, + { + "label": "dashboardModeRunDeps", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeRunBridge.ts", + "source_location": "L191", + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_wrchatdashboardmoderunbridge_dashboardmoderundeps", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "dashboardmoderundeps" + }, + { + "label": "handleDashboardRunModeAllocatedSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeRunBridge.ts", + "source_location": "L207", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_shims_wrchatdashboardmoderunbridge_handledashboardrunmodeallocatedsession", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "handledashboardrunmodeallocatedsession()" + }, + { + "label": "useAiDraftContextStore.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useAiDraftContextStore.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useaidraftcontextstore", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "useaidraftcontextstore.ts" + }, + { + "label": "AiDraftContextDoc", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useAiDraftContextStore.ts", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useaidraftcontextstore_aidraftcontextdoc", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "aidraftcontextdoc" + }, + { + "label": "State", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useAiDraftContextStore.ts", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useaidraftcontextstore_state", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "state" + }, + { + "label": "Actions", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useAiDraftContextStore.ts", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useaidraftcontextstore_actions", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "actions" + }, + { + "label": "newId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useAiDraftContextStore.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useaidraftcontextstore_newid", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "newid()" + }, + { + "label": "useAiDraftContextStore", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useAiDraftContextStore.ts", + "source_location": "L28", + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useaidraftcontextstore_useaidraftcontextstore", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "useaidraftcontextstore" + }, + { + "label": "useDraftRefineStore.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useDraftRefineStore.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_usedraftrefinestore", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "usedraftrefinestore.ts" + }, + { + "label": "DraftRefineTarget", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useDraftRefineStore.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_usedraftrefinestore_draftrefinetarget", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "draftrefinetarget" + }, + { + "label": "DraftRefineState", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useDraftRefineStore.ts", + "source_location": "L16", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_usedraftrefinestore_draftrefinestate", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "draftrefinestate" + }, + { + "label": "useDraftRefineStore", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useDraftRefineStore.ts", + "source_location": "L41", + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_usedraftrefinestore_usedraftrefinestore", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "usedraftrefinestore" + }, + { + "label": "useEmailInboxStore.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useemailinboxstore", + "community": 81, + "community_name": "Stores", + "norm_label": "useemailinboxstore.ts" + }, + { + "label": "notifyIngestionStatusRefresh()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useemailinboxstore_notifyingestionstatusrefresh", + "community": 81, + "community_name": "Stores", + "norm_label": "notifyingestionstatusrefresh()" + }, + { + "label": "InboxSourceType", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L41", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxsourcetype", + "community": 81, + "community_name": "Stores", + "norm_label": "inboxsourcetype" + }, + { + "label": "InboxAttachment", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L43", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxattachment", + "community": 81, + "community_name": "Stores", + "norm_label": "inboxattachment" + }, + { + "label": "InboxMessage", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L58", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxmessage", + "community": 186, + "community_name": "Stores #186", + "norm_label": "inboxmessage" + }, + { + "label": "ClassifyMainRowPayload", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L136", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useemailinboxstore_classifymainrowpayload", + "community": 81, + "community_name": "Stores", + "norm_label": "classifymainrowpayload" + }, + { + "label": "InboxFilter", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L155", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxfilter", + "community": 150, + "community_name": "Stores #150", + "norm_label": "inboxfilter" + }, + { + "label": "INBOX_WORKFLOW_FILTER_KEYS", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L166", + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useemailinboxstore_inbox_workflow_filter_keys", + "community": 81, + "community_name": "Stores", + "norm_label": "inbox_workflow_filter_keys" + }, + { + "label": "InboxTabCounts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L175", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxtabcounts", + "community": 150, + "community_name": "Stores #150", + "norm_label": "inboxtabcounts" + }, + { + "label": "EMPTY_INBOX_TAB_COUNTS", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L184", + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useemailinboxstore_empty_inbox_tab_counts", + "community": 81, + "community_name": "Stores", + "norm_label": "empty_inbox_tab_counts" + }, + { + "label": "normalizeInboxTabCounts()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L193", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useemailinboxstore_normalizeinboxtabcounts", + "community": 81, + "community_name": "Stores", + "norm_label": "normalizeinboxtabcounts()" + }, + { + "label": "coerceInboxWorkflowFilter()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L205", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useemailinboxstore_coerceinboxworkflowfilter", + "community": 81, + "community_name": "Stores", + "norm_label": "coerceinboxworkflowfilter()" + }, + { + "label": "SubFocus", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L220", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useemailinboxstore_subfocus", + "community": 81, + "community_name": "Stores", + "norm_label": "subfocus" + }, + { + "label": "EmailInboxState", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L229", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useemailinboxstore_emailinboxstate", + "community": 81, + "community_name": "Stores", + "norm_label": "emailinboxstate" + }, + { + "label": "pullStatsLine()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L396", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useemailinboxstore_pullstatsline", + "community": 81, + "community_name": "Stores", + "norm_label": "pullstatsline()" + }, + { + "label": "getBridge()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L407", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useemailinboxstore_getbridge", + "community": 81, + "community_name": "Stores", + "norm_label": "getbridge()" + }, + { + "label": "trackedListMessages()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L412", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useemailinboxstore_trackedlistmessages", + "community": 81, + "community_name": "Stores", + "norm_label": "trackedlistmessages()" + }, + { + "label": "activeEmailAccountIdsForSync()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L421", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useemailinboxstore_activeemailaccountidsforsync", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "activeemailaccountidsforsync()" + }, + { + "label": "ListMessagesBridgeOptions", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L445", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useemailinboxstore_listmessagesbridgeoptions", + "community": 81, + "community_name": "Stores", + "norm_label": "listmessagesbridgeoptions" + }, + { + "label": "listBridgeOptionsFromFilter()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L454", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useemailinboxstore_listbridgeoptionsfromfilter", + "community": 81, + "community_name": "Stores", + "norm_label": "listbridgeoptionsfromfilter()" + }, + { + "label": "DEFAULT_FILTER", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L465", + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useemailinboxstore_default_filter", + "community": 81, + "community_name": "Stores", + "norm_label": "default_filter" + }, + { + "label": "filterByInboxFilter()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L475", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useemailinboxstore_filterbyinboxfilter", + "community": 81, + "community_name": "Stores", + "norm_label": "filterbyinboxfilter()" + }, + { + "label": "EmailInboxSet", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L545", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useemailinboxstore_emailinboxset", + "community": 81, + "community_name": "Stores", + "norm_label": "emailinboxset" + }, + { + "label": "commitPendingDeleteToLocalState()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L557", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useemailinboxstore_commitpendingdeletetolocalstate", + "community": 81, + "community_name": "Stores", + "norm_label": "commitpendingdeletetolocalstate()" + }, + { + "label": "commitPendingReviewToLocalState()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L608", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useemailinboxstore_commitpendingreviewtolocalstate", + "community": 81, + "community_name": "Stores", + "norm_label": "commitpendingreviewtolocalstate()" + }, + { + "label": "inboxMessageAfterClassifyMain()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L660", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxmessageafterclassifymain", + "community": 81, + "community_name": "Stores", + "norm_label": "inboxmessageafterclassifymain()" + }, + { + "label": "commitBulkClassifyMainResultsToLocalState()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L697", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useemailinboxstore_commitbulkclassifymainresultstolocalstate", + "community": 81, + "community_name": "Stores", + "norm_label": "commitbulkclassifymainresultstolocalstate()" + }, + { + "label": "commitClassifyMainResultToLocalState()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L786", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useemailinboxstore_commitclassifymainresulttolocalstate", + "community": 81, + "community_name": "Stores", + "norm_label": "commitclassifymainresulttolocalstate()" + }, + { + "label": "commitArchiveToLocalState()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L790", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useemailinboxstore_commitarchivetolocalstate", + "community": 81, + "community_name": "Stores", + "norm_label": "commitarchivetolocalstate()" + }, + { + "label": "deriveTabCounts()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L813", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useemailinboxstore_derivetabcounts", + "community": 81, + "community_name": "Stores", + "norm_label": "derivetabcounts()" + }, + { + "label": "fetchBulkTabCountsServer()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L826", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useemailinboxstore_fetchbulktabcountsserver", + "community": 81, + "community_name": "Stores", + "norm_label": "fetchbulktabcountsserver()" + }, + { + "label": "loadBulkInboxSnapshotPaginated()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L851", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useemailinboxstore_loadbulkinboxsnapshotpaginated", + "community": 81, + "community_name": "Stores", + "norm_label": "loadbulkinboxsnapshotpaginated()" + }, + { + "label": "loadBulkInboxFirstPagePreserveTabCounts()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L900", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useemailinboxstore_loadbulkinboxfirstpagepreservetabcounts", + "community": 81, + "community_name": "Stores", + "norm_label": "loadbulkinboxfirstpagepreservetabcounts()" + }, + { + "label": "loadPagedListSnapshot()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L950", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useemailinboxstore_loadpagedlistsnapshot", + "community": 81, + "community_name": "Stores", + "norm_label": "loadpagedlistsnapshot()" + }, + { + "label": "useEmailInboxStore", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L991", + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useemailinboxstore_useemailinboxstore", + "community": 205, + "community_name": "Stores #205", + "norm_label": "useemailinboxstore" + }, + { + "label": "useLetterComposerStore.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_uselettercomposerstore", + "community": 172, + "community_name": "Stores #172", + "norm_label": "uselettercomposerstore.ts" + }, + { + "label": "FieldMode", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_uselettercomposerstore_fieldmode", + "community": 300, + "community_name": "Stores #300", + "norm_label": "fieldmode" + }, + { + "label": "FieldType", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_uselettercomposerstore_fieldtype", + "community": 310, + "community_name": "Stores #310", + "norm_label": "fieldtype" + }, + { + "label": "TemplateField", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_uselettercomposerstore_templatefield", + "community": 300, + "community_name": "Stores #300", + "norm_label": "templatefield" + }, + { + "label": "LetterTemplate", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L33", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_uselettercomposerstore_lettertemplate", + "community": 290, + "community_name": "Stores #290", + "norm_label": "lettertemplate" + }, + { + "label": "CompanyProfile", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L52", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_uselettercomposerstore_companyprofile", + "community": 172, + "community_name": "Stores #172", + "norm_label": "companyprofile" + }, + { + "label": "DEFAULT_COMPANY_PROFILE", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L62", + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_uselettercomposerstore_default_company_profile", + "community": 172, + "community_name": "Stores #172", + "norm_label": "default_company_profile" + }, + { + "label": "BuiltinLayout", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L72", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_uselettercomposerstore_builtinlayout", + "community": 310, + "community_name": "Stores #310", + "norm_label": "builtinlayout" + }, + { + "label": "BuiltinTemplateField", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L74", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_uselettercomposerstore_builtintemplatefield", + "community": 172, + "community_name": "Stores #172", + "norm_label": "builtintemplatefield" + }, + { + "label": "BuiltinTemplate", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L84", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_uselettercomposerstore_builtintemplate", + "community": 310, + "community_name": "Stores #310", + "norm_label": "builtintemplate" + }, + { + "label": "builtinLetterFields()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L93", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_uselettercomposerstore_builtinletterfields", + "community": 172, + "community_name": "Stores #172", + "norm_label": "builtinletterfields()" + }, + { + "label": "BUILTIN_TEMPLATES", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L123", + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_uselettercomposerstore_builtin_templates", + "community": 310, + "community_name": "Stores #310", + "norm_label": "builtin_templates" + }, + { + "label": "TemplateSetupStep", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L154", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_uselettercomposerstore_templatesetupstep", + "community": 172, + "community_name": "Stores #172", + "norm_label": "templatesetupstep" + }, + { + "label": "LetterPage", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L158", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_uselettercomposerstore_letterpage", + "community": 172, + "community_name": "Stores #172", + "norm_label": "letterpage" + }, + { + "label": "ScannedLetter", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L164", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_uselettercomposerstore_scannedletter", + "community": 290, + "community_name": "Stores #290", + "norm_label": "scannedletter" + }, + { + "label": "ScannedLetterInput", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L181", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_uselettercomposerstore_scannedletterinput", + "community": 172, + "community_name": "Stores #172", + "norm_label": "scannedletterinput" + }, + { + "label": "ComposeSession", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L186", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_uselettercomposerstore_composesession", + "community": 290, + "community_name": "Stores #290", + "norm_label": "composesession" + }, + { + "label": "slugifyTemplateFieldName()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L201", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_uselettercomposerstore_slugifytemplatefieldname", + "community": 172, + "community_name": "Stores #172", + "norm_label": "slugifytemplatefieldname()" + }, + { + "label": "slugifySemanticName()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L206", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_uselettercomposerstore_slugifysemanticname", + "community": 172, + "community_name": "Stores #172", + "norm_label": "slugifysemanticname()" + }, + { + "label": "migrateTemplateFieldV1()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L210", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_uselettercomposerstore_migratetemplatefieldv1", + "community": 172, + "community_name": "Stores #172", + "norm_label": "migratetemplatefieldv1()" + }, + { + "label": "migrateLetterTemplateV1()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L243", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_uselettercomposerstore_migratelettertemplatev1", + "community": 172, + "community_name": "Stores #172", + "norm_label": "migratelettertemplatev1()" + }, + { + "label": "combinedRecipientFieldText()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L264", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_uselettercomposerstore_combinedrecipientfieldtext", + "community": 172, + "community_name": "Stores #172", + "norm_label": "combinedrecipientfieldtext()" + }, + { + "label": "RecipientFieldMergeMeta", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L274", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_uselettercomposerstore_recipientfieldmergemeta", + "community": 172, + "community_name": "Stores #172", + "norm_label": "recipientfieldmergemeta" + }, + { + "label": "isLegacyRecipientNameField()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L282", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_uselettercomposerstore_islegacyrecipientnamefield", + "community": 172, + "community_name": "Stores #172", + "norm_label": "islegacyrecipientnamefield()" + }, + { + "label": "isLegacyRecipientAddressField()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L289", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_uselettercomposerstore_islegacyrecipientaddressfield", + "community": 172, + "community_name": "Stores #172", + "norm_label": "islegacyrecipientaddressfield()" + }, + { + "label": "templateHasLegacyRecipientFields()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L296", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_uselettercomposerstore_templatehaslegacyrecipientfields", + "community": 172, + "community_name": "Stores #172", + "norm_label": "templatehaslegacyrecipientfields()" + }, + { + "label": "migrateTemplatesRecipientFields()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L304", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_uselettercomposerstore_migratetemplatesrecipientfields", + "community": 172, + "community_name": "Stores #172", + "norm_label": "migratetemplatesrecipientfields()" + }, + { + "label": "migrateComposeSessionsRecipientFieldIds()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L395", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_uselettercomposerstore_migratecomposesessionsrecipientfieldids", + "community": 172, + "community_name": "Stores #172", + "norm_label": "migratecomposesessionsrecipientfieldids()" + }, + { + "label": "SenderFieldMergeMeta", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L430", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_uselettercomposerstore_senderfieldmergemeta", + "community": 172, + "community_name": "Stores #172", + "norm_label": "senderfieldmergemeta" + }, + { + "label": "isLegacySenderNameField()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L437", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_uselettercomposerstore_islegacysendernamefield", + "community": 172, + "community_name": "Stores #172", + "norm_label": "islegacysendernamefield()" + }, + { + "label": "isLegacySenderAddressField()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L441", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_uselettercomposerstore_islegacysenderaddressfield", + "community": 172, + "community_name": "Stores #172", + "norm_label": "islegacysenderaddressfield()" + }, + { + "label": "templateHasLegacySenderFields()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L445", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_uselettercomposerstore_templatehaslegacysenderfields", + "community": 172, + "community_name": "Stores #172", + "norm_label": "templatehaslegacysenderfields()" + }, + { + "label": "migrateTemplatesSenderFields()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L453", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_uselettercomposerstore_migratetemplatessenderfields", + "community": 172, + "community_name": "Stores #172", + "norm_label": "migratetemplatessenderfields()" + }, + { + "label": "migrateComposeSessionsSenderFieldIds()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L541", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_uselettercomposerstore_migratecomposesessionssenderfieldids", + "community": 172, + "community_name": "Stores #172", + "norm_label": "migratecomposesessionssenderfieldids()" + }, + { + "label": "migrateCompanyProfileSenderKeys()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L575", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_uselettercomposerstore_migratecompanyprofilesenderkeys", + "community": 172, + "community_name": "Stores #172", + "norm_label": "migratecompanyprofilesenderkeys()" + }, + { + "label": "VAULT_APPLY_FIELD_CANDIDATES", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L604", + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_uselettercomposerstore_vault_apply_field_candidates", + "community": 172, + "community_name": "Stores #172", + "norm_label": "vault_apply_field_candidates" + }, + { + "label": "templateFieldMatchesVaultCandidate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L621", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_uselettercomposerstore_templatefieldmatchesvaultcandidate", + "community": 172, + "community_name": "Stores #172", + "norm_label": "templatefieldmatchesvaultcandidate()" + }, + { + "label": "findTemplateFieldForVaultApply()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L634", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_uselettercomposerstore_findtemplatefieldforvaultapply", + "community": 172, + "community_name": "Stores #172", + "norm_label": "findtemplatefieldforvaultapply()" + }, + { + "label": "resolveComposeSessionIdForTemplate()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L644", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_uselettercomposerstore_resolvecomposesessionidfortemplate", + "community": 172, + "community_name": "Stores #172", + "norm_label": "resolvecomposesessionidfortemplate()" + }, + { + "label": "createLetterComposeSession()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L656", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_uselettercomposerstore_createlettercomposesession", + "community": 310, + "community_name": "Stores #310", + "norm_label": "createlettercomposesession()" + }, + { + "label": "LetterVaultData", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L672", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_uselettercomposerstore_lettervaultdata", + "community": 277, + "community_name": "Chat Routing Stores", + "norm_label": "lettervaultdata" + }, + { + "label": "LetterComposerState", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L681", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_uselettercomposerstore_lettercomposerstate", + "community": 172, + "community_name": "Stores #172", + "norm_label": "lettercomposerstate" + }, + { + "label": "useLetterComposerStore", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L773", + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_uselettercomposerstore_uselettercomposerstore", + "community": 310, + "community_name": "Stores #310", + "norm_label": "uselettercomposerstore" + }, + { + "label": "useProjectSetupChatContextStore.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useProjectSetupChatContextStore.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useprojectsetupchatcontextstore", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "useprojectsetupchatcontextstore.ts" + }, + { + "label": "ProjectSetupChatSnippet", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useProjectSetupChatContextStore.ts", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useprojectsetupchatcontextstore_projectsetupchatsnippet", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "projectsetupchatsnippet" + }, + { + "label": "ActiveMilestoneChatContext", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useProjectSetupChatContextStore.ts", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useprojectsetupchatcontextstore_activemilestonechatcontext", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "activemilestonechatcontext" + }, + { + "label": "ProjectSetupChatContextState", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useProjectSetupChatContextStore.ts", + "source_location": "L29", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useprojectsetupchatcontextstore_projectsetupchatcontextstate", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "projectsetupchatcontextstate" + }, + { + "label": "Actions", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useProjectSetupChatContextStore.ts", + "source_location": "L42", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useprojectsetupchatcontextstore_actions", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "actions" + }, + { + "label": "newId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useProjectSetupChatContextStore.ts", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useprojectsetupchatcontextstore_newid", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "newid()" + }, + { + "label": "initial", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useProjectSetupChatContextStore.ts", + "source_location": "L60", + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useprojectsetupchatcontextstore_initial", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "initial" + }, + { + "label": "useProjectSetupChatContextStore", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useProjectSetupChatContextStore.ts", + "source_location": "L70", + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useprojectsetupchatcontextstore_useprojectsetupchatcontextstore", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "useprojectsetupchatcontextstore" + }, + { + "label": "projectSetupChatHasBridgeableContent()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useProjectSetupChatContextStore.ts", + "source_location": "L92", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useprojectsetupchatcontextstore_projectsetupchathasbridgeablecontent", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "projectsetupchathasbridgeablecontent()" + }, + { + "label": "useProjectStore.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useProjectStore.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useprojectstore", + "community": 99, + "community_name": "Analysis Dashboard Stores", + "norm_label": "useprojectstore.ts" + }, + { + "label": "notifyComposerShortcutsUpdated()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useProjectStore.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useprojectstore_notifycomposershortcutsupdated", + "community": 99, + "community_name": "Analysis Dashboard Stores", + "norm_label": "notifycomposershortcutsupdated()" + }, + { + "label": "ComposerId", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useProjectStore.ts", + "source_location": "L46", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useprojectstore_composerid", + "community": 99, + "community_name": "Analysis Dashboard Stores", + "norm_label": "composerid" + }, + { + "label": "ComposerIconsState", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useProjectStore.ts", + "source_location": "L53", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useprojectstore_composericonsstate", + "community": 99, + "community_name": "Analysis Dashboard Stores", + "norm_label": "composericonsstate" + }, + { + "label": "ProjectState", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useProjectStore.ts", + "source_location": "L61", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useprojectstore_projectstate", + "community": 99, + "community_name": "Analysis Dashboard Stores", + "norm_label": "projectstate" + }, + { + "label": "ProjectActions", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useProjectStore.ts", + "source_location": "L74", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useprojectstore_projectactions", + "community": 99, + "community_name": "Analysis Dashboard Stores", + "norm_label": "projectactions" + }, + { + "label": "now()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useProjectStore.ts", + "source_location": "L129", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useprojectstore_now", + "community": 99, + "community_name": "Analysis Dashboard Stores", + "norm_label": "now()" + }, + { + "label": "patchProject()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useProjectStore.ts", + "source_location": "L133", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useprojectstore_patchproject", + "community": 99, + "community_name": "Analysis Dashboard Stores", + "norm_label": "patchproject()" + }, + { + "label": "useProjectStore", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useProjectStore.ts", + "source_location": "L143", + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useprojectstore_useprojectstore", + "community": 89, + "community_name": "Shims Stores", + "norm_label": "useprojectstore" + }, + { + "label": "selectActiveProject()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useProjectStore.ts", + "source_location": "L461", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useprojectstore_selectactiveproject", + "community": 99, + "community_name": "Analysis Dashboard Stores", + "norm_label": "selectactiveproject()" + }, + { + "label": "selectActiveMilestone()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useProjectStore.ts", + "source_location": "L471", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useprojectstore_selectactivemilestone", + "community": 99, + "community_name": "Analysis Dashboard Stores", + "norm_label": "selectactivemilestone()" + }, + { + "label": "milestoneCompletionPct()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/stores/useProjectStore.ts", + "source_location": "L486", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_stores_useprojectstore_milestonecompletionpct", + "community": 99, + "community_name": "Analysis Dashboard Stores", + "norm_label": "milestonecompletionpct()" + }, + { + "label": "uiContrastTokens.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/styles/uiContrastTokens.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_styles_uicontrasttokens", + "community": 291, + "community_name": "Uicontrasttokens", + "norm_label": "uicontrasttokens.ts" + }, + { + "label": "UI_BADGE", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/styles/uiContrastTokens.ts", + "source_location": "L5", + "_origin": "ast", + "id": "apps_electron_vite_project_src_styles_uicontrasttokens_ui_badge", + "community": 291, + "community_name": "Uicontrasttokens", + "norm_label": "ui_badge" + }, + { + "label": "UI_TAB", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/styles/uiContrastTokens.ts", + "source_location": "L39", + "_origin": "ast", + "id": "apps_electron_vite_project_src_styles_uicontrasttokens_ui_tab", + "community": 291, + "community_name": "Uicontrasttokens", + "norm_label": "ui_tab" + }, + { + "label": "UI_BUTTON", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/styles/uiContrastTokens.ts", + "source_location": "L52", + "_origin": "ast", + "id": "apps_electron_vite_project_src_styles_uicontrasttokens_ui_button", + "community": 291, + "community_name": "Uicontrasttokens", + "norm_label": "ui_button" + }, + { + "label": "UI_INBOX_BEAP_ACTION", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/styles/uiContrastTokens.ts", + "source_location": "L68", + "_origin": "ast", + "id": "apps_electron_vite_project_src_styles_uicontrasttokens_ui_inbox_beap_action", + "community": 291, + "community_name": "Uicontrasttokens", + "norm_label": "ui_inbox_beap_action" + }, + { + "label": "UI_INBOX_MESSAGE_DETAIL_ACTION", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/styles/uiContrastTokens.ts", + "source_location": "L86", + "_origin": "ast", + "id": "apps_electron_vite_project_src_styles_uicontrasttokens_ui_inbox_message_detail_action", + "community": 291, + "community_name": "Uicontrasttokens", + "norm_label": "ui_inbox_message_detail_action" + }, + { + "label": "UI_INBOX_BEAP_LIST_ROW", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/styles/uiContrastTokens.ts", + "source_location": "L93", + "_origin": "ast", + "id": "apps_electron_vite_project_src_styles_uicontrasttokens_ui_inbox_beap_list_row", + "community": 291, + "community_name": "Uicontrasttokens", + "norm_label": "ui_inbox_beap_list_row" + }, + { + "label": "analysisDashboardSnapshot.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/analysisDashboardSnapshot.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_analysisdashboardsnapshot", + "community": 125, + "community_name": "Analysis Dashboard #125", + "norm_label": "analysisdashboardsnapshot.ts" + }, + { + "label": "IsoDateString", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/analysisDashboardSnapshot.ts", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_isodatestring", + "community": 125, + "community_name": "Analysis Dashboard #125", + "norm_label": "isodatestring" + }, + { + "label": "TrustworthyCount", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/analysisDashboardSnapshot.ts", + "source_location": "L26", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_trustworthycount", + "community": 125, + "community_name": "Analysis Dashboard #125", + "norm_label": "trustworthycount" + }, + { + "label": "AnalysisDashboardInboxTabCounts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/analysisDashboardSnapshot.ts", + "source_location": "L31", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardinboxtabcounts", + "community": 125, + "community_name": "Analysis Dashboard #125", + "norm_label": "analysisdashboardinboxtabcounts" + }, + { + "label": "AnalysisDashboardMessageKindTotals", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/analysisDashboardSnapshot.ts", + "source_location": "L44", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardmessagekindtotals", + "community": 125, + "community_name": "Analysis Dashboard #125", + "norm_label": "analysisdashboardmessagekindtotals" + }, + { + "label": "AnalysisDashboardCategoryCount", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/analysisDashboardSnapshot.ts", + "source_location": "L53", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardcategorycount", + "community": 125, + "community_name": "Analysis Dashboard #125", + "norm_label": "analysisdashboardcategorycount" + }, + { + "label": "AnalysisDashboardTopSection", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/analysisDashboardSnapshot.ts", + "source_location": "L58", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardtopsection", + "community": 125, + "community_name": "Analysis Dashboard #125", + "norm_label": "analysisdashboardtopsection" + }, + { + "label": "AnalysisDashboardAutosortMessageRef", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/analysisDashboardSnapshot.ts", + "source_location": "L72", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardautosortmessageref", + "community": 230, + "community_name": "Analysis Dashboard #230", + "norm_label": "analysisdashboardautosortmessageref" + }, + { + "label": "AnalysisDashboardAutosortAiSummary", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/analysisDashboardSnapshot.ts", + "source_location": "L97", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardautosortaisummary", + "community": 125, + "community_name": "Analysis Dashboard #125", + "norm_label": "analysisdashboardautosortaisummary" + }, + { + "label": "AnalysisDashboardAutosortSessionMeta", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/analysisDashboardSnapshot.ts", + "source_location": "L103", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardautosortsessionmeta", + "community": 125, + "community_name": "Analysis Dashboard #125", + "norm_label": "analysisdashboardautosortsessionmeta" + }, + { + "label": "AnalysisDashboardAutosortSection", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/analysisDashboardSnapshot.ts", + "source_location": "L119", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardautosortsection", + "community": 125, + "community_name": "Analysis Dashboard #125", + "norm_label": "analysisdashboardautosortsection" + }, + { + "label": "AnalysisDashboardPoAEHistoryRow", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/analysisDashboardSnapshot.ts", + "source_location": "L139", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardpoaehistoryrow", + "community": 122, + "community_name": "Analysis Dashboard", + "norm_label": "analysisdashboardpoaehistoryrow" + }, + { + "label": "AnalysisDashboardPoAESection", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/analysisDashboardSnapshot.ts", + "source_location": "L154", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardpoaesection", + "community": 122, + "community_name": "Analysis Dashboard", + "norm_label": "analysisdashboardpoaesection" + }, + { + "label": "AnalysisDashboardThreatMetrics", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/analysisDashboardSnapshot.ts", + "source_location": "L183", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardthreatmetrics", + "community": 125, + "community_name": "Analysis Dashboard #125", + "norm_label": "analysisdashboardthreatmetrics" + }, + { + "label": "AnalysisDashboardAutomationMetrics", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/analysisDashboardSnapshot.ts", + "source_location": "L210", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardautomationmetrics", + "community": 125, + "community_name": "Analysis Dashboard #125", + "norm_label": "analysisdashboardautomationmetrics" + }, + { + "label": "AnalysisDashboardTransportRatio", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/analysisDashboardSnapshot.ts", + "source_location": "L238", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardtransportratio", + "community": 125, + "community_name": "Analysis Dashboard #125", + "norm_label": "analysisdashboardtransportratio" + }, + { + "label": "AnalysisDashboardQueueVelocity", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/analysisDashboardSnapshot.ts", + "source_location": "L258", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardqueuevelocity", + "community": 125, + "community_name": "Analysis Dashboard #125", + "norm_label": "analysisdashboardqueuevelocity" + }, + { + "label": "AnalysisDashboardProjectSetupSection", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/analysisDashboardSnapshot.ts", + "source_location": "L278", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardprojectsetupsection", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "analysisdashboardprojectsetupsection" + }, + { + "label": "AnalysisDashboardHandshakeState", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/analysisDashboardSnapshot.ts", + "source_location": "L286", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardhandshakestate", + "community": 125, + "community_name": "Analysis Dashboard #125", + "norm_label": "analysisdashboardhandshakestate" + }, + { + "label": "AnalysisDashboardHandshakeCounts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/analysisDashboardSnapshot.ts", + "source_location": "L294", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardhandshakecounts", + "community": 125, + "community_name": "Analysis Dashboard #125", + "norm_label": "analysisdashboardhandshakecounts" + }, + { + "label": "AnalysisDashboardHandshakeSection", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/analysisDashboardSnapshot.ts", + "source_location": "L299", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardhandshakesection", + "community": 125, + "community_name": "Analysis Dashboard #125", + "norm_label": "analysisdashboardhandshakesection" + }, + { + "label": "InboxDashboardSnapshotWire", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/analysisDashboardSnapshot.ts", + "source_location": "L308", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_inboxdashboardsnapshotwire", + "community": 125, + "community_name": "Analysis Dashboard #125", + "norm_label": "inboxdashboardsnapshotwire" + }, + { + "label": "AnalysisDashboardSnapshot", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/analysisDashboardSnapshot.ts", + "source_location": "L342", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardsnapshot", + "community": 125, + "community_name": "Analysis Dashboard #125", + "norm_label": "analysisdashboardsnapshot" + }, + { + "label": "AnalysisDashboardV1Omit", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/analysisDashboardSnapshot.ts", + "source_location": "L401", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardv1omit", + "community": 125, + "community_name": "Analysis Dashboard #125", + "norm_label": "analysisdashboardv1omit" + }, + { + "label": "beapInboxClone.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/beapInboxClone.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_beapinboxclone", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "beapinboxclone.ts" + }, + { + "label": "BeapInboxClonePrepareOk", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/beapInboxClone.ts", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_beapinboxclone_beapinboxcloneprepareok", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "beapinboxcloneprepareok" + }, + { + "label": "BeapInboxClonePrepareErrorCode", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/beapInboxClone.ts", + "source_location": "L47", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_beapinboxclone_beapinboxcloneprepareerrorcode", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "beapinboxcloneprepareerrorcode" + }, + { + "label": "BeapInboxCloneNoSandboxDetails", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/beapInboxClone.ts", + "source_location": "L59", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_beapinboxclone_beapinboxclonenosandboxdetails", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "beapinboxclonenosandboxdetails" + }, + { + "label": "CloneBeapToSandboxIpcErrorCode", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/beapInboxClone.ts", + "source_location": "L67", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_beapinboxclone_clonebeaptosandboxipcerrorcode", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "clonebeaptosandboxipcerrorcode" + }, + { + "label": "CloneBeapToSandboxIpcResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/beapInboxClone.ts", + "source_location": "L78", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_beapinboxclone_clonebeaptosandboxipcresult", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "clonebeaptosandboxipcresult" + }, + { + "label": "inboxAi.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/inboxAi.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_inboxai", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "inboxai.ts" + }, + { + "label": "SortCategory", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/inboxAi.ts", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_inboxai_sortcategory", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "sortcategory" + }, + { + "label": "SORT_CATEGORIES", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/inboxAi.ts", + "source_location": "L20", + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_inboxai_sort_categories", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "sort_categories" + }, + { + "label": "AdvisoryRecommendedAction", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/inboxAi.ts", + "source_location": "L33", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_inboxai_advisoryrecommendedaction", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "advisoryrecommendedaction" + }, + { + "label": "ScamWatchdogStatus", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/inboxAi.ts", + "source_location": "L41", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_inboxai_scamwatchdogstatus", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "scamwatchdogstatus" + }, + { + "label": "ScamWatchdogResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/inboxAi.ts", + "source_location": "L43", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_inboxai_scamwatchdogresult", + "community": 205, + "community_name": "Stores #205", + "norm_label": "scamwatchdogresult" + }, + { + "label": "NormalInboxAiResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/inboxAi.ts", + "source_location": "L53", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_inboxai_normalinboxairesult", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "normalinboxairesult" + }, + { + "label": "NormalInboxDraftReply", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/inboxAi.ts", + "source_location": "L80", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_inboxai_normalinboxdraftreply", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "normalinboxdraftreply" + }, + { + "label": "BulkRecommendedAction", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/inboxAi.ts", + "source_location": "L89", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_inboxai_bulkrecommendedaction", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "bulkrecommendedaction" + }, + { + "label": "BulkClassification", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/inboxAi.ts", + "source_location": "L100", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_inboxai_bulkclassification", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "bulkclassification" + }, + { + "label": "BulkAiResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/inboxAi.ts", + "source_location": "L121", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_inboxai_bulkairesult", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "bulkairesult" + }, + { + "label": "AutosortOutcomeKind", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/inboxAi.ts", + "source_location": "L141", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_inboxai_autosortoutcomekind", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "autosortoutcomekind" + }, + { + "label": "AutosortRetainKind", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/inboxAi.ts", + "source_location": "L144", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_inboxai_autosortretainkind", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "autosortretainkind" + }, + { + "label": "AutosortFailureReason", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/inboxAi.ts", + "source_location": "L151", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_inboxai_autosortfailurereason", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "autosortfailurereason" + }, + { + "label": "BulkAiResultEntry", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/inboxAi.ts", + "source_location": "L161", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_inboxai_bulkairesultentry", + "community": 43, + "community_name": "Emailinboxbulkview", + "norm_label": "bulkairesultentry" + }, + { + "label": "AiOutputs", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/inboxAi.ts", + "source_location": "L187", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_inboxai_aioutputs", + "community": 81, + "community_name": "Stores", + "norm_label": "aioutputs" + }, + { + "label": "electron-vite-project/src/types/optimizationTypes.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/optimizationTypes.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_optimizationtypes", + "community": 72, + "community_name": "Services", + "norm_label": "electron-vite-project/src/types/optimizationtypes.ts" + }, + { + "label": "TriggerSource", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/optimizationTypes.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_optimizationtypes_triggersource", + "community": 72, + "community_name": "Services", + "norm_label": "triggersource" + }, + { + "label": "GuardFailCode", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/optimizationTypes.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_optimizationtypes_guardfailcode", + "community": 213, + "community_name": "Autooptimizationfingerprint", + "norm_label": "guardfailcode" + }, + { + "label": "GuardFallback", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/optimizationTypes.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_optimizationtypes_guardfallback", + "community": 72, + "community_name": "Services", + "norm_label": "guardfallback" + }, + { + "label": "GuardResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/optimizationTypes.ts", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_optimizationtypes_guardresult", + "community": 72, + "community_name": "Services", + "norm_label": "guardresult" + }, + { + "label": "DomSnapshot", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/optimizationTypes.ts", + "source_location": "L27", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_optimizationtypes_domsnapshot", + "community": 213, + "community_name": "Autooptimizationfingerprint", + "norm_label": "domsnapshot" + }, + { + "label": "DomSlotCapture", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/optimizationTypes.ts", + "source_location": "L34", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_optimizationtypes_domslotcapture", + "community": 72, + "community_name": "Services", + "norm_label": "domslotcapture" + }, + { + "label": "OptimizationSource", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/optimizationTypes.ts", + "source_location": "L44", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_optimizationtypes_optimizationsource", + "community": 72, + "community_name": "Services", + "norm_label": "optimizationsource" + }, + { + "label": "ProjectSection", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/optimizationTypes.ts", + "source_location": "L46", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_optimizationtypes_projectsection", + "community": 72, + "community_name": "Services", + "norm_label": "projectsection" + }, + { + "label": "AgentEntry", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/optimizationTypes.ts", + "source_location": "L60", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_optimizationtypes_agententry", + "community": 72, + "community_name": "Services", + "norm_label": "agententry" + }, + { + "label": "SessionSection", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/optimizationTypes.ts", + "source_location": "L74", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_optimizationtypes_sessionsection", + "community": 72, + "community_name": "Services", + "norm_label": "sessionsection" + }, + { + "label": "AttachmentsSection", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/optimizationTypes.ts", + "source_location": "L80", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_optimizationtypes_attachmentssection", + "community": 72, + "community_name": "Services", + "norm_label": "attachmentssection" + }, + { + "label": "AgentOutputEntry", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/optimizationTypes.ts", + "source_location": "L90", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_optimizationtypes_agentoutputentry", + "community": 72, + "community_name": "Services", + "norm_label": "agentoutputentry" + }, + { + "label": "OptimizationContext", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/optimizationTypes.ts", + "source_location": "L97", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_optimizationtypes_optimizationcontext", + "community": 72, + "community_name": "Services", + "norm_label": "optimizationcontext" + }, + { + "label": "LlmSendFn", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/optimizationTypes.ts", + "source_location": "L110", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_optimizationtypes_llmsendfn", + "community": 72, + "community_name": "Services", + "norm_label": "llmsendfn" + }, + { + "label": "AgentRunResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/optimizationTypes.ts", + "source_location": "L116", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_optimizationtypes_agentrunresult", + "community": 72, + "community_name": "Services", + "norm_label": "agentrunresult" + }, + { + "label": "SessionActivationFail", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/optimizationTypes.ts", + "source_location": "L126", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_optimizationtypes_sessionactivationfail", + "community": 72, + "community_name": "Services", + "norm_label": "sessionactivationfail" + }, + { + "label": "OptimizationRunResult", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/optimizationTypes.ts", + "source_location": "L128", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_optimizationtypes_optimizationrunresult", + "community": 72, + "community_name": "Services", + "norm_label": "optimizationrunresult" + }, + { + "label": "projectTypes.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/projectTypes.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_projecttypes", + "community": 99, + "community_name": "Analysis Dashboard Stores", + "norm_label": "projecttypes.ts" + }, + { + "label": "IsoDateString", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/projectTypes.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_projecttypes_isodatestring", + "community": 99, + "community_name": "Analysis Dashboard Stores", + "norm_label": "isodatestring" + }, + { + "label": "ProjectMilestone", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/projectTypes.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_projecttypes_projectmilestone", + "community": 99, + "community_name": "Analysis Dashboard Stores", + "norm_label": "projectmilestone" + }, + { + "label": "ProjectAttachment", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/projectTypes.ts", + "source_location": "L30", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_projecttypes_projectattachment", + "community": 99, + "community_name": "Analysis Dashboard Stores", + "norm_label": "projectattachment" + }, + { + "label": "Project", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/projectTypes.ts", + "source_location": "L45", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_projecttypes_project", + "community": 99, + "community_name": "Analysis Dashboard Stores", + "norm_label": "project" + }, + { + "label": "OrchestratorSession", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/projectTypes.ts", + "source_location": "L72", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_projecttypes_orchestratorsession", + "community": 99, + "community_name": "Analysis Dashboard Stores", + "norm_label": "orchestratorsession" + }, + { + "label": "AutoOptimizationInterval", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/projectTypes.ts", + "source_location": "L87", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_projecttypes_autooptimizationinterval", + "community": 99, + "community_name": "Analysis Dashboard Stores", + "norm_label": "autooptimizationinterval" + }, + { + "label": "AUTO_OPTIMIZATION_INTERVALS", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/projectTypes.ts", + "source_location": "L89", + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_projecttypes_auto_optimization_intervals", + "community": 99, + "community_name": "Analysis Dashboard Stores", + "norm_label": "auto_optimization_intervals" + }, + { + "label": "sandboxOrchestratorAvailability.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/sandboxOrchestratorAvailability.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_sandboxorchestratoravailability", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "sandboxorchestratoravailability.ts" + }, + { + "label": "SandboxOrchestratorAvailabilityStatus", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/sandboxOrchestratorAvailability.ts", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_sandboxorchestratoravailability_sandboxorchestratoravailabilitystatus", + "community": 67, + "community_name": "Emailinboxview", + "norm_label": "sandboxorchestratoravailabilitystatus" + }, + { + "label": "SandboxOrchestratorAvailability", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/sandboxOrchestratorAvailability.ts", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_sandboxorchestratoravailability_sandboxorchestratoravailability", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "sandboxorchestratoravailability" + }, + { + "label": "defaultSandboxAvailability", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/sandboxOrchestratorAvailability.ts", + "source_location": "L14", + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_sandboxorchestratoravailability_defaultsandboxavailability", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "defaultsandboxavailability" + }, + { + "label": "AuthoritativeDeviceInternalRole", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/types/sandboxOrchestratorAvailability.ts", + "source_location": "L21", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_types_sandboxorchestratoravailability_authoritativedeviceinternalrole", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "authoritativedeviceinternalrole" + }, + { + "label": "validationState.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/__tests__/validationState.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_tests_validationstate_test", + "community": 204, + "community_name": "Inboxsessionartefact", + "norm_label": "validationstate.test.ts" + }, + { + "label": "activeEmailAccountIdsForSync.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/activeEmailAccountIdsForSync.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_activeemailaccountidsforsync_test", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "activeemailaccountidsforsync.test.ts" + }, + { + "label": "electron-vite-project/src/utils/contextBlockHash.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/contextBlockHash.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_contextblockhash", + "community": 188, + "community_name": "Handshake #188", + "norm_label": "electron-vite-project/src/utils/contextblockhash.ts" + }, + { + "label": "computeBlockHashClient()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/contextBlockHash.ts", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_contextblockhash_computeblockhashclient", + "community": 188, + "community_name": "Handshake #188", + "norm_label": "computeblockhashclient()" + }, + { + "label": "inboxNewMessagesBackgroundRefresh.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/inboxNewMessagesBackgroundRefresh.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_inboxnewmessagesbackgroundrefresh_test", + "community": 106, + "community_name": "Handshake Shims", + "norm_label": "inboxnewmessagesbackgroundrefresh.test.ts" + }, + { + "label": "inboxNewMessagesBackgroundRefresh.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/inboxNewMessagesBackgroundRefresh.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_inboxnewmessagesbackgroundrefresh", + "community": 106, + "community_name": "Handshake Shims", + "norm_label": "inboxnewmessagesbackgroundrefresh.ts" + }, + { + "label": "INBOX_NEW_MESSAGES_BACKGROUND_DEBOUNCE_MS", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/inboxNewMessagesBackgroundRefresh.ts", + "source_location": "L6", + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_inboxnewmessagesbackgroundrefresh_inbox_new_messages_background_debounce_ms", + "community": 106, + "community_name": "Handshake Shims", + "norm_label": "inbox_new_messages_background_debounce_ms" + }, + { + "label": "subscribeInboxNewMessagesBackgroundRefresh()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/inboxNewMessagesBackgroundRefresh.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_inboxnewmessagesbackgroundrefresh_subscribeinboxnewmessagesbackgroundrefresh", + "community": 106, + "community_name": "Handshake Shims", + "norm_label": "subscribeinboxnewmessagesbackgroundrefresh()" + }, + { + "label": "originDeleteFlow.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/originDeleteFlow.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_origindeleteflow", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "origindeleteflow.ts" + }, + { + "label": "OriginDeleteAccountRow", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/originDeleteFlow.ts", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_origindeleteflow_origindeleteaccountrow", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "origindeleteaccountrow" + }, + { + "label": "accountById()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/originDeleteFlow.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_origindeleteflow_accountbyid", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "accountbyid()" + }, + { + "label": "messageAccountIds()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/originDeleteFlow.ts", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_origindeleteflow_messageaccountids", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "messageaccountids()" + }, + { + "label": "needsOriginDeleteForSelection()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/originDeleteFlow.ts", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_origindeleteflow_needsorigindeleteforselection", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "needsorigindeleteforselection()" + }, + { + "label": "sessionConfirmed()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/originDeleteFlow.ts", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_origindeleteflow_sessionconfirmed", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "sessionconfirmed()" + }, + { + "label": "markSessionConfirmed()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/originDeleteFlow.ts", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_origindeleteflow_marksessionconfirmed", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "marksessionconfirmed()" + }, + { + "label": "confirmOriginDeleteIfNeeded()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/originDeleteFlow.ts", + "source_location": "L67", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_origindeleteflow_confirmorigindeleteifneeded", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "confirmorigindeleteifneeded()" + }, + { + "label": "originDeleteConfirmedForSelection()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/originDeleteFlow.ts", + "source_location": "L124", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_origindeleteflow_origindeleteconfirmedforselection", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "origindeleteconfirmedforselection()" + }, + { + "label": "parseInboxAiJson.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiJson.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_parseinboxaijson_test", + "community": 205, + "community_name": "Stores #205", + "norm_label": "parseinboxaijson.test.ts" + }, + { + "label": "parseInboxAiJson.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiJson.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_parseinboxaijson", + "community": 205, + "community_name": "Stores #205", + "norm_label": "parseinboxaijson.ts" + }, + { + "label": "assembleScamWatchdog()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiJson.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_parseinboxaijson_assemblescamwatchdog", + "community": 205, + "community_name": "Stores #205", + "norm_label": "assemblescamwatchdog()" + }, + { + "label": "normalizeDraftReplyField()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiJson.ts", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_parseinboxaijson_normalizedraftreplyfield", + "community": 205, + "community_name": "Stores #205", + "norm_label": "normalizedraftreplyfield()" + }, + { + "label": "DEFAULTS", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiJson.ts", + "source_location": "L66", + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_parseinboxaijson_defaults", + "community": 205, + "community_name": "Stores #205", + "norm_label": "defaults" + }, + { + "label": "stripBom()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiJson.ts", + "source_location": "L78", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_parseinboxaijson_stripbom", + "community": 205, + "community_name": "Stores #205", + "norm_label": "stripbom()" + }, + { + "label": "stripOuterMarkdownFence()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiJson.ts", + "source_location": "L84", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_parseinboxaijson_stripoutermarkdownfence", + "community": 205, + "community_name": "Stores #205", + "norm_label": "stripoutermarkdownfence()" + }, + { + "label": "extractBalancedJsonObject()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiJson.ts", + "source_location": "L98", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_parseinboxaijson_extractbalancedjsonobject", + "community": 205, + "community_name": "Stores #205", + "norm_label": "extractbalancedjsonobject()" + }, + { + "label": "repairTrailingCommasInJson()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiJson.ts", + "source_location": "L126", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_parseinboxaijson_repairtrailingcommasinjson", + "community": 205, + "community_name": "Stores #205", + "norm_label": "repairtrailingcommasinjson()" + }, + { + "label": "TryParseAnalysisMeta", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiJson.ts", + "source_location": "L130", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_parseinboxaijson_tryparseanalysismeta", + "community": 205, + "community_name": "Stores #205", + "norm_label": "tryparseanalysismeta" + }, + { + "label": "parseRecordFromLenientJson()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiJson.ts", + "source_location": "L138", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_parseinboxaijson_parserecordfromlenientjson", + "community": 205, + "community_name": "Stores #205", + "norm_label": "parserecordfromlenientjson()" + }, + { + "label": "normalInboxAiFromParsed()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiJson.ts", + "source_location": "L189", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_parseinboxaijson_normalinboxaifromparsed", + "community": 205, + "community_name": "Stores #205", + "norm_label": "normalinboxaifromparsed()" + }, + { + "label": "tryParseAnalysis()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiJson.ts", + "source_location": "L226", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_parseinboxaijson_tryparseanalysis", + "community": 205, + "community_name": "Stores #205", + "norm_label": "tryparseanalysis()" + }, + { + "label": "tryParseAnalysisWithMeta()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiJson.ts", + "source_location": "L230", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_parseinboxaijson_tryparseanalysiswithmeta", + "community": 205, + "community_name": "Stores #205", + "norm_label": "tryparseanalysiswithmeta()" + }, + { + "label": "NormalInboxAiResultKey", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiJson.ts", + "source_location": "L256", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_parseinboxaijson_normalinboxairesultkey", + "community": 205, + "community_name": "Stores #205", + "norm_label": "normalinboxairesultkey" + }, + { + "label": "tryParsePartialAnalysis()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiJson.ts", + "source_location": "L262", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_parseinboxaijson_tryparsepartialanalysis", + "community": 205, + "community_name": "Stores #205", + "norm_label": "tryparsepartialanalysis()" + }, + { + "label": "parseInboxAiScamWatchdog.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiScamWatchdog.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_parseinboxaiscamwatchdog_test", + "community": 205, + "community_name": "Stores #205", + "norm_label": "parseinboxaiscamwatchdog.test.ts" + }, + { + "label": "analysis()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiScamWatchdog.test.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_parseinboxaiscamwatchdog_test_analysis", + "community": 205, + "community_name": "Stores #205", + "norm_label": "analysis()" + }, + { + "label": "safeLinks.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/safeLinks.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_safelinks", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "safelinks.ts" + }, + { + "label": "LinkPart", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/safeLinks.ts", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_safelinks_linkpart", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "linkpart" + }, + { + "label": "ensureAbsoluteHttpUrlForOpen()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/safeLinks.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_safelinks_ensureabsolutehttpurlforopen", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "ensureabsolutehttpurlforopen()" + }, + { + "label": "getButtonLabel()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/safeLinks.ts", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_safelinks_getbuttonlabel", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "getbuttonlabel()" + }, + { + "label": "Match", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/safeLinks.ts", + "source_location": "L35", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_safelinks_match", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "match" + }, + { + "label": "rangeOverlaps()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/safeLinks.ts", + "source_location": "L42", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_safelinks_rangeoverlaps", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "rangeoverlaps()" + }, + { + "label": "extractLinkParts()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/safeLinks.ts", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_safelinks_extractlinkparts", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "extractlinkparts()" + }, + { + "label": "BLOCK_OUT_TAGS", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/safeLinks.ts", + "source_location": "L110", + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_safelinks_block_out_tags", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "block_out_tags" + }, + { + "label": "extractLinkPartsFromHtml()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/safeLinks.ts", + "source_location": "L138", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_safelinks_extractlinkpartsfromhtml", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "extractlinkpartsfromhtml()" + }, + { + "label": "beapInboxMessageBodyToLinkParts()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/safeLinks.ts", + "source_location": "L217", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_safelinks_beapinboxmessagebodytolinkparts", + "community": 40, + "community_name": "Sandboxclonefeedbackui", + "norm_label": "beapinboxmessagebodytolinkparts()" + }, + { + "label": "syncFailureUi.test.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/syncFailureUi.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_syncfailureui_test", + "community": 142, + "community_name": "Email", + "norm_label": "syncfailureui.test.ts" + }, + { + "label": "syncFailureUi.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/syncFailureUi.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_syncfailureui", + "community": 142, + "community_name": "Email", + "norm_label": "syncfailureui.ts" + }, + { + "label": "parseBracketedAccountSyncMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/syncFailureUi.ts", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_syncfailureui_parsebracketedaccountsyncmessage", + "community": 142, + "community_name": "Email", + "norm_label": "parsebracketedaccountsyncmessage()" + }, + { + "label": "isAuthSyncFailureMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/syncFailureUi.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_syncfailureui_isauthsyncfailuremessage", + "community": 142, + "community_name": "Email", + "norm_label": "isauthsyncfailuremessage()" + }, + { + "label": "DELEGATED_SYNC_MARKER", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/syncFailureUi.ts", + "source_location": "L27", + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_syncfailureui_delegated_sync_marker", + "community": 142, + "community_name": "Email", + "norm_label": "delegated_sync_marker" + }, + { + "label": "isDelegatedSyncMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/syncFailureUi.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_syncfailureui_isdelegatedsyncmessage", + "community": 142, + "community_name": "Email", + "norm_label": "isdelegatedsyncmessage()" + }, + { + "label": "SyncFailureKind", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/syncFailureUi.ts", + "source_location": "L33", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_syncfailureui_syncfailurekind", + "community": 142, + "community_name": "Email", + "norm_label": "syncfailurekind" + }, + { + "label": "matchesIngestionTriggerCopy()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/syncFailureUi.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_syncfailureui_matchesingestiontriggercopy", + "community": 142, + "community_name": "Email", + "norm_label": "matchesingestiontriggercopy()" + }, + { + "label": "classifyIngestionTriggerSyncMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/syncFailureUi.ts", + "source_location": "L52", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_syncfailureui_classifyingestiontriggersyncmessage", + "community": 142, + "community_name": "Email", + "norm_label": "classifyingestiontriggersyncmessage()" + }, + { + "label": "classifySyncFailureMessage()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/syncFailureUi.ts", + "source_location": "L65", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_syncfailureui_classifysyncfailuremessage", + "community": 142, + "community_name": "Email", + "norm_label": "classifysyncfailuremessage()" + }, + { + "label": "providerLabelForSyncBanner()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/syncFailureUi.ts", + "source_location": "L90", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_syncfailureui_providerlabelforsyncbanner", + "community": 142, + "community_name": "Email", + "norm_label": "providerlabelforsyncbanner()" + }, + { + "label": "TlsBannerAccountContext", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/syncFailureUi.ts", + "source_location": "L105", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_syncfailureui_tlsbanneraccountcontext", + "community": 142, + "community_name": "Email", + "norm_label": "tlsbanneraccountcontext" + }, + { + "label": "buildTlsSyncFailureCopy()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/syncFailureUi.ts", + "source_location": "L114", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_syncfailureui_buildtlssyncfailurecopy", + "community": 142, + "community_name": "Email", + "norm_label": "buildtlssyncfailurecopy()" + }, + { + "label": "utils/validationState.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/validationState.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_validationstate", + "community": 204, + "community_name": "Inboxsessionartefact", + "norm_label": "utils/validationstate.ts" + }, + { + "label": "ValidationState", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/validationState.ts", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_validationstate_validationstate", + "community": 204, + "community_name": "Inboxsessionartefact", + "norm_label": "validationstate" + }, + { + "label": "CONFORMANT_VALIDATION_REASONS", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/validationState.ts", + "source_location": "L26", + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_validationstate_conformant_validation_reasons", + "community": 204, + "community_name": "Inboxsessionartefact", + "norm_label": "conformant_validation_reasons" + }, + { + "label": "getValidationState()", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/utils/validationState.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_utils_validationstate_getvalidationstate", + "community": 204, + "community_name": "Inboxsessionartefact", + "norm_label": "getvalidationstate()" + }, + { + "label": "electron-vite-project/src/vite-env.d.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/vite-env.d.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_src_vite_env_d", + "community": 214, + "community_name": "Viteenvd", + "norm_label": "electron-vite-project/src/vite-env.d.ts" + }, + { + "label": "ws", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/vite-env.d.ts", + "source_location": "L8", + "_origin": "ast", + "id": "apps_electron_vite_project_src_vite_env_d_ws", + "community": 214, + "community_name": "Viteenvd", + "norm_label": "ws" + }, + { + "label": "CapturePresetPayload", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/vite-env.d.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_vite_env_d_capturepresetpayload", + "community": 214, + "community_name": "Viteenvd", + "norm_label": "capturepresetpayload" + }, + { + "label": "LmgtfyBridge", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/vite-env.d.ts", + "source_location": "L16", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_vite_env_d_lmgtfybridge", + "community": 214, + "community_name": "Viteenvd", + "norm_label": "lmgtfybridge" + }, + { + "label": "AnalysisDashboardBridge", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/vite-env.d.ts", + "source_location": "L38", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_vite_env_d_analysisdashboardbridge", + "community": 214, + "community_name": "Viteenvd", + "norm_label": "analysisdashboardbridge" + }, + { + "label": "LifecycleBridge", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/vite-env.d.ts", + "source_location": "L74", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_vite_env_d_lifecyclebridge", + "community": 214, + "community_name": "Viteenvd", + "norm_label": "lifecyclebridge" + }, + { + "label": "WrChatBridge", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/vite-env.d.ts", + "source_location": "L79", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_vite_env_d_wrchatbridge", + "community": 214, + "community_name": "Viteenvd", + "norm_label": "wrchatbridge" + }, + { + "label": "AppShellBridge", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/vite-env.d.ts", + "source_location": "L84", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_vite_env_d_appshellbridge", + "community": 214, + "community_name": "Viteenvd", + "norm_label": "appshellbridge" + }, + { + "label": "LibreOfficeBridge", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/vite-env.d.ts", + "source_location": "L89", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_vite_env_d_libreofficebridge", + "community": 214, + "community_name": "Viteenvd", + "norm_label": "libreofficebridge" + }, + { + "label": "LetterComposerBridge", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/vite-env.d.ts", + "source_location": "L101", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_vite_env_d_lettercomposerbridge", + "community": 214, + "community_name": "Viteenvd", + "norm_label": "lettercomposerbridge" + }, + { + "label": "IntegrityCheck", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/vite-env.d.ts", + "source_location": "L205", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_vite_env_d_integritycheck", + "community": 214, + "community_name": "Viteenvd", + "norm_label": "integritycheck" + }, + { + "label": "IntegrityStatus", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/vite-env.d.ts", + "source_location": "L211", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_vite_env_d_integritystatus", + "community": 214, + "community_name": "Viteenvd", + "norm_label": "integritystatus" + }, + { + "label": "IntegrityBridge", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/vite-env.d.ts", + "source_location": "L218", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_vite_env_d_integritybridge", + "community": 214, + "community_name": "Viteenvd", + "norm_label": "integritybridge" + }, + { + "label": "LlmOllamaStatus", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/vite-env.d.ts", + "source_location": "L223", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_vite_env_d_llmollamastatus", + "community": 214, + "community_name": "Viteenvd", + "norm_label": "llmollamastatus" + }, + { + "label": "InferenceCapabilityForUi", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/vite-env.d.ts", + "source_location": "L258", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_vite_env_d_inferencecapabilityforui", + "community": 214, + "community_name": "Viteenvd", + "norm_label": "inferencecapabilityforui" + }, + { + "label": "GpuStatusForUi", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/vite-env.d.ts", + "source_location": "L270", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_vite_env_d_gpustatusforui", + "community": 214, + "community_name": "Viteenvd", + "norm_label": "gpustatusforui" + }, + { + "label": "AutosortBlockReason", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/vite-env.d.ts", + "source_location": "L279", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_vite_env_d_autosortblockreason", + "community": 214, + "community_name": "Viteenvd", + "norm_label": "autosortblockreason" + }, + { + "label": "ResolvedInboxRuntime", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/vite-env.d.ts", + "source_location": "L288", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_vite_env_d_resolvedinboxruntime", + "community": 214, + "community_name": "Viteenvd", + "norm_label": "resolvedinboxruntime" + }, + { + "label": "LlmBridge", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/vite-env.d.ts", + "source_location": "L303", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_vite_env_d_llmbridge", + "community": 214, + "community_name": "Viteenvd", + "norm_label": "llmbridge" + }, + { + "label": "CustomModesBridge", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/vite-env.d.ts", + "source_location": "L321", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_vite_env_d_custommodesbridge", + "community": 214, + "community_name": "Viteenvd", + "norm_label": "custommodesbridge" + }, + { + "label": "MainProcessLogEntry", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/vite-env.d.ts", + "source_location": "L347", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_vite_env_d_mainprocesslogentry", + "community": 214, + "community_name": "Viteenvd", + "norm_label": "mainprocesslogentry" + }, + { + "label": "DebugLogsBridge", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/vite-env.d.ts", + "source_location": "L353", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_vite_env_d_debuglogsbridge", + "community": 214, + "community_name": "Viteenvd", + "norm_label": "debuglogsbridge" + }, + { + "label": "OrchestratorBridge", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/vite-env.d.ts", + "source_location": "L358", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_vite_env_d_orchestratorbridge", + "community": 214, + "community_name": "Viteenvd", + "norm_label": "orchestratorbridge" + }, + { + "label": "BeapBridge", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/vite-env.d.ts", + "source_location": "L387", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_vite_env_d_beapbridge", + "community": 214, + "community_name": "Viteenvd", + "norm_label": "beapbridge" + }, + { + "label": "Window", + "file_type": "code", + "source_file": "apps/electron-vite-project/src/vite-env.d.ts", + "source_location": "L401", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_electron_vite_project_src_vite_env_d_window", + "community": 214, + "community_name": "Viteenvd", + "norm_label": "window" + }, + { + "label": "start-opengiraffe.ps1", + "file_type": "code", + "source_file": "apps/electron-vite-project/start-opengiraffe.ps1", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_start_opengiraffe", + "community": 601, + "community_name": "Startopengiraffe", + "norm_label": "start-opengiraffe.ps1" + }, + { + "label": "stop-opengiraffe.ps1", + "file_type": "code", + "source_file": "apps/electron-vite-project/stop-opengiraffe.ps1", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_stop_opengiraffe", + "community": 602, + "community_name": "Stopopengiraffe", + "norm_label": "stop-opengiraffe.ps1" + }, + { + "label": "electron-vite-project/tsconfig.json", + "file_type": "code", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_tsconfig", + "community": 427, + "community_name": "Tsconfig #427", + "norm_label": "electron-vite-project/tsconfig.json" + }, + { + "label": "compilerOptions", + "file_type": "code", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L2", + "_origin": "ast", + "id": "apps_electron_vite_project_tsconfig_compileroptions", + "community": 293, + "community_name": "Tsconfig #293", + "norm_label": "compileroptions" + }, + { + "label": "target", + "file_type": "code", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L3", + "_origin": "ast", + "id": "apps_electron_vite_project_tsconfig_compileroptions_target", + "community": 293, + "community_name": "Tsconfig #293", + "norm_label": "target" + }, + { + "label": "useDefineForClassFields", + "file_type": "code", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L4", + "_origin": "ast", + "id": "apps_electron_vite_project_tsconfig_compileroptions_usedefineforclassfields", + "community": 293, + "community_name": "Tsconfig #293", + "norm_label": "usedefineforclassfields" + }, + { + "label": "lib", + "file_type": "code", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L5", + "_origin": "ast", + "id": "apps_electron_vite_project_tsconfig_compileroptions_lib", + "community": 466, + "community_name": "Tsconfig #466", + "norm_label": "lib" + }, + { + "label": "ES2020", + "file_type": "concept", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L5", + "_origin": "ast", + "id": "apps_electron_vite_project_tsconfig_json_ref_es2020", + "community": 466, + "community_name": "Tsconfig #466", + "norm_label": "es2020" + }, + { + "label": "DOM", + "file_type": "concept", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L5", + "_origin": "ast", + "id": "apps_electron_vite_project_tsconfig_json_ref_dom", + "community": 466, + "community_name": "Tsconfig #466", + "norm_label": "dom" + }, + { + "label": "DOM.Iterable", + "file_type": "concept", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L5", + "_origin": "ast", + "id": "apps_electron_vite_project_tsconfig_json_ref_dom_iterable", + "community": 466, + "community_name": "Tsconfig #466", + "norm_label": "dom.iterable" + }, + { + "label": "module", + "file_type": "code", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L6", + "_origin": "ast", + "id": "apps_electron_vite_project_tsconfig_compileroptions_module", + "community": 293, + "community_name": "Tsconfig #293", + "norm_label": "module" + }, + { + "label": "skipLibCheck", + "file_type": "code", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L7", + "_origin": "ast", + "id": "apps_electron_vite_project_tsconfig_compileroptions_skiplibcheck", + "community": 293, + "community_name": "Tsconfig #293", + "norm_label": "skiplibcheck" + }, + { + "label": "moduleResolution", + "file_type": "code", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L10", + "_origin": "ast", + "id": "apps_electron_vite_project_tsconfig_compileroptions_moduleresolution", + "community": 293, + "community_name": "Tsconfig #293", + "norm_label": "moduleresolution" + }, + { + "label": "allowImportingTsExtensions", + "file_type": "code", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L11", + "_origin": "ast", + "id": "apps_electron_vite_project_tsconfig_compileroptions_allowimportingtsextensions", + "community": 293, + "community_name": "Tsconfig #293", + "norm_label": "allowimportingtsextensions" + }, + { + "label": "resolveJsonModule", + "file_type": "code", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L12", + "_origin": "ast", + "id": "apps_electron_vite_project_tsconfig_compileroptions_resolvejsonmodule", + "community": 293, + "community_name": "Tsconfig #293", + "norm_label": "resolvejsonmodule" + }, + { + "label": "isolatedModules", + "file_type": "code", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L13", + "_origin": "ast", + "id": "apps_electron_vite_project_tsconfig_compileroptions_isolatedmodules", + "community": 293, + "community_name": "Tsconfig #293", + "norm_label": "isolatedmodules" + }, + { + "label": "noEmit", + "file_type": "code", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L14", + "_origin": "ast", + "id": "apps_electron_vite_project_tsconfig_compileroptions_noemit", + "community": 293, + "community_name": "Tsconfig #293", + "norm_label": "noemit" + }, + { + "label": "jsx", + "file_type": "code", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L15", + "_origin": "ast", + "id": "apps_electron_vite_project_tsconfig_compileroptions_jsx", + "community": 293, + "community_name": "Tsconfig #293", + "norm_label": "jsx" + }, + { + "label": "strict", + "file_type": "code", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L18", + "_origin": "ast", + "id": "apps_electron_vite_project_tsconfig_compileroptions_strict", + "community": 293, + "community_name": "Tsconfig #293", + "norm_label": "strict" + }, + { + "label": "noUnusedLocals", + "file_type": "code", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L19", + "_origin": "ast", + "id": "apps_electron_vite_project_tsconfig_compileroptions_nounusedlocals", + "community": 293, + "community_name": "Tsconfig #293", + "norm_label": "nounusedlocals" + }, + { + "label": "noUnusedParameters", + "file_type": "code", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L20", + "_origin": "ast", + "id": "apps_electron_vite_project_tsconfig_compileroptions_nounusedparameters", + "community": 293, + "community_name": "Tsconfig #293", + "norm_label": "nounusedparameters" + }, + { + "label": "noFallthroughCasesInSwitch", + "file_type": "code", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L21", + "_origin": "ast", + "id": "apps_electron_vite_project_tsconfig_compileroptions_nofallthroughcasesinswitch", + "community": 293, + "community_name": "Tsconfig #293", + "norm_label": "nofallthroughcasesinswitch" + }, + { + "label": "baseUrl", + "file_type": "code", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L22", + "_origin": "ast", + "id": "apps_electron_vite_project_tsconfig_compileroptions_baseurl", + "community": 293, + "community_name": "Tsconfig #293", + "norm_label": "baseurl" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L23", + "_origin": "ast", + "id": "apps_electron_vite_project_tsconfig_compileroptions_paths", + "community": 278, + "community_name": "Tsconfig #278", + "norm_label": "paths" + }, + { + "label": "@shared/*", + "file_type": "code", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L24", + "_origin": "ast", + "id": "apps_electron_vite_project_tsconfig_paths_shared", + "community": 278, + "community_name": "Tsconfig #278", + "norm_label": "@shared/*" + }, + { + "label": "../../packages/shared/src/*", + "file_type": "concept", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L24", + "_origin": "ast", + "id": "apps_electron_vite_project_tsconfig_json_ref_packages_shared_src", + "community": 278, + "community_name": "Tsconfig #278", + "norm_label": "../../packages/shared/src/*" + }, + { + "label": "@repo/shared-beap-ui", + "file_type": "code", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L25", + "_origin": "ast", + "id": "apps_electron_vite_project_tsconfig_paths_repo_shared_beap_ui", + "community": 278, + "community_name": "Tsconfig #278", + "norm_label": "@repo/shared-beap-ui" + }, + { + "label": "../../packages/shared-beap-ui/src/index.ts", + "file_type": "concept", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L25", + "_origin": "ast", + "id": "ref_packages_shared_beap_ui_src_index_ts", + "community": 278, + "community_name": "Tsconfig #278", + "norm_label": "../../packages/shared-beap-ui/src/index.ts" + }, + { + "label": "@ext/*", + "file_type": "code", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L26", + "_origin": "ast", + "id": "apps_electron_vite_project_tsconfig_paths_ext", + "community": 278, + "community_name": "Tsconfig #278", + "norm_label": "@ext/*" + }, + { + "label": "../extension-chromium/src/*", + "file_type": "concept", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L26", + "_origin": "ast", + "id": "ref_extension_chromium_src", + "community": 278, + "community_name": "Tsconfig #278", + "norm_label": "../extension-chromium/src/*" + }, + { + "label": "@ext/handshake/handshakeRpc", + "file_type": "code", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L27", + "_origin": "ast", + "id": "apps_electron_vite_project_tsconfig_paths_ext_handshake_handshakerpc", + "community": 278, + "community_name": "Tsconfig #278", + "norm_label": "@ext/handshake/handshakerpc" + }, + { + "label": "src/shims/handshakeRpc", + "file_type": "concept", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L27", + "_origin": "ast", + "id": "ref_src_shims_handshakerpc", + "community": 278, + "community_name": "Tsconfig #278", + "norm_label": "src/shims/handshakerpc" + }, + { + "label": "@ext/vault/hsContextProfilesRpc", + "file_type": "code", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L28", + "_origin": "ast", + "id": "apps_electron_vite_project_tsconfig_paths_ext_vault_hscontextprofilesrpc", + "community": 565, + "community_name": "Tsconfig #565", + "norm_label": "@ext/vault/hscontextprofilesrpc" + }, + { + "label": "src/shims/hsContextProfilesRpc", + "file_type": "concept", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L28", + "_origin": "ast", + "id": "ref_src_shims_hscontextprofilesrpc", + "community": 565, + "community_name": "Tsconfig #565", + "norm_label": "src/shims/hscontextprofilesrpc" + }, + { + "label": "@ext/reconstruction", + "file_type": "code", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L29", + "_origin": "ast", + "id": "apps_electron_vite_project_tsconfig_paths_ext_reconstruction", + "community": 278, + "community_name": "Tsconfig #278", + "norm_label": "@ext/reconstruction" + }, + { + "label": "src/shims/reconstruction", + "file_type": "concept", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L29", + "_origin": "ast", + "id": "ref_src_shims_reconstruction", + "community": 278, + "community_name": "Tsconfig #278", + "norm_label": "src/shims/reconstruction" + }, + { + "label": "@ext/audit", + "file_type": "code", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L30", + "_origin": "ast", + "id": "apps_electron_vite_project_tsconfig_paths_ext_audit", + "community": 278, + "community_name": "Tsconfig #278", + "norm_label": "@ext/audit" + }, + { + "label": "src/shims/audit", + "file_type": "concept", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L30", + "_origin": "ast", + "id": "ref_src_shims_audit", + "community": 278, + "community_name": "Tsconfig #278", + "norm_label": "src/shims/audit" + }, + { + "label": "@ext/envelope-evaluation", + "file_type": "code", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L31", + "_origin": "ast", + "id": "apps_electron_vite_project_tsconfig_paths_ext_envelope_evaluation", + "community": 278, + "community_name": "Tsconfig #278", + "norm_label": "@ext/envelope-evaluation" + }, + { + "label": "src/shims/envelope-evaluation", + "file_type": "concept", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L31", + "_origin": "ast", + "id": "ref_src_shims_envelope_evaluation", + "community": 278, + "community_name": "Tsconfig #278", + "norm_label": "src/shims/envelope-evaluation" + }, + { + "label": "@ext/ingress", + "file_type": "code", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L32", + "_origin": "ast", + "id": "apps_electron_vite_project_tsconfig_paths_ext_ingress", + "community": 278, + "community_name": "Tsconfig #278", + "norm_label": "@ext/ingress" + }, + { + "label": "src/shims/ingress", + "file_type": "concept", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L32", + "_origin": "ast", + "id": "ref_src_shims_ingress", + "community": 278, + "community_name": "Tsconfig #278", + "norm_label": "src/shims/ingress" + }, + { + "label": "include", + "file_type": "code", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L35", + "_origin": "ast", + "id": "apps_electron_vite_project_tsconfig_include", + "community": 405, + "community_name": "Tsconfig #405", + "norm_label": "include" + }, + { + "label": "src", + "file_type": "concept", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L35", + "_origin": "ast", + "id": "apps_electron_vite_project_tsconfig_json_ref_src", + "community": 405, + "community_name": "Tsconfig #405", + "norm_label": "src" + }, + { + "label": "electron", + "file_type": "concept", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L35", + "_origin": "ast", + "id": "apps_electron_vite_project_tsconfig_json_ref_electron", + "community": 405, + "community_name": "Tsconfig #405", + "norm_label": "electron" + }, + { + "label": "../extension-chromium/src/beap-messages", + "file_type": "concept", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L35", + "_origin": "ast", + "id": "ref_extension_chromium_src_beap_messages", + "community": 405, + "community_name": "Tsconfig #405", + "norm_label": "../extension-chromium/src/beap-messages" + }, + { + "label": "../extension-chromium/src/handshake", + "file_type": "concept", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L35", + "_origin": "ast", + "id": "ref_extension_chromium_src_handshake", + "community": 405, + "community_name": "Tsconfig #405", + "norm_label": "../extension-chromium/src/handshake" + }, + { + "label": "../extension-chromium/src/shared", + "file_type": "concept", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L35", + "_origin": "ast", + "id": "ref_extension_chromium_src_shared", + "community": 405, + "community_name": "Tsconfig #405", + "norm_label": "../extension-chromium/src/shared" + }, + { + "label": "../extension-chromium/src/vault/hsContextProfilesRpc.ts", + "file_type": "concept", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L35", + "_origin": "ast", + "id": "ref_extension_chromium_src_vault_hscontextprofilesrpc_ts", + "community": 405, + "community_name": "Tsconfig #405", + "norm_label": "../extension-chromium/src/vault/hscontextprofilesrpc.ts" + }, + { + "label": "exclude", + "file_type": "code", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L43", + "_origin": "ast", + "id": "apps_electron_vite_project_tsconfig_exclude", + "community": 427, + "community_name": "Tsconfig #427", + "norm_label": "exclude" + }, + { + "label": "**/__tests__/**", + "file_type": "concept", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L43", + "_origin": "ast", + "id": "apps_electron_vite_project_tsconfig_json_ref_tests", + "community": 427, + "community_name": "Tsconfig #427", + "norm_label": "**/__tests__/**" + }, + { + "label": "**/*.test.ts", + "file_type": "concept", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L43", + "_origin": "ast", + "id": "ref_test_ts", + "community": 427, + "community_name": "Tsconfig #427", + "norm_label": "**/*.test.ts" + }, + { + "label": "**/*.spec.ts", + "file_type": "concept", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L43", + "_origin": "ast", + "id": "ref_spec_ts", + "community": 427, + "community_name": "Tsconfig #427", + "norm_label": "**/*.spec.ts" + }, + { + "label": "references", + "file_type": "code", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L44", + "_origin": "ast", + "id": "apps_electron_vite_project_tsconfig_references", + "community": 427, + "community_name": "Tsconfig #427", + "norm_label": "references" + }, + { + "label": "tsconfig.node.json", + "file_type": "code", + "source_file": "apps/electron-vite-project/tsconfig.node.json", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_tsconfig_node", + "community": 365, + "community_name": "Tsconfignode", + "norm_label": "tsconfig.node.json" + }, + { + "label": "compilerOptions", + "file_type": "code", + "source_file": "apps/electron-vite-project/tsconfig.node.json", + "source_location": "L2", + "_origin": "ast", + "id": "apps_electron_vite_project_tsconfig_node_compileroptions", + "community": 365, + "community_name": "Tsconfignode", + "norm_label": "compileroptions" + }, + { + "label": "composite", + "file_type": "code", + "source_file": "apps/electron-vite-project/tsconfig.node.json", + "source_location": "L3", + "_origin": "ast", + "id": "apps_electron_vite_project_tsconfig_node_compileroptions_composite", + "community": 365, + "community_name": "Tsconfignode", + "norm_label": "composite" + }, + { + "label": "skipLibCheck", + "file_type": "code", + "source_file": "apps/electron-vite-project/tsconfig.node.json", + "source_location": "L4", + "_origin": "ast", + "id": "apps_electron_vite_project_tsconfig_node_compileroptions_skiplibcheck", + "community": 365, + "community_name": "Tsconfignode", + "norm_label": "skiplibcheck" + }, + { + "label": "module", + "file_type": "code", + "source_file": "apps/electron-vite-project/tsconfig.node.json", + "source_location": "L5", + "_origin": "ast", + "id": "apps_electron_vite_project_tsconfig_node_compileroptions_module", + "community": 365, + "community_name": "Tsconfignode", + "norm_label": "module" + }, + { + "label": "moduleResolution", + "file_type": "code", + "source_file": "apps/electron-vite-project/tsconfig.node.json", + "source_location": "L6", + "_origin": "ast", + "id": "apps_electron_vite_project_tsconfig_node_compileroptions_moduleresolution", + "community": 365, + "community_name": "Tsconfignode", + "norm_label": "moduleresolution" + }, + { + "label": "allowSyntheticDefaultImports", + "file_type": "code", + "source_file": "apps/electron-vite-project/tsconfig.node.json", + "source_location": "L7", + "_origin": "ast", + "id": "apps_electron_vite_project_tsconfig_node_compileroptions_allowsyntheticdefaultimports", + "community": 365, + "community_name": "Tsconfignode", + "norm_label": "allowsyntheticdefaultimports" + }, + { + "label": "strict", + "file_type": "code", + "source_file": "apps/electron-vite-project/tsconfig.node.json", + "source_location": "L8", + "_origin": "ast", + "id": "apps_electron_vite_project_tsconfig_node_compileroptions_strict", + "community": 365, + "community_name": "Tsconfignode", + "norm_label": "strict" + }, + { + "label": "include", + "file_type": "code", + "source_file": "apps/electron-vite-project/tsconfig.node.json", + "source_location": "L10", + "_origin": "ast", + "id": "apps_electron_vite_project_tsconfig_node_include", + "community": 365, + "community_name": "Tsconfignode", + "norm_label": "include" + }, + { + "label": "vite.config.ts", + "file_type": "concept", + "source_file": "apps/electron-vite-project/tsconfig.node.json", + "source_location": "L10", + "_origin": "ast", + "id": "ref_vite_config_ts", + "community": 365, + "community_name": "Tsconfignode", + "norm_label": "vite.config.ts" + }, + { + "label": "electron-vite-project/vite.config.ts", + "file_type": "code", + "source_file": "apps/electron-vite-project/vite.config.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_electron_vite_project_vite_config", + "community": 347, + "community_name": "Viteconfig", + "norm_label": "electron-vite-project/vite.config.ts" + }, + { + "label": "__dirname", + "file_type": "code", + "source_file": "apps/electron-vite-project/vite.config.ts", + "source_location": "L9", + "_origin": "ast", + "id": "apps_electron_vite_project_vite_config_dirname", + "community": 347, + "community_name": "Viteconfig", + "norm_label": "__dirname" + }, + { + "label": "extSrc", + "file_type": "code", + "source_file": "apps/electron-vite-project/vite.config.ts", + "source_location": "L11", + "_origin": "ast", + "id": "apps_electron_vite_project_vite_config_extsrc", + "community": 347, + "community_name": "Viteconfig", + "norm_label": "extsrc" + }, + { + "label": "readExtensionOutDirStamp()", + "file_type": "code", + "source_file": "apps/electron-vite-project/vite.config.ts", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_vite_config_readextensionoutdirstamp", + "community": 347, + "community_name": "Viteconfig", + "norm_label": "readextensionoutdirstamp()" + }, + { + "label": "BASE_ORCHESTRATOR_BUILD_STAMP", + "file_type": "code", + "source_file": "apps/electron-vite-project/vite.config.ts", + "source_location": "L28", + "_origin": "ast", + "id": "apps_electron_vite_project_vite_config_base_orchestrator_build_stamp", + "community": 347, + "community_name": "Viteconfig", + "norm_label": "base_orchestrator_build_stamp" + }, + { + "label": "gitShortHead()", + "file_type": "code", + "source_file": "apps/electron-vite-project/vite.config.ts", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_vite_config_gitshorthead", + "community": 347, + "community_name": "Viteconfig", + "norm_label": "gitshorthead()" + }, + { + "label": "gitMetaFromClosestRepo()", + "file_type": "code", + "source_file": "apps/electron-vite-project/vite.config.ts", + "source_location": "L42", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_vite_config_gitmetafromclosestrepo", + "community": 347, + "community_name": "Viteconfig", + "norm_label": "gitmetafromclosestrepo()" + }, + { + "label": "RUNTIME_IDENTITY_GIT_META", + "file_type": "code", + "source_file": "apps/electron-vite-project/vite.config.ts", + "source_location": "L52", + "_origin": "ast", + "id": "apps_electron_vite_project_vite_config_runtime_identity_git_meta", + "community": 347, + "community_name": "Viteconfig", + "norm_label": "runtime_identity_git_meta" + }, + { + "label": "BUILD_TIMESTAMP_ISO", + "file_type": "code", + "source_file": "apps/electron-vite-project/vite.config.ts", + "source_location": "L53", + "_origin": "ast", + "id": "apps_electron_vite_project_vite_config_build_timestamp_iso", + "community": 347, + "community_name": "Viteconfig", + "norm_label": "build_timestamp_iso" + }, + { + "label": "onstart()", + "file_type": "code", + "source_file": "apps/electron-vite-project/vite.config.ts", + "source_location": "L91", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_vite_config_onstart", + "community": 347, + "community_name": "Viteconfig", + "norm_label": "onstart()" + }, + { + "label": "resolveId()", + "file_type": "code", + "source_file": "apps/electron-vite-project/vite.config.ts", + "source_location": "L109", + "_callable": true, + "_origin": "ast", + "id": "apps_electron_vite_project_vite_config_resolveid", + "community": 347, + "community_name": "Viteconfig", + "norm_label": "resolveid()" + }, + { + "label": "check-chrome-storage.js", + "file_type": "code", + "source_file": "apps/extension-chromium/check-chrome-storage.js", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_check_chrome_storage", + "community": 603, + "community_name": "Checkchromestorage", + "norm_label": "check-chrome-storage.js" + }, + { + "label": "manifest.config.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/manifest.config.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_manifest_config", + "community": 509, + "community_name": "Viteconfig #509", + "norm_label": "manifest.config.ts" + }, + { + "label": "extension-chromium/package.json", + "file_type": "code", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_package", + "community": 442, + "community_name": "Community 442", + "norm_label": "extension-chromium/package.json" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L2", + "_origin": "ast", + "id": "apps_extension_chromium_package_name", + "community": 442, + "community_name": "Community 442", + "norm_label": "name" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L3", + "_origin": "ast", + "id": "apps_extension_chromium_package_version", + "community": 442, + "community_name": "Community 442", + "norm_label": "version" + }, + { + "label": "private", + "file_type": "code", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L4", + "_origin": "ast", + "id": "apps_extension_chromium_package_private", + "community": 442, + "community_name": "Community 442", + "norm_label": "private" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L5", + "_origin": "ast", + "id": "apps_extension_chromium_package_type", + "community": 442, + "community_name": "Community 442", + "norm_label": "type" + }, + { + "label": "scripts", + "file_type": "code", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L6", + "_origin": "ast", + "id": "apps_extension_chromium_package_scripts", + "community": 406, + "community_name": "Community 406", + "norm_label": "scripts" + }, + { + "label": "dev", + "file_type": "code", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L7", + "_origin": "ast", + "id": "apps_extension_chromium_package_scripts_dev", + "community": 406, + "community_name": "Community 406", + "norm_label": "dev" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L8", + "_origin": "ast", + "id": "apps_extension_chromium_package_scripts_build", + "community": 406, + "community_name": "Community 406", + "norm_label": "build" + }, + { + "label": "preview", + "file_type": "code", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L9", + "_origin": "ast", + "id": "apps_extension_chromium_package_scripts_preview", + "community": 406, + "community_name": "Community 406", + "norm_label": "preview" + }, + { + "label": "test", + "file_type": "code", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L10", + "_origin": "ast", + "id": "apps_extension_chromium_package_scripts_test", + "community": 406, + "community_name": "Community 406", + "norm_label": "test" + }, + { + "label": "test:wrchat", + "file_type": "code", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L11", + "_origin": "ast", + "id": "apps_extension_chromium_package_scripts_test_wrchat", + "community": 406, + "community_name": "Community 406", + "norm_label": "test:wrchat" + }, + { + "label": "test:watch", + "file_type": "code", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L12", + "_origin": "ast", + "id": "apps_extension_chromium_package_scripts_test_watch", + "community": 406, + "community_name": "Community 406", + "norm_label": "test:watch" + }, + { + "label": "dependencies", + "file_type": "code", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L14", + "_origin": "ast", + "id": "apps_extension_chromium_package_dependencies", + "community": 279, + "community_name": "Community 279", + "norm_label": "dependencies" + }, + { + "label": "@noble/curves", + "file_type": "code", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L15", + "_origin": "ast", + "id": "apps_extension_chromium_package_dependencies_noble_curves", + "community": 279, + "community_name": "Community 279", + "norm_label": "@noble/curves" + }, + { + "label": "@noble/curves", + "file_type": "concept", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L15", + "_origin": "ast", + "id": "apps_extension_chromium_package_json_noble_curves", + "community": 279, + "community_name": "Community 279", + "norm_label": "@noble/curves" + }, + { + "label": "@noble/ed25519", + "file_type": "code", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L16", + "_origin": "ast", + "id": "apps_extension_chromium_package_dependencies_noble_ed25519", + "community": 566, + "community_name": "Community 566", + "norm_label": "@noble/ed25519" + }, + { + "label": "@noble/ed25519", + "file_type": "concept", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L16", + "_origin": "ast", + "id": "noble_ed25519", + "community": 566, + "community_name": "Community 566", + "norm_label": "@noble/ed25519" + }, + { + "label": "@tensorflow/tfjs", + "file_type": "code", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L17", + "_origin": "ast", + "id": "apps_extension_chromium_package_dependencies_tensorflow_tfjs", + "community": 569, + "community_name": "Community 569", + "norm_label": "@tensorflow/tfjs" + }, + { + "label": "@tensorflow/tfjs", + "file_type": "concept", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L17", + "_origin": "ast", + "id": "tensorflow_tfjs", + "community": 569, + "community_name": "Community 569", + "norm_label": "@tensorflow/tfjs" + }, + { + "label": "react", + "file_type": "code", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L18", + "_origin": "ast", + "id": "apps_extension_chromium_package_dependencies_react", + "community": 567, + "community_name": "Community 567", + "norm_label": "react" + }, + { + "label": "react", + "file_type": "concept", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L18", + "_origin": "ast", + "id": "apps_extension_chromium_package_json_react", + "community": 567, + "community_name": "Community 567", + "norm_label": "react" + }, + { + "label": "react-dom", + "file_type": "code", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L19", + "_origin": "ast", + "id": "apps_extension_chromium_package_dependencies_react_dom", + "community": 568, + "community_name": "Community 568", + "norm_label": "react-dom" + }, + { + "label": "react-dom", + "file_type": "concept", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L19", + "_origin": "ast", + "id": "apps_extension_chromium_package_json_react_dom", + "community": 568, + "community_name": "Community 568", + "norm_label": "react-dom" + }, + { + "label": "react-markdown", + "file_type": "code", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L20", + "_origin": "ast", + "id": "apps_extension_chromium_package_dependencies_react_markdown", + "community": 279, + "community_name": "Community 279", + "norm_label": "react-markdown" + }, + { + "label": "react-markdown", + "file_type": "concept", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L20", + "_origin": "ast", + "id": "react_markdown", + "community": 279, + "community_name": "Community 279", + "norm_label": "react-markdown" + }, + { + "label": "webextension-polyfill", + "file_type": "code", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L21", + "_origin": "ast", + "id": "apps_extension_chromium_package_dependencies_webextension_polyfill", + "community": 279, + "community_name": "Community 279", + "norm_label": "webextension-polyfill" + }, + { + "label": "webextension-polyfill", + "file_type": "concept", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L21", + "_origin": "ast", + "id": "webextension_polyfill", + "community": 279, + "community_name": "Community 279", + "norm_label": "webextension-polyfill" + }, + { + "label": "wink-eng-lite-web-model", + "file_type": "code", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L22", + "_origin": "ast", + "id": "apps_extension_chromium_package_dependencies_wink_eng_lite_web_model", + "community": 570, + "community_name": "Community 570", + "norm_label": "wink-eng-lite-web-model" + }, + { + "label": "wink-eng-lite-web-model", + "file_type": "concept", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L22", + "_origin": "ast", + "id": "wink_eng_lite_web_model", + "community": 570, + "community_name": "Community 570", + "norm_label": "wink-eng-lite-web-model" + }, + { + "label": "wink-nlp", + "file_type": "code", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L23", + "_origin": "ast", + "id": "apps_extension_chromium_package_dependencies_wink_nlp", + "community": 279, + "community_name": "Community 279", + "norm_label": "wink-nlp" + }, + { + "label": "wink-nlp", + "file_type": "concept", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L23", + "_origin": "ast", + "id": "wink_nlp", + "community": 279, + "community_name": "Community 279", + "norm_label": "wink-nlp" + }, + { + "label": "pdfjs-dist", + "file_type": "code", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L24", + "_origin": "ast", + "id": "apps_extension_chromium_package_dependencies_pdfjs_dist", + "community": 279, + "community_name": "Community 279", + "norm_label": "pdfjs-dist" + }, + { + "label": "pdfjs-dist", + "file_type": "concept", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L24", + "_origin": "ast", + "id": "apps_extension_chromium_package_json_pdfjs_dist", + "community": 279, + "community_name": "Community 279", + "norm_label": "pdfjs-dist" + }, + { + "label": "ws", + "file_type": "code", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L25", + "_origin": "ast", + "id": "apps_extension_chromium_package_dependencies_ws", + "community": 279, + "community_name": "Community 279", + "norm_label": "ws" + }, + { + "label": "ws", + "file_type": "concept", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L25", + "_origin": "ast", + "id": "apps_extension_chromium_package_json_ws", + "community": 279, + "community_name": "Community 279", + "norm_label": "ws" + }, + { + "label": "zod", + "file_type": "code", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L26", + "_origin": "ast", + "id": "apps_extension_chromium_package_dependencies_zod", + "community": 279, + "community_name": "Community 279", + "norm_label": "zod" + }, + { + "label": "zod", + "file_type": "concept", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L26", + "_origin": "ast", + "id": "apps_extension_chromium_package_json_zod", + "community": 279, + "community_name": "Community 279", + "norm_label": "zod" + }, + { + "label": "zustand", + "file_type": "code", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L27", + "_origin": "ast", + "id": "apps_extension_chromium_package_dependencies_zustand", + "community": 279, + "community_name": "Community 279", + "norm_label": "zustand" + }, + { + "label": "zustand", + "file_type": "concept", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L27", + "_origin": "ast", + "id": "apps_extension_chromium_package_json_zustand", + "community": 279, + "community_name": "Community 279", + "norm_label": "zustand" + }, + { + "label": "devDependencies", + "file_type": "code", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L29", + "_origin": "ast", + "id": "apps_extension_chromium_package_devdependencies", + "community": 280, + "community_name": "Community 280", + "norm_label": "devdependencies" + }, + { + "label": "@crxjs/vite-plugin", + "file_type": "code", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L30", + "_origin": "ast", + "id": "apps_extension_chromium_package_devdependencies_crxjs_vite_plugin", + "community": 280, + "community_name": "Community 280", + "norm_label": "@crxjs/vite-plugin" + }, + { + "label": "@crxjs/vite-plugin", + "file_type": "concept", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L30", + "_origin": "ast", + "id": "crxjs_vite_plugin", + "community": 280, + "community_name": "Community 280", + "norm_label": "@crxjs/vite-plugin" + }, + { + "label": "@types/chrome", + "file_type": "code", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L31", + "_origin": "ast", + "id": "apps_extension_chromium_package_devdependencies_types_chrome", + "community": 280, + "community_name": "Community 280", + "norm_label": "@types/chrome" + }, + { + "label": "@types/chrome", + "file_type": "concept", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L31", + "_origin": "ast", + "id": "apps_extension_chromium_package_json_types_chrome", + "community": 280, + "community_name": "Community 280", + "norm_label": "@types/chrome" + }, + { + "label": "@types/react", + "file_type": "code", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L32", + "_origin": "ast", + "id": "apps_extension_chromium_package_devdependencies_types_react", + "community": 280, + "community_name": "Community 280", + "norm_label": "@types/react" + }, + { + "label": "@types/react", + "file_type": "concept", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L32", + "_origin": "ast", + "id": "apps_extension_chromium_package_json_types_react", + "community": 280, + "community_name": "Community 280", + "norm_label": "@types/react" + }, + { + "label": "@types/react-dom", + "file_type": "code", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L33", + "_origin": "ast", + "id": "apps_extension_chromium_package_devdependencies_types_react_dom", + "community": 280, + "community_name": "Community 280", + "norm_label": "@types/react-dom" + }, + { + "label": "@types/react-dom", + "file_type": "concept", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L33", + "_origin": "ast", + "id": "apps_extension_chromium_package_json_types_react_dom", + "community": 280, + "community_name": "Community 280", + "norm_label": "@types/react-dom" + }, + { + "label": "@vitejs/plugin-react", + "file_type": "code", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L34", + "_origin": "ast", + "id": "apps_extension_chromium_package_devdependencies_vitejs_plugin_react", + "community": 280, + "community_name": "Community 280", + "norm_label": "@vitejs/plugin-react" + }, + { + "label": "@vitejs/plugin-react", + "file_type": "concept", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L34", + "_origin": "ast", + "id": "apps_extension_chromium_package_json_vitejs_plugin_react", + "community": 280, + "community_name": "Community 280", + "norm_label": "@vitejs/plugin-react" + }, + { + "label": "typescript", + "file_type": "code", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L35", + "_origin": "ast", + "id": "apps_extension_chromium_package_devdependencies_typescript", + "community": 280, + "community_name": "Community 280", + "norm_label": "typescript" + }, + { + "label": "typescript", + "file_type": "concept", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L35", + "_origin": "ast", + "id": "apps_extension_chromium_package_json_typescript", + "community": 280, + "community_name": "Community 280", + "norm_label": "typescript" + }, + { + "label": "vite", + "file_type": "code", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L36", + "_origin": "ast", + "id": "apps_extension_chromium_package_devdependencies_vite", + "community": 280, + "community_name": "Community 280", + "norm_label": "vite" + }, + { + "label": "vite", + "file_type": "concept", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L36", + "_origin": "ast", + "id": "apps_extension_chromium_package_json_vite", + "community": 280, + "community_name": "Community 280", + "norm_label": "vite" + }, + { + "label": "vitest", + "file_type": "code", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L37", + "_origin": "ast", + "id": "apps_extension_chromium_package_devdependencies_vitest", + "community": 280, + "community_name": "Community 280", + "norm_label": "vitest" + }, + { + "label": "vitest", + "file_type": "concept", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L37", + "_origin": "ast", + "id": "apps_extension_chromium_package_json_vitest", + "community": 280, + "community_name": "Community 280", + "norm_label": "vitest" + }, + { + "label": "grid-display.js", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-display.js", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_display", + "community": 443, + "community_name": "Griddisplay", + "norm_label": "grid-display.js" + }, + { + "label": "signalGridSurfaceReady()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-display.js", + "source_location": "L117", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_display_signalgridsurfaceready", + "community": 443, + "community_name": "Griddisplay", + "norm_label": "signalgridsurfaceready()" + }, + { + "label": "createSlots()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-display.js", + "source_location": "L200", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_display_createslots", + "community": 443, + "community_name": "Griddisplay", + "norm_label": "createslots()" + }, + { + "label": "addFullscreenButton()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-display.js", + "source_location": "L337", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_display_addfullscreenbutton", + "community": 443, + "community_name": "Griddisplay", + "norm_label": "addfullscreenbutton()" + }, + { + "label": "addMasterGridToggle()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-display.js", + "source_location": "L390", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_display_addmastergridtoggle", + "community": 443, + "community_name": "Griddisplay", + "norm_label": "addmastergridtoggle()" + }, + { + "label": "grid-integration-default-badge.js", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-integration-default-badge.js", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_integration_default_badge", + "community": 348, + "community_name": "Gridintegrationdefaultbadge", + "norm_label": "grid-integration-default-badge.js" + }, + { + "label": "debugEnabled()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-integration-default-badge.js", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_integration_default_badge_debugenabled", + "community": 348, + "community_name": "Gridintegrationdefaultbadge", + "norm_label": "debugenabled()" + }, + { + "label": "logDebug()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-integration-default-badge.js", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_integration_default_badge_logdebug", + "community": 348, + "community_name": "Gridintegrationdefaultbadge", + "norm_label": "logdebug()" + }, + { + "label": "logWarn()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-integration-default-badge.js", + "source_location": "L46", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_integration_default_badge_logwarn", + "community": 348, + "community_name": "Gridintegrationdefaultbadge", + "norm_label": "logwarn()" + }, + { + "label": "parseRoot()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-integration-default-badge.js", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_integration_default_badge_parseroot", + "community": 348, + "community_name": "Gridintegrationdefaultbadge", + "norm_label": "parseroot()" + }, + { + "label": "collectRowsForSession()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-integration-default-badge.js", + "source_location": "L67", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_integration_default_badge_collectrowsforsession", + "community": 348, + "community_name": "Gridintegrationdefaultbadge", + "norm_label": "collectrowsforsession()" + }, + { + "label": "removeBadge()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-integration-default-badge.js", + "source_location": "L83", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_integration_default_badge_removebadge", + "community": 348, + "community_name": "Gridintegrationdefaultbadge", + "norm_label": "removebadge()" + }, + { + "label": "renderBadge()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-integration-default-badge.js", + "source_location": "L91", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_integration_default_badge_renderbadge", + "community": 348, + "community_name": "Gridintegrationdefaultbadge", + "norm_label": "renderbadge()" + }, + { + "label": "attachStorageListenerOnce()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-integration-default-badge.js", + "source_location": "L139", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_integration_default_badge_attachstoragelisteneronce", + "community": 348, + "community_name": "Gridintegrationdefaultbadge", + "norm_label": "attachstoragelisteneronce()" + }, + { + "label": "resolveBadge()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-integration-default-badge.js", + "source_location": "L157", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_integration_default_badge_resolvebadge", + "community": 348, + "community_name": "Gridintegrationdefaultbadge", + "norm_label": "resolvebadge()" + }, + { + "label": "tryRender()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-integration-default-badge.js", + "source_location": "L254", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_integration_default_badge_tryrender", + "community": 348, + "community_name": "Gridintegrationdefaultbadge", + "norm_label": "tryrender()" + }, + { + "label": "grid-script-backup.js", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-script-backup.js", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script_backup", + "community": 281, + "community_name": "Gridscriptbackup", + "norm_label": "grid-script-backup.js" + }, + { + "label": "saveGridConfig()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-script-backup.js", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script_backup_savegridconfig", + "community": 281, + "community_name": "Gridscriptbackup", + "norm_label": "savegridconfig()" + }, + { + "label": "loadGridConfig()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-script-backup.js", + "source_location": "L160", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script_backup_loadgridconfig", + "community": 281, + "community_name": "Gridscriptbackup", + "norm_label": "loadgridconfig()" + }, + { + "label": "toggleFullscreen()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-script-backup.js", + "source_location": "L192", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script_backup_togglefullscreen", + "community": 281, + "community_name": "Gridscriptbackup", + "norm_label": "togglefullscreen()" + }, + { + "label": "fallbackFullscreen()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-script-backup.js", + "source_location": "L260", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script_backup_fallbackfullscreen", + "community": 281, + "community_name": "Gridscriptbackup", + "norm_label": "fallbackfullscreen()" + }, + { + "label": "fallbackExitFullscreen()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-script-backup.js", + "source_location": "L286", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script_backup_fallbackexitfullscreen", + "community": 281, + "community_name": "Gridscriptbackup", + "norm_label": "fallbackexitfullscreen()" + }, + { + "label": "updateFullscreenButton()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-script-backup.js", + "source_location": "L312", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script_backup_updatefullscreenbutton", + "community": 281, + "community_name": "Gridscriptbackup", + "norm_label": "updatefullscreenbutton()" + }, + { + "label": "showFullscreenNotification()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-script-backup.js", + "source_location": "L329", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script_backup_showfullscreennotification", + "community": 281, + "community_name": "Gridscriptbackup", + "norm_label": "showfullscreennotification()" + }, + { + "label": "toggleSlideMode()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-script-backup.js", + "source_location": "L380", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script_backup_toggleslidemode", + "community": 281, + "community_name": "Gridscriptbackup", + "norm_label": "toggleslidemode()" + }, + { + "label": "showSlide()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-script-backup.js", + "source_location": "L422", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script_backup_showslide", + "community": 281, + "community_name": "Gridscriptbackup", + "norm_label": "showslide()" + }, + { + "label": "nextSlide()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-script-backup.js", + "source_location": "L441", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script_backup_nextslide", + "community": 281, + "community_name": "Gridscriptbackup", + "norm_label": "nextslide()" + }, + { + "label": "prevSlide()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-script-backup.js", + "source_location": "L445", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script_backup_prevslide", + "community": 281, + "community_name": "Gridscriptbackup", + "norm_label": "prevslide()" + }, + { + "label": "handleKeydown()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-script-backup.js", + "source_location": "L449", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script_backup_handlekeydown", + "community": 281, + "community_name": "Gridscriptbackup", + "norm_label": "handlekeydown()" + }, + { + "label": "init()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-script-backup.js", + "source_location": "L494", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script_backup_init", + "community": 281, + "community_name": "Gridscriptbackup", + "norm_label": "init()" + }, + { + "label": "handleFullscreenClick()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-script-backup.js", + "source_location": "L560", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script_backup_handlefullscreenclick", + "community": 281, + "community_name": "Gridscriptbackup", + "norm_label": "handlefullscreenclick()" + }, + { + "label": "tryInit()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-script-backup.js", + "source_location": "L584", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script_backup_tryinit", + "community": 281, + "community_name": "Gridscriptbackup", + "norm_label": "tryinit()" + }, + { + "label": "initializeWebSocket()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-script-backup.js", + "source_location": "L604", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script_backup_initializewebsocket", + "community": 281, + "community_name": "Gridscriptbackup", + "norm_label": "initializewebsocket()" + }, + { + "label": "grid-script-v2.js", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-script-v2.js", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script_v2", + "community": 311, + "community_name": "Gridscriptv2", + "norm_label": "grid-script-v2.js" + }, + { + "label": "toProviderIdV2()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-script-v2.js", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script_v2_toprovideridv2", + "community": 311, + "community_name": "Gridscriptv2", + "norm_label": "toprovideridv2()" + }, + { + "label": "toProviderLabelV2()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-script-v2.js", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script_v2_toproviderlabelv2", + "community": 311, + "community_name": "Gridscriptv2", + "norm_label": "toproviderlabelv2()" + }, + { + "label": "findMaxBoxNumber()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-script-v2.js", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script_v2_findmaxboxnumber", + "community": 311, + "community_name": "Gridscriptv2", + "norm_label": "findmaxboxnumber()" + }, + { + "label": "getSessionFromHttpApi()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-script-v2.js", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script_v2_getsessionfromhttpapi", + "community": 311, + "community_name": "Gridscriptv2", + "norm_label": "getsessionfromhttpapi()" + }, + { + "label": "getCurrentSessionKey()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-script-v2.js", + "source_location": "L88", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script_v2_getcurrentsessionkey", + "community": 311, + "community_name": "Gridscriptv2", + "norm_label": "getcurrentsessionkey()" + }, + { + "label": "calculateNextBoxNumber()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-script-v2.js", + "source_location": "L99", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script_v2_calculatenextboxnumber", + "community": 311, + "community_name": "Gridscriptv2", + "norm_label": "calculatenextboxnumber()" + }, + { + "label": "showV2Dialog()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-script-v2.js", + "source_location": "L208", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script_v2_showv2dialog", + "community": 311, + "community_name": "Gridscriptv2", + "norm_label": "showv2dialog()" + }, + { + "label": "toggleFullscreen()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-script-v2.js", + "source_location": "L743", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script_v2_togglefullscreen", + "community": 311, + "community_name": "Gridscriptv2", + "norm_label": "togglefullscreen()" + }, + { + "label": "renderMarkdown()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-script-v2.js", + "source_location": "L772", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script_v2_rendermarkdown", + "community": 311, + "community_name": "Gridscriptv2", + "norm_label": "rendermarkdown()" + }, + { + "label": "inlineMarkdown()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-script-v2.js", + "source_location": "L823", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script_v2_inlinemarkdown", + "community": 311, + "community_name": "Gridscriptv2", + "norm_label": "inlinemarkdown()" + }, + { + "label": "getGridSessionKeyForClearV2()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-script-v2.js", + "source_location": "L831", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script_v2_getgridsessionkeyforclearv2", + "community": 311, + "community_name": "Gridscriptv2", + "norm_label": "getgridsessionkeyforclearv2()" + }, + { + "label": "gridSlotEmptyPlaceholderHtmlV2()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-script-v2.js", + "source_location": "L835", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script_v2_gridslotemptyplaceholderhtmlv2", + "community": 311, + "community_name": "Gridscriptv2", + "norm_label": "gridslotemptyplaceholderhtmlv2()" + }, + { + "label": "IMPORTANT: Save the identifier BEFORE clearing the config", + "file_type": "rationale", + "source_file": "apps/extension-chromium/public/grid-script-v2.js", + "source_location": "L477", + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script_v2_rationale_477", + "community": 311, + "community_name": "Gridscriptv2", + "norm_label": "important: save the identifier before clearing the config" + }, + { + "label": "grid-script.js", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script", + "community": 215, + "community_name": "Gridscript", + "norm_label": "grid-script.js" + }, + { + "label": "toProviderIdGS()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script_toprovideridgs", + "community": 215, + "community_name": "Gridscript", + "norm_label": "toprovideridgs()" + }, + { + "label": "toProviderLabelGS()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script_toproviderlabelgs", + "community": 215, + "community_name": "Gridscript", + "norm_label": "toproviderlabelgs()" + }, + { + "label": "modelOptionsStatic()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script_modeloptionsstatic", + "community": 215, + "community_name": "Gridscript", + "norm_label": "modeloptionsstatic()" + }, + { + "label": "escOpt()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L65", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script_escopt", + "community": 215, + "community_name": "Gridscript", + "norm_label": "escopt()" + }, + { + "label": "fetchLocalModelNames()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L70", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script_fetchlocalmodelnames", + "community": 215, + "community_name": "Gridscript", + "norm_label": "fetchlocalmodelnames()" + }, + { + "label": "fillModelSelect()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L96", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script_fillmodelselect", + "community": 215, + "community_name": "Gridscript", + "norm_label": "fillmodelselect()" + }, + { + "label": "findMaxBoxNumber()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L172", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script_findmaxboxnumber", + "community": 215, + "community_name": "Gridscript", + "norm_label": "findmaxboxnumber()" + }, + { + "label": "getSessionFromHttpApi()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L201", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script_getsessionfromhttpapi", + "community": 215, + "community_name": "Gridscript", + "norm_label": "getsessionfromhttpapi()" + }, + { + "label": "calculateNextBoxNumber()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L234", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script_calculatenextboxnumber", + "community": 215, + "community_name": "Gridscript", + "norm_label": "calculatenextboxnumber()" + }, + { + "label": "renderTools()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L485", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script_rendertools", + "community": 215, + "community_name": "Gridscript", + "norm_label": "rendertools()" + }, + { + "label": "renderExpertsList()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L612", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script_renderexpertslist", + "community": 215, + "community_name": "Gridscript", + "norm_label": "renderexpertslist()" + }, + { + "label": "openExpertEditor()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L636", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script_openexperteditor", + "community": 215, + "community_name": "Gridscript", + "norm_label": "openexperteditor()" + }, + { + "label": "tryOpenerSave()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L892", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script_tryopenersave", + "community": 215, + "community_name": "Gridscript", + "norm_label": "tryopenersave()" + }, + { + "label": "parseSlotConfig()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L966", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script_parseslotconfig", + "community": 215, + "community_name": "Gridscript", + "norm_label": "parseslotconfig()" + }, + { + "label": "writeSlotConfig()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L969", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script_writeslotconfig", + "community": 215, + "community_name": "Gridscript", + "norm_label": "writeslotconfig()" + }, + { + "label": "openToolCatalog()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L972", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script_opentoolcatalog", + "community": 215, + "community_name": "Gridscript", + "norm_label": "opentoolcatalog()" + }, + { + "label": "toggleFullscreen()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L1026", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script_togglefullscreen", + "community": 215, + "community_name": "Gridscript", + "norm_label": "togglefullscreen()" + }, + { + "label": "attachEditButtonListeners()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L1058", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script_attacheditbuttonlisteners", + "community": 215, + "community_name": "Gridscript", + "norm_label": "attacheditbuttonlisteners()" + }, + { + "label": "attachToggleListeners()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L1094", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script_attachtogglelisteners", + "community": 215, + "community_name": "Gridscript", + "norm_label": "attachtogglelisteners()" + }, + { + "label": "renderMarkdown()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L1180", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script_rendermarkdown", + "community": 215, + "community_name": "Gridscript", + "norm_label": "rendermarkdown()" + }, + { + "label": "inlineMarkdown()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L1231", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script_inlinemarkdown", + "community": 215, + "community_name": "Gridscript", + "norm_label": "inlinemarkdown()" + }, + { + "label": "getGridSessionKeyForClear()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L1239", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script_getgridsessionkeyforclear", + "community": 215, + "community_name": "Gridscript", + "norm_label": "getgridsessionkeyforclear()" + }, + { + "label": "gridSlotEmptyPlaceholderHtml()", + "file_type": "code", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L1243", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script_gridslotemptyplaceholderhtml", + "community": 215, + "community_name": "Gridscript", + "norm_label": "gridslotemptyplaceholderhtml()" + }, + { + "label": "IMPORTANT: Save the identifier BEFORE clearing the config", + "file_type": "rationale", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L551", + "_origin": "ast", + "id": "apps_extension_chromium_public_grid_script_rationale_551", + "community": 215, + "community_name": "Gridscript", + "norm_label": "important: save the identifier before clearing the config" + }, + { + "label": "orchestration.js", + "file_type": "code", + "source_file": "apps/extension-chromium/public/orchestration.js", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_public_orchestration", + "community": 604, + "community_name": "Orchestration #604", + "norm_label": "orchestration.js" + }, + { + "label": "agent.schema.json", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema", + "community": 206, + "community_name": "Schemas #206", + "norm_label": "agent.schema.json" + }, + { + "label": "$schema", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L2", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_schema", + "community": 206, + "community_name": "Schemas #206", + "norm_label": "$schema" + }, + { + "label": "$id", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L3", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_id", + "community": 206, + "community_name": "Schemas #206", + "norm_label": "$id" + }, + { + "label": "title", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L4", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_title", + "community": 206, + "community_name": "Schemas #206", + "norm_label": "title" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L5", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_description", + "community": 206, + "community_name": "Schemas #206", + "norm_label": "description" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L6", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_type", + "community": 206, + "community_name": "Schemas #206", + "norm_label": "type" + }, + { + "label": "required", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L7", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_required", + "community": 206, + "community_name": "Schemas #206", + "norm_label": "required" + }, + { + "label": "_schemaVersion", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L7", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_json_ref_schemaversion", + "community": 206, + "community_name": "Schemas #206", + "norm_label": "_schemaversion" + }, + { + "label": "id", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L7", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_json_ref_id", + "community": 206, + "community_name": "Schemas #206", + "norm_label": "id" + }, + { + "label": "name", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L7", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_json_ref_name", + "community": 206, + "community_name": "Schemas #206", + "norm_label": "name" + }, + { + "label": "enabled", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L7", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_json_ref_enabled", + "community": 206, + "community_name": "Schemas #206", + "norm_label": "enabled" + }, + { + "label": "capabilities", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L7", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_json_ref_capabilities", + "community": 206, + "community_name": "Schemas #206", + "norm_label": "capabilities" + }, + { + "label": "contextSettings", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L7", + "_origin": "ast", + "id": "ref_contextsettings", + "community": 206, + "community_name": "Schemas #206", + "norm_label": "contextsettings" + }, + { + "label": "memorySettings", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L7", + "_origin": "ast", + "id": "ref_memorysettings", + "community": 206, + "community_name": "Schemas #206", + "norm_label": "memorysettings" + }, + { + "label": "properties", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L8", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties", + "community": 133, + "community_name": "Schemas #133", + "norm_label": "properties" + }, + { + "label": "$schema", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L9", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_schema", + "community": 133, + "community_name": "Schemas #133", + "norm_label": "$schema" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L10", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_schema_type", + "community": 133, + "community_name": "Schemas #133", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L11", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_schema_description", + "community": 133, + "community_name": "Schemas #133", + "norm_label": "description" + }, + { + "label": "_schemaVersion", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L13", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_schemaversion", + "community": 133, + "community_name": "Schemas #133", + "norm_label": "_schemaversion" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L14", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_schemaversion_type", + "community": 133, + "community_name": "Schemas #133", + "norm_label": "type" + }, + { + "label": "const", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L15", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_schemaversion_const", + "community": 133, + "community_name": "Schemas #133", + "norm_label": "const" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L16", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_schemaversion_description", + "community": 133, + "community_name": "Schemas #133", + "norm_label": "description" + }, + { + "label": "_exportedAt", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L18", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_exportedat", + "community": 133, + "community_name": "Schemas #133", + "norm_label": "_exportedat" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L19", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_exportedat_type", + "community": 133, + "community_name": "Schemas #133", + "norm_label": "type" + }, + { + "label": "format", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L20", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_exportedat_format", + "community": 133, + "community_name": "Schemas #133", + "norm_label": "format" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L21", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_exportedat_description", + "community": 133, + "community_name": "Schemas #133", + "norm_label": "description" + }, + { + "label": "_source", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L23", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_source", + "community": 133, + "community_name": "Schemas #133", + "norm_label": "_source" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L24", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_source_type", + "community": 133, + "community_name": "Schemas #133", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L25", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_source_description", + "community": 133, + "community_name": "Schemas #133", + "norm_label": "description" + }, + { + "label": "_helper", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L27", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_helper", + "community": 133, + "community_name": "Schemas #133", + "norm_label": "_helper" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L28", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_helper_type", + "community": 133, + "community_name": "Schemas #133", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L29", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_helper_description", + "community": 133, + "community_name": "Schemas #133", + "norm_label": "description" + }, + { + "label": "_schemaInfo", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L31", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_schemainfo", + "community": 333, + "community_name": "Schemas #333", + "norm_label": "_schemainfo" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L32", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_schemainfo_type", + "community": 333, + "community_name": "Schemas #333", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L33", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_schemainfo_description", + "community": 333, + "community_name": "Schemas #333", + "norm_label": "description" + }, + { + "label": "properties", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L34", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_schemainfo_properties", + "community": 333, + "community_name": "Schemas #333", + "norm_label": "properties" + }, + { + "label": "enums", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L35", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_enums", + "community": 333, + "community_name": "Schemas #333", + "norm_label": "enums" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L35", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_enums_type", + "community": 333, + "community_name": "Schemas #333", + "norm_label": "type" + }, + { + "label": "numericFields", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L36", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_numericfields", + "community": 333, + "community_name": "Schemas #333", + "norm_label": "numericfields" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L36", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_numericfields_type", + "community": 333, + "community_name": "Schemas #333", + "norm_label": "type" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L36", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_numericfields_items", + "community": 333, + "community_name": "Schemas #333", + "norm_label": "items" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L36", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_items_type", + "community": 144, + "community_name": "Schemas #144", + "norm_label": "type" + }, + { + "label": "deprecatedFields", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L37", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_deprecatedfields", + "community": 333, + "community_name": "Schemas #333", + "norm_label": "deprecatedfields" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L37", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_deprecatedfields_type", + "community": 333, + "community_name": "Schemas #333", + "norm_label": "type" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L37", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_deprecatedfields_items", + "community": 333, + "community_name": "Schemas #333", + "norm_label": "items" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L40", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_id", + "community": 133, + "community_name": "Schemas #133", + "norm_label": "id" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L41", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_id_type", + "community": 133, + "community_name": "Schemas #133", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L42", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_id_description", + "community": 133, + "community_name": "Schemas #133", + "norm_label": "description" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L44", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_name", + "community": 145, + "community_name": "Schemas #145", + "norm_label": "name" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L45", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_name_type", + "community": 145, + "community_name": "Schemas #145", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L46", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_name_description", + "community": 145, + "community_name": "Schemas #145", + "norm_label": "description" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L48", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_description", + "community": 133, + "community_name": "Schemas #133", + "norm_label": "description" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L49", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_description_type", + "community": 133, + "community_name": "Schemas #133", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L50", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_description_description", + "community": 133, + "community_name": "Schemas #133", + "norm_label": "description" + }, + { + "label": "icon", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L52", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_icon", + "community": 133, + "community_name": "Schemas #133", + "norm_label": "icon" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L53", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_icon_type", + "community": 133, + "community_name": "Schemas #133", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L54", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_icon_description", + "community": 133, + "community_name": "Schemas #133", + "norm_label": "description" + }, + { + "label": "default", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L55", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_icon_default", + "community": 133, + "community_name": "Schemas #133", + "norm_label": "default" + }, + { + "label": "number", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L57", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_number", + "community": 133, + "community_name": "Schemas #133", + "norm_label": "number" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L58", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_number_type", + "community": 133, + "community_name": "Schemas #133", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L59", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_number_description", + "community": 133, + "community_name": "Schemas #133", + "norm_label": "description" + }, + { + "label": "enabled", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L61", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_enabled", + "community": 133, + "community_name": "Schemas #133", + "norm_label": "enabled" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L62", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_enabled_type", + "community": 133, + "community_name": "Schemas #133", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L63", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_enabled_description", + "community": 133, + "community_name": "Schemas #133", + "norm_label": "description" + }, + { + "label": "default", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L64", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_enabled_default", + "community": 133, + "community_name": "Schemas #133", + "norm_label": "default" + }, + { + "label": "capabilities", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L66", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_capabilities", + "community": 225, + "community_name": "Schemas #225", + "norm_label": "capabilities" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L67", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_capabilities_type", + "community": 225, + "community_name": "Schemas #225", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L68", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_capabilities_description", + "community": 225, + "community_name": "Schemas #225", + "norm_label": "description" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L69", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_capabilities_items", + "community": 225, + "community_name": "Schemas #225", + "norm_label": "items" + }, + { + "label": "enum", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L71", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_items_enum", + "community": 225, + "community_name": "Schemas #225", + "norm_label": "enum" + }, + { + "label": "listening", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L71", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_json_ref_listening", + "community": 225, + "community_name": "Schemas #225", + "norm_label": "listening" + }, + { + "label": "reasoning", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L71", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_json_ref_reasoning", + "community": 225, + "community_name": "Schemas #225", + "norm_label": "reasoning" + }, + { + "label": "execution", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L71", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_json_ref_execution", + "community": 225, + "community_name": "Schemas #225", + "norm_label": "execution" + }, + { + "label": "uniqueItems", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L73", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_capabilities_uniqueitems", + "community": 225, + "community_name": "Schemas #225", + "norm_label": "uniqueitems" + }, + { + "label": "contextSettings", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L75", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_contextsettings", + "community": 253, + "community_name": "Schemas #253", + "norm_label": "contextsettings" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L76", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_contextsettings_type", + "community": 253, + "community_name": "Schemas #253", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L77", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_contextsettings_description", + "community": 253, + "community_name": "Schemas #253", + "norm_label": "description" + }, + { + "label": "required", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L78", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_contextsettings_required", + "community": 253, + "community_name": "Schemas #253", + "norm_label": "required" + }, + { + "label": "agentContext", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L78", + "_origin": "ast", + "id": "ref_agentcontext", + "community": 253, + "community_name": "Schemas #253", + "norm_label": "agentcontext" + }, + { + "label": "sessionContext", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L78", + "_origin": "ast", + "id": "ref_sessioncontext", + "community": 253, + "community_name": "Schemas #253", + "norm_label": "sessioncontext" + }, + { + "label": "accountContext", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L78", + "_origin": "ast", + "id": "ref_accountcontext", + "community": 253, + "community_name": "Schemas #253", + "norm_label": "accountcontext" + }, + { + "label": "properties", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L79", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_contextsettings_properties", + "community": 253, + "community_name": "Schemas #253", + "norm_label": "properties" + }, + { + "label": "agentContext", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L80", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_agentcontext", + "community": 253, + "community_name": "Schemas #253", + "norm_label": "agentcontext" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L81", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_agentcontext_type", + "community": 253, + "community_name": "Schemas #253", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L82", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_agentcontext_description", + "community": 253, + "community_name": "Schemas #253", + "norm_label": "description" + }, + { + "label": "default", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L83", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_agentcontext_default", + "community": 253, + "community_name": "Schemas #253", + "norm_label": "default" + }, + { + "label": "sessionContext", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L85", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_sessioncontext", + "community": 253, + "community_name": "Schemas #253", + "norm_label": "sessioncontext" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L86", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_sessioncontext_type", + "community": 253, + "community_name": "Schemas #253", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L87", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_sessioncontext_description", + "community": 253, + "community_name": "Schemas #253", + "norm_label": "description" + }, + { + "label": "default", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L88", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_sessioncontext_default", + "community": 253, + "community_name": "Schemas #253", + "norm_label": "default" + }, + { + "label": "accountContext", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L90", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_accountcontext", + "community": 253, + "community_name": "Schemas #253", + "norm_label": "accountcontext" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L91", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_accountcontext_type", + "community": 253, + "community_name": "Schemas #253", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L92", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_accountcontext_description", + "community": 253, + "community_name": "Schemas #253", + "norm_label": "description" + }, + { + "label": "default", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L93", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_accountcontext_default", + "community": 253, + "community_name": "Schemas #253", + "norm_label": "default" + }, + { + "label": "memorySettings", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L97", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_memorysettings", + "community": 216, + "community_name": "Schemas #216", + "norm_label": "memorysettings" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L98", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_memorysettings_type", + "community": 216, + "community_name": "Schemas #216", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L99", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_memorysettings_description", + "community": 216, + "community_name": "Schemas #216", + "norm_label": "description" + }, + { + "label": "required", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L100", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_memorysettings_required", + "community": 216, + "community_name": "Schemas #216", + "norm_label": "required" + }, + { + "label": "agentEnabled", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L100", + "_origin": "ast", + "id": "ref_agentenabled", + "community": 216, + "community_name": "Schemas #216", + "norm_label": "agentenabled" + }, + { + "label": "sessionEnabled", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L100", + "_origin": "ast", + "id": "ref_sessionenabled", + "community": 216, + "community_name": "Schemas #216", + "norm_label": "sessionenabled" + }, + { + "label": "accountEnabled", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L100", + "_origin": "ast", + "id": "ref_accountenabled", + "community": 216, + "community_name": "Schemas #216", + "norm_label": "accountenabled" + }, + { + "label": "properties", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L101", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_memorysettings_properties", + "community": 216, + "community_name": "Schemas #216", + "norm_label": "properties" + }, + { + "label": "agentEnabled", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L102", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_agentenabled", + "community": 216, + "community_name": "Schemas #216", + "norm_label": "agentenabled" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L103", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_agentenabled_type", + "community": 216, + "community_name": "Schemas #216", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L104", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_agentenabled_description", + "community": 216, + "community_name": "Schemas #216", + "norm_label": "description" + }, + { + "label": "default", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L105", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_agentenabled_default", + "community": 216, + "community_name": "Schemas #216", + "norm_label": "default" + }, + { + "label": "sessionEnabled", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L107", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_sessionenabled", + "community": 216, + "community_name": "Schemas #216", + "norm_label": "sessionenabled" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L108", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_sessionenabled_type", + "community": 216, + "community_name": "Schemas #216", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L109", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_sessionenabled_description", + "community": 216, + "community_name": "Schemas #216", + "norm_label": "description" + }, + { + "label": "default", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L110", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_sessionenabled_default", + "community": 216, + "community_name": "Schemas #216", + "norm_label": "default" + }, + { + "label": "accountEnabled", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L112", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_accountenabled", + "community": 216, + "community_name": "Schemas #216", + "norm_label": "accountenabled" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L113", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_accountenabled_type", + "community": 216, + "community_name": "Schemas #216", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L114", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_accountenabled_description", + "community": 216, + "community_name": "Schemas #216", + "norm_label": "description" + }, + { + "label": "default", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L115", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_accountenabled_default", + "community": 216, + "community_name": "Schemas #216", + "norm_label": "default" + }, + { + "label": "listening", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L119", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_listening", + "community": 241, + "community_name": "Schemas #241", + "norm_label": "listening" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L120", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_listening_type", + "community": 241, + "community_name": "Schemas #241", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L121", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_listening_description", + "community": 241, + "community_name": "Schemas #241", + "norm_label": "description" + }, + { + "label": "properties", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L122", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_listening_properties", + "community": 241, + "community_name": "Schemas #241", + "norm_label": "properties" + }, + { + "label": "expectedContext", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L123", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_expectedcontext", + "community": 241, + "community_name": "Schemas #241", + "norm_label": "expectedcontext" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L124", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_expectedcontext_type", + "community": 241, + "community_name": "Schemas #241", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L125", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_expectedcontext_description", + "community": 241, + "community_name": "Schemas #241", + "norm_label": "description" + }, + { + "label": "tags", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L127", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_tags", + "community": 241, + "community_name": "Schemas #241", + "norm_label": "tags" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L128", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_tags_type", + "community": 241, + "community_name": "Schemas #241", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L129", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_tags_description", + "community": 241, + "community_name": "Schemas #241", + "norm_label": "description" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L130", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_tags_items", + "community": 241, + "community_name": "Schemas #241", + "norm_label": "items" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L132", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_sources", + "community": 241, + "community_name": "Schemas #241", + "norm_label": "sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L133", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_sources_type", + "community": 241, + "community_name": "Schemas #241", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L134", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_sources_description", + "community": 241, + "community_name": "Schemas #241", + "norm_label": "description" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L135", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_sources_items", + "community": 241, + "community_name": "Schemas #241", + "norm_label": "items" + }, + { + "label": "all", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L137", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_json_ref_all", + "community": 225, + "community_name": "Schemas #225", + "norm_label": "all" + }, + { + "label": "chat", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L137", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_json_ref_chat", + "community": 225, + "community_name": "Schemas #225", + "norm_label": "chat" + }, + { + "label": "voice", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L137", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_json_ref_voice", + "community": 225, + "community_name": "Schemas #225", + "norm_label": "voice" + }, + { + "label": "voicememo", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L137", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_json_ref_voicememo", + "community": 225, + "community_name": "Schemas #225", + "norm_label": "voicememo" + }, + { + "label": "video", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L137", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_json_ref_video", + "community": 225, + "community_name": "Schemas #225", + "norm_label": "video" + }, + { + "label": "email", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L137", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_json_ref_email", + "community": 225, + "community_name": "Schemas #225", + "norm_label": "email" + }, + { + "label": "whatsapp", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L137", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_json_ref_whatsapp", + "community": 225, + "community_name": "Schemas #225", + "norm_label": "whatsapp" + }, + { + "label": "pdf", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L137", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_json_ref_pdf", + "community": 225, + "community_name": "Schemas #225", + "norm_label": "pdf" + }, + { + "label": "docs", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L137", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_json_ref_docs", + "community": 225, + "community_name": "Schemas #225", + "norm_label": "docs" + }, + { + "label": "dom", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L137", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_json_ref_dom", + "community": 225, + "community_name": "Schemas #225", + "norm_label": "dom" + }, + { + "label": "api", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L137", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_json_ref_api", + "community": 225, + "community_name": "Schemas #225", + "norm_label": "api" + }, + { + "label": "workflow", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L137", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_json_ref_workflow", + "community": 225, + "community_name": "Schemas #225", + "norm_label": "workflow" + }, + { + "label": "agent", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L137", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_json_ref_agent", + "community": 217, + "community_name": "Schemas #217", + "norm_label": "agent" + }, + { + "label": "screenshot", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L137", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_json_ref_screenshot", + "community": 225, + "community_name": "Schemas #225", + "norm_label": "screenshot" + }, + { + "label": "stream", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L137", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_json_ref_stream", + "community": 225, + "community_name": "Schemas #225", + "norm_label": "stream" + }, + { + "label": "website", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L140", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_website", + "community": 241, + "community_name": "Schemas #241", + "norm_label": "website" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L141", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_website_type", + "community": 241, + "community_name": "Schemas #241", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L142", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_website_description", + "community": 241, + "community_name": "Schemas #241", + "norm_label": "description" + }, + { + "label": "unifiedTriggers", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L144", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_unifiedtriggers", + "community": 240, + "community_name": "Schemas #240", + "norm_label": "unifiedtriggers" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L145", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_unifiedtriggers_type", + "community": 240, + "community_name": "Schemas #240", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L146", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_unifiedtriggers_description", + "community": 240, + "community_name": "Schemas #240", + "norm_label": "description" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L147", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_unifiedtriggers_items", + "community": 240, + "community_name": "Schemas #240", + "norm_label": "items" + }, + { + "label": "$ref", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L147", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_items_ref", + "community": 240, + "community_name": "Schemas #240", + "norm_label": "$ref" + }, + { + "label": "exampleFiles", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L149", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_examplefiles", + "community": 241, + "community_name": "Schemas #241", + "norm_label": "examplefiles" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L150", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_examplefiles_type", + "community": 241, + "community_name": "Schemas #241", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L151", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_examplefiles_description", + "community": 241, + "community_name": "Schemas #241", + "norm_label": "description" + }, + { + "label": "reasoningSections", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L155", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_reasoningsections", + "community": 240, + "community_name": "Schemas #240", + "norm_label": "reasoningsections" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L156", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_reasoningsections_type", + "community": 240, + "community_name": "Schemas #240", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L157", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_reasoningsections_description", + "community": 240, + "community_name": "Schemas #240", + "norm_label": "description" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L158", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_reasoningsections_items", + "community": 240, + "community_name": "Schemas #240", + "norm_label": "items" + }, + { + "label": "executionSections", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L160", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_executionsections", + "community": 240, + "community_name": "Schemas #240", + "norm_label": "executionsections" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L161", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_executionsections_type", + "community": 240, + "community_name": "Schemas #240", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L162", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_executionsections_description", + "community": 240, + "community_name": "Schemas #240", + "norm_label": "description" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L163", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_executionsections_items", + "community": 240, + "community_name": "Schemas #240", + "norm_label": "items" + }, + { + "label": "agentContextFiles", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L165", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_agentcontextfiles", + "community": 133, + "community_name": "Schemas #133", + "norm_label": "agentcontextfiles" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L166", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_agentcontextfiles_type", + "community": 133, + "community_name": "Schemas #133", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L167", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_agentcontextfiles_description", + "community": 133, + "community_name": "Schemas #133", + "norm_label": "description" + }, + { + "label": "$defs", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L170", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_defs", + "community": 206, + "community_name": "Schemas #206", + "norm_label": "$defs" + }, + { + "label": "trigger", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L171", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_defs_trigger", + "community": 206, + "community_name": "Schemas #206", + "norm_label": "trigger" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L172", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_trigger_type", + "community": 206, + "community_name": "Schemas #206", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L173", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_trigger_description", + "community": 206, + "community_name": "Schemas #206", + "norm_label": "description" + }, + { + "label": "required", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L174", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_trigger_required", + "community": 206, + "community_name": "Schemas #206", + "norm_label": "required" + }, + { + "label": "type", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L174", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_json_ref_type", + "community": 206, + "community_name": "Schemas #206", + "norm_label": "type" + }, + { + "label": "properties", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L175", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "community": 45, + "community_name": "Schemas", + "norm_label": "properties" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L180", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_type", + "community": 217, + "community_name": "Schemas #217", + "norm_label": "type" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L181", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_type_type", + "community": 217, + "community_name": "Schemas #217", + "norm_label": "type" + }, + { + "label": "enum", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L182", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_type_enum", + "community": 217, + "community_name": "Schemas #217", + "norm_label": "enum" + }, + { + "label": "direct_tag", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L182", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_json_ref_direct_tag", + "community": 217, + "community_name": "Schemas #217", + "norm_label": "direct_tag" + }, + { + "label": "tag_and_condition", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L182", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_json_ref_tag_and_condition", + "community": 217, + "community_name": "Schemas #217", + "norm_label": "tag_and_condition" + }, + { + "label": "workflow_condition", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L182", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_json_ref_workflow_condition", + "community": 217, + "community_name": "Schemas #217", + "norm_label": "workflow_condition" + }, + { + "label": "dom_event", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L182", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_json_ref_dom_event", + "community": 217, + "community_name": "Schemas #217", + "norm_label": "dom_event" + }, + { + "label": "dom_parser", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L182", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_json_ref_dom_parser", + "community": 217, + "community_name": "Schemas #217", + "norm_label": "dom_parser" + }, + { + "label": "augmented_overlay", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L182", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_json_ref_augmented_overlay", + "community": 217, + "community_name": "Schemas #217", + "norm_label": "augmented_overlay" + }, + { + "label": "miniapp", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L182", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_json_ref_miniapp", + "community": 217, + "community_name": "Schemas #217", + "norm_label": "miniapp" + }, + { + "label": "manual", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L182", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_json_ref_manual", + "community": 217, + "community_name": "Schemas #217", + "norm_label": "manual" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L183", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_type_description", + "community": 217, + "community_name": "Schemas #217", + "norm_label": "description" + }, + { + "label": "tag", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L191", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_tag", + "community": 145, + "community_name": "Schemas #145", + "norm_label": "tag" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L192", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_tag_type", + "community": 145, + "community_name": "Schemas #145", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L193", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_tag_description", + "community": 145, + "community_name": "Schemas #145", + "norm_label": "description" + }, + { + "label": "tagName", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L195", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_tagname", + "community": 45, + "community_name": "Schemas", + "norm_label": "tagname" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L196", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_tagname_type", + "community": 45, + "community_name": "Schemas", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L197", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_tagname_description", + "community": 45, + "community_name": "Schemas", + "norm_label": "description" + }, + { + "label": "channel", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L199", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_channel", + "community": 510, + "community_name": "Schemas #510", + "norm_label": "channel" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L200", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_channel_type", + "community": 510, + "community_name": "Schemas #510", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L201", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_channel_description", + "community": 510, + "community_name": "Schemas #510", + "norm_label": "description" + }, + { + "label": "eventTagConditions", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L203", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_eventtagconditions", + "community": 240, + "community_name": "Schemas #240", + "norm_label": "eventtagconditions" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L204", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_eventtagconditions_type", + "community": 240, + "community_name": "Schemas #240", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L205", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_eventtagconditions_description", + "community": 240, + "community_name": "Schemas #240", + "norm_label": "description" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L206", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_eventtagconditions_items", + "community": 240, + "community_name": "Schemas #240", + "norm_label": "items" + }, + { + "label": "workflowId", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L213", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_workflowid", + "community": 525, + "community_name": "Schemas #525", + "norm_label": "workflowid" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L214", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_workflowid_type", + "community": 525, + "community_name": "Schemas #525", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L215", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_workflowid_description", + "community": 525, + "community_name": "Schemas #525", + "norm_label": "description" + }, + { + "label": "conditions", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L217", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_conditions", + "community": 240, + "community_name": "Schemas #240", + "norm_label": "conditions" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L218", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_conditions_type", + "community": 240, + "community_name": "Schemas #240", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L219", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_conditions_description", + "community": 240, + "community_name": "Schemas #240", + "norm_label": "description" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L220", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_conditions_items", + "community": 240, + "community_name": "Schemas #240", + "norm_label": "items" + }, + { + "label": "domSelector", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L223", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_domselector", + "community": 45, + "community_name": "Schemas", + "norm_label": "domselector" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L224", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_domselector_type", + "community": 45, + "community_name": "Schemas", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L225", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_domselector_description", + "community": 45, + "community_name": "Schemas", + "norm_label": "description" + }, + { + "label": "domEvent", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L227", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_domevent", + "community": 45, + "community_name": "Schemas", + "norm_label": "domevent" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L228", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_domevent_type", + "community": 45, + "community_name": "Schemas", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L229", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_domevent_description", + "community": 45, + "community_name": "Schemas", + "norm_label": "description" + }, + { + "label": "domUrlFilter", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L231", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_domurlfilter", + "community": 45, + "community_name": "Schemas", + "norm_label": "domurlfilter" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L232", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_domurlfilter_type", + "community": 45, + "community_name": "Schemas", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L233", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_domurlfilter_description", + "community": 45, + "community_name": "Schemas", + "norm_label": "description" + }, + { + "label": "domPayloadSelection", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L235", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_dompayloadselection", + "community": 45, + "community_name": "Schemas", + "norm_label": "dompayloadselection" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L236", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_dompayloadselection_type", + "community": 45, + "community_name": "Schemas", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L237", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_dompayloadselection_description", + "community": 45, + "community_name": "Schemas", + "norm_label": "description" + }, + { + "label": "domPayloadSnippet", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L239", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_dompayloadsnippet", + "community": 45, + "community_name": "Schemas", + "norm_label": "dompayloadsnippet" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L240", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_dompayloadsnippet_type", + "community": 45, + "community_name": "Schemas", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L241", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_dompayloadsnippet_description", + "community": 45, + "community_name": "Schemas", + "norm_label": "description" + }, + { + "label": "domPayloadUrl", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L243", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_dompayloadurl", + "community": 45, + "community_name": "Schemas", + "norm_label": "dompayloadurl" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L244", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_dompayloadurl_type", + "community": 45, + "community_name": "Schemas", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L245", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_dompayloadurl_description", + "community": 45, + "community_name": "Schemas", + "norm_label": "description" + }, + { + "label": "domPayloadParsed", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L247", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_dompayloadparsed", + "community": 45, + "community_name": "Schemas", + "norm_label": "dompayloadparsed" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L248", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_dompayloadparsed_type", + "community": 45, + "community_name": "Schemas", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L249", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_dompayloadparsed_description", + "community": 45, + "community_name": "Schemas", + "norm_label": "description" + }, + { + "label": "domParserEnabled", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L251", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_domparserenabled", + "community": 45, + "community_name": "Schemas", + "norm_label": "domparserenabled" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L252", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_domparserenabled_type", + "community": 45, + "community_name": "Schemas", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L253", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_domparserenabled_description", + "community": 45, + "community_name": "Schemas", + "norm_label": "description" + }, + { + "label": "parserTrigger", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L256", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_parsertrigger", + "community": 217, + "community_name": "Schemas #217", + "norm_label": "parsertrigger" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L257", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_parsertrigger_type", + "community": 217, + "community_name": "Schemas #217", + "norm_label": "type" + }, + { + "label": "enum", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L258", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_parsertrigger_enum", + "community": 217, + "community_name": "Schemas #217", + "norm_label": "enum" + }, + { + "label": "page_load", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L258", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_json_ref_page_load", + "community": 217, + "community_name": "Schemas #217", + "norm_label": "page_load" + }, + { + "label": "dom_change", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L258", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_json_ref_dom_change", + "community": 217, + "community_name": "Schemas #217", + "norm_label": "dom_change" + }, + { + "label": "interval", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L258", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_json_ref_interval", + "community": 217, + "community_name": "Schemas #217", + "norm_label": "interval" + }, + { + "label": "button_click", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L258", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_json_ref_button_click", + "community": 217, + "community_name": "Schemas #217", + "norm_label": "button_click" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L259", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_parsertrigger_description", + "community": 217, + "community_name": "Schemas #217", + "norm_label": "description" + }, + { + "label": "parserInterval", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L261", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_parserinterval", + "community": 473, + "community_name": "Schemas #473", + "norm_label": "parserinterval" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L262", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_parserinterval_type", + "community": 473, + "community_name": "Schemas #473", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L263", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_parserinterval_description", + "community": 473, + "community_name": "Schemas #473", + "norm_label": "description" + }, + { + "label": "minimum", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L264", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_parserinterval_minimum", + "community": 473, + "community_name": "Schemas #473", + "norm_label": "minimum" + }, + { + "label": "domParseTarget", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L266", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_domparsetarget", + "community": 514, + "community_name": "Schemas #514", + "norm_label": "domparsetarget" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L267", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_domparsetarget_type", + "community": 514, + "community_name": "Schemas #514", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L268", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_domparsetarget_description", + "community": 514, + "community_name": "Schemas #514", + "norm_label": "description" + }, + { + "label": "domParseSelector", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L270", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_domparseselector", + "community": 513, + "community_name": "Schemas #513", + "norm_label": "domparseselector" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L271", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_domparseselector_type", + "community": 513, + "community_name": "Schemas #513", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L272", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_domparseselector_description", + "community": 513, + "community_name": "Schemas #513", + "norm_label": "description" + }, + { + "label": "siteFilters", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L274", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_sitefilters", + "community": 144, + "community_name": "Schemas #144", + "norm_label": "sitefilters" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L275", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_sitefilters_type", + "community": 144, + "community_name": "Schemas #144", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L276", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_sitefilters_description", + "community": 144, + "community_name": "Schemas #144", + "norm_label": "description" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L277", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_sitefilters_items", + "community": 144, + "community_name": "Schemas #144", + "norm_label": "items" + }, + { + "label": "buttonSelectors", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L279", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_buttonselectors", + "community": 144, + "community_name": "Schemas #144", + "norm_label": "buttonselectors" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L280", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_buttonselectors_type", + "community": 144, + "community_name": "Schemas #144", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L281", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_buttonselectors_description", + "community": 144, + "community_name": "Schemas #144", + "norm_label": "description" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L282", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_buttonselectors_items", + "community": 144, + "community_name": "Schemas #144", + "norm_label": "items" + }, + { + "label": "buttonSelector", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L284", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_buttonselector", + "community": 45, + "community_name": "Schemas", + "norm_label": "buttonselector" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L285", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_buttonselector_type", + "community": 45, + "community_name": "Schemas", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L286", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_buttonselector_description", + "community": 45, + "community_name": "Schemas", + "norm_label": "description" + }, + { + "label": "autoDetectSelectors", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L288", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_autodetectselectors", + "community": 467, + "community_name": "Schemas #467", + "norm_label": "autodetectselectors" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L289", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_autodetectselectors_type", + "community": 467, + "community_name": "Schemas #467", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L290", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_autodetectselectors_description", + "community": 467, + "community_name": "Schemas #467", + "norm_label": "description" + }, + { + "label": "default", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L291", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_autodetectselectors_default", + "community": 467, + "community_name": "Schemas #467", + "norm_label": "default" + }, + { + "label": "autoDetected", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L293", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_autodetected", + "community": 282, + "community_name": "Schemas #282", + "norm_label": "autodetected" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L294", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_autodetected_type", + "community": 282, + "community_name": "Schemas #282", + "norm_label": "type" + }, + { + "label": "object", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L294", + "_origin": "ast", + "id": "ref_object", + "community": 282, + "community_name": "Schemas #282", + "norm_label": "object" + }, + { + "label": "null", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L294", + "_origin": "ast", + "id": "ref_null", + "community": 282, + "community_name": "Schemas #282", + "norm_label": "null" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L295", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_autodetected_description", + "community": 282, + "community_name": "Schemas #282", + "norm_label": "description" + }, + { + "label": "properties", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L296", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_autodetected_properties", + "community": 282, + "community_name": "Schemas #282", + "norm_label": "properties" + }, + { + "label": "siteFilter", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L297", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_sitefilter", + "community": 282, + "community_name": "Schemas #282", + "norm_label": "sitefilter" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L297", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_sitefilter_type", + "community": 282, + "community_name": "Schemas #282", + "norm_label": "type" + }, + { + "label": "button", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L298", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_button", + "community": 282, + "community_name": "Schemas #282", + "norm_label": "button" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L298", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_button_type", + "community": 282, + "community_name": "Schemas #282", + "norm_label": "type" + }, + { + "label": "input", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L299", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_input", + "community": 282, + "community_name": "Schemas #282", + "norm_label": "input" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L299", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_input_type", + "community": 282, + "community_name": "Schemas #282", + "norm_label": "type" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L300", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_output", + "community": 282, + "community_name": "Schemas #282", + "norm_label": "output" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L300", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_output_type", + "community": 282, + "community_name": "Schemas #282", + "norm_label": "type" + }, + { + "label": "context", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L301", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_context", + "community": 282, + "community_name": "Schemas #282", + "norm_label": "context" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L301", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_context_type", + "community": 282, + "community_name": "Schemas #282", + "norm_label": "type" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L301", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_context_items", + "community": 282, + "community_name": "Schemas #282", + "norm_label": "items" + }, + { + "label": "triggerOnEnterKey", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L304", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_triggeronenterkey", + "community": 476, + "community_name": "Schemas #476", + "norm_label": "triggeronenterkey" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L305", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_triggeronenterkey_type", + "community": 476, + "community_name": "Schemas #476", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L306", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_triggeronenterkey_description", + "community": 476, + "community_name": "Schemas #476", + "norm_label": "description" + }, + { + "label": "default", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L307", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_triggeronenterkey_default", + "community": 476, + "community_name": "Schemas #476", + "norm_label": "default" + }, + { + "label": "enterKeyIgnoreShift", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L309", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_enterkeyignoreshift", + "community": 470, + "community_name": "Schemas #470", + "norm_label": "enterkeyignoreshift" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L310", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_enterkeyignoreshift_type", + "community": 470, + "community_name": "Schemas #470", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L311", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_enterkeyignoreshift_description", + "community": 470, + "community_name": "Schemas #470", + "norm_label": "description" + }, + { + "label": "default", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L312", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_enterkeyignoreshift_default", + "community": 470, + "community_name": "Schemas #470", + "norm_label": "default" + }, + { + "label": "captureInput", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L314", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_captureinput", + "community": 468, + "community_name": "Schemas #468", + "norm_label": "captureinput" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L315", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_captureinput_type", + "community": 468, + "community_name": "Schemas #468", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L316", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_captureinput_description", + "community": 468, + "community_name": "Schemas #468", + "norm_label": "description" + }, + { + "label": "default", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L317", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_captureinput_default", + "community": 468, + "community_name": "Schemas #468", + "norm_label": "default" + }, + { + "label": "inputSelectors", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L319", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_inputselectors", + "community": 144, + "community_name": "Schemas #144", + "norm_label": "inputselectors" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L320", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_inputselectors_type", + "community": 144, + "community_name": "Schemas #144", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L321", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_inputselectors_description", + "community": 144, + "community_name": "Schemas #144", + "norm_label": "description" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L322", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_inputselectors_items", + "community": 144, + "community_name": "Schemas #144", + "norm_label": "items" + }, + { + "label": "inputSelector", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L324", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_inputselector", + "community": 45, + "community_name": "Schemas", + "norm_label": "inputselector" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L325", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_inputselector_type", + "community": 45, + "community_name": "Schemas", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L326", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_inputselector_description", + "community": 45, + "community_name": "Schemas", + "norm_label": "description" + }, + { + "label": "captureOutput", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L328", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_captureoutput", + "community": 469, + "community_name": "Schemas #469", + "norm_label": "captureoutput" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L329", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_captureoutput_type", + "community": 469, + "community_name": "Schemas #469", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L330", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_captureoutput_description", + "community": 469, + "community_name": "Schemas #469", + "norm_label": "description" + }, + { + "label": "default", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L331", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_captureoutput_default", + "community": 469, + "community_name": "Schemas #469", + "norm_label": "default" + }, + { + "label": "outputSelectors", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L333", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_outputselectors", + "community": 144, + "community_name": "Schemas #144", + "norm_label": "outputselectors" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L334", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_outputselectors_type", + "community": 144, + "community_name": "Schemas #144", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L335", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_outputselectors_description", + "community": 144, + "community_name": "Schemas #144", + "norm_label": "description" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L336", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_outputselectors_items", + "community": 144, + "community_name": "Schemas #144", + "norm_label": "items" + }, + { + "label": "outputSelector", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L338", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_outputselector", + "community": 515, + "community_name": "Schemas #515", + "norm_label": "outputselector" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L339", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_outputselector_type", + "community": 515, + "community_name": "Schemas #515", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L340", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_outputselector_description", + "community": 515, + "community_name": "Schemas #515", + "norm_label": "description" + }, + { + "label": "responseReadyMode", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L342", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_responsereadymode", + "community": 389, + "community_name": "Schemas #389", + "norm_label": "responsereadymode" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L343", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_responsereadymode_type", + "community": 389, + "community_name": "Schemas #389", + "norm_label": "type" + }, + { + "label": "enum", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L344", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_responsereadymode_enum", + "community": 389, + "community_name": "Schemas #389", + "norm_label": "enum" + }, + { + "label": "first_change", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L344", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_json_ref_first_change", + "community": 389, + "community_name": "Schemas #389", + "norm_label": "first_change" + }, + { + "label": "quiet_period", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L344", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_json_ref_quiet_period", + "community": 389, + "community_name": "Schemas #389", + "norm_label": "quiet_period" + }, + { + "label": "selector_signal", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L344", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_json_ref_selector_signal", + "community": 389, + "community_name": "Schemas #389", + "norm_label": "selector_signal" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L345", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_responsereadymode_description", + "community": 389, + "community_name": "Schemas #389", + "norm_label": "description" + }, + { + "label": "default", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L346", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_responsereadymode_default", + "community": 389, + "community_name": "Schemas #389", + "norm_label": "default" + }, + { + "label": "quietPeriodMs", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L348", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_quietperiodms", + "community": 45, + "community_name": "Schemas", + "norm_label": "quietperiodms" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L349", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_quietperiodms_type", + "community": 45, + "community_name": "Schemas", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L350", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_quietperiodms_description", + "community": 45, + "community_name": "Schemas", + "norm_label": "description" + }, + { + "label": "default", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L351", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_quietperiodms_default", + "community": 45, + "community_name": "Schemas", + "norm_label": "default" + }, + { + "label": "responseSignalSelector", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L353", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_responsesignalselector", + "community": 45, + "community_name": "Schemas", + "norm_label": "responsesignalselector" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L354", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_responsesignalselector_type", + "community": 45, + "community_name": "Schemas", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L355", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_responsesignalselector_description", + "community": 45, + "community_name": "Schemas", + "norm_label": "description" + }, + { + "label": "maxWaitTimeMs", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L357", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_maxwaittimems", + "community": 471, + "community_name": "Schemas #471", + "norm_label": "maxwaittimems" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L358", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_maxwaittimems_type", + "community": 471, + "community_name": "Schemas #471", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L359", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_maxwaittimems_description", + "community": 471, + "community_name": "Schemas #471", + "norm_label": "description" + }, + { + "label": "default", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L360", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_maxwaittimems_default", + "community": 471, + "community_name": "Schemas #471", + "norm_label": "default" + }, + { + "label": "outputWaitMethod", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L362", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_outputwaitmethod", + "community": 517, + "community_name": "Schemas #517", + "norm_label": "outputwaitmethod" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L363", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_outputwaitmethod_type", + "community": 517, + "community_name": "Schemas #517", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L364", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_outputwaitmethod_description", + "community": 517, + "community_name": "Schemas #517", + "norm_label": "description" + }, + { + "label": "outputWaitDelay", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L366", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_outputwaitdelay", + "community": 45, + "community_name": "Schemas", + "norm_label": "outputwaitdelay" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L367", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_outputwaitdelay_type", + "community": 516, + "community_name": "Schemas #516", + "norm_label": "type" + }, + { + "label": "string", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L367", + "_origin": "ast", + "id": "ref_string", + "community": 516, + "community_name": "Schemas #516", + "norm_label": "string" + }, + { + "label": "integer", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L367", + "_origin": "ast", + "id": "ref_integer", + "community": 516, + "community_name": "Schemas #516", + "norm_label": "integer" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L368", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_outputwaitdelay_description", + "community": 45, + "community_name": "Schemas", + "norm_label": "description" + }, + { + "label": "captureUrl", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L370", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_captureurl", + "community": 45, + "community_name": "Schemas", + "norm_label": "captureurl" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L371", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_captureurl_type", + "community": 45, + "community_name": "Schemas", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L372", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_captureurl_description", + "community": 45, + "community_name": "Schemas", + "norm_label": "description" + }, + { + "label": "default", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L373", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_captureurl_default", + "community": 45, + "community_name": "Schemas", + "norm_label": "default" + }, + { + "label": "capturePageTitle", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L375", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_capturepagetitle", + "community": 45, + "community_name": "Schemas", + "norm_label": "capturepagetitle" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L376", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_capturepagetitle_type", + "community": 45, + "community_name": "Schemas", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L377", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_capturepagetitle_description", + "community": 45, + "community_name": "Schemas", + "norm_label": "description" + }, + { + "label": "default", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L378", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_capturepagetitle_default", + "community": 45, + "community_name": "Schemas", + "norm_label": "default" + }, + { + "label": "metaSelectors", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L380", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_metaselectors", + "community": 144, + "community_name": "Schemas #144", + "norm_label": "metaselectors" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L381", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_metaselectors_type", + "community": 144, + "community_name": "Schemas #144", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L382", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_metaselectors_description", + "community": 144, + "community_name": "Schemas #144", + "norm_label": "description" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L383", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_metaselectors_items", + "community": 144, + "community_name": "Schemas #144", + "norm_label": "items" + }, + { + "label": "sanitizeTrim", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L385", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_sanitizetrim", + "community": 45, + "community_name": "Schemas", + "norm_label": "sanitizetrim" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L386", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_sanitizetrim_type", + "community": 45, + "community_name": "Schemas", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L387", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_sanitizetrim_description", + "community": 45, + "community_name": "Schemas", + "norm_label": "description" + }, + { + "label": "default", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L388", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_sanitizetrim_default", + "community": 45, + "community_name": "Schemas", + "norm_label": "default" + }, + { + "label": "sanitizeStripMarkdown", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L390", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_sanitizestripmarkdown", + "community": 475, + "community_name": "Schemas #475", + "norm_label": "sanitizestripmarkdown" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L391", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_sanitizestripmarkdown_type", + "community": 475, + "community_name": "Schemas #475", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L392", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_sanitizestripmarkdown_description", + "community": 475, + "community_name": "Schemas #475", + "norm_label": "description" + }, + { + "label": "default", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L393", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_sanitizestripmarkdown_default", + "community": 475, + "community_name": "Schemas #475", + "norm_label": "default" + }, + { + "label": "sanitizeRemoveBoilerplate", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L395", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_sanitizeremoveboilerplate", + "community": 474, + "community_name": "Schemas #474", + "norm_label": "sanitizeremoveboilerplate" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L396", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_sanitizeremoveboilerplate_type", + "community": 474, + "community_name": "Schemas #474", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L397", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_sanitizeremoveboilerplate_description", + "community": 474, + "community_name": "Schemas #474", + "norm_label": "description" + }, + { + "label": "default", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L398", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_sanitizeremoveboilerplate_default", + "community": 474, + "community_name": "Schemas #474", + "norm_label": "default" + }, + { + "label": "domParserRules", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L400", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_domparserrules", + "community": 512, + "community_name": "Schemas #512", + "norm_label": "domparserrules" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L401", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_domparserrules_type", + "community": 512, + "community_name": "Schemas #512", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L402", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_domparserrules_description", + "community": 512, + "community_name": "Schemas #512", + "norm_label": "description" + }, + { + "label": "overlayTriggerName", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L405", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_overlaytriggername", + "community": 45, + "community_name": "Schemas", + "norm_label": "overlaytriggername" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L406", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_overlaytriggername_type", + "community": 45, + "community_name": "Schemas", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L407", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_overlaytriggername_description", + "community": 45, + "community_name": "Schemas", + "norm_label": "description" + }, + { + "label": "overlayModeButton", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L409", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_overlaymodebutton", + "community": 45, + "community_name": "Schemas", + "norm_label": "overlaymodebutton" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L410", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_overlaymodebutton_type", + "community": 45, + "community_name": "Schemas", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L411", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_overlaymodebutton_description", + "community": 45, + "community_name": "Schemas", + "norm_label": "description" + }, + { + "label": "overlayButtonLabel", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L413", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_overlaybuttonlabel", + "community": 518, + "community_name": "Schemas #518", + "norm_label": "overlaybuttonlabel" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L414", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_overlaybuttonlabel_type", + "community": 518, + "community_name": "Schemas #518", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L415", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_overlaybuttonlabel_description", + "community": 518, + "community_name": "Schemas #518", + "norm_label": "description" + }, + { + "label": "overlayModeEmpty", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L417", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_overlaymodeempty", + "community": 519, + "community_name": "Schemas #519", + "norm_label": "overlaymodeempty" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L418", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_overlaymodeempty_type", + "community": 519, + "community_name": "Schemas #519", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L419", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_overlaymodeempty_description", + "community": 519, + "community_name": "Schemas #519", + "norm_label": "description" + }, + { + "label": "overlayModeElement", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L421", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_overlaymodeelement", + "community": 472, + "community_name": "Schemas #472", + "norm_label": "overlaymodeelement" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L422", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_overlaymodeelement_type", + "community": 472, + "community_name": "Schemas #472", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L423", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_overlaymodeelement_description", + "community": 472, + "community_name": "Schemas #472", + "norm_label": "description" + }, + { + "label": "default", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L424", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_overlaymodeelement_default", + "community": 472, + "community_name": "Schemas #472", + "norm_label": "default" + }, + { + "label": "overlayModeSelection", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L426", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_overlaymodeselection", + "community": 520, + "community_name": "Schemas #520", + "norm_label": "overlaymodeselection" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L427", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_overlaymodeselection_type", + "community": 520, + "community_name": "Schemas #520", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L428", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_overlaymodeselection_description", + "community": 520, + "community_name": "Schemas #520", + "norm_label": "description" + }, + { + "label": "overlayPhrases", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L430", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_overlayphrases", + "community": 523, + "community_name": "Schemas #523", + "norm_label": "overlayphrases" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L431", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_overlayphrases_type", + "community": 523, + "community_name": "Schemas #523", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L432", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_overlayphrases_description", + "community": 523, + "community_name": "Schemas #523", + "norm_label": "description" + }, + { + "label": "overlayUrlPattern", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L434", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_overlayurlpattern", + "community": 524, + "community_name": "Schemas #524", + "norm_label": "overlayurlpattern" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L435", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_overlayurlpattern_type", + "community": 524, + "community_name": "Schemas #524", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L436", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_overlayurlpattern_description", + "community": 524, + "community_name": "Schemas #524", + "norm_label": "description" + }, + { + "label": "overlayWrcodeOnly", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L438", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_overlaywrcodeonly", + "community": 45, + "community_name": "Schemas", + "norm_label": "overlaywrcodeonly" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L439", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_overlaywrcodeonly_type", + "community": 45, + "community_name": "Schemas", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L440", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_overlaywrcodeonly_description", + "community": 45, + "community_name": "Schemas", + "norm_label": "description" + }, + { + "label": "overlayPayloadSelection", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L442", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_overlaypayloadselection", + "community": 522, + "community_name": "Schemas #522", + "norm_label": "overlaypayloadselection" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L443", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_overlaypayloadselection_type", + "community": 522, + "community_name": "Schemas #522", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L444", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_overlaypayloadselection_description", + "community": 522, + "community_name": "Schemas #522", + "norm_label": "description" + }, + { + "label": "overlayPayloadContext", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L446", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_overlaypayloadcontext", + "community": 45, + "community_name": "Schemas", + "norm_label": "overlaypayloadcontext" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L447", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_overlaypayloadcontext_type", + "community": 45, + "community_name": "Schemas", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L448", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_overlaypayloadcontext_description", + "community": 45, + "community_name": "Schemas", + "norm_label": "description" + }, + { + "label": "overlayPayloadUrl", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L450", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_overlaypayloadurl", + "community": 45, + "community_name": "Schemas", + "norm_label": "overlaypayloadurl" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L451", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_overlaypayloadurl_type", + "community": 45, + "community_name": "Schemas", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L452", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_overlaypayloadurl_description", + "community": 45, + "community_name": "Schemas", + "norm_label": "description" + }, + { + "label": "overlayPayloadCoords", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L454", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_overlaypayloadcoords", + "community": 521, + "community_name": "Schemas #521", + "norm_label": "overlaypayloadcoords" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L455", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_overlaypayloadcoords_type", + "community": 521, + "community_name": "Schemas #521", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L456", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_overlaypayloadcoords_description", + "community": 521, + "community_name": "Schemas #521", + "norm_label": "description" + }, + { + "label": "sourceAgent", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L459", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_sourceagent", + "community": 45, + "community_name": "Schemas", + "norm_label": "sourceagent" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L460", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_sourceagent_type", + "community": 45, + "community_name": "Schemas", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L461", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_sourceagent_description", + "community": 45, + "community_name": "Schemas", + "norm_label": "description" + }, + { + "label": "miniAppId", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L464", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_miniappid", + "community": 45, + "community_name": "Schemas", + "norm_label": "miniappid" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L465", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_miniappid_type", + "community": 45, + "community_name": "Schemas", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L466", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_miniappid_description", + "community": 45, + "community_name": "Schemas", + "norm_label": "description" + }, + { + "label": "miniAppUiElements", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L468", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_miniappuielements", + "community": 145, + "community_name": "Schemas #145", + "norm_label": "miniappuielements" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L469", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_miniappuielements_type", + "community": 145, + "community_name": "Schemas #145", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L470", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_miniappuielements_description", + "community": 145, + "community_name": "Schemas #145", + "norm_label": "description" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L471", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_miniappuielements_items", + "community": 145, + "community_name": "Schemas #145", + "norm_label": "items" + }, + { + "label": "properties", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L473", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_items_properties", + "community": 145, + "community_name": "Schemas #145", + "norm_label": "properties" + }, + { + "label": "label", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L476", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_label", + "community": 145, + "community_name": "Schemas #145", + "norm_label": "label" + }, + { + "label": "miniAppConditions", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L480", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_miniappconditions", + "community": 145, + "community_name": "Schemas #145", + "norm_label": "miniappconditions" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L481", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_miniappconditions_type", + "community": 145, + "community_name": "Schemas #145", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L482", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_miniappconditions_description", + "community": 145, + "community_name": "Schemas #145", + "norm_label": "description" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L483", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_miniappconditions_items", + "community": 145, + "community_name": "Schemas #145", + "norm_label": "items" + }, + { + "label": "field", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L486", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_field", + "community": 145, + "community_name": "Schemas #145", + "norm_label": "field" + }, + { + "label": "op", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L487", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_op", + "community": 145, + "community_name": "Schemas #145", + "norm_label": "op" + }, + { + "label": "value", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L488", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_value", + "community": 145, + "community_name": "Schemas #145", + "norm_label": "value" + }, + { + "label": "command", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L493", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_command", + "community": 511, + "community_name": "Schemas #511", + "norm_label": "command" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L494", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_command_type", + "community": 511, + "community_name": "Schemas #511", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L495", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_command_description", + "community": 511, + "community_name": "Schemas #511", + "norm_label": "description" + }, + { + "label": "emails", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L497", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_emails", + "community": 45, + "community_name": "Schemas", + "norm_label": "emails" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L498", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_emails_type", + "community": 45, + "community_name": "Schemas", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L499", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_emails_description", + "community": 45, + "community_name": "Schemas", + "norm_label": "description" + }, + { + "label": "keywords", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L501", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_keywords", + "community": 144, + "community_name": "Schemas #144", + "norm_label": "keywords" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L502", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_keywords_type", + "community": 144, + "community_name": "Schemas #144", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L503", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_keywords_description", + "community": 144, + "community_name": "Schemas #144", + "norm_label": "description" + }, + { + "label": "websiteFilter", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L505", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_websitefilter", + "community": 45, + "community_name": "Schemas", + "norm_label": "websitefilter" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L506", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_websitefilter_type", + "community": 45, + "community_name": "Schemas", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L507", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_websitefilter_description", + "community": 45, + "community_name": "Schemas", + "norm_label": "description" + }, + { + "label": "wrcodeMatch", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L509", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_wrcodematch", + "community": 45, + "community_name": "Schemas", + "norm_label": "wrcodematch" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L510", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_wrcodematch_type", + "community": 45, + "community_name": "Schemas", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L511", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_wrcodematch_description", + "community": 45, + "community_name": "Schemas", + "norm_label": "description" + }, + { + "label": "sensorWorkflows", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L514", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_sensorworkflows", + "community": 45, + "community_name": "Schemas", + "norm_label": "sensorworkflows" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L515", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_sensorworkflows_type", + "community": 45, + "community_name": "Schemas", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L516", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_sensorworkflows_description", + "community": 45, + "community_name": "Schemas", + "norm_label": "description" + }, + { + "label": "allowedActions", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L518", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_allowedactions", + "community": 45, + "community_name": "Schemas", + "norm_label": "allowedactions" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L519", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_allowedactions_type", + "community": 45, + "community_name": "Schemas", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L520", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_allowedactions_description", + "community": 45, + "community_name": "Schemas", + "norm_label": "description" + }, + { + "label": "eventTagCondition", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L524", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_defs_eventtagcondition", + "community": 206, + "community_name": "Schemas #206", + "norm_label": "eventtagcondition" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L525", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_eventtagcondition_type", + "community": 206, + "community_name": "Schemas #206", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L526", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_eventtagcondition_description", + "community": 206, + "community_name": "Schemas #206", + "norm_label": "description" + }, + { + "label": "properties", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L527", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_eventtagcondition_properties", + "community": 144, + "community_name": "Schemas #144", + "norm_label": "properties" + }, + { + "label": "wrcode_valid", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L530", + "_origin": "ast", + "id": "ref_wrcode_valid", + "community": 217, + "community_name": "Schemas #217", + "norm_label": "wrcode_valid" + }, + { + "label": "sender_whitelist", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L530", + "_origin": "ast", + "id": "ref_sender_whitelist", + "community": 217, + "community_name": "Schemas #217", + "norm_label": "sender_whitelist" + }, + { + "label": "body_keywords", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L530", + "_origin": "ast", + "id": "ref_body_keywords", + "community": 217, + "community_name": "Schemas #217", + "norm_label": "body_keywords" + }, + { + "label": "website_filter", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L530", + "_origin": "ast", + "id": "ref_website_filter", + "community": 217, + "community_name": "Schemas #217", + "norm_label": "website_filter" + }, + { + "label": "required", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L533", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_required", + "community": 144, + "community_name": "Schemas #144", + "norm_label": "required" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L533", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_required_type", + "community": 144, + "community_name": "Schemas #144", + "norm_label": "type" + }, + { + "label": "allowedSenders", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L534", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_allowedsenders", + "community": 144, + "community_name": "Schemas #144", + "norm_label": "allowedsenders" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L534", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_allowedsenders_type", + "community": 144, + "community_name": "Schemas #144", + "norm_label": "type" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L534", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_allowedsenders_items", + "community": 144, + "community_name": "Schemas #144", + "norm_label": "items" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L535", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_keywords_items", + "community": 144, + "community_name": "Schemas #144", + "norm_label": "items" + }, + { + "label": "caseInsensitive", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L536", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_caseinsensitive", + "community": 144, + "community_name": "Schemas #144", + "norm_label": "caseinsensitive" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L536", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_caseinsensitive_type", + "community": 144, + "community_name": "Schemas #144", + "norm_label": "type" + }, + { + "label": "patterns", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L537", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_patterns", + "community": 144, + "community_name": "Schemas #144", + "norm_label": "patterns" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L537", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_patterns_type", + "community": 144, + "community_name": "Schemas #144", + "norm_label": "type" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L537", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_patterns_items", + "community": 144, + "community_name": "Schemas #144", + "norm_label": "items" + }, + { + "label": "triggerCondition", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L540", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_defs_triggercondition", + "community": 206, + "community_name": "Schemas #206", + "norm_label": "triggercondition" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L541", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_triggercondition_type", + "community": 206, + "community_name": "Schemas #206", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L542", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_triggercondition_description", + "community": 206, + "community_name": "Schemas #206", + "norm_label": "description" + }, + { + "label": "properties", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L543", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_triggercondition_properties", + "community": 145, + "community_name": "Schemas #145", + "norm_label": "properties" + }, + { + "label": "conditionType", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L544", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_conditiontype", + "community": 145, + "community_name": "Schemas #145", + "norm_label": "conditiontype" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L545", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_conditiontype_type", + "community": 145, + "community_name": "Schemas #145", + "norm_label": "type" + }, + { + "label": "enum", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L546", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_conditiontype_enum", + "community": 145, + "community_name": "Schemas #145", + "norm_label": "enum" + }, + { + "label": "boolean", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L546", + "_origin": "ast", + "id": "ref_boolean", + "community": 145, + "community_name": "Schemas #145", + "norm_label": "boolean" + }, + { + "label": "tag", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L546", + "_origin": "ast", + "id": "ref_tag", + "community": 145, + "community_name": "Schemas #145", + "norm_label": "tag" + }, + { + "label": "signal", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L546", + "_origin": "ast", + "id": "ref_signal", + "community": 145, + "community_name": "Schemas #145", + "norm_label": "signal" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L548", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_field_type", + "community": 145, + "community_name": "Schemas #145", + "norm_label": "type" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L549", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_op_type", + "community": 145, + "community_name": "Schemas #145", + "norm_label": "type" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L550", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_value_type", + "community": 145, + "community_name": "Schemas #145", + "norm_label": "type" + }, + { + "label": "signal", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L552", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_signal", + "community": 145, + "community_name": "Schemas #145", + "norm_label": "signal" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L552", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_signal_type", + "community": 145, + "community_name": "Schemas #145", + "norm_label": "type" + }, + { + "label": "reasoningSection", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L555", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_defs_reasoningsection", + "community": 222, + "community_name": "Schemas #222", + "norm_label": "reasoningsection" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L556", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_reasoningsection_type", + "community": 222, + "community_name": "Schemas #222", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L557", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_reasoningsection_description", + "community": 222, + "community_name": "Schemas #222", + "norm_label": "description" + }, + { + "label": "required", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L558", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_reasoningsection_required", + "community": 222, + "community_name": "Schemas #222", + "norm_label": "required" + }, + { + "label": "applyForList", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L558", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_json_ref_applyforlist", + "community": 222, + "community_name": "Schemas #222", + "norm_label": "applyforlist" + }, + { + "label": "properties", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L559", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_reasoningsection_properties", + "community": 222, + "community_name": "Schemas #222", + "norm_label": "properties" + }, + { + "label": "applyForList", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L560", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_applyforlist", + "community": 222, + "community_name": "Schemas #222", + "norm_label": "applyforlist" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L561", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_applyforlist_type", + "community": 222, + "community_name": "Schemas #222", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L562", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_applyforlist_description", + "community": 222, + "community_name": "Schemas #222", + "norm_label": "description" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L563", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_applyforlist_items", + "community": 222, + "community_name": "Schemas #222", + "norm_label": "items" + }, + { + "label": "minItems", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L564", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_applyforlist_minitems", + "community": 222, + "community_name": "Schemas #222", + "norm_label": "minitems" + }, + { + "label": "goals", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L566", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_goals", + "community": 222, + "community_name": "Schemas #222", + "norm_label": "goals" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L567", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_goals_type", + "community": 222, + "community_name": "Schemas #222", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L568", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_goals_description", + "community": 222, + "community_name": "Schemas #222", + "norm_label": "description" + }, + { + "label": "role", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L570", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_role", + "community": 222, + "community_name": "Schemas #222", + "norm_label": "role" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L571", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_role_type", + "community": 222, + "community_name": "Schemas #222", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L572", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_role_description", + "community": 222, + "community_name": "Schemas #222", + "norm_label": "description" + }, + { + "label": "rules", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L574", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_rules", + "community": 222, + "community_name": "Schemas #222", + "norm_label": "rules" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L575", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_rules_type", + "community": 222, + "community_name": "Schemas #222", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L576", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_rules_description", + "community": 222, + "community_name": "Schemas #222", + "norm_label": "description" + }, + { + "label": "custom", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L578", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_custom", + "community": 145, + "community_name": "Schemas #145", + "norm_label": "custom" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L579", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_custom_type", + "community": 145, + "community_name": "Schemas #145", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L580", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_custom_description", + "community": 145, + "community_name": "Schemas #145", + "norm_label": "description" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L581", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_custom_items", + "community": 145, + "community_name": "Schemas #145", + "norm_label": "items" + }, + { + "label": "key", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L584", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_key", + "community": 145, + "community_name": "Schemas #145", + "norm_label": "key" + }, + { + "label": "acceptFrom", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L589", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_acceptfrom", + "community": 222, + "community_name": "Schemas #222", + "norm_label": "acceptfrom" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L590", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_acceptfrom_type", + "community": 222, + "community_name": "Schemas #222", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L591", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_acceptfrom_description", + "community": 222, + "community_name": "Schemas #222", + "norm_label": "description" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L592", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_acceptfrom_items", + "community": 222, + "community_name": "Schemas #222", + "norm_label": "items" + }, + { + "label": "memoryContext", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L594", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_properties_memorycontext", + "community": 216, + "community_name": "Schemas #216", + "norm_label": "memorycontext" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L595", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_memorycontext_type", + "community": 216, + "community_name": "Schemas #216", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L596", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_memorycontext_description", + "community": 216, + "community_name": "Schemas #216", + "norm_label": "description" + }, + { + "label": "required", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L597", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_memorycontext_required", + "community": 216, + "community_name": "Schemas #216", + "norm_label": "required" + }, + { + "label": "properties", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L598", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_schema_memorycontext_properties", + "community": 216, + "community_name": "Schemas #216", + "norm_label": "properties" + }, + { + "label": "agent.template.json", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template", + "community": 301, + "community_name": "Schemas #301", + "norm_label": "agent.template.json" + }, + { + "label": "$schema", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L2", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_schema", + "community": 301, + "community_name": "Schemas #301", + "norm_label": "$schema" + }, + { + "label": "_schemaVersion", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L3", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_schemaversion", + "community": 301, + "community_name": "Schemas #301", + "norm_label": "_schemaversion" + }, + { + "label": "_exportedAt", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L4", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_exportedat", + "community": 301, + "community_name": "Schemas #301", + "norm_label": "_exportedat" + }, + { + "label": "_source", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L5", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_source", + "community": 301, + "community_name": "Schemas #301", + "norm_label": "_source" + }, + { + "label": "_helper", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L6", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_helper", + "community": 301, + "community_name": "Schemas #301", + "norm_label": "_helper" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L8", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_id", + "community": 301, + "community_name": "Schemas #301", + "norm_label": "id" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L9", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_name", + "community": 301, + "community_name": "Schemas #301", + "norm_label": "name" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L10", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_description", + "community": 301, + "community_name": "Schemas #301", + "norm_label": "description" + }, + { + "label": "icon", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L11", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_icon", + "community": 301, + "community_name": "Schemas #301", + "norm_label": "icon" + }, + { + "label": "number", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L12", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_number", + "community": 301, + "community_name": "Schemas #301", + "norm_label": "number" + }, + { + "label": "enabled", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L13", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_enabled", + "community": 301, + "community_name": "Schemas #301", + "norm_label": "enabled" + }, + { + "label": "capabilities", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L14", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_capabilities", + "community": 477, + "community_name": "Schemas #477", + "norm_label": "capabilities" + }, + { + "label": "listening", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L14", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_json_ref_listening", + "community": 477, + "community_name": "Schemas #477", + "norm_label": "listening" + }, + { + "label": "reasoning", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L14", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_json_ref_reasoning", + "community": 477, + "community_name": "Schemas #477", + "norm_label": "reasoning" + }, + { + "label": "execution", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L14", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_json_ref_execution", + "community": 477, + "community_name": "Schemas #477", + "norm_label": "execution" + }, + { + "label": "contextSettings", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L16", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_contextsettings", + "community": 478, + "community_name": "Schemas #478", + "norm_label": "contextsettings" + }, + { + "label": "agentContext", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L17", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_contextsettings_agentcontext", + "community": 478, + "community_name": "Schemas #478", + "norm_label": "agentcontext" + }, + { + "label": "sessionContext", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L18", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_contextsettings_sessioncontext", + "community": 478, + "community_name": "Schemas #478", + "norm_label": "sessioncontext" + }, + { + "label": "accountContext", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L19", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_contextsettings_accountcontext", + "community": 478, + "community_name": "Schemas #478", + "norm_label": "accountcontext" + }, + { + "label": "memorySettings", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L22", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_memorysettings", + "community": 479, + "community_name": "Schemas #479", + "norm_label": "memorysettings" + }, + { + "label": "agentEnabled", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L23", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_memorysettings_agentenabled", + "community": 479, + "community_name": "Schemas #479", + "norm_label": "agentenabled" + }, + { + "label": "sessionEnabled", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L24", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_memorysettings_sessionenabled", + "community": 479, + "community_name": "Schemas #479", + "norm_label": "sessionenabled" + }, + { + "label": "accountEnabled", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L25", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_memorysettings_accountenabled", + "community": 479, + "community_name": "Schemas #479", + "norm_label": "accountenabled" + }, + { + "label": "listening", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L28", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_listening", + "community": 390, + "community_name": "Schemas #390", + "norm_label": "listening" + }, + { + "label": "expectedContext", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L29", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_listening_expectedcontext", + "community": 390, + "community_name": "Schemas #390", + "norm_label": "expectedcontext" + }, + { + "label": "tags", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L30", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_listening_tags", + "community": 390, + "community_name": "Schemas #390", + "norm_label": "tags" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L31", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_listening_sources", + "community": 390, + "community_name": "Schemas #390", + "norm_label": "sources" + }, + { + "label": "dom", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L31", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_json_ref_dom", + "community": 390, + "community_name": "Schemas #390", + "norm_label": "dom" + }, + { + "label": "website", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L32", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_listening_website", + "community": 390, + "community_name": "Schemas #390", + "norm_label": "website" + }, + { + "label": "unifiedTriggers", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L33", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_listening_unifiedtriggers", + "community": 390, + "community_name": "Schemas #390", + "norm_label": "unifiedtriggers" + }, + { + "label": "exampleFiles", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L118", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_listening_examplefiles", + "community": 390, + "community_name": "Schemas #390", + "norm_label": "examplefiles" + }, + { + "label": "reasoningSections", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L121", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_reasoningsections", + "community": 301, + "community_name": "Schemas #301", + "norm_label": "reasoningsections" + }, + { + "label": "executionSections", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L138", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_executionsections", + "community": 301, + "community_name": "Schemas #301", + "norm_label": "executionsections" + }, + { + "label": "agentContextFiles", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L152", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_agentcontextfiles", + "community": 301, + "community_name": "Schemas #301", + "norm_label": "agentcontextfiles" + }, + { + "label": "_schemaInfo", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L154", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_schemainfo", + "community": 349, + "community_name": "Schemas #349", + "norm_label": "_schemainfo" + }, + { + "label": "enums", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L155", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_schemainfo_enums", + "community": 349, + "community_name": "Schemas #349", + "norm_label": "enums" + }, + { + "label": "trigger.type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L156", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_enums_trigger_type", + "community": 378, + "community_name": "Schemas #378", + "norm_label": "trigger.type" + }, + { + "label": "direct_tag", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L156", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_json_ref_direct_tag", + "community": 378, + "community_name": "Schemas #378", + "norm_label": "direct_tag" + }, + { + "label": "tag_and_condition", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L156", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_json_ref_tag_and_condition", + "community": 378, + "community_name": "Schemas #378", + "norm_label": "tag_and_condition" + }, + { + "label": "workflow_condition", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L156", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_json_ref_workflow_condition", + "community": 378, + "community_name": "Schemas #378", + "norm_label": "workflow_condition" + }, + { + "label": "dom_event", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L156", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_json_ref_dom_event", + "community": 378, + "community_name": "Schemas #378", + "norm_label": "dom_event" + }, + { + "label": "dom_parser", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L156", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_json_ref_dom_parser", + "community": 378, + "community_name": "Schemas #378", + "norm_label": "dom_parser" + }, + { + "label": "augmented_overlay", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L156", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_json_ref_augmented_overlay", + "community": 378, + "community_name": "Schemas #378", + "norm_label": "augmented_overlay" + }, + { + "label": "agent", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L156", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_json_ref_agent", + "community": 378, + "community_name": "Schemas #378", + "norm_label": "agent" + }, + { + "label": "miniapp", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L156", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_json_ref_miniapp", + "community": 378, + "community_name": "Schemas #378", + "norm_label": "miniapp" + }, + { + "label": "manual", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L156", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_json_ref_manual", + "community": 428, + "community_name": "Schemas #428", + "norm_label": "manual" + }, + { + "label": "trigger.parserTrigger", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L157", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_enums_trigger_parsertrigger", + "community": 428, + "community_name": "Schemas #428", + "norm_label": "trigger.parsertrigger" + }, + { + "label": "page_load", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L157", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_json_ref_page_load", + "community": 428, + "community_name": "Schemas #428", + "norm_label": "page_load" + }, + { + "label": "dom_change", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L157", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_json_ref_dom_change", + "community": 428, + "community_name": "Schemas #428", + "norm_label": "dom_change" + }, + { + "label": "interval", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L157", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_json_ref_interval", + "community": 428, + "community_name": "Schemas #428", + "norm_label": "interval" + }, + { + "label": "button_click", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L157", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_json_ref_button_click", + "community": 428, + "community_name": "Schemas #428", + "norm_label": "button_click" + }, + { + "label": "trigger.responseReadyMode", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L158", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_enums_trigger_responsereadymode", + "community": 349, + "community_name": "Schemas #349", + "norm_label": "trigger.responsereadymode" + }, + { + "label": "first_change", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L158", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_json_ref_first_change", + "community": 349, + "community_name": "Schemas #349", + "norm_label": "first_change" + }, + { + "label": "quiet_period", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L158", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_json_ref_quiet_period", + "community": 349, + "community_name": "Schemas #349", + "norm_label": "quiet_period" + }, + { + "label": "selector_signal", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L158", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_json_ref_selector_signal", + "community": 349, + "community_name": "Schemas #349", + "norm_label": "selector_signal" + }, + { + "label": "listening.sources", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L159", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_enums_listening_sources", + "community": 334, + "community_name": "Schemas #334", + "norm_label": "listening.sources" + }, + { + "label": "all", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L159", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_json_ref_all", + "community": 334, + "community_name": "Schemas #334", + "norm_label": "all" + }, + { + "label": "chat", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L159", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_json_ref_chat", + "community": 407, + "community_name": "Schemas #407", + "norm_label": "chat" + }, + { + "label": "voice", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L159", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_json_ref_voice", + "community": 334, + "community_name": "Schemas #334", + "norm_label": "voice" + }, + { + "label": "voicememo", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L159", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_json_ref_voicememo", + "community": 334, + "community_name": "Schemas #334", + "norm_label": "voicememo" + }, + { + "label": "video", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L159", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_json_ref_video", + "community": 334, + "community_name": "Schemas #334", + "norm_label": "video" + }, + { + "label": "email", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L159", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_json_ref_email", + "community": 407, + "community_name": "Schemas #407", + "norm_label": "email" + }, + { + "label": "whatsapp", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L159", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_json_ref_whatsapp", + "community": 334, + "community_name": "Schemas #334", + "norm_label": "whatsapp" + }, + { + "label": "pdf", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L159", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_json_ref_pdf", + "community": 334, + "community_name": "Schemas #334", + "norm_label": "pdf" + }, + { + "label": "docs", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L159", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_json_ref_docs", + "community": 334, + "community_name": "Schemas #334", + "norm_label": "docs" + }, + { + "label": "api", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L159", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_json_ref_api", + "community": 334, + "community_name": "Schemas #334", + "norm_label": "api" + }, + { + "label": "workflow", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L159", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_json_ref_workflow", + "community": 334, + "community_name": "Schemas #334", + "norm_label": "workflow" + }, + { + "label": "screenshot", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L159", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_json_ref_screenshot", + "community": 334, + "community_name": "Schemas #334", + "norm_label": "screenshot" + }, + { + "label": "stream", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L159", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_json_ref_stream", + "community": 334, + "community_name": "Schemas #334", + "norm_label": "stream" + }, + { + "label": "executionSection.executionMode", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L160", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_enums_executionsection_executionmode", + "community": 444, + "community_name": "Schemas #444", + "norm_label": "executionsection.executionmode" + }, + { + "label": "agent_workflow", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L160", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_json_ref_agent_workflow", + "community": 444, + "community_name": "Schemas #444", + "norm_label": "agent_workflow" + }, + { + "label": "direct_response", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L160", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_json_ref_direct_response", + "community": 444, + "community_name": "Schemas #444", + "norm_label": "direct_response" + }, + { + "label": "workflow_only", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L160", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_json_ref_workflow_only", + "community": 444, + "community_name": "Schemas #444", + "norm_label": "workflow_only" + }, + { + "label": "hybrid", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L160", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_json_ref_hybrid", + "community": 444, + "community_name": "Schemas #444", + "norm_label": "hybrid" + }, + { + "label": "destination.kind", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L161", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_enums_destination_kind", + "community": 407, + "community_name": "Schemas #407", + "norm_label": "destination.kind" + }, + { + "label": "agentBox", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L161", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_json_ref_agentbox", + "community": 407, + "community_name": "Schemas #407", + "norm_label": "agentbox" + }, + { + "label": "webhook", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L161", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_json_ref_webhook", + "community": 407, + "community_name": "Schemas #407", + "norm_label": "webhook" + }, + { + "label": "storage", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L161", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_json_ref_storage", + "community": 407, + "community_name": "Schemas #407", + "norm_label": "storage" + }, + { + "label": "notification", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L161", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_json_ref_notification", + "community": 407, + "community_name": "Schemas #407", + "norm_label": "notification" + }, + { + "label": "numericFields", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L163", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_schemainfo_numericfields", + "community": 349, + "community_name": "Schemas #349", + "norm_label": "numericfields" + }, + { + "label": "parserInterval", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L163", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_json_ref_parserinterval", + "community": 349, + "community_name": "Schemas #349", + "norm_label": "parserinterval" + }, + { + "label": "quietPeriodMs", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L163", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_json_ref_quietperiodms", + "community": 349, + "community_name": "Schemas #349", + "norm_label": "quietperiodms" + }, + { + "label": "maxWaitTimeMs", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L163", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_json_ref_maxwaittimems", + "community": 349, + "community_name": "Schemas #349", + "norm_label": "maxwaittimems" + }, + { + "label": "number", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L163", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_json_ref_number", + "community": 349, + "community_name": "Schemas #349", + "norm_label": "number" + }, + { + "label": "deprecatedFields", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L164", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agent_template_schemainfo_deprecatedfields", + "community": 408, + "community_name": "Schemas #408", + "norm_label": "deprecatedfields" + }, + { + "label": "tagName", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L164", + "_origin": "ast", + "id": "ref_tagname", + "community": 408, + "community_name": "Schemas #408", + "norm_label": "tagname" + }, + { + "label": "buttonSelector", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L164", + "_origin": "ast", + "id": "ref_buttonselector", + "community": 408, + "community_name": "Schemas #408", + "norm_label": "buttonselector" + }, + { + "label": "inputSelector", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L164", + "_origin": "ast", + "id": "ref_inputselector", + "community": 408, + "community_name": "Schemas #408", + "norm_label": "inputselector" + }, + { + "label": "outputSelector", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L164", + "_origin": "ast", + "id": "ref_outputselector", + "community": 408, + "community_name": "Schemas #408", + "norm_label": "outputselector" + }, + { + "label": "outputWaitMethod", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L164", + "_origin": "ast", + "id": "ref_outputwaitmethod", + "community": 408, + "community_name": "Schemas #408", + "norm_label": "outputwaitmethod" + }, + { + "label": "outputWaitDelay", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L164", + "_origin": "ast", + "id": "ref_outputwaitdelay", + "community": 408, + "community_name": "Schemas #408", + "norm_label": "outputwaitdelay" + }, + { + "label": "agentbox.schema.json", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema", + "community": 254, + "community_name": "Schemas #254", + "norm_label": "agentbox.schema.json" + }, + { + "label": "$schema", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L2", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_schema", + "community": 254, + "community_name": "Schemas #254", + "norm_label": "$schema" + }, + { + "label": "$id", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L3", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_id", + "community": 254, + "community_name": "Schemas #254", + "norm_label": "$id" + }, + { + "label": "title", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L4", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_title", + "community": 254, + "community_name": "Schemas #254", + "norm_label": "title" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L5", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_description", + "community": 254, + "community_name": "Schemas #254", + "norm_label": "description" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L6", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_type", + "community": 254, + "community_name": "Schemas #254", + "norm_label": "type" + }, + { + "label": "required", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L7", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_required", + "community": 254, + "community_name": "Schemas #254", + "norm_label": "required" + }, + { + "label": "_schemaVersion", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L7", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_json_ref_schemaversion", + "community": 254, + "community_name": "Schemas #254", + "norm_label": "_schemaversion" + }, + { + "label": "id", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L7", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_json_ref_id", + "community": 254, + "community_name": "Schemas #254", + "norm_label": "id" + }, + { + "label": "boxNumber", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L7", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_json_ref_boxnumber", + "community": 254, + "community_name": "Schemas #254", + "norm_label": "boxnumber" + }, + { + "label": "agentNumber", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L7", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_json_ref_agentnumber", + "community": 254, + "community_name": "Schemas #254", + "norm_label": "agentnumber" + }, + { + "label": "identifier", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L7", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_json_ref_identifier", + "community": 254, + "community_name": "Schemas #254", + "norm_label": "identifier" + }, + { + "label": "title", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L7", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_json_ref_title", + "community": 254, + "community_name": "Schemas #254", + "norm_label": "title" + }, + { + "label": "enabled", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L7", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_json_ref_enabled", + "community": 254, + "community_name": "Schemas #254", + "norm_label": "enabled" + }, + { + "label": "properties", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L8", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_properties", + "community": 160, + "community_name": "Schemas #160", + "norm_label": "properties" + }, + { + "label": "$schema", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L9", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_properties_schema", + "community": 528, + "community_name": "Schemas #528", + "norm_label": "$schema" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L10", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_schema_type", + "community": 528, + "community_name": "Schemas #528", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L11", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_schema_description", + "community": 528, + "community_name": "Schemas #528", + "norm_label": "description" + }, + { + "label": "_schemaVersion", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L13", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_properties_schemaversion", + "community": 160, + "community_name": "Schemas #160", + "norm_label": "_schemaversion" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L14", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_schemaversion_type", + "community": 160, + "community_name": "Schemas #160", + "norm_label": "type" + }, + { + "label": "const", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L15", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_schemaversion_const", + "community": 160, + "community_name": "Schemas #160", + "norm_label": "const" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L16", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_schemaversion_description", + "community": 160, + "community_name": "Schemas #160", + "norm_label": "description" + }, + { + "label": "_exportedAt", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L18", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_properties_exportedat", + "community": 482, + "community_name": "Schemas #482", + "norm_label": "_exportedat" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L19", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_exportedat_type", + "community": 482, + "community_name": "Schemas #482", + "norm_label": "type" + }, + { + "label": "format", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L20", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_exportedat_format", + "community": 482, + "community_name": "Schemas #482", + "norm_label": "format" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L21", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_exportedat_description", + "community": 482, + "community_name": "Schemas #482", + "norm_label": "description" + }, + { + "label": "_source", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L23", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_properties_source", + "community": 410, + "community_name": "Schemas #410", + "norm_label": "_source" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L24", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_source_type", + "community": 410, + "community_name": "Schemas #410", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L25", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_source_description", + "community": 410, + "community_name": "Schemas #410", + "norm_label": "description" + }, + { + "label": "_helper", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L27", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_properties_helper", + "community": 526, + "community_name": "Schemas #526", + "norm_label": "_helper" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L28", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_helper_type", + "community": 526, + "community_name": "Schemas #526", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L29", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_helper_description", + "community": 526, + "community_name": "Schemas #526", + "norm_label": "description" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L32", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_properties_id", + "community": 160, + "community_name": "Schemas #160", + "norm_label": "id" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L33", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_id_type", + "community": 160, + "community_name": "Schemas #160", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L34", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_id_description", + "community": 160, + "community_name": "Schemas #160", + "norm_label": "description" + }, + { + "label": "boxNumber", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L36", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_properties_boxnumber", + "community": 446, + "community_name": "Schemas #446", + "norm_label": "boxnumber" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L37", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_boxnumber_type", + "community": 446, + "community_name": "Schemas #446", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L38", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_boxnumber_description", + "community": 446, + "community_name": "Schemas #446", + "norm_label": "description" + }, + { + "label": "minimum", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L39", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_boxnumber_minimum", + "community": 446, + "community_name": "Schemas #446", + "norm_label": "minimum" + }, + { + "label": "maximum", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L40", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_boxnumber_maximum", + "community": 446, + "community_name": "Schemas #446", + "norm_label": "maximum" + }, + { + "label": "agentNumber", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L42", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_properties_agentnumber", + "community": 445, + "community_name": "Schemas #445", + "norm_label": "agentnumber" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L43", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_agentnumber_type", + "community": 445, + "community_name": "Schemas #445", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L44", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_agentnumber_description", + "community": 445, + "community_name": "Schemas #445", + "norm_label": "description" + }, + { + "label": "minimum", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L45", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_agentnumber_minimum", + "community": 445, + "community_name": "Schemas #445", + "norm_label": "minimum" + }, + { + "label": "maximum", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L46", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_agentnumber_maximum", + "community": 445, + "community_name": "Schemas #445", + "norm_label": "maximum" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L48", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_properties_identifier", + "community": 483, + "community_name": "Schemas #483", + "norm_label": "identifier" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L49", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_identifier_type", + "community": 483, + "community_name": "Schemas #483", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L50", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_identifier_description", + "community": 483, + "community_name": "Schemas #483", + "norm_label": "description" + }, + { + "label": "pattern", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L51", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_identifier_pattern", + "community": 483, + "community_name": "Schemas #483", + "norm_label": "pattern" + }, + { + "label": "agentId", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L53", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_properties_agentid", + "community": 160, + "community_name": "Schemas #160", + "norm_label": "agentid" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L54", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_agentid_type", + "community": 160, + "community_name": "Schemas #160", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L55", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_agentid_description", + "community": 160, + "community_name": "Schemas #160", + "norm_label": "description" + }, + { + "label": "title", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L57", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_properties_title", + "community": 529, + "community_name": "Schemas #529", + "norm_label": "title" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L58", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_title_type", + "community": 529, + "community_name": "Schemas #529", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L59", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_title_description", + "community": 529, + "community_name": "Schemas #529", + "norm_label": "description" + }, + { + "label": "color", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L61", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_properties_color", + "community": 480, + "community_name": "Schemas #480", + "norm_label": "color" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L62", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_color_type", + "community": 480, + "community_name": "Schemas #480", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L63", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_color_description", + "community": 480, + "community_name": "Schemas #480", + "norm_label": "description" + }, + { + "label": "pattern", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L64", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_color_pattern", + "community": 480, + "community_name": "Schemas #480", + "norm_label": "pattern" + }, + { + "label": "enabled", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L66", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_properties_enabled", + "community": 481, + "community_name": "Schemas #481", + "norm_label": "enabled" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L67", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_enabled_type", + "community": 481, + "community_name": "Schemas #481", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L68", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_enabled_description", + "community": 481, + "community_name": "Schemas #481", + "norm_label": "description" + }, + { + "label": "default", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L69", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_enabled_default", + "community": 481, + "community_name": "Schemas #481", + "norm_label": "default" + }, + { + "label": "provider", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L72", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_properties_provider", + "community": 350, + "community_name": "Schemas #350", + "norm_label": "provider" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L73", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_provider_type", + "community": 350, + "community_name": "Schemas #350", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L74", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_provider_description", + "community": 350, + "community_name": "Schemas #350", + "norm_label": "description" + }, + { + "label": "enum", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L75", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_provider_enum", + "community": 391, + "community_name": "Schemas #391", + "norm_label": "enum" + }, + { + "label": "OpenAI", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L75", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_json_ref_openai", + "community": 391, + "community_name": "Schemas #391", + "norm_label": "openai" + }, + { + "label": "Claude", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L75", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_json_ref_claude", + "community": 391, + "community_name": "Schemas #391", + "norm_label": "claude" + }, + { + "label": "Gemini", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L75", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_json_ref_gemini", + "community": 391, + "community_name": "Schemas #391", + "norm_label": "gemini" + }, + { + "label": "Grok", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L75", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_json_ref_grok", + "community": 391, + "community_name": "Schemas #391", + "norm_label": "grok" + }, + { + "label": "Local AI", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L75", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_json_ref_local_ai", + "community": 391, + "community_name": "Schemas #391", + "norm_label": "local ai" + }, + { + "label": "Image AI", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L75", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_json_ref_image_ai", + "community": 391, + "community_name": "Schemas #391", + "norm_label": "image ai" + }, + { + "label": "model", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L77", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_properties_model", + "community": 527, + "community_name": "Schemas #527", + "norm_label": "model" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L78", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_model_type", + "community": 527, + "community_name": "Schemas #527", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L79", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_model_description", + "community": 527, + "community_name": "Schemas #527", + "norm_label": "description" + }, + { + "label": "tools", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L81", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_properties_tools", + "community": 447, + "community_name": "Schemas #447", + "norm_label": "tools" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L82", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_tools_type", + "community": 447, + "community_name": "Schemas #447", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L83", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_tools_description", + "community": 447, + "community_name": "Schemas #447", + "norm_label": "description" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L84", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_tools_items", + "community": 447, + "community_name": "Schemas #447", + "norm_label": "items" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L84", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_items_type", + "community": 447, + "community_name": "Schemas #447", + "norm_label": "type" + }, + { + "label": "enum", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L90", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_source_enum", + "community": 410, + "community_name": "Schemas #410", + "norm_label": "enum" + }, + { + "label": "master_tab", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L90", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_json_ref_master_tab", + "community": 410, + "community_name": "Schemas #410", + "norm_label": "master_tab" + }, + { + "label": "display_grid", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L90", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_json_ref_display_grid", + "community": 410, + "community_name": "Schemas #410", + "norm_label": "display_grid" + }, + { + "label": "masterTabId", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L92", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_properties_mastertabid", + "community": 484, + "community_name": "Schemas #484", + "norm_label": "mastertabid" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L93", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_mastertabid_type", + "community": 484, + "community_name": "Schemas #484", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L94", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_mastertabid_description", + "community": 484, + "community_name": "Schemas #484", + "norm_label": "description" + }, + { + "label": "pattern", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L95", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_mastertabid_pattern", + "community": 484, + "community_name": "Schemas #484", + "norm_label": "pattern" + }, + { + "label": "tabIndex", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L97", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_properties_tabindex", + "community": 160, + "community_name": "Schemas #160", + "norm_label": "tabindex" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L98", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_tabindex_type", + "community": 160, + "community_name": "Schemas #160", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L99", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_tabindex_description", + "community": 160, + "community_name": "Schemas #160", + "norm_label": "description" + }, + { + "label": "minimum", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L100", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_tabindex_minimum", + "community": 160, + "community_name": "Schemas #160", + "norm_label": "minimum" + }, + { + "label": "side", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L102", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_properties_side", + "community": 409, + "community_name": "Schemas #409", + "norm_label": "side" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L103", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_side_type", + "community": 409, + "community_name": "Schemas #409", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L104", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_side_description", + "community": 409, + "community_name": "Schemas #409", + "norm_label": "description" + }, + { + "label": "enum", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L105", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_side_enum", + "community": 409, + "community_name": "Schemas #409", + "norm_label": "enum" + }, + { + "label": "left", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L105", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_json_ref_left", + "community": 409, + "community_name": "Schemas #409", + "norm_label": "left" + }, + { + "label": "right", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L105", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_json_ref_right", + "community": 409, + "community_name": "Schemas #409", + "norm_label": "right" + }, + { + "label": "tabUrl", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L107", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_properties_taburl", + "community": 160, + "community_name": "Schemas #160", + "norm_label": "taburl" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L108", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_taburl_type", + "community": 160, + "community_name": "Schemas #160", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L109", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_taburl_description", + "community": 160, + "community_name": "Schemas #160", + "norm_label": "description" + }, + { + "label": "slotId", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L112", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_properties_slotid", + "community": 160, + "community_name": "Schemas #160", + "norm_label": "slotid" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L113", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_slotid_type", + "community": 160, + "community_name": "Schemas #160", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L114", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_slotid_description", + "community": 160, + "community_name": "Schemas #160", + "norm_label": "description" + }, + { + "label": "gridSessionId", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L116", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_properties_gridsessionid", + "community": 160, + "community_name": "Schemas #160", + "norm_label": "gridsessionid" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L117", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_gridsessionid_type", + "community": 160, + "community_name": "Schemas #160", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L118", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_gridsessionid_description", + "community": 160, + "community_name": "Schemas #160", + "norm_label": "description" + }, + { + "label": "locationId", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L120", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_properties_locationid", + "community": 160, + "community_name": "Schemas #160", + "norm_label": "locationid" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L121", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_locationid_type", + "community": 160, + "community_name": "Schemas #160", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L122", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_locationid_description", + "community": 160, + "community_name": "Schemas #160", + "norm_label": "description" + }, + { + "label": "locationLabel", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L124", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_properties_locationlabel", + "community": 160, + "community_name": "Schemas #160", + "norm_label": "locationlabel" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L125", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_locationlabel_type", + "community": 160, + "community_name": "Schemas #160", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L126", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_locationlabel_description", + "community": 160, + "community_name": "Schemas #160", + "norm_label": "description" + }, + { + "label": "outputId", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L129", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_properties_outputid", + "community": 160, + "community_name": "Schemas #160", + "norm_label": "outputid" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L130", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_outputid_type", + "community": 160, + "community_name": "Schemas #160", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L131", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_outputid_description", + "community": 160, + "community_name": "Schemas #160", + "norm_label": "description" + }, + { + "label": "number", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L133", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_properties_number", + "community": 485, + "community_name": "Schemas #485", + "norm_label": "number" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L134", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_number_type", + "community": 485, + "community_name": "Schemas #485", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L135", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_number_description", + "community": 485, + "community_name": "Schemas #485", + "norm_label": "description" + }, + { + "label": "minimum", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L136", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_number_minimum", + "community": 485, + "community_name": "Schemas #485", + "norm_label": "minimum" + }, + { + "label": "$defs", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L139", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_defs", + "community": 350, + "community_name": "Schemas #350", + "norm_label": "$defs" + }, + { + "label": "llmProvider", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L140", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_defs_llmprovider", + "community": 350, + "community_name": "Schemas #350", + "norm_label": "llmprovider" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L141", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_llmprovider_type", + "community": 350, + "community_name": "Schemas #350", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L142", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_llmprovider_description", + "community": 350, + "community_name": "Schemas #350", + "norm_label": "description" + }, + { + "label": "properties", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L143", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_llmprovider_properties", + "community": 350, + "community_name": "Schemas #350", + "norm_label": "properties" + }, + { + "label": "models", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L149", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_properties_models", + "community": 350, + "community_name": "Schemas #350", + "norm_label": "models" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L150", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_models_type", + "community": 350, + "community_name": "Schemas #350", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L151", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_models_description", + "community": 350, + "community_name": "Schemas #350", + "norm_label": "description" + }, + { + "label": "properties", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L152", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_models_properties", + "community": 161, + "community_name": "Schemas #161", + "norm_label": "properties" + }, + { + "label": "OpenAI", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L153", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_properties_openai", + "community": 161, + "community_name": "Schemas #161", + "norm_label": "openai" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L154", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_openai_type", + "community": 161, + "community_name": "Schemas #161", + "norm_label": "type" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L155", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_openai_items", + "community": 161, + "community_name": "Schemas #161", + "norm_label": "items" + }, + { + "label": "default", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L156", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_openai_default", + "community": 161, + "community_name": "Schemas #161", + "norm_label": "default" + }, + { + "label": "auto", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L156", + "_origin": "ast", + "id": "ref_auto", + "community": 161, + "community_name": "Schemas #161", + "norm_label": "auto" + }, + { + "label": "gpt-4o-mini", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L156", + "_origin": "ast", + "id": "ref_gpt_4o_mini", + "community": 161, + "community_name": "Schemas #161", + "norm_label": "gpt-4o-mini" + }, + { + "label": "gpt-4o", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L156", + "_origin": "ast", + "id": "ref_gpt_4o", + "community": 161, + "community_name": "Schemas #161", + "norm_label": "gpt-4o" + }, + { + "label": "Claude", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L158", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_properties_claude", + "community": 161, + "community_name": "Schemas #161", + "norm_label": "claude" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L159", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_claude_type", + "community": 161, + "community_name": "Schemas #161", + "norm_label": "type" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L160", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_claude_items", + "community": 161, + "community_name": "Schemas #161", + "norm_label": "items" + }, + { + "label": "default", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L161", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_claude_default", + "community": 161, + "community_name": "Schemas #161", + "norm_label": "default" + }, + { + "label": "claude-3-5-sonnet", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L161", + "_origin": "ast", + "id": "ref_claude_3_5_sonnet", + "community": 161, + "community_name": "Schemas #161", + "norm_label": "claude-3-5-sonnet" + }, + { + "label": "claude-3-opus", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L161", + "_origin": "ast", + "id": "ref_claude_3_opus", + "community": 161, + "community_name": "Schemas #161", + "norm_label": "claude-3-opus" + }, + { + "label": "Gemini", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L163", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_properties_gemini", + "community": 161, + "community_name": "Schemas #161", + "norm_label": "gemini" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L164", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_gemini_type", + "community": 161, + "community_name": "Schemas #161", + "norm_label": "type" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L165", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_gemini_items", + "community": 161, + "community_name": "Schemas #161", + "norm_label": "items" + }, + { + "label": "default", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L166", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_gemini_default", + "community": 161, + "community_name": "Schemas #161", + "norm_label": "default" + }, + { + "label": "gemini-1.5-flash", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L166", + "_origin": "ast", + "id": "ref_gemini_1_5_flash", + "community": 161, + "community_name": "Schemas #161", + "norm_label": "gemini-1.5-flash" + }, + { + "label": "gemini-1.5-pro", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L166", + "_origin": "ast", + "id": "ref_gemini_1_5_pro", + "community": 161, + "community_name": "Schemas #161", + "norm_label": "gemini-1.5-pro" + }, + { + "label": "Grok", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L168", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_properties_grok", + "community": 161, + "community_name": "Schemas #161", + "norm_label": "grok" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L169", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_grok_type", + "community": 161, + "community_name": "Schemas #161", + "norm_label": "type" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L170", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_grok_items", + "community": 161, + "community_name": "Schemas #161", + "norm_label": "items" + }, + { + "label": "default", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L171", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_grok_default", + "community": 161, + "community_name": "Schemas #161", + "norm_label": "default" + }, + { + "label": "grok-2-mini", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L171", + "_origin": "ast", + "id": "ref_grok_2_mini", + "community": 161, + "community_name": "Schemas #161", + "norm_label": "grok-2-mini" + }, + { + "label": "grok-2", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L171", + "_origin": "ast", + "id": "ref_grok_2", + "community": 161, + "community_name": "Schemas #161", + "norm_label": "grok-2" + }, + { + "label": "Local AI", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L173", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_properties_local_ai", + "community": 161, + "community_name": "Schemas #161", + "norm_label": "local ai" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L174", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_local_ai_type", + "community": 161, + "community_name": "Schemas #161", + "norm_label": "type" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L175", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_local_ai_items", + "community": 161, + "community_name": "Schemas #161", + "norm_label": "items" + }, + { + "label": "default", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L176", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_local_ai_default", + "community": 161, + "community_name": "Schemas #161", + "norm_label": "default" + }, + { + "label": "tinyllama", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L176", + "_origin": "ast", + "id": "ref_tinyllama", + "community": 161, + "community_name": "Schemas #161", + "norm_label": "tinyllama" + }, + { + "label": "mistral:7b-instruct-q4_0", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L176", + "_origin": "ast", + "id": "ref_mistral_7b_instruct_q4_0", + "community": 161, + "community_name": "Schemas #161", + "norm_label": "mistral:7b-instruct-q4_0" + }, + { + "label": "llama3.2", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L176", + "_origin": "ast", + "id": "ref_llama3_2", + "community": 161, + "community_name": "Schemas #161", + "norm_label": "llama3.2" + }, + { + "label": "Image AI", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L178", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_properties_image_ai", + "community": 411, + "community_name": "Schemas #411", + "norm_label": "image ai" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L179", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_image_ai_type", + "community": 411, + "community_name": "Schemas #411", + "norm_label": "type" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L180", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_image_ai_items", + "community": 411, + "community_name": "Schemas #411", + "norm_label": "items" + }, + { + "label": "default", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L181", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_image_ai_default", + "community": 411, + "community_name": "Schemas #411", + "norm_label": "default" + }, + { + "label": "Nano Banana Pro", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L181", + "_origin": "ast", + "id": "ref_nano_banana_pro", + "community": 411, + "community_name": "Schemas #411", + "norm_label": "nano banana pro" + }, + { + "label": "DALL\u00b7E 3", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L181", + "_origin": "ast", + "id": "ref_dall_e_3", + "community": 411, + "community_name": "Schemas #411", + "norm_label": "dall\u00b7e 3" + }, + { + "label": "Flux Schnell", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L181", + "_origin": "ast", + "id": "ref_flux_schnell", + "community": 411, + "community_name": "Schemas #411", + "norm_label": "flux schnell" + }, + { + "label": "_schemaInfo", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L188", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_schemainfo", + "community": 254, + "community_name": "Schemas #254", + "norm_label": "_schemainfo" + }, + { + "label": "enums", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L189", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_schemainfo_enums", + "community": 254, + "community_name": "Schemas #254", + "norm_label": "enums" + }, + { + "label": "provider", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L190", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_enums_provider", + "community": 391, + "community_name": "Schemas #391", + "norm_label": "provider" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L191", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_enums_source", + "community": 410, + "community_name": "Schemas #410", + "norm_label": "source" + }, + { + "label": "side", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L192", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_enums_side", + "community": 409, + "community_name": "Schemas #409", + "norm_label": "side" + }, + { + "label": "numericFields", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L194", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_schemainfo_numericfields", + "community": 254, + "community_name": "Schemas #254", + "norm_label": "numericfields" + }, + { + "label": "tabIndex", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L194", + "_origin": "ast", + "id": "ref_tabindex", + "community": 254, + "community_name": "Schemas #254", + "norm_label": "tabindex" + }, + { + "label": "number", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L194", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_json_ref_number", + "community": 254, + "community_name": "Schemas #254", + "norm_label": "number" + }, + { + "label": "deprecatedFields", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L195", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_schema_schemainfo_deprecatedfields", + "community": 254, + "community_name": "Schemas #254", + "norm_label": "deprecatedfields" + }, + { + "label": "agentbox.template.json", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.template.json", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_template", + "community": 226, + "community_name": "Schemas #226", + "norm_label": "agentbox.template.json" + }, + { + "label": "$schema", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.template.json", + "source_location": "L2", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_template_schema", + "community": 226, + "community_name": "Schemas #226", + "norm_label": "$schema" + }, + { + "label": "_schemaVersion", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.template.json", + "source_location": "L3", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_template_schemaversion", + "community": 226, + "community_name": "Schemas #226", + "norm_label": "_schemaversion" + }, + { + "label": "_helper", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.template.json", + "source_location": "L4", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_template_helper", + "community": 226, + "community_name": "Schemas #226", + "norm_label": "_helper" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.template.json", + "source_location": "L6", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_template_id", + "community": 226, + "community_name": "Schemas #226", + "norm_label": "id" + }, + { + "label": "boxNumber", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.template.json", + "source_location": "L7", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_template_boxnumber", + "community": 226, + "community_name": "Schemas #226", + "norm_label": "boxnumber" + }, + { + "label": "agentNumber", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.template.json", + "source_location": "L8", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_template_agentnumber", + "community": 226, + "community_name": "Schemas #226", + "norm_label": "agentnumber" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.template.json", + "source_location": "L9", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_template_identifier", + "community": 226, + "community_name": "Schemas #226", + "norm_label": "identifier" + }, + { + "label": "agentId", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.template.json", + "source_location": "L10", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_template_agentid", + "community": 226, + "community_name": "Schemas #226", + "norm_label": "agentid" + }, + { + "label": "title", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.template.json", + "source_location": "L11", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_template_title", + "community": 226, + "community_name": "Schemas #226", + "norm_label": "title" + }, + { + "label": "color", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.template.json", + "source_location": "L12", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_template_color", + "community": 226, + "community_name": "Schemas #226", + "norm_label": "color" + }, + { + "label": "enabled", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.template.json", + "source_location": "L13", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_template_enabled", + "community": 226, + "community_name": "Schemas #226", + "norm_label": "enabled" + }, + { + "label": "provider", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.template.json", + "source_location": "L15", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_template_provider", + "community": 226, + "community_name": "Schemas #226", + "norm_label": "provider" + }, + { + "label": "model", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.template.json", + "source_location": "L16", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_template_model", + "community": 226, + "community_name": "Schemas #226", + "norm_label": "model" + }, + { + "label": "tools", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.template.json", + "source_location": "L17", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_template_tools", + "community": 226, + "community_name": "Schemas #226", + "norm_label": "tools" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.template.json", + "source_location": "L19", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_template_source", + "community": 226, + "community_name": "Schemas #226", + "norm_label": "source" + }, + { + "label": "masterTabId", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.template.json", + "source_location": "L20", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_template_mastertabid", + "community": 226, + "community_name": "Schemas #226", + "norm_label": "mastertabid" + }, + { + "label": "tabIndex", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.template.json", + "source_location": "L21", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_template_tabindex", + "community": 226, + "community_name": "Schemas #226", + "norm_label": "tabindex" + }, + { + "label": "side", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.template.json", + "source_location": "L22", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_template_side", + "community": 226, + "community_name": "Schemas #226", + "norm_label": "side" + }, + { + "label": "slotId", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.template.json", + "source_location": "L24", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_template_slotid", + "community": 226, + "community_name": "Schemas #226", + "norm_label": "slotid" + }, + { + "label": "gridSessionId", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.template.json", + "source_location": "L25", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_template_gridsessionid", + "community": 226, + "community_name": "Schemas #226", + "norm_label": "gridsessionid" + }, + { + "label": "locationId", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.template.json", + "source_location": "L26", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_template_locationid", + "community": 226, + "community_name": "Schemas #226", + "norm_label": "locationid" + }, + { + "label": "locationLabel", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/agentbox.template.json", + "source_location": "L27", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_agentbox_template_locationlabel", + "community": 226, + "community_name": "Schemas #226", + "norm_label": "locationlabel" + }, + { + "label": "example-agent.json", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent", + "community": 302, + "community_name": "Schemas #302", + "norm_label": "example-agent.json" + }, + { + "label": "$schema", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L2", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_schema", + "community": 302, + "community_name": "Schemas #302", + "norm_label": "$schema" + }, + { + "label": "_schemaVersion", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L3", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_schemaversion", + "community": 302, + "community_name": "Schemas #302", + "norm_label": "_schemaversion" + }, + { + "label": "_exportedAt", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L4", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_exportedat", + "community": 302, + "community_name": "Schemas #302", + "norm_label": "_exportedat" + }, + { + "label": "_source", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L5", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_source", + "community": 302, + "community_name": "Schemas #302", + "norm_label": "_source" + }, + { + "label": "_helper", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L6", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_helper", + "community": 302, + "community_name": "Schemas #302", + "norm_label": "_helper" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L7", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_id", + "community": 302, + "community_name": "Schemas #302", + "norm_label": "id" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L8", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_name", + "community": 302, + "community_name": "Schemas #302", + "norm_label": "name" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L9", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_description", + "community": 302, + "community_name": "Schemas #302", + "norm_label": "description" + }, + { + "label": "icon", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L10", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_icon", + "community": 302, + "community_name": "Schemas #302", + "norm_label": "icon" + }, + { + "label": "number", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L11", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_number", + "community": 302, + "community_name": "Schemas #302", + "norm_label": "number" + }, + { + "label": "enabled", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L12", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_enabled", + "community": 302, + "community_name": "Schemas #302", + "norm_label": "enabled" + }, + { + "label": "capabilities", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L13", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_capabilities", + "community": 351, + "community_name": "Schemas #351", + "norm_label": "capabilities" + }, + { + "label": "listening", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L13", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_json_ref_listening", + "community": 351, + "community_name": "Schemas #351", + "norm_label": "listening" + }, + { + "label": "reasoning", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L13", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_json_ref_reasoning", + "community": 351, + "community_name": "Schemas #351", + "norm_label": "reasoning" + }, + { + "label": "execution", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L13", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_json_ref_execution", + "community": 351, + "community_name": "Schemas #351", + "norm_label": "execution" + }, + { + "label": "contextSettings", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L14", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_contextsettings", + "community": 486, + "community_name": "Schemas #486", + "norm_label": "contextsettings" + }, + { + "label": "agentContext", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L15", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_contextsettings_agentcontext", + "community": 486, + "community_name": "Schemas #486", + "norm_label": "agentcontext" + }, + { + "label": "sessionContext", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L16", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_contextsettings_sessioncontext", + "community": 486, + "community_name": "Schemas #486", + "norm_label": "sessioncontext" + }, + { + "label": "accountContext", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L17", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_contextsettings_accountcontext", + "community": 486, + "community_name": "Schemas #486", + "norm_label": "accountcontext" + }, + { + "label": "memorySettings", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L19", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_memorysettings", + "community": 488, + "community_name": "Schemas #488", + "norm_label": "memorysettings" + }, + { + "label": "agentEnabled", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L20", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_memorysettings_agentenabled", + "community": 488, + "community_name": "Schemas #488", + "norm_label": "agentenabled" + }, + { + "label": "sessionEnabled", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L21", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_memorysettings_sessionenabled", + "community": 488, + "community_name": "Schemas #488", + "norm_label": "sessionenabled" + }, + { + "label": "accountEnabled", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L22", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_memorysettings_accountenabled", + "community": 488, + "community_name": "Schemas #488", + "norm_label": "accountenabled" + }, + { + "label": "listening", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L24", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_listening", + "community": 366, + "community_name": "Schemas #366", + "norm_label": "listening" + }, + { + "label": "expectedContext", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L25", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_listening_expectedcontext", + "community": 366, + "community_name": "Schemas #366", + "norm_label": "expectedcontext" + }, + { + "label": "tags", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L26", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_listening_tags", + "community": 366, + "community_name": "Schemas #366", + "norm_label": "tags" + }, + { + "label": "analysis", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L26", + "_origin": "ast", + "id": "ref_analysis", + "community": 366, + "community_name": "Schemas #366", + "norm_label": "analysis" + }, + { + "label": "knowledge", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L26", + "_origin": "ast", + "id": "ref_knowledge", + "community": 366, + "community_name": "Schemas #366", + "norm_label": "knowledge" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L27", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_listening_sources", + "community": 366, + "community_name": "Schemas #366", + "norm_label": "sources" + }, + { + "label": "dom", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L27", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_json_ref_dom", + "community": 366, + "community_name": "Schemas #366", + "norm_label": "dom" + }, + { + "label": "website", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L28", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_listening_website", + "community": 366, + "community_name": "Schemas #366", + "norm_label": "website" + }, + { + "label": "unifiedTriggers", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L29", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_listening_unifiedtriggers", + "community": 366, + "community_name": "Schemas #366", + "norm_label": "unifiedtriggers" + }, + { + "label": "exampleFiles", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L89", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_listening_examplefiles", + "community": 366, + "community_name": "Schemas #366", + "norm_label": "examplefiles" + }, + { + "label": "reasoningSections", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L91", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_reasoningsections", + "community": 302, + "community_name": "Schemas #302", + "norm_label": "reasoningsections" + }, + { + "label": "executionSections", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L107", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_executionsections", + "community": 302, + "community_name": "Schemas #302", + "norm_label": "executionsections" + }, + { + "label": "agentContextFiles", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L120", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_agentcontextfiles", + "community": 302, + "community_name": "Schemas #302", + "norm_label": "agentcontextfiles" + }, + { + "label": "_schemaInfo", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L121", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_schemainfo", + "community": 335, + "community_name": "Schemas #335", + "norm_label": "_schemainfo" + }, + { + "label": "enums", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L122", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_schemainfo_enums", + "community": 335, + "community_name": "Schemas #335", + "norm_label": "enums" + }, + { + "label": "listening.sources", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L123", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_enums_listening_sources", + "community": 336, + "community_name": "Schemas #336", + "norm_label": "listening.sources" + }, + { + "label": "all", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L123", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_json_ref_all", + "community": 336, + "community_name": "Schemas #336", + "norm_label": "all" + }, + { + "label": "chat", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L123", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_json_ref_chat", + "community": 412, + "community_name": "Schemas #412", + "norm_label": "chat" + }, + { + "label": "voice", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L123", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_json_ref_voice", + "community": 336, + "community_name": "Schemas #336", + "norm_label": "voice" + }, + { + "label": "voicememo", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L123", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_json_ref_voicememo", + "community": 336, + "community_name": "Schemas #336", + "norm_label": "voicememo" + }, + { + "label": "video", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L123", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_json_ref_video", + "community": 336, + "community_name": "Schemas #336", + "norm_label": "video" + }, + { + "label": "email", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L123", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_json_ref_email", + "community": 412, + "community_name": "Schemas #412", + "norm_label": "email" + }, + { + "label": "whatsapp", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L123", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_json_ref_whatsapp", + "community": 336, + "community_name": "Schemas #336", + "norm_label": "whatsapp" + }, + { + "label": "pdf", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L123", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_json_ref_pdf", + "community": 336, + "community_name": "Schemas #336", + "norm_label": "pdf" + }, + { + "label": "docs", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L123", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_json_ref_docs", + "community": 336, + "community_name": "Schemas #336", + "norm_label": "docs" + }, + { + "label": "api", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L123", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_json_ref_api", + "community": 336, + "community_name": "Schemas #336", + "norm_label": "api" + }, + { + "label": "workflow", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L123", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_json_ref_workflow", + "community": 336, + "community_name": "Schemas #336", + "norm_label": "workflow" + }, + { + "label": "agent", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L123", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_json_ref_agent", + "community": 379, + "community_name": "Schemas #379", + "norm_label": "agent" + }, + { + "label": "screenshot", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L123", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_json_ref_screenshot", + "community": 336, + "community_name": "Schemas #336", + "norm_label": "screenshot" + }, + { + "label": "stream", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L123", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_json_ref_stream", + "community": 336, + "community_name": "Schemas #336", + "norm_label": "stream" + }, + { + "label": "executionSection.executionMode", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L124", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_enums_executionsection_executionmode", + "community": 335, + "community_name": "Schemas #335", + "norm_label": "executionsection.executionmode" + }, + { + "label": "agent_workflow", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L124", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_json_ref_agent_workflow", + "community": 335, + "community_name": "Schemas #335", + "norm_label": "agent_workflow" + }, + { + "label": "direct_response", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L124", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_json_ref_direct_response", + "community": 335, + "community_name": "Schemas #335", + "norm_label": "direct_response" + }, + { + "label": "workflow_only", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L124", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_json_ref_workflow_only", + "community": 335, + "community_name": "Schemas #335", + "norm_label": "workflow_only" + }, + { + "label": "hybrid", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L124", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_json_ref_hybrid", + "community": 335, + "community_name": "Schemas #335", + "norm_label": "hybrid" + }, + { + "label": "trigger.type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L125", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_enums_trigger_type", + "community": 379, + "community_name": "Schemas #379", + "norm_label": "trigger.type" + }, + { + "label": "direct_tag", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L125", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_json_ref_direct_tag", + "community": 379, + "community_name": "Schemas #379", + "norm_label": "direct_tag" + }, + { + "label": "tag_and_condition", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L125", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_json_ref_tag_and_condition", + "community": 379, + "community_name": "Schemas #379", + "norm_label": "tag_and_condition" + }, + { + "label": "workflow_condition", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L125", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_json_ref_workflow_condition", + "community": 379, + "community_name": "Schemas #379", + "norm_label": "workflow_condition" + }, + { + "label": "dom_event", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L125", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_json_ref_dom_event", + "community": 379, + "community_name": "Schemas #379", + "norm_label": "dom_event" + }, + { + "label": "dom_parser", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L125", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_json_ref_dom_parser", + "community": 379, + "community_name": "Schemas #379", + "norm_label": "dom_parser" + }, + { + "label": "augmented_overlay", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L125", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_json_ref_augmented_overlay", + "community": 379, + "community_name": "Schemas #379", + "norm_label": "augmented_overlay" + }, + { + "label": "miniapp", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L125", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_json_ref_miniapp", + "community": 379, + "community_name": "Schemas #379", + "norm_label": "miniapp" + }, + { + "label": "manual", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L125", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_json_ref_manual", + "community": 429, + "community_name": "Schemas #429", + "norm_label": "manual" + }, + { + "label": "trigger.parserTrigger", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L126", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_enums_trigger_parsertrigger", + "community": 429, + "community_name": "Schemas #429", + "norm_label": "trigger.parsertrigger" + }, + { + "label": "page_load", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L126", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_json_ref_page_load", + "community": 429, + "community_name": "Schemas #429", + "norm_label": "page_load" + }, + { + "label": "dom_change", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L126", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_json_ref_dom_change", + "community": 429, + "community_name": "Schemas #429", + "norm_label": "dom_change" + }, + { + "label": "interval", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L126", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_json_ref_interval", + "community": 429, + "community_name": "Schemas #429", + "norm_label": "interval" + }, + { + "label": "button_click", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L126", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_json_ref_button_click", + "community": 429, + "community_name": "Schemas #429", + "norm_label": "button_click" + }, + { + "label": "trigger.responseReadyMode", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L127", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_enums_trigger_responsereadymode", + "community": 487, + "community_name": "Schemas #487", + "norm_label": "trigger.responsereadymode" + }, + { + "label": "first_change", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L127", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_json_ref_first_change", + "community": 487, + "community_name": "Schemas #487", + "norm_label": "first_change" + }, + { + "label": "quiet_period", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L127", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_json_ref_quiet_period", + "community": 487, + "community_name": "Schemas #487", + "norm_label": "quiet_period" + }, + { + "label": "selector_signal", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L127", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_json_ref_selector_signal", + "community": 487, + "community_name": "Schemas #487", + "norm_label": "selector_signal" + }, + { + "label": "destination.kind", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L128", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_enums_destination_kind", + "community": 412, + "community_name": "Schemas #412", + "norm_label": "destination.kind" + }, + { + "label": "agentBox", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L128", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_json_ref_agentbox", + "community": 412, + "community_name": "Schemas #412", + "norm_label": "agentbox" + }, + { + "label": "webhook", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L128", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_json_ref_webhook", + "community": 412, + "community_name": "Schemas #412", + "norm_label": "webhook" + }, + { + "label": "storage", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L128", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_json_ref_storage", + "community": 412, + "community_name": "Schemas #412", + "norm_label": "storage" + }, + { + "label": "notification", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L128", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_json_ref_notification", + "community": 412, + "community_name": "Schemas #412", + "norm_label": "notification" + }, + { + "label": "numericFields", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L130", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_schemainfo_numericfields", + "community": 335, + "community_name": "Schemas #335", + "norm_label": "numericfields" + }, + { + "label": "parserInterval", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L130", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_json_ref_parserinterval", + "community": 335, + "community_name": "Schemas #335", + "norm_label": "parserinterval" + }, + { + "label": "quietPeriodMs", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L130", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_json_ref_quietperiodms", + "community": 335, + "community_name": "Schemas #335", + "norm_label": "quietperiodms" + }, + { + "label": "maxWaitTimeMs", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L130", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_json_ref_maxwaittimems", + "community": 335, + "community_name": "Schemas #335", + "norm_label": "maxwaittimems" + }, + { + "label": "number", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L130", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_json_ref_number", + "community": 335, + "community_name": "Schemas #335", + "norm_label": "number" + }, + { + "label": "deprecatedFields", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L131", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_example_agent_schemainfo_deprecatedfields", + "community": 351, + "community_name": "Schemas #351", + "norm_label": "deprecatedfields" + }, + { + "label": "passiveEnabled", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L131", + "_origin": "ast", + "id": "ref_passiveenabled", + "community": 351, + "community_name": "Schemas #351", + "norm_label": "passiveenabled" + }, + { + "label": "activeEnabled", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L131", + "_origin": "ast", + "id": "ref_activeenabled", + "community": 351, + "community_name": "Schemas #351", + "norm_label": "activeenabled" + }, + { + "label": "triggers", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L131", + "_origin": "ast", + "id": "ref_triggers", + "community": 351, + "community_name": "Schemas #351", + "norm_label": "triggers" + }, + { + "label": "workflows", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L131", + "_origin": "ast", + "id": "ref_workflows", + "community": 351, + "community_name": "Schemas #351", + "norm_label": "workflows" + }, + { + "label": "specialDestinations", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L131", + "_origin": "ast", + "id": "ref_specialdestinations", + "community": 351, + "community_name": "Schemas #351", + "norm_label": "specialdestinations" + }, + { + "label": "applyFor", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L131", + "_origin": "ast", + "id": "ref_applyfor", + "community": 351, + "community_name": "Schemas #351", + "norm_label": "applyfor" + }, + { + "label": "optimando.schema.json", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema", + "community": 146, + "community_name": "Schemas #146", + "norm_label": "optimando.schema.json" + }, + { + "label": "$schema", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L2", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_schema", + "community": 146, + "community_name": "Schemas #146", + "norm_label": "$schema" + }, + { + "label": "$id", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L3", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_id", + "community": 146, + "community_name": "Schemas #146", + "norm_label": "$id" + }, + { + "label": "title", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L4", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_title", + "community": 146, + "community_name": "Schemas #146", + "norm_label": "title" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L5", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_description", + "community": 146, + "community_name": "Schemas #146", + "norm_label": "description" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L6", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_type", + "community": 146, + "community_name": "Schemas #146", + "norm_label": "type" + }, + { + "label": "properties", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L7", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties", + "community": 140, + "community_name": "Schemas #140", + "norm_label": "properties" + }, + { + "label": "$schema", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L8", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_schema", + "community": 140, + "community_name": "Schemas #140", + "norm_label": "$schema" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L9", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_schema_type", + "community": 140, + "community_name": "Schemas #140", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L10", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_schema_description", + "community": 140, + "community_name": "Schemas #140", + "norm_label": "description" + }, + { + "label": "_schemaVersion", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L12", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_schemaversion", + "community": 140, + "community_name": "Schemas #140", + "norm_label": "_schemaversion" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L13", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_schemaversion_type", + "community": 140, + "community_name": "Schemas #140", + "norm_label": "type" + }, + { + "label": "const", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L14", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_schemaversion_const", + "community": 140, + "community_name": "Schemas #140", + "norm_label": "const" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L15", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_schemaversion_description", + "community": 140, + "community_name": "Schemas #140", + "norm_label": "description" + }, + { + "label": "_exportedAt", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L17", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_exportedat", + "community": 140, + "community_name": "Schemas #140", + "norm_label": "_exportedat" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L18", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_exportedat_type", + "community": 140, + "community_name": "Schemas #140", + "norm_label": "type" + }, + { + "label": "format", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L19", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_exportedat_format", + "community": 140, + "community_name": "Schemas #140", + "norm_label": "format" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L20", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_exportedat_description", + "community": 140, + "community_name": "Schemas #140", + "norm_label": "description" + }, + { + "label": "_source", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L22", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_source", + "community": 233, + "community_name": "Schemas #233", + "norm_label": "_source" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L23", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_source_type", + "community": 233, + "community_name": "Schemas #233", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L24", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_source_description", + "community": 233, + "community_name": "Schemas #233", + "norm_label": "description" + }, + { + "label": "_helper", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L26", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_helper", + "community": 140, + "community_name": "Schemas #140", + "norm_label": "_helper" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L27", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_helper_type", + "community": 140, + "community_name": "Schemas #140", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L28", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_helper_description", + "community": 140, + "community_name": "Schemas #140", + "norm_label": "description" + }, + { + "label": "agents", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L31", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_agents", + "community": 304, + "community_name": "Schemas #304", + "norm_label": "agents" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L32", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_agents_type", + "community": 304, + "community_name": "Schemas #304", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L33", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_agents_description", + "community": 304, + "community_name": "Schemas #304", + "norm_label": "description" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L34", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_agents_items", + "community": 140, + "community_name": "Schemas #140", + "norm_label": "items" + }, + { + "label": "$ref", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L34", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_items_ref", + "community": 140, + "community_name": "Schemas #140", + "norm_label": "$ref" + }, + { + "label": "agentBoxes", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L37", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_agentboxes", + "community": 140, + "community_name": "Schemas #140", + "norm_label": "agentboxes" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L38", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_agentboxes_type", + "community": 140, + "community_name": "Schemas #140", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L39", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_agentboxes_description", + "community": 140, + "community_name": "Schemas #140", + "norm_label": "description" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L40", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_agentboxes_items", + "community": 140, + "community_name": "Schemas #140", + "norm_label": "items" + }, + { + "label": "miniApps", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L43", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_miniapps", + "community": 140, + "community_name": "Schemas #140", + "norm_label": "miniapps" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L44", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_miniapps_type", + "community": 140, + "community_name": "Schemas #140", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L45", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_miniapps_description", + "community": 140, + "community_name": "Schemas #140", + "norm_label": "description" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L46", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_miniapps_items", + "community": 140, + "community_name": "Schemas #140", + "norm_label": "items" + }, + { + "label": "connectionInfo", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L49", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_connectioninfo", + "community": 268, + "community_name": "Schemas #268", + "norm_label": "connectioninfo" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L50", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_connectioninfo_type", + "community": 268, + "community_name": "Schemas #268", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L51", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_connectioninfo_description", + "community": 268, + "community_name": "Schemas #268", + "norm_label": "description" + }, + { + "label": "properties", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L52", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_connectioninfo_properties", + "community": 268, + "community_name": "Schemas #268", + "norm_label": "properties" + }, + { + "label": "agentToBoxMapping", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L53", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_agenttoboxmapping", + "community": 268, + "community_name": "Schemas #268", + "norm_label": "agenttoboxmapping" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L54", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_agenttoboxmapping_type", + "community": 268, + "community_name": "Schemas #268", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L55", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_agenttoboxmapping_description", + "community": 268, + "community_name": "Schemas #268", + "norm_label": "description" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L56", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_agenttoboxmapping_items", + "community": 268, + "community_name": "Schemas #268", + "norm_label": "items" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L57", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_items_type", + "community": 127, + "community_name": "Schemas #127", + "norm_label": "type" + }, + { + "label": "properties", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L58", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_items_properties", + "community": 268, + "community_name": "Schemas #268", + "norm_label": "properties" + }, + { + "label": "agentNumber", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L59", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_agentnumber", + "community": 268, + "community_name": "Schemas #268", + "norm_label": "agentnumber" + }, + { + "label": "agentId", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L60", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_agentid", + "community": 268, + "community_name": "Schemas #268", + "norm_label": "agentid" + }, + { + "label": "boxIdentifiers", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L61", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_boxidentifiers", + "community": 268, + "community_name": "Schemas #268", + "norm_label": "boxidentifiers" + }, + { + "label": "$defs", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L69", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_defs", + "community": 146, + "community_name": "Schemas #146", + "norm_label": "$defs" + }, + { + "label": "agent", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L70", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_defs_agent", + "community": 146, + "community_name": "Schemas #146", + "norm_label": "agent" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L71", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_agent_type", + "community": 146, + "community_name": "Schemas #146", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L72", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_agent_description", + "community": 146, + "community_name": "Schemas #146", + "norm_label": "description" + }, + { + "label": "required", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L73", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_agent_required", + "community": 146, + "community_name": "Schemas #146", + "norm_label": "required" + }, + { + "label": "id", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L73", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_id", + "community": 146, + "community_name": "Schemas #146", + "norm_label": "id" + }, + { + "label": "name", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L73", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_name", + "community": 146, + "community_name": "Schemas #146", + "norm_label": "name" + }, + { + "label": "enabled", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L73", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_enabled", + "community": 146, + "community_name": "Schemas #146", + "norm_label": "enabled" + }, + { + "label": "capabilities", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L73", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_capabilities", + "community": 146, + "community_name": "Schemas #146", + "norm_label": "capabilities" + }, + { + "label": "properties", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L74", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_agent_properties", + "community": 162, + "community_name": "Schemas #162", + "norm_label": "properties" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L75", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_id", + "community": 162, + "community_name": "Schemas #162", + "norm_label": "id" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L76", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_id_type", + "community": 162, + "community_name": "Schemas #162", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L77", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_id_description", + "community": 162, + "community_name": "Schemas #162", + "norm_label": "description" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L79", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_name", + "community": 162, + "community_name": "Schemas #162", + "norm_label": "name" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L80", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_name_type", + "community": 162, + "community_name": "Schemas #162", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L81", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_name_description", + "community": 162, + "community_name": "Schemas #162", + "norm_label": "description" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L83", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_description", + "community": 162, + "community_name": "Schemas #162", + "norm_label": "description" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L84", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_description_type", + "community": 162, + "community_name": "Schemas #162", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L85", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_description_description", + "community": 162, + "community_name": "Schemas #162", + "norm_label": "description" + }, + { + "label": "icon", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L87", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_icon", + "community": 162, + "community_name": "Schemas #162", + "norm_label": "icon" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L88", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_icon_type", + "community": 162, + "community_name": "Schemas #162", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L89", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_icon_description", + "community": 162, + "community_name": "Schemas #162", + "norm_label": "description" + }, + { + "label": "default", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L90", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_icon_default", + "community": 162, + "community_name": "Schemas #162", + "norm_label": "default" + }, + { + "label": "number", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L92", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_number", + "community": 162, + "community_name": "Schemas #162", + "norm_label": "number" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L93", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_number_type", + "community": 162, + "community_name": "Schemas #162", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L94", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_number_description", + "community": 162, + "community_name": "Schemas #162", + "norm_label": "description" + }, + { + "label": "minimum", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L95", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_number_minimum", + "community": 162, + "community_name": "Schemas #162", + "norm_label": "minimum" + }, + { + "label": "maximum", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L96", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_number_maximum", + "community": 162, + "community_name": "Schemas #162", + "norm_label": "maximum" + }, + { + "label": "enabled", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L98", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_enabled", + "community": 162, + "community_name": "Schemas #162", + "norm_label": "enabled" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L99", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_enabled_type", + "community": 162, + "community_name": "Schemas #162", + "norm_label": "type" + }, + { + "label": "default", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L100", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_enabled_default", + "community": 162, + "community_name": "Schemas #162", + "norm_label": "default" + }, + { + "label": "capabilities", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L102", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_capabilities", + "community": 380, + "community_name": "Schemas #380", + "norm_label": "capabilities" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L103", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_capabilities_type", + "community": 380, + "community_name": "Schemas #380", + "norm_label": "type" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L104", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_capabilities_items", + "community": 380, + "community_name": "Schemas #380", + "norm_label": "items" + }, + { + "label": "enum", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L104", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_items_enum", + "community": 380, + "community_name": "Schemas #380", + "norm_label": "enum" + }, + { + "label": "listening", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L104", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_listening", + "community": 380, + "community_name": "Schemas #380", + "norm_label": "listening" + }, + { + "label": "reasoning", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L104", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_reasoning", + "community": 380, + "community_name": "Schemas #380", + "norm_label": "reasoning" + }, + { + "label": "execution", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L104", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_execution", + "community": 380, + "community_name": "Schemas #380", + "norm_label": "execution" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L105", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_capabilities_description", + "community": 380, + "community_name": "Schemas #380", + "norm_label": "description" + }, + { + "label": "contextSettings", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L107", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_contextsettings", + "community": 162, + "community_name": "Schemas #162", + "norm_label": "contextsettings" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L108", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_contextsettings_type", + "community": 162, + "community_name": "Schemas #162", + "norm_label": "type" + }, + { + "label": "properties", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L109", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_contextsettings_properties", + "community": 367, + "community_name": "Schemas #367", + "norm_label": "properties" + }, + { + "label": "agentContext", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L110", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_agentcontext", + "community": 367, + "community_name": "Schemas #367", + "norm_label": "agentcontext" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L110", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_agentcontext_type", + "community": 367, + "community_name": "Schemas #367", + "norm_label": "type" + }, + { + "label": "default", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L110", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_agentcontext_default", + "community": 367, + "community_name": "Schemas #367", + "norm_label": "default" + }, + { + "label": "sessionContext", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L111", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_sessioncontext", + "community": 367, + "community_name": "Schemas #367", + "norm_label": "sessioncontext" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L111", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_sessioncontext_type", + "community": 367, + "community_name": "Schemas #367", + "norm_label": "type" + }, + { + "label": "default", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L111", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_sessioncontext_default", + "community": 367, + "community_name": "Schemas #367", + "norm_label": "default" + }, + { + "label": "accountContext", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L112", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_accountcontext", + "community": 367, + "community_name": "Schemas #367", + "norm_label": "accountcontext" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L112", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_accountcontext_type", + "community": 367, + "community_name": "Schemas #367", + "norm_label": "type" + }, + { + "label": "default", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L112", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_accountcontext_default", + "community": 367, + "community_name": "Schemas #367", + "norm_label": "default" + }, + { + "label": "memorySettings", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L115", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_memorysettings", + "community": 303, + "community_name": "Schemas #303", + "norm_label": "memorysettings" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L116", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_memorysettings_type", + "community": 303, + "community_name": "Schemas #303", + "norm_label": "type" + }, + { + "label": "properties", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L117", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_memorysettings_properties", + "community": 303, + "community_name": "Schemas #303", + "norm_label": "properties" + }, + { + "label": "agentEnabled", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L118", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_agentenabled", + "community": 303, + "community_name": "Schemas #303", + "norm_label": "agentenabled" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L118", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_agentenabled_type", + "community": 303, + "community_name": "Schemas #303", + "norm_label": "type" + }, + { + "label": "default", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L118", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_agentenabled_default", + "community": 303, + "community_name": "Schemas #303", + "norm_label": "default" + }, + { + "label": "sessionEnabled", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L119", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_sessionenabled", + "community": 303, + "community_name": "Schemas #303", + "norm_label": "sessionenabled" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L119", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_sessionenabled_type", + "community": 303, + "community_name": "Schemas #303", + "norm_label": "type" + }, + { + "label": "default", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L119", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_sessionenabled_default", + "community": 303, + "community_name": "Schemas #303", + "norm_label": "default" + }, + { + "label": "accountEnabled", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L120", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_accountenabled", + "community": 303, + "community_name": "Schemas #303", + "norm_label": "accountenabled" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L120", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_accountenabled_type", + "community": 303, + "community_name": "Schemas #303", + "norm_label": "type" + }, + { + "label": "default", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L120", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_accountenabled_default", + "community": 303, + "community_name": "Schemas #303", + "norm_label": "default" + }, + { + "label": "listening", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L123", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_listening", + "community": 283, + "community_name": "Schemas #283", + "norm_label": "listening" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L124", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_listening_type", + "community": 283, + "community_name": "Schemas #283", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L125", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_listening_description", + "community": 283, + "community_name": "Schemas #283", + "norm_label": "description" + }, + { + "label": "properties", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L126", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_listening_properties", + "community": 283, + "community_name": "Schemas #283", + "norm_label": "properties" + }, + { + "label": "expectedContext", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L127", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_expectedcontext", + "community": 283, + "community_name": "Schemas #283", + "norm_label": "expectedcontext" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L127", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_expectedcontext_type", + "community": 283, + "community_name": "Schemas #283", + "norm_label": "type" + }, + { + "label": "tags", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L128", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_tags", + "community": 283, + "community_name": "Schemas #283", + "norm_label": "tags" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L128", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_tags_type", + "community": 283, + "community_name": "Schemas #283", + "norm_label": "type" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L128", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_tags_items", + "community": 283, + "community_name": "Schemas #283", + "norm_label": "items" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L129", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_sources", + "community": 283, + "community_name": "Schemas #283", + "norm_label": "sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L130", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_sources_type", + "community": 283, + "community_name": "Schemas #283", + "norm_label": "type" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L131", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_sources_items", + "community": 283, + "community_name": "Schemas #283", + "norm_label": "items" + }, + { + "label": "website", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L133", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_website", + "community": 283, + "community_name": "Schemas #283", + "norm_label": "website" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L133", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_website_type", + "community": 283, + "community_name": "Schemas #283", + "norm_label": "type" + }, + { + "label": "unifiedTriggers", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L134", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_unifiedtriggers", + "community": 283, + "community_name": "Schemas #283", + "norm_label": "unifiedtriggers" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L135", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_unifiedtriggers_type", + "community": 283, + "community_name": "Schemas #283", + "norm_label": "type" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L136", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_unifiedtriggers_items", + "community": 283, + "community_name": "Schemas #283", + "norm_label": "items" + }, + { + "label": "reasoningSections", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L140", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_reasoningsections", + "community": 140, + "community_name": "Schemas #140", + "norm_label": "reasoningsections" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L141", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_reasoningsections_type", + "community": 140, + "community_name": "Schemas #140", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L142", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_reasoningsections_description", + "community": 140, + "community_name": "Schemas #140", + "norm_label": "description" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L143", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_reasoningsections_items", + "community": 140, + "community_name": "Schemas #140", + "norm_label": "items" + }, + { + "label": "executionSections", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L145", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_executionsections", + "community": 140, + "community_name": "Schemas #140", + "norm_label": "executionsections" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L146", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_executionsections_type", + "community": 140, + "community_name": "Schemas #140", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L147", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_executionsections_description", + "community": 140, + "community_name": "Schemas #140", + "norm_label": "description" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L148", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_executionsections_items", + "community": 140, + "community_name": "Schemas #140", + "norm_label": "items" + }, + { + "label": "agentBox", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L153", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_defs_agentbox", + "community": 146, + "community_name": "Schemas #146", + "norm_label": "agentbox" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L154", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_agentbox_type", + "community": 146, + "community_name": "Schemas #146", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L155", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_agentbox_description", + "community": 146, + "community_name": "Schemas #146", + "norm_label": "description" + }, + { + "label": "required", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L156", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_agentbox_required", + "community": 146, + "community_name": "Schemas #146", + "norm_label": "required" + }, + { + "label": "boxNumber", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L156", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_boxnumber", + "community": 146, + "community_name": "Schemas #146", + "norm_label": "boxnumber" + }, + { + "label": "agentNumber", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L156", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_agentnumber", + "community": 146, + "community_name": "Schemas #146", + "norm_label": "agentnumber" + }, + { + "label": "identifier", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L156", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_identifier", + "community": 146, + "community_name": "Schemas #146", + "norm_label": "identifier" + }, + { + "label": "title", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L156", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_title", + "community": 146, + "community_name": "Schemas #146", + "norm_label": "title" + }, + { + "label": "properties", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L157", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_agentbox_properties", + "community": 192, + "community_name": "Schemas #192", + "norm_label": "properties" + }, + { + "label": "boxNumber", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L162", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_boxnumber", + "community": 192, + "community_name": "Schemas #192", + "norm_label": "boxnumber" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L163", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_boxnumber_type", + "community": 192, + "community_name": "Schemas #192", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L164", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_boxnumber_description", + "community": 192, + "community_name": "Schemas #192", + "norm_label": "description" + }, + { + "label": "minimum", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L165", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_boxnumber_minimum", + "community": 192, + "community_name": "Schemas #192", + "norm_label": "minimum" + }, + { + "label": "maximum", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L166", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_boxnumber_maximum", + "community": 192, + "community_name": "Schemas #192", + "norm_label": "maximum" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L169", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_agentnumber_type", + "community": 268, + "community_name": "Schemas #268", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L170", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_agentnumber_description", + "community": 268, + "community_name": "Schemas #268", + "norm_label": "description" + }, + { + "label": "minimum", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L171", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_agentnumber_minimum", + "community": 268, + "community_name": "Schemas #268", + "norm_label": "minimum" + }, + { + "label": "maximum", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L172", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_agentnumber_maximum", + "community": 268, + "community_name": "Schemas #268", + "norm_label": "maximum" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L174", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_identifier", + "community": 192, + "community_name": "Schemas #192", + "norm_label": "identifier" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L175", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_identifier_type", + "community": 192, + "community_name": "Schemas #192", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L176", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_identifier_description", + "community": 192, + "community_name": "Schemas #192", + "norm_label": "description" + }, + { + "label": "pattern", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L177", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_identifier_pattern", + "community": 192, + "community_name": "Schemas #192", + "norm_label": "pattern" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L180", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_agentid_type", + "community": 268, + "community_name": "Schemas #268", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L181", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_agentid_description", + "community": 268, + "community_name": "Schemas #268", + "norm_label": "description" + }, + { + "label": "title", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L183", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_title", + "community": 192, + "community_name": "Schemas #192", + "norm_label": "title" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L184", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_title_type", + "community": 192, + "community_name": "Schemas #192", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L185", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_title_description", + "community": 192, + "community_name": "Schemas #192", + "norm_label": "description" + }, + { + "label": "color", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L187", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_color", + "community": 192, + "community_name": "Schemas #192", + "norm_label": "color" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L188", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_color_type", + "community": 192, + "community_name": "Schemas #192", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L189", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_color_description", + "community": 192, + "community_name": "Schemas #192", + "norm_label": "description" + }, + { + "label": "pattern", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L190", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_color_pattern", + "community": 192, + "community_name": "Schemas #192", + "norm_label": "pattern" + }, + { + "label": "provider", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L196", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_provider", + "community": 352, + "community_name": "Schemas #352", + "norm_label": "provider" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L197", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_provider_type", + "community": 352, + "community_name": "Schemas #352", + "norm_label": "type" + }, + { + "label": "enum", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L198", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_provider_enum", + "community": 352, + "community_name": "Schemas #352", + "norm_label": "enum" + }, + { + "label": "OpenAI", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L198", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_openai", + "community": 352, + "community_name": "Schemas #352", + "norm_label": "openai" + }, + { + "label": "Claude", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L198", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_claude", + "community": 352, + "community_name": "Schemas #352", + "norm_label": "claude" + }, + { + "label": "Gemini", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L198", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_gemini", + "community": 352, + "community_name": "Schemas #352", + "norm_label": "gemini" + }, + { + "label": "Grok", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L198", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_grok", + "community": 352, + "community_name": "Schemas #352", + "norm_label": "grok" + }, + { + "label": "Local AI", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L198", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_local_ai", + "community": 352, + "community_name": "Schemas #352", + "norm_label": "local ai" + }, + { + "label": "Image AI", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L198", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_image_ai", + "community": 352, + "community_name": "Schemas #352", + "norm_label": "image ai" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L199", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_provider_description", + "community": 352, + "community_name": "Schemas #352", + "norm_label": "description" + }, + { + "label": "model", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L201", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_model", + "community": 192, + "community_name": "Schemas #192", + "norm_label": "model" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L202", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_model_type", + "community": 192, + "community_name": "Schemas #192", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L203", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_model_description", + "community": 192, + "community_name": "Schemas #192", + "norm_label": "description" + }, + { + "label": "tools", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L205", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_tools", + "community": 127, + "community_name": "Schemas #127", + "norm_label": "tools" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L206", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_tools_type", + "community": 127, + "community_name": "Schemas #127", + "norm_label": "type" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L207", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_tools_items", + "community": 127, + "community_name": "Schemas #127", + "norm_label": "items" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L208", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_tools_description", + "community": 127, + "community_name": "Schemas #127", + "norm_label": "description" + }, + { + "label": "enum", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L212", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_source_enum", + "community": 233, + "community_name": "Schemas #233", + "norm_label": "enum" + }, + { + "label": "master_tab", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L212", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_master_tab", + "community": 233, + "community_name": "Schemas #233", + "norm_label": "master_tab" + }, + { + "label": "display_grid", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L212", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_display_grid", + "community": 233, + "community_name": "Schemas #233", + "norm_label": "display_grid" + }, + { + "label": "masterTabId", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L214", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_mastertabid", + "community": 192, + "community_name": "Schemas #192", + "norm_label": "mastertabid" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L215", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_mastertabid_type", + "community": 192, + "community_name": "Schemas #192", + "norm_label": "type" + }, + { + "label": "pattern", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L216", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_mastertabid_pattern", + "community": 192, + "community_name": "Schemas #192", + "norm_label": "pattern" + }, + { + "label": "tabIndex", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L218", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_tabindex", + "community": 192, + "community_name": "Schemas #192", + "norm_label": "tabindex" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L219", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_tabindex_type", + "community": 192, + "community_name": "Schemas #192", + "norm_label": "type" + }, + { + "label": "minimum", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L220", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_tabindex_minimum", + "community": 192, + "community_name": "Schemas #192", + "norm_label": "minimum" + }, + { + "label": "side", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L222", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_side", + "community": 192, + "community_name": "Schemas #192", + "norm_label": "side" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L223", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_side_type", + "community": 192, + "community_name": "Schemas #192", + "norm_label": "type" + }, + { + "label": "enum", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L224", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_side_enum", + "community": 233, + "community_name": "Schemas #233", + "norm_label": "enum" + }, + { + "label": "left", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L224", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_left", + "community": 233, + "community_name": "Schemas #233", + "norm_label": "left" + }, + { + "label": "right", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L224", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_right", + "community": 233, + "community_name": "Schemas #233", + "norm_label": "right" + }, + { + "label": "miniApp", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L229", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_defs_miniapp", + "community": 146, + "community_name": "Schemas #146", + "norm_label": "miniapp" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L230", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_miniapp_type", + "community": 146, + "community_name": "Schemas #146", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L231", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_miniapp_description", + "community": 146, + "community_name": "Schemas #146", + "norm_label": "description" + }, + { + "label": "properties", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L232", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_miniapp_properties", + "community": 162, + "community_name": "Schemas #162", + "norm_label": "properties" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L237", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_type", + "community": 162, + "community_name": "Schemas #162", + "norm_label": "type" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L237", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_type_type", + "community": 162, + "community_name": "Schemas #162", + "norm_label": "type" + }, + { + "label": "config", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L238", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_config", + "community": 162, + "community_name": "Schemas #162", + "norm_label": "config" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L238", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_config_type", + "community": 162, + "community_name": "Schemas #162", + "norm_label": "type" + }, + { + "label": "trigger", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L242", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_defs_trigger", + "community": 146, + "community_name": "Schemas #146", + "norm_label": "trigger" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L243", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_trigger_type", + "community": 146, + "community_name": "Schemas #146", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L244", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_trigger_description", + "community": 146, + "community_name": "Schemas #146", + "norm_label": "description" + }, + { + "label": "required", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L245", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_trigger_required", + "community": 146, + "community_name": "Schemas #146", + "norm_label": "required" + }, + { + "label": "type", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L245", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_type", + "community": 146, + "community_name": "Schemas #146", + "norm_label": "type" + }, + { + "label": "properties", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L246", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_trigger_properties", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "properties" + }, + { + "label": "enum", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L250", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_type_enum", + "community": 243, + "community_name": "Schemas #243", + "norm_label": "enum" + }, + { + "label": "direct_tag", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L250", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_direct_tag", + "community": 243, + "community_name": "Schemas #243", + "norm_label": "direct_tag" + }, + { + "label": "tag_and_condition", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L250", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_tag_and_condition", + "community": 243, + "community_name": "Schemas #243", + "norm_label": "tag_and_condition" + }, + { + "label": "workflow_condition", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L250", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_workflow_condition", + "community": 243, + "community_name": "Schemas #243", + "norm_label": "workflow_condition" + }, + { + "label": "dom_event", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L250", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_dom_event", + "community": 243, + "community_name": "Schemas #243", + "norm_label": "dom_event" + }, + { + "label": "dom_parser", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L250", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_dom_parser", + "community": 243, + "community_name": "Schemas #243", + "norm_label": "dom_parser" + }, + { + "label": "augmented_overlay", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L250", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_augmented_overlay", + "community": 243, + "community_name": "Schemas #243", + "norm_label": "augmented_overlay" + }, + { + "label": "agent", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L250", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_agent", + "community": 243, + "community_name": "Schemas #243", + "norm_label": "agent" + }, + { + "label": "miniapp", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L250", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_miniapp", + "community": 243, + "community_name": "Schemas #243", + "norm_label": "miniapp" + }, + { + "label": "manual", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L250", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_manual", + "community": 243, + "community_name": "Schemas #243", + "norm_label": "manual" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L251", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_type_description", + "community": 162, + "community_name": "Schemas #162", + "norm_label": "description" + }, + { + "label": "tag", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L254", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_tag", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "tag" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L254", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_tag_type", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "type" + }, + { + "label": "channel", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L255", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_channel", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "channel" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L255", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_channel_type", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "type" + }, + { + "label": "domSelector", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L256", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_domselector", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "domselector" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L256", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_domselector_type", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "type" + }, + { + "label": "domEvent", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L257", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_domevent", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "domevent" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L257", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_domevent_type", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "type" + }, + { + "label": "domUrlFilter", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L258", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_domurlfilter", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "domurlfilter" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L258", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_domurlfilter_type", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "type" + }, + { + "label": "parserTrigger", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L259", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_parsertrigger", + "community": 243, + "community_name": "Schemas #243", + "norm_label": "parsertrigger" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L260", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_parsertrigger_type", + "community": 243, + "community_name": "Schemas #243", + "norm_label": "type" + }, + { + "label": "enum", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L261", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_parsertrigger_enum", + "community": 243, + "community_name": "Schemas #243", + "norm_label": "enum" + }, + { + "label": "page_load", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L261", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_page_load", + "community": 243, + "community_name": "Schemas #243", + "norm_label": "page_load" + }, + { + "label": "dom_change", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L261", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_dom_change", + "community": 243, + "community_name": "Schemas #243", + "norm_label": "dom_change" + }, + { + "label": "interval", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L261", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_interval", + "community": 243, + "community_name": "Schemas #243", + "norm_label": "interval" + }, + { + "label": "button_click", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L261", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_button_click", + "community": 243, + "community_name": "Schemas #243", + "norm_label": "button_click" + }, + { + "label": "parserInterval", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L263", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_parserinterval", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "parserinterval" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L263", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_parserinterval_type", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "type" + }, + { + "label": "default", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L263", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_parserinterval_default", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "default" + }, + { + "label": "domParseTarget", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L264", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_domparsetarget", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "domparsetarget" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L264", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_domparsetarget_type", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "type" + }, + { + "label": "domParseSelector", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L265", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_domparseselector", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "domparseselector" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L265", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_domparseselector_type", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "type" + }, + { + "label": "siteFilters", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L266", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_sitefilters", + "community": 127, + "community_name": "Schemas #127", + "norm_label": "sitefilters" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L266", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_sitefilters_type", + "community": 127, + "community_name": "Schemas #127", + "norm_label": "type" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L266", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_sitefilters_items", + "community": 127, + "community_name": "Schemas #127", + "norm_label": "items" + }, + { + "label": "buttonSelectors", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L267", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_buttonselectors", + "community": 127, + "community_name": "Schemas #127", + "norm_label": "buttonselectors" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L267", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_buttonselectors_type", + "community": 127, + "community_name": "Schemas #127", + "norm_label": "type" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L267", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_buttonselectors_items", + "community": 127, + "community_name": "Schemas #127", + "norm_label": "items" + }, + { + "label": "autoDetectSelectors", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L268", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_autodetectselectors", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "autodetectselectors" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L268", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_autodetectselectors_type", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "type" + }, + { + "label": "triggerOnEnterKey", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L269", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_triggeronenterkey", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "triggeronenterkey" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L269", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_triggeronenterkey_type", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "type" + }, + { + "label": "enterKeyIgnoreShift", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L270", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_enterkeyignoreshift", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "enterkeyignoreshift" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L270", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_enterkeyignoreshift_type", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "type" + }, + { + "label": "captureInput", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L271", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_captureinput", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "captureinput" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L271", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_captureinput_type", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "type" + }, + { + "label": "inputSelectors", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L272", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_inputselectors", + "community": 127, + "community_name": "Schemas #127", + "norm_label": "inputselectors" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L272", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_inputselectors_type", + "community": 127, + "community_name": "Schemas #127", + "norm_label": "type" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L272", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_inputselectors_items", + "community": 127, + "community_name": "Schemas #127", + "norm_label": "items" + }, + { + "label": "captureOutput", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L273", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_captureoutput", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "captureoutput" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L273", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_captureoutput_type", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "type" + }, + { + "label": "outputSelectors", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L274", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_outputselectors", + "community": 127, + "community_name": "Schemas #127", + "norm_label": "outputselectors" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L274", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_outputselectors_type", + "community": 127, + "community_name": "Schemas #127", + "norm_label": "type" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L274", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_outputselectors_items", + "community": 127, + "community_name": "Schemas #127", + "norm_label": "items" + }, + { + "label": "responseReadyMode", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L275", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_responsereadymode", + "community": 413, + "community_name": "Schemas #413", + "norm_label": "responsereadymode" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L276", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_responsereadymode_type", + "community": 413, + "community_name": "Schemas #413", + "norm_label": "type" + }, + { + "label": "enum", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L277", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_responsereadymode_enum", + "community": 413, + "community_name": "Schemas #413", + "norm_label": "enum" + }, + { + "label": "first_change", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L277", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_first_change", + "community": 413, + "community_name": "Schemas #413", + "norm_label": "first_change" + }, + { + "label": "quiet_period", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L277", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_quiet_period", + "community": 413, + "community_name": "Schemas #413", + "norm_label": "quiet_period" + }, + { + "label": "selector_signal", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L277", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_selector_signal", + "community": 413, + "community_name": "Schemas #413", + "norm_label": "selector_signal" + }, + { + "label": "quietPeriodMs", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L279", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_quietperiodms", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "quietperiodms" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L279", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_quietperiodms_type", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "type" + }, + { + "label": "default", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L279", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_quietperiodms_default", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "default" + }, + { + "label": "responseSignalSelector", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L280", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_responsesignalselector", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "responsesignalselector" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L280", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_responsesignalselector_type", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "type" + }, + { + "label": "maxWaitTimeMs", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L281", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_maxwaittimems", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "maxwaittimems" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L281", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_maxwaittimems_type", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "type" + }, + { + "label": "default", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L281", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_maxwaittimems_default", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "default" + }, + { + "label": "captureUrl", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L282", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_captureurl", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "captureurl" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L282", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_captureurl_type", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "type" + }, + { + "label": "capturePageTitle", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L283", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_capturepagetitle", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "capturepagetitle" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L283", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_capturepagetitle_type", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "type" + }, + { + "label": "metaSelectors", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L284", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_metaselectors", + "community": 127, + "community_name": "Schemas #127", + "norm_label": "metaselectors" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L284", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_metaselectors_type", + "community": 127, + "community_name": "Schemas #127", + "norm_label": "type" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L284", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_metaselectors_items", + "community": 127, + "community_name": "Schemas #127", + "norm_label": "items" + }, + { + "label": "sanitizeTrim", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L285", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_sanitizetrim", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "sanitizetrim" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L285", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_sanitizetrim_type", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "type" + }, + { + "label": "sanitizeStripMarkdown", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L286", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_sanitizestripmarkdown", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "sanitizestripmarkdown" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L286", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_sanitizestripmarkdown_type", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "type" + }, + { + "label": "sanitizeRemoveBoilerplate", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L287", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_sanitizeremoveboilerplate", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "sanitizeremoveboilerplate" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L287", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_sanitizeremoveboilerplate_type", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "type" + }, + { + "label": "overlayTriggerName", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L288", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_overlaytriggername", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "overlaytriggername" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L288", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_overlaytriggername_type", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "type" + }, + { + "label": "overlayModeButton", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L289", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_overlaymodebutton", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "overlaymodebutton" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L289", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_overlaymodebutton_type", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "type" + }, + { + "label": "overlayModeEmpty", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L290", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_overlaymodeempty", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "overlaymodeempty" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L290", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_overlaymodeempty_type", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "type" + }, + { + "label": "overlayModeElement", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L291", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_overlaymodeelement", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "overlaymodeelement" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L291", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_overlaymodeelement_type", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "type" + }, + { + "label": "overlayModeSelection", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L292", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_overlaymodeselection", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "overlaymodeselection" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L292", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_overlaymodeselection_type", + "community": 92, + "community_name": "Schemas #92", + "norm_label": "type" + }, + { + "label": "reasoningSection", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L296", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_defs_reasoningsection", + "community": 146, + "community_name": "Schemas #146", + "norm_label": "reasoningsection" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L297", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_reasoningsection_type", + "community": 146, + "community_name": "Schemas #146", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L298", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_reasoningsection_description", + "community": 146, + "community_name": "Schemas #146", + "norm_label": "description" + }, + { + "label": "properties", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L299", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_reasoningsection_properties", + "community": 127, + "community_name": "Schemas #127", + "norm_label": "properties" + }, + { + "label": "applyForList", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L300", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_applyforlist", + "community": 127, + "community_name": "Schemas #127", + "norm_label": "applyforlist" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L301", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_applyforlist_type", + "community": 127, + "community_name": "Schemas #127", + "norm_label": "type" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L302", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_applyforlist_items", + "community": 127, + "community_name": "Schemas #127", + "norm_label": "items" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L303", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_applyforlist_description", + "community": 127, + "community_name": "Schemas #127", + "norm_label": "description" + }, + { + "label": "goals", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L305", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_goals", + "community": 127, + "community_name": "Schemas #127", + "norm_label": "goals" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L305", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_goals_type", + "community": 127, + "community_name": "Schemas #127", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L305", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_goals_description", + "community": 127, + "community_name": "Schemas #127", + "norm_label": "description" + }, + { + "label": "role", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L306", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_role", + "community": 127, + "community_name": "Schemas #127", + "norm_label": "role" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L306", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_role_type", + "community": 127, + "community_name": "Schemas #127", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L306", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_role_description", + "community": 127, + "community_name": "Schemas #127", + "norm_label": "description" + }, + { + "label": "rules", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L307", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_rules", + "community": 127, + "community_name": "Schemas #127", + "norm_label": "rules" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L307", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_rules_type", + "community": 127, + "community_name": "Schemas #127", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L307", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_rules_description", + "community": 127, + "community_name": "Schemas #127", + "norm_label": "description" + }, + { + "label": "custom", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L308", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_custom", + "community": 127, + "community_name": "Schemas #127", + "norm_label": "custom" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L308", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_custom_type", + "community": 127, + "community_name": "Schemas #127", + "norm_label": "type" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L308", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_custom_items", + "community": 127, + "community_name": "Schemas #127", + "norm_label": "items" + }, + { + "label": "acceptFrom", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L309", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_acceptfrom", + "community": 127, + "community_name": "Schemas #127", + "norm_label": "acceptfrom" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L309", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_acceptfrom_type", + "community": 127, + "community_name": "Schemas #127", + "norm_label": "type" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L309", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_acceptfrom_items", + "community": 127, + "community_name": "Schemas #127", + "norm_label": "items" + }, + { + "label": "memoryContext", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L310", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_memorycontext", + "community": 303, + "community_name": "Schemas #303", + "norm_label": "memorycontext" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L311", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_memorycontext_type", + "community": 303, + "community_name": "Schemas #303", + "norm_label": "type" + }, + { + "label": "properties", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L312", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_memorycontext_properties", + "community": 303, + "community_name": "Schemas #303", + "norm_label": "properties" + }, + { + "label": "reasoningWorkflows", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L318", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_reasoningworkflows", + "community": 140, + "community_name": "Schemas #140", + "norm_label": "reasoningworkflows" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L318", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_reasoningworkflows_type", + "community": 140, + "community_name": "Schemas #140", + "norm_label": "type" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L318", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_reasoningworkflows_items", + "community": 140, + "community_name": "Schemas #140", + "norm_label": "items" + }, + { + "label": "executionSection", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L322", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_defs_executionsection", + "community": 232, + "community_name": "Schemas #232", + "norm_label": "executionsection" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L323", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_executionsection_type", + "community": 232, + "community_name": "Schemas #232", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L324", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_executionsection_description", + "community": 232, + "community_name": "Schemas #232", + "norm_label": "description" + }, + { + "label": "required", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L325", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_executionsection_required", + "community": 232, + "community_name": "Schemas #232", + "norm_label": "required" + }, + { + "label": "applyForList", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L325", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_applyforlist", + "community": 232, + "community_name": "Schemas #232", + "norm_label": "applyforlist" + }, + { + "label": "executionMode", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L325", + "_origin": "ast", + "id": "ref_executionmode", + "community": 232, + "community_name": "Schemas #232", + "norm_label": "executionmode" + }, + { + "label": "properties", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L326", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_executionsection_properties", + "community": 232, + "community_name": "Schemas #232", + "norm_label": "properties" + }, + { + "label": "executionMode", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L332", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_executionmode", + "community": 232, + "community_name": "Schemas #232", + "norm_label": "executionmode" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L333", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_executionmode_type", + "community": 232, + "community_name": "Schemas #232", + "norm_label": "type" + }, + { + "label": "enum", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L334", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_executionmode_enum", + "community": 232, + "community_name": "Schemas #232", + "norm_label": "enum" + }, + { + "label": "agent_workflow", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L334", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_agent_workflow", + "community": 232, + "community_name": "Schemas #232", + "norm_label": "agent_workflow" + }, + { + "label": "direct_response", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L334", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_direct_response", + "community": 232, + "community_name": "Schemas #232", + "norm_label": "direct_response" + }, + { + "label": "workflow_only", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L334", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_workflow_only", + "community": 232, + "community_name": "Schemas #232", + "norm_label": "workflow_only" + }, + { + "label": "hybrid", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L334", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_hybrid", + "community": 232, + "community_name": "Schemas #232", + "norm_label": "hybrid" + }, + { + "label": "default", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L335", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_executionmode_default", + "community": 232, + "community_name": "Schemas #232", + "norm_label": "default" + }, + { + "label": "destinations", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L337", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_destinations", + "community": 232, + "community_name": "Schemas #232", + "norm_label": "destinations" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L338", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_destinations_type", + "community": 232, + "community_name": "Schemas #232", + "norm_label": "type" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L339", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_destinations_items", + "community": 232, + "community_name": "Schemas #232", + "norm_label": "items" + }, + { + "label": "executionWorkflows", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L341", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_executionworkflows", + "community": 232, + "community_name": "Schemas #232", + "norm_label": "executionworkflows" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L342", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_executionworkflows_type", + "community": 232, + "community_name": "Schemas #232", + "norm_label": "type" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L343", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_executionworkflows_items", + "community": 232, + "community_name": "Schemas #232", + "norm_label": "items" + }, + { + "label": "destination", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L348", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_defs_destination", + "community": 304, + "community_name": "Schemas #304", + "norm_label": "destination" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L349", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_destination_type", + "community": 304, + "community_name": "Schemas #304", + "norm_label": "type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L350", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_destination_description", + "community": 304, + "community_name": "Schemas #304", + "norm_label": "description" + }, + { + "label": "required", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L351", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_destination_required", + "community": 304, + "community_name": "Schemas #304", + "norm_label": "required" + }, + { + "label": "kind", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L351", + "_origin": "ast", + "id": "ref_kind", + "community": 304, + "community_name": "Schemas #304", + "norm_label": "kind" + }, + { + "label": "properties", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L352", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_destination_properties", + "community": 304, + "community_name": "Schemas #304", + "norm_label": "properties" + }, + { + "label": "kind", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L353", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_kind", + "community": 304, + "community_name": "Schemas #304", + "norm_label": "kind" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L354", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_kind_type", + "community": 304, + "community_name": "Schemas #304", + "norm_label": "type" + }, + { + "label": "enum", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L355", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_kind_enum", + "community": 242, + "community_name": "Schemas #242", + "norm_label": "enum" + }, + { + "label": "agentBox", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L355", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_agentbox", + "community": 242, + "community_name": "Schemas #242", + "norm_label": "agentbox" + }, + { + "label": "chat", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L355", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_chat", + "community": 242, + "community_name": "Schemas #242", + "norm_label": "chat" + }, + { + "label": "email", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L355", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_email", + "community": 242, + "community_name": "Schemas #242", + "norm_label": "email" + }, + { + "label": "webhook", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L355", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_webhook", + "community": 242, + "community_name": "Schemas #242", + "norm_label": "webhook" + }, + { + "label": "storage", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L355", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_storage", + "community": 242, + "community_name": "Schemas #242", + "norm_label": "storage" + }, + { + "label": "notification", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L355", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_notification", + "community": 242, + "community_name": "Schemas #242", + "norm_label": "notification" + }, + { + "label": "pattern", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L360", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_items_pattern", + "community": 140, + "community_name": "Schemas #140", + "norm_label": "pattern" + }, + { + "label": "email", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L362", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_email", + "community": 304, + "community_name": "Schemas #304", + "norm_label": "email" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L362", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_email_type", + "community": 304, + "community_name": "Schemas #304", + "norm_label": "type" + }, + { + "label": "webhook", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L363", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_webhook", + "community": 304, + "community_name": "Schemas #304", + "norm_label": "webhook" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L363", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_webhook_type", + "community": 304, + "community_name": "Schemas #304", + "norm_label": "type" + }, + { + "label": "workflow", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L367", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_defs_workflow", + "community": 146, + "community_name": "Schemas #146", + "norm_label": "workflow" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L368", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_workflow_type", + "community": 146, + "community_name": "Schemas #146", + "norm_label": "type" + }, + { + "label": "properties", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L369", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_workflow_properties", + "community": 162, + "community_name": "Schemas #162", + "norm_label": "properties" + }, + { + "label": "internal", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L370", + "_origin": "ast", + "id": "ref_internal", + "community": 243, + "community_name": "Schemas #243", + "norm_label": "internal" + }, + { + "label": "external", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L370", + "_origin": "ast", + "id": "ref_external", + "community": 243, + "community_name": "Schemas #243", + "norm_label": "external" + }, + { + "label": "workflowId", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L371", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_properties_workflowid", + "community": 162, + "community_name": "Schemas #162", + "norm_label": "workflowid" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L371", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_workflowid_type", + "community": 162, + "community_name": "Schemas #162", + "norm_label": "type" + }, + { + "label": "_schemaInfo", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L377", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_schemainfo", + "community": 233, + "community_name": "Schemas #233", + "norm_label": "_schemainfo" + }, + { + "label": "enums", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L378", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_schemainfo_enums", + "community": 233, + "community_name": "Schemas #233", + "norm_label": "enums" + }, + { + "label": "agent.capabilities", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L379", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_enums_agent_capabilities", + "community": 380, + "community_name": "Schemas #380", + "norm_label": "agent.capabilities" + }, + { + "label": "agent.listening.sources", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L380", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_enums_agent_listening_sources", + "community": 242, + "community_name": "Schemas #242", + "norm_label": "agent.listening.sources" + }, + { + "label": "all", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L380", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_all", + "community": 242, + "community_name": "Schemas #242", + "norm_label": "all" + }, + { + "label": "voice", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L380", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_voice", + "community": 242, + "community_name": "Schemas #242", + "norm_label": "voice" + }, + { + "label": "voicememo", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L380", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_voicememo", + "community": 242, + "community_name": "Schemas #242", + "norm_label": "voicememo" + }, + { + "label": "video", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L380", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_video", + "community": 242, + "community_name": "Schemas #242", + "norm_label": "video" + }, + { + "label": "whatsapp", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L380", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_whatsapp", + "community": 242, + "community_name": "Schemas #242", + "norm_label": "whatsapp" + }, + { + "label": "pdf", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L380", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_pdf", + "community": 242, + "community_name": "Schemas #242", + "norm_label": "pdf" + }, + { + "label": "docs", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L380", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_docs", + "community": 242, + "community_name": "Schemas #242", + "norm_label": "docs" + }, + { + "label": "dom", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L380", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_dom", + "community": 242, + "community_name": "Schemas #242", + "norm_label": "dom" + }, + { + "label": "api", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L380", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_api", + "community": 242, + "community_name": "Schemas #242", + "norm_label": "api" + }, + { + "label": "workflow", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L380", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_workflow", + "community": 242, + "community_name": "Schemas #242", + "norm_label": "workflow" + }, + { + "label": "screenshot", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L380", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_screenshot", + "community": 242, + "community_name": "Schemas #242", + "norm_label": "screenshot" + }, + { + "label": "stream", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L380", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_json_ref_stream", + "community": 242, + "community_name": "Schemas #242", + "norm_label": "stream" + }, + { + "label": "trigger.type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L381", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_enums_trigger_type", + "community": 243, + "community_name": "Schemas #243", + "norm_label": "trigger.type" + }, + { + "label": "trigger.parserTrigger", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L382", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_enums_trigger_parsertrigger", + "community": 243, + "community_name": "Schemas #243", + "norm_label": "trigger.parsertrigger" + }, + { + "label": "trigger.responseReadyMode", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L383", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_enums_trigger_responsereadymode", + "community": 413, + "community_name": "Schemas #413", + "norm_label": "trigger.responsereadymode" + }, + { + "label": "executionSection.executionMode", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L384", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_enums_executionsection_executionmode", + "community": 232, + "community_name": "Schemas #232", + "norm_label": "executionsection.executionmode" + }, + { + "label": "destination.kind", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L385", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_enums_destination_kind", + "community": 242, + "community_name": "Schemas #242", + "norm_label": "destination.kind" + }, + { + "label": "agentBox.provider", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L386", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_enums_agentbox_provider", + "community": 352, + "community_name": "Schemas #352", + "norm_label": "agentbox.provider" + }, + { + "label": "agentBox.source", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L387", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_enums_agentbox_source", + "community": 233, + "community_name": "Schemas #233", + "norm_label": "agentbox.source" + }, + { + "label": "agentBox.side", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L388", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_enums_agentbox_side", + "community": 233, + "community_name": "Schemas #233", + "norm_label": "agentbox.side" + }, + { + "label": "numericFields", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L390", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_schemainfo_numericfields", + "community": 233, + "community_name": "Schemas #233", + "norm_label": "numericfields" + }, + { + "label": "agent.number", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L390", + "_origin": "ast", + "id": "ref_agent_number", + "community": 233, + "community_name": "Schemas #233", + "norm_label": "agent.number" + }, + { + "label": "agentBox.boxNumber", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L390", + "_origin": "ast", + "id": "ref_agentbox_boxnumber", + "community": 233, + "community_name": "Schemas #233", + "norm_label": "agentbox.boxnumber" + }, + { + "label": "agentBox.agentNumber", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L390", + "_origin": "ast", + "id": "ref_agentbox_agentnumber", + "community": 233, + "community_name": "Schemas #233", + "norm_label": "agentbox.agentnumber" + }, + { + "label": "trigger.parserInterval", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L390", + "_origin": "ast", + "id": "ref_trigger_parserinterval", + "community": 233, + "community_name": "Schemas #233", + "norm_label": "trigger.parserinterval" + }, + { + "label": "trigger.quietPeriodMs", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L390", + "_origin": "ast", + "id": "ref_trigger_quietperiodms", + "community": 233, + "community_name": "Schemas #233", + "norm_label": "trigger.quietperiodms" + }, + { + "label": "trigger.maxWaitTimeMs", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L390", + "_origin": "ast", + "id": "ref_trigger_maxwaittimems", + "community": 233, + "community_name": "Schemas #233", + "norm_label": "trigger.maxwaittimems" + }, + { + "label": "connectionLogic", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L391", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_schemainfo_connectionlogic", + "community": 233, + "community_name": "Schemas #233", + "norm_label": "connectionlogic" + }, + { + "label": "identifierFormat", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L392", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_schema_schemainfo_identifierformat", + "community": 233, + "community_name": "Schemas #233", + "norm_label": "identifierformat" + }, + { + "label": "optimando.template.json", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_template", + "community": 353, + "community_name": "Schemas #353", + "norm_label": "optimando.template.json" + }, + { + "label": "$schema", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L2", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_template_schema", + "community": 353, + "community_name": "Schemas #353", + "norm_label": "$schema" + }, + { + "label": "_schemaVersion", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L3", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_template_schemaversion", + "community": 353, + "community_name": "Schemas #353", + "norm_label": "_schemaversion" + }, + { + "label": "_exportedAt", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L4", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_template_exportedat", + "community": 353, + "community_name": "Schemas #353", + "norm_label": "_exportedat" + }, + { + "label": "_source", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L5", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_template_source", + "community": 353, + "community_name": "Schemas #353", + "norm_label": "_source" + }, + { + "label": "_helper", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L6", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_template_helper", + "community": 353, + "community_name": "Schemas #353", + "norm_label": "_helper" + }, + { + "label": "agents", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L8", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_template_agents", + "community": 353, + "community_name": "Schemas #353", + "norm_label": "agents" + }, + { + "label": "agentBoxes", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L108", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_template_agentboxes", + "community": 353, + "community_name": "Schemas #353", + "norm_label": "agentboxes" + }, + { + "label": "miniApps", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L130", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_template_miniapps", + "community": 353, + "community_name": "Schemas #353", + "norm_label": "miniapps" + }, + { + "label": "connectionInfo", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L132", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_template_connectioninfo", + "community": 353, + "community_name": "Schemas #353", + "norm_label": "connectioninfo" + }, + { + "label": "agentToBoxMapping", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L133", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_template_connectioninfo_agenttoboxmapping", + "community": 353, + "community_name": "Schemas #353", + "norm_label": "agenttoboxmapping" + }, + { + "label": "_schemaInfo", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L142", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_template_schemainfo", + "community": 416, + "community_name": "Schemas #416", + "norm_label": "_schemainfo" + }, + { + "label": "enums", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L143", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_template_schemainfo_enums", + "community": 416, + "community_name": "Schemas #416", + "norm_label": "enums" + }, + { + "label": "trigger.type", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L144", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_template_enums_trigger_type", + "community": 381, + "community_name": "Schemas #381", + "norm_label": "trigger.type" + }, + { + "label": "direct_tag", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L144", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_template_json_ref_direct_tag", + "community": 381, + "community_name": "Schemas #381", + "norm_label": "direct_tag" + }, + { + "label": "tag_and_condition", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L144", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_template_json_ref_tag_and_condition", + "community": 381, + "community_name": "Schemas #381", + "norm_label": "tag_and_condition" + }, + { + "label": "workflow_condition", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L144", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_template_json_ref_workflow_condition", + "community": 381, + "community_name": "Schemas #381", + "norm_label": "workflow_condition" + }, + { + "label": "dom_event", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L144", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_template_json_ref_dom_event", + "community": 381, + "community_name": "Schemas #381", + "norm_label": "dom_event" + }, + { + "label": "dom_parser", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L144", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_template_json_ref_dom_parser", + "community": 381, + "community_name": "Schemas #381", + "norm_label": "dom_parser" + }, + { + "label": "augmented_overlay", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L144", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_template_json_ref_augmented_overlay", + "community": 381, + "community_name": "Schemas #381", + "norm_label": "augmented_overlay" + }, + { + "label": "agent", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L144", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_template_json_ref_agent", + "community": 381, + "community_name": "Schemas #381", + "norm_label": "agent" + }, + { + "label": "miniapp", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L144", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_template_json_ref_miniapp", + "community": 381, + "community_name": "Schemas #381", + "norm_label": "miniapp" + }, + { + "label": "manual", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L144", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_template_json_ref_manual", + "community": 430, + "community_name": "Schemas #430", + "norm_label": "manual" + }, + { + "label": "trigger.parserTrigger", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L145", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_template_enums_trigger_parsertrigger", + "community": 430, + "community_name": "Schemas #430", + "norm_label": "trigger.parsertrigger" + }, + { + "label": "page_load", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L145", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_template_json_ref_page_load", + "community": 430, + "community_name": "Schemas #430", + "norm_label": "page_load" + }, + { + "label": "dom_change", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L145", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_template_json_ref_dom_change", + "community": 430, + "community_name": "Schemas #430", + "norm_label": "dom_change" + }, + { + "label": "interval", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L145", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_template_json_ref_interval", + "community": 430, + "community_name": "Schemas #430", + "norm_label": "interval" + }, + { + "label": "button_click", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L145", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_template_json_ref_button_click", + "community": 430, + "community_name": "Schemas #430", + "norm_label": "button_click" + }, + { + "label": "trigger.responseReadyMode", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L146", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_template_enums_trigger_responsereadymode", + "community": 416, + "community_name": "Schemas #416", + "norm_label": "trigger.responsereadymode" + }, + { + "label": "first_change", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L146", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_template_json_ref_first_change", + "community": 416, + "community_name": "Schemas #416", + "norm_label": "first_change" + }, + { + "label": "quiet_period", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L146", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_template_json_ref_quiet_period", + "community": 416, + "community_name": "Schemas #416", + "norm_label": "quiet_period" + }, + { + "label": "selector_signal", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L146", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_template_json_ref_selector_signal", + "community": 416, + "community_name": "Schemas #416", + "norm_label": "selector_signal" + }, + { + "label": "executionSection.executionMode", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L147", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_template_enums_executionsection_executionmode", + "community": 448, + "community_name": "Schemas #448", + "norm_label": "executionsection.executionmode" + }, + { + "label": "agent_workflow", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L147", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_template_json_ref_agent_workflow", + "community": 448, + "community_name": "Schemas #448", + "norm_label": "agent_workflow" + }, + { + "label": "direct_response", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L147", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_template_json_ref_direct_response", + "community": 448, + "community_name": "Schemas #448", + "norm_label": "direct_response" + }, + { + "label": "workflow_only", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L147", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_template_json_ref_workflow_only", + "community": 448, + "community_name": "Schemas #448", + "norm_label": "workflow_only" + }, + { + "label": "hybrid", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L147", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_template_json_ref_hybrid", + "community": 448, + "community_name": "Schemas #448", + "norm_label": "hybrid" + }, + { + "label": "destination.kind", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L148", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_template_enums_destination_kind", + "community": 415, + "community_name": "Schemas #415", + "norm_label": "destination.kind" + }, + { + "label": "agentBox", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L148", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_template_json_ref_agentbox", + "community": 415, + "community_name": "Schemas #415", + "norm_label": "agentbox" + }, + { + "label": "chat", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L148", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_template_json_ref_chat", + "community": 415, + "community_name": "Schemas #415", + "norm_label": "chat" + }, + { + "label": "email", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L148", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_template_json_ref_email", + "community": 415, + "community_name": "Schemas #415", + "norm_label": "email" + }, + { + "label": "webhook", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L148", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_template_json_ref_webhook", + "community": 415, + "community_name": "Schemas #415", + "norm_label": "webhook" + }, + { + "label": "storage", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L148", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_template_json_ref_storage", + "community": 415, + "community_name": "Schemas #415", + "norm_label": "storage" + }, + { + "label": "notification", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L148", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_template_json_ref_notification", + "community": 415, + "community_name": "Schemas #415", + "norm_label": "notification" + }, + { + "label": "agentBox.provider", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L149", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_template_enums_agentbox_provider", + "community": 414, + "community_name": "Schemas #414", + "norm_label": "agentbox.provider" + }, + { + "label": "OpenAI", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L149", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_template_json_ref_openai", + "community": 414, + "community_name": "Schemas #414", + "norm_label": "openai" + }, + { + "label": "Claude", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L149", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_template_json_ref_claude", + "community": 414, + "community_name": "Schemas #414", + "norm_label": "claude" + }, + { + "label": "Gemini", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L149", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_template_json_ref_gemini", + "community": 414, + "community_name": "Schemas #414", + "norm_label": "gemini" + }, + { + "label": "Grok", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L149", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_template_json_ref_grok", + "community": 414, + "community_name": "Schemas #414", + "norm_label": "grok" + }, + { + "label": "Local AI", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L149", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_template_json_ref_local_ai", + "community": 414, + "community_name": "Schemas #414", + "norm_label": "local ai" + }, + { + "label": "Image AI", + "file_type": "concept", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L149", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_template_json_ref_image_ai", + "community": 414, + "community_name": "Schemas #414", + "norm_label": "image ai" + }, + { + "label": "connectionLogic", + "file_type": "code", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L151", + "_origin": "ast", + "id": "apps_extension_chromium_schemas_optimando_template_schemainfo_connectionlogic", + "community": 416, + "community_name": "Schemas #416", + "norm_label": "connectionlogic" + }, + { + "label": "agent-manager-v2.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/agent-manager-v2.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_agent_manager_v2", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "agent-manager-v2.ts" + }, + { + "label": "AgentV2", + "file_type": "code", + "source_file": "apps/extension-chromium/src/agent-manager-v2.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_agent_manager_v2_agentv2", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "agentv2" + }, + { + "label": "AgentEvent", + "file_type": "code", + "source_file": "apps/extension-chromium/src/agent-manager-v2.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_agent_manager_v2_agentevent", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "agentevent" + }, + { + "label": "getCurrentSessionKey()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/agent-manager-v2.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_agent_manager_v2_getcurrentsessionkey", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "getcurrentsessionkey()" + }, + { + "label": "setCurrentSessionKey()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/agent-manager-v2.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_agent_manager_v2_setcurrentsessionkey", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "setcurrentsessionkey()" + }, + { + "label": "ensureActiveSession()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/agent-manager-v2.ts", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_agent_manager_v2_ensureactivesession", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "ensureactivesession()" + }, + { + "label": "persistSession()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/agent-manager-v2.ts", + "source_location": "L77", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_agent_manager_v2_persistsession", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "persistsession()" + }, + { + "label": "addAgent()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/agent-manager-v2.ts", + "source_location": "L88", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_agent_manager_v2_addagent", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "addagent()" + }, + { + "label": "removeAgent()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/agent-manager-v2.ts", + "source_location": "L101", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_agent_manager_v2_removeagent", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "removeagent()" + }, + { + "label": "toggleAgent()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/agent-manager-v2.ts", + "source_location": "L113", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_agent_manager_v2_toggleagent", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "toggleagent()" + }, + { + "label": "ensureUI()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/agent-manager-v2.ts", + "source_location": "L124", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_agent_manager_v2_ensureui", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "ensureui()" + }, + { + "label": "openOverlay()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/agent-manager-v2.ts", + "source_location": "L129", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_agent_manager_v2_openoverlay", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "openoverlay()" + }, + { + "label": "renderList()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/agent-manager-v2.ts", + "source_location": "L165", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_agent_manager_v2_renderlist", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "renderlist()" + }, + { + "label": "boot()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/agent-manager-v2.ts", + "source_location": "L211", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_agent_manager_v2_boot", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "boot()" + }, + { + "label": "archivalService.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/audit/archivalService.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_audit_archivalservice", + "community": 110, + "community_name": "Audit", + "norm_label": "archivalservice.ts" + }, + { + "label": "computeHash()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/audit/archivalService.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_audit_archivalservice_computehash", + "community": 110, + "community_name": "Audit", + "norm_label": "computehash()" + }, + { + "label": "checkArchiveEligibility()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/audit/archivalService.ts", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_audit_archivalservice_checkarchiveeligibility", + "community": 110, + "community_name": "Audit", + "norm_label": "checkarchiveeligibility()" + }, + { + "label": "archiveMessage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/audit/archivalService.ts", + "source_location": "L135", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_audit_archivalservice_archivemessage", + "community": 110, + "community_name": "Audit", + "norm_label": "archivemessage()" + }, + { + "label": "archiveRecords", + "file_type": "code", + "source_file": "apps/extension-chromium/src/audit/archivalService.ts", + "source_location": "L267", + "_origin": "ast", + "id": "apps_extension_chromium_src_audit_archivalservice_archiverecords", + "community": 110, + "community_name": "Audit", + "norm_label": "archiverecords" + }, + { + "label": "storeArchiveRecord()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/audit/archivalService.ts", + "source_location": "L272", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_audit_archivalservice_storearchiverecord", + "community": 110, + "community_name": "Audit", + "norm_label": "storearchiverecord()" + }, + { + "label": "getArchiveRecord()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/audit/archivalService.ts", + "source_location": "L279", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_audit_archivalservice_getarchiverecord", + "community": 110, + "community_name": "Audit", + "norm_label": "getarchiverecord()" + }, + { + "label": "isArchived()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/audit/archivalService.ts", + "source_location": "L286", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_audit_archivalservice_isarchived", + "community": 110, + "community_name": "Audit", + "norm_label": "isarchived()" + }, + { + "label": "ArchiveButton.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/audit/components/ArchiveButton.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_audit_components_archivebutton", + "community": 110, + "community_name": "Audit", + "norm_label": "archivebutton.tsx" + }, + { + "label": "ArchiveButtonProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/audit/components/ArchiveButton.tsx", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_audit_components_archivebutton_archivebuttonprops", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "archivebuttonprops" + }, + { + "label": "ArchiveButton()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/audit/components/ArchiveButton.tsx", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_audit_components_archivebutton_archivebutton", + "community": 110, + "community_name": "Audit", + "norm_label": "archivebutton()" + }, + { + "label": "AuditTrailPanel.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/audit/components/AuditTrailPanel.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_audit_components_audittrailpanel", + "community": 110, + "community_name": "Audit", + "norm_label": "audittrailpanel.tsx" + }, + { + "label": "AuditTrailPanelProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/audit/components/AuditTrailPanel.tsx", + "source_location": "L15", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_audit_components_audittrailpanel_audittrailpanelprops", + "community": 110, + "community_name": "Audit", + "norm_label": "audittrailpanelprops" + }, + { + "label": "EVENT_TYPE_CONFIG", + "file_type": "code", + "source_file": "apps/extension-chromium/src/audit/components/AuditTrailPanel.tsx", + "source_location": "L25", + "_origin": "ast", + "id": "apps_extension_chromium_src_audit_components_audittrailpanel_event_type_config", + "community": 110, + "community_name": "Audit", + "norm_label": "event_type_config" + }, + { + "label": "AuditTrailPanel()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/audit/components/AuditTrailPanel.tsx", + "source_location": "L42", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_audit_components_audittrailpanel_audittrailpanel", + "community": 110, + "community_name": "Audit", + "norm_label": "audittrailpanel()" + }, + { + "label": "audit/components/index.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/audit/components/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_audit_components_index", + "community": 110, + "community_name": "Audit", + "norm_label": "audit/components/index.ts" + }, + { + "label": "exportService.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/audit/exportService.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_audit_exportservice", + "community": 110, + "community_name": "Audit", + "norm_label": "exportservice.ts" + }, + { + "label": "computeHash()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/audit/exportService.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_audit_exportservice_computehash", + "community": 110, + "community_name": "Audit", + "norm_label": "computehash()" + }, + { + "label": "exportAuditLog()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/audit/exportService.ts", + "source_location": "L46", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_audit_exportservice_exportauditlog", + "community": 110, + "community_name": "Audit", + "norm_label": "exportauditlog()" + }, + { + "label": "downloadAuditLog()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/audit/exportService.ts", + "source_location": "L93", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_audit_exportservice_downloadauditlog", + "community": 110, + "community_name": "Audit", + "norm_label": "downloadauditlog()" + }, + { + "label": "buildProofBundle()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/audit/exportService.ts", + "source_location": "L124", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_audit_exportservice_buildproofbundle", + "community": 110, + "community_name": "Audit", + "norm_label": "buildproofbundle()" + }, + { + "label": "downloadProofBundle()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/audit/exportService.ts", + "source_location": "L314", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_audit_exportservice_downloadproofbundle", + "community": 110, + "community_name": "Audit", + "norm_label": "downloadproofbundle()" + }, + { + "label": "exportRejectedProof()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/audit/exportService.ts", + "source_location": "L355", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_audit_exportservice_exportrejectedproof", + "community": 110, + "community_name": "Audit", + "norm_label": "exportrejectedproof()" + }, + { + "label": "audit/index.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/audit/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_audit_index", + "community": 110, + "community_name": "Audit", + "norm_label": "audit/index.ts" + }, + { + "label": "audit/types.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/audit/types.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_audit_types", + "community": 110, + "community_name": "Audit", + "norm_label": "audit/types.ts" + }, + { + "label": "AuditEventType", + "file_type": "code", + "source_file": "apps/extension-chromium/src/audit/types.ts", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_audit_types_auditeventtype", + "community": 110, + "community_name": "Audit", + "norm_label": "auditeventtype" + }, + { + "label": "AuditActor", + "file_type": "code", + "source_file": "apps/extension-chromium/src/audit/types.ts", + "source_location": "L49", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_audit_types_auditactor", + "community": 110, + "community_name": "Audit", + "norm_label": "auditactor" + }, + { + "label": "AuditRefs", + "file_type": "code", + "source_file": "apps/extension-chromium/src/audit/types.ts", + "source_location": "L58", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_audit_types_auditrefs", + "community": 110, + "community_name": "Audit", + "norm_label": "auditrefs" + }, + { + "label": "AuditEvent", + "file_type": "code", + "source_file": "apps/extension-chromium/src/audit/types.ts", + "source_location": "L84", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_audit_types_auditevent", + "community": 110, + "community_name": "Audit", + "norm_label": "auditevent" + }, + { + "label": "AuditChain", + "file_type": "code", + "source_file": "apps/extension-chromium/src/audit/types.ts", + "source_location": "L123", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_audit_types_auditchain", + "community": 110, + "community_name": "Audit", + "norm_label": "auditchain" + }, + { + "label": "ArchiveRecord", + "file_type": "code", + "source_file": "apps/extension-chromium/src/audit/types.ts", + "source_location": "L153", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_audit_types_archiverecord", + "community": 110, + "community_name": "Audit", + "norm_label": "archiverecord" + }, + { + "label": "AuditLogExport", + "file_type": "code", + "source_file": "apps/extension-chromium/src/audit/types.ts", + "source_location": "L221", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_audit_types_auditlogexport", + "community": 110, + "community_name": "Audit", + "norm_label": "auditlogexport" + }, + { + "label": "ProofBundleManifest", + "file_type": "code", + "source_file": "apps/extension-chromium/src/audit/types.ts", + "source_location": "L248", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_audit_types_proofbundlemanifest", + "community": 110, + "community_name": "Audit", + "norm_label": "proofbundlemanifest" + }, + { + "label": "RejectedProofBundle", + "file_type": "code", + "source_file": "apps/extension-chromium/src/audit/types.ts", + "source_location": "L284", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_audit_types_rejectedproofbundle", + "community": 110, + "community_name": "Audit", + "norm_label": "rejectedproofbundle" + }, + { + "label": "ArchiveEligibility", + "file_type": "code", + "source_file": "apps/extension-chromium/src/audit/types.ts", + "source_location": "L303", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_audit_types_archiveeligibility", + "community": 110, + "community_name": "Audit", + "norm_label": "archiveeligibility" + }, + { + "label": "useAuditStore.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/audit/useAuditStore.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_audit_useauditstore", + "community": 110, + "community_name": "Audit", + "norm_label": "useauditstore.ts" + }, + { + "label": "computeHash()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/audit/useAuditStore.ts", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_audit_useauditstore_computehash", + "community": 110, + "community_name": "Audit", + "norm_label": "computehash()" + }, + { + "label": "computeEventHash()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/audit/useAuditStore.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_audit_useauditstore_computeeventhash", + "community": 110, + "community_name": "Audit", + "norm_label": "computeeventhash()" + }, + { + "label": "AuditStoreState", + "file_type": "code", + "source_file": "apps/extension-chromium/src/audit/useAuditStore.ts", + "source_location": "L57", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_audit_useauditstore_auditstorestate", + "community": 110, + "community_name": "Audit", + "norm_label": "auditstorestate" + }, + { + "label": "useAuditStore", + "file_type": "code", + "source_file": "apps/extension-chromium/src/audit/useAuditStore.ts", + "source_location": "L99", + "_origin": "ast", + "id": "apps_extension_chromium_src_audit_useauditstore_useauditstore", + "community": 110, + "community_name": "Audit", + "norm_label": "useauditstore" + }, + { + "label": "logImportEvent()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/audit/useAuditStore.ts", + "source_location": "L269", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_audit_useauditstore_logimportevent", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "logimportevent()" + }, + { + "label": "logVerificationEvent()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/audit/useAuditStore.ts", + "source_location": "L286", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_audit_useauditstore_logverificationevent", + "community": 110, + "community_name": "Audit", + "norm_label": "logverificationevent()" + }, + { + "label": "logDispatchEvent()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/audit/useAuditStore.ts", + "source_location": "L306", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_audit_useauditstore_logdispatchevent", + "community": 110, + "community_name": "Audit", + "norm_label": "logdispatchevent()" + }, + { + "label": "logDeliveryEvent()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/audit/useAuditStore.ts", + "source_location": "L323", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_audit_useauditstore_logdeliveryevent", + "community": 110, + "community_name": "Audit", + "norm_label": "logdeliveryevent()" + }, + { + "label": "logReconstructionEvent()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/audit/useAuditStore.ts", + "source_location": "L343", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_audit_useauditstore_logreconstructionevent", + "community": 110, + "community_name": "Audit", + "norm_label": "logreconstructionevent()" + }, + { + "label": "logArchiveEvent()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/audit/useAuditStore.ts", + "source_location": "L372", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_audit_useauditstore_logarchiveevent", + "community": 110, + "community_name": "Audit", + "norm_label": "logarchiveevent()" + }, + { + "label": "logExportEvent()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/audit/useAuditStore.ts", + "source_location": "L388", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_audit_useauditstore_logexportevent", + "community": 110, + "community_name": "Audit", + "norm_label": "logexportevent()" + }, + { + "label": "useAuditEvents()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/audit/useAuditStore.ts", + "source_location": "L408", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_audit_useauditstore_useauditevents", + "community": 110, + "community_name": "Audit", + "norm_label": "useauditevents()" + }, + { + "label": "useAuditChain()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/audit/useAuditStore.ts", + "source_location": "L411", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_audit_useauditstore_useauditchain", + "community": 110, + "community_name": "Audit", + "norm_label": "useauditchain()" + }, + { + "label": "ListenerManager.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_listenermanager", + "community": 111, + "community_name": "Automation Triggers", + "norm_label": "listenermanager.ts" + }, + { + "label": "ReasoningCallback", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L31", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_listenermanager_reasoningcallback", + "community": 111, + "community_name": "Automation Triggers", + "norm_label": "reasoningcallback" + }, + { + "label": "ListenerManager", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L70", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_listenermanager_listenermanager", + "community": 234, + "community_name": "Automation", + "norm_label": "listenermanager" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L98", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_listenermanager_listenermanager_constructor", + "community": 107, + "community_name": "Automation Workflows", + "norm_label": ".constructor()" + }, + { + "label": ".evaluateUnifiedTrigger()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L117", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_listenermanager_listenermanager_evaluateunifiedtrigger", + "community": 305, + "community_name": "Automation Adapters #305", + "norm_label": ".evaluateunifiedtrigger()" + }, + { + "label": ".getEventTagMatcher()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L194", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_listenermanager_listenermanager_geteventtagmatcher", + "community": 234, + "community_name": "Automation", + "norm_label": ".geteventtagmatcher()" + }, + { + "label": ".register()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L203", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_listenermanager_listenermanager_register", + "community": 234, + "community_name": "Automation", + "norm_label": ".register()" + }, + { + "label": ".unregister()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L217", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_listenermanager_listenermanager_unregister", + "community": 234, + "community_name": "Automation", + "norm_label": ".unregister()" + }, + { + "label": ".get()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L229", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_listenermanager_listenermanager_get", + "community": 234, + "community_name": "Automation", + "norm_label": ".get()" + }, + { + "label": ".getAll()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L238", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_listenermanager_listenermanager_getall", + "community": 234, + "community_name": "Automation", + "norm_label": ".getall()" + }, + { + "label": ".setReasoningCallback()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L247", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_listenermanager_listenermanager_setreasoningcallback", + "community": 234, + "community_name": "Automation", + "norm_label": ".setreasoningcallback()" + }, + { + "label": ".getTriggerRegistry()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L254", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_listenermanager_listenermanager_gettriggerregistry", + "community": 234, + "community_name": "Automation", + "norm_label": ".gettriggerregistry()" + }, + { + "label": ".getWorkflowRegistry()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L261", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_listenermanager_listenermanager_getworkflowregistry", + "community": 107, + "community_name": "Automation Workflows", + "norm_label": ".getworkflowregistry()" + }, + { + "label": ".start()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L270", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_listenermanager_listenermanager_start", + "community": 111, + "community_name": "Automation Triggers", + "norm_label": ".start()" + }, + { + "label": ".stop()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L289", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_listenermanager_listenermanager_stop", + "community": 234, + "community_name": "Automation", + "norm_label": ".stop()" + }, + { + "label": ".getIsRunning()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L309", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_listenermanager_listenermanager_getisrunning", + "community": 234, + "community_name": "Automation", + "norm_label": ".getisrunning()" + }, + { + "label": ".processEvent()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L319", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_listenermanager_listenermanager_processevent", + "community": 234, + "community_name": "Automation", + "norm_label": ".processevent()" + }, + { + "label": ".getMatchingAutomations()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L347", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_listenermanager_listenermanager_getmatchingautomations", + "community": 234, + "community_name": "Automation", + "norm_label": ".getmatchingautomations()" + }, + { + "label": ".matchAutomation()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L372", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_listenermanager_listenermanager_matchautomation", + "community": 234, + "community_name": "Automation", + "norm_label": ".matchautomation()" + }, + { + "label": ".matchSource()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L436", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_listenermanager_listenermanager_matchsource", + "community": 234, + "community_name": "Automation", + "norm_label": ".matchsource()" + }, + { + "label": ".matchScope()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L443", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_listenermanager_listenermanager_matchscope", + "community": 234, + "community_name": "Automation", + "norm_label": ".matchscope()" + }, + { + "label": ".matchModalities()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L461", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_listenermanager_listenermanager_matchmodalities", + "community": 234, + "community_name": "Automation", + "norm_label": ".matchmodalities()" + }, + { + "label": ".extractMentions()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L472", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_listenermanager_listenermanager_extractmentions", + "community": 234, + "community_name": "Automation", + "norm_label": ".extractmentions()" + }, + { + "label": ".matchExpectedContext()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L481", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_listenermanager_listenermanager_matchexpectedcontext", + "community": 234, + "community_name": "Automation", + "norm_label": ".matchexpectedcontext()" + }, + { + "label": ".processAutomation()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L493", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_listenermanager_listenermanager_processautomation", + "community": 234, + "community_name": "Automation", + "norm_label": ".processautomation()" + }, + { + "label": ".clear()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L613", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_listenermanager_listenermanager_clear", + "community": 234, + "community_name": "Automation", + "norm_label": ".clear()" + }, + { + "label": "ConditionEngine.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/__tests__/ConditionEngine.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_tests_conditionengine_test", + "community": 141, + "community_name": "Automation Conditions", + "norm_label": "conditionengine.test.ts" + }, + { + "label": "LegacyConfigAdapter.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/__tests__/LegacyConfigAdapter.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_tests_legacyconfigadapter_test", + "community": 269, + "community_name": "Automation Adapters", + "norm_label": "legacyconfigadapter.test.ts" + }, + { + "label": "ListenerManager.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/__tests__/ListenerManager.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_tests_listenermanager_test", + "community": 111, + "community_name": "Automation Triggers", + "norm_label": "listenermanager.test.ts" + }, + { + "label": "TriggerRegistry.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/__tests__/TriggerRegistry.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_tests_triggerregistry_test", + "community": 111, + "community_name": "Automation Triggers", + "norm_label": "triggerregistry.test.ts" + }, + { + "label": "WorkflowRunner.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/__tests__/WorkflowRunner.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_tests_workflowrunner_test", + "community": 107, + "community_name": "Automation Workflows", + "norm_label": "workflowrunner.test.ts" + }, + { + "label": "LegacyConfigAdapter.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/adapters/LegacyConfigAdapter.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter", + "community": 269, + "community_name": "Automation Adapters", + "norm_label": "legacyconfigadapter.ts" + }, + { + "label": "adaptLegacySource()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/adapters/LegacyConfigAdapter.ts", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_adaptlegacysource", + "community": 269, + "community_name": "Automation Adapters", + "norm_label": "adaptlegacysource()" + }, + { + "label": "inferModalities()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/adapters/LegacyConfigAdapter.ts", + "source_location": "L50", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_infermodalities", + "community": 269, + "community_name": "Automation Adapters", + "norm_label": "infermodalities()" + }, + { + "label": "extractPatterns()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/adapters/LegacyConfigAdapter.ts", + "source_location": "L89", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_extractpatterns", + "community": 269, + "community_name": "Automation Adapters", + "norm_label": "extractpatterns()" + }, + { + "label": "adaptLegacyConfig()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/adapters/LegacyConfigAdapter.ts", + "source_location": "L103", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_adaptlegacyconfig", + "community": 269, + "community_name": "Automation Adapters", + "norm_label": "adaptlegacyconfig()" + }, + { + "label": "LegacyConfigAdapter", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/adapters/LegacyConfigAdapter.ts", + "source_location": "L164", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_legacyconfigadapter", + "community": 269, + "community_name": "Automation Adapters", + "norm_label": "legacyconfigadapter" + }, + { + "label": ".adapt()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/adapters/LegacyConfigAdapter.ts", + "source_location": "L171", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_legacyconfigadapter_adapt", + "community": 269, + "community_name": "Automation Adapters", + "norm_label": ".adapt()" + }, + { + "label": ".adaptMany()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/adapters/LegacyConfigAdapter.ts", + "source_location": "L181", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_legacyconfigadapter_adaptmany", + "community": 269, + "community_name": "Automation Adapters", + "norm_label": ".adaptmany()" + }, + { + "label": ".isLegacyConfig()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/adapters/LegacyConfigAdapter.ts", + "source_location": "L191", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_legacyconfigadapter_islegacyconfig", + "community": 269, + "community_name": "Automation Adapters", + "norm_label": ".islegacyconfig()" + }, + { + "label": ".isNewConfig()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/adapters/LegacyConfigAdapter.ts", + "source_location": "L217", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_legacyconfigadapter_isnewconfig", + "community": 269, + "community_name": "Automation Adapters", + "norm_label": ".isnewconfig()" + }, + { + "label": ".ensureNewFormat()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/adapters/LegacyConfigAdapter.ts", + "source_location": "L241", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_legacyconfigadapter_ensurenewformat", + "community": 269, + "community_name": "Automation Adapters", + "norm_label": ".ensurenewformat()" + }, + { + "label": ".migrateSource()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/adapters/LegacyConfigAdapter.ts", + "source_location": "L275", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_legacyconfigadapter_migratesource", + "community": 269, + "community_name": "Automation Adapters", + "norm_label": ".migratesource()" + }, + { + "label": "legacyAdapter", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/adapters/LegacyConfigAdapter.ts", + "source_location": "L283", + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_legacyadapter", + "community": 269, + "community_name": "Automation Adapters", + "norm_label": "legacyadapter" + }, + { + "label": "TriggerMigration.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/adapters/TriggerMigration.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_adapters_triggermigration", + "community": 305, + "community_name": "Automation Adapters #305", + "norm_label": "triggermigration.ts" + }, + { + "label": "MigrationResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/adapters/TriggerMigration.ts", + "source_location": "L31", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_adapters_triggermigration_migrationresult", + "community": 305, + "community_name": "Automation Adapters #305", + "norm_label": "migrationresult" + }, + { + "label": "ListeningMigrationResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/adapters/TriggerMigration.ts", + "source_location": "L48", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_adapters_triggermigration_listeningmigrationresult", + "community": 305, + "community_name": "Automation Adapters #305", + "norm_label": "listeningmigrationresult" + }, + { + "label": "TriggerMigration", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/adapters/TriggerMigration.ts", + "source_location": "L67", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_adapters_triggermigration_triggermigration", + "community": 305, + "community_name": "Automation Adapters #305", + "norm_label": "triggermigration" + }, + { + "label": ".migrateTrigger()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/adapters/TriggerMigration.ts", + "source_location": "L74", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_adapters_triggermigration_triggermigration_migratetrigger", + "community": 305, + "community_name": "Automation Adapters #305", + "norm_label": ".migratetrigger()" + }, + { + "label": ".migrateListeningConfig()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/adapters/TriggerMigration.ts", + "source_location": "L183", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_adapters_triggermigration_triggermigration_migratelisteningconfig", + "community": 305, + "community_name": "Automation Adapters #305", + "norm_label": ".migratelisteningconfig()" + }, + { + "label": ".migrateLegacyTrigger()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/adapters/TriggerMigration.ts", + "source_location": "L233", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_adapters_triggermigration_triggermigration_migratelegacytrigger", + "community": 305, + "community_name": "Automation Adapters #305", + "norm_label": ".migratelegacytrigger()" + }, + { + "label": ".inferChannel()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/adapters/TriggerMigration.ts", + "source_location": "L299", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_adapters_triggermigration_triggermigration_inferchannel", + "community": 305, + "community_name": "Automation Adapters #305", + "norm_label": ".inferchannel()" + }, + { + "label": ".generateId()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/adapters/TriggerMigration.ts", + "source_location": "L322", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_adapters_triggermigration_triggermigration_generateid", + "community": 305, + "community_name": "Automation Adapters #305", + "norm_label": ".generateid()" + }, + { + "label": ".needsMigration()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/adapters/TriggerMigration.ts", + "source_location": "L332", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_adapters_triggermigration_triggermigration_needsmigration", + "community": 305, + "community_name": "Automation Adapters #305", + "norm_label": ".needsmigration()" + }, + { + "label": "adapters/index.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/adapters/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_adapters_index", + "community": 269, + "community_name": "Automation Adapters", + "norm_label": "adapters/index.ts" + }, + { + "label": "ConditionEngine.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_conditions_conditionengine", + "community": 141, + "community_name": "Automation Conditions", + "norm_label": "conditionengine.ts" + }, + { + "label": "isAllCondition()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_conditions_conditionengine_isallcondition", + "community": 141, + "community_name": "Automation Conditions", + "norm_label": "isallcondition()" + }, + { + "label": "isAnyCondition()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_conditions_conditionengine_isanycondition", + "community": 141, + "community_name": "Automation Conditions", + "norm_label": "isanycondition()" + }, + { + "label": "isNotCondition()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_conditions_conditionengine_isnotcondition", + "community": 141, + "community_name": "Automation Conditions", + "norm_label": "isnotcondition()" + }, + { + "label": "isFieldCondition()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_conditions_conditionengine_isfieldcondition", + "community": 141, + "community_name": "Automation Conditions", + "norm_label": "isfieldcondition()" + }, + { + "label": "ConditionEngine", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L57", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine", + "community": 141, + "community_name": "Automation Conditions", + "norm_label": "conditionengine" + }, + { + "label": ".evaluate()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L65", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_evaluate", + "community": 141, + "community_name": "Automation Conditions", + "norm_label": ".evaluate()" + }, + { + "label": ".evaluateCondition()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L77", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_evaluatecondition", + "community": 141, + "community_name": "Automation Conditions", + "norm_label": ".evaluatecondition()" + }, + { + "label": ".evaluateAll()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L106", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_evaluateall", + "community": 141, + "community_name": "Automation Conditions", + "norm_label": ".evaluateall()" + }, + { + "label": ".evaluateAny()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L118", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_evaluateany", + "community": 141, + "community_name": "Automation Conditions", + "norm_label": ".evaluateany()" + }, + { + "label": ".evaluateNot()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L130", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_evaluatenot", + "community": 141, + "community_name": "Automation Conditions", + "norm_label": ".evaluatenot()" + }, + { + "label": ".evaluateField()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L137", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_evaluatefield", + "community": 141, + "community_name": "Automation Conditions", + "norm_label": ".evaluatefield()" + }, + { + "label": ".validate()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L149", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_validate", + "community": 141, + "community_name": "Automation Conditions", + "norm_label": ".validate()" + }, + { + "label": ".validateCondition()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L167", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_validatecondition", + "community": 141, + "community_name": "Automation Conditions", + "norm_label": ".validatecondition()" + }, + { + "label": ".eq()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L227", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_eq", + "community": 141, + "community_name": "Automation Conditions", + "norm_label": ".eq()" + }, + { + "label": ".ne()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L234", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_ne", + "community": 141, + "community_name": "Automation Conditions", + "norm_label": ".ne()" + }, + { + "label": ".contains()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L241", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_contains", + "community": 141, + "community_name": "Automation Conditions", + "norm_label": ".contains()" + }, + { + "label": ".gt()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L248", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_gt", + "community": 141, + "community_name": "Automation Conditions", + "norm_label": ".gt()" + }, + { + "label": ".lt()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L255", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_lt", + "community": 141, + "community_name": "Automation Conditions", + "norm_label": ".lt()" + }, + { + "label": ".all()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L262", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_all", + "community": 141, + "community_name": "Automation Conditions", + "norm_label": ".all()" + }, + { + "label": ".any()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L269", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_any", + "community": 141, + "community_name": "Automation Conditions", + "norm_label": ".any()" + }, + { + "label": ".not()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L276", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_not", + "community": 141, + "community_name": "Automation Conditions", + "norm_label": ".not()" + }, + { + "label": ".exists()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L283", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_exists", + "community": 141, + "community_name": "Automation Conditions", + "norm_label": ".exists()" + }, + { + "label": ".notExists()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L290", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_notexists", + "community": 141, + "community_name": "Automation Conditions", + "norm_label": ".notexists()" + }, + { + "label": ".regex()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L297", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_regex", + "community": 141, + "community_name": "Automation Conditions", + "norm_label": ".regex()" + }, + { + "label": ".in()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L304", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_in", + "community": 141, + "community_name": "Automation Conditions", + "norm_label": ".in()" + }, + { + "label": "EventTagMatcher.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_conditions_eventtagmatcher", + "community": 218, + "community_name": "Automation Conditions Triggers", + "norm_label": "eventtagmatcher.ts" + }, + { + "label": "MatchResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L38", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_matchresult", + "community": 218, + "community_name": "Automation Conditions Triggers", + "norm_label": "matchresult" + }, + { + "label": "TriggerValidationResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L56", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_triggervalidationresult", + "community": 218, + "community_name": "Automation Conditions Triggers", + "norm_label": "triggervalidationresult" + }, + { + "label": "EventTagMatcher", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L68", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher", + "community": 218, + "community_name": "Automation Conditions Triggers", + "norm_label": "eventtagmatcher" + }, + { + "label": ".evaluate()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L76", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_evaluate", + "community": 218, + "community_name": "Automation Conditions Triggers", + "norm_label": ".evaluate()" + }, + { + "label": ".validateTrigger()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L173", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_validatetrigger", + "community": 218, + "community_name": "Automation Conditions Triggers", + "norm_label": ".validatetrigger()" + }, + { + "label": ".validateCondition()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L216", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_validatecondition", + "community": 218, + "community_name": "Automation Conditions Triggers", + "norm_label": ".validatecondition()" + }, + { + "label": ".matchChannel()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L258", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_matchchannel", + "community": 218, + "community_name": "Automation Conditions Triggers", + "norm_label": ".matchchannel()" + }, + { + "label": ".matchTag()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L265", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_matchtag", + "community": 218, + "community_name": "Automation Conditions Triggers", + "norm_label": ".matchtag()" + }, + { + "label": ".evaluateCondition()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L290", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_evaluatecondition", + "community": 218, + "community_name": "Automation Conditions Triggers", + "norm_label": ".evaluatecondition()" + }, + { + "label": ".evaluateWRCode()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L319", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_evaluatewrcode", + "community": 218, + "community_name": "Automation Conditions Triggers", + "norm_label": ".evaluatewrcode()" + }, + { + "label": ".evaluateSenderWhitelist()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L338", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_evaluatesenderwhitelist", + "community": 218, + "community_name": "Automation Conditions Triggers", + "norm_label": ".evaluatesenderwhitelist()" + }, + { + "label": ".evaluateBodyKeywords()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L370", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_evaluatebodykeywords", + "community": 218, + "community_name": "Automation Conditions Triggers", + "norm_label": ".evaluatebodykeywords()" + }, + { + "label": ".evaluateWebsiteFilter()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L406", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_evaluatewebsitefilter", + "community": 218, + "community_name": "Automation Conditions Triggers", + "norm_label": ".evaluatewebsitefilter()" + }, + { + "label": ".matchUrlPattern()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L442", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_matchurlpattern", + "community": 218, + "community_name": "Automation Conditions Triggers", + "norm_label": ".matchurlpattern()" + }, + { + "label": ".isValidEmail()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L471", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_isvalidemail", + "community": 218, + "community_name": "Automation Conditions Triggers", + "norm_label": ".isvalidemail()" + }, + { + "label": ".extractTags()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L481", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_extracttags", + "community": 218, + "community_name": "Automation Conditions Triggers", + "norm_label": ".extracttags()" + }, + { + "label": ".normalizeEmailEvent()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L492", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_normalizeemailevent", + "community": 218, + "community_name": "Automation Conditions Triggers", + "norm_label": ".normalizeemailevent()" + }, + { + "label": "conditions/index.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/conditions/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_conditions_index", + "community": 141, + "community_name": "Automation Conditions", + "norm_label": "conditions/index.ts" + }, + { + "label": "operators.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/conditions/operators.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_conditions_operators", + "community": 141, + "community_name": "Automation Conditions", + "norm_label": "operators.ts" + }, + { + "label": "getNestedValue()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/conditions/operators.ts", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_conditions_operators_getnestedvalue", + "community": 141, + "community_name": "Automation Conditions", + "norm_label": "getnestedvalue()" + }, + { + "label": "evaluateOperator()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/conditions/operators.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_conditions_operators_evaluateoperator", + "community": 141, + "community_name": "Automation Conditions", + "norm_label": "evaluateoperator()" + }, + { + "label": "automation/index.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_index", + "community": 111, + "community_name": "Automation Triggers", + "norm_label": "automation/index.ts" + }, + { + "label": "BaseTrigger.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/triggers/BaseTrigger.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_triggers_basetrigger", + "community": 111, + "community_name": "Automation Triggers", + "norm_label": "basetrigger.ts" + }, + { + "label": "TriggerCallback", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/triggers/BaseTrigger.ts", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_triggers_basetrigger_triggercallback", + "community": 111, + "community_name": "Automation Triggers", + "norm_label": "triggercallback" + }, + { + "label": "BaseTrigger", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/triggers/BaseTrigger.ts", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_triggers_basetrigger_basetrigger", + "community": 111, + "community_name": "Automation Triggers", + "norm_label": "basetrigger" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/triggers/BaseTrigger.ts", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_triggers_basetrigger_basetrigger_constructor", + "community": 111, + "community_name": "Automation Triggers", + "norm_label": ".constructor()" + }, + { + "label": ".getId()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/triggers/BaseTrigger.ts", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_triggers_basetrigger_basetrigger_getid", + "community": 111, + "community_name": "Automation Triggers", + "norm_label": ".getid()" + }, + { + "label": ".getSource()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/triggers/BaseTrigger.ts", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_triggers_basetrigger_basetrigger_getsource", + "community": 111, + "community_name": "Automation Triggers", + "norm_label": ".getsource()" + }, + { + "label": ".getIsActive()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/triggers/BaseTrigger.ts", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_triggers_basetrigger_basetrigger_getisactive", + "community": 111, + "community_name": "Automation Triggers", + "norm_label": ".getisactive()" + }, + { + "label": ".subscribe()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/triggers/BaseTrigger.ts", + "source_location": "L79", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_triggers_basetrigger_basetrigger_subscribe", + "community": 111, + "community_name": "Automation Triggers", + "norm_label": ".subscribe()" + }, + { + "label": ".emit()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/triggers/BaseTrigger.ts", + "source_location": "L91", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_triggers_basetrigger_basetrigger_emit", + "community": 218, + "community_name": "Automation Conditions Triggers", + "norm_label": ".emit()" + }, + { + "label": ".createEvent()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/triggers/BaseTrigger.ts", + "source_location": "L104", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_triggers_basetrigger_basetrigger_createevent", + "community": 111, + "community_name": "Automation Triggers", + "norm_label": ".createevent()" + }, + { + "label": "ChatTrigger.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/triggers/ChatTrigger.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_triggers_chattrigger", + "community": 111, + "community_name": "Automation Triggers", + "norm_label": "chattrigger.ts" + }, + { + "label": "ChatInput", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/triggers/ChatTrigger.ts", + "source_location": "L15", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_triggers_chattrigger_chatinput", + "community": 111, + "community_name": "Automation Triggers", + "norm_label": "chatinput" + }, + { + "label": "ChatTrigger", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/triggers/ChatTrigger.ts", + "source_location": "L67", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_triggers_chattrigger_chattrigger", + "community": 111, + "community_name": "Automation Triggers", + "norm_label": "chattrigger" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/triggers/ChatTrigger.ts", + "source_location": "L70", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_triggers_chattrigger_chattrigger_constructor", + "community": 111, + "community_name": "Automation Triggers", + "norm_label": ".constructor()" + }, + { + "label": ".start()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/triggers/ChatTrigger.ts", + "source_location": "L80", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_triggers_chattrigger_chattrigger_start", + "community": 111, + "community_name": "Automation Triggers", + "norm_label": ".start()" + }, + { + "label": ".stop()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/triggers/ChatTrigger.ts", + "source_location": "L89", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_triggers_chattrigger_chattrigger_stop", + "community": 111, + "community_name": "Automation Triggers", + "norm_label": ".stop()" + }, + { + "label": ".handleMessage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/triggers/ChatTrigger.ts", + "source_location": "L102", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_triggers_chattrigger_chattrigger_handlemessage", + "community": 111, + "community_name": "Automation Triggers", + "norm_label": ".handlemessage()" + }, + { + "label": ".extractMentions()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/triggers/ChatTrigger.ts", + "source_location": "L149", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_triggers_chattrigger_chattrigger_extractmentions", + "community": 111, + "community_name": "Automation Triggers", + "norm_label": ".extractmentions()" + }, + { + "label": ".hasMention()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/triggers/ChatTrigger.ts", + "source_location": "L162", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_triggers_chattrigger_chattrigger_hasmention", + "community": 111, + "community_name": "Automation Triggers", + "norm_label": ".hasmention()" + }, + { + "label": "CronTrigger.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/triggers/CronTrigger.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_triggers_crontrigger", + "community": 111, + "community_name": "Automation Triggers", + "norm_label": "crontrigger.ts" + }, + { + "label": "CronSchedule", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/triggers/CronTrigger.ts", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_triggers_crontrigger_cronschedule", + "community": 111, + "community_name": "Automation Triggers", + "norm_label": "cronschedule" + }, + { + "label": "ScheduledJob", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/triggers/CronTrigger.ts", + "source_location": "L39", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_triggers_crontrigger_scheduledjob", + "community": 111, + "community_name": "Automation Triggers", + "norm_label": "scheduledjob" + }, + { + "label": "CronTrigger", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/triggers/CronTrigger.ts", + "source_location": "L71", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger", + "community": 312, + "community_name": "Automation Triggers #312", + "norm_label": "crontrigger" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/triggers/CronTrigger.ts", + "source_location": "L83", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger_constructor", + "community": 312, + "community_name": "Automation Triggers #312", + "norm_label": ".constructor()" + }, + { + "label": ".start()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/triggers/CronTrigger.ts", + "source_location": "L91", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger_start", + "community": 312, + "community_name": "Automation Triggers #312", + "norm_label": ".start()" + }, + { + "label": ".stop()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/triggers/CronTrigger.ts", + "source_location": "L110", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger_stop", + "community": 312, + "community_name": "Automation Triggers #312", + "norm_label": ".stop()" + }, + { + "label": ".schedule()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/triggers/CronTrigger.ts", + "source_location": "L129", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger_schedule", + "community": 312, + "community_name": "Automation Triggers #312", + "norm_label": ".schedule()" + }, + { + "label": ".unschedule()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/triggers/CronTrigger.ts", + "source_location": "L157", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger_unschedule", + "community": 312, + "community_name": "Automation Triggers #312", + "norm_label": ".unschedule()" + }, + { + "label": ".getJobs()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/triggers/CronTrigger.ts", + "source_location": "L166", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger_getjobs", + "community": 312, + "community_name": "Automation Triggers #312", + "norm_label": ".getjobs()" + }, + { + "label": ".checkJobs()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/triggers/CronTrigger.ts", + "source_location": "L173", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger_checkjobs", + "community": 312, + "community_name": "Automation Triggers #312", + "norm_label": ".checkjobs()" + }, + { + "label": ".shouldRun()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/triggers/CronTrigger.ts", + "source_location": "L186", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger_shouldrun", + "community": 312, + "community_name": "Automation Triggers #312", + "norm_label": ".shouldrun()" + }, + { + "label": ".runJob()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/triggers/CronTrigger.ts", + "source_location": "L209", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger_runjob", + "community": 312, + "community_name": "Automation Triggers #312", + "norm_label": ".runjob()" + }, + { + "label": ".parseCronExpression()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/triggers/CronTrigger.ts", + "source_location": "L238", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger_parsecronexpression", + "community": 312, + "community_name": "Automation Triggers #312", + "norm_label": ".parsecronexpression()" + }, + { + "label": ".parseField()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/triggers/CronTrigger.ts", + "source_location": "L262", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger_parsefield", + "community": 312, + "community_name": "Automation Triggers #312", + "norm_label": ".parsefield()" + }, + { + "label": ".getNextRun()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/triggers/CronTrigger.ts", + "source_location": "L305", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger_getnextrun", + "community": 312, + "community_name": "Automation Triggers #312", + "norm_label": ".getnextrun()" + }, + { + "label": ".triggerNow()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/triggers/CronTrigger.ts", + "source_location": "L340", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger_triggernow", + "community": 312, + "community_name": "Automation Triggers #312", + "norm_label": ".triggernow()" + }, + { + "label": "TriggerRegistry.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_triggers_triggerregistry", + "community": 111, + "community_name": "Automation Triggers", + "norm_label": "triggerregistry.ts" + }, + { + "label": "TriggerRegistry", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L38", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry", + "community": 111, + "community_name": "Automation Triggers", + "norm_label": "triggerregistry" + }, + { + "label": ".registerTrigger()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_registertrigger", + "community": 111, + "community_name": "Automation Triggers", + "norm_label": ".registertrigger()" + }, + { + "label": ".unregisterTrigger()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L73", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_unregistertrigger", + "community": 111, + "community_name": "Automation Triggers", + "norm_label": ".unregistertrigger()" + }, + { + "label": ".getTriggers()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L102", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_gettriggers", + "community": 111, + "community_name": "Automation Triggers", + "norm_label": ".gettriggers()" + }, + { + "label": ".getAllTriggers()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L111", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_getalltriggers", + "community": 111, + "community_name": "Automation Triggers", + "norm_label": ".getalltriggers()" + }, + { + "label": ".subscribe()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L121", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_subscribe", + "community": 111, + "community_name": "Automation Triggers", + "norm_label": ".subscribe()" + }, + { + "label": ".emitEvent()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L133", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_emitevent", + "community": 111, + "community_name": "Automation Triggers", + "norm_label": ".emitevent()" + }, + { + "label": ".emit()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L156", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_emit", + "community": 111, + "community_name": "Automation Triggers", + "norm_label": ".emit()" + }, + { + "label": ".createAndEmit()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L165", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_createandemit", + "community": 111, + "community_name": "Automation Triggers", + "norm_label": ".createandemit()" + }, + { + "label": ".startAll()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L201", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_startall", + "community": 111, + "community_name": "Automation Triggers", + "norm_label": ".startall()" + }, + { + "label": ".stopAll()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L215", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_stopall", + "community": 111, + "community_name": "Automation Triggers", + "norm_label": ".stopall()" + }, + { + "label": ".startSource()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L231", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_startsource", + "community": 111, + "community_name": "Automation Triggers", + "norm_label": ".startsource()" + }, + { + "label": ".stopSource()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L245", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_stopsource", + "community": 111, + "community_name": "Automation Triggers", + "norm_label": ".stopsource()" + }, + { + "label": ".clear()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L257", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_clear", + "community": 111, + "community_name": "Automation Triggers", + "norm_label": ".clear()" + }, + { + "label": "triggers/index.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/triggers/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_triggers_index", + "community": 111, + "community_name": "Automation Triggers", + "norm_label": "triggers/index.ts" + }, + { + "label": "automation/types.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_types", + "community": 107, + "community_name": "Automation Workflows", + "norm_label": "automation/types.ts" + }, + { + "label": "TriggerSource", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L15", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_types_triggersource", + "community": 111, + "community_name": "Automation Triggers", + "norm_label": "triggersource" + }, + { + "label": "TriggerScope", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L26", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_types_triggerscope", + "community": 111, + "community_name": "Automation Triggers", + "norm_label": "triggerscope" + }, + { + "label": "Modality", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L34", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_types_modality", + "community": 111, + "community_name": "Automation Triggers", + "norm_label": "modality" + }, + { + "label": "TriggerConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L48", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_types_triggerconfig", + "community": 269, + "community_name": "Automation Adapters", + "norm_label": "triggerconfig" + }, + { + "label": "EventChannel", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L86", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_types_eventchannel", + "community": 305, + "community_name": "Automation Adapters #305", + "norm_label": "eventchannel" + }, + { + "label": "TriggerType", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L113", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_types_triggertype", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": "triggertype" + }, + { + "label": "EventTagConditionType", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L135", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_types_eventtagconditiontype", + "community": 107, + "community_name": "Automation Workflows", + "norm_label": "eventtagconditiontype" + }, + { + "label": "WRCodeCondition", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L145", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_types_wrcodecondition", + "community": 218, + "community_name": "Automation Conditions Triggers", + "norm_label": "wrcodecondition" + }, + { + "label": "SenderWhitelistCondition", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L155", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_types_senderwhitelistcondition", + "community": 218, + "community_name": "Automation Conditions Triggers", + "norm_label": "senderwhitelistcondition" + }, + { + "label": "BodyKeywordsCondition", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L165", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_types_bodykeywordscondition", + "community": 218, + "community_name": "Automation Conditions Triggers", + "norm_label": "bodykeywordscondition" + }, + { + "label": "WebsiteFilterCondition", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L177", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_types_websitefiltercondition", + "community": 218, + "community_name": "Automation Conditions Triggers", + "norm_label": "websitefiltercondition" + }, + { + "label": "EventTagCondition", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L186", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_types_eventtagcondition", + "community": 218, + "community_name": "Automation Conditions Triggers", + "norm_label": "eventtagcondition" + }, + { + "label": "EventTagTriggerConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L212", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_types_eventtagtriggerconfig", + "community": 107, + "community_name": "Automation Workflows", + "norm_label": "eventtagtriggerconfig" + }, + { + "label": "UnifiedTriggerConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L245", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_types_unifiedtriggerconfig", + "community": 305, + "community_name": "Automation Adapters #305", + "norm_label": "unifiedtriggerconfig" + }, + { + "label": "MemoryContextSettings", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L331", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_types_memorycontextsettings", + "community": 107, + "community_name": "Automation Workflows", + "norm_label": "memorycontextsettings" + }, + { + "label": "UnifiedListeningConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L353", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_types_unifiedlisteningconfig", + "community": 107, + "community_name": "Automation Workflows", + "norm_label": "unifiedlisteningconfig" + }, + { + "label": "UnifiedReasoningConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L367", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_types_unifiedreasoningconfig", + "community": 107, + "community_name": "Automation Workflows", + "norm_label": "unifiedreasoningconfig" + }, + { + "label": "ConditionOperator", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L394", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_types_conditionoperator", + "community": 141, + "community_name": "Automation Conditions", + "norm_label": "conditionoperator" + }, + { + "label": "FieldCondition", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L412", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_types_fieldcondition", + "community": 141, + "community_name": "Automation Conditions", + "norm_label": "fieldcondition" + }, + { + "label": "AllCondition", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L426", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_types_allcondition", + "community": 141, + "community_name": "Automation Conditions", + "norm_label": "allcondition" + }, + { + "label": "AnyCondition", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L433", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_types_anycondition", + "community": 141, + "community_name": "Automation Conditions", + "norm_label": "anycondition" + }, + { + "label": "NotCondition", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L440", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_types_notcondition", + "community": 141, + "community_name": "Automation Conditions", + "norm_label": "notcondition" + }, + { + "label": "Condition", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L465", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_types_condition", + "community": 141, + "community_name": "Automation Conditions", + "norm_label": "condition" + }, + { + "label": "ListenerMode", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L480", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_types_listenermode", + "community": 269, + "community_name": "Automation Adapters", + "norm_label": "listenermode" + }, + { + "label": "AutomationConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L488", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_types_automationconfig", + "community": 234, + "community_name": "Automation", + "norm_label": "automationconfig" + }, + { + "label": "WorkflowStepType", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L543", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_types_workflowsteptype", + "community": 107, + "community_name": "Automation Workflows", + "norm_label": "workflowsteptype" + }, + { + "label": "WorkflowStep", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L557", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_types_workflowstep", + "community": 107, + "community_name": "Automation Workflows", + "norm_label": "workflowstep" + }, + { + "label": "WorkflowType", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L580", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_types_workflowtype", + "community": 107, + "community_name": "Automation Workflows", + "norm_label": "workflowtype" + }, + { + "label": "WorkflowDefinition", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L585", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_types_workflowdefinition", + "community": 107, + "community_name": "Automation Workflows", + "norm_label": "workflowdefinition" + }, + { + "label": "NormalizedEvent", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L616", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_types_normalizedevent", + "community": 218, + "community_name": "Automation Conditions Triggers", + "norm_label": "normalizedevent" + }, + { + "label": "WorkflowContext", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L701", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_types_workflowcontext", + "community": 107, + "community_name": "Automation Workflows", + "norm_label": "workflowcontext" + }, + { + "label": "ProcessingResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L724", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_types_processingresult", + "community": 234, + "community_name": "Automation", + "norm_label": "processingresult" + }, + { + "label": "ActionResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L756", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_types_actionresult", + "community": 107, + "community_name": "Automation Workflows", + "norm_label": "actionresult" + }, + { + "label": "TriggerHandler", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L777", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_types_triggerhandler", + "community": 107, + "community_name": "Automation Workflows", + "norm_label": "triggerhandler" + }, + { + "label": "EventSubscriber", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L782", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_types_eventsubscriber", + "community": 111, + "community_name": "Automation Triggers", + "norm_label": "eventsubscriber" + }, + { + "label": "ValidationResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L787", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_types_validationresult", + "community": 107, + "community_name": "Automation Workflows", + "norm_label": "validationresult" + }, + { + "label": "LegacyTrigger", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L799", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_types_legacytrigger", + "community": 305, + "community_name": "Automation Adapters #305", + "norm_label": "legacytrigger" + }, + { + "label": "LegacyListeningConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L809", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_types_legacylisteningconfig", + "community": 305, + "community_name": "Automation Adapters #305", + "norm_label": "legacylisteningconfig" + }, + { + "label": "LegacyAgentConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L828", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_types_legacyagentconfig", + "community": 269, + "community_name": "Automation Adapters", + "norm_label": "legacyagentconfig" + }, + { + "label": "OutputDestination", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L856", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_types_outputdestination", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": "outputdestination" + }, + { + "label": "ResolvedLlmConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L876", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_types_resolvedllmconfig", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": "resolvedllmconfig" + }, + { + "label": "ResolvedImageConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L902", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_types_resolvedimageconfig", + "community": 107, + "community_name": "Automation Workflows", + "norm_label": "resolvedimageconfig" + }, + { + "label": "ResolvedReasoningConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L931", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_types_resolvedreasoningconfig", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": "resolvedreasoningconfig" + }, + { + "label": "ResolvedExecutionConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L958", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_types_resolvedexecutionconfig", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": "resolvedexecutionconfig" + }, + { + "label": "EventTagRoutingResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L980", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_types_eventtagroutingresult", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": "eventtagroutingresult" + }, + { + "label": "EventTagRoutingInput", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L1042", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_types_eventtagroutinginput", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": "eventtagroutinginput" + }, + { + "label": "EventTagRoutingBatch", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L1078", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_types_eventtagroutingbatch", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": "eventtagroutingbatch" + }, + { + "label": "ActionWorkflow.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_actionworkflow", + "community": 107, + "community_name": "Automation Workflows", + "norm_label": "actionworkflow.ts" + }, + { + "label": "ActionWorkflow", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts", + "source_location": "L32", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow", + "community": 306, + "community_name": "Automation Workflows #306", + "norm_label": "actionworkflow" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_constructor", + "community": 306, + "community_name": "Automation Workflows #306", + "norm_label": ".constructor()" + }, + { + "label": ".create()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts", + "source_location": "L49", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_create", + "community": 306, + "community_name": "Automation Workflows #306", + "norm_label": ".create()" + }, + { + "label": ".name()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts", + "source_location": "L58", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_name", + "community": 306, + "community_name": "Automation Workflows #306", + "norm_label": ".name()" + }, + { + "label": ".description()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts", + "source_location": "L68", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_description", + "community": 306, + "community_name": "Automation Workflows #306", + "norm_label": ".description()" + }, + { + "label": ".step()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts", + "source_location": "L80", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_step", + "community": 306, + "community_name": "Automation Workflows #306", + "norm_label": ".step()" + }, + { + "label": ".notify()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts", + "source_location": "L110", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_notify", + "community": 306, + "community_name": "Automation Workflows #306", + "norm_label": ".notify()" + }, + { + "label": ".api()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts", + "source_location": "L121", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_api", + "community": 306, + "community_name": "Automation Workflows #306", + "norm_label": ".api()" + }, + { + "label": ".wait()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts", + "source_location": "L139", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_wait", + "community": 306, + "community_name": "Automation Workflows #306", + "norm_label": ".wait()" + }, + { + "label": ".store()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts", + "source_location": "L150", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_store", + "community": 306, + "community_name": "Automation Workflows #306", + "norm_label": ".store()" + }, + { + "label": ".condition()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts", + "source_location": "L166", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_condition", + "community": 306, + "community_name": "Automation Workflows #306", + "norm_label": ".condition()" + }, + { + "label": ".loop()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts", + "source_location": "L182", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_loop", + "community": 306, + "community_name": "Automation Workflows #306", + "norm_label": ".loop()" + }, + { + "label": ".parallel()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts", + "source_location": "L196", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_parallel", + "community": 306, + "community_name": "Automation Workflows #306", + "norm_label": ".parallel()" + }, + { + "label": ".agent()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts", + "source_location": "L207", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_agent", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": ".agent()" + }, + { + "label": ".onError()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts", + "source_location": "L220", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_onerror", + "community": 306, + "community_name": "Automation Workflows #306", + "norm_label": ".onerror()" + }, + { + "label": ".build()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts", + "source_location": "L239", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_build", + "community": 306, + "community_name": "Automation Workflows #306", + "norm_label": ".build()" + }, + { + "label": "CommonActionWorkflows", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts", + "source_location": "L257", + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_actionworkflow_commonactionworkflows", + "community": 107, + "community_name": "Automation Workflows", + "norm_label": "commonactionworkflows" + }, + { + "label": "SensorWorkflow.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/SensorWorkflow.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_sensorworkflow", + "community": 107, + "community_name": "Automation Workflows", + "norm_label": "sensorworkflow.ts" + }, + { + "label": "SensorStepConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/SensorWorkflow.ts", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_sensorworkflow_sensorstepconfig", + "community": 107, + "community_name": "Automation Workflows", + "norm_label": "sensorstepconfig" + }, + { + "label": "SensorWorkflow", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/SensorWorkflow.ts", + "source_location": "L45", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_sensorworkflow_sensorworkflow", + "community": 337, + "community_name": "Automation Workflows #337", + "norm_label": "sensorworkflow" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/SensorWorkflow.ts", + "source_location": "L49", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_sensorworkflow_sensorworkflow_constructor", + "community": 337, + "community_name": "Automation Workflows #337", + "norm_label": ".constructor()" + }, + { + "label": ".create()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/SensorWorkflow.ts", + "source_location": "L62", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_sensorworkflow_sensorworkflow_create", + "community": 337, + "community_name": "Automation Workflows #337", + "norm_label": ".create()" + }, + { + "label": ".name()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/SensorWorkflow.ts", + "source_location": "L71", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_sensorworkflow_sensorworkflow_name", + "community": 337, + "community_name": "Automation Workflows #337", + "norm_label": ".name()" + }, + { + "label": ".description()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/SensorWorkflow.ts", + "source_location": "L81", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_sensorworkflow_sensorworkflow_description", + "community": 337, + "community_name": "Automation Workflows #337", + "norm_label": ".description()" + }, + { + "label": ".step()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/SensorWorkflow.ts", + "source_location": "L93", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_sensorworkflow_sensorworkflow_step", + "community": 337, + "community_name": "Automation Workflows #337", + "norm_label": ".step()" + }, + { + "label": ".fetch()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/SensorWorkflow.ts", + "source_location": "L123", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_sensorworkflow_sensorworkflow_fetch", + "community": 337, + "community_name": "Automation Workflows #337", + "norm_label": ".fetch()" + }, + { + "label": ".transform()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/SensorWorkflow.ts", + "source_location": "L137", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_sensorworkflow_sensorworkflow_transform", + "community": 337, + "community_name": "Automation Workflows #337", + "norm_label": ".transform()" + }, + { + "label": ".wait()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/SensorWorkflow.ts", + "source_location": "L150", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_sensorworkflow_sensorworkflow_wait", + "community": 337, + "community_name": "Automation Workflows #337", + "norm_label": ".wait()" + }, + { + "label": ".condition()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/SensorWorkflow.ts", + "source_location": "L162", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_sensorworkflow_sensorworkflow_condition", + "community": 337, + "community_name": "Automation Workflows #337", + "norm_label": ".condition()" + }, + { + "label": ".store()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/SensorWorkflow.ts", + "source_location": "L178", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_sensorworkflow_sensorworkflow_store", + "community": 337, + "community_name": "Automation Workflows #337", + "norm_label": ".store()" + }, + { + "label": ".build()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/SensorWorkflow.ts", + "source_location": "L191", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_sensorworkflow_sensorworkflow_build", + "community": 337, + "community_name": "Automation Workflows #337", + "norm_label": ".build()" + }, + { + "label": "CommonSensorWorkflows", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/SensorWorkflow.ts", + "source_location": "L209", + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_sensorworkflow_commonsensorworkflows", + "community": 107, + "community_name": "Automation Workflows", + "norm_label": "commonsensorworkflows" + }, + { + "label": "WorkflowRegistry.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRegistry.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_workflowregistry", + "community": 107, + "community_name": "Automation Workflows", + "norm_label": "workflowregistry.ts" + }, + { + "label": "WorkflowRegistry", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRegistry.ts", + "source_location": "L31", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry", + "community": 107, + "community_name": "Automation Workflows", + "norm_label": "workflowregistry" + }, + { + "label": ".register()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRegistry.ts", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry_register", + "community": 107, + "community_name": "Automation Workflows", + "norm_label": ".register()" + }, + { + "label": ".unregister()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRegistry.ts", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry_unregister", + "community": 107, + "community_name": "Automation Workflows", + "norm_label": ".unregister()" + }, + { + "label": ".get()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRegistry.ts", + "source_location": "L67", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry_get", + "community": 107, + "community_name": "Automation Workflows", + "norm_label": ".get()" + }, + { + "label": ".has()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRegistry.ts", + "source_location": "L77", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry_has", + "community": 107, + "community_name": "Automation Workflows", + "norm_label": ".has()" + }, + { + "label": ".getAll()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRegistry.ts", + "source_location": "L86", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry_getall", + "community": 107, + "community_name": "Automation Workflows", + "norm_label": ".getall()" + }, + { + "label": ".getByType()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRegistry.ts", + "source_location": "L96", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry_getbytype", + "community": 107, + "community_name": "Automation Workflows", + "norm_label": ".getbytype()" + }, + { + "label": ".getSensorWorkflows()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRegistry.ts", + "source_location": "L103", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry_getsensorworkflows", + "community": 107, + "community_name": "Automation Workflows", + "norm_label": ".getsensorworkflows()" + }, + { + "label": ".getActionWorkflows()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRegistry.ts", + "source_location": "L110", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry_getactionworkflows", + "community": 107, + "community_name": "Automation Workflows", + "norm_label": ".getactionworkflows()" + }, + { + "label": ".validate()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRegistry.ts", + "source_location": "L120", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry_validate", + "community": 107, + "community_name": "Automation Workflows", + "norm_label": ".validate()" + }, + { + "label": ".clear()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRegistry.ts", + "source_location": "L182", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry_clear", + "community": 107, + "community_name": "Automation Workflows", + "norm_label": ".clear()" + }, + { + "label": ".size()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRegistry.ts", + "source_location": "L190", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry_size", + "community": 107, + "community_name": "Automation Workflows", + "norm_label": ".size()" + }, + { + "label": "WorkflowRunner.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRunner.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_workflowrunner", + "community": 107, + "community_name": "Automation Workflows", + "norm_label": "workflowrunner.ts" + }, + { + "label": "StepHandler", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRunner.ts", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_workflowrunner_stephandler", + "community": 107, + "community_name": "Automation Workflows", + "norm_label": "stephandler" + }, + { + "label": "ExecutionOptions", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRunner.ts", + "source_location": "L26", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_workflowrunner_executionoptions", + "community": 107, + "community_name": "Automation Workflows", + "norm_label": "executionoptions" + }, + { + "label": "WorkflowRunner", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRunner.ts", + "source_location": "L56", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_workflowrunner_workflowrunner", + "community": 107, + "community_name": "Automation Workflows", + "norm_label": "workflowrunner" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRunner.ts", + "source_location": "L70", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_workflowrunner_workflowrunner_constructor", + "community": 107, + "community_name": "Automation Workflows", + "norm_label": ".constructor()" + }, + { + "label": ".registerDefaultHandlers()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRunner.ts", + "source_location": "L78", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_workflowrunner_workflowrunner_registerdefaulthandlers", + "community": 107, + "community_name": "Automation Workflows", + "norm_label": ".registerdefaulthandlers()" + }, + { + "label": ".registerHandler()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRunner.ts", + "source_location": "L185", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_workflowrunner_workflowrunner_registerhandler", + "community": 107, + "community_name": "Automation Workflows", + "norm_label": ".registerhandler()" + }, + { + "label": ".runSensor()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRunner.ts", + "source_location": "L197", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_workflowrunner_workflowrunner_runsensor", + "community": 107, + "community_name": "Automation Workflows", + "norm_label": ".runsensor()" + }, + { + "label": ".runAction()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRunner.ts", + "source_location": "L224", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_workflowrunner_workflowrunner_runaction", + "community": 107, + "community_name": "Automation Workflows", + "norm_label": ".runaction()" + }, + { + "label": ".execute()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRunner.ts", + "source_location": "L251", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_workflowrunner_workflowrunner_execute", + "community": 107, + "community_name": "Automation Workflows", + "norm_label": ".execute()" + }, + { + "label": ".executeStep()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRunner.ts", + "source_location": "L291", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_workflowrunner_workflowrunner_executestep", + "community": 107, + "community_name": "Automation Workflows", + "norm_label": ".executestep()" + }, + { + "label": "workflows/index.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/automation/workflows/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_automation_workflows_index", + "community": 107, + "community_name": "Automation Workflows", + "norm_label": "workflows/index.ts" + }, + { + "label": "background.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_background", + "community": 46, + "community_name": "Background", + "norm_label": "background.ts" + }, + { + "label": "PendingSessionRunSource", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L36", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_pendingsessionrunsource", + "community": 46, + "community_name": "Background", + "norm_label": "pendingsessionrunsource" + }, + { + "label": "PendingSessionRun", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L38", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_pendingsessionrun", + "community": 46, + "community_name": "Background", + "norm_label": "pendingsessionrun" + }, + { + "label": "pendingSessionRuns", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L48", + "_origin": "ast", + "id": "apps_extension_chromium_src_background_pendingsessionruns", + "community": 46, + "community_name": "Background", + "norm_label": "pendingsessionruns" + }, + { + "label": "modeSessionExecuteInFlight", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L51", + "_origin": "ast", + "id": "apps_extension_chromium_src_background_modesessionexecuteinflight", + "community": 46, + "community_name": "Background", + "norm_label": "modesessionexecuteinflight" + }, + { + "label": "isSessionRunInFlight()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_issessionruninflight", + "community": 46, + "community_name": "Background", + "norm_label": "issessionruninflight()" + }, + { + "label": "BEAP_GRID_SURFACE_READY", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L60", + "_origin": "ast", + "id": "apps_extension_chromium_src_background_beap_grid_surface_ready", + "community": 46, + "community_name": "Background", + "norm_label": "beap_grid_surface_ready" + }, + { + "label": "registerPendingSessionRun()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L62", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_registerpendingsessionrun", + "community": 46, + "community_name": "Background", + "norm_label": "registerpendingsessionrun()" + }, + { + "label": "registerPendingBeapRun()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L94", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_registerpendingbeaprun", + "community": 46, + "community_name": "Background", + "norm_label": "registerpendingbeaprun()" + }, + { + "label": "registerPendingModeSessionRun()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L98", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_registerpendingmodesessionrun", + "community": 46, + "community_name": "Background", + "norm_label": "registerpendingmodesessionrun()" + }, + { + "label": "executeModeSessionRunCore()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L111", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_executemodesessionruncore", + "community": 46, + "community_name": "Background", + "norm_label": "executemodesessionruncore()" + }, + { + "label": "executeModeSessionRunDirectForOrchestrator()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L138", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_executemodesessionrundirectfororchestrator", + "community": 46, + "community_name": "Background", + "norm_label": "executemodesessionrundirectfororchestrator()" + }, + { + "label": "handleModeIntervalAlarmTick()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L165", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_handlemodeintervalalarmtick", + "community": 46, + "community_name": "Background", + "norm_label": "handlemodeintervalalarmtick()" + }, + { + "label": "triggerPendingSessionRun()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L197", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_triggerpendingsessionrun", + "community": 46, + "community_name": "Background", + "norm_label": "triggerpendingsessionrun()" + }, + { + "label": "triggerPendingBeapRun()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L265", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_triggerpendingbeaprun", + "community": 46, + "community_name": "Background", + "norm_label": "triggerpendingbeaprun()" + }, + { + "label": "tabSidebarStatus", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L305", + "_origin": "ast", + "id": "apps_extension_chromium_src_background_tabsidebarstatus", + "community": 46, + "community_name": "Background", + "norm_label": "tabsidebarstatus" + }, + { + "label": "commandCenterPopupUrlsDiffer()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L315", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_commandcenterpopupurlsdiffer", + "community": 46, + "community_name": "Background", + "norm_label": "commandcenterpopupurlsdiffer()" + }, + { + "label": "VSBT_MAX_AGE_MS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L349", + "_origin": "ast", + "id": "apps_extension_chromium_src_background_vsbt_max_age_ms", + "community": 46, + "community_name": "Background", + "norm_label": "vsbt_max_age_ms" + }, + { + "label": "MAX_WEBMCP_PER_MIN", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L371", + "_origin": "ast", + "id": "apps_extension_chromium_src_background_max_webmcp_per_min", + "community": 46, + "community_name": "Background", + "norm_label": "max_webmcp_per_min" + }, + { + "label": "_webMcpGlobalTimestamps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L374", + "_origin": "ast", + "id": "apps_extension_chromium_src_background_webmcpglobaltimestamps", + "community": 46, + "community_name": "Background", + "norm_label": "_webmcpglobaltimestamps" + }, + { + "label": "WEBMCP_CB_THRESHOLD", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L384", + "_origin": "ast", + "id": "apps_extension_chromium_src_background_webmcp_cb_threshold", + "community": 46, + "community_name": "Background", + "norm_label": "webmcp_cb_threshold" + }, + { + "label": "WEBMCP_CB_WINDOW_MS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L386", + "_origin": "ast", + "id": "apps_extension_chromium_src_background_webmcp_cb_window_ms", + "community": 46, + "community_name": "Background", + "norm_label": "webmcp_cb_window_ms" + }, + { + "label": "WEBMCP_CB_COOLDOWN_MS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L388", + "_origin": "ast", + "id": "apps_extension_chromium_src_background_webmcp_cb_cooldown_ms", + "community": 46, + "community_name": "Background", + "norm_label": "webmcp_cb_cooldown_ms" + }, + { + "label": "_webMcpCbRejects", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L391", + "_origin": "ast", + "id": "apps_extension_chromium_src_background_webmcpcbrejects", + "community": 46, + "community_name": "Background", + "norm_label": "_webmcpcbrejects" + }, + { + "label": "_safePositiveInt()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L401", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_safepositiveint", + "community": 46, + "community_name": "Background", + "norm_label": "_safepositiveint()" + }, + { + "label": "_effectiveMaxPerMin()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L407", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_effectivemaxpermin", + "community": 46, + "community_name": "Background", + "norm_label": "_effectivemaxpermin()" + }, + { + "label": "_effectiveWindowMs()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L409", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_effectivewindowms", + "community": 46, + "community_name": "Background", + "norm_label": "_effectivewindowms()" + }, + { + "label": "_effectiveCbThreshold()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L411", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_effectivecbthreshold", + "community": 46, + "community_name": "Background", + "norm_label": "_effectivecbthreshold()" + }, + { + "label": "_effectiveCbWindowMs()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L413", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_effectivecbwindowms", + "community": 46, + "community_name": "Background", + "norm_label": "_effectivecbwindowms()" + }, + { + "label": "_effectiveCbCooldownMs()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L415", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_effectivecbcooldownms", + "community": 46, + "community_name": "Background", + "norm_label": "_effectivecbcooldownms()" + }, + { + "label": "_recordWebMcpReject()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L424", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_recordwebmcpreject", + "community": 46, + "community_name": "Background", + "norm_label": "_recordwebmcpreject()" + }, + { + "label": "AUDIT_EXPORT_ALLOWED_PAGES", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L448", + "_origin": "ast", + "id": "apps_extension_chromium_src_background_audit_export_allowed_pages", + "community": 46, + "community_name": "Background", + "norm_label": "audit_export_allowed_pages" + }, + { + "label": "AUDIT_EXPORT_RESULT_VERSION", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L451", + "_origin": "ast", + "id": "apps_extension_chromium_src_background_audit_export_result_version", + "community": 46, + "community_name": "Background", + "norm_label": "audit_export_result_version" + }, + { + "label": "AuditExportErrorCode", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L454", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_auditexporterrorcode", + "community": 46, + "community_name": "Background", + "norm_label": "auditexporterrorcode" + }, + { + "label": "_isExtensionUiContext()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L471", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_isextensionuicontext", + "community": 46, + "community_name": "Background", + "norm_label": "_isextensionuicontext()" + }, + { + "label": "_isVaultUnlocked()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L499", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_isvaultunlocked", + "community": 46, + "community_name": "Background", + "norm_label": "_isvaultunlocked()" + }, + { + "label": "_auditExportLog()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L525", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_auditexportlog", + "community": 46, + "community_name": "Background", + "norm_label": "_auditexportlog()" + }, + { + "label": "ensureLaunchSecret()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L554", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_ensurelaunchsecret", + "community": 46, + "community_name": "Background", + "norm_label": "ensurelaunchsecret()" + }, + { + "label": "_cacheVsbt()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L569", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_cachevsbt", + "community": 46, + "community_name": "Background", + "norm_label": "_cachevsbt()" + }, + { + "label": "startHealthMonitor()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L615", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_starthealthmonitor", + "community": 46, + "community_name": "Background", + "norm_label": "starthealthmonitor()" + }, + { + "label": "performHealthCheck()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L633", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_performhealthcheck", + "community": 46, + "community_name": "Background", + "norm_label": "performhealthcheck()" + }, + { + "label": "getConnectionStatus()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L688", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_getconnectionstatus", + "community": 46, + "community_name": "Background", + "norm_label": "getconnectionstatus()" + }, + { + "label": "AuthStatusResponsePayload", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L743", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_authstatusresponsepayload", + "community": 46, + "community_name": "Background", + "norm_label": "authstatusresponsepayload" + }, + { + "label": "stableAgentBoxKey()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L760", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_stableagentboxkey", + "community": 46, + "community_name": "Background", + "norm_label": "stableagentboxkey()" + }, + { + "label": "findAgentBoxIndexByStableKey()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L777", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_findagentboxindexbystablekey", + "community": 46, + "community_name": "Background", + "norm_label": "findagentboxindexbystablekey()" + }, + { + "label": "dedupeAgentBoxesByStableKey()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L790", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_dedupeagentboxesbystablekey", + "community": 46, + "community_name": "Background", + "norm_label": "dedupeagentboxesbystablekey()" + }, + { + "label": "_electronHeaders()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L821", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_electronheaders", + "community": 46, + "community_name": "Background", + "norm_label": "_electronheaders()" + }, + { + "label": "compressDataUrlForStorage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L836", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_compressdataurlforstorage", + "community": 46, + "community_name": "Background", + "norm_label": "compressdataurlforstorage()" + }, + { + "label": "DEFAULT_RETRY_CONFIG", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L865", + "_origin": "ast", + "id": "apps_extension_chromium_src_background_default_retry_config", + "community": 46, + "community_name": "Background", + "norm_label": "default_retry_config" + }, + { + "label": "checkElectronIntegrity()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L885", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_checkelectronintegrity", + "community": 46, + "community_name": "Background", + "norm_label": "checkelectronintegrity()" + }, + { + "label": "OAUTH_RETRY_CONFIG", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L925", + "_origin": "ast", + "id": "apps_extension_chromium_src_background_oauth_retry_config", + "community": 46, + "community_name": "Background", + "norm_label": "oauth_retry_config" + }, + { + "label": "isElectronRunning()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L936", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_iselectronrunning", + "community": 46, + "community_name": "Background", + "norm_label": "iselectronrunning()" + }, + { + "label": "isElectronReady()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L975", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_iselectronready", + "community": 46, + "community_name": "Background", + "norm_label": "iselectronready()" + }, + { + "label": "ensureElectronRunning()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L1027", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_ensureelectronrunning", + "community": 46, + "community_name": "Background", + "norm_label": "ensureelectronrunning()" + }, + { + "label": "calculateBackoff()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L1040", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_calculatebackoff", + "community": 46, + "community_name": "Background", + "norm_label": "calculatebackoff()" + }, + { + "label": "electronRequest()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L1057", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_electronrequest", + "community": 46, + "community_name": "Background", + "norm_label": "electronrequest()" + }, + { + "label": "electronOAuthRequest()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L1250", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_electronoauthrequest", + "community": 46, + "community_name": "Background", + "norm_label": "electronoauthrequest()" + }, + { + "label": "fetchWithElectronAutoStart()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L1271", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_fetchwithelectronautostart", + "community": 46, + "community_name": "Background", + "norm_label": "fetchwithelectronautostart()" + }, + { + "label": "setApiKeySyncPending()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L1281", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_setapikeysyncpending", + "community": 46, + "community_name": "Background", + "norm_label": "setapikeysyncpending()" + }, + { + "label": "syncApiKeysToElectron()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L1294", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_syncapikeystoelectron", + "community": 46, + "community_name": "Background", + "norm_label": "syncapikeystoelectron()" + }, + { + "label": "retrySyncIfPending()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L1347", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_retrysyncifpending", + "community": 46, + "community_name": "Background", + "norm_label": "retrysyncifpending()" + }, + { + "label": "connectToWebSocketServer()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L1366", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_connecttowebsocketserver", + "community": 46, + "community_name": "Background", + "norm_label": "connecttowebsocketserver()" + }, + { + "label": "ensureConnection()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L2060", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_ensureconnection", + "community": 46, + "community_name": "Background", + "norm_label": "ensureconnection()" + }, + { + "label": "startHeartbeat()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L2081", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_startheartbeat", + "community": 46, + "community_name": "Background", + "norm_label": "startheartbeat()" + }, + { + "label": "stopHeartbeat()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L2102", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_stopheartbeat", + "community": 46, + "community_name": "Background", + "norm_label": "stopheartbeat()" + }, + { + "label": "startAutoConnect()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L2110", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_startautoconnect", + "community": 46, + "community_name": "Background", + "norm_label": "startautoconnect()" + }, + { + "label": "toggleSidebars()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L2129", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_togglesidebars", + "community": 46, + "community_name": "Background", + "norm_label": "togglesidebars()" + }, + { + "label": "setupKeepAlive()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L2161", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_setupkeepalive", + "community": 46, + "community_name": "Background", + "norm_label": "setupkeepalive()" + }, + { + "label": "tabDisplayGridsActive", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L2210", + "_origin": "ast", + "id": "apps_extension_chromium_src_background_tabdisplaygridsactive", + "community": 46, + "community_name": "Background", + "norm_label": "tabdisplaygridsactive" + }, + { + "label": "openWrdeskHomeIfNeeded()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L2249", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_openwrdeskhomeifneeded", + "community": 46, + "community_name": "Background", + "norm_label": "openwrdeskhomeifneeded()" + }, + { + "label": "checkAndLaunchElectronApp()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L2346", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_checkandlaunchelectronapp", + "community": 46, + "community_name": "Background", + "norm_label": "checkandlaunchelectronapp()" + }, + { + "label": "launchElectronAppDirect()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L2466", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_launchelectronappdirect", + "community": 46, + "community_name": "Background", + "norm_label": "launchelectronappdirect()" + }, + { + "label": "launchElectronApp()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L2518", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_background_launchelectronapp", + "community": 46, + "community_name": "Background", + "norm_label": "launchelectronapp()" + }, + { + "label": "NOTE: This function NO LONGER attempts to launch via custom protocol\u2026", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L1021", + "_origin": "ast", + "id": "apps_extension_chromium_src_background_rationale_1021", + "community": 46, + "community_name": "Background", + "norm_label": "note: this function no longer attempts to launch via custom protocol..." + }, + { + "label": "IMPORTANT: This function NO LONGER attempts to launch the app via custom\u2026", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L2455", + "_origin": "ast", + "id": "apps_extension_chromium_src_background_rationale_2455", + "community": 46, + "community_name": "Background", + "norm_label": "important: this function no longer attempts to launch the app via custom..." + }, + { + "label": "WHY: Launching via custom protocol (wrcode://start) caused Windows \"Open\u2026", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L2457", + "_origin": "ast", + "id": "apps_extension_chromium_src_background_rationale_2457", + "community": 46, + "community_name": "Background", + "norm_label": "why: launching via custom protocol (wrcode://start) caused windows \"open..." + }, + { + "label": "NOTE: This function NO LONGER attempts to launch via custom protocol\u2026", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L2515", + "_origin": "ast", + "id": "apps_extension_chromium_src_background_rationale_2515", + "community": 46, + "community_name": "Background", + "norm_label": "note: this function no longer attempts to launch via custom protocol..." + }, + { + "label": "NOTE: The per-type SENDER_GATED_TYPES check was removed because the", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L3421", + "_origin": "ast", + "id": "apps_extension_chromium_src_background_rationale_3421", + "community": 46, + "community_name": "Background", + "norm_label": "note: the per-type sender_gated_types check was removed because the" + }, + { + "label": "buildSessionImportArtefact.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/buildSessionImportArtefact.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_tests_buildsessionimportartefact_test", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "buildsessionimportartefact.test.ts" + }, + { + "label": "makeFullSessionBlob()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/buildSessionImportArtefact.test.ts", + "source_location": "L48", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_tests_buildsessionimportartefact_test_makefullsessionblob", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "makefullsessionblob()" + }, + { + "label": "FILE_EXPORT_FIELD_SET", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/buildSessionImportArtefact.test.ts", + "source_location": "L103", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_tests_buildsessionimportartefact_test_file_export_field_set", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "file_export_field_set" + }, + { + "label": "draftAttachmentAutoParse.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/draftAttachmentAutoParse.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_tests_draftattachmentautoparse_test", + "community": 167, + "community_name": "Beapbuilder #167", + "norm_label": "draftattachmentautoparse.test.ts" + }, + { + "label": "capsule", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/draftAttachmentAutoParse.test.ts", + "source_location": "L11", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_tests_draftattachmentautoparse_test_capsule", + "community": 167, + "community_name": "Beapbuilder #167", + "norm_label": "capsule" + }, + { + "label": "handshakeRefresh.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/handshakeRefresh.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_tests_handshakerefresh_test", + "community": 354, + "community_name": "Beapbuilder Handshake #354", + "norm_label": "handshakerefresh.test.ts" + }, + { + "label": "mockSendMessage", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/handshakeRefresh.test.ts", + "source_location": "L10", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_tests_handshakerefresh_test_mocksendmessage", + "community": 354, + "community_name": "Beapbuilder Handshake #354", + "norm_label": "mocksendmessage" + }, + { + "label": "parserService.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/parserService.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_tests_parserservice_test", + "community": 167, + "community_name": "Beapbuilder #167", + "norm_label": "parserservice.test.ts" + }, + { + "label": "createMockAttachment()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/parserService.test.ts", + "source_location": "L37", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_tests_parserservice_test_createmockattachment", + "community": 167, + "community_name": "Beapbuilder #167", + "norm_label": "createmockattachment()" + }, + { + "label": "pr41OrchestratorReads.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/pr41OrchestratorReads.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_tests_pr41orchestratorreads_test", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "pr41orchestratorreads.test.ts" + }, + { + "label": "makeOrchestratorSessionResponse()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/pr41OrchestratorReads.test.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_tests_pr41orchestratorreads_test_makeorchestratorsessionresponse", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "makeorchestratorsessionresponse()" + }, + { + "label": "makeOrchestratorSessionsListResponse()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/pr41OrchestratorReads.test.ts", + "source_location": "L46", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_tests_pr41orchestratorreads_test_makeorchestratorsessionslistresponse", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "makeorchestratorsessionslistresponse()" + }, + { + "label": "extractArtefactInput()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/pr41OrchestratorReads.test.ts", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_tests_pr41orchestratorreads_test_extractartefactinput", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "extractartefactinput()" + }, + { + "label": "pr4SenderPlumbing.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/pr4SenderPlumbing.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_tests_pr4senderplumbing_test", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "pr4senderplumbing.test.ts" + }, + { + "label": "BASE_BLOB", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/pr4SenderPlumbing.test.ts", + "source_location": "L33", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_tests_pr4senderplumbing_test_base_blob", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "base_blob" + }, + { + "label": "baseInput()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/pr4SenderPlumbing.test.ts", + "source_location": "L42", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_tests_pr4senderplumbing_test_baseinput", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "baseinput()" + }, + { + "label": "RFC-3339", + "file_type": "concept", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/pr4SenderPlumbing.test.ts", + "source_location": "L164", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_tests_pr4senderplumbing_test_ts_docref_rfc_3339", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "rfc-3339" + }, + { + "label": "NOTE: Tests 15\u201318 (validator checks for purpose + capabilities) live in", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/pr4SenderPlumbing.test.ts", + "source_location": "L201", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_tests_pr4senderplumbing_test_rationale_201", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "note: tests 15\u201318 (validator checks for purpose + capabilities) live in" + }, + { + "label": "NOTE: Round-trip tests 26\u201327 (buildSessionImportArtefact \u2192 validator)", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/pr4SenderPlumbing.test.ts", + "source_location": "L297", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_tests_pr4senderplumbing_test_rationale_297", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "note: round-trip tests 26\u201327 (buildsessionimportartefact \u2192 validator)" + }, + { + "label": "anthropicApiKeyStorage.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/anthropicApiKeyStorage.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_anthropicapikeystorage", + "community": 270, + "community_name": "Beapbuilder #270", + "norm_label": "anthropicapikeystorage.ts" + }, + { + "label": "hasAnthropicApiKey()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/anthropicApiKeyStorage.ts", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_anthropicapikeystorage_hasanthropicapikey", + "community": 270, + "community_name": "Beapbuilder #270", + "norm_label": "hasanthropicapikey()" + }, + { + "label": "getAnthropicApiKey()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/anthropicApiKeyStorage.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_anthropicapikeystorage_getanthropicapikey", + "community": 270, + "community_name": "Beapbuilder #270", + "norm_label": "getanthropicapikey()" + }, + { + "label": "saveAnthropicApiKey()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/anthropicApiKeyStorage.ts", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_anthropicapikeystorage_saveanthropicapikey", + "community": 270, + "community_name": "Beapbuilder #270", + "norm_label": "saveanthropicapikey()" + }, + { + "label": "removeAnthropicApiKey()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/anthropicApiKeyStorage.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_anthropicapikeystorage_removeanthropicapikey", + "community": 270, + "community_name": "Beapbuilder #270", + "norm_label": "removeanthropicapikey()" + }, + { + "label": "validateAnthropicApiKey()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/anthropicApiKeyStorage.ts", + "source_location": "L46", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_anthropicapikeystorage_validateanthropicapikey", + "community": 270, + "community_name": "Beapbuilder #270", + "norm_label": "validateanthropicapikey()" + }, + { + "label": "boundary-types.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/boundary-types.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_boundary_types", + "community": 193, + "community_name": "Beapbuilder Handshake", + "norm_label": "boundary-types.ts" + }, + { + "label": "EgressPreset", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/boundary-types.ts", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_boundary_types_egresspreset", + "community": 193, + "community_name": "Beapbuilder Handshake", + "norm_label": "egresspreset" + }, + { + "label": "EgressDestinationType", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/boundary-types.ts", + "source_location": "L32", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_boundary_types_egressdestinationtype", + "community": 193, + "community_name": "Beapbuilder Handshake", + "norm_label": "egressdestinationtype" + }, + { + "label": "EgressDestination", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/boundary-types.ts", + "source_location": "L37", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_boundary_types_egressdestination", + "community": 193, + "community_name": "Beapbuilder Handshake", + "norm_label": "egressdestination" + }, + { + "label": "EgressDeclaration", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/boundary-types.ts", + "source_location": "L54", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_boundary_types_egressdeclaration", + "community": 193, + "community_name": "Beapbuilder Handshake", + "norm_label": "egressdeclaration" + }, + { + "label": "IngressPreset", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/boundary-types.ts", + "source_location": "L72", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_boundary_types_ingresspreset", + "community": 193, + "community_name": "Beapbuilder Handshake", + "norm_label": "ingresspreset" + }, + { + "label": "IngressSourceType", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/boundary-types.ts", + "source_location": "L80", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_boundary_types_ingresssourcetype", + "community": 193, + "community_name": "Beapbuilder Handshake", + "norm_label": "ingresssourcetype" + }, + { + "label": "IngressSource", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/boundary-types.ts", + "source_location": "L85", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_boundary_types_ingresssource", + "community": 193, + "community_name": "Beapbuilder Handshake", + "norm_label": "ingresssource" + }, + { + "label": "IngressDeclaration", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/boundary-types.ts", + "source_location": "L102", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_boundary_types_ingressdeclaration", + "community": 193, + "community_name": "Beapbuilder Handshake", + "norm_label": "ingressdeclaration" + }, + { + "label": "ExecutionBoundary", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/boundary-types.ts", + "source_location": "L124", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_boundary_types_executionboundary", + "community": 193, + "community_name": "Beapbuilder Handshake", + "norm_label": "executionboundary" + }, + { + "label": "EnvelopeDisplaySummary", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/boundary-types.ts", + "source_location": "L145", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_boundary_types_envelopedisplaysummary", + "community": 193, + "community_name": "Beapbuilder Handshake", + "norm_label": "envelopedisplaysummary" + }, + { + "label": "EGRESS_PRESET_CONFIG", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/boundary-types.ts", + "source_location": "L184", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_boundary_types_egress_preset_config", + "community": 193, + "community_name": "Beapbuilder Handshake", + "norm_label": "egress_preset_config" + }, + { + "label": "INGRESS_PRESET_CONFIG", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/boundary-types.ts", + "source_location": "L216", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_boundary_types_ingress_preset_config", + "community": 193, + "community_name": "Beapbuilder Handshake", + "norm_label": "ingress_preset_config" + }, + { + "label": "EGRESS_DESTINATION_TYPES", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/boundary-types.ts", + "source_location": "L238", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_boundary_types_egress_destination_types", + "community": 193, + "community_name": "Beapbuilder Handshake", + "norm_label": "egress_destination_types" + }, + { + "label": "INGRESS_SOURCE_TYPES", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/boundary-types.ts", + "source_location": "L246", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_boundary_types_ingress_source_types", + "community": 193, + "community_name": "Beapbuilder Handshake", + "norm_label": "ingress_source_types" + }, + { + "label": "generateEgressSummary()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/boundary-types.ts", + "source_location": "L261", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_boundary_types_generateegresssummary", + "community": 193, + "community_name": "Beapbuilder Handshake", + "norm_label": "generateegresssummary()" + }, + { + "label": "generateIngressSummary()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/boundary-types.ts", + "source_location": "L282", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_boundary_types_generateingresssummary", + "community": 193, + "community_name": "Beapbuilder Handshake", + "norm_label": "generateingresssummary()" + }, + { + "label": "createDefaultBoundary()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/boundary-types.ts", + "source_location": "L304", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_boundary_types_createdefaultboundary", + "community": 193, + "community_name": "Beapbuilder Handshake", + "norm_label": "createdefaultboundary()" + }, + { + "label": "buildSessionImportArtefact.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/buildSessionImportArtefact.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_buildsessionimportartefact", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "buildsessionimportartefact.ts" + }, + { + "label": "BuildArtefactInput", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/buildSessionImportArtefact.ts", + "source_location": "L37", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_buildsessionimportartefact_buildartefactinput", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "buildartefactinput" + }, + { + "label": "BuildArtefactResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/buildSessionImportArtefact.ts", + "source_location": "L60", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_buildsessionimportartefact_buildartefactresult", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "buildartefactresult" + }, + { + "label": "buildSessionImportArtefact()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/buildSessionImportArtefact.ts", + "source_location": "L68", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_buildsessionimportartefact_buildsessionimportartefact", + "community": 139, + "community_name": "Handshake Beapbuilder Shims", + "norm_label": "buildsessionimportartefact()" + }, + { + "label": "canonical-types.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_canonical_types", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "canonical-types.ts" + }, + { + "label": "CapabilityClass", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_canonical_types_capabilityclass", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "capabilityclass" + }, + { + "label": "NetworkConstraints", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L40", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_canonical_types_networkconstraints", + "community": 128, + "community_name": "Beapbuilder", + "norm_label": "networkconstraints" + }, + { + "label": "BeapEnvelope", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L64", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_canonical_types_beapenvelope", + "community": 193, + "community_name": "Beapbuilder Handshake", + "norm_label": "beapenvelope" + }, + { + "label": "EnvelopeSummary", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L108", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_canonical_types_envelopesummary", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "envelopesummary" + }, + { + "label": "RasterProof", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L136", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_canonical_types_rasterproof", + "community": 167, + "community_name": "Beapbuilder #167", + "norm_label": "rasterproof" + }, + { + "label": "CapsuleAttachment", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L178", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_canonical_types_capsuleattachment", + "community": 167, + "community_name": "Beapbuilder #167", + "norm_label": "capsuleattachment" + }, + { + "label": "BeapCapsule", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L226", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_canonical_types_beapcapsule", + "community": 207, + "community_name": "Beapbuilder Handshake #207", + "norm_label": "beapcapsule" + }, + { + "label": "BuilderSource", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L268", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_canonical_types_buildersource", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "buildersource" + }, + { + "label": "CapsuleBuilderContext", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L277", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_canonical_types_capsulebuildercontext", + "community": 207, + "community_name": "Beapbuilder Handshake #207", + "norm_label": "capsulebuildercontext" + }, + { + "label": "EnvelopeState", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L301", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_canonical_types_envelopestate", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "envelopestate" + }, + { + "label": "CapsuleState", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L321", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_canonical_types_capsulestate", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "capsulestate" + }, + { + "label": "CapsuleBuilderState", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L341", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_canonical_types_capsulebuilderstate", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "capsulebuilderstate" + }, + { + "label": "BuilderRequiredReason", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L368", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_canonical_types_builderrequiredreason", + "community": 128, + "community_name": "Beapbuilder", + "norm_label": "builderrequiredreason" + }, + { + "label": "BuilderRequiredResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L379", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_canonical_types_builderrequiredresult", + "community": 128, + "community_name": "Beapbuilder", + "norm_label": "builderrequiredresult" + }, + { + "label": "ApplyResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L397", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_canonical_types_applyresult", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "applyresult" + }, + { + "label": "QuarantineCloneTransportMetadata", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L463", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_canonical_types_quarantineclonetransportmetadata", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "quarantineclonetransportmetadata" + }, + { + "label": "PurposeIdentifier", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L498", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_canonical_types_purposeidentifier", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "purposeidentifier" + }, + { + "label": "ScopeConstraints", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L513", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_canonical_types_scopeconstraints", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "scopeconstraints" + }, + { + "label": "HandshakeBinding", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L525", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_canonical_types_handshakebinding", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "handshakebinding" + }, + { + "label": "ArtefactPurpose", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L536", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_canonical_types_artefactpurpose", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "artefactpurpose" + }, + { + "label": "OrchestratorSessionContent", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L552", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_canonical_types_orchestratorsessioncontent", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "orchestratorsessioncontent" + }, + { + "label": "FullSessionExportContent", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L603", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_canonical_types_fullsessionexportcontent", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "fullsessionexportcontent" + }, + { + "label": "ArtefactSession", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L636", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_canonical_types_artefactsession", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "artefactsession" + }, + { + "label": "ProcessingEvent", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L642", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_canonical_types_processingevent", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "processingevent" + }, + { + "label": "ArtefactPolicy", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L655", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_canonical_types_artefactpolicy", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "artefactpolicy" + }, + { + "label": "RequestedAction", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L669", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_canonical_types_requestedaction", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "requestedaction" + }, + { + "label": "SensitiveSubcapsuleRef", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L683", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_canonical_types_sensitivesubcapsuleref", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "sensitivesubcapsuleref" + }, + { + "label": "SessionImportArtefact", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L703", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_canonical_types_sessionimportartefact", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "sessionimportartefact" + }, + { + "label": "RFC-3339", + "file_type": "concept", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L528", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_canonical_types_ts_docref_rfc_3339", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "rfc-3339" + }, + { + "label": "AttachmentStatusBadge.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/components/AttachmentStatusBadge.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_components_attachmentstatusbadge", + "community": 99, + "community_name": "Analysis Dashboard Stores", + "norm_label": "attachmentstatusbadge.tsx" + }, + { + "label": "AttachmentParseStatus", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/components/AttachmentStatusBadge.tsx", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_components_attachmentstatusbadge_attachmentparsestatus", + "community": 99, + "community_name": "Analysis Dashboard Stores", + "norm_label": "attachmentparsestatus" + }, + { + "label": "CONFIGS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/components/AttachmentStatusBadge.tsx", + "source_location": "L14", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_components_attachmentstatusbadge_configs", + "community": 99, + "community_name": "Analysis Dashboard Stores", + "norm_label": "configs" + }, + { + "label": "AttachmentStatusBadgeProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/components/AttachmentStatusBadge.tsx", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_components_attachmentstatusbadge_attachmentstatusbadgeprops", + "community": 99, + "community_name": "Analysis Dashboard Stores", + "norm_label": "attachmentstatusbadgeprops" + }, + { + "label": "AttachmentStatusBadge()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/components/AttachmentStatusBadge.tsx", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_components_attachmentstatusbadge_attachmentstatusbadge", + "community": 99, + "community_name": "Analysis Dashboard Stores", + "norm_label": "attachmentstatusbadge()" + }, + { + "label": "BeapDocumentReaderModal.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/components/BeapDocumentReaderModal.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_components_beapdocumentreadermodal", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "beapdocumentreadermodal.tsx" + }, + { + "label": "splitToSyntheticPages()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/components/BeapDocumentReaderModal.tsx", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_components_beapdocumentreadermodal_splittosyntheticpages", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "splittosyntheticpages()" + }, + { + "label": "BeapDocumentReaderModalProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/components/BeapDocumentReaderModal.tsx", + "source_location": "L32", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_components_beapdocumentreadermodal_beapdocumentreadermodalprops", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "beapdocumentreadermodalprops" + }, + { + "label": "BeapDocumentReaderModal()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/components/BeapDocumentReaderModal.tsx", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_components_beapdocumentreadermodal_beapdocumentreadermodal", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "beapdocumentreadermodal()" + }, + { + "label": "DeliveryOptions.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/components/DeliveryOptions.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_components_deliveryoptions", + "community": 128, + "community_name": "Beapbuilder", + "norm_label": "deliveryoptions.tsx" + }, + { + "label": "DeliveryOptionsProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/components/DeliveryOptions.tsx", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_components_deliveryoptions_deliveryoptionsprops", + "community": 128, + "community_name": "Beapbuilder", + "norm_label": "deliveryoptionsprops" + }, + { + "label": "DELIVERY_METHODS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/components/DeliveryOptions.tsx", + "source_location": "L25", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_components_deliveryoptions_delivery_methods", + "community": 128, + "community_name": "Beapbuilder", + "norm_label": "delivery_methods" + }, + { + "label": "DeliveryOptions()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/components/DeliveryOptions.tsx", + "source_location": "L46", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_components_deliveryoptions_deliveryoptions", + "community": 128, + "community_name": "Beapbuilder", + "norm_label": "deliveryoptions()" + }, + { + "label": "EnvelopeSection.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/components/EnvelopeSection.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_components_envelopesection", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "envelopesection.tsx" + }, + { + "label": "EnvelopeSectionProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/components/EnvelopeSection.tsx", + "source_location": "L16", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_components_envelopesection_envelopesectionprops", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "envelopesectionprops" + }, + { + "label": "EnvelopeSection()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/components/EnvelopeSection.tsx", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_components_envelopesection_envelopesection", + "community": 128, + "community_name": "Beapbuilder", + "norm_label": "envelopesection()" + }, + { + "label": "EnvelopeSummaryPanel.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/components/EnvelopeSummaryPanel.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_components_envelopesummarypanel", + "community": 128, + "community_name": "Beapbuilder", + "norm_label": "envelopesummarypanel.tsx" + }, + { + "label": "EnvelopeSummaryPanelProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/components/EnvelopeSummaryPanel.tsx", + "source_location": "L21", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_components_envelopesummarypanel_envelopesummarypanelprops", + "community": 128, + "community_name": "Beapbuilder", + "norm_label": "envelopesummarypanelprops" + }, + { + "label": "EnvelopeSummaryPanel()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/components/EnvelopeSummaryPanel.tsx", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_components_envelopesummarypanel_envelopesummarypanel", + "community": 128, + "community_name": "Beapbuilder", + "norm_label": "envelopesummarypanel()" + }, + { + "label": "EnvelopeBadge()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/components/EnvelopeSummaryPanel.tsx", + "source_location": "L290", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_components_envelopesummarypanel_envelopebadge", + "community": 128, + "community_name": "Beapbuilder", + "norm_label": "envelopebadge()" + }, + { + "label": "ExecutionBoundaryPanel.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/components/ExecutionBoundaryPanel.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_components_executionboundarypanel", + "community": 193, + "community_name": "Beapbuilder Handshake", + "norm_label": "executionboundarypanel.tsx" + }, + { + "label": "ExecutionBoundaryPanelProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/components/ExecutionBoundaryPanel.tsx", + "source_location": "L29", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_components_executionboundarypanel_executionboundarypanelprops", + "community": 193, + "community_name": "Beapbuilder Handshake", + "norm_label": "executionboundarypanelprops" + }, + { + "label": "ExecutionBoundaryPanel()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/components/ExecutionBoundaryPanel.tsx", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_components_executionboundarypanel_executionboundarypanel", + "community": 193, + "community_name": "Beapbuilder Handshake", + "norm_label": "executionboundarypanel()" + }, + { + "label": "ExecutionBoundarySection.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/components/ExecutionBoundarySection.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_components_executionboundarysection", + "community": 128, + "community_name": "Beapbuilder", + "norm_label": "executionboundarysection.tsx" + }, + { + "label": "ExecutionBoundarySectionProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/components/ExecutionBoundarySection.tsx", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_components_executionboundarysection_executionboundarysectionprops", + "community": 128, + "community_name": "Beapbuilder", + "norm_label": "executionboundarysectionprops" + }, + { + "label": "ExecutionBoundarySection()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/components/ExecutionBoundarySection.tsx", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_components_executionboundarysection_executionboundarysection", + "community": 128, + "community_name": "Beapbuilder", + "norm_label": "executionboundarysection()" + }, + { + "label": "VisionFallbackButton.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/components/VisionFallbackButton.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_components_visionfallbackbutton", + "community": 270, + "community_name": "Beapbuilder #270", + "norm_label": "visionfallbackbutton.tsx" + }, + { + "label": "VisionFallbackButtonProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/components/VisionFallbackButton.tsx", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_components_visionfallbackbutton_visionfallbackbuttonprops", + "community": 167, + "community_name": "Beapbuilder #167", + "norm_label": "visionfallbackbuttonprops" + }, + { + "label": "VisionFallbackButton()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/components/VisionFallbackButton.tsx", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_components_visionfallbackbutton_visionfallbackbutton", + "community": 270, + "community_name": "Beapbuilder #270", + "norm_label": "visionfallbackbutton()" + }, + { + "label": "beap-builder/components/index.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/components/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_components_index", + "community": 128, + "community_name": "Beapbuilder", + "norm_label": "beap-builder/components/index.ts" + }, + { + "label": "dispatch-types.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/dispatch-types.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_dispatch_types", + "community": 207, + "community_name": "Beapbuilder Handshake #207", + "norm_label": "dispatch-types.ts" + }, + { + "label": "DeliveryMethod", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/dispatch-types.ts", + "source_location": "L19", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_dispatch_types_deliverymethod", + "community": 207, + "community_name": "Beapbuilder Handshake #207", + "norm_label": "deliverymethod" + }, + { + "label": "DeliveryStatus", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/dispatch-types.ts", + "source_location": "L24", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_dispatch_types_deliverystatus", + "community": 207, + "community_name": "Beapbuilder Handshake #207", + "norm_label": "deliverystatus" + }, + { + "label": "SendContext", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/dispatch-types.ts", + "source_location": "L40", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_dispatch_types_sendcontext", + "community": 207, + "community_name": "Beapbuilder Handshake #207", + "norm_label": "sendcontext" + }, + { + "label": "SendAttachment", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/dispatch-types.ts", + "source_location": "L81", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_dispatch_types_sendattachment", + "community": 207, + "community_name": "Beapbuilder Handshake #207", + "norm_label": "sendattachment" + }, + { + "label": "SendSessionRef", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/dispatch-types.ts", + "source_location": "L94", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_dispatch_types_sendsessionref", + "community": 207, + "community_name": "Beapbuilder Handshake #207", + "norm_label": "sendsessionref" + }, + { + "label": "DeliveryConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/dispatch-types.ts", + "source_location": "L107", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_dispatch_types_deliveryconfig", + "community": 207, + "community_name": "Beapbuilder Handshake #207", + "norm_label": "deliveryconfig" + }, + { + "label": "EmailDeliveryConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/dispatch-types.ts", + "source_location": "L124", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_dispatch_types_emaildeliveryconfig", + "community": 207, + "community_name": "Beapbuilder Handshake #207", + "norm_label": "emaildeliveryconfig" + }, + { + "label": "MessengerDeliveryConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/dispatch-types.ts", + "source_location": "L131", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_dispatch_types_messengerdeliveryconfig", + "community": 207, + "community_name": "Beapbuilder Handshake #207", + "norm_label": "messengerdeliveryconfig" + }, + { + "label": "DownloadDeliveryConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/dispatch-types.ts", + "source_location": "L136", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_dispatch_types_downloaddeliveryconfig", + "community": 207, + "community_name": "Beapbuilder Handshake #207", + "norm_label": "downloaddeliveryconfig" + }, + { + "label": "ChatDeliveryConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/dispatch-types.ts", + "source_location": "L141", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_dispatch_types_chatdeliveryconfig", + "community": 207, + "community_name": "Beapbuilder Handshake #207", + "norm_label": "chatdeliveryconfig" + }, + { + "label": "SendResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/dispatch-types.ts", + "source_location": "L154", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_dispatch_types_sendresult", + "community": 207, + "community_name": "Beapbuilder Handshake #207", + "norm_label": "sendresult" + }, + { + "label": "DeliveryAttempt", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/dispatch-types.ts", + "source_location": "L187", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_dispatch_types_deliveryattempt", + "community": 207, + "community_name": "Beapbuilder Handshake #207", + "norm_label": "deliveryattempt" + }, + { + "label": "OutboxEntry", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/dispatch-types.ts", + "source_location": "L201", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_dispatch_types_outboxentry", + "community": 207, + "community_name": "Beapbuilder Handshake #207", + "norm_label": "outboxentry" + }, + { + "label": "DispatchResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/dispatch-types.ts", + "source_location": "L261", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_dispatch_types_dispatchresult", + "community": 207, + "community_name": "Beapbuilder Handshake #207", + "norm_label": "dispatchresult" + }, + { + "label": "ManualConfirmAction", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/dispatch-types.ts", + "source_location": "L281", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_dispatch_types_manualconfirmaction", + "community": 207, + "community_name": "Beapbuilder Handshake #207", + "norm_label": "manualconfirmaction" + }, + { + "label": "draftAttachmentAutoParse.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/draftAttachmentAutoParse.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_draftattachmentautoparse", + "community": 167, + "community_name": "Beapbuilder #167", + "norm_label": "draftattachmentautoparse.ts" + }, + { + "label": "DraftAttachmentParseItem", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/draftAttachmentAutoParse.ts", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_draftattachmentautoparse_draftattachmentparseitem", + "community": 167, + "community_name": "Beapbuilder #167", + "norm_label": "draftattachmentparseitem" + }, + { + "label": "DraftAttachmentParseUpdate", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/draftAttachmentAutoParse.ts", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_draftattachmentautoparse_draftattachmentparseupdate", + "community": 167, + "community_name": "Beapbuilder #167", + "norm_label": "draftattachmentparseupdate" + }, + { + "label": "draftAttachmentParseRejectedUpdate()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/draftAttachmentAutoParse.ts", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_draftattachmentautoparse_draftattachmentparserejectedupdate", + "community": 167, + "community_name": "Beapbuilder #167", + "norm_label": "draftattachmentparserejectedupdate()" + }, + { + "label": "runDraftAttachmentParseWithFallback()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/draftAttachmentAutoParse.ts", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_draftattachmentautoparse_rundraftattachmentparsewithfallback", + "community": 167, + "community_name": "Beapbuilder #167", + "norm_label": "rundraftattachmentparsewithfallback()" + }, + { + "label": "handshakeRefresh.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/handshakeRefresh.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_handshakerefresh", + "community": 354, + "community_name": "Beapbuilder Handshake #354", + "norm_label": "handshakerefresh.ts" + }, + { + "label": "UserMessage", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/handshakeRefresh.ts", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_handshakerefresh_usermessage", + "community": 354, + "community_name": "Beapbuilder Handshake #354", + "norm_label": "usermessage" + }, + { + "label": "HandshakeRefreshResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/handshakeRefresh.ts", + "source_location": "L19", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_handshakerefresh_handshakerefreshresult", + "community": 354, + "community_name": "Beapbuilder Handshake #354", + "norm_label": "handshakerefreshresult" + }, + { + "label": "generateBlockId()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/handshakeRefresh.ts", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_handshakerefresh_generateblockid", + "community": 354, + "community_name": "Beapbuilder Handshake #354", + "norm_label": "generateblockid()" + }, + { + "label": "computeBlockHash()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/handshakeRefresh.ts", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_handshakerefresh_computeblockhash", + "community": 354, + "community_name": "Beapbuilder Handshake #354", + "norm_label": "computeblockhash()" + }, + { + "label": "buildContextBlockProofs()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/handshakeRefresh.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_handshakerefresh_buildcontextblockproofs", + "community": 354, + "community_name": "Beapbuilder Handshake #354", + "norm_label": "buildcontextblockproofs()" + }, + { + "label": "buildContextBlocks", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/handshakeRefresh.ts", + "source_location": "L49", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_handshakerefresh_buildcontextblocks", + "community": 354, + "community_name": "Beapbuilder Handshake #354", + "norm_label": "buildcontextblocks" + }, + { + "label": "sendViaHandshakeRefresh()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/handshakeRefresh.ts", + "source_location": "L51", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_handshakerefresh_sendviahandshakerefresh", + "community": 354, + "community_name": "Beapbuilder Handshake #354", + "norm_label": "sendviahandshakerefresh()" + }, + { + "label": "beap-builder/index.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_index", + "community": 128, + "community_name": "Beapbuilder", + "norm_label": "beap-builder/index.ts" + }, + { + "label": "parserService.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/parserService.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_parserservice", + "community": 167, + "community_name": "Beapbuilder #167", + "norm_label": "parserservice.ts" + }, + { + "label": "safeAtob()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/parserService.ts", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_parserservice_safeatob", + "community": 167, + "community_name": "Beapbuilder #167", + "norm_label": "safeatob()" + }, + { + "label": "getLaunchHeaders()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/parserService.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_parserservice_getlaunchheaders", + "community": 167, + "community_name": "Beapbuilder #167", + "norm_label": "getlaunchheaders()" + }, + { + "label": "resolveExtensionPdfWorkerSrc()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/parserService.ts", + "source_location": "L49", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_parserservice_resolveextensionpdfworkersrc", + "community": 167, + "community_name": "Beapbuilder #167", + "norm_label": "resolveextensionpdfworkersrc()" + }, + { + "label": "initPdfjs()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/parserService.ts", + "source_location": "L62", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_parserservice_initpdfjs", + "community": 167, + "community_name": "Beapbuilder #167", + "norm_label": "initpdfjs()" + }, + { + "label": "extractPdfTextBrowser()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/parserService.ts", + "source_location": "L89", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_parserservice_extractpdftextbrowser", + "community": 167, + "community_name": "Beapbuilder #167", + "norm_label": "extractpdftextbrowser()" + }, + { + "label": "ParserResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/parserService.ts", + "source_location": "L147", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_parserservice_parserresult", + "community": 167, + "community_name": "Beapbuilder #167", + "norm_label": "parserresult" + }, + { + "label": "ParserProvenance", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/parserService.ts", + "source_location": "L160", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_parserservice_parserprovenance", + "community": 167, + "community_name": "Beapbuilder #167", + "norm_label": "parserprovenance" + }, + { + "label": "RasterPageData", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/parserService.ts", + "source_location": "L172", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_parserservice_rasterpagedata", + "community": 167, + "community_name": "Beapbuilder #167", + "norm_label": "rasterpagedata" + }, + { + "label": "RasterResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/parserService.ts", + "source_location": "L191", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_parserservice_rasterresult", + "community": 167, + "community_name": "Beapbuilder #167", + "norm_label": "rasterresult" + }, + { + "label": "PARSEABLE_FORMATS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/parserService.ts", + "source_location": "L212", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_parserservice_parseable_formats", + "community": 167, + "community_name": "Beapbuilder #167", + "norm_label": "parseable_formats" + }, + { + "label": "isParseableFormat()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/parserService.ts", + "source_location": "L221", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_parserservice_isparseableformat", + "community": 167, + "community_name": "Beapbuilder #167", + "norm_label": "isparseableformat()" + }, + { + "label": "extractPdfTextElectron()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/parserService.ts", + "source_location": "L228", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_parserservice_extractpdftextelectron", + "community": 167, + "community_name": "Beapbuilder #167", + "norm_label": "extractpdftextelectron()" + }, + { + "label": "extractPdfText()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/parserService.ts", + "source_location": "L267", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_parserservice_extractpdftext", + "community": 167, + "community_name": "Beapbuilder #167", + "norm_label": "extractpdftext()" + }, + { + "label": "processAttachmentForParsing()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/parserService.ts", + "source_location": "L304", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_parserservice_processattachmentforparsing", + "community": 167, + "community_name": "Beapbuilder #167", + "norm_label": "processattachmentforparsing()" + }, + { + "label": "isParserServiceAvailable()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/parserService.ts", + "source_location": "L402", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_parserservice_isparserserviceavailable", + "community": 167, + "community_name": "Beapbuilder #167", + "norm_label": "isparserserviceavailable()" + }, + { + "label": "rasterizePdf()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/parserService.ts", + "source_location": "L429", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_parserservice_rasterizepdf", + "community": 167, + "community_name": "Beapbuilder #167", + "norm_label": "rasterizepdf()" + }, + { + "label": "processAttachmentForRasterization()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/parserService.ts", + "source_location": "L480", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_parserservice_processattachmentforrasterization", + "community": 167, + "community_name": "Beapbuilder #167", + "norm_label": "processattachmentforrasterization()" + }, + { + "label": "assertNoSemanticContentInTransport()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/parserService.ts", + "source_location": "L605", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_parserservice_assertnosemanticcontentintransport", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "assertnosemanticcontentintransport()" + }, + { + "label": "getSafeAttachmentInfo()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/parserService.ts", + "source_location": "L630", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_parserservice_getsafeattachmentinfo", + "community": 167, + "community_name": "Beapbuilder #167", + "norm_label": "getsafeattachmentinfo()" + }, + { + "label": "requiresBuilder.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/requiresBuilder.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_requiresbuilder", + "community": 128, + "community_name": "Beapbuilder", + "norm_label": "requiresbuilder.ts" + }, + { + "label": "BuilderDecisionContext", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/requiresBuilder.ts", + "source_location": "L26", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_requiresbuilder_builderdecisioncontext", + "community": 167, + "community_name": "Beapbuilder #167", + "norm_label": "builderdecisioncontext" + }, + { + "label": "requiresBeapBuilder()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/requiresBuilder.ts", + "source_location": "L62", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_requiresbuilder_requiresbeapbuilder", + "community": 128, + "community_name": "Beapbuilder", + "norm_label": "requiresbeapbuilder()" + }, + { + "label": "canSendSilently()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/requiresBuilder.ts", + "source_location": "L117", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_requiresbuilder_cansendsilently", + "community": 128, + "community_name": "Beapbuilder", + "norm_label": "cansendsilently()" + }, + { + "label": "getBuilderRequiredReasons()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/requiresBuilder.ts", + "source_location": "L136", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_requiresbuilder_getbuilderrequiredreasons", + "community": 128, + "community_name": "Beapbuilder", + "norm_label": "getbuilderrequiredreasons()" + }, + { + "label": "beap-builder/types.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/types.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_types", + "community": 128, + "community_name": "Beapbuilder", + "norm_label": "beap-builder/types.ts" + }, + { + "label": "BuilderMode", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/types.ts", + "source_location": "L26", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_types_buildermode", + "community": 128, + "community_name": "Beapbuilder", + "norm_label": "buildermode" + }, + { + "label": "BuilderContext", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/types.ts", + "source_location": "L36", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_types_buildercontext", + "community": 128, + "community_name": "Beapbuilder", + "norm_label": "buildercontext" + }, + { + "label": "BuilderAttachment", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/types.ts", + "source_location": "L66", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_types_builderattachment", + "community": 128, + "community_name": "Beapbuilder", + "norm_label": "builderattachment" + }, + { + "label": "ModeTriggerResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/types.ts", + "source_location": "L96", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_types_modetriggerresult", + "community": 128, + "community_name": "Beapbuilder", + "norm_label": "modetriggerresult" + }, + { + "label": "ExplicitModeReason", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/types.ts", + "source_location": "L107", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_types_explicitmodereason", + "community": 128, + "community_name": "Beapbuilder", + "norm_label": "explicitmodereason" + }, + { + "label": "SilentBuildRequest", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/types.ts", + "source_location": "L121", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_types_silentbuildrequest", + "community": 128, + "community_name": "Beapbuilder", + "norm_label": "silentbuildrequest" + }, + { + "label": "ExplicitBuildRequest", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/types.ts", + "source_location": "L142", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_types_explicitbuildrequest", + "community": 128, + "community_name": "Beapbuilder", + "norm_label": "explicitbuildrequest" + }, + { + "label": "BeapBuildResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/types.ts", + "source_location": "L164", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_types_beapbuildresult", + "community": 128, + "community_name": "Beapbuilder", + "norm_label": "beapbuildresult" + }, + { + "label": "DeliveryMethod", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/types.ts", + "source_location": "L191", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_types_deliverymethod", + "community": 128, + "community_name": "Beapbuilder", + "norm_label": "deliverymethod" + }, + { + "label": "DeliveryConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/types.ts", + "source_location": "L193", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_types_deliveryconfig", + "community": 128, + "community_name": "Beapbuilder", + "norm_label": "deliveryconfig" + }, + { + "label": "BuilderState", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/types.ts", + "source_location": "L223", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_types_builderstate", + "community": 128, + "community_name": "Beapbuilder", + "norm_label": "builderstate" + }, + { + "label": "useEnvelopeGenerator.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_useenvelopegenerator", + "community": 193, + "community_name": "Beapbuilder Handshake", + "norm_label": "useenvelopegenerator.ts" + }, + { + "label": "EnvelopeGeneratorState", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L38", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_envelopegeneratorstate", + "community": 193, + "community_name": "Beapbuilder Handshake", + "norm_label": "envelopegeneratorstate" + }, + { + "label": "useEnvelopeGenerator", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L117", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_useenvelopegenerator", + "community": 128, + "community_name": "Beapbuilder", + "norm_label": "useenvelopegenerator" + }, + { + "label": "generateEnvelopeFromBoundary()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L375", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_generateenvelopefromboundary", + "community": 193, + "community_name": "Beapbuilder Handshake", + "norm_label": "generateenvelopefromboundary()" + }, + { + "label": "generateDisplaySummary()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L445", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_generatedisplaysummary", + "community": 193, + "community_name": "Beapbuilder Handshake", + "norm_label": "generatedisplaysummary()" + }, + { + "label": "simpleHash()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L468", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_simplehash", + "community": 193, + "community_name": "Beapbuilder Handshake", + "norm_label": "simplehash()" + }, + { + "label": "useExecutionBoundary()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L485", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_useexecutionboundary", + "community": 128, + "community_name": "Beapbuilder", + "norm_label": "useexecutionboundary()" + }, + { + "label": "useEnvelopeDisplaySummary()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L488", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_useenvelopedisplaysummary", + "community": 128, + "community_name": "Beapbuilder", + "norm_label": "useenvelopedisplaysummary()" + }, + { + "label": "useIsEnvelopeRegenerating()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L491", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_useisenveloperegenerating", + "community": 128, + "community_name": "Beapbuilder", + "norm_label": "useisenveloperegenerating()" + }, + { + "label": "useEgressDeclaration()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L494", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_useegressdeclaration", + "community": 128, + "community_name": "Beapbuilder", + "norm_label": "useegressdeclaration()" + }, + { + "label": "useIngressDeclaration()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L497", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_useingressdeclaration", + "community": 128, + "community_name": "Beapbuilder", + "norm_label": "useingressdeclaration()" + }, + { + "label": "useGenerationCount()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L500", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_usegenerationcount", + "community": 128, + "community_name": "Beapbuilder", + "norm_label": "usegenerationcount()" + }, + { + "label": "useOutboxStore.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/useOutboxStore.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_useoutboxstore", + "community": 207, + "community_name": "Beapbuilder Handshake #207", + "norm_label": "useoutboxstore.ts" + }, + { + "label": "OutboxState", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/useOutboxStore.ts", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_useoutboxstore_outboxstate", + "community": 207, + "community_name": "Beapbuilder Handshake #207", + "norm_label": "outboxstate" + }, + { + "label": "useOutboxStore", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/useOutboxStore.ts", + "source_location": "L97", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_useoutboxstore_useoutboxstore", + "community": 207, + "community_name": "Beapbuilder Handshake #207", + "norm_label": "useoutboxstore" + }, + { + "label": "useOutboxEntries()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/useOutboxStore.ts", + "source_location": "L301", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_useoutboxstore_useoutboxentries", + "community": 207, + "community_name": "Beapbuilder Handshake #207", + "norm_label": "useoutboxentries()" + }, + { + "label": "usePendingOutboxEntries()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/useOutboxStore.ts", + "source_location": "L304", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_useoutboxstore_usependingoutboxentries", + "community": 207, + "community_name": "Beapbuilder Handshake #207", + "norm_label": "usependingoutboxentries()" + }, + { + "label": "useOutboxStatusCounts()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/useOutboxStore.ts", + "source_location": "L307", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_useoutboxstore_useoutboxstatuscounts", + "community": 207, + "community_name": "Beapbuilder Handshake #207", + "norm_label": "useoutboxstatuscounts()" + }, + { + "label": "useOutboxEntry()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/useOutboxStore.ts", + "source_location": "L310", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_useoutboxstore_useoutboxentry", + "community": 207, + "community_name": "Beapbuilder Handshake #207", + "norm_label": "useoutboxentry()" + }, + { + "label": "visionExtractionService.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/visionExtractionService.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_visionextractionservice", + "community": 270, + "community_name": "Beapbuilder #270", + "norm_label": "visionextractionservice.ts" + }, + { + "label": "safeAtob()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/visionExtractionService.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_visionextractionservice_safeatob", + "community": 270, + "community_name": "Beapbuilder #270", + "norm_label": "safeatob()" + }, + { + "label": "EXTRACT_PROMPT", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/visionExtractionService.ts", + "source_location": "L29", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_visionextractionservice_extract_prompt", + "community": 270, + "community_name": "Beapbuilder #270", + "norm_label": "extract_prompt" + }, + { + "label": "VisionExtractionResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/visionExtractionService.ts", + "source_location": "L38", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_visionextractionservice_visionextractionresult", + "community": 270, + "community_name": "Beapbuilder #270", + "norm_label": "visionextractionresult" + }, + { + "label": "VisionExtractionOptions", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/visionExtractionService.ts", + "source_location": "L45", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_visionextractionservice_visionextractionoptions", + "community": 270, + "community_name": "Beapbuilder #270", + "norm_label": "visionextractionoptions" + }, + { + "label": "resolveExtensionPdfWorkerSrc()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/visionExtractionService.ts", + "source_location": "L51", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_visionextractionservice_resolveextensionpdfworkersrc", + "community": 270, + "community_name": "Beapbuilder #270", + "norm_label": "resolveextensionpdfworkersrc()" + }, + { + "label": "initPdfjs()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/visionExtractionService.ts", + "source_location": "L64", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_visionextractionservice_initpdfjs", + "community": 270, + "community_name": "Beapbuilder #270", + "norm_label": "initpdfjs()" + }, + { + "label": "renderPageToPng()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/visionExtractionService.ts", + "source_location": "L84", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_visionextractionservice_renderpagetopng", + "community": 270, + "community_name": "Beapbuilder #270", + "norm_label": "renderpagetopng()" + }, + { + "label": "extractPageWithVision()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/visionExtractionService.ts", + "source_location": "L112", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_visionextractionservice_extractpagewithvision", + "community": 270, + "community_name": "Beapbuilder #270", + "norm_label": "extractpagewithvision()" + }, + { + "label": "extractPdfTextWithVision()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-builder/visionExtractionService.ts", + "source_location": "L176", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_builder_visionextractionservice_extractpdftextwithvision", + "community": 270, + "community_name": "Beapbuilder #270", + "norm_label": "extractpdftextwithvision()" + }, + { + "label": "activationPipeline.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/activationPipeline.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_activationpipeline_test", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "activationpipeline.test.ts" + }, + { + "label": "makeFullExportArtefact()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/activationPipeline.test.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_activationpipeline_test_makefullexportartefact", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "makefullexportartefact()" + }, + { + "label": "ChromeMock", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/activationPipeline.test.ts", + "source_location": "L69", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_activationpipeline_test_chromemock", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "chromemock" + }, + { + "label": "makeChromeMock()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/activationPipeline.test.ts", + "source_location": "L78", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_activationpipeline_test_makechromemock", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "makechromemock()" + }, + { + "label": "attachmentPickerLimits.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/attachmentPickerLimits.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_attachmentpickerlimits_test", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "attachmentpickerlimits.test.ts" + }, + { + "label": "b81InboxPagination.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b81InboxPagination.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_b81inboxpagination_test", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "b81inboxpagination.test.ts" + }, + { + "label": "mockGetBeapInboxMessages", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b81InboxPagination.test.ts", + "source_location": "L17", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_b81inboxpagination_test_mockgetbeapinboxmessages", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "mockgetbeapinboxmessages" + }, + { + "label": "makeRow()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b81InboxPagination.test.ts", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_b81inboxpagination_test_makerow", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "makerow()" + }, + { + "label": "mockList()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b81InboxPagination.test.ts", + "source_location": "L57", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_b81inboxpagination_test_mocklist", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "mocklist()" + }, + { + "label": "getStore()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b81InboxPagination.test.ts", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_b81inboxpagination_test_getstore", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "getstore()" + }, + { + "label": "b82PatchMode.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b82PatchMode.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_b82patchmode_test", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "b82patchmode.test.ts" + }, + { + "label": "mockGetBeapInboxMessages", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b82PatchMode.test.ts", + "source_location": "L25", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_b82patchmode_test_mockgetbeapinboxmessages", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "mockgetbeapinboxmessages" + }, + { + "label": "mockGetBeapInboxMany", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b82PatchMode.test.ts", + "source_location": "L26", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_b82patchmode_test_mockgetbeapinboxmany", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "mockgetbeapinboxmany" + }, + { + "label": "mockBeapInboxMarkRead", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b82PatchMode.test.ts", + "source_location": "L27", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_b82patchmode_test_mockbeapinboxmarkread", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "mockbeapinboxmarkread" + }, + { + "label": "mockBeapInboxArchive", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b82PatchMode.test.ts", + "source_location": "L28", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_b82patchmode_test_mockbeapinboxarchive", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "mockbeapinboxarchive" + }, + { + "label": "mockBeapInboxUnarchive", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b82PatchMode.test.ts", + "source_location": "L29", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_b82patchmode_test_mockbeapinboxunarchive", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "mockbeapinboxunarchive" + }, + { + "label": "mockBeapInboxClassify", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b82PatchMode.test.ts", + "source_location": "L30", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_b82patchmode_test_mockbeapinboxclassify", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "mockbeapinboxclassify" + }, + { + "label": "mockBeapInboxSetUrgency", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b82PatchMode.test.ts", + "source_location": "L31", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_b82patchmode_test_mockbeapinboxseturgency", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "mockbeapinboxseturgency" + }, + { + "label": "makeRow()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b82PatchMode.test.ts", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_b82patchmode_test_makerow", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "makerow()" + }, + { + "label": "mockList()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b82PatchMode.test.ts", + "source_location": "L69", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_b82patchmode_test_mocklist", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "mocklist()" + }, + { + "label": "getStore()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b82PatchMode.test.ts", + "source_location": "L73", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_b82patchmode_test_getstore", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "getstore()" + }, + { + "label": "b8InboxStoreMirror.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b8InboxStoreMirror.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_b8inboxstoremirror_test", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "b8inboxstoremirror.test.ts" + }, + { + "label": "mockGetBeapInboxMessages", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b8InboxStoreMirror.test.ts", + "source_location": "L24", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_b8inboxstoremirror_test_mockgetbeapinboxmessages", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "mockgetbeapinboxmessages" + }, + { + "label": "mockGetBeapInboxMany", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b8InboxStoreMirror.test.ts", + "source_location": "L26", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_b8inboxstoremirror_test_mockgetbeapinboxmany", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "mockgetbeapinboxmany" + }, + { + "label": "mockBeapInboxMarkRead", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b8InboxStoreMirror.test.ts", + "source_location": "L27", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_b8inboxstoremirror_test_mockbeapinboxmarkread", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "mockbeapinboxmarkread" + }, + { + "label": "mockBeapInboxArchive", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b8InboxStoreMirror.test.ts", + "source_location": "L28", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_b8inboxstoremirror_test_mockbeapinboxarchive", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "mockbeapinboxarchive" + }, + { + "label": "mockBeapInboxUnarchive", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b8InboxStoreMirror.test.ts", + "source_location": "L29", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_b8inboxstoremirror_test_mockbeapinboxunarchive", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "mockbeapinboxunarchive" + }, + { + "label": "mockBeapInboxClassify", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b8InboxStoreMirror.test.ts", + "source_location": "L30", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_b8inboxstoremirror_test_mockbeapinboxclassify", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "mockbeapinboxclassify" + }, + { + "label": "mockBeapInboxSetUrgency", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b8InboxStoreMirror.test.ts", + "source_location": "L31", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_b8inboxstoremirror_test_mockbeapinboxseturgency", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "mockbeapinboxseturgency" + }, + { + "label": "makeRow()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b8InboxStoreMirror.test.ts", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_b8inboxstoremirror_test_makerow", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "makerow()" + }, + { + "label": "mockList()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b8InboxStoreMirror.test.ts", + "source_location": "L74", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_b8inboxstoremirror_test_mocklist", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "mocklist()" + }, + { + "label": "getStore()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b8InboxStoreMirror.test.ts", + "source_location": "L79", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_b8inboxstoremirror_test_getstore", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "getstore()" + }, + { + "label": "beapInboxBridges.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/beapInboxBridges.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_beapinboxbridges_test", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "beapinboxbridges.test.ts" + }, + { + "label": "tabPayload", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/beapInboxBridges.test.ts", + "source_location": "L11", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_beapinboxbridges_test_tabpayload", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "tabpayload" + }, + { + "label": "beapModeRunEligibility.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/beapModeRunEligibility.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_beapmoderuneligibility_test", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "beapmoderuneligibility.test.ts" + }, + { + "label": "baseAgent()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/beapModeRunEligibility.test.ts", + "source_location": "L4", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_beapmoderuneligibility_test_baseagent", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "baseagent()" + }, + { + "label": "beapSessionBridgeGuards.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/beapSessionBridgeGuards.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_beapsessionbridgeguards_test", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "beapsessionbridgeguards.test.ts" + }, + { + "label": "integrationDefaultAutomationMetadata.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/integrationDefaultAutomationMetadata.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_integrationdefaultautomationmetadata_test", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "integrationdefaultautomationmetadata.test.ts" + }, + { + "label": "msg()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/integrationDefaultAutomationMetadata.test.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_integrationdefaultautomationmetadata_test_msg", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "msg()" + }, + { + "label": "modeRunExecutionPipeline.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/modeRunExecutionPipeline.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_moderunexecutionpipeline_test", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "moderunexecutionpipeline.test.ts" + }, + { + "label": "makeRunResult()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/modeRunExecutionPipeline.test.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_moderunexecutionpipeline_test_makerunresult", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "makerunresult()" + }, + { + "label": "simulateTrigger()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/modeRunExecutionPipeline.test.ts", + "source_location": "L80", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_moderunexecutionpipeline_test_simulatetrigger", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "simulatetrigger()" + }, + { + "label": "pr5InboxWiring.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr5InboxWiring.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_pr5inboxwiring_test", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "pr5inboxwiring.test.ts" + }, + { + "label": "baseAttachment()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr5InboxWiring.test.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_pr5inboxwiring_test_baseattachment", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "baseattachment()" + }, + { + "label": "baseMessage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr5InboxWiring.test.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_pr5inboxwiring_test_basemessage", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "basemessage()" + }, + { + "label": "minimalArtefact()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr5InboxWiring.test.ts", + "source_location": "L57", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_pr5inboxwiring_test_minimalartefact", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "minimalartefact()" + }, + { + "label": "minimalV1Attachment", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr5InboxWiring.test.ts", + "source_location": "L78", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_pr5inboxwiring_test_minimalv1attachment", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "minimalv1attachment" + }, + { + "label": "gateValidated()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr5InboxWiring.test.ts", + "source_location": "L194", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_pr5inboxwiring_test_gatevalidated", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "gatevalidated()" + }, + { + "label": "getArtefactSessionRefs()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr5InboxWiring.test.ts", + "source_location": "L243", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_pr5inboxwiring_test_getartefactsessionrefs", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "getartefactsessionrefs()" + }, + { + "label": "pr6ReplyPath.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr6ReplyPath.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_pr6replypath_test", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "pr6replypath.test.ts" + }, + { + "label": "makeHandshakeRecord()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr6ReplyPath.test.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_pr6replypath_test_makehandshakerecord", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "makehandshakerecord()" + }, + { + "label": "makeSessionData()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr6ReplyPath.test.ts", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_pr6replypath_test_makesessiondata", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "makesessiondata()" + }, + { + "label": "buildReplyArtefact()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr6ReplyPath.test.ts", + "source_location": "L74", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_pr6replypath_test_buildreplyartefact", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "buildreplyartefact()" + }, + { + "label": "pr7BulkInbox.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr7BulkInbox.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_pr7bulkinbox_test", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "pr7bulkinbox.test.ts" + }, + { + "label": "makeHandshakeRecord()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr7BulkInbox.test.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_pr7bulkinbox_test_makehandshakerecord", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "makehandshakerecord()" + }, + { + "label": "makeArtefact()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr7BulkInbox.test.ts", + "source_location": "L63", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_pr7bulkinbox_test_makeartefact", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "makeartefact()" + }, + { + "label": "baseAttachment()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr7BulkInbox.test.ts", + "source_location": "L92", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_pr7bulkinbox_test_baseattachment", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "baseattachment()" + }, + { + "label": "baseMessage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr7BulkInbox.test.ts", + "source_location": "L103", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_pr7bulkinbox_test_basemessage", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "basemessage()" + }, + { + "label": "computeHasSessionIndicator()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr7BulkInbox.test.ts", + "source_location": "L135", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_pr7bulkinbox_test_computehassessionindicator", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "computehassessionindicator()" + }, + { + "label": "simulateSendSingleItemHandshakeFetchFail()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr7BulkInbox.test.ts", + "source_location": "L285", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_pr7bulkinbox_test_simulatesendsingleitemhandshakefetchfail", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "simulatesendsingleitemhandshakefetchfail()" + }, + { + "label": "simulateBatchWithOneFail()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr7BulkInbox.test.ts", + "source_location": "L294", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_pr7bulkinbox_test_simulatebatchwithonefail", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "simulatebatchwithonefail()" + }, + { + "label": "simulateSendSingleItemGuardFail()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr7BulkInbox.test.ts", + "source_location": "L333", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_pr7bulkinbox_test_simulatesendsingleitemguardfail", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "simulatesendsingleitemguardfail()" + }, + { + "label": "sessionImportPayloadResolver.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/sessionImportPayloadResolver.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_sessionimportpayloadresolver_test", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "sessionimportpayloadresolver.test.ts" + }, + { + "label": "baseAttachment()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/sessionImportPayloadResolver.test.ts", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_sessionimportpayloadresolver_test_baseattachment", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "baseattachment()" + }, + { + "label": "baseMessage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/sessionImportPayloadResolver.test.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_sessionimportpayloadresolver_test_basemessage", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "basemessage()" + }, + { + "label": "minimalV1Export", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/sessionImportPayloadResolver.test.ts", + "source_location": "L41", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_tests_sessionimportpayloadresolver_test_minimalv1export", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "minimalv1export" + }, + { + "label": "attachmentPickerLimits.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/attachmentPickerLimits.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_attachmentpickerlimits", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "attachmentpickerlimits.ts" + }, + { + "label": "MAX_BEAP_DRAFT_ATTACHMENT_BYTES", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/attachmentPickerLimits.ts", + "source_location": "L2", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_attachmentpickerlimits_max_beap_draft_attachment_bytes", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "max_beap_draft_attachment_bytes" + }, + { + "label": "formatOversizeAttachmentRejection()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/attachmentPickerLimits.ts", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_attachmentpickerlimits_formatoversizeattachmentrejection", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "formatoversizeattachmentrejection()" + }, + { + "label": "beapInboxTypes.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/beapInboxTypes.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_beapinboxtypes", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "beapinboxtypes.ts" + }, + { + "label": "TrustLevel", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/beapInboxTypes.ts", + "source_location": "L27", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_beapinboxtypes_trustlevel", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "trustlevel" + }, + { + "label": "UrgencyLevel", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/beapInboxTypes.ts", + "source_location": "L33", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_beapinboxtypes_urgencylevel", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "urgencylevel" + }, + { + "label": "ReplyMode", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/beapInboxTypes.ts", + "source_location": "L36", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_beapinboxtypes_replymode", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "replymode" + }, + { + "label": "BeapEncoding", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/beapInboxTypes.ts", + "source_location": "L39", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapencoding", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "beapencoding" + }, + { + "label": "BeapAttachment", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/beapInboxTypes.ts", + "source_location": "L53", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapattachment", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "beapattachment" + }, + { + "label": "AiClassification", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/beapInboxTypes.ts", + "source_location": "L91", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_beapinboxtypes_aiclassification", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "aiclassification" + }, + { + "label": "DraftReply", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/beapInboxTypes.ts", + "source_location": "L116", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_beapinboxtypes_draftreply", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "draftreply" + }, + { + "label": "DeletionSchedule", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/beapInboxTypes.ts", + "source_location": "L136", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_beapinboxtypes_deletionschedule", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "deletionschedule" + }, + { + "label": "BeapMessage", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/beapInboxTypes.ts", + "source_location": "L160", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapmessage", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "beapmessage" + }, + { + "label": "BulkViewPage", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/beapInboxTypes.ts", + "source_location": "L348", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_beapinboxtypes_bulkviewpage", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "bulkviewpage" + }, + { + "label": "beapSessionBridgeGuards.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/beapSessionBridgeGuards.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_beapsessionbridgeguards", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "beapsessionbridgeguards.ts" + }, + { + "label": "BeapImportPayloadGuardResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/beapSessionBridgeGuards.ts", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_beapsessionbridgeguards_beapimportpayloadguardresult", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "beapimportpayloadguardresult" + }, + { + "label": "narrowBeapImportPayloadForBridge()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/beapSessionBridgeGuards.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_beapsessionbridgeguards_narrowbeapimportpayloadforbridge", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "narrowbeapimportpayloadforbridge()" + }, + { + "label": "narrowBeapFallbackModel()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/beapSessionBridgeGuards.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_beapsessionbridgeguards_narrowbeapfallbackmodel", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "narrowbeapfallbackmodel()" + }, + { + "label": "assertBeapTabImportPayload()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/beapSessionBridgeGuards.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_beapsessionbridgeguards_assertbeaptabimportpayload", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "assertbeaptabimportpayload()" + }, + { + "label": "beapSessionEditBridge.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/beapSessionEditBridge.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_beapsessioneditbridge", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "beapsessioneditbridge.ts" + }, + { + "label": "BEAP_EDIT_SESSION_IMPORT_TYPE", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/beapSessionEditBridge.ts", + "source_location": "L11", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_beapsessioneditbridge_beap_edit_session_import_type", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "beap_edit_session_import_type" + }, + { + "label": "BeapSessionEditImportResponse", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/beapSessionEditBridge.ts", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_beapsessioneditbridge_beapsessioneditimportresponse", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "beapsessioneditimportresponse" + }, + { + "label": "requestBeapSessionEditInActiveTab()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/beapSessionEditBridge.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_beapsessioneditbridge_requestbeapsessioneditinactivetab", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "requestbeapsessioneditinactivetab()" + }, + { + "label": "beapSessionRunBridge.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/beapSessionRunBridge.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "beapsessionrunbridge.ts" + }, + { + "label": "BEAP_RUN_AUTOMATION_TYPE", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/beapSessionRunBridge.ts", + "source_location": "L16", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge_beap_run_automation_type", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "beap_run_automation_type" + }, + { + "label": "BEAP_INBOX_PRESENT_GRID_TYPE", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/beapSessionRunBridge.ts", + "source_location": "L23", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge_beap_inbox_present_grid_type", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "beap_inbox_present_grid_type" + }, + { + "label": "BeapInboxPresentGridResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/beapSessionRunBridge.ts", + "source_location": "L25", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge_beapinboxpresentgridresult", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "beapinboxpresentgridresult" + }, + { + "label": "requestBeapInboxPresentGrid()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/beapSessionRunBridge.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge_requestbeapinboxpresentgrid", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "requestbeapinboxpresentgrid()" + }, + { + "label": "BeapRunAutomationFailure", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/beapSessionRunBridge.ts", + "source_location": "L83", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge_beaprunautomationfailure", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "beaprunautomationfailure" + }, + { + "label": "BeapRunAutomationSuccess", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/beapSessionRunBridge.ts", + "source_location": "L90", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge_beaprunautomationsuccess", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "beaprunautomationsuccess" + }, + { + "label": "BeapRunAutomationResponse", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/beapSessionRunBridge.ts", + "source_location": "L98", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge_beaprunautomationresponse", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "beaprunautomationresponse" + }, + { + "label": "readBeapRunFallbackLlmModel()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/beapSessionRunBridge.ts", + "source_location": "L103", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge_readbeaprunfallbackllmmodel", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "readbeaprunfallbackllmmodel()" + }, + { + "label": "requestBeapRunAutomationInActiveTab()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/beapSessionRunBridge.ts", + "source_location": "L119", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge_requestbeaprunautomationinactivetab", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "requestbeaprunautomationinactivetab()" + }, + { + "label": "ActiveHandshakesView.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/ActiveHandshakesView.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_activehandshakesview", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "activehandshakesview.tsx" + }, + { + "label": "Props", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/ActiveHandshakesView.tsx", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_activehandshakesview_props", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "props" + }, + { + "label": "StatusPill()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/ActiveHandshakesView.tsx", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_activehandshakesview_statuspill", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "statuspill()" + }, + { + "label": "ActiveHandshakesView()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/ActiveHandshakesView.tsx", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_activehandshakesview_activehandshakesview", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "activehandshakesview()" + }, + { + "label": "AiEntryContent.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/AiEntryContent.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_aientrycontent", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "aientrycontent.tsx" + }, + { + "label": "AiEntryContentProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/AiEntryContent.tsx", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_aientrycontent_aientrycontentprops", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "aientrycontentprops" + }, + { + "label": "renderChartAsTable()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/AiEntryContent.tsx", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_aientrycontent_renderchartastable", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "renderchartastable()" + }, + { + "label": "AiEntryContent()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/AiEntryContent.tsx", + "source_location": "L131", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_aientrycontent_aientrycontent", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "aientrycontent()" + }, + { + "label": "BeapAttachmentReader.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapAttachmentReader.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapattachmentreader", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "beapattachmentreader.tsx" + }, + { + "label": "formatBytes()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapAttachmentReader.tsx", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapattachmentreader_formatbytes", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "formatbytes()" + }, + { + "label": "BeapAttachmentReaderProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapAttachmentReader.tsx", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapattachmentreader_beapattachmentreaderprops", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "beapattachmentreaderprops" + }, + { + "label": "BeapAttachmentReader()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapAttachmentReader.tsx", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapattachmentreader_beapattachmentreader", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "beapattachmentreader()" + }, + { + "label": "BeapBulkInbox.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "beapbulkinbox.tsx" + }, + { + "label": "URGENCY_BORDER", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L72", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_urgency_border", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "urgency_border" + }, + { + "label": "URGENCY_GLOW", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L79", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_urgency_glow", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "urgency_glow" + }, + { + "label": "URGENCY_LABEL", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L86", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_urgency_label", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "urgency_label" + }, + { + "label": "TRUST_BADGE", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L93", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_trust_badge", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "trust_badge" + }, + { + "label": "BeapBulkInboxProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L107", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_beapbulkinboxprops", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "beapbulkinboxprops" + }, + { + "label": "BeapBulkInboxHandle", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L126", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_beapbulkinboxhandle", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "beapbulkinboxhandle" + }, + { + "label": "PairAiState", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L142", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_pairaistate", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "pairaistate" + }, + { + "label": "AiAction", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L148", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_aiaction", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "aiaction" + }, + { + "label": "aiReducer()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L158", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_aireducer", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "aireducer()" + }, + { + "label": "nextEntryId()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L221", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_nextentryid", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "nextentryid()" + }, + { + "label": "formatRelative()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L225", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_formatrelative", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "formatrelative()" + }, + { + "label": "getPreview()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L237", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_getpreview", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "getpreview()" + }, + { + "label": "formatMs()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L242", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_formatms", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "formatms()" + }, + { + "label": "ToggleSwitch()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L252", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_toggleswitch", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "toggleswitch()" + }, + { + "label": "BatchToolbarProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L308", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_batchtoolbarprops", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "batchtoolbarprops" + }, + { + "label": "BatchToolbar()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L333", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_batchtoolbar", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "batchtoolbar()" + }, + { + "label": "PendingDeleteOverlayProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L502", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_pendingdeleteoverlayprops", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "pendingdeleteoverlayprops" + }, + { + "label": "PendingDeleteOverlay()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L511", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_pendingdeleteoverlay", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "pendingdeleteoverlay()" + }, + { + "label": "MessagePairCellProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L581", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_messagepaircellprops", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "messagepaircellprops" + }, + { + "label": "MessagePairCell()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L600", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_messagepaircell", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "messagepaircell()" + }, + { + "label": "AiEntryMini()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L1115", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_aientrymini", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "aientrymini()" + }, + { + "label": "BeapBulkInbox", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L1172", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_beapbulkinbox", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "beapbulkinbox" + }, + { + "label": "BeapDraftComposer.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapDraftComposer.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapdraftcomposer", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "beapdraftcomposer.tsx" + }, + { + "label": "BeapDraftComposerProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapDraftComposer.tsx", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapdraftcomposer_beapdraftcomposerprops", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "beapdraftcomposerprops" + }, + { + "label": "BeapDraftComposer()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapDraftComposer.tsx", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapdraftcomposer_beapdraftcomposer", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "beapdraftcomposer()" + }, + { + "label": "BeapInboxSidebar.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxSidebar.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "beapinboxsidebar.tsx" + }, + { + "label": "BeapInboxSidebarProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxSidebar.tsx", + "source_location": "L29", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar_beapinboxsidebarprops", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "beapinboxsidebarprops" + }, + { + "label": "InboxFilter", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxSidebar.tsx", + "source_location": "L41", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar_inboxfilter", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "inboxfilter" + }, + { + "label": "FILTER_LABELS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxSidebar.tsx", + "source_location": "L43", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar_filter_labels", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "filter_labels" + }, + { + "label": "formatRelativeTime()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxSidebar.tsx", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar_formatrelativetime", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "formatrelativetime()" + }, + { + "label": "getContentPreview()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxSidebar.tsx", + "source_location": "L72", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar_getcontentpreview", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "getcontentpreview()" + }, + { + "label": "URGENCY_DOT", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxSidebar.tsx", + "source_location": "L81", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar_urgency_dot", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "urgency_dot" + }, + { + "label": "TRUST_BADGE", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxSidebar.tsx", + "source_location": "L92", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar_trust_badge", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "trust_badge" + }, + { + "label": "BeapInboxListItemProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxSidebar.tsx", + "source_location": "L103", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar_beapinboxlistitemprops", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "beapinboxlistitemprops" + }, + { + "label": "BeapInboxListItem()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxSidebar.tsx", + "source_location": "L114", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar_beapinboxlistitem", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "beapinboxlistitem()" + }, + { + "label": "BeapInboxSidebar()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxSidebar.tsx", + "source_location": "L359", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar_beapinboxsidebar", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "beapinboxsidebar()" + }, + { + "label": "GroupedListProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxSidebar.tsx", + "source_location": "L585", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar_groupedlistprops", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "groupedlistprops" + }, + { + "label": "MessageGroupedList()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxSidebar.tsx", + "source_location": "L596", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar_messagegroupedlist", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "messagegroupedlist()" + }, + { + "label": "EmptyStateProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxSidebar.tsx", + "source_location": "L674", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar_emptystateprops", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "emptystateprops" + }, + { + "label": "EmptyState()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxSidebar.tsx", + "source_location": "L683", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar_emptystate", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "emptystate()" + }, + { + "label": "beap-messages/components/BeapInboxView.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxView.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapinboxview", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "beap-messages/components/beapinboxview.tsx" + }, + { + "label": "BeapInboxViewProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxView.tsx", + "source_location": "L72", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapinboxview_beapinboxviewprops", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "beapinboxviewprops" + }, + { + "label": "BeapInboxViewHandle", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxView.tsx", + "source_location": "L117", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapinboxview_beapinboxviewhandle", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "beapinboxviewhandle" + }, + { + "label": "SkeletonRow()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxView.tsx", + "source_location": "L133", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapinboxview_skeletonrow", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "skeletonrow()" + }, + { + "label": "InboxSkeleton()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxView.tsx", + "source_location": "L153", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapinboxview_inboxskeleton", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "inboxskeleton()" + }, + { + "label": "ErrorBanner()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxView.tsx", + "source_location": "L165", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapinboxview_errorbanner", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "errorbanner()" + }, + { + "label": "BeapInboxView", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxView.tsx", + "source_location": "L194", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapinboxview_beapinboxview", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "beapinboxview" + }, + { + "label": "NoMessageSelected()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxView.tsx", + "source_location": "L415", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapinboxview_nomessageselected", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "nomessageselected()" + }, + { + "label": "BeapMessageDetailPanel.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "beapmessagedetailpanel.tsx" + }, + { + "label": "BeapMessageDetailPanelProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L63", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_beapmessagedetailpanelprops", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "beapmessagedetailpanelprops" + }, + { + "label": "BeapMessageDetailPanelHandle", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L98", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_beapmessagedetailpanelhandle", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "beapmessagedetailpanelhandle" + }, + { + "label": "mapBeapRunError()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L111", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_mapbeaprunerror", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "mapbeaprunerror()" + }, + { + "label": "TRUST_BADGE", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L135", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_trust_badge", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "trust_badge" + }, + { + "label": "formatFullTime()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L146", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_formatfulltime", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "formatfulltime()" + }, + { + "label": "formatBytes()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L156", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_formatbytes", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "formatbytes()" + }, + { + "label": "ResizeDividerProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L166", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_resizedividerprops", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "resizedividerprops" + }, + { + "label": "ResizeDivider()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L171", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_resizedivider", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "resizedivider()" + }, + { + "label": "MessageContentPanelProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L217", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_messagecontentpanelprops", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "messagecontentpanelprops" + }, + { + "label": "MessageContentPanel()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L236", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_messagecontentpanel", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "messagecontentpanel()" + }, + { + "label": "AttachmentRowProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L1129", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_attachmentrowprops", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "attachmentrowprops" + }, + { + "label": "AttachmentRow()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L1143", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_attachmentrow", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "attachmentrow()" + }, + { + "label": "AiOutputPanelProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L1287", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_aioutputpanelprops", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "aioutputpanelprops" + }, + { + "label": "AiOutputPanel()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L1294", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_aioutputpanel", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "aioutputpanel()" + }, + { + "label": "AiEntryCardProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L1476", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_aientrycardprops", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "aientrycardprops" + }, + { + "label": "AiEntryCard()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L1484", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_aientrycard", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "aientrycard()" + }, + { + "label": "NoMessageSelected()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L1605", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_nomessageselected", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "nomessageselected()" + }, + { + "label": "BeapMessageDetailPanel", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L1642", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_beapmessagedetailpanel", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "beapmessagedetailpanel" + }, + { + "label": "BeapMessageListView.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageListView.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapmessagelistview", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "beapmessagelistview.tsx" + }, + { + "label": "BeapMessageListViewProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageListView.tsx", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapmessagelistview_beapmessagelistviewprops", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "beapmessagelistviewprops" + }, + { + "label": "BeapMessageListView()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageListView.tsx", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapmessagelistview_beapmessagelistview", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "beapmessagelistview()" + }, + { + "label": "BeapMessagePreview.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessagePreview.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapmessagepreview", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "beapmessagepreview.tsx" + }, + { + "label": "BeapMessagePreviewProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessagePreview.tsx", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapmessagepreview_beapmessagepreviewprops", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "beapmessagepreviewprops" + }, + { + "label": "BeapMessagePreview()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessagePreview.tsx", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapmessagepreview_beapmessagepreview", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "beapmessagepreview()" + }, + { + "label": "BeapMessageRow.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageRow.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapmessagerow", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "beapmessagerow.tsx" + }, + { + "label": "BeapMessageRowProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageRow.tsx", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapmessagerow_beapmessagerowprops", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "beapmessagerowprops" + }, + { + "label": "BeapMessageRow()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageRow.tsx", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapmessagerow_beapmessagerow", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "beapmessagerow()" + }, + { + "label": "BeapReplyComposer.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapReplyComposer.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapreplycomposer", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "beapreplycomposer.tsx" + }, + { + "label": "BeapReplyComposerProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapReplyComposer.tsx", + "source_location": "L34", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapreplycomposer_beapreplycomposerprops", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "beapreplycomposerprops" + }, + { + "label": "ModeBadge()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapReplyComposer.tsx", + "source_location": "L74", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapreplycomposer_modebadge", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "modebadge()" + }, + { + "label": "AttachmentChip()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapReplyComposer.tsx", + "source_location": "L116", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapreplycomposer_attachmentchip", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "attachmentchip()" + }, + { + "label": "SignaturePreview()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapReplyComposer.tsx", + "source_location": "L172", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapreplycomposer_signaturepreview", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "signaturepreview()" + }, + { + "label": "BeapReplyComposer()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapReplyComposer.tsx", + "source_location": "L195", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_beapreplycomposer_beapreplycomposer", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "beapreplycomposer()" + }, + { + "label": "DeliveryMethodPanel.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/DeliveryMethodPanel.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_deliverymethodpanel", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "deliverymethodpanel.tsx" + }, + { + "label": "DeliveryMethod", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/DeliveryMethodPanel.tsx", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_deliverymethodpanel_deliverymethod", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "deliverymethod" + }, + { + "label": "DeliveryMethodPanelProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/DeliveryMethodPanel.tsx", + "source_location": "L24", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_deliverymethodpanel_deliverymethodpanelprops", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "deliverymethodpanelprops" + }, + { + "label": "DeliveryMethodPanel()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/DeliveryMethodPanel.tsx", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_deliverymethodpanel_deliverymethodpanel", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "deliverymethodpanel()" + }, + { + "label": "InboxErrorBoundary.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/InboxErrorBoundary.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_inboxerrorboundary", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "inboxerrorboundary.tsx" + }, + { + "label": "InboxErrorBoundaryProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/InboxErrorBoundary.tsx", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_inboxerrorboundary_inboxerrorboundaryprops", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "inboxerrorboundaryprops" + }, + { + "label": "InboxErrorBoundaryState", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/InboxErrorBoundary.tsx", + "source_location": "L21", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_inboxerrorboundary_inboxerrorboundarystate", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "inboxerrorboundarystate" + }, + { + "label": "InboxErrorBoundary", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/InboxErrorBoundary.tsx", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_inboxerrorboundary_inboxerrorboundary", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "inboxerrorboundary" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/InboxErrorBoundary.tsx", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_inboxerrorboundary_inboxerrorboundary_constructor", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": ".constructor()" + }, + { + "label": ".getDerivedStateFromError()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/InboxErrorBoundary.tsx", + "source_location": "L37", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_inboxerrorboundary_inboxerrorboundary_getderivedstatefromerror", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": ".getderivedstatefromerror()" + }, + { + "label": ".componentDidCatch()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/InboxErrorBoundary.tsx", + "source_location": "L41", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_inboxerrorboundary_inboxerrorboundary_componentdidcatch", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": ".componentdidcatch()" + }, + { + "label": ".handleRetry()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/InboxErrorBoundary.tsx", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_inboxerrorboundary_inboxerrorboundary_handleretry", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": ".handleretry()" + }, + { + "label": ".handleToggleDetails()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/InboxErrorBoundary.tsx", + "source_location": "L58", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_inboxerrorboundary_inboxerrorboundary_handletoggledetails", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": ".handletoggledetails()" + }, + { + "label": ".render()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/InboxErrorBoundary.tsx", + "source_location": "L62", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_inboxerrorboundary_inboxerrorboundary_render", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": ".render()" + }, + { + "label": "InboxMessagePreview.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/InboxMessagePreview.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_inboxmessagepreview", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "inboxmessagepreview.tsx" + }, + { + "label": "InboxMessagePreviewProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/InboxMessagePreview.tsx", + "source_location": "L16", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_inboxmessagepreview_inboxmessagepreviewprops", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "inboxmessagepreviewprops" + }, + { + "label": "InboxMessagePreview()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/InboxMessagePreview.tsx", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_inboxmessagepreview_inboxmessagepreview", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "inboxmessagepreview()" + }, + { + "label": "OutboxMessagePreview.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/OutboxMessagePreview.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_outboxmessagepreview", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "outboxmessagepreview.tsx" + }, + { + "label": "OutboxMessagePreviewProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/OutboxMessagePreview.tsx", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_outboxmessagepreview_outboxmessagepreviewprops", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "outboxmessagepreviewprops" + }, + { + "label": "OutboxMessagePreview()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/OutboxMessagePreview.tsx", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_outboxmessagepreview_outboxmessagepreview", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "outboxmessagepreview()" + }, + { + "label": "beap-messages/components/ProtectedAccessWarningDialog.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/ProtectedAccessWarningDialog.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_protectedaccesswarningdialog", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "beap-messages/components/protectedaccesswarningdialog.tsx" + }, + { + "label": "ProtectedDialogKind", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/ProtectedAccessWarningDialog.tsx", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_protectedaccesswarningdialog_protecteddialogkind", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "protecteddialogkind" + }, + { + "label": "Props", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/ProtectedAccessWarningDialog.tsx", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_protectedaccesswarningdialog_props", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "props" + }, + { + "label": "ORIGINAL_COPY", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/ProtectedAccessWarningDialog.tsx", + "source_location": "L19", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_protectedaccesswarningdialog_original_copy", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "original_copy" + }, + { + "label": "LINK_COPY", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/ProtectedAccessWarningDialog.tsx", + "source_location": "L28", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_protectedaccesswarningdialog_link_copy", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "link_copy" + }, + { + "label": "ProtectedAccessWarningDialog()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/ProtectedAccessWarningDialog.tsx", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_protectedaccesswarningdialog_protectedaccesswarningdialog", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "protectedaccesswarningdialog()" + }, + { + "label": "RecipientHandshakeSelect.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/RecipientHandshakeSelect.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "recipienthandshakeselect.tsx" + }, + { + "label": "SelectedRecipient", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/RecipientHandshakeSelect.tsx", + "source_location": "L25", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect_selectedrecipient", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "selectedrecipient" + }, + { + "label": "formatExpiry()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/RecipientHandshakeSelect.tsx", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect_formatexpiry", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "formatexpiry()" + }, + { + "label": "formatExpiryAbsolute()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/RecipientHandshakeSelect.tsx", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect_formatexpiryabsolute", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "formatexpiryabsolute()" + }, + { + "label": "RecipientHandshakeSelectProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/RecipientHandshakeSelect.tsx", + "source_location": "L47", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect_recipienthandshakeselectprops", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "recipienthandshakeselectprops" + }, + { + "label": "RecipientHandshakeSelect()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/RecipientHandshakeSelect.tsx", + "source_location": "L60", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect_recipienthandshakeselect", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "recipienthandshakeselect()" + }, + { + "label": "RecipientModeSwitch.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/RecipientModeSwitch.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_recipientmodeswitch", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "recipientmodeswitch.tsx" + }, + { + "label": "RecipientMode", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/RecipientModeSwitch.tsx", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_recipientmodeswitch_recipientmode", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "recipientmode" + }, + { + "label": "RecipientModeSwitchProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/RecipientModeSwitch.tsx", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_recipientmodeswitch_recipientmodeswitchprops", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "recipientmodeswitchprops" + }, + { + "label": "RecipientModeSwitch()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/RecipientModeSwitch.tsx", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_recipientmodeswitch_recipientmodeswitch", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "recipientmodeswitch()" + }, + { + "label": "RejectedMessagePreview.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/RejectedMessagePreview.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_rejectedmessagepreview", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "rejectedmessagepreview.tsx" + }, + { + "label": "RejectedMessagePreviewProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/RejectedMessagePreview.tsx", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_rejectedmessagepreview_rejectedmessagepreviewprops", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "rejectedmessagepreviewprops" + }, + { + "label": "getRejectionCodeConfig()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/RejectedMessagePreview.tsx", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_rejectedmessagepreview_getrejectioncodeconfig", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "getrejectioncodeconfig()" + }, + { + "label": "getFailedStepDisplay()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/RejectedMessagePreview.tsx", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_rejectedmessagepreview_getfailedstepdisplay", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "getfailedstepdisplay()" + }, + { + "label": "RejectedMessagePreview()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/RejectedMessagePreview.tsx", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_rejectedmessagepreview_rejectedmessagepreview", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "rejectedmessagepreview()" + }, + { + "label": "beap-messages/components/index.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/components/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_components_index", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "beap-messages/components/index.ts" + }, + { + "label": "hooks/index.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_index", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "hooks/index.ts" + }, + { + "label": "useBeapDraftActions.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapDraftActions.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_usebeapdraftactions", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "usebeapdraftactions.ts" + }, + { + "label": "BeapDraftState", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapDraftActions.ts", + "source_location": "L30", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_usebeapdraftactions_beapdraftstate", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "beapdraftstate" + }, + { + "label": "BeapDraftValidation", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapDraftActions.ts", + "source_location": "L40", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_usebeapdraftactions_beapdraftvalidation", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "beapdraftvalidation" + }, + { + "label": "BeapDraftActions", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapDraftActions.ts", + "source_location": "L49", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_usebeapdraftactions_beapdraftactions", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "beapdraftactions" + }, + { + "label": "UseBeapDraftActionsOptions", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapDraftActions.ts", + "source_location": "L74", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_usebeapdraftactions_usebeapdraftactionsoptions", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "usebeapdraftactionsoptions" + }, + { + "label": "useBeapDraftActions()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapDraftActions.ts", + "source_location": "L81", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_usebeapdraftactions_usebeapdraftactions", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "usebeapdraftactions()" + }, + { + "label": "useBeapMessageAi.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapMessageAi.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_usebeapmessageai", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "usebeapmessageai.ts" + }, + { + "label": "AiOutputType", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapMessageAi.ts", + "source_location": "L35", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_usebeapmessageai_aioutputtype", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "aioutputtype" + }, + { + "label": "AiOutputEntry", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapMessageAi.ts", + "source_location": "L37", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_usebeapmessageai_aioutputentry", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "aioutputentry" + }, + { + "label": "UseBeapMessageAiReturn", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapMessageAi.ts", + "source_location": "L52", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_usebeapmessageai_usebeapmessageaireturn", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "usebeapmessageaireturn" + }, + { + "label": "nextId()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapMessageAi.ts", + "source_location": "L77", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_usebeapmessageai_nextid", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "nextid()" + }, + { + "label": "useBeapMessageAi()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapMessageAi.ts", + "source_location": "L81", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_usebeapmessageai_usebeapmessageai", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "usebeapmessageai()" + }, + { + "label": "useBeapSessionImportResolution.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapSessionImportResolution.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_usebeapsessionimportresolution", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "usebeapsessionimportresolution.ts" + }, + { + "label": "useBeapSessionImportResolution()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapSessionImportResolution.ts", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_usebeapsessionimportresolution_usebeapsessionimportresolution", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "usebeapsessionimportresolution()" + }, + { + "label": "useBulkClassification.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkClassification.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "usebulkclassification.ts" + }, + { + "label": "MessageClassificationStatus", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkClassification.ts", + "source_location": "L53", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification_messageclassificationstatus", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "messageclassificationstatus" + }, + { + "label": "MessageClassificationState", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkClassification.ts", + "source_location": "L62", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification_messageclassificationstate", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "messageclassificationstate" + }, + { + "label": "UseBulkClassificationConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkClassification.ts", + "source_location": "L70", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification_usebulkclassificationconfig", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "usebulkclassificationconfig" + }, + { + "label": "UseBulkClassificationReturn", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkClassification.ts", + "source_location": "L120", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification_usebulkclassificationreturn", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "usebulkclassificationreturn" + }, + { + "label": "DEFAULT_CONFIG", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkClassification.ts", + "source_location": "L156", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification_default_config", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "default_config" + }, + { + "label": "resolveConfig()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkClassification.ts", + "source_location": "L168", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification_resolveconfig", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "resolveconfig()" + }, + { + "label": "useBulkClassification()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkClassification.ts", + "source_location": "L202", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification_usebulkclassification", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "usebulkclassification()" + }, + { + "label": "IMPORTANT: For any classification to succeed you MUST set", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkClassification.ts", + "source_location": "L74", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification_rationale_74", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "important: for any classification to succeed you must set" + }, + { + "label": "useBulkSend.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkSend.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_usebulksend", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "usebulksend.ts" + }, + { + "label": "BulkSendItemStatus", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkSend.ts", + "source_location": "L36", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_usebulksend_bulksenditemstatus", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "bulksenditemstatus" + }, + { + "label": "BulkSendItem", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkSend.ts", + "source_location": "L38", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_usebulksend_bulksenditem", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "bulksenditem" + }, + { + "label": "BulkSendProgress", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkSend.ts", + "source_location": "L47", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_usebulksend_bulksendprogress", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "bulksendprogress" + }, + { + "label": "UseBulkSendConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkSend.ts", + "source_location": "L58", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_usebulksend_usebulksendconfig", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "usebulksendconfig" + }, + { + "label": "UseBulkSendReturn", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkSend.ts", + "source_location": "L68", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_usebulksend_usebulksendreturn", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "usebulksendreturn" + }, + { + "label": "useBulkSend()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkSend.ts", + "source_location": "L92", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_usebulksend_usebulksend", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "usebulksend()" + }, + { + "label": "useInboxKeyboardNav.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useInboxKeyboardNav.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_useinboxkeyboardnav", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "useinboxkeyboardnav.ts" + }, + { + "label": "BEAP_FOCUS_REPLY_EVENT", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useInboxKeyboardNav.ts", + "source_location": "L37", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_useinboxkeyboardnav_beap_focus_reply_event", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "beap_focus_reply_event" + }, + { + "label": "BEAP_TOGGLE_AI_EVENT", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useInboxKeyboardNav.ts", + "source_location": "L40", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_useinboxkeyboardnav_beap_toggle_ai_event", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "beap_toggle_ai_event" + }, + { + "label": "BEAP_SEND_REPLY_EVENT", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useInboxKeyboardNav.ts", + "source_location": "L43", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_useinboxkeyboardnav_beap_send_reply_event", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "beap_send_reply_event" + }, + { + "label": "BeapMessageEventDetail", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useInboxKeyboardNav.ts", + "source_location": "L46", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_useinboxkeyboardnav_beapmessageeventdetail", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "beapmessageeventdetail" + }, + { + "label": "dispatchBeapEvent()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useInboxKeyboardNav.ts", + "source_location": "L50", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_useinboxkeyboardnav_dispatchbeapevent", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "dispatchbeapevent()" + }, + { + "label": "UseInboxKeyboardNavOptions", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useInboxKeyboardNav.ts", + "source_location": "L60", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_useinboxkeyboardnav_useinboxkeyboardnavoptions", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "useinboxkeyboardnavoptions" + }, + { + "label": "useInboxKeyboardNav()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useInboxKeyboardNav.ts", + "source_location": "L72", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_useinboxkeyboardnav_useinboxkeyboardnav", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "useinboxkeyboardnav()" + }, + { + "label": "onBeapFocusReply()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useInboxKeyboardNav.ts", + "source_location": "L198", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_useinboxkeyboardnav_onbeapfocusreply", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "onbeapfocusreply()" + }, + { + "label": "onBeapToggleAi()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useInboxKeyboardNav.ts", + "source_location": "L207", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_useinboxkeyboardnav_onbeaptoggleai", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "onbeaptoggleai()" + }, + { + "label": "onBeapSendReply()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useInboxKeyboardNav.ts", + "source_location": "L216", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_useinboxkeyboardnav_onbeapsendreply", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "onbeapsendreply()" + }, + { + "label": "useMediaQuery.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useMediaQuery.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_usemediaquery", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "usemediaquery.ts" + }, + { + "label": "useMediaQuery()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useMediaQuery.ts", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_usemediaquery_usemediaquery", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "usemediaquery()" + }, + { + "label": "NARROW_VIEWPORT", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useMediaQuery.ts", + "source_location": "L28", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_usemediaquery_narrow_viewport", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "narrow_viewport" + }, + { + "label": "BULK_GRID_1COL", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useMediaQuery.ts", + "source_location": "L31", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_usemediaquery_bulk_grid_1col", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "bulk_grid_1col" + }, + { + "label": "BULK_GRID_3COL", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useMediaQuery.ts", + "source_location": "L34", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_usemediaquery_bulk_grid_3col", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "bulk_grid_3col" + }, + { + "label": "useReplyComposer.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "usereplycomposer.ts" + }, + { + "label": "EMAIL_SIGNATURE", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L54", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_email_signature", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "email_signature" + }, + { + "label": "deriveReplySubject()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L57", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_derivereplysubject", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "derivereplysubject()" + }, + { + "label": "getResponseMode()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L77", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_getresponsemode", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "getresponsemode()" + }, + { + "label": "ReplyAttachment", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L86", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_replyattachment", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "replyattachment" + }, + { + "label": "ReplySessionOption", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L95", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_replysessionoption", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "replysessionoption" + }, + { + "label": "ReplyComposerState", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L101", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_replycomposerstate", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "replycomposerstate" + }, + { + "label": "SendResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L138", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_sendresult", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "sendresult" + }, + { + "label": "UseReplyComposerConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L146", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_usereplycomposerconfig", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "usereplycomposerconfig" + }, + { + "label": "ReplyComposerActions", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L194", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_replycomposeractions", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "replycomposeractions" + }, + { + "label": "buildSyntheticCapsuleForGate()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L236", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_buildsyntheticcapsuleforgate", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "buildsyntheticcapsuleforgate()" + }, + { + "label": "nextAttachmentId()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L259", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_nextattachmentid", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "nextattachmentid()" + }, + { + "label": "useReplyComposer()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L276", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_usereplycomposer", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "usereplycomposer()" + }, + { + "label": "useViewOriginalArtefact.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useViewOriginalArtefact.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_usevieworiginalartefact", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "usevieworiginalartefact.ts" + }, + { + "label": "triggerDownload()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useViewOriginalArtefact.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_usevieworiginalartefact_triggerdownload", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "triggerdownload()" + }, + { + "label": "UseViewOriginalArtefactResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useViewOriginalArtefact.ts", + "source_location": "L33", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_usevieworiginalartefact_usevieworiginalartefactresult", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "usevieworiginalartefactresult" + }, + { + "label": "useViewOriginalArtefact()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useViewOriginalArtefact.ts", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_hooks_usevieworiginalartefact_usevieworiginalartefact", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "usevieworiginalartefact()" + }, + { + "label": "inboxRowToBeapMessage.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/inboxRowToBeapMessage.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_inboxrowtobeapmessage", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "inboxrowtobeapmessage.ts" + }, + { + "label": "scoreToUrgency()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/inboxRowToBeapMessage.ts", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_inboxrowtobeapmessage_scoretourgency", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "scoretourgency()" + }, + { + "label": "parseAiClassification()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/inboxRowToBeapMessage.ts", + "source_location": "L42", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_inboxrowtobeapmessage_parseaiclassification", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "parseaiclassification()" + }, + { + "label": "mapAttachmentsFromRow()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/inboxRowToBeapMessage.ts", + "source_location": "L66", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_inboxrowtobeapmessage_mapattachmentsfromrow", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "mapattachmentsfromrow()" + }, + { + "label": "DEFAULT_PROCESSING_EVENTS_LOCAL", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/inboxRowToBeapMessage.ts", + "source_location": "L86", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_inboxrowtobeapmessage_default_processing_events_local", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "default_processing_events_local" + }, + { + "label": "extractCanonicalContent()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/inboxRowToBeapMessage.ts", + "source_location": "L99", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_inboxrowtobeapmessage_extractcanonicalcontent", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "extractcanonicalcontent()" + }, + { + "label": "inboxRowToBeapMessage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/inboxRowToBeapMessage.ts", + "source_location": "L137", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_inboxrowtobeapmessage_inboxrowtobeapmessage", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "inboxrowtobeapmessage()" + }, + { + "label": "beap-messages/index.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_index", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "beap-messages/index.ts" + }, + { + "label": "initBeapPqAuth.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/initBeapPqAuth.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_initbeappqauth", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "initbeappqauth.ts" + }, + { + "label": "initBeapPqAuth()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/initBeapPqAuth.ts", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_initbeappqauth_initbeappqauth", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "initbeappqauth()" + }, + { + "label": "integrationDefaultAutomationMetadata.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/integrationDefaultAutomationMetadata.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "integrationdefaultautomationmetadata.ts" + }, + { + "label": "BEAP_INTEGRATION_DEFAULT_AUTOMATION_STORAGE_KEY", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/integrationDefaultAutomationMetadata.ts", + "source_location": "L19", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_beap_integration_default_automation_storage_key", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "beap_integration_default_automation_storage_key" + }, + { + "label": "BeapIntegrationIdentityV1", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/integrationDefaultAutomationMetadata.ts", + "source_location": "L25", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_beapintegrationidentityv1", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "beapintegrationidentityv1" + }, + { + "label": "validateBeapIntegrationIdentity()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/integrationDefaultAutomationMetadata.ts", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_validatebeapintegrationidentity", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "validatebeapintegrationidentity()" + }, + { + "label": "beapIntegrationStableKey()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/integrationDefaultAutomationMetadata.ts", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_beapintegrationstablekey", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "beapintegrationstablekey()" + }, + { + "label": "beapIntegrationIdentityFromMessage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/integrationDefaultAutomationMetadata.ts", + "source_location": "L67", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_beapintegrationidentityfrommessage", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "beapintegrationidentityfrommessage()" + }, + { + "label": "BeapIntegrationDefaultAutomationEntryV1", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/integrationDefaultAutomationMetadata.ts", + "source_location": "L81", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_beapintegrationdefaultautomationentryv1", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "beapintegrationdefaultautomationentryv1" + }, + { + "label": "BeapIntegrationDefaultAutomationRootV1", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/integrationDefaultAutomationMetadata.ts", + "source_location": "L101", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_beapintegrationdefaultautomationrootv1", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "beapintegrationdefaultautomationrootv1" + }, + { + "label": "emptyBeapIntegrationDefaultAutomationRoot()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/integrationDefaultAutomationMetadata.ts", + "source_location": "L106", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_emptybeapintegrationdefaultautomationroot", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "emptybeapintegrationdefaultautomationroot()" + }, + { + "label": "parseBeapIntegrationDefaultAutomationRoot()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/integrationDefaultAutomationMetadata.ts", + "source_location": "L111", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_parsebeapintegrationdefaultautomationroot", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "parsebeapintegrationdefaultautomationroot()" + }, + { + "label": "serializeBeapIntegrationDefaultAutomationRoot()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/integrationDefaultAutomationMetadata.ts", + "source_location": "L127", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_serializebeapintegrationdefaultautomationroot", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "serializebeapintegrationdefaultautomationroot()" + }, + { + "label": "loadBeapIntegrationDefaultAutomationRoot()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/integrationDefaultAutomationMetadata.ts", + "source_location": "L137", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_loadbeapintegrationdefaultautomationroot", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "loadbeapintegrationdefaultautomationroot()" + }, + { + "label": "saveBeapIntegrationDefaultAutomationRoot()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/integrationDefaultAutomationMetadata.ts", + "source_location": "L153", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_savebeapintegrationdefaultautomationroot", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "savebeapintegrationdefaultautomationroot()" + }, + { + "label": "getBeapIntegrationDefaultAutomationEntry()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/integrationDefaultAutomationMetadata.ts", + "source_location": "L171", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_getbeapintegrationdefaultautomationentry", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "getbeapintegrationdefaultautomationentry()" + }, + { + "label": "upsertBeapIntegrationDefaultAutomationEntry()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/integrationDefaultAutomationMetadata.ts", + "source_location": "L181", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_upsertbeapintegrationdefaultautomationentry", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "upsertbeapintegrationdefaultautomationentry()" + }, + { + "label": "sandbox/index.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sandbox_index", + "community": 115, + "community_name": "Beapmessages Sandbox", + "norm_label": "sandbox/index.ts" + }, + { + "label": "sandbox.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sandbox_sandbox", + "community": 115, + "community_name": "Beapmessages Sandbox", + "norm_label": "sandbox.ts" + }, + { + "label": "initSandbox()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L63", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sandbox_sandbox_initsandbox", + "community": 115, + "community_name": "Beapmessages Sandbox", + "norm_label": "initsandbox()" + }, + { + "label": "handleMessage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L73", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sandbox_sandbox_handlemessage", + "community": 115, + "community_name": "Beapmessages Sandbox", + "norm_label": "handlemessage()" + }, + { + "label": "isValidSandboxRequest()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L106", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sandbox_sandbox_isvalidsandboxrequest", + "community": 115, + "community_name": "Beapmessages Sandbox", + "norm_label": "isvalidsandboxrequest()" + }, + { + "label": "handleDepackageWithTimeout()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L123", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sandbox_sandbox_handledepackagewithtimeout", + "community": 115, + "community_name": "Beapmessages Sandbox", + "norm_label": "handledepackagewithtimeout()" + }, + { + "label": "buildTimeoutPromise()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L135", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sandbox_sandbox_buildtimeoutpromise", + "community": 115, + "community_name": "Beapmessages Sandbox", + "norm_label": "buildtimeoutpromise()" + }, + { + "label": "handleDepackage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L150", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sandbox_sandbox_handledepackage", + "community": 115, + "community_name": "Beapmessages Sandbox", + "norm_label": "handledepackage()" + }, + { + "label": "deserialiseOptions()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L218", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sandbox_sandbox_deserialiseoptions", + "community": 115, + "community_name": "Beapmessages Sandbox", + "norm_label": "deserialiseoptions()" + }, + { + "label": "sanitisePackage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L284", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sandbox_sandbox_sanitisepackage", + "community": 115, + "community_name": "Beapmessages Sandbox", + "norm_label": "sanitisepackage()" + }, + { + "label": "buildFailure()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L344", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sandbox_sandbox_buildfailure", + "community": 115, + "community_name": "Beapmessages Sandbox", + "norm_label": "buildfailure()" + }, + { + "label": "classifyFailureStage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L361", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sandbox_sandbox_classifyfailurestage", + "community": 115, + "community_name": "Beapmessages Sandbox", + "norm_label": "classifyfailurestage()" + }, + { + "label": "checkMemoryBudget()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L378", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sandbox_sandbox_checkmemorybudget", + "community": 115, + "community_name": "Beapmessages Sandbox", + "norm_label": "checkmemorybudget()" + }, + { + "label": "beap-messages/sandbox/sandboxClient.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxClient.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient", + "community": 115, + "community_name": "Beapmessages Sandbox", + "norm_label": "beap-messages/sandbox/sandboxclient.ts" + }, + { + "label": "getSandboxPageUrl()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxClient.ts", + "source_location": "L57", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient_getsandboxpageurl", + "community": 115, + "community_name": "Beapmessages Sandbox", + "norm_label": "getsandboxpageurl()" + }, + { + "label": "SandboxClient", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxClient.ts", + "source_location": "L85", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient_sandboxclient", + "community": 115, + "community_name": "Beapmessages Sandbox", + "norm_label": "sandboxclient" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxClient.ts", + "source_location": "L100", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient_sandboxclient_constructor", + "community": 115, + "community_name": "Beapmessages Sandbox", + "norm_label": ".constructor()" + }, + { + "label": ".create()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxClient.ts", + "source_location": "L118", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient_sandboxclient_create", + "community": 115, + "community_name": "Beapmessages Sandbox", + "norm_label": ".create()" + }, + { + "label": ".depackage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxClient.ts", + "source_location": "L161", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient_sandboxclient_depackage", + "community": 115, + "community_name": "Beapmessages Sandbox", + "norm_label": ".depackage()" + }, + { + "label": ".dispose()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxClient.ts", + "source_location": "L210", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient_sandboxclient_dispose", + "community": 115, + "community_name": "Beapmessages Sandbox", + "norm_label": ".dispose()" + }, + { + "label": ".handleMessage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxClient.ts", + "source_location": "L233", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient_sandboxclient_handlemessage", + "community": 115, + "community_name": "Beapmessages Sandbox", + "norm_label": ".handlemessage()" + }, + { + "label": ".buildClientFailure()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxClient.ts", + "source_location": "L264", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient_sandboxclient_buildclientfailure", + "community": 115, + "community_name": "Beapmessages Sandbox", + "norm_label": ".buildclientfailure()" + }, + { + "label": "waitForIframeLoad()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxClient.ts", + "source_location": "L285", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient_waitforiframeload", + "community": 115, + "community_name": "Beapmessages Sandbox", + "norm_label": "waitforiframeload()" + }, + { + "label": "generateRequestId()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxClient.ts", + "source_location": "L310", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient_generaterequestid", + "community": 115, + "community_name": "Beapmessages Sandbox", + "norm_label": "generaterequestid()" + }, + { + "label": "sandboxDepackage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxClient.ts", + "source_location": "L333", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient_sandboxdepackage", + "community": 115, + "community_name": "Beapmessages Sandbox", + "norm_label": "sandboxdepackage()" + }, + { + "label": "sandboxProtocol.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol", + "community": 115, + "community_name": "Beapmessages Sandbox", + "norm_label": "sandboxprotocol.ts" + }, + { + "label": "SANDBOX_DEPACKAGE_TIMEOUT_MS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L42", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sandbox_depackage_timeout_ms", + "community": 115, + "community_name": "Beapmessages Sandbox", + "norm_label": "sandbox_depackage_timeout_ms" + }, + { + "label": "SANDBOX_MEMORY_LIMIT_BYTES", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L45", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sandbox_memory_limit_bytes", + "community": 115, + "community_name": "Beapmessages Sandbox", + "norm_label": "sandbox_memory_limit_bytes" + }, + { + "label": "SANDBOX_MESSAGE_ORIGIN", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L48", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sandbox_message_origin", + "community": 115, + "community_name": "Beapmessages Sandbox", + "norm_label": "sandbox_message_origin" + }, + { + "label": "SandboxDecryptOptions", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L61", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sandboxdecryptoptions", + "community": 115, + "community_name": "Beapmessages Sandbox", + "norm_label": "sandboxdecryptoptions" + }, + { + "label": "SerializedLocalHandshake", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L119", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_serializedlocalhandshake", + "community": 115, + "community_name": "Beapmessages Sandbox", + "norm_label": "serializedlocalhandshake" + }, + { + "label": "SerializedSenderIdentity", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L131", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_serializedsenderidentity", + "community": 115, + "community_name": "Beapmessages Sandbox", + "norm_label": "serializedsenderidentity" + }, + { + "label": "SerializedKnownReceiver", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L141", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_serializedknownreceiver", + "community": 115, + "community_name": "Beapmessages Sandbox", + "norm_label": "serializedknownreceiver" + }, + { + "label": "SandboxRequest", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L149", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sandboxrequest", + "community": 115, + "community_name": "Beapmessages Sandbox", + "norm_label": "sandboxrequest" + }, + { + "label": "SanitisedDecryptedPackage", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L192", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sanitiseddecryptedpackage", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "sanitiseddecryptedpackage" + }, + { + "label": "DecryptedPackageHeader", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L257", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_decryptedpackageheader", + "community": 115, + "community_name": "Beapmessages Sandbox", + "norm_label": "decryptedpackageheader" + }, + { + "label": "SandboxAck", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L281", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sandboxack", + "community": 115, + "community_name": "Beapmessages Sandbox", + "norm_label": "sandboxack" + }, + { + "label": "SandboxSuccess", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L290", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sandboxsuccess", + "community": 115, + "community_name": "Beapmessages Sandbox", + "norm_label": "sandboxsuccess" + }, + { + "label": "SandboxFailure", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L305", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sandboxfailure", + "community": 115, + "community_name": "Beapmessages Sandbox", + "norm_label": "sandboxfailure" + }, + { + "label": "SandboxFailureStage", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L326", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sandboxfailurestage", + "community": 115, + "community_name": "Beapmessages Sandbox", + "norm_label": "sandboxfailurestage" + }, + { + "label": "SandboxResponse", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L336", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sandboxresponse", + "community": 115, + "community_name": "Beapmessages Sandbox", + "norm_label": "sandboxresponse" + }, + { + "label": "isSandboxAck()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L342", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_issandboxack", + "community": 115, + "community_name": "Beapmessages Sandbox", + "norm_label": "issandboxack()" + }, + { + "label": "isSandboxSuccess()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L346", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_issandboxsuccess", + "community": 115, + "community_name": "Beapmessages Sandbox", + "norm_label": "issandboxsuccess()" + }, + { + "label": "isSandboxFailure()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L350", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_issandboxfailure", + "community": 115, + "community_name": "Beapmessages Sandbox", + "norm_label": "issandboxfailure()" + }, + { + "label": "isMatchingSandboxResponse()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L361", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_ismatchingsandboxresponse", + "community": 115, + "community_name": "Beapmessages Sandbox", + "norm_label": "ismatchingsandboxresponse()" + }, + { + "label": "uint8ArrayToHex()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L380", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_uint8arraytohex", + "community": 115, + "community_name": "Beapmessages Sandbox", + "norm_label": "uint8arraytohex()" + }, + { + "label": "hexToUint8Array()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L387", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_hextouint8array", + "community": 115, + "community_name": "Beapmessages Sandbox", + "norm_label": "hextouint8array()" + }, + { + "label": "sanitisedPackageToBeapMessage.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sanitisedPackageToBeapMessage.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sanitisedpackagetobeapmessage", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "sanitisedpackagetobeapmessage.ts" + }, + { + "label": "DEFAULT_PROCESSING_EVENTS_LOCAL", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sanitisedPackageToBeapMessage.ts", + "source_location": "L35", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sanitisedpackagetobeapmessage_default_processing_events_local", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "default_processing_events_local" + }, + { + "label": "deriveTrustLevel()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sanitisedPackageToBeapMessage.ts", + "source_location": "L58", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sanitisedpackagetobeapmessage_derivetrustlevel", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "derivetrustlevel()" + }, + { + "label": "mapAttachments()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sanitisedPackageToBeapMessage.ts", + "source_location": "L72", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sanitisedpackagetobeapmessage_mapattachments", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "mapattachments()" + }, + { + "label": "deriveMessageId()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sanitisedPackageToBeapMessage.ts", + "source_location": "L93", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sanitisedpackagetobeapmessage_derivemessageid", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "derivemessageid()" + }, + { + "label": "deriveSenderEmail()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sanitisedPackageToBeapMessage.ts", + "source_location": "L108", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sanitisedpackagetobeapmessage_derivesenderemail", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "derivesenderemail()" + }, + { + "label": "sanitisedPackageToBeapMessage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sanitisedPackageToBeapMessage.ts", + "source_location": "L129", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sanitisedpackagetobeapmessage_sanitisedpackagetobeapmessage", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "sanitisedpackagetobeapmessage()" + }, + { + "label": "seedData.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/seedData.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_seeddata", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "seeddata.ts" + }, + { + "label": "mockFingerprint()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/seedData.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_seeddata_mockfingerprint", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "mockfingerprint()" + }, + { + "label": "SEED_MESSAGES", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/seedData.ts", + "source_location": "L26", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_seeddata_seed_messages", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "seed_messages" + }, + { + "label": "getSeedMessagesByFolder()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/seedData.ts", + "source_location": "L388", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_seeddata_getseedmessagesbyfolder", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "getseedmessagesbyfolder()" + }, + { + "label": "BeapPackageBuilder.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "beappackagebuilder.ts" + }, + { + "label": "BeapCanonViolationError", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L120", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beapcanonviolationerror", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "beapcanonviolationerror" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L124", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beapcanonviolationerror_constructor", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": ".constructor()" + }, + { + "label": "isBeapDebugValidateEnabled()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L144", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_isbeapdebugvalidateenabled", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "isbeapdebugvalidateenabled()" + }, + { + "label": "isPostQuantumAvailable()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L191", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_ispostquantumavailable", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "ispostquantumavailable()" + }, + { + "label": "isPostQuantumAvailableAsync()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L202", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_ispostquantumavailableasync", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "ispostquantumavailableasync()" + }, + { + "label": "PQMetadata", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L210", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_pqmetadata", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "pqmetadata" + }, + { + "label": "SizeLimits", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L232", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_sizelimits", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "sizelimits" + }, + { + "label": "buildComplianceNotes()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L261", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildcompliancenotes", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "buildcompliancenotes()" + }, + { + "label": "DraftBuildPolicy", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L286", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_draftbuildpolicy", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "draftbuildpolicy" + }, + { + "label": "BeapPackageConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L301", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beappackageconfig", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "beappackageconfig" + }, + { + "label": "BeapEnvelopeHeader", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L456", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beapenvelopeheader", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "beapenvelopeheader" + }, + { + "label": "BeapArtefact", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L571", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beapartefact", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "beapartefact" + }, + { + "label": "BeapArtefactEncrypted", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L586", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beapartefactencrypted", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "beapartefactencrypted" + }, + { + "label": "BeapPackage", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L611", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beappackage", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "beappackage" + }, + { + "label": "PackageBuildResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L682", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_packagebuildresult", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "packagebuildresult" + }, + { + "label": "DeliveryResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L691", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_deliveryresult", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "deliveryresult" + }, + { + "label": "ValidationResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L734", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_validationresult", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "validationresult" + }, + { + "label": "validatePackageConfig()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L740", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_validatepackageconfig", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "validatepackageconfig()" + }, + { + "label": "canBuildPackage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L784", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_canbuildpackage", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "canbuildpackage()" + }, + { + "label": "resolveProcessingEventOffer()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L803", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_resolveprocessingeventoffer", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "resolveprocessingeventoffer()" + }, + { + "label": "safeBase64Encode()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L861", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_safebase64encode", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "safebase64encode()" + }, + { + "label": "extractAutomationTags()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L888", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_extractautomationtags", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "extractautomationtags()" + }, + { + "label": "AutomationMetadata", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L914", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_automationmetadata", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "automationmetadata" + }, + { + "label": "buildAutomationMetadata()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L926", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildautomationmetadata", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "buildautomationmetadata()" + }, + { + "label": "validateQBeapPolicy()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L978", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_validateqbeappolicy", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "validateqbeappolicy()" + }, + { + "label": "checkQbeapTransportChannelSafety()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1009", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_checkqbeaptransportchannelsafety", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "checkqbeaptransportchannelsafety()" + }, + { + "label": "isPqServiceConnectivityError()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1025", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_ispqserviceconnectivityerror", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "ispqserviceconnectivityerror()" + }, + { + "label": "buildQBeapPackage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1046", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildqbeappackage", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "buildqbeappackage()" + }, + { + "label": "buildPBeapPackage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1821", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildpbeappackage", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "buildpbeappackage()" + }, + { + "label": "buildPackage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1984", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildpackage", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "buildpackage()" + }, + { + "label": "toBeapBuildResult()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L2024", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_tobeapbuildresult", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "tobeapbuildresult()" + }, + { + "label": "buildDraftEmailPackage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L2045", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_builddraftemailpackage", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "builddraftemailpackage()" + }, + { + "label": "EmailTransportContract", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L2058", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_emailtransportcontract", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "emailtransportcontract" + }, + { + "label": "buildEmailTransportContract()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L2075", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildemailtransportcontract", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "buildemailtransportcontract()" + }, + { + "label": "executeEmailAction()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L2121", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_executeemailaction", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "executeemailaction()" + }, + { + "label": "executeMessengerAction()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L2196", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_executemessengeraction", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "executemessengeraction()" + }, + { + "label": "executeDownloadAction()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L2246", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_executedownloadaction", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "executedownloadaction()" + }, + { + "label": "packageToP2PJsonString()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L2283", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_packagetop2pjsonstring", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "packagetop2pjsonstring()" + }, + { + "label": "executeP2PAction()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L2310", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_executep2paction", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "executep2paction()" + }, + { + "label": "executeDeliveryAction()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L2592", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_executedeliveryaction", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "executedeliveryaction()" + }, + { + "label": "BeapPackageBuilder.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/BeapPackageBuilder.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_tests_beappackagebuilder_test", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "beappackagebuilder.test.ts" + }, + { + "label": "createBaseConfig()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/BeapPackageBuilder.test.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_tests_beappackagebuilder_test_createbaseconfig", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "createbaseconfig()" + }, + { + "label": "createPrivateConfig()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/BeapPackageBuilder.test.ts", + "source_location": "L59", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_tests_beappackagebuilder_test_createprivateconfig", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "createprivateconfig()" + }, + { + "label": "createPublicConfig()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/BeapPackageBuilder.test.ts", + "source_location": "L65", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_tests_beappackagebuilder_test_createpublicconfig", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "createpublicconfig()" + }, + { + "label": "mockKemCt", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/BeapPackageBuilder.test.ts", + "source_location": "L72", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_tests_beappackagebuilder_test_mockkemct", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "mockkemct" + }, + { + "label": "mockMlkemSs", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/BeapPackageBuilder.test.ts", + "source_location": "L73", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_tests_beappackagebuilder_test_mockmlkemss", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "mockmlkemss" + }, + { + "label": "beapCrypto.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/beapCrypto.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_tests_beapcrypto_test", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "beapcrypto.test.ts" + }, + { + "label": "executeP2PAction.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/executeP2PAction.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_tests_executep2paction_test", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "executep2paction.test.ts" + }, + { + "label": "sessionImportArtefact.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/sessionImportArtefact.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_tests_sessionimportartefact_test", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "sessionimportartefact.test.ts" + }, + { + "label": "mockKemCt", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/sessionImportArtefact.test.ts", + "source_location": "L41", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_tests_sessionimportartefact_test_mockkemct", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "mockkemct" + }, + { + "label": "mockMlkemSs", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/sessionImportArtefact.test.ts", + "source_location": "L42", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_tests_sessionimportartefact_test_mockmlkemss", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "mockmlkemss" + }, + { + "label": "makeGrid()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/sessionImportArtefact.test.ts", + "source_location": "L67", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_tests_sessionimportartefact_test_makegrid", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "makegrid()" + }, + { + "label": "makeSession()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/sessionImportArtefact.test.ts", + "source_location": "L76", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_tests_sessionimportartefact_test_makesession", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "makesession()" + }, + { + "label": "validArtefact()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/sessionImportArtefact.test.ts", + "source_location": "L90", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_tests_sessionimportartefact_test_validartefact", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "validartefact()" + }, + { + "label": "BASE_PRIVATE_CONFIG", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/sessionImportArtefact.test.ts", + "source_location": "L105", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_tests_sessionimportartefact_test_base_private_config", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "base_private_config" + }, + { + "label": "privateConfig()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/sessionImportArtefact.test.ts", + "source_location": "L128", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_tests_sessionimportartefact_test_privateconfig", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "privateconfig()" + }, + { + "label": "publicConfig()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/sessionImportArtefact.test.ts", + "source_location": "L132", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_tests_sessionimportartefact_test_publicconfig", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "publicconfig()" + }, + { + "label": "decodePBeapPayload()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/sessionImportArtefact.test.ts", + "source_location": "L142", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_tests_sessionimportartefact_test_decodepbeappayload", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "decodepbeappayload()" + }, + { + "label": "transportChannelSafety.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/transportChannelSafety.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_tests_transportchannelsafety_test", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "transportchannelsafety.test.ts" + }, + { + "label": "emptyAtt", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/transportChannelSafety.test.ts", + "source_location": "L5", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_tests_transportchannelsafety_test_emptyatt", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "emptyatt" + }, + { + "label": "beapClassificationEngine.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "beapclassificationengine.ts" + }, + { + "label": "ClassificationResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L68", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_classificationresult", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "classificationresult" + }, + { + "label": "ProjectedContent", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L88", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_projectedcontent", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "projectedcontent" + }, + { + "label": "AIProvider", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L109", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_aiprovider", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "aiprovider" + }, + { + "label": ".classify()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L120", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_aiprovider_classify", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": ".classify()" + }, + { + "label": "ClassificationContext", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L128", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_classificationcontext", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "classificationcontext" + }, + { + "label": "AiClassificationResponse", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L138", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_aiclassificationresponse", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "aiclassificationresponse" + }, + { + "label": "ClassificationProgressEvent", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L147", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_classificationprogressevent", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "classificationprogressevent" + }, + { + "label": "ClassificationEngineConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L157", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_classificationengineconfig", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "classificationengineconfig" + }, + { + "label": "URGENT_SIGNALS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L227", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_urgent_signals", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "urgent_signals" + }, + { + "label": "ACTION_SIGNALS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L242", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_action_signals", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "action_signals" + }, + { + "label": "IRRELEVANT_SIGNALS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L259", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_irrelevant_signals", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "irrelevant_signals" + }, + { + "label": "TRUST_WEIGHT", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L273", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_trust_weight", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "trust_weight" + }, + { + "label": "heuristicClassify()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L284", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_heuristicclassify", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "heuristicclassify()" + }, + { + "label": "summarise()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L362", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_summarise", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "summarise()" + }, + { + "label": "defaultAction()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L371", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_defaultaction", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "defaultaction()" + }, + { + "label": "projectContent()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L392", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_projectcontent", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "projectcontent()" + }, + { + "label": "buildSyntheticCapsule()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L457", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_buildsyntheticcapsule", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "buildsyntheticcapsule()" + }, + { + "label": "resolveAuthorizedScope()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L488", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_resolveauthorizedscope", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "resolveauthorizedscope()" + }, + { + "label": "resolveProvider()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L499", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_resolveprovider", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "resolveprovider()" + }, + { + "label": "gateMessage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L519", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_gatemessage", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "gatemessage()" + }, + { + "label": "classifySingleMessage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L535", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_classifysinglemessage", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "classifysinglemessage()" + }, + { + "label": "resolveConfig()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L689", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_resolveconfig", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "resolveconfig()" + }, + { + "label": "buildGateContext()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L704", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_buildgatecontext", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "buildgatecontext()" + }, + { + "label": "classifyBatch()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L722", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_classifybatch", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "classifybatch()" + }, + { + "label": "selectMessagesForAutoDeletion()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L813", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_selectmessagesforautodeletion", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "selectmessagesforautodeletion()" + }, + { + "label": "toStoreClassificationMap()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L840", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_tostoreclassificationmap", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "tostoreclassificationmap()" + }, + { + "label": "NOTE: This is a lightweight re-check of the gate policy against the", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L453", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_rationale_453", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "note: this is a lightweight re-check of the gate policy against the" + }, + { + "label": "beapCrypto.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "beapcrypto.ts" + }, + { + "label": "AeadCiphertext", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_aeadciphertext", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "aeadciphertext" + }, + { + "label": "BeapPQMetadata", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_beappqmetadata", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "beappqmetadata" + }, + { + "label": "BeapCryptoMetadata", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L39", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_beapcryptometadata", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "beapcryptometadata" + }, + { + "label": "EncryptedChunk", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L63", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptedchunk", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "encryptedchunk" + }, + { + "label": "ChunkingMetadata", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L79", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_chunkingmetadata", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "chunkingmetadata" + }, + { + "label": "EncryptedArtefact", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L90", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptedartefact", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "encryptedartefact" + }, + { + "label": "CapsulePayloadEnc", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L131", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_capsulepayloadenc", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "capsulepayloadenc" + }, + { + "label": "asBufferSource()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L161", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_asbuffersource", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "asbuffersource()" + }, + { + "label": "setDebugAadTrackingEnabled()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L187", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_setdebugaadtrackingenabled", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "setdebugaadtrackingenabled()" + }, + { + "label": "getDebugAadStats()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L195", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_getdebugaadstats", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "getdebugaadstats()" + }, + { + "label": "resetDebugAadStats()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L207", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_resetdebugaadstats", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "resetdebugaadstats()" + }, + { + "label": "trackAadUsage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L219", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_trackaadusage", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "trackaadusage()" + }, + { + "label": "getDebugLastSigningData()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L243", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_getdebuglastsigningdata", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "getdebuglastsigningdata()" + }, + { + "label": "resetDebugSigningData()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L251", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_resetdebugsigningdata", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "resetdebugsigningdata()" + }, + { + "label": "captureDebugSigningData()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L259", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_capturedebugsigningdata", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "capturedebugsigningdata()" + }, + { + "label": "randomBytes()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L271", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_randombytes", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "randombytes()" + }, + { + "label": "safeAtob()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L280", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_safeatob", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "safeatob()" + }, + { + "label": "toBase64()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L292", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_tobase64", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "tobase64()" + }, + { + "label": "fromBase64()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L304", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_frombase64", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "frombase64()" + }, + { + "label": "stringToBytes()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L326", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_stringtobytes", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "stringtobytes()" + }, + { + "label": "bytesToString()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L333", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_bytestostring", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "bytestostring()" + }, + { + "label": "sha256()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L340", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_sha256", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "sha256()" + }, + { + "label": "stableCanonicalize()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L367", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_stablecanonicalize", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "stablecanonicalize()" + }, + { + "label": "canonicalSerializeAAD()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L414", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_canonicalserializeaad", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "canonicalserializeaad()" + }, + { + "label": "EnvelopeHeaderForAAD", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L424", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_envelopeheaderforaad", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "envelopeheaderforaad" + }, + { + "label": "buildEnvelopeAadFields()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L480", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_buildenvelopeaadfields", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "buildenvelopeaadfields()" + }, + { + "label": "computeEnvelopeAAD()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L541", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_computeenvelopeaad", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "computeenvelopeaad()" + }, + { + "label": "hkdfSha256()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L559", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_hkdfsha256", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "hkdfsha256()" + }, + { + "label": "KeyDerivationMethod", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L596", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_keyderivationmethod", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "keyderivationmethod" + }, + { + "label": "HandshakeSecretResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L603", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_handshakesecretresult", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "handshakesecretresult" + }, + { + "label": "deriveHandshakeSecretX25519()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L619", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_derivehandshakesecretx25519", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "derivehandshakesecretx25519()" + }, + { + "label": "deriveHandshakeSecret_DEPRECATED()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L640", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_derivehandshakesecret_deprecated", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "derivehandshakesecret_deprecated()" + }, + { + "label": "deriveBeapKeys()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L662", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_derivebeapkeys", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "derivebeapkeys()" + }, + { + "label": "aeadEncrypt()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L713", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_aeadencrypt", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "aeadencrypt()" + }, + { + "label": "aeadDecrypt()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L760", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_aeaddecrypt", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "aeaddecrypt()" + }, + { + "label": "generateEnvelopeSalt()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L798", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_generateenvelopesalt", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "generateenvelopesalt()" + }, + { + "label": "chunkBytes()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L822", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_chunkbytes", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "chunkbytes()" + }, + { + "label": "computeMerkleRoot()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L842", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_computemerkleroot", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "computemerkleroot()" + }, + { + "label": "encryptChunks()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L862", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptchunks", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "encryptchunks()" + }, + { + "label": "decryptChunks()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L913", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_decryptchunks", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "decryptchunks()" + }, + { + "label": "shouldChunk()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L942", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_shouldchunk", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "shouldchunk()" + }, + { + "label": "encryptCapsulePayload()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L954", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptcapsulepayload", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "encryptcapsulepayload()" + }, + { + "label": "encryptCapsulePayloadChunked()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L979", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptcapsulepayloadchunked", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "encryptcapsulepayloadchunked()" + }, + { + "label": "decryptCapsulePayload()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1040", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_decryptcapsulepayload", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "decryptcapsulepayload()" + }, + { + "label": "encryptArtefact()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1059", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptartefact", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "encryptartefact()" + }, + { + "label": "encryptOriginalArtefact()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1123", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptoriginalartefact", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "encryptoriginalartefact()" + }, + { + "label": "encryptArtefactWithAAD()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1192", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptartefactwithaad", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "encryptartefactwithaad()" + }, + { + "label": "encryptOriginalArtefactWithAAD()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1259", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptoriginalartefactwithaad", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "encryptoriginalartefactwithaad()" + }, + { + "label": "decryptArtefact()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1321", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_decryptartefact", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "decryptartefact()" + }, + { + "label": "Ed25519KeyPair", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1386", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_ed25519keypair", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "ed25519keypair" + }, + { + "label": "BeapSignature", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1398", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_beapsignature", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "beapsignature" + }, + { + "label": "generateEd25519KeyPair()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1414", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_generateed25519keypair", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "generateed25519keypair()" + }, + { + "label": "ed25519Sign()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1439", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_ed25519sign", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "ed25519sign()" + }, + { + "label": "ed25519Verify()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1456", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_ed25519verify", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "ed25519verify()" + }, + { + "label": "createBeapSignature()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1473", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_createbeapsignature", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "createbeapsignature()" + }, + { + "label": "verifyBeapSignature()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1494", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_verifybeapsignature", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "verifybeapsignature()" + }, + { + "label": "sha256Hex()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1512", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_sha256hex", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "sha256hex()" + }, + { + "label": "sha256String()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1519", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_sha256string", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "sha256string()" + }, + { + "label": "hmacSha256()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1533", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_hmacsha256", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "hmacsha256()" + }, + { + "label": "constantTimeEqual()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1554", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_constanttimeequal", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "constanttimeequal()" + }, + { + "label": "computeContentHash()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1575", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_computecontenthash", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "computecontenthash()" + }, + { + "label": "computeTemplateHash()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1598", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_computetemplatehash", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "computetemplatehash()" + }, + { + "label": "computePolicyHash()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1616", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_computepolicyhash", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "computepolicyhash()" + }, + { + "label": "PayloadCommitment", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1649", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_payloadcommitment", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "payloadcommitment" + }, + { + "label": "computeSigningData()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1674", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_computesigningdata", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "computesigningdata()" + }, + { + "label": "getSigningKeyPair()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1747", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_getsigningkeypair", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "getsigningkeypair()" + }, + { + "label": "clearSigningKeyPair()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1787", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_clearsigningkeypair", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "clearsigningkeypair()" + }, + { + "label": "detectAndMigrateEphemeralKey()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1809", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_detectandmigrateephemeralkey", + "community": 154, + "community_name": "Beapmessages Services #154", + "norm_label": "detectandmigrateephemeralkey()" + }, + { + "label": "PQEncapsulationResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1846", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqencapsulationresult", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "pqencapsulationresult" + }, + { + "label": "PQDecapsulationResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1857", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqdecapsulationresult", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "pqdecapsulationresult" + }, + { + "label": "PQNotAvailableError", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1865", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqnotavailableerror", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "pqnotavailableerror" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1866", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqnotavailableerror_constructor", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": ".constructor()" + }, + { + "label": "setPqAuthHeadersProvider()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1882", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_setpqauthheadersprovider", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "setpqauthheadersprovider()" + }, + { + "label": "_getPqHeaders()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1886", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_getpqheaders", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "_getpqheaders()" + }, + { + "label": "ensurePqHttpAuthReady()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1901", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_ensurepqhttpauthready", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "ensurepqhttpauthready()" + }, + { + "label": "invalidatePqAvailabilityCache()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1921", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_invalidatepqavailabilitycache", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "invalidatepqavailabilitycache()" + }, + { + "label": "_pqCacheTtlFor()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1925", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqcachettlfor", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "_pqcachettlfor()" + }, + { + "label": "pqKemSupported()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1940", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqkemsupported", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "pqkemsupported()" + }, + { + "label": "pqKemSupportedAsync()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1960", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqkemsupportedasync", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "pqkemsupportedasync()" + }, + { + "label": "pqKemGenerateKeyPair()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L2000", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqkemgeneratekeypair", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "pqkemgeneratekeypair()" + }, + { + "label": "pqEncapsulate()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L2063", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqencapsulate", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "pqencapsulate()" + }, + { + "label": "pqDecapsulate()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L2123", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqdecapsulate", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "pqdecapsulate()" + }, + { + "label": "TODO: Wire AAD to aeadEncrypt in next step", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1001", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapcrypto_rationale_1001", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "todo: wire aad to aeadencrypt in next step" + }, + { + "label": "beapDecrypt.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "beapdecrypt.ts" + }, + { + "label": "DecryptedCapsulePayload", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L96", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptedcapsulepayload", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "decryptedcapsulepayload" + }, + { + "label": "DecryptedArtefact", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L145", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptedartefact", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "decryptedartefact" + }, + { + "label": "DecryptedPackage", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L162", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptedpackage", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "decryptedpackage" + }, + { + "label": "VerificationResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L233", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_verificationresult", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "verificationresult" + }, + { + "label": "DecryptionResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L244", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptionresult", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "decryptionresult" + }, + { + "label": "ReceiverProcessingPolicy", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L263", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_receiverprocessingpolicy", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "receiverprocessingpolicy" + }, + { + "label": "DEFAULT_RECEIVER_POLICY", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L317", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_default_receiver_policy", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "default_receiver_policy" + }, + { + "label": "ProcessingGateResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L329", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_processinggateresult", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "processinggateresult" + }, + { + "label": "evaluateProcessingEventGate()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L384", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_evaluateprocessingeventgate", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "evaluateprocessingeventgate()" + }, + { + "label": "checkRecipientEligibility()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L541", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_checkrecipienteligibility", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "checkrecipienteligibility()" + }, + { + "label": "verifyEnvelopeIntegrity()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L569", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_verifyenvelopeintegrity", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "verifyenvelopeintegrity()" + }, + { + "label": "verifyPackageSignature()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L643", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_verifypackagesignature", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "verifypackagesignature()" + }, + { + "label": "decryptQBeapPackage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L718", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptqbeappackage", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "decryptqbeappackage()" + }, + { + "label": "decodePBeapPackage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L861", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decodepbeappackage", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "decodepbeappackage()" + }, + { + "label": "decryptQBeapPackageFromContext()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L1009", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptqbeappackagefromcontext", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "decryptqbeappackagefromcontext()" + }, + { + "label": "decodePBeapPackageFromContext()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L1097", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decodepbeappackagefromcontext", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "decodepbeappackagefromcontext()" + }, + { + "label": "decryptBeapPackage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L1193", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptbeappackage", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "decryptbeappackage()" + }, + { + "label": "parseBeapFile()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L1527", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_parsebeapfile", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "parsebeapfile()" + }, + { + "label": "getArtefactByRef()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L1566", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_getartefactbyref", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "getartefactbyref()" + }, + { + "label": "getArtefactsForAttachment()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L1580", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_getartefactsforattachment", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "getartefactsforattachment()" + }, + { + "label": "getOriginalArtefact()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L1594", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_getoriginalartefact", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "getoriginalartefact()" + }, + { + "label": "getRasterArtefacts()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L1610", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_getrasterartefacts", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "getrasterartefacts()" + }, + { + "label": "beapReplyAiProvider.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapReplyAiProvider.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapreplyaiprovider", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "beapreplyaiprovider.ts" + }, + { + "label": "VALID_URGENCY", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapReplyAiProvider.ts", + "source_location": "L21", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapreplyaiprovider_valid_urgency", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "valid_urgency" + }, + { + "label": "LlmGenerateFn", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapReplyAiProvider.ts", + "source_location": "L24", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapreplyaiprovider_llmgeneratefn", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "llmgeneratefn" + }, + { + "label": "parseClassificationResponse()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapReplyAiProvider.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapreplyaiprovider_parseclassificationresponse", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "parseclassificationresponse()" + }, + { + "label": "createBeapReplyAiProvider()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapReplyAiProvider.ts", + "source_location": "L69", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_beapreplyaiprovider_createbeapreplyaiprovider", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "createbeapreplyaiprovider()" + }, + { + "label": "depackagingPipeline.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "depackagingpipeline.ts" + }, + { + "label": "ACCEPTED_VERSIONS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L68", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_accepted_versions", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "accepted_versions" + }, + { + "label": "ACCEPTED_ENCODINGS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L71", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_accepted_encodings", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "accepted_encodings" + }, + { + "label": "SenderIdentity", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L88", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_senderidentity", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "senderidentity" + }, + { + "label": "KnownReceiver", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L106", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_knownreceiver", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "knownreceiver" + }, + { + "label": "GateResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L133", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gateresult", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "gateresult" + }, + { + "label": "Gate1Context", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L165", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate1context", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "gate1context" + }, + { + "label": "Gate2Context", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L179", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate2context", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "gate2context" + }, + { + "label": "Gate3Context", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L187", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate3context", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "gate3context" + }, + { + "label": "Gate4Context", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L206", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate4context", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "gate4context" + }, + { + "label": "Gate5Context", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L226", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate5context", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "gate5context" + }, + { + "label": "Gate6Context", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L236", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate6context", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "gate6context" + }, + { + "label": "PipelineInput", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L256", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_pipelineinput", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "pipelineinput" + }, + { + "label": "PipelineResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L330", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_pipelineresult", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "pipelineresult" + }, + { + "label": "nonDisclosingError()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L379", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_nondisclosingerror", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "nondisclosingerror()" + }, + { + "label": "gate1SenderIdentity()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L409", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate1senderidentity", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "gate1senderidentity()" + }, + { + "label": "gate2ReceiverIdentity()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L509", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate2receiveridentity", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "gate2receiveridentity()" + }, + { + "label": "gate3CiphertextIntegrity()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L622", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate3ciphertextintegrity", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "gate3ciphertextintegrity()" + }, + { + "label": "gate4Decryption()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L794", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate4decryption", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "gate4decryption()" + }, + { + "label": "gate5SignatureVerification()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L1054", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate5signatureverification", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "gate5signatureverification()" + }, + { + "label": "gate6TemplateHash()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L1149", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate6templatehash", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "gate6templatehash()" + }, + { + "label": "runDepackagingPipeline()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L1265", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_rundepackagingpipeline", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "rundepackagingpipeline()" + }, + { + "label": "eligibilityCheck.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/eligibilityCheck.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_eligibilitycheck", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "eligibilitycheck.ts" + }, + { + "label": "LocalHandshake", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/eligibilityCheck.ts", + "source_location": "L43", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_eligibilitycheck_localhandshake", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "localhandshake" + }, + { + "label": "EligibilityOutcome", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/eligibilityCheck.ts", + "source_location": "L79", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_eligibilitycheck_eligibilityoutcome", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "eligibilityoutcome" + }, + { + "label": "EligibilityCheckResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/eligibilityCheck.ts", + "source_location": "L81", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_eligibilitycheck_eligibilitycheckresult", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "eligibilitycheckresult" + }, + { + "label": "deriveEligibilityMaterial()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/eligibilityCheck.ts", + "source_location": "L117", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_eligibilitycheck_deriveeligibilitymaterial", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "deriveeligibilitymaterial()" + }, + { + "label": "evaluateRecipientEligibility()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/eligibilityCheck.ts", + "source_location": "L155", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_eligibilitycheck_evaluaterecipienteligibility", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "evaluaterecipienteligibility()" + }, + { + "label": "evaluateLegacyEligibility()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/eligibilityCheck.ts", + "source_location": "L234", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_eligibilitycheck_evaluatelegacyeligibility", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "evaluatelegacyeligibility()" + }, + { + "label": "NOTE: This path does NOT provide the canonical constant-time or non-disclosing", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/beap-messages/services/eligibilityCheck.ts", + "source_location": "L227", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_eligibilitycheck_rationale_227", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "note: this path does not provide the canonical constant-time or non-disclosing" + }, + { + "label": "services/index.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_index", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "services/index.ts" + }, + { + "label": "outerEnvelope.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/outerEnvelope.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_outerenvelope", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "outerenvelope.ts" + }, + { + "label": "OuterEnvelopeHeader", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/outerEnvelope.ts", + "source_location": "L46", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_outerenvelope_outerenvelopeheader", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "outerenvelopeheader" + }, + { + "label": "ArtefactTopology", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/outerEnvelope.ts", + "source_location": "L175", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_outerenvelope_artefacttopology", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "artefacttopology" + }, + { + "label": "ArtefactTopologyEntry", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/outerEnvelope.ts", + "source_location": "L193", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_outerenvelope_artefacttopologyentry", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "artefacttopologyentry" + }, + { + "label": "InnerEnvelopeMetadata", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/outerEnvelope.ts", + "source_location": "L236", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_outerenvelope_innerenvelopemetadata", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "innerenvelopemetadata" + }, + { + "label": "validateInnerEnvelopeSchema()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/outerEnvelope.ts", + "source_location": "L311", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_outerenvelope_validateinnerenvelopeschema", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "validateinnerenvelopeschema()" + }, + { + "label": "buildArtefactTopology()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/outerEnvelope.ts", + "source_location": "L423", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_outerenvelope_buildartefacttopology", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "buildartefacttopology()" + }, + { + "label": "encodeInnerEnvelopeBlob()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/outerEnvelope.ts", + "source_location": "L478", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_outerenvelope_encodeinnerenvelopeblob", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "encodeinnerenvelopeblob()" + }, + { + "label": "decodeInnerEnvelopeBlob()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/outerEnvelope.ts", + "source_location": "L486", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_outerenvelope_decodeinnerenvelopeblob", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "decodeinnerenvelopeblob()" + }, + { + "label": "encryptInnerEnvelope()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/outerEnvelope.ts", + "source_location": "L512", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_outerenvelope_encryptinnerenvelope", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "encryptinnerenvelope()" + }, + { + "label": "decryptInnerEnvelope()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/outerEnvelope.ts", + "source_location": "L546", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_outerenvelope_decryptinnerenvelope", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "decryptinnerenvelope()" + }, + { + "label": "poae.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_poae", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "poae.ts" + }, + { + "label": "PoAEAnchorType", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L61", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_poae_poaeanchortype", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "poaeanchortype" + }, + { + "label": "PoAEAnchorReference", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L70", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_poae_poaeanchorreference", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "poaeanchorreference" + }, + { + "label": "PoAERecord", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L106", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_poae_poaerecord", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "poaerecord" + }, + { + "label": "PoAERLog", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L193", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_poae_poaerlog", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "poaerlog" + }, + { + "label": "PoAEAnchorProvider", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L285", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_poae_poaeanchorprovider", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "poaeanchorprovider" + }, + { + "label": ".anchor()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L297", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_poae_poaeanchorprovider_anchor", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": ".anchor()" + }, + { + "label": ".verify()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L308", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_poae_poaeanchorprovider_verify", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": ".verify()" + }, + { + "label": ".retrieve()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L316", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_poae_poaeanchorprovider_retrieve", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": ".retrieve()" + }, + { + "label": "PoAEAnchorError", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L322", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_poae_poaeanchorerror", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "poaeanchorerror" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L323", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_poae_poaeanchorerror_constructor", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": ".constructor()" + }, + { + "label": "LocalAnchorEntry", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L340", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_poae_localanchorentry", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "localanchorentry" + }, + { + "label": "LocalAnchorProvider", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L356", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_poae_localanchorprovider", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "localanchorprovider" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L368", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_poae_localanchorprovider_constructor", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": ".constructor()" + }, + { + "label": ".anchor()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L374", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_poae_localanchorprovider_anchor", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": ".anchor()" + }, + { + "label": ".verify()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L392", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_poae_localanchorprovider_verify", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": ".verify()" + }, + { + "label": ".retrieve()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L402", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_poae_localanchorprovider_retrieve", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": ".retrieve()" + }, + { + "label": "generateUUID()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L416", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_poae_generateuuid", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "generateuuid()" + }, + { + "label": "computePoAECommitment()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L434", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_poae_computepoaecommitment", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "computepoaecommitment()" + }, + { + "label": "generatePoAERecord()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L466", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_poae_generatepoaerecord", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "generatepoaerecord()" + }, + { + "label": "PoAEVerificationResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L528", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_poae_poaeverificationresult", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "poaeverificationresult" + }, + { + "label": "verifyPoAERecord()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L568", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_poae_verifypoaerecord", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "verifypoaerecord()" + }, + { + "label": "GeneratePoAERLogParams", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L631", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_poae_generatepoaerlogparams", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "generatepoaerlogparams" + }, + { + "label": "generatePoAERLog()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L671", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_poae_generatepoaerlog", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "generatepoaerlog()" + }, + { + "label": "PoAERLogStore", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L725", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_poae_poaerlogstore", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "poaerlogstore" + }, + { + "label": ".persistLog()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L730", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_poae_poaerlogstore_persistlog", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": ".persistlog()" + }, + { + "label": ".retrieveLog()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L735", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_poae_poaerlogstore_retrievelog", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": ".retrievelog()" + }, + { + "label": ".listLogsForCapsule()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L740", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_poae_poaerlogstore_listlogsforcapsule", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": ".listlogsforcapsule()" + }, + { + "label": "computeCapsuleHash()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L753", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_poae_computecapsulehash", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "computecapsulehash()" + }, + { + "label": "processingEventGate.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_processingeventgate", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "processingeventgate.ts" + }, + { + "label": "DataClass", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L53", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_processingeventgate_dataclass", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "dataclass" + }, + { + "label": "AccessScope", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L71", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_processingeventgate_accessscope", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "accessscope" + }, + { + "label": "CapabilityToken", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L83", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_processingeventgate_capabilitytoken", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "capabilitytoken" + }, + { + "label": "ReceiverCapabilityPolicy", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L124", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_processingeventgate_receivercapabilitypolicy", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "receivercapabilitypolicy" + }, + { + "label": "DEFAULT_CAPABILITY_POLICY", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L171", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_processingeventgate_default_capability_policy", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "default_capability_policy" + }, + { + "label": "ImpliedProcessingEvent", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L195", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_processingeventgate_impliedprocessingevent", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "impliedprocessingevent" + }, + { + "label": "GateDecision", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L229", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_processingeventgate_gatedecision", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "gatedecision" + }, + { + "label": "AuthorizedProcessingResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L242", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_processingeventgate_authorizedprocessingresult", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "authorizedprocessingresult" + }, + { + "label": "extractImpliedEvents()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L329", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_processingeventgate_extractimpliedevents", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "extractimpliedevents()" + }, + { + "label": "alignImpliedWithDeclarations()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L445", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_processingeventgate_alignimpliedwithdeclarations", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "alignimpliedwithdeclarations()" + }, + { + "label": "evaluateCapabilityTokens()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L510", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_processingeventgate_evaluatecapabilitytokens", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "evaluatecapabilitytokens()" + }, + { + "label": "ConsentBindingContext", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L573", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_processingeventgate_consentbindingcontext", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "consentbindingcontext" + }, + { + "label": "ConsentRecord", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L608", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_processingeventgate_consentrecord", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "consentrecord" + }, + { + "label": "ClassConsentStatus", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L669", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_processingeventgate_classconsentstatus", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "classconsentstatus" + }, + { + "label": "ConsentResolutionResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L701", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_processingeventgate_consentresolutionresult", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "consentresolutionresult" + }, + { + "label": "findMatchingConsentRecord()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L723", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_processingeventgate_findmatchingconsentrecord", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "findmatchingconsentrecord()" + }, + { + "label": "resolveConsentRequirements()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L796", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_processingeventgate_resolveconsentrequirements", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "resolveconsentrequirements()" + }, + { + "label": "GatingArtefact", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L1011", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_processingeventgate_gatingartefact", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "gatingartefact" + }, + { + "label": "GatingAuditStore", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L1097", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_processingeventgate_gatingauditstore", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "gatingauditstore" + }, + { + "label": ".persistGatingArtefacts()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L1103", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_processingeventgate_gatingauditstore_persistgatingartefacts", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": ".persistgatingartefacts()" + }, + { + "label": "computePolicyFingerprint()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L1113", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_processingeventgate_computepolicyfingerprint", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "computepolicyfingerprint()" + }, + { + "label": "generateArtefactId()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L1137", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_processingeventgate_generateartefactid", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "generateartefactid()" + }, + { + "label": "generateGatingArtefacts()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L1159", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_processingeventgate_generategatingartefacts", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "generategatingartefacts()" + }, + { + "label": "GateContext", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L1220", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_processingeventgate_gatecontext", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "gatecontext" + }, + { + "label": "runStage61Gate()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L1270", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_processingeventgate_runstage61gate", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "runstage61gate()" + }, + { + "label": "processingEvents.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_processingevents", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "processingevents.ts" + }, + { + "label": "ProcessingEventClass", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L58", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_processingevents_processingeventclass", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "processingeventclass" + }, + { + "label": "ProcessingBoundary", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L69", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_processingevents_processingboundary", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "processingboundary" + }, + { + "label": "ProcessingScope", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L80", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_processingevents_processingscope", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "processingscope" + }, + { + "label": "ProcessingRetention", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L95", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_processingevents_processingretention", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "processingretention" + }, + { + "label": "ProcessingProvider", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L112", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_processingevents_processingprovider", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "processingprovider" + }, + { + "label": "ProcessingEventDeclaration", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L142", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_processingevents_processingeventdeclaration", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "processingeventdeclaration" + }, + { + "label": "ProcessingEventOffer", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L227", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_processingevents_processingeventoffer", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "processingeventoffer" + }, + { + "label": "ConsentSelectableOffer", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L278", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_processingevents_consentselectableoffer", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "consentselectableoffer" + }, + { + "label": "ConsentSelectableOfferSet", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L333", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_processingevents_consentselectableofferset", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "consentselectableofferset" + }, + { + "label": "ProcessingEventValidationError", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L342", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_processingevents_processingeventvalidationerror", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "processingeventvalidationerror" + }, + { + "label": "VALID_CLASSES", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L373", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_processingevents_valid_classes", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "valid_classes" + }, + { + "label": "VALID_BOUNDARIES", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L374", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_processingevents_valid_boundaries", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "valid_boundaries" + }, + { + "label": "VALID_SCOPES", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L375", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_processingevents_valid_scopes", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "valid_scopes" + }, + { + "label": "VALID_RETENTIONS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L376", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_processingevents_valid_retentions", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "valid_retentions" + }, + { + "label": "validateProvider()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L382", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_processingevents_validateprovider", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "validateprovider()" + }, + { + "label": "validateProcessingEventOffer()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L433", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_processingevents_validateprocessingeventoffer", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "validateprocessingeventoffer()" + }, + { + "label": "coerceDeclarationToNoneIfUnboundable()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L594", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_processingevents_coercedeclarationtononeifunboundable", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "coercedeclarationtononeifunboundable()" + }, + { + "label": "validateOfferSet()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L634", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_processingevents_validateofferset", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "validateofferset()" + }, + { + "label": "buildDefaultProcessingOffer()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L707", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_processingevents_builddefaultprocessingoffer", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "builddefaultprocessingoffer()" + }, + { + "label": "buildLocalSemanticOffer()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L743", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_processingevents_buildlocalsemanticoffer", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "buildlocalsemanticoffer()" + }, + { + "label": "buildRemoteSemanticOffer()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L791", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_processingevents_buildremotesemanticoffer", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "buildremotesemanticoffer()" + }, + { + "label": "mergeWithNoneDefaults()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L839", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_processingevents_mergewithnonedefaults", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "mergewithnonedefaults()" + }, + { + "label": "getDeclarationForClass()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L878", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_processingevents_getdeclarationforclass", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "getdeclarationforclass()" + }, + { + "label": "isProcessingPermitted()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L899", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_processingevents_isprocessingpermitted", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "isprocessingpermitted()" + }, + { + "label": "getProviderIdsForClass()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L910", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_processingevents_getprovideridsforclass", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "getprovideridsforclass()" + }, + { + "label": "getRetentionForClass()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L923", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_processingevents_getretentionforclass", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "getretentionforclass()" + }, + { + "label": "NOTE: Offer set validation is purely structural. It does NOT imply consent.", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L631", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_processingevents_rationale_631", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "note: offer set validation is purely structural. it does not imply consent." + }, + { + "label": "signingKeyVault.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_signingkeyvault", + "community": 154, + "community_name": "Beapmessages Services #154", + "norm_label": "signingkeyvault.ts" + }, + { + "label": "PersistedEd25519KeyPair", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L79", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_persisteded25519keypair", + "community": 154, + "community_name": "Beapmessages Services #154", + "norm_label": "persisteded25519keypair" + }, + { + "label": "VaultRecord", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L95", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_vaultrecord", + "community": 154, + "community_name": "Beapmessages Services #154", + "norm_label": "vaultrecord" + }, + { + "label": "VaultArchive", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L120", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_vaultarchive", + "community": 154, + "community_name": "Beapmessages Services #154", + "norm_label": "vaultarchive" + }, + { + "label": "ArchivedVaultRecord", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L124", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_archivedvaultrecord", + "community": 154, + "community_name": "Beapmessages Services #154", + "norm_label": "archivedvaultrecord" + }, + { + "label": "KeyRotationResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L132", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_keyrotationresult", + "community": 154, + "community_name": "Beapmessages Services #154", + "norm_label": "keyrotationresult" + }, + { + "label": "MigrationResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L144", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_migrationresult", + "community": 154, + "community_name": "Beapmessages Services #154", + "norm_label": "migrationresult" + }, + { + "label": "toBase64Vault()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L155", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_tobase64vault", + "community": 154, + "community_name": "Beapmessages Services #154", + "norm_label": "tobase64vault()" + }, + { + "label": "safeAtobVault()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L162", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_safeatobvault", + "community": 154, + "community_name": "Beapmessages Services #154", + "norm_label": "safeatobvault()" + }, + { + "label": "fromBase64Vault()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L171", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_frombase64vault", + "community": 154, + "community_name": "Beapmessages Services #154", + "norm_label": "frombase64vault()" + }, + { + "label": "getRandomBytesVault()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L178", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_getrandombytesvault", + "community": 154, + "community_name": "Beapmessages Services #154", + "norm_label": "getrandombytesvault()" + }, + { + "label": "sha256Vault()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L184", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_sha256vault", + "community": 154, + "community_name": "Beapmessages Services #154", + "norm_label": "sha256vault()" + }, + { + "label": "deriveEncryptionKey()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L202", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_deriveencryptionkey", + "community": 154, + "community_name": "Beapmessages Services #154", + "norm_label": "deriveencryptionkey()" + }, + { + "label": "getOrCreateFallbackIKM()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L232", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_getorcreatefallbackikm", + "community": 154, + "community_name": "Beapmessages Services #154", + "norm_label": "getorcreatefallbackikm()" + }, + { + "label": "encryptKeypair()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L261", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_encryptkeypair", + "community": 154, + "community_name": "Beapmessages Services #154", + "norm_label": "encryptkeypair()" + }, + { + "label": "decryptKeypair()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L280", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_decryptkeypair", + "community": 154, + "community_name": "Beapmessages Services #154", + "norm_label": "decryptkeypair()" + }, + { + "label": "readVaultRecord()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L300", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_readvaultrecord", + "community": 154, + "community_name": "Beapmessages Services #154", + "norm_label": "readvaultrecord()" + }, + { + "label": "writeVaultRecord()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L313", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_writevaultrecord", + "community": 154, + "community_name": "Beapmessages Services #154", + "norm_label": "writevaultrecord()" + }, + { + "label": "readArchive()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L321", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_readarchive", + "community": 154, + "community_name": "Beapmessages Services #154", + "norm_label": "readarchive()" + }, + { + "label": "writeArchive()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L334", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_writearchive", + "community": 154, + "community_name": "Beapmessages Services #154", + "norm_label": "writearchive()" + }, + { + "label": "generateRawEd25519()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L348", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_generaterawed25519", + "community": 154, + "community_name": "Beapmessages Services #154", + "norm_label": "generaterawed25519()" + }, + { + "label": "signingKeyExists()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L386", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_signingkeyexists", + "community": 154, + "community_name": "Beapmessages Services #154", + "norm_label": "signingkeyexists()" + }, + { + "label": "storeSigningKeyPair()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L397", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_storesigningkeypair", + "community": 154, + "community_name": "Beapmessages Services #154", + "norm_label": "storesigningkeypair()" + }, + { + "label": "loadSigningKeyPair()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L421", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_loadsigningkeypair", + "community": 154, + "community_name": "Beapmessages Services #154", + "norm_label": "loadsigningkeypair()" + }, + { + "label": "getOrCreateSigningKeyPair()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L444", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_getorcreatesigningkeypair", + "community": 154, + "community_name": "Beapmessages Services #154", + "norm_label": "getorcreatesigningkeypair()" + }, + { + "label": "touchSigningKeyLastUsed()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L463", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_touchsigningkeylastused", + "community": 154, + "community_name": "Beapmessages Services #154", + "norm_label": "touchsigningkeylastused()" + }, + { + "label": "rotateSigningKeyPair()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L488", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_rotatesigningkeypair", + "community": 154, + "community_name": "Beapmessages Services #154", + "norm_label": "rotatesigningkeypair()" + }, + { + "label": "listArchivedSigningKeyIds()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L531", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_listarchivedsigningkeyids", + "community": 154, + "community_name": "Beapmessages Services #154", + "norm_label": "listarchivedsigningkeyids()" + }, + { + "label": "loadArchivedSigningKeyPair()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L545", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_loadarchivedsigningkeypair", + "community": 154, + "community_name": "Beapmessages Services #154", + "norm_label": "loadarchivedsigningkeypair()" + }, + { + "label": "deleteSigningKeyVault()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L569", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_deletesigningkeyvault", + "community": 154, + "community_name": "Beapmessages Services #154", + "norm_label": "deletesigningkeyvault()" + }, + { + "label": "migrateEphemeralSigningKey()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L597", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_migrateephemeralsigningkey", + "community": 154, + "community_name": "Beapmessages Services #154", + "norm_label": "migrateephemeralsigningkey()" + }, + { + "label": "NOTE: This module is intentionally self-contained (no imports from beapCrypto)", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L52", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_rationale_52", + "community": 154, + "community_name": "Beapmessages Services #154", + "norm_label": "note: this module is intentionally self-contained (no imports from beapcrypto)" + }, + { + "label": "RFC-5869", + "file_type": "concept", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L214", + "_origin": "ast", + "id": "docref_rfc_5869", + "community": 154, + "community_name": "Beapmessages Services #154", + "norm_label": "rfc-5869" + }, + { + "label": "stripAgentBoxesFromGrids.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/stripAgentBoxesFromGrids.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_stripagentboxesfromgrids", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "stripagentboxesfromgrids.ts" + }, + { + "label": "stripAgentBoxesFromGrids()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/stripAgentBoxesFromGrids.ts", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_stripagentboxesfromgrids_stripagentboxesfromgrids", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "stripagentboxesfromgrids()" + }, + { + "label": "stripFromSession()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/stripAgentBoxesFromGrids.ts", + "source_location": "L42", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_stripagentboxesfromgrids_stripfromsession", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "stripfromsession()" + }, + { + "label": "urlNormalizer.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/urlNormalizer.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_urlnormalizer", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "urlnormalizer.ts" + }, + { + "label": "ExtractedUrl", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/urlNormalizer.ts", + "source_location": "L15", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_urlnormalizer_extractedurl", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "extractedurl" + }, + { + "label": "UrlNormalizationResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/urlNormalizer.ts", + "source_location": "L31", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_urlnormalizer_urlnormalizationresult", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "urlnormalizationresult" + }, + { + "label": "UrlNormalizationVerification", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/urlNormalizer.ts", + "source_location": "L41", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_urlnormalizer_urlnormalizationverification", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "urlnormalizationverification" + }, + { + "label": "TRACKING_PARAMS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/urlNormalizer.ts", + "source_location": "L58", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_urlnormalizer_tracking_params", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "tracking_params" + }, + { + "label": "safeDecodeUrl()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/urlNormalizer.ts", + "source_location": "L121", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_urlnormalizer_safedecodeurl", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "safedecodeurl()" + }, + { + "label": "normalizeSingleUrl()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/urlNormalizer.ts", + "source_location": "L140", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_urlnormalizer_normalizesingleurl", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "normalizesingleurl()" + }, + { + "label": "normalizeUrls()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/urlNormalizer.ts", + "source_location": "L227", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_urlnormalizer_normalizeurls", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "normalizeurls()" + }, + { + "label": "verifyUrlNormalization()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/urlNormalizer.ts", + "source_location": "L311", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_urlnormalizer_verifyurlnormalization", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "verifyurlnormalization()" + }, + { + "label": "x25519KeyAgreement.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/x25519KeyAgreement.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "x25519keyagreement.ts" + }, + { + "label": "X25519KeyPair", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/x25519KeyAgreement.ts", + "source_location": "L26", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_x25519keypair", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "x25519keypair" + }, + { + "label": "X25519KeyAgreementResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/x25519KeyAgreement.ts", + "source_location": "L37", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_x25519keyagreementresult", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "x25519keyagreementresult" + }, + { + "label": "DeviceKeyNotFoundError", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/x25519KeyAgreement.ts", + "source_location": "L48", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_devicekeynotfounderror", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "devicekeynotfounderror" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/x25519KeyAgreement.ts", + "source_location": "L50", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_devicekeynotfounderror_constructor", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": ".constructor()" + }, + { + "label": "sendBeapRpc()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/x25519KeyAgreement.ts", + "source_location": "L66", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_sendbeaprpc", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "sendbeaprpc()" + }, + { + "label": "getDeviceX25519PublicKey()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/x25519KeyAgreement.ts", + "source_location": "L108", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_getdevicex25519publickey", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "getdevicex25519publickey()" + }, + { + "label": "BEAP_X25519_DEVICE_KEYPAIR_STORAGE_KEY", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/x25519KeyAgreement.ts", + "source_location": "L126", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_beap_x25519_device_keypair_storage_key", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "beap_x25519_device_keypair_storage_key" + }, + { + "label": "getPersistedDeviceX25519PublicKeyB64FromChromeStorage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/x25519KeyAgreement.ts", + "source_location": "L133", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_getpersisteddevicex25519publickeyb64fromchromestorage", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "getpersisteddevicex25519publickeyb64fromchromestorage()" + }, + { + "label": "deriveSharedSecretX25519()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/x25519KeyAgreement.ts", + "source_location": "L161", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_derivesharedsecretx25519", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "derivesharedsecretx25519()" + }, + { + "label": "fromBase64()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/x25519KeyAgreement.ts", + "source_location": "L203", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_frombase64", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "frombase64()" + }, + { + "label": "x25519ECDH()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/x25519KeyAgreement.ts", + "source_location": "L214", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_x25519ecdh", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "x25519ecdh()" + }, + { + "label": "hasValidX25519Key()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/x25519KeyAgreement.ts", + "source_location": "L232", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_hasvalidx25519key", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "hasvalidx25519key()" + }, + { + "label": "validateX25519PublicKey()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/services/x25519KeyAgreement.ts", + "source_location": "L246", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_validatex25519publickey", + "community": 47, + "community_name": "Beapmessages Services Beapbuilder", + "norm_label": "validatex25519publickey()" + }, + { + "label": "sessionImportPayloadResolver.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sessionImportPayloadResolver.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "sessionimportpayloadresolver.ts" + }, + { + "label": "BeapSessionImportResolution", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sessionImportPayloadResolver.ts", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver_beapsessionimportresolution", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "beapsessionimportresolution" + }, + { + "label": "BeapSessionImportResolutionValid", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sessionImportPayloadResolver.ts", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver_beapsessionimportresolutionvalid", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "beapsessionimportresolutionvalid" + }, + { + "label": "BeapSessionImportResolutionInvalid", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sessionImportPayloadResolver.ts", + "source_location": "L59", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver_beapsessionimportresolutioninvalid", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "beapsessionimportresolutioninvalid" + }, + { + "label": "BeapSessionImportResolutionNone", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sessionImportPayloadResolver.ts", + "source_location": "L75", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver_beapsessionimportresolutionnone", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "beapsessionimportresolutionnone" + }, + { + "label": "isLikelySessionJsonAttachment()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sessionImportPayloadResolver.ts", + "source_location": "L85", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver_islikelysessionjsonattachment", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "islikelysessionjsonattachment()" + }, + { + "label": "sessionJsonHasImportableSubstance()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sessionImportPayloadResolver.ts", + "source_location": "L98", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver_sessionjsonhasimportablesubstance", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "sessionjsonhasimportablesubstance()" + }, + { + "label": "parseSemanticJson()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sessionImportPayloadResolver.ts", + "source_location": "L127", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver_parsesemanticjson", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "parsesemanticjson()" + }, + { + "label": "tryAttachment()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sessionImportPayloadResolver.ts", + "source_location": "L137", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver_tryattachment", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "tryattachment()" + }, + { + "label": "resolveBeapSessionImportPayload()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sessionImportPayloadResolver.ts", + "source_location": "L232", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver_resolvebeapsessionimportpayload", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "resolvebeapsessionimportpayload()" + }, + { + "label": "beapSessionImportActionsEnabled()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sessionImportPayloadResolver.ts", + "source_location": "L301", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver_beapsessionimportactionsenabled", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "beapsessionimportactionsenabled()" + }, + { + "label": "beapSessionImportUiHint()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/sessionImportPayloadResolver.ts", + "source_location": "L306", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver_beapsessionimportuihint", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "beapsessionimportuihint()" + }, + { + "label": "beap-messages/types.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/types.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_types", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "beap-messages/types.ts" + }, + { + "label": "BeapFolder", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/types.ts", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_types_beapfolder", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "beapfolder" + }, + { + "label": "BeapDeliveryMethod", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/types.ts", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_types_beapdeliverymethod", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "beapdeliverymethod" + }, + { + "label": "BeapDirection", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/types.ts", + "source_location": "L27", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_types_beapdirection", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "beapdirection" + }, + { + "label": "BeapMessageStatus", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/types.ts", + "source_location": "L32", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_types_beapmessagestatus", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "beapmessagestatus" + }, + { + "label": "BeapAttachment", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/types.ts", + "source_location": "L51", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_types_beapattachment", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "beapattachment" + }, + { + "label": "BeapMessageUI", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/types.ts", + "source_location": "L61", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_types_beapmessageui", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "beapmessageui" + }, + { + "label": "BeapDeliveryStatus", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/types.ts", + "source_location": "L174", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_types_beapdeliverystatus", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "beapdeliverystatus" + }, + { + "label": "DeliveryAttempt", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/types.ts", + "source_location": "L186", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_types_deliveryattempt", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "deliveryattempt" + }, + { + "label": "VerificationStatus", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/types.ts", + "source_location": "L199", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_types_verificationstatus", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "verificationstatus" + }, + { + "label": "RejectionReasonUI", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/types.ts", + "source_location": "L208", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_types_rejectionreasonui", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "rejectionreasonui" + }, + { + "label": "EnvelopeSummaryUI", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/types.ts", + "source_location": "L228", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_types_envelopesummaryui", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "envelopesummaryui" + }, + { + "label": "CapsuleMetadataUI", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/types.ts", + "source_location": "L260", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_types_capsulemetadataui", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "capsulemetadataui" + }, + { + "label": "FolderConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/types.ts", + "source_location": "L284", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_types_folderconfig", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "folderconfig" + }, + { + "label": "FOLDER_CONFIGS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/types.ts", + "source_location": "L294", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_types_folder_configs", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "folder_configs" + }, + { + "label": "STATUS_CONFIG", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/types.ts", + "source_location": "L337", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_types_status_config", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "status_config" + }, + { + "label": "DELIVERY_METHOD_CONFIG", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/types.ts", + "source_location": "L354", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_types_delivery_method_config", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "delivery_method_config" + }, + { + "label": "useBeapInboxStore.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_usebeapinboxstore", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "usebeapinboxstore.ts" + }, + { + "label": "MutationResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L50", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_mutationresult", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "mutationresult" + }, + { + "label": "RefreshMode", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L70", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_refreshmode", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "refreshmode" + }, + { + "label": "BeapInboxState", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L75", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_beapinboxstate", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "beapinboxstate" + }, + { + "label": "sortByTimestampDesc()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L223", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_sortbytimestampdesc", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "sortbytimestampdesc()" + }, + { + "label": "updateMessage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L227", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_updatemessage", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "updatemessage()" + }, + { + "label": "urgencyToScore()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L240", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_urgencytoscore", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "urgencytoscore()" + }, + { + "label": "useBeapInboxStore", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L255", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_usebeapinboxstore", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "usebeapinboxstore" + }, + { + "label": "useInboxView()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L593", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_useinboxview", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "useinboxview()" + }, + { + "label": "useHandshakeMessages()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L596", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_usehandshakemessages", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "usehandshakemessages()" + }, + { + "label": "useBulkViewPage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L599", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_usebulkviewpage", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "usebulkviewpage()" + }, + { + "label": "usePendingDeletionMessages()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L602", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_usependingdeletionmessages", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "usependingdeletionmessages()" + }, + { + "label": "useUrgentMessages()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L605", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_useurgentmessages", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "useurgentmessages()" + }, + { + "label": "useSelectedBeapMessage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L608", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_useselectedbeapmessage", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "useselectedbeapmessage()" + }, + { + "label": "useBeapMessagesStore.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapMessagesStore.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "usebeapmessagesstore.ts" + }, + { + "label": "BeapMessagesState", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapMessagesStore.ts", + "source_location": "L37", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_beapmessagesstate", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "beapmessagesstate" + }, + { + "label": "useBeapMessagesStore", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapMessagesStore.ts", + "source_location": "L158", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_usebeapmessagesstore", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "usebeapmessagesstore" + }, + { + "label": "useInboxMessages()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapMessagesStore.ts", + "source_location": "L429", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_useinboxmessages", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "useinboxmessages()" + }, + { + "label": "useOutboxMessages()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapMessagesStore.ts", + "source_location": "L432", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_useoutboxmessages", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "useoutboxmessages()" + }, + { + "label": "useArchivedMessages()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapMessagesStore.ts", + "source_location": "L435", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_usearchivedmessages", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "usearchivedmessages()" + }, + { + "label": "useRejectedMessages()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapMessagesStore.ts", + "source_location": "L438", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_userejectedmessages", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "userejectedmessages()" + }, + { + "label": "useSelectedMessage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapMessagesStore.ts", + "source_location": "L441", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_useselectedmessage", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "useselectedmessage()" + }, + { + "label": "useSearchQuery()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapMessagesStore.ts", + "source_location": "L444", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_usesearchquery", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "usesearchquery()" + }, + { + "label": "beapBuildValidation.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/validation/beapBuildValidation.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_validation_beapbuildvalidation", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "beapbuildvalidation.ts" + }, + { + "label": "validateBuiltQBeapPackage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/validation/beapBuildValidation.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_validation_beapbuildvalidation_validatebuiltqbeappackage", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "validatebuiltqbeappackage()" + }, + { + "label": "runBuildValidation()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/validation/beapBuildValidation.ts", + "source_location": "L276", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_validation_beapbuildvalidation_runbuildvalidation", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "runbuildvalidation()" + }, + { + "label": "beap-messages/validationState.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/validationState.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_validationstate", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "beap-messages/validationstate.ts" + }, + { + "label": "ValidationState", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/validationState.ts", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_validationstate_validationstate", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "validationstate" + }, + { + "label": "CONFORMANT_VALIDATION_REASONS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/validationState.ts", + "source_location": "L26", + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_validationstate_conformant_validation_reasons", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "conformant_validation_reasons" + }, + { + "label": "getValidationState()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/beap-messages/validationState.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_beap_messages_validationstate_getvalidationstate", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "getvalidationstate()" + }, + { + "label": "ThirdPartyLicensesView.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/components/ThirdPartyLicensesView.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_components_thirdpartylicensesview", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "thirdpartylicensesview.tsx" + }, + { + "label": "ThirdPartyLicensesViewProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/components/ThirdPartyLicensesView.tsx", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_components_thirdpartylicensesview_thirdpartylicensesviewprops", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "thirdpartylicensesviewprops" + }, + { + "label": "ThirdPartyLicensesView()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/components/ThirdPartyLicensesView.tsx", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_components_thirdpartylicensesview_thirdpartylicensesview", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "thirdpartylicensesview()" + }, + { + "label": "ToolLicenseCardProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/components/ThirdPartyLicensesView.tsx", + "source_location": "L220", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_components_thirdpartylicensesview_toollicensecardprops", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "toollicensecardprops" + }, + { + "label": "ToolLicenseCard()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/components/ThirdPartyLicensesView.tsx", + "source_location": "L229", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_components_thirdpartylicensesview_toollicensecard", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "toollicensecard()" + }, + { + "label": "bundled-tools/components/index.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/components/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_components_index", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "bundled-tools/components/index.ts" + }, + { + "label": "bundled-tools/executor.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_executor", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "bundled-tools/executor.ts" + }, + { + "label": "assertToolsReady()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_executor_asserttoolsready", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "asserttoolsready()" + }, + { + "label": "assertToolAvailable()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L41", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_executor_asserttoolavailable", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "asserttoolavailable()" + }, + { + "label": "executeParser()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L64", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_executor_executeparser", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "executeparser()" + }, + { + "label": "canParse()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L108", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_executor_canparse", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "canparse()" + }, + { + "label": "getSupportedParseFormats()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L117", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_executor_getsupportedparseformats", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "getsupportedparseformats()" + }, + { + "label": "executeRasterizer()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L135", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_executor_executerasterizer", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "executerasterizer()" + }, + { + "label": "canRasterize()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L182", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_executor_canrasterize", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "canrasterize()" + }, + { + "label": "parseDocument()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L195", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_executor_parsedocument", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "parsedocument()" + }, + { + "label": "rasterizePage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L223", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_executor_rasterizepage", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "rasterizepage()" + }, + { + "label": "ExecutionLogEntry", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L254", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_executor_executionlogentry", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "executionlogentry" + }, + { + "label": "executionLog", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L266", + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_executor_executionlog", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "executionlog" + }, + { + "label": "logExecution()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L271", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_executor_logexecution", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "logexecution()" + }, + { + "label": "getExecutionLog()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L296", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_executor_getexecutionlog", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "getexecutionlog()" + }, + { + "label": "clearExecutionLog()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L303", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_executor_clearexecutionlog", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "clearexecutionlog()" + }, + { + "label": "IMPORTANT: This is a stub implementation.", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L58", + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_executor_rationale_58", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "important: this is a stub implementation." + }, + { + "label": "IMPORTANT: This is a stub implementation.", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L129", + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_executor_rationale_129", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "important: this is a stub implementation." + }, + { + "label": "bundled-tools/index.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_index", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "bundled-tools/index.ts" + }, + { + "label": "licenses.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/licenses.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_licenses", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "licenses.ts" + }, + { + "label": "APACHE_2_0_TEXT", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/licenses.ts", + "source_location": "L16", + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_licenses_apache_2_0_text", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "apache_2_0_text" + }, + { + "label": "BSD_3_CLAUSE_TEXT", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/licenses.ts", + "source_location": "L138", + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_licenses_bsd_3_clause_text", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "bsd_3_clause_text" + }, + { + "label": "LICENSE_TEMPLATES", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/licenses.ts", + "source_location": "L174", + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_licenses_license_templates", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "license_templates" + }, + { + "label": "APACHE_TIKA_LICENSE", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/licenses.ts", + "source_location": "L204", + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_licenses_apache_tika_license", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "apache_tika_license" + }, + { + "label": "PDFIUM_LICENSE", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/licenses.ts", + "source_location": "L215", + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_licenses_pdfium_license", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "pdfium_license" + }, + { + "label": "BundledToolLicenseEntry", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/licenses.ts", + "source_location": "L227", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_licenses_bundledtoollicenseentry", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "bundledtoollicenseentry" + }, + { + "label": "BUNDLED_TOOL_LICENSES", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/licenses.ts", + "source_location": "L251", + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_licenses_bundled_tool_licenses", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "bundled_tool_licenses" + }, + { + "label": "getLicenseForTool()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/licenses.ts", + "source_location": "L273", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_licenses_getlicensefortool", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "getlicensefortool()" + }, + { + "label": "isPermissiveLicense()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/licenses.ts", + "source_location": "L282", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_licenses_ispermissivelicense", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "ispermissivelicense()" + }, + { + "label": "registry.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_registry", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "registry.ts" + }, + { + "label": "REGISTRY_VERSION", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L33", + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_registry_registry_version", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "registry_version" + }, + { + "label": "THIRD_PARTY_PATH", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L38", + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_registry_third_party_path", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "third_party_path" + }, + { + "label": "APACHE_TIKA_TOOL", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L48", + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_registry_apache_tika_tool", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "apache_tika_tool" + }, + { + "label": "PDFIUM_TOOL", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L66", + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_registry_pdfium_tool", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "pdfium_tool" + }, + { + "label": "currentRegistry", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L88", + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_registry_currentregistry", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "currentregistry" + }, + { + "label": "getToolRegistry()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L105", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_registry_gettoolregistry", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "gettoolregistry()" + }, + { + "label": "getTool()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L112", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_registry_gettool", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "gettool()" + }, + { + "label": "getToolsByCategory()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L119", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_registry_gettoolsbycategory", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "gettoolsbycategory()" + }, + { + "label": "getParser()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L126", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_registry_getparser", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "getparser()" + }, + { + "label": "getRasterizer()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L134", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_registry_getrasterizer", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "getrasterizer()" + }, + { + "label": "isFormatSupported()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L142", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_registry_isformatsupported", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "isformatsupported()" + }, + { + "label": "areToolsReady()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L151", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_registry_aretoolsready", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "aretoolsready()" + }, + { + "label": "registerTool()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L167", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_registry_registertool", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "registertool()" + }, + { + "label": "verifyAllTools()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L199", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_registry_verifyalltools", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "verifyalltools()" + }, + { + "label": "getToolDiagnostic()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L240", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_registry_gettooldiagnostic", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "gettooldiagnostic()" + }, + { + "label": "generateDiagnosticReport()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L258", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_registry_generatediagnosticreport", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "generatediagnosticreport()" + }, + { + "label": "exportToolInfo()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L280", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_registry_exporttoolinfo", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "exporttoolinfo()" + }, + { + "label": "persistRegistry()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L307", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_registry_persistregistry", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "persistregistry()" + }, + { + "label": "loadRegistry()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L322", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_registry_loadregistry", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "loadregistry()" + }, + { + "label": "resetRegistry()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L343", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_registry_resetregistry", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "resetregistry()" + }, + { + "label": "bundled-tools/types.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/types.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_types", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "bundled-tools/types.ts" + }, + { + "label": "ToolCategory", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/types.ts", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_types_toolcategory", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "toolcategory" + }, + { + "label": "ToolStatus", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/types.ts", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_types_toolstatus", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "toolstatus" + }, + { + "label": "LicenseIdentifier", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/types.ts", + "source_location": "L32", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_types_licenseidentifier", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "licenseidentifier" + }, + { + "label": "LicenseInfo", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/types.ts", + "source_location": "L42", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_types_licenseinfo", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "licenseinfo" + }, + { + "label": "SupportedFormat", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/types.ts", + "source_location": "L66", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_types_supportedformat", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "supportedformat" + }, + { + "label": "RasterOutputFormat", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/types.ts", + "source_location": "L78", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_types_rasteroutputformat", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "rasteroutputformat" + }, + { + "label": "BundledTool", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/types.ts", + "source_location": "L83", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_types_bundledtool", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "bundledtool" + }, + { + "label": "ToolRegistry", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/types.ts", + "source_location": "L131", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_types_toolregistry", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "toolregistry" + }, + { + "label": "ParserRequest", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/types.ts", + "source_location": "L152", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_types_parserrequest", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "parserrequest" + }, + { + "label": "ParserResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/types.ts", + "source_location": "L169", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_types_parserresult", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "parserresult" + }, + { + "label": "RasterizerRequest", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/types.ts", + "source_location": "L195", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_types_rasterizerrequest", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "rasterizerrequest" + }, + { + "label": "RasterizerResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/types.ts", + "source_location": "L218", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_types_rasterizerresult", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "rasterizerresult" + }, + { + "label": "ToolDiagnosticInfo", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/types.ts", + "source_location": "L254", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_types_tooldiagnosticinfo", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "tooldiagnosticinfo" + }, + { + "label": "ToolDiagnosticReport", + "file_type": "code", + "source_file": "apps/extension-chromium/src/bundled-tools/types.ts", + "source_location": "L280", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_bundled_tools_types_tooldiagnosticreport", + "community": 70, + "community_name": "Bundledtools", + "norm_label": "tooldiagnosticreport" + }, + { + "label": "BackendConfigLightbox.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_components_backendconfiglightbox", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "backendconfiglightbox.tsx" + }, + { + "label": "RpcData", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_components_backendconfiglightbox_rpcdata", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "rpcdata" + }, + { + "label": "ErrorBoundary", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L33", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_components_backendconfiglightbox_errorboundary", + "community": 449, + "community_name": "Backendconfiglightbox", + "norm_label": "errorboundary" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_components_backendconfiglightbox_errorboundary_constructor", + "community": 449, + "community_name": "Backendconfiglightbox", + "norm_label": ".constructor()" + }, + { + "label": ".getDerivedStateFromError()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_components_backendconfiglightbox_errorboundary_getderivedstatefromerror", + "community": 449, + "community_name": "Backendconfiglightbox", + "norm_label": ".getderivedstatefromerror()" + }, + { + "label": ".componentDidCatch()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L41", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_components_backendconfiglightbox_errorboundary_componentdidcatch", + "community": 449, + "community_name": "Backendconfiglightbox", + "norm_label": ".componentdidcatch()" + }, + { + "label": ".render()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_components_backendconfiglightbox_errorboundary_render", + "community": 449, + "community_name": "Backendconfiglightbox", + "norm_label": ".render()" + }, + { + "label": "PostgresConnectionConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L52", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_components_backendconfiglightbox_postgresconnectionconfig", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "postgresconnectionconfig" + }, + { + "label": "BackendConfigLightboxProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L67", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_components_backendconfiglightbox_backendconfiglightboxprops", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "backendconfiglightboxprops" + }, + { + "label": "BackendConfigLightbox()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L78", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_components_backendconfiglightbox_backendconfiglightbox", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "backendconfiglightbox()" + }, + { + "label": "IMPORTANT: Custom protocol launch (opengiraffe://start, wrcode://start) has\u2026", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L165", + "_origin": "ast", + "id": "apps_extension_chromium_src_components_backendconfiglightbox_rationale_165", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "important: custom protocol launch (opengiraffe://start, wrcode://start) has..." + }, + { + "label": "NOTE: Protocol handler launch removed - it caused Windows \"Open Electron?\"\u2026", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L171", + "_origin": "ast", + "id": "apps_extension_chromium_src_components_backendconfiglightbox_rationale_171", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "note: protocol handler launch removed - it caused windows \"open electron?\"..." + }, + { + "label": "BackendSwitcher.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/BackendSwitcher.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_components_backendswitcher", + "community": 129, + "community_name": "Llmsettings", + "norm_label": "backendswitcher.tsx" + }, + { + "label": "PostgresConnectionConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/BackendSwitcher.tsx", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_components_backendswitcher_postgresconnectionconfig", + "community": 129, + "community_name": "Llmsettings", + "norm_label": "postgresconnectionconfig" + }, + { + "label": "BackendSwitcherProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/BackendSwitcher.tsx", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_components_backendswitcher_backendswitcherprops", + "community": 129, + "community_name": "Llmsettings", + "norm_label": "backendswitcherprops" + }, + { + "label": "BackendSwitcher()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/BackendSwitcher.tsx", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_components_backendswitcher_backendswitcher", + "community": 129, + "community_name": "Llmsettings", + "norm_label": "backendswitcher()" + }, + { + "label": "BackendSwitcherInline.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/BackendSwitcherInline.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_components_backendswitcherinline", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "backendswitcherinline.tsx" + }, + { + "label": "BackendSwitcherInlineProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/BackendSwitcherInline.tsx", + "source_location": "L16", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_components_backendswitcherinline_backendswitcherinlineprops", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "backendswitcherinlineprops" + }, + { + "label": "TextSize", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/BackendSwitcherInline.tsx", + "source_location": "L21", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_components_backendswitcherinline_textsize", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "textsize" + }, + { + "label": "TEXT_SCALES", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/BackendSwitcherInline.tsx", + "source_location": "L23", + "_origin": "ast", + "id": "apps_extension_chromium_src_components_backendswitcherinline_text_scales", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "text_scales" + }, + { + "label": "AuthStatusResponse", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/BackendSwitcherInline.tsx", + "source_location": "L30", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_components_backendswitcherinline_authstatusresponse", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "authstatusresponse" + }, + { + "label": "ChevronDownIcon()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/BackendSwitcherInline.tsx", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_components_backendswitcherinline_chevrondownicon", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "chevrondownicon()" + }, + { + "label": "LogoutIcon()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/BackendSwitcherInline.tsx", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_components_backendswitcherinline_logouticon", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "logouticon()" + }, + { + "label": "UserIcon()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/BackendSwitcherInline.tsx", + "source_location": "L74", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_components_backendswitcherinline_usericon", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "usericon()" + }, + { + "label": "BackendSwitcherInline()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/BackendSwitcherInline.tsx", + "source_location": "L90", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_components_backendswitcherinline_backendswitcherinline", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "backendswitcherinline()" + }, + { + "label": "BackendSwitcherNew.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/BackendSwitcherNew.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_components_backendswitchernew", + "community": 489, + "community_name": "Backendswitchernew", + "norm_label": "backendswitchernew.tsx" + }, + { + "label": "PostgresConnectionConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/BackendSwitcherNew.tsx", + "source_location": "L3", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_components_backendswitchernew_postgresconnectionconfig", + "community": 489, + "community_name": "Backendswitchernew", + "norm_label": "postgresconnectionconfig" + }, + { + "label": "BackendSwitcherProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/BackendSwitcherNew.tsx", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_components_backendswitchernew_backendswitcherprops", + "community": 489, + "community_name": "Backendswitchernew", + "norm_label": "backendswitcherprops" + }, + { + "label": "BackendSwitcher()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/BackendSwitcherNew.tsx", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_components_backendswitchernew_backendswitcher", + "community": 489, + "community_name": "Backendswitchernew", + "norm_label": "backendswitcher()" + }, + { + "label": "DevTools.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/DevTools.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_components_devtools", + "community": 530, + "community_name": "Devtools", + "norm_label": "devtools.tsx" + }, + { + "label": "DevToolsProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/DevTools.tsx", + "source_location": "L3", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_components_devtools_devtoolsprops", + "community": 530, + "community_name": "Devtools", + "norm_label": "devtoolsprops" + }, + { + "label": "DevTools()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/DevTools.tsx", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_components_devtools_devtools", + "community": 530, + "community_name": "Devtools", + "norm_label": "devtools()" + }, + { + "label": "HardwareWarningDialog.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/HardwareWarningDialog.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_components_hardwarewarningdialog", + "community": 531, + "community_name": "Hardwarewarningdialog", + "norm_label": "hardwarewarningdialog.tsx" + }, + { + "label": "HardwareWarningProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/HardwareWarningDialog.tsx", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_components_hardwarewarningdialog_hardwarewarningprops", + "community": 531, + "community_name": "Hardwarewarningdialog", + "norm_label": "hardwarewarningprops" + }, + { + "label": "HardwareWarningDialog()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/HardwareWarningDialog.tsx", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_components_hardwarewarningdialog_hardwarewarningdialog", + "community": 531, + "community_name": "Hardwarewarningdialog", + "norm_label": "hardwarewarningdialog()" + }, + { + "label": "ImageEngineSettings.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/ImageEngineSettings.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_components_imageenginesettings", + "community": 129, + "community_name": "Llmsettings", + "norm_label": "imageenginesettings.tsx" + }, + { + "label": "ImageEngineSettingsProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/ImageEngineSettings.tsx", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_components_imageenginesettings_imageenginesettingsprops", + "community": 129, + "community_name": "Llmsettings", + "norm_label": "imageenginesettingsprops" + }, + { + "label": "ImageEngineSettings()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/ImageEngineSettings.tsx", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_components_imageenginesettings_imageenginesettings", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "imageenginesettings()" + }, + { + "label": "NOTE: Local image engines (ComfyUI, Automatic1111, etc.) are intentionally NOT\u2026", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/components/ImageEngineSettings.tsx", + "source_location": "L5", + "_origin": "ast", + "id": "apps_extension_chromium_src_components_imageenginesettings_rationale_5", + "community": 129, + "community_name": "Llmsettings", + "norm_label": "note: local image engines (comfyui, automatic1111, etc.) are intentionally not..." + }, + { + "label": "LlmSettings.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_components_llmsettings", + "community": 129, + "community_name": "Llmsettings", + "norm_label": "llmsettings.tsx" + }, + { + "label": "HardwareInfo", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_components_llmsettings_hardwareinfo", + "community": 129, + "community_name": "Llmsettings", + "norm_label": "hardwareinfo" + }, + { + "label": "InstalledModel", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L27", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_components_llmsettings_installedmodel", + "community": 129, + "community_name": "Llmsettings", + "norm_label": "installedmodel" + }, + { + "label": "LocalLlmStatus", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L35", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_components_llmsettings_localllmstatus", + "community": 129, + "community_name": "Llmsettings", + "norm_label": "localllmstatus" + }, + { + "label": "LlmModelConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L45", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_components_llmsettings_llmmodelconfig", + "community": 129, + "community_name": "Llmsettings", + "norm_label": "llmmodelconfig" + }, + { + "label": "PerformanceEstimate", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L57", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_components_llmsettings_performanceestimate", + "community": 129, + "community_name": "Llmsettings", + "norm_label": "performanceestimate" + }, + { + "label": "LlmSettingsProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L65", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_components_llmsettings_llmsettingsprops", + "community": 129, + "community_name": "Llmsettings", + "norm_label": "llmsettingsprops" + }, + { + "label": "LlamaServerBinaryStatus", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L71", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_components_llmsettings_llamaserverbinarystatus", + "community": 129, + "community_name": "Llmsettings", + "norm_label": "llamaserverbinarystatus" + }, + { + "label": "LlamaServerBinaryInstallProgress", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L78", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_components_llmsettings_llamaserverbinaryinstallprogress", + "community": 129, + "community_name": "Llmsettings", + "norm_label": "llamaserverbinaryinstallprogress" + }, + { + "label": "OrchestratorModeConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L90", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_components_llmsettings_orchestratormodeconfig", + "community": 129, + "community_name": "Llmsettings", + "norm_label": "orchestratormodeconfig" + }, + { + "label": "LlmServerConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L95", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_components_llmsettings_llmserverconfig", + "community": 129, + "community_name": "Llmsettings", + "norm_label": "llmserverconfig" + }, + { + "label": "LlmServerConfigView", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L102", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_components_llmsettings_llmserverconfigview", + "community": 129, + "community_name": "Llmsettings", + "norm_label": "llmserverconfigview" + }, + { + "label": "rpc()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L127", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_components_llmsettings_rpc", + "community": 129, + "community_name": "Llmsettings", + "norm_label": "rpc()" + }, + { + "label": "unwrapLlmEnvelope()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L137", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_components_llmsettings_unwrapllmenvelope", + "community": 129, + "community_name": "Llmsettings", + "norm_label": "unwrapllmenvelope()" + }, + { + "label": "isHardwareEntity()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L145", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_components_llmsettings_ishardwareentity", + "community": 129, + "community_name": "Llmsettings", + "norm_label": "ishardwareentity()" + }, + { + "label": "isLocalLlmStatusEntity()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L149", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_components_llmsettings_islocalllmstatusentity", + "community": 129, + "community_name": "Llmsettings", + "norm_label": "islocalllmstatusentity()" + }, + { + "label": "isCatalogEntity()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L159", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_components_llmsettings_iscatalogentity", + "community": 129, + "community_name": "Llmsettings", + "norm_label": "iscatalogentity()" + }, + { + "label": "isBinaryStatusEntity()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L163", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_components_llmsettings_isbinarystatusentity", + "community": 129, + "community_name": "Llmsettings", + "norm_label": "isbinarystatusentity()" + }, + { + "label": "isServerConfigViewEntity()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L167", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_components_llmsettings_isserverconfigviewentity", + "community": 129, + "community_name": "Llmsettings", + "norm_label": "isserverconfigviewentity()" + }, + { + "label": "FALLBACK_CATALOG", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L178", + "_origin": "ast", + "id": "apps_extension_chromium_src_components_llmsettings_fallback_catalog", + "community": 129, + "community_name": "Llmsettings", + "norm_label": "fallback_catalog" + }, + { + "label": "LlmSettings()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L214", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_components_llmsettings_llmsettings", + "community": 129, + "community_name": "Llmsettings", + "norm_label": "llmsettings()" + }, + { + "label": "P2pOutboundDebugModal.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/P2pOutboundDebugModal.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_components_p2poutbounddebugmodal", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "p2poutbounddebugmodal.tsx" + }, + { + "label": "P2pDebugModalPayload", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/P2pOutboundDebugModal.tsx", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_components_p2poutbounddebugmodal_p2pdebugmodalpayload", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "p2pdebugmodalpayload" + }, + { + "label": "P2pOutboundDebugModal()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/P2pOutboundDebugModal.tsx", + "source_location": "L6", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_components_p2poutbounddebugmodal_p2poutbounddebugmodal", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "p2poutbounddebugmodal()" + }, + { + "label": "backend-config-lightbox-init.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/backend-config-lightbox-init.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_components_backend_config_lightbox_init", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "backend-config-lightbox-init.tsx" + }, + { + "label": "openBackendConfigLightbox()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/backend-config-lightbox-init.tsx", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_components_backend_config_lightbox_init_openbackendconfiglightbox", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "openbackendconfiglightbox()" + }, + { + "label": "closeBackendConfigLightbox()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/components/backend-config-lightbox-init.tsx", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_components_backend_config_lightbox_init_closebackendconfiglightbox", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "closebackendconfiglightbox()" + }, + { + "label": "providers.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/constants/providers.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_constants_providers", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "providers.ts" + }, + { + "label": "PROVIDER_IDS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/constants/providers.ts", + "source_location": "L11", + "_origin": "ast", + "id": "apps_extension_chromium_src_constants_providers_provider_ids", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "provider_ids" + }, + { + "label": "ProviderId", + "file_type": "code", + "source_file": "apps/extension-chromium/src/constants/providers.ts", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_constants_providers_providerid", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "providerid" + }, + { + "label": "PROVIDER_LABELS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/constants/providers.ts", + "source_location": "L22", + "_origin": "ast", + "id": "apps_extension_chromium_src_constants_providers_provider_labels", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "provider_labels" + }, + { + "label": "LABEL_TO_ID", + "file_type": "code", + "source_file": "apps/extension-chromium/src/constants/providers.ts", + "source_location": "L31", + "_origin": "ast", + "id": "apps_extension_chromium_src_constants_providers_label_to_id", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "label_to_id" + }, + { + "label": "toProviderId()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/constants/providers.ts", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_constants_providers_toproviderid", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "toproviderid()" + }, + { + "label": "toProviderLabel()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/constants/providers.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_constants_providers_toproviderlabel", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "toproviderlabel()" + }, + { + "label": "isLocalProvider()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/constants/providers.ts", + "source_location": "L57", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_constants_providers_islocalprovider", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "islocalprovider()" + }, + { + "label": "isCloudProvider()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/constants/providers.ts", + "source_location": "L62", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_constants_providers_iscloudprovider", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "iscloudprovider()" + }, + { + "label": "CLOUD_DEFAULT_MODELS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/constants/providers.ts", + "source_location": "L68", + "_origin": "ast", + "id": "apps_extension_chromium_src_constants_providers_cloud_default_models", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "cloud_default_models" + }, + { + "label": "PROVIDER_API_KEY_NAMES", + "file_type": "code", + "source_file": "apps/extension-chromium/src/constants/providers.ts", + "source_location": "L76", + "_origin": "ast", + "id": "apps_extension_chromium_src_constants_providers_provider_api_key_names", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "provider_api_key_names" + }, + { + "label": "PROVIDER_MAP_FOR_GRID_JS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/constants/providers.ts", + "source_location": "L87", + "_origin": "ast", + "id": "apps_extension_chromium_src_constants_providers_provider_map_for_grid_js", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "provider_map_for_grid_js" + }, + { + "label": "content-script-clean.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content-script-clean.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_content_script_clean", + "community": 605, + "community_name": "Contentscriptclean", + "norm_label": "content-script-clean.tsx" + }, + { + "label": "content-script-globals.d.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content-script-globals.d.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_content_script_globals_d", + "community": 571, + "community_name": "Contentscriptglobalsd", + "norm_label": "content-script-globals.d.ts" + }, + { + "label": "Window", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content-script-globals.d.ts", + "source_location": "L45", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_script_globals_d_window", + "community": 571, + "community_name": "Contentscriptglobalsd", + "norm_label": "window" + }, + { + "label": "content-script.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_content_script", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "content-script.tsx" + }, + { + "label": "csTheme()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L51", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_script_cstheme", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "cstheme()" + }, + { + "label": "csAgentFormUi()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L146", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_script_csagentformui", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "csagentformui()" + }, + { + "label": "DedicatedRole", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L197", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_script_dedicatedrole", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "dedicatedrole" + }, + { + "label": "OptimandoTabState", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L199", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_script_optimandotabstate", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "optimandotabstate" + }, + { + "label": "readOptimandoState()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L201", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_script_readoptimandostate", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "readoptimandostate()" + }, + { + "label": "writeOptimandoState()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L223", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_script_writeoptimandostate", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "writeoptimandostate()" + }, + { + "label": "bootState", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L253", + "_origin": "ast", + "id": "apps_extension_chromium_src_content_script_bootstate", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "bootstate" + }, + { + "label": "globalLightboxFunctions", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L267", + "_origin": "ast", + "id": "apps_extension_chromium_src_content_script_globallightboxfunctions", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "globallightboxfunctions" + }, + { + "label": "testExtensionConnection()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L338", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_script_testextensionconnection", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "testextensionconnection()" + }, + { + "label": "connectionCheckInterval", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L349", + "_origin": "ast", + "id": "apps_extension_chromium_src_content_script_connectioncheckinterval", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "connectioncheckinterval" + }, + { + "label": "savedState", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L369", + "_origin": "ast", + "id": "apps_extension_chromium_src_content_script_savedstate", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "savedstate" + }, + { + "label": "showTriggerPromptInChat()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L1575", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_script_showtriggerpromptinchat", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "showtriggerpromptinchat()" + }, + { + "label": "deactivateExtension()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L2236", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_script_deactivateextension", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "deactivateextension()" + }, + { + "label": "safeAppendToBody()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L2245", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_script_safeappendtobody", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "safeappendtobody()" + }, + { + "label": "getStorageWrapper()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L2282", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_script_getstoragewrapper", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "getstoragewrapper()" + }, + { + "label": "storageGet()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L2290", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_script_storageget", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "storageget()" + }, + { + "label": "storageSet()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L2295", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_script_storageset", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "storageset()" + }, + { + "label": "storageRemove()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L2300", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_script_storageremove", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "storageremove()" + }, + { + "label": "getSessionDisplayLabel()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L2306", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_script_getsessiondisplaylabel", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "getsessiondisplaylabel()" + }, + { + "label": "initializeExtension()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L2316", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_script_initializeextension", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "initializeextension()" + }, + { + "label": "checkForElectronGridConfig()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L44850", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_script_checkforelectrongridconfig", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "checkforelectrongridconfig()" + }, + { + "label": "handleElectronGridSave()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L44975", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_script_handleelectrongridsave", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "handleelectrongridsave()" + }, + { + "label": "IMPORTANT: Skip autofill on the extension's own pages (sidepanel, popup,", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L30", + "_origin": "ast", + "id": "apps_extension_chromium_src_content_script_rationale_30", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "important: skip autofill on the extension's own pages (sidepanel, popup," + }, + { + "label": "IMPORTANT: Custom protocol launch (wrcode://start, opengiraffe://start) has\u2026", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L1533", + "_origin": "ast", + "id": "apps_extension_chromium_src_content_script_rationale_1533", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "important: custom protocol launch (wrcode://start, opengiraffe://start) has..." + }, + { + "label": "WHY: When the protocol handler is not correctly registered in Windows, the\u2026", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L1536", + "_origin": "ast", + "id": "apps_extension_chromium_src_content_script_rationale_1536", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "why: when the protocol handler is not correctly registered in windows, the..." + }, + { + "label": "NOTE: We no longer convert agentBoxes to agents here because agent shells", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L3632", + "_origin": "ast", + "id": "apps_extension_chromium_src_content_script_rationale_3632", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "note: we no longer convert agentboxes to agents here because agent shells" + }, + { + "label": "NOTE: SQLite sync is NOT done here automatically", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L4466", + "_origin": "ast", + "id": "apps_extension_chromium_src_content_script_rationale_4466", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "note: sqlite sync is not done here automatically" + }, + { + "label": "NOTE: URL-based localStorage is NO LONGER used for agent boxes", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L4976", + "_origin": "ast", + "id": "apps_extension_chromium_src_content_script_rationale_4976", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "note: url-based localstorage is no longer used for agent boxes" + }, + { + "label": "IMPORTANT: Use consistent ID#tagValue format to match trigger creation and\u2026", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L18234", + "_origin": "ast", + "id": "apps_extension_chromium_src_content_script_rationale_18234", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "important: use consistent id#tagvalue format to match trigger creation and..." + }, + { + "label": "IMPORTANT: Set parserTrigger first, then wait for DOM to update", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L20413", + "_origin": "ast", + "id": "apps_extension_chromium_src_content_script_rationale_20413", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "important: set parsertrigger first, then wait for dom to update" + }, + { + "label": "NOTE: Display grid boxes are now stored directly in session.agentBoxes", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L39212", + "_origin": "ast", + "id": "apps_extension_chromium_src_content_script_rationale_39212", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "note: display grid boxes are now stored directly in session.agentboxes" + }, + { + "label": "TODO: Collect conversation history from storage", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L41202", + "_origin": "ast", + "id": "apps_extension_chromium_src_content_script_rationale_41202", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "todo: collect conversation history from storage" + }, + { + "label": "TODO: Collect cached responses", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L41205", + "_origin": "ast", + "id": "apps_extension_chromium_src_content_script_rationale_41205", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "todo: collect cached responses" + }, + { + "label": "TODO: Collect documents from storage", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L41244", + "_origin": "ast", + "id": "apps_extension_chromium_src_content_script_rationale_41244", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "todo: collect documents from storage" + }, + { + "label": "TODO: Collect embeddings", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L41247", + "_origin": "ast", + "id": "apps_extension_chromium_src_content_script_rationale_41247", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "todo: collect embeddings" + }, + { + "label": "TODO: Restore conversation history", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L42159", + "_origin": "ast", + "id": "apps_extension_chromium_src_content_script_rationale_42159", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "todo: restore conversation history" + }, + { + "label": "TODO: Restore cached responses", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L42160", + "_origin": "ast", + "id": "apps_extension_chromium_src_content_script_rationale_42160", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "todo: restore cached responses" + }, + { + "label": "TODO: Restore documents", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L42181", + "_origin": "ast", + "id": "apps_extension_chromium_src_content_script_rationale_42181", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "todo: restore documents" + }, + { + "label": "TODO: Restore embeddings", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L42182", + "_origin": "ast", + "id": "apps_extension_chromium_src_content_script_rationale_42182", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "todo: restore embeddings" + }, + { + "label": "content/index.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_content_index", + "community": 108, + "community_name": "Content UI", + "norm_label": "content/index.ts" + }, + { + "label": "DEFAULT_OPTIONS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/index.ts", + "source_location": "L11", + "_origin": "ast", + "id": "apps_extension_chromium_src_content_index_default_options", + "community": 108, + "community_name": "Content UI", + "norm_label": "default_options" + }, + { + "label": "initializeOverlay()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/index.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_index_initializeoverlay", + "community": 108, + "community_name": "Content UI", + "norm_label": "initializeoverlay()" + }, + { + "label": "shutdownOverlay()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/index.ts", + "source_location": "L52", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_index_shutdownoverlay", + "community": 108, + "community_name": "Content UI", + "norm_label": "shutdownoverlay()" + }, + { + "label": "bootstrap()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/index.ts", + "source_location": "L66", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_index_bootstrap", + "community": 108, + "community_name": "Content UI", + "norm_label": "bootstrap()" + }, + { + "label": "setupLifecycleHandlers()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/index.ts", + "source_location": "L82", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_index_setuplifecyclehandlers", + "community": 108, + "community_name": "Content UI", + "norm_label": "setuplifecyclehandlers()" + }, + { + "label": "getSiteSpecificOptions()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/index.ts", + "source_location": "L125", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_index_getsitespecificoptions", + "community": 108, + "community_name": "Content UI", + "norm_label": "getsitespecificoptions()" + }, + { + "label": "mountFrameOverlay()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/index.ts", + "source_location": "L180", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_index_mountframeoverlay", + "community": 108, + "community_name": "Content UI", + "norm_label": "mountframeoverlay()" + }, + { + "label": "unmountFrameOverlay()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/index.ts", + "source_location": "L190", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_index_unmountframeoverlay", + "community": 108, + "community_name": "Content UI", + "norm_label": "unmountframeoverlay()" + }, + { + "label": "updateFrameOverlay()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/index.ts", + "source_location": "L194", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_index_updateframeoverlay", + "community": 108, + "community_name": "Content UI", + "norm_label": "updateframeoverlay()" + }, + { + "label": "getFrameOverlay()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/index.ts", + "source_location": "L202", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_index_getframeoverlay", + "community": 108, + "community_name": "Content UI", + "norm_label": "getframeoverlay()" + }, + { + "label": "setupMessageHandlers()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/index.ts", + "source_location": "L207", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_index_setupmessagehandlers", + "community": 108, + "community_name": "Content UI", + "norm_label": "setupmessagehandlers()" + }, + { + "label": "setupDebugUtilities()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/index.ts", + "source_location": "L246", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_index_setupdebugutilities", + "community": 108, + "community_name": "Content UI", + "norm_label": "setupdebugutilities()" + }, + { + "label": "safeInit()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/index.ts", + "source_location": "L289", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_index_safeinit", + "community": 108, + "community_name": "Content UI", + "norm_label": "safeinit()" + }, + { + "label": "content/overlay.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/overlay.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_content_overlay", + "community": 338, + "community_name": "Content", + "norm_label": "content/overlay.ts" + }, + { + "label": "Layout", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/overlay.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_overlay_layout", + "community": 338, + "community_name": "Content", + "norm_label": "layout" + }, + { + "label": "DEFAULT_LAYOUT", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/overlay.ts", + "source_location": "L5", + "_origin": "ast", + "id": "apps_extension_chromium_src_content_overlay_default_layout", + "community": 338, + "community_name": "Content", + "norm_label": "default_layout" + }, + { + "label": "STORAGE_KEY_LAYOUT()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/overlay.ts", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_overlay_storage_key_layout", + "community": 338, + "community_name": "Content", + "norm_label": "storage_key_layout()" + }, + { + "label": "Window", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/overlay.ts", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_overlay_window", + "community": 338, + "community_name": "Content", + "norm_label": "window" + }, + { + "label": "readLayout()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/overlay.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_overlay_readlayout", + "community": 338, + "community_name": "Content", + "norm_label": "readlayout()" + }, + { + "label": "saveLayout()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/overlay.ts", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_overlay_savelayout", + "community": 338, + "community_name": "Content", + "norm_label": "savelayout()" + }, + { + "label": "isDisabled()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/overlay.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_overlay_isdisabled", + "community": 338, + "community_name": "Content", + "norm_label": "isdisabled()" + }, + { + "label": "toggleDisabled()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/overlay.ts", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_overlay_toggledisabled", + "community": 338, + "community_name": "Content", + "norm_label": "toggledisabled()" + }, + { + "label": "makeStyle()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/overlay.ts", + "source_location": "L66", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_overlay_makestyle", + "community": 338, + "community_name": "Content", + "norm_label": "makestyle()" + }, + { + "label": "mountOverlay()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/overlay.ts", + "source_location": "L72", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_overlay_mountoverlay", + "community": 338, + "community_name": "Content", + "norm_label": "mountoverlay()" + }, + { + "label": "bootstrap()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/overlay.ts", + "source_location": "L214", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_overlay_bootstrap", + "community": 338, + "community_name": "Content", + "norm_label": "bootstrap()" + }, + { + "label": "types.d.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/types.d.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_content_types_d", + "community": 108, + "community_name": "Content UI", + "norm_label": "types.d.ts" + }, + { + "label": "FrameOptions", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/types.d.ts", + "source_location": "L3", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_types_d_frameoptions", + "community": 108, + "community_name": "Content UI", + "norm_label": "frameoptions" + }, + { + "label": "FrameOverlayInterface", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/types.d.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_types_d_frameoverlayinterface", + "community": 108, + "community_name": "Content UI", + "norm_label": "frameoverlayinterface" + }, + { + "label": ".mount()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/types.d.ts", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_types_d_frameoverlayinterface_mount", + "community": 108, + "community_name": "Content UI", + "norm_label": ".mount()" + }, + { + "label": ".update()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/types.d.ts", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_types_d_frameoverlayinterface_update", + "community": 108, + "community_name": "Content UI", + "norm_label": ".update()" + }, + { + "label": ".unmount()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/types.d.ts", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_types_d_frameoverlayinterface_unmount", + "community": 108, + "community_name": "Content UI", + "norm_label": ".unmount()" + }, + { + "label": "RailPosition", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/types.d.ts", + "source_location": "L15", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_types_d_railposition", + "community": 108, + "community_name": "Content UI", + "norm_label": "railposition" + }, + { + "label": "RailElement", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/types.d.ts", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_types_d_railelement", + "community": 108, + "community_name": "Content UI", + "norm_label": "railelement" + }, + { + "label": "FrameOverlay.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_content_ui_frameoverlay", + "community": 108, + "community_name": "Content UI", + "norm_label": "frameoverlay.ts" + }, + { + "label": "FrameOverlay", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay", + "community": 108, + "community_name": "Content UI", + "norm_label": "frameoverlay" + }, + { + "label": ".mount()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_mount", + "community": 108, + "community_name": "Content UI", + "norm_label": ".mount()" + }, + { + "label": ".update()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L68", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_update", + "community": 108, + "community_name": "Content UI", + "norm_label": ".update()" + }, + { + "label": ".unmount()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L92", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_unmount", + "community": 108, + "community_name": "Content UI", + "norm_label": ".unmount()" + }, + { + "label": ".createRoot()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L126", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_createroot", + "community": 108, + "community_name": "Content UI", + "norm_label": ".createroot()" + }, + { + "label": ".createShadowDOM()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L140", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_createshadowdom", + "community": 108, + "community_name": "Content UI", + "norm_label": ".createshadowdom()" + }, + { + "label": ".createRails()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L157", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_createrails", + "community": 108, + "community_name": "Content UI", + "norm_label": ".createrails()" + }, + { + "label": ".createCenterGuides()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L172", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_createcenterguides", + "community": 108, + "community_name": "Content UI", + "norm_label": ".createcenterguides()" + }, + { + "label": ".addDemoControls()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L180", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_adddemocontrols", + "community": 108, + "community_name": "Content UI", + "norm_label": ".adddemocontrols()" + }, + { + "label": ".applyOptions()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L231", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_applyoptions", + "community": 108, + "community_name": "Content UI", + "norm_label": ".applyoptions()" + }, + { + "label": ".attachToDOM()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L251", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_attachtodom", + "community": 108, + "community_name": "Content UI", + "norm_label": ".attachtodom()" + }, + { + "label": ".toggleCenterGuides()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L258", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_togglecenterguides", + "community": 108, + "community_name": "Content UI", + "norm_label": ".togglecenterguides()" + }, + { + "label": ".toggleMode()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L264", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_togglemode", + "community": 108, + "community_name": "Content UI", + "norm_label": ".togglemode()" + }, + { + "label": ".enableCompatModeB()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L269", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_enablecompatmodeb", + "community": 108, + "community_name": "Content UI", + "norm_label": ".enablecompatmodeb()" + }, + { + "label": ".disableCompatModeB()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L307", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_disablecompatmodeb", + "community": 108, + "community_name": "Content UI", + "norm_label": ".disablecompatmodeb()" + }, + { + "label": ".startWatchdog()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L328", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_startwatchdog", + "community": 108, + "community_name": "Content UI", + "norm_label": ".startwatchdog()" + }, + { + "label": ".setupFullscreenHandling()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L338", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_setupfullscreenhandling", + "community": 108, + "community_name": "Content UI", + "norm_label": ".setupfullscreenhandling()" + }, + { + "label": ".fullscreenObserver()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L339", + "_origin": "ast", + "id": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_fullscreenobserver", + "community": 108, + "community_name": "Content UI", + "norm_label": ".fullscreenobserver()" + }, + { + "label": ".getRailElement()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L357", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_getrailelement", + "community": 108, + "community_name": "Content UI", + "norm_label": ".getrailelement()" + }, + { + "label": ".getCurrentOptions()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L361", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_getcurrentoptions", + "community": 108, + "community_name": "Content UI", + "norm_label": ".getcurrentoptions()" + }, + { + "label": ".isInCompatMode()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L365", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_isincompatmode", + "community": 108, + "community_name": "Content UI", + "norm_label": ".isincompatmode()" + }, + { + "label": "frameStyles.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/ui/frameStyles.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_content_ui_framestyles", + "community": 108, + "community_name": "Content UI", + "norm_label": "framestyles.ts" + }, + { + "label": "createFrameStyleSheet()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/ui/frameStyles.ts", + "source_location": "L4", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_ui_framestyles_createframestylesheet", + "community": 108, + "community_name": "Content UI", + "norm_label": "createframestylesheet()" + }, + { + "label": "updateRailSizes()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/ui/frameStyles.ts", + "source_location": "L237", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_ui_framestyles_updaterailsizes", + "community": 108, + "community_name": "Content UI", + "norm_label": "updaterailsizes()" + }, + { + "label": "toggleRailVisibility()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/content/ui/frameStyles.ts", + "source_location": "L257", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_content_ui_framestyles_togglerailvisibility", + "community": 108, + "community_name": "Content UI", + "norm_label": "togglerailvisibility()" + }, + { + "label": "evaluateEnvelope.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/envelope-evaluation/evaluateEnvelope.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope", + "community": 155, + "community_name": "Envelopeevaluation", + "norm_label": "evaluateenvelope.ts" + }, + { + "label": "EnvelopeVerificationResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/envelope-evaluation/evaluateEnvelope.ts", + "source_location": "L33", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope_envelopeverificationresult", + "community": 155, + "community_name": "Envelopeevaluation", + "norm_label": "envelopeverificationresult" + }, + { + "label": "verifyEnvelope()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/envelope-evaluation/evaluateEnvelope.ts", + "source_location": "L48", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope_verifyenvelope", + "community": 155, + "community_name": "Envelopeevaluation", + "norm_label": "verifyenvelope()" + }, + { + "label": "BoundaryCheckResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/envelope-evaluation/evaluateEnvelope.ts", + "source_location": "L123", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope_boundarycheckresult", + "community": 155, + "community_name": "Envelopeevaluation", + "norm_label": "boundarycheckresult" + }, + { + "label": "checkBoundaries()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/envelope-evaluation/evaluateEnvelope.ts", + "source_location": "L133", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope_checkboundaries", + "community": 155, + "community_name": "Envelopeevaluation", + "norm_label": "checkboundaries()" + }, + { + "label": "WRGuardIntersectionResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/envelope-evaluation/evaluateEnvelope.ts", + "source_location": "L171", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope_wrguardintersectionresult", + "community": 155, + "community_name": "Envelopeevaluation", + "norm_label": "wrguardintersectionresult" + }, + { + "label": "evaluateWRGuardIntersection()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/envelope-evaluation/evaluateEnvelope.ts", + "source_location": "L186", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope_evaluatewrguardintersection", + "community": 155, + "community_name": "Envelopeevaluation", + "norm_label": "evaluatewrguardintersection()" + }, + { + "label": "createRejection()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/envelope-evaluation/evaluateEnvelope.ts", + "source_location": "L299", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope_createrejection", + "community": 155, + "community_name": "Envelopeevaluation", + "norm_label": "createrejection()" + }, + { + "label": "extractDomain()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/envelope-evaluation/evaluateEnvelope.ts", + "source_location": "L317", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope_extractdomain", + "community": 155, + "community_name": "Envelopeevaluation", + "norm_label": "extractdomain()" + }, + { + "label": "createEnvelopeSummary()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/envelope-evaluation/evaluateEnvelope.ts", + "source_location": "L334", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope_createenvelopesummary", + "community": 155, + "community_name": "Envelopeevaluation", + "norm_label": "createenvelopesummary()" + }, + { + "label": "evaluateIncomingMessage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/envelope-evaluation/evaluateEnvelope.ts", + "source_location": "L385", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope_evaluateincomingmessage", + "community": 155, + "community_name": "Envelopeevaluation", + "norm_label": "evaluateincomingmessage()" + }, + { + "label": "createMockIncomingMessage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/envelope-evaluation/evaluateEnvelope.ts", + "source_location": "L481", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope_createmockincomingmessage", + "community": 155, + "community_name": "Envelopeevaluation", + "norm_label": "createmockincomingmessage()" + }, + { + "label": "NOTE: This is a stub - no real cryptography is implemented here.", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/envelope-evaluation/evaluateEnvelope.ts", + "source_location": "L46", + "_origin": "ast", + "id": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope_rationale_46", + "community": 155, + "community_name": "Envelopeevaluation", + "norm_label": "note: this is a stub - no real cryptography is implemented here." + }, + { + "label": "envelope-evaluation/index.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/envelope-evaluation/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_envelope_evaluation_index", + "community": 155, + "community_name": "Envelopeevaluation", + "norm_label": "envelope-evaluation/index.ts" + }, + { + "label": "envelope-evaluation/types.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/envelope-evaluation/types.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_envelope_evaluation_types", + "community": 155, + "community_name": "Envelopeevaluation", + "norm_label": "envelope-evaluation/types.ts" + }, + { + "label": "IngressChannel", + "file_type": "code", + "source_file": "apps/extension-chromium/src/envelope-evaluation/types.ts", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_envelope_evaluation_types_ingresschannel", + "community": 155, + "community_name": "Envelopeevaluation", + "norm_label": "ingresschannel" + }, + { + "label": "EgressType", + "file_type": "code", + "source_file": "apps/extension-chromium/src/envelope-evaluation/types.ts", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_envelope_evaluation_types_egresstype", + "community": 155, + "community_name": "Envelopeevaluation", + "norm_label": "egresstype" + }, + { + "label": "EgressDeclaration", + "file_type": "code", + "source_file": "apps/extension-chromium/src/envelope-evaluation/types.ts", + "source_location": "L33", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_envelope_evaluation_types_egressdeclaration", + "community": 155, + "community_name": "Envelopeevaluation", + "norm_label": "egressdeclaration" + }, + { + "label": "IngressDeclaration", + "file_type": "code", + "source_file": "apps/extension-chromium/src/envelope-evaluation/types.ts", + "source_location": "L47", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_envelope_evaluation_types_ingressdeclaration", + "community": 155, + "community_name": "Envelopeevaluation", + "norm_label": "ingressdeclaration" + }, + { + "label": "BeapEnvelope", + "file_type": "code", + "source_file": "apps/extension-chromium/src/envelope-evaluation/types.ts", + "source_location": "L62", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_envelope_evaluation_types_beapenvelope", + "community": 155, + "community_name": "Envelopeevaluation", + "norm_label": "beapenvelope" + }, + { + "label": "CapsuleMetadata", + "file_type": "code", + "source_file": "apps/extension-chromium/src/envelope-evaluation/types.ts", + "source_location": "L117", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_envelope_evaluation_types_capsulemetadata", + "community": 155, + "community_name": "Envelopeevaluation", + "norm_label": "capsulemetadata" + }, + { + "label": "VerificationStatus", + "file_type": "code", + "source_file": "apps/extension-chromium/src/envelope-evaluation/types.ts", + "source_location": "L147", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_envelope_evaluation_types_verificationstatus", + "community": 155, + "community_name": "Envelopeevaluation", + "norm_label": "verificationstatus" + }, + { + "label": "RejectionCode", + "file_type": "code", + "source_file": "apps/extension-chromium/src/envelope-evaluation/types.ts", + "source_location": "L156", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_envelope_evaluation_types_rejectioncode", + "community": 155, + "community_name": "Envelopeevaluation", + "norm_label": "rejectioncode" + }, + { + "label": "RejectionReason", + "file_type": "code", + "source_file": "apps/extension-chromium/src/envelope-evaluation/types.ts", + "source_location": "L174", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_envelope_evaluation_types_rejectionreason", + "community": 155, + "community_name": "Envelopeevaluation", + "norm_label": "rejectionreason" + }, + { + "label": "EvaluationResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/envelope-evaluation/types.ts", + "source_location": "L198", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_envelope_evaluation_types_evaluationresult", + "community": 155, + "community_name": "Envelopeevaluation", + "norm_label": "evaluationresult" + }, + { + "label": "EnvelopeSummaryDisplay", + "file_type": "code", + "source_file": "apps/extension-chromium/src/envelope-evaluation/types.ts", + "source_location": "L228", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_envelope_evaluation_types_envelopesummarydisplay", + "community": 155, + "community_name": "Envelopeevaluation", + "norm_label": "envelopesummarydisplay" + }, + { + "label": "IncomingBeapMessage", + "file_type": "code", + "source_file": "apps/extension-chromium/src/envelope-evaluation/types.ts", + "source_location": "L264", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_envelope_evaluation_types_incomingbeapmessage", + "community": 155, + "community_name": "Envelopeevaluation", + "norm_label": "incomingbeapmessage" + }, + { + "label": "useVerifyMessage.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/envelope-evaluation/useVerifyMessage.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_envelope_evaluation_useverifymessage", + "community": 155, + "community_name": "Envelopeevaluation", + "norm_label": "useverifymessage.ts" + }, + { + "label": "UseVerifyMessageReturn", + "file_type": "code", + "source_file": "apps/extension-chromium/src/envelope-evaluation/useVerifyMessage.ts", + "source_location": "L24", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_envelope_evaluation_useverifymessage_useverifymessagereturn", + "community": 155, + "community_name": "Envelopeevaluation", + "norm_label": "useverifymessagereturn" + }, + { + "label": "toEnvelopeSummaryUI()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/envelope-evaluation/useVerifyMessage.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_envelope_evaluation_useverifymessage_toenvelopesummaryui", + "community": 155, + "community_name": "Envelopeevaluation", + "norm_label": "toenvelopesummaryui()" + }, + { + "label": "toCapsuleMetadataUI()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/envelope-evaluation/useVerifyMessage.ts", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_envelope_evaluation_useverifymessage_tocapsulemetadataui", + "community": 155, + "community_name": "Envelopeevaluation", + "norm_label": "tocapsulemetadataui()" + }, + { + "label": "toRejectionReasonUI()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/envelope-evaluation/useVerifyMessage.ts", + "source_location": "L67", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_envelope_evaluation_useverifymessage_torejectionreasonui", + "community": 155, + "community_name": "Envelopeevaluation", + "norm_label": "torejectionreasonui()" + }, + { + "label": "useVerifyMessage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/envelope-evaluation/useVerifyMessage.ts", + "source_location": "L82", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_envelope_evaluation_useverifymessage_useverifymessage", + "community": 155, + "community_name": "Envelopeevaluation", + "norm_label": "useverifymessage()" + }, + { + "label": "createEnvelopeFromMessage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/envelope-evaluation/useVerifyMessage.ts", + "source_location": "L208", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_envelope_evaluation_useverifymessage_createenvelopefrommessage", + "community": 155, + "community_name": "Envelopeevaluation", + "norm_label": "createenvelopefrommessage()" + }, + { + "label": "fix-buttons.mjs", + "file_type": "code", + "source_file": "apps/extension-chromium/src/fix-buttons.mjs", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_fix_buttons", + "community": 532, + "community_name": "Fixbuttons", + "norm_label": "fix-buttons.mjs" + }, + { + "label": "s", + "file_type": "code", + "source_file": "apps/extension-chromium/src/fix-buttons.mjs", + "source_location": "L3", + "_origin": "ast", + "id": "apps_extension_chromium_src_fix_buttons_s", + "community": 532, + "community_name": "Fixbuttons", + "norm_label": "s" + }, + { + "label": "rep()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/fix-buttons.mjs", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_fix_buttons_rep", + "community": 532, + "community_name": "Fixbuttons", + "norm_label": "rep()" + }, + { + "label": "fix-context-memory.mjs", + "file_type": "code", + "source_file": "apps/extension-chromium/src/fix-context-memory.mjs", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_fix_context_memory", + "community": 533, + "community_name": "Fixcontextmemory", + "norm_label": "fix-context-memory.mjs" + }, + { + "label": "s", + "file_type": "code", + "source_file": "apps/extension-chromium/src/fix-context-memory.mjs", + "source_location": "L3", + "_origin": "ast", + "id": "apps_extension_chromium_src_fix_context_memory_s", + "community": 533, + "community_name": "Fixcontextmemory", + "norm_label": "s" + }, + { + "label": "rep()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/fix-context-memory.mjs", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_fix_context_memory_rep", + "community": 533, + "community_name": "Fixcontextmemory", + "norm_label": "rep()" + }, + { + "label": "grid-content-script.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/grid-content-script.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_grid_content_script", + "community": 417, + "community_name": "Gridcontentscript", + "norm_label": "grid-content-script.ts" + }, + { + "label": "initGridContentScript()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/grid-content-script.ts", + "source_location": "L62", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_grid_content_script_initgridcontentscript", + "community": 417, + "community_name": "Gridcontentscript", + "norm_label": "initgridcontentscript()" + }, + { + "label": "saveGridConfiguration()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/grid-content-script.ts", + "source_location": "L100", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_grid_content_script_savegridconfiguration", + "community": 417, + "community_name": "Gridcontentscript", + "norm_label": "savegridconfiguration()" + }, + { + "label": "loadGridConfiguration()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/grid-content-script.ts", + "source_location": "L199", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_grid_content_script_loadgridconfiguration", + "community": 417, + "community_name": "Gridcontentscript", + "norm_label": "loadgridconfiguration()" + }, + { + "label": "applyConfiguration()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/grid-content-script.ts", + "source_location": "L226", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_grid_content_script_applyconfiguration", + "community": 417, + "community_name": "Gridcontentscript", + "norm_label": "applyconfiguration()" + }, + { + "label": "showSuccessNotification()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/grid-content-script.ts", + "source_location": "L243", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_grid_content_script_showsuccessnotification", + "community": 417, + "community_name": "Gridcontentscript", + "norm_label": "showsuccessnotification()" + }, + { + "label": "showErrorNotification()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/grid-content-script.ts", + "source_location": "L260", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_grid_content_script_showerrornotification", + "community": 417, + "community_name": "Gridcontentscript", + "norm_label": "showerrornotification()" + }, + { + "label": "buildInitiateContextOptions.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/__tests__/buildInitiateContextOptions.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_tests_buildinitiatecontextoptions_test", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "buildinitiatecontextoptions.test.ts" + }, + { + "label": "handshakeRpc.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/__tests__/handshakeRpc.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_tests_handshakerpc_test", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "handshakerpc.test.ts" + }, + { + "label": "mockRpcResponse()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/__tests__/handshakeRpc.test.ts", + "source_location": "L50", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_tests_handshakerpc_test_mockrpcresponse", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "mockrpcresponse()" + }, + { + "label": "mockRpcError()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/__tests__/handshakeRpc.test.ts", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_tests_handshakerpc_test_mockrpcerror", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "mockrpcerror()" + }, + { + "label": "migration.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/__tests__/migration.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_tests_migration_test", + "community": 534, + "community_name": "Handshake #534", + "norm_label": "migration.test.ts" + }, + { + "label": "EXT_SRC", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/__tests__/migration.test.ts", + "source_location": "L14", + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_tests_migration_test_ext_src", + "community": 534, + "community_name": "Handshake #534", + "norm_label": "ext_src" + }, + { + "label": "readFile()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/__tests__/migration.test.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_tests_migration_test_readfile", + "community": 534, + "community_name": "Handshake #534", + "norm_label": "readfile()" + }, + { + "label": "pendingP2PBeapQueue.batched-refresh.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/__tests__/pendingP2PBeapQueue.batched-refresh.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_tests_pendingp2pbeapqueue_batched_refresh_test", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "pendingp2pbeapqueue.batched-refresh.test.ts" + }, + { + "label": "mockGetPendingP2PBeapMessages", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/__tests__/pendingP2PBeapQueue.batched-refresh.test.ts", + "source_location": "L26", + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_tests_pendingp2pbeapqueue_batched_refresh_test_mockgetpendingp2pbeapmessages", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "mockgetpendingp2pbeapmessages" + }, + { + "label": "mockAckPendingP2PBeap", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/__tests__/pendingP2PBeapQueue.batched-refresh.test.ts", + "source_location": "L27", + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_tests_pendingp2pbeapqueue_batched_refresh_test_mockackpendingp2pbeap", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "mockackpendingp2pbeap" + }, + { + "label": "mockGetHandshake", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/__tests__/pendingP2PBeapQueue.batched-refresh.test.ts", + "source_location": "L28", + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_tests_pendingp2pbeapqueue_batched_refresh_test_mockgethandshake", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "mockgethandshake" + }, + { + "label": "mockImportBeapMessage", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/__tests__/pendingP2PBeapQueue.batched-refresh.test.ts", + "source_location": "L36", + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_tests_pendingp2pbeapqueue_batched_refresh_test_mockimportbeapmessage", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "mockimportbeapmessage" + }, + { + "label": "mockVerifyImportedMessage", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/__tests__/pendingP2PBeapQueue.batched-refresh.test.ts", + "source_location": "L37", + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_tests_pendingp2pbeapqueue_batched_refresh_test_mockverifyimportedmessage", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "mockverifyimportedmessage" + }, + { + "label": "mockMergeDepackagedToElectron", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/__tests__/pendingP2PBeapQueue.batched-refresh.test.ts", + "source_location": "L44", + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_tests_pendingp2pbeapqueue_batched_refresh_test_mockmergedepackagedtoelectron", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "mockmergedepackagedtoelectron" + }, + { + "label": "mockRefreshFromMain", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/__tests__/pendingP2PBeapQueue.batched-refresh.test.ts", + "source_location": "L50", + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_tests_pendingp2pbeapqueue_batched_refresh_test_mockrefreshfrommain", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "mockrefreshfrommain" + }, + { + "label": "mockCachePackage", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/__tests__/pendingP2PBeapQueue.batched-refresh.test.ts", + "source_location": "L51", + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_tests_pendingp2pbeapqueue_batched_refresh_test_mockcachepackage", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "mockcachepackage" + }, + { + "label": "FAKE_PKG", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/__tests__/pendingP2PBeapQueue.batched-refresh.test.ts", + "source_location": "L72", + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_tests_pendingp2pbeapqueue_batched_refresh_test_fake_pkg", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "fake_pkg" + }, + { + "label": "makePendingItem()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/__tests__/pendingP2PBeapQueue.batched-refresh.test.ts", + "source_location": "L77", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_tests_pendingp2pbeapqueue_batched_refresh_test_makependingitem", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "makependingitem()" + }, + { + "label": "makeImportSuccess()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/__tests__/pendingP2PBeapQueue.batched-refresh.test.ts", + "source_location": "L81", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_tests_pendingp2pbeapqueue_batched_refresh_test_makeimportsuccess", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "makeimportsuccess()" + }, + { + "label": "makeVerifySuccess()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/__tests__/pendingP2PBeapQueue.batched-refresh.test.ts", + "source_location": "L85", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_tests_pendingp2pbeapqueue_batched_refresh_test_makeverifysuccess", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "makeverifysuccess()" + }, + { + "label": "buildInitiateContextOptions.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/buildInitiateContextOptions.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_buildinitiatecontextoptions", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "buildinitiatecontextoptions.ts" + }, + { + "label": "BuildInitiateContextOptionsParams", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/buildInitiateContextOptions.ts", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_buildinitiatecontextoptions_buildinitiatecontextoptionsparams", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "buildinitiatecontextoptionsparams" + }, + { + "label": "buildInitiateContextOptions()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/buildInitiateContextOptions.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_buildinitiatecontextoptions_buildinitiatecontextoptions", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "buildinitiatecontextoptions()" + }, + { + "label": "BuildAcceptContextOptionsParams", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/buildInitiateContextOptions.ts", + "source_location": "L74", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_buildinitiatecontextoptions_buildacceptcontextoptionsparams", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "buildacceptcontextoptionsparams" + }, + { + "label": "buildAcceptContextOptions()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/buildInitiateContextOptions.ts", + "source_location": "L82", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_buildinitiatecontextoptions_buildacceptcontextoptions", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "buildacceptcontextoptions()" + }, + { + "label": "HandshakeAcceptModal.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "handshakeacceptmodal.tsx" + }, + { + "label": "SharingMode", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx", + "source_location": "L42", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal_sharingmode", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "sharingmode" + }, + { + "label": "HandshakeAcceptModalProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx", + "source_location": "L44", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal_handshakeacceptmodalprops", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "handshakeacceptmodalprops" + }, + { + "label": "HandshakeAcceptModal()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal_handshakeacceptmodal", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "handshakeacceptmodal()" + }, + { + "label": "HandshakeContextProfilePicker.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeContextProfilePicker.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_components_handshakecontextprofilepicker", + "community": 188, + "community_name": "Handshake #188", + "norm_label": "handshakecontextprofilepicker.tsx" + }, + { + "label": "DEFAULT_POLICY", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeContextProfilePicker.tsx", + "source_location": "L16", + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_components_handshakecontextprofilepicker_default_policy", + "community": 188, + "community_name": "Handshake #188", + "norm_label": "default_policy" + }, + { + "label": "HandshakeContextProfilePickerProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeContextProfilePicker.tsx", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_components_handshakecontextprofilepicker_handshakecontextprofilepickerprops", + "community": 188, + "community_name": "Handshake #188", + "norm_label": "handshakecontextprofilepickerprops" + }, + { + "label": "HandshakeContextProfilePicker()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeContextProfilePicker.tsx", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_components_handshakecontextprofilepicker_handshakecontextprofilepicker", + "community": 188, + "community_name": "Handshake #188", + "norm_label": "handshakecontextprofilepicker()" + }, + { + "label": "HandshakeDetailsPanel.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeDetailsPanel.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_components_handshakedetailspanel", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "handshakedetailspanel.tsx" + }, + { + "label": "PanelTab", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeDetailsPanel.tsx", + "source_location": "L26", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_components_handshakedetailspanel_paneltab", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "paneltab" + }, + { + "label": "HandshakeDetailsPanelProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeDetailsPanel.tsx", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_components_handshakedetailspanel_handshakedetailspanelprops", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "handshakedetailspanelprops" + }, + { + "label": "STATE_CONFIG", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeDetailsPanel.tsx", + "source_location": "L48", + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_components_handshakedetailspanel_state_config", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "state_config" + }, + { + "label": "formatRelativeTime()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeDetailsPanel.tsx", + "source_location": "L62", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_components_handshakedetailspanel_formatrelativetime", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "formatrelativetime()" + }, + { + "label": "getContentPreview()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeDetailsPanel.tsx", + "source_location": "L74", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_components_handshakedetailspanel_getcontentpreview", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "getcontentpreview()" + }, + { + "label": "HandshakeMessageRowProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeDetailsPanel.tsx", + "source_location": "L83", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_components_handshakedetailspanel_handshakemessagerowprops", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "handshakemessagerowprops" + }, + { + "label": "HandshakeMessageRow()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeDetailsPanel.tsx", + "source_location": "L92", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_components_handshakedetailspanel_handshakemessagerow", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "handshakemessagerow()" + }, + { + "label": "HandshakeDetailsPanel()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeDetailsPanel.tsx", + "source_location": "L193", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_components_handshakedetailspanel_handshakedetailspanel", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "handshakedetailspanel()" + }, + { + "label": "DetailRow()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeDetailsPanel.tsx", + "source_location": "L678", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_components_handshakedetailspanel_detailrow", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "detailrow()" + }, + { + "label": "HandshakeManagementPanel.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeManagementPanel.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_components_handshakemanagementpanel", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "handshakemanagementpanel.tsx" + }, + { + "label": "HandshakeManagementPanelProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeManagementPanel.tsx", + "source_location": "L19", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_components_handshakemanagementpanel_handshakemanagementpanelprops", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "handshakemanagementpanelprops" + }, + { + "label": "STATE_ORDER", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeManagementPanel.tsx", + "source_location": "L29", + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_components_handshakemanagementpanel_state_order", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "state_order" + }, + { + "label": "STATE_LABELS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeManagementPanel.tsx", + "source_location": "L38", + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_components_handshakemanagementpanel_state_labels", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "state_labels" + }, + { + "label": "itemsForStateGroup()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeManagementPanel.tsx", + "source_location": "L48", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_components_handshakemanagementpanel_itemsforstategroup", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "itemsforstategroup()" + }, + { + "label": "HandshakeManagementPanel()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeManagementPanel.tsx", + "source_location": "L52", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_components_handshakemanagementpanel_handshakemanagementpanel", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "handshakemanagementpanel()" + }, + { + "label": "HandshakeListItem()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeManagementPanel.tsx", + "source_location": "L313", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_components_handshakemanagementpanel_handshakelistitem", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "handshakelistitem()" + }, + { + "label": "HandshakeRequestForm.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeRequestForm.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_components_handshakerequestform", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "handshakerequestform.tsx" + }, + { + "label": "EmailAccount", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeRequestForm.tsx", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_components_handshakerequestform_emailaccount", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "emailaccount" + }, + { + "label": "HandshakeRequestFormProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeRequestForm.tsx", + "source_location": "L38", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_components_handshakerequestform_handshakerequestformprops", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "handshakerequestformprops" + }, + { + "label": "HandshakeRequestForm()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeRequestForm.tsx", + "source_location": "L71", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_components_handshakerequestform_handshakerequestform", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "handshakerequestform()" + }, + { + "label": "HandshakeSelectItem.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeSelectItem.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_components_handshakeselectitem", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "handshakeselectitem.tsx" + }, + { + "label": "HandshakeSelectItemProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeSelectItem.tsx", + "source_location": "L15", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_components_handshakeselectitem_handshakeselectitemprops", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "handshakeselectitemprops" + }, + { + "label": "AUTOMATION_ICONS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeSelectItem.tsx", + "source_location": "L24", + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_components_handshakeselectitem_automation_icons", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "automation_icons" + }, + { + "label": "AUTOMATION_COLORS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeSelectItem.tsx", + "source_location": "L31", + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_components_handshakeselectitem_automation_colors", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "automation_colors" + }, + { + "label": "HandshakeSelectItem()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeSelectItem.tsx", + "source_location": "L37", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_components_handshakeselectitem_handshakeselectitem", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "handshakeselectitem()" + }, + { + "label": "InitiateHandshakeDialog.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/components/InitiateHandshakeDialog.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_components_initiatehandshakedialog", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "initiatehandshakedialog.tsx" + }, + { + "label": "InitiateHandshakeDialogProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/components/InitiateHandshakeDialog.tsx", + "source_location": "L32", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_components_initiatehandshakedialog_initiatehandshakedialogprops", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "initiatehandshakedialogprops" + }, + { + "label": "InitiateHandshakeDialog()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/components/InitiateHandshakeDialog.tsx", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_components_initiatehandshakedialog_initiatehandshakedialog", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "initiatehandshakedialog()" + }, + { + "label": "PackageHeaderMeta.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/components/PackageHeaderMeta.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_components_packageheadermeta", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "packageheadermeta.tsx" + }, + { + "label": "PackageHeaderMetaProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/components/PackageHeaderMeta.tsx", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_components_packageheadermeta_packageheadermetaprops", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "packageheadermetaprops" + }, + { + "label": "PackageHeaderMeta()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/components/PackageHeaderMeta.tsx", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_components_packageheadermeta_packageheadermeta", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "packageheadermeta()" + }, + { + "label": "SendHandshakeDelivery.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/components/SendHandshakeDelivery.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "sendhandshakedelivery.tsx" + }, + { + "label": "DeliveryMode", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/components/SendHandshakeDelivery.tsx", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery_deliverymode", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "deliverymode" + }, + { + "label": "Theme", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/components/SendHandshakeDelivery.tsx", + "source_location": "L25", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery_theme", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "theme" + }, + { + "label": "EmailAccount", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/components/SendHandshakeDelivery.tsx", + "source_location": "L27", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery_emailaccount", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "emailaccount" + }, + { + "label": "SendHandshakeDeliveryProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/components/SendHandshakeDelivery.tsx", + "source_location": "L33", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery_sendhandshakedeliveryprops", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "sendhandshakedeliveryprops" + }, + { + "label": "normalizePairingCodeInput()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/components/SendHandshakeDelivery.tsx", + "source_location": "L91", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery_normalizepairingcodeinput", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "normalizepairingcodeinput()" + }, + { + "label": "formatPairingCodeForInput()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/components/SendHandshakeDelivery.tsx", + "source_location": "L96", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery_formatpairingcodeforinput", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "formatpairingcodeforinput()" + }, + { + "label": "useThemeTokens()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/components/SendHandshakeDelivery.tsx", + "source_location": "L101", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery_usethemetokens", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "usethemetokens()" + }, + { + "label": "DeliveryOptionProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/components/SendHandshakeDelivery.tsx", + "source_location": "L135", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery_deliveryoptionprops", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "deliveryoptionprops" + }, + { + "label": "DeliveryOption()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/components/SendHandshakeDelivery.tsx", + "source_location": "L144", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery_deliveryoption", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "deliveryoption()" + }, + { + "label": "SendHandshakeDelivery()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/components/SendHandshakeDelivery.tsx", + "source_location": "L244", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery_sendhandshakedelivery", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "sendhandshakedelivery()" + }, + { + "label": "handshake/components/index.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/components/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_components_index", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "handshake/components/index.ts" + }, + { + "label": "fingerprint.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/fingerprint.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_fingerprint", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "fingerprint.ts" + }, + { + "label": "generateFingerprint()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/fingerprint.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_fingerprint_generatefingerprint", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "generatefingerprint()" + }, + { + "label": "generateFingerprintSync()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/fingerprint.ts", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_fingerprint_generatefingerprintsync", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "generatefingerprintsync()" + }, + { + "label": "formatFingerprintShort()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/fingerprint.ts", + "source_location": "L66", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_fingerprint_formatfingerprintshort", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "formatfingerprintshort()" + }, + { + "label": "formatFingerprintGrouped()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/fingerprint.ts", + "source_location": "L83", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_fingerprint_formatfingerprintgrouped", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "formatfingerprintgrouped()" + }, + { + "label": "compareFingerprints()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/fingerprint.ts", + "source_location": "L98", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_fingerprint_comparefingerprints", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "comparefingerprints()" + }, + { + "label": "isValidFingerprint()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/fingerprint.ts", + "source_location": "L108", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_fingerprint_isvalidfingerprint", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "isvalidfingerprint()" + }, + { + "label": "generateMockFingerprint()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/fingerprint.ts", + "source_location": "L120", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_fingerprint_generatemockfingerprint", + "community": 193, + "community_name": "Beapbuilder Handshake", + "norm_label": "generatemockfingerprint()" + }, + { + "label": "handshake/handshakeRpc.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_handshakerpc", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "handshake/handshakerpc.ts" + }, + { + "label": "nextRpcId()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_handshakerpc_nextrpcid", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "nextrpcid()" + }, + { + "label": "inferCounterpartyDeviceRole()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_handshakerpc_infercounterpartydevicerole", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "infercounterpartydevicerole()" + }, + { + "label": "sendHandshakeRpc()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L46", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_handshakerpc_sendhandshakerpc", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "sendhandshakerpc()" + }, + { + "label": "getKeyAgreementForHandshake()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L98", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_handshakerpc_getkeyagreementforhandshake", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "getkeyagreementforhandshake()" + }, + { + "label": "listHandshakes()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L125", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_handshakerpc_listhandshakes", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "listhandshakes()" + }, + { + "label": "getHandshake()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L144", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_handshakerpc_gethandshake", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "gethandshake()" + }, + { + "label": "getHandshakeMlkemSecret()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L157", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_handshakerpc_gethandshakemlkemsecret", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "gethandshakemlkemsecret()" + }, + { + "label": "initiateHandshake()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L170", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_handshakerpc_initiatehandshake", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "initiatehandshake()" + }, + { + "label": "buildHandshakeForDownload()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L240", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_handshakerpc_buildhandshakefordownload", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "buildhandshakefordownload()" + }, + { + "label": "acceptHandshake()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L302", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_handshakerpc_accepthandshake", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "accepthandshake()" + }, + { + "label": "refreshHandshake()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L353", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_handshakerpc_refreshhandshake", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "refreshhandshake()" + }, + { + "label": "revokeHandshake()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L367", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_handshakerpc_revokehandshake", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "revokehandshake()" + }, + { + "label": "deleteHandshake()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L373", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_handshakerpc_deletehandshake", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "deletehandshake()" + }, + { + "label": "PendingP2PBeapEntry", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L386", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_handshakerpc_pendingp2pbeapentry", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "pendingp2pbeapentry" + }, + { + "label": "getPendingP2PBeapMessages()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L393", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_handshakerpc_getpendingp2pbeapmessages", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "getpendingp2pbeapmessages()" + }, + { + "label": "ackPendingP2PBeap()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L404", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_handshakerpc_ackpendingp2pbeap", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "ackpendingp2pbeap()" + }, + { + "label": "PendingPlainEmailEntry", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L414", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_handshakerpc_pendingplainemailentry", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "pendingplainemailentry" + }, + { + "label": "getPendingPlainEmails()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L425", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_handshakerpc_getpendingplainemails", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "getpendingplainemails()" + }, + { + "label": "ackPendingPlainEmail()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L436", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_handshakerpc_ackpendingplainemail", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "ackpendingplainemail()" + }, + { + "label": "BeapInboxRow", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L448", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_handshakerpc_beapinboxrow", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "beapinboxrow" + }, + { + "label": "BeapInboxListResponse", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L476", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_handshakerpc_beapinboxlistresponse", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "beapinboxlistresponse" + }, + { + "label": "getBeapInboxMessages()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L495", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_handshakerpc_getbeapinboxmessages", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "getbeapinboxmessages()" + }, + { + "label": "getBeapInboxMany()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L519", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_handshakerpc_getbeapinboxmany", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "getbeapinboxmany()" + }, + { + "label": "beapInboxMarkRead()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L542", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_handshakerpc_beapinboxmarkread", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "beapinboxmarkread()" + }, + { + "label": "beapInboxArchive()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L552", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_handshakerpc_beapinboxarchive", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "beapinboxarchive()" + }, + { + "label": "beapInboxUnarchive()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L562", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_handshakerpc_beapinboxunarchive", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "beapinboxunarchive()" + }, + { + "label": "beapInboxClassify()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L575", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_handshakerpc_beapinboxclassify", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "beapinboxclassify()" + }, + { + "label": "beapInboxSetUrgency()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L590", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_handshakerpc_beapinboxseturgency", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "beapinboxseturgency()" + }, + { + "label": "ClientSendFailureDebug", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L607", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_handshakerpc_clientsendfailuredebug", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "clientsendfailuredebug" + }, + { + "label": "OutboundRequestDebugSnapshot", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L623", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_handshakerpc_outboundrequestdebugsnapshot", + "community": 78, + "community_name": "Beapmessages Services Beapbuilder #78", + "norm_label": "outboundrequestdebugsnapshot" + }, + { + "label": "SendBeapViaP2PResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L674", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_handshakerpc_sendbeapviap2presult", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "sendbeapviap2presult" + }, + { + "label": "sendBeapViaP2P()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L741", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_handshakerpc_sendbeapviap2p", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "sendbeapviap2p()" + }, + { + "label": "checkHandshakeSendReady()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L758", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_handshakerpc_checkhandshakesendready", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "checkhandshakesendready()" + }, + { + "label": "normalizeRecord()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L775", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_handshakerpc_normalizerecord", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "normalizerecord()" + }, + { + "label": "handshakeService.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/handshakeService.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_handshakeservice", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "handshakeservice.ts" + }, + { + "label": "OurIdentity", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/handshakeService.ts", + "source_location": "L31", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_handshakeservice_ouridentity", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "ouridentity" + }, + { + "label": "deriveFingerprintFromX25519()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/handshakeService.ts", + "source_location": "L60", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_handshakeservice_derivefingerprintfromx25519", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "derivefingerprintfromx25519()" + }, + { + "label": "getOurIdentity()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/handshakeService.ts", + "source_location": "L88", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_handshakeservice_getouridentity", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "getouridentity()" + }, + { + "label": "clearIdentityCache()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/handshakeService.ts", + "source_location": "L125", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_handshakeservice_clearidentitycache", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "clearidentitycache()" + }, + { + "label": "getOurIdentityForDisplay()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/handshakeService.ts", + "source_location": "L140", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_handshakeservice_getouridentityfordisplay", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "getouridentityfordisplay()" + }, + { + "label": "extension-chromium/src/handshake/index.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_index", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "extension-chromium/src/handshake/index.ts" + }, + { + "label": "handshake/microcopy.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/microcopy.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_microcopy", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "handshake/microcopy.ts" + }, + { + "label": "BADGE_TEXT", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/microcopy.ts", + "source_location": "L12", + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_microcopy_badge_text", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "badge_text" + }, + { + "label": "AUTOMATION_LABELS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/microcopy.ts", + "source_location": "L21", + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_microcopy_automation_labels", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "automation_labels" + }, + { + "label": "AUTOMATION_DESCRIPTIONS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/microcopy.ts", + "source_location": "L27", + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_microcopy_automation_descriptions", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "automation_descriptions" + }, + { + "label": "TOOLTIPS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/microcopy.ts", + "source_location": "L37", + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_microcopy_tooltips", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "tooltips" + }, + { + "label": "POLICY_NOTES", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/microcopy.ts", + "source_location": "L49", + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_microcopy_policy_notes", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "policy_notes" + }, + { + "label": "ACTION_LABELS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/microcopy.ts", + "source_location": "L58", + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_microcopy_action_labels", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "action_labels" + }, + { + "label": "STATUS_MESSAGES", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/microcopy.ts", + "source_location": "L70", + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_microcopy_status_messages", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "status_messages" + }, + { + "label": "HANDSHAKE_REQUEST_TEMPLATE", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/microcopy.ts", + "source_location": "L83", + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_microcopy_handshake_request_template", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "handshake_request_template" + }, + { + "label": "MICROCOPY", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/microcopy.ts", + "source_location": "L110", + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_microcopy_microcopy", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "microcopy" + }, + { + "label": "mlkemHandshakeStorage.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/mlkemHandshakeStorage.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_mlkemhandshakestorage", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "mlkemhandshakestorage.ts" + }, + { + "label": "storageKey()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/mlkemHandshakeStorage.ts", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_mlkemhandshakestorage_storagekey", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "storagekey()" + }, + { + "label": "getLocalMlkemSecret()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/mlkemHandshakeStorage.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_mlkemhandshakestorage_getlocalmlkemsecret", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "getlocalmlkemsecret()" + }, + { + "label": "removeLocalMlkemSecret()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/mlkemHandshakeStorage.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_mlkemhandshakestorage_removelocalmlkemsecret", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "removelocalmlkemsecret()" + }, + { + "label": "pendingP2PBeapQueue.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/pendingP2PBeapQueue.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_pendingp2pbeapqueue", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "pendingp2pbeapqueue.ts" + }, + { + "label": "buildVerifyOptions()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/pendingP2PBeapQueue.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_pendingp2pbeapqueue_buildverifyoptions", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "buildverifyoptions()" + }, + { + "label": "processPendingP2PBeapQueue()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/pendingP2PBeapQueue.ts", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_pendingp2pbeapqueue_processpendingp2pbeapqueue", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "processpendingp2pbeapqueue()" + }, + { + "label": "rpcTypes.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/rpcTypes.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_rpctypes", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "rpctypes.ts" + }, + { + "label": "HandshakeState", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/rpcTypes.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_rpctypes_handshakestate", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "handshakestate" + }, + { + "label": "HandshakeRecord", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/rpcTypes.ts", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_rpctypes_handshakerecord", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "handshakerecord" + }, + { + "label": "ContextBlockProof", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/rpcTypes.ts", + "source_location": "L86", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_rpctypes_contextblockproof", + "community": 354, + "community_name": "Beapbuilder Handshake #354", + "norm_label": "contextblockproof" + }, + { + "label": "SelectedHandshakeRecipient", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/rpcTypes.ts", + "source_location": "L93", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_rpctypes_selectedhandshakerecipient", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "selectedhandshakerecipient" + }, + { + "label": "hasHandshakeKeyMaterial()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/rpcTypes.ts", + "source_location": "L132", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_rpctypes_hashandshakekeymaterial", + "community": 139, + "community_name": "Handshake Beapbuilder Shims", + "norm_label": "hashandshakekeymaterial()" + }, + { + "label": "nzString()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/rpcTypes.ts", + "source_location": "L138", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_rpctypes_nzstring", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "nzstring()" + }, + { + "label": "peerKeyMaterialFromBackendRow()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/rpcTypes.ts", + "source_location": "L149", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_rpctypes_peerkeymaterialfrombackendrow", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "peerkeymaterialfrombackendrow()" + }, + { + "label": "handshakeRecordToRecipient()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/rpcTypes.ts", + "source_location": "L173", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_rpctypes_handshakerecordtorecipient", + "community": 34, + "community_name": "Beapmessages Services Handshake", + "norm_label": "handshakerecordtorecipient()" + }, + { + "label": "handshakeKeyMaterialStatus", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/rpcTypes.ts", + "source_location": "L195", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_rpctypes_handshakekeymaterialstatus", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "handshakekeymaterialstatus" + }, + { + "label": "handshakeDetailsStatusPrefix()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/rpcTypes.ts", + "source_location": "L207", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_rpctypes_handshakedetailsstatusprefix", + "community": 26, + "community_name": "BEAP Inbox Dashboard", + "norm_label": "handshakedetailsstatusprefix()" + }, + { + "label": "handshakeListRowIcon()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/rpcTypes.ts", + "source_location": "L226", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_rpctypes_handshakelistrowicon", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "handshakelistrowicon()" + }, + { + "label": "HandshakeListResponse", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/rpcTypes.ts", + "source_location": "L246", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_rpctypes_handshakelistresponse", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "handshakelistresponse" + }, + { + "label": "HandshakeInitiateResponse", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/rpcTypes.ts", + "source_location": "L251", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_rpctypes_handshakeinitiateresponse", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "handshakeinitiateresponse" + }, + { + "label": "HandshakeAcceptResponse", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/rpcTypes.ts", + "source_location": "L278", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_rpctypes_handshakeacceptresponse", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "handshakeacceptresponse" + }, + { + "label": "HandshakeRefreshResponse", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/rpcTypes.ts", + "source_location": "L292", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_rpctypes_handshakerefreshresponse", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "handshakerefreshresponse" + }, + { + "label": "HandshakeBuildForDownloadResponse", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/rpcTypes.ts", + "source_location": "L298", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_rpctypes_handshakebuildfordownloadresponse", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "handshakebuildfordownloadresponse" + }, + { + "label": "extension-chromium/src/handshake/types.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/types.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_types", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "extension-chromium/src/handshake/types.ts" + }, + { + "label": "HandshakeStatus", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/types.ts", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_types_handshakestatus", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "handshakestatus" + }, + { + "label": "AutomationMode", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/types.ts", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_types_automationmode", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "automationmode" + }, + { + "label": "Handshake", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/types.ts", + "source_location": "L29", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_types_handshake", + "community": 207, + "community_name": "Beapbuilder Handshake #207", + "norm_label": "handshake" + }, + { + "label": "PackageHandshakeMapping", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/types.ts", + "source_location": "L131", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_types_packagehandshakemapping", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "packagehandshakemapping" + }, + { + "label": "HandshakeRequest", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/types.ts", + "source_location": "L152", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_types_handshakerequest", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "handshakerequest" + }, + { + "label": "HandshakeAcceptRequest", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/types.ts", + "source_location": "L197", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_types_handshakeacceptrequest", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "handshakeacceptrequest" + }, + { + "label": "useHandshakes.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/useHandshakes.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_usehandshakes", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "usehandshakes.ts" + }, + { + "label": "UseHandshakesResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/useHandshakes.ts", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_usehandshakes_usehandshakesresult", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "usehandshakesresult" + }, + { + "label": "useHandshakes()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/useHandshakes.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_usehandshakes_usehandshakes", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "usehandshakes()" + }, + { + "label": "usePendingP2PBeapIngestion.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/usePendingP2PBeapIngestion.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_usependingp2pbeapingestion", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "usependingp2pbeapingestion.ts" + }, + { + "label": "usePendingP2PBeapIngestion()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/handshake/usePendingP2PBeapIngestion.ts", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_handshake_usependingp2pbeapingestion_usependingp2pbeapingestion", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "usependingp2pbeapingestion()" + }, + { + "label": "ImportEmailModal.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ingress/components/ImportEmailModal.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ingress_components_importemailmodal", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "importemailmodal.tsx" + }, + { + "label": "ImportEmailModalProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ingress/components/ImportEmailModal.tsx", + "source_location": "L33", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ingress_components_importemailmodal_importemailmodalprops", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "importemailmodalprops" + }, + { + "label": "ImportEmailModal()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ingress/components/ImportEmailModal.tsx", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ingress_components_importemailmodal_importemailmodal", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "importemailmodal()" + }, + { + "label": "ImportFileModal.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ingress/components/ImportFileModal.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ingress_components_importfilemodal", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "importfilemodal.tsx" + }, + { + "label": "ImportFileModalProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ingress/components/ImportFileModal.tsx", + "source_location": "L25", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ingress_components_importfilemodal_importfilemodalprops", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "importfilemodalprops" + }, + { + "label": "ImportFileModal()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ingress/components/ImportFileModal.tsx", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ingress_components_importfilemodal_importfilemodal", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "importfilemodal()" + }, + { + "label": "ImportMessengerModal.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ingress/components/ImportMessengerModal.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ingress_components_importmessengermodal", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "importmessengermodal.tsx" + }, + { + "label": "ImportMessengerModalProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ingress/components/ImportMessengerModal.tsx", + "source_location": "L25", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ingress_components_importmessengermodal_importmessengermodalprops", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "importmessengermodalprops" + }, + { + "label": "ImportMessengerModal()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ingress/components/ImportMessengerModal.tsx", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ingress_components_importmessengermodal_importmessengermodal", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "importmessengermodal()" + }, + { + "label": "InboxImportBar.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ingress/components/InboxImportBar.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ingress_components_inboximportbar", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "inboximportbar.tsx" + }, + { + "label": "InboxImportBarProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ingress/components/InboxImportBar.tsx", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ingress_components_inboximportbar_inboximportbarprops", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "inboximportbarprops" + }, + { + "label": "InboxImportBar()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ingress/components/InboxImportBar.tsx", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ingress_components_inboximportbar_inboximportbar", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "inboximportbar()" + }, + { + "label": "ingress/components/index.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ingress/components/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ingress_components_index", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "ingress/components/index.ts" + }, + { + "label": "electronDepackagedSync.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ingress/electronDepackagedSync.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ingress_electrondepackagedsync", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "electrondepackagedsync.ts" + }, + { + "label": "ElectronMergeDepackagedPayload", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ingress/electronDepackagedSync.ts", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ingress_electrondepackagedsync_electronmergedepackagedpayload", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "electronmergedepackagedpayload" + }, + { + "label": "buildElectronMergePayload()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ingress/electronDepackagedSync.ts", + "source_location": "L37", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ingress_electrondepackagedsync_buildelectronmergepayload", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "buildelectronmergepayload()" + }, + { + "label": "mergeDepackagedToElectron()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ingress/electronDepackagedSync.ts", + "source_location": "L124", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ingress_electrondepackagedsync_mergedepackagedtoelectron", + "community": 39, + "community_name": "Handshake Shims Beapmessages", + "norm_label": "mergedepackagedtoelectron()" + }, + { + "label": "importPipeline.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ingress_importpipeline", + "community": 163, + "community_name": "Ingress", + "norm_label": "importpipeline.ts" + }, + { + "label": "VerifyImportedMessageResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L52", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ingress_importpipeline_verifyimportedmessageresult", + "community": 163, + "community_name": "Ingress", + "norm_label": "verifyimportedmessageresult" + }, + { + "label": "validateImportPayload()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L93", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ingress_importpipeline_validateimportpayload", + "community": 163, + "community_name": "Ingress", + "norm_label": "validateimportpayload()" + }, + { + "label": "extractEnvelopeHint()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L147", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ingress_importpipeline_extractenvelopehint", + "community": 163, + "community_name": "Ingress", + "norm_label": "extractenvelopehint()" + }, + { + "label": "extractCapsuleHint()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L176", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ingress_importpipeline_extractcapsulehint", + "community": 163, + "community_name": "Ingress", + "norm_label": "extractcapsulehint()" + }, + { + "label": "importBeapMessage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L216", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ingress_importpipeline_importbeapmessage", + "community": 163, + "community_name": "Ingress", + "norm_label": "importbeapmessage()" + }, + { + "label": "isEmailImportAvailable()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L338", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ingress_importpipeline_isemailimportavailable", + "community": 163, + "community_name": "Ingress", + "norm_label": "isemailimportavailable()" + }, + { + "label": "getEmailCandidates()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L356", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ingress_importpipeline_getemailcandidates", + "community": 163, + "community_name": "Ingress", + "norm_label": "getemailcandidates()" + }, + { + "label": "importFromEmail()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L396", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ingress_importpipeline_importfromemail", + "community": 163, + "community_name": "Ingress", + "norm_label": "importfromemail()" + }, + { + "label": "importFromMessenger()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L437", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ingress_importpipeline_importfrommessenger", + "community": 163, + "community_name": "Ingress", + "norm_label": "importfrommessenger()" + }, + { + "label": "ImportFileProgressPhase", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L448", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ingress_importpipeline_importfileprogressphase", + "community": 163, + "community_name": "Ingress", + "norm_label": "importfileprogressphase" + }, + { + "label": "importFromFile()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L459", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ingress_importpipeline_importfromfile", + "community": 163, + "community_name": "Ingress", + "norm_label": "importfromfile()" + }, + { + "label": "verifyImportedMessage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L541", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ingress_importpipeline_verifyimportedmessage", + "community": 163, + "community_name": "Ingress", + "norm_label": "verifyimportedmessage()" + }, + { + "label": "augmentVerifyOptionsForQBeap()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L708", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ingress_importpipeline_augmentverifyoptionsforqbeap", + "community": 3, + "community_name": "BEAP Crypto Depackaging", + "norm_label": "augmentverifyoptionsforqbeap()" + }, + { + "label": "resolveHandshakeId()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L786", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ingress_importpipeline_resolvehandshakeid", + "community": 163, + "community_name": "Ingress", + "norm_label": "resolvehandshakeid()" + }, + { + "label": "buildEnvelopeSummary()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L805", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ingress_importpipeline_buildenvelopesummary", + "community": 163, + "community_name": "Ingress", + "norm_label": "buildenvelopesummary()" + }, + { + "label": "buildCapsuleMetadata()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L823", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ingress_importpipeline_buildcapsulemetadata", + "community": 163, + "community_name": "Ingress", + "norm_label": "buildcapsulemetadata()" + }, + { + "label": "ingress/index.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ingress/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ingress_index", + "community": 163, + "community_name": "Ingress", + "norm_label": "ingress/index.ts" + }, + { + "label": "ingress/types.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ingress/types.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ingress_types", + "community": 163, + "community_name": "Ingress", + "norm_label": "ingress/types.ts" + }, + { + "label": "IngressSource", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ingress/types.ts", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ingress_types_ingresssource", + "community": 163, + "community_name": "Ingress", + "norm_label": "ingresssource" + }, + { + "label": "IdentityHint", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ingress/types.ts", + "source_location": "L29", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ingress_types_identityhint", + "community": 163, + "community_name": "Ingress", + "norm_label": "identityhint" + }, + { + "label": "RawEnvelopeData", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ingress/types.ts", + "source_location": "L41", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ingress_types_rawenvelopedata", + "community": 163, + "community_name": "Ingress", + "norm_label": "rawenvelopedata" + }, + { + "label": "RawCapsuleRef", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ingress/types.ts", + "source_location": "L87", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ingress_types_rawcapsuleref", + "community": 163, + "community_name": "Ingress", + "norm_label": "rawcapsuleref" + }, + { + "label": "ImportPayload", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ingress/types.ts", + "source_location": "L111", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ingress_types_importpayload", + "community": 163, + "community_name": "Ingress", + "norm_label": "importpayload" + }, + { + "label": "IngressEvent", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ingress/types.ts", + "source_location": "L138", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ingress_types_ingressevent", + "community": 163, + "community_name": "Ingress", + "norm_label": "ingressevent" + }, + { + "label": "InboxImportItem", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ingress/types.ts", + "source_location": "L171", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ingress_types_inboximportitem", + "community": 163, + "community_name": "Ingress", + "norm_label": "inboximportitem" + }, + { + "label": "ImportResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ingress/types.ts", + "source_location": "L210", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ingress_types_importresult", + "community": 163, + "community_name": "Ingress", + "norm_label": "importresult" + }, + { + "label": "ValidationResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ingress/types.ts", + "source_location": "L231", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ingress_types_validationresult", + "community": 163, + "community_name": "Ingress", + "norm_label": "validationresult" + }, + { + "label": "EmailCandidate", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ingress/types.ts", + "source_location": "L255", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ingress_types_emailcandidate", + "community": 163, + "community_name": "Ingress", + "norm_label": "emailcandidate" + }, + { + "label": "useIngressStore.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ingress/useIngressStore.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ingress_useingressstore", + "community": 163, + "community_name": "Ingress", + "norm_label": "useingressstore.ts" + }, + { + "label": "IngressState", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ingress/useIngressStore.ts", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ingress_useingressstore_ingressstate", + "community": 163, + "community_name": "Ingress", + "norm_label": "ingressstate" + }, + { + "label": "useIngressStore", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ingress/useIngressStore.ts", + "source_location": "L76", + "_origin": "ast", + "id": "apps_extension_chromium_src_ingress_useingressstore_useingressstore", + "community": 163, + "community_name": "Ingress", + "norm_label": "useingressstore" + }, + { + "label": "useIngressEvents()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ingress/useIngressStore.ts", + "source_location": "L177", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ingress_useingressstore_useingressevents", + "community": 163, + "community_name": "Ingress", + "norm_label": "useingressevents()" + }, + { + "label": "useRecentIngressEvents()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ingress/useIngressStore.ts", + "source_location": "L180", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ingress_useingressstore_userecentingressevents", + "community": 163, + "community_name": "Ingress", + "norm_label": "userecentingressevents()" + }, + { + "label": "declaredModelAvailability.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/__tests__/declaredModelAvailability.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_tests_declaredmodelavailability_test", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "declaredmodelavailability.test.ts" + }, + { + "label": "globalSessionContextLlmPrefix.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/__tests__/globalSessionContextLlmPrefix.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_tests_globalsessioncontextllmprefix_test", + "community": 147, + "community_name": "UI Stores", + "norm_label": "globalsessioncontextllmprefix.test.ts" + }, + { + "label": "baseMode()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/__tests__/globalSessionContextLlmPrefix.test.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_tests_globalsessioncontextllmprefix_test_basemode", + "community": 147, + "community_name": "UI Stores", + "norm_label": "basemode()" + }, + { + "label": "globalSessionContextLlmPrefixRunMode.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/__tests__/globalSessionContextLlmPrefixRunMode.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_tests_globalsessioncontextllmprefixrunmode_test", + "community": 147, + "community_name": "UI Stores", + "norm_label": "globalsessioncontextllmprefixrunmode.test.ts" + }, + { + "label": "baseMode()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/__tests__/globalSessionContextLlmPrefixRunMode.test.ts", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_tests_globalsessioncontextllmprefixrunmode_test_basemode", + "community": 147, + "community_name": "UI Stores", + "norm_label": "basemode()" + }, + { + "label": "resolveOrchestratorSessionKey.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/__tests__/resolveOrchestratorSessionKey.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_tests_resolveorchestratorsessionkey_test", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "resolveorchestratorsessionkey.test.ts" + }, + { + "label": "agentBoxInferencePreSend.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/agentBoxInferencePreSend.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_agentboxinferencepresend", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "agentboxinferencepresend.ts" + }, + { + "label": "AgentBoxInferencePath", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/agentBoxInferencePreSend.ts", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_agentboxinferencepresend_agentboxinferencepath", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "agentboxinferencepath" + }, + { + "label": "selectionSourceForAgentBox()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/agentBoxInferencePreSend.ts", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_agentboxinferencepresend_selectionsourceforagentbox", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "selectionsourceforagentbox()" + }, + { + "label": "runAgentBoxInferencePreSend()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/agentBoxInferencePreSend.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_agentboxinferencepresend_runagentboxinferencepresend", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "runagentboxinferencepresend()" + }, + { + "label": "declaredModelAvailability.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/declaredModelAvailability.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_declaredmodelavailability", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "declaredmodelavailability.ts" + }, + { + "label": "ModelFallbackReason", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/declaredModelAvailability.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_declaredmodelavailability_modelfallbackreason", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "modelfallbackreason" + }, + { + "label": "ModelFallbackInfo", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/declaredModelAvailability.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_declaredmodelavailability_modelfallbackinfo", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "modelfallbackinfo" + }, + { + "label": "DeclaredModelResolutionWire", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/declaredModelAvailability.ts", + "source_location": "L21", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_declaredmodelavailability_declaredmodelresolutionwire", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "declaredmodelresolutionwire" + }, + { + "label": "defaultGetFetchHeaders()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/declaredModelAvailability.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_declaredmodelavailability_defaultgetfetchheaders", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "defaultgetfetchheaders()" + }, + { + "label": "formatModelFallbackBanner()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/declaredModelAvailability.ts", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_declaredmodelavailability_formatmodelfallbackbanner", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "formatmodelfallbackbanner()" + }, + { + "label": "applyModelFallbackBanner()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/declaredModelAvailability.ts", + "source_location": "L66", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_declaredmodelavailability_applymodelfallbackbanner", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "applymodelfallbackbanner()" + }, + { + "label": "parseModelFallbackFromChatData()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/declaredModelAvailability.ts", + "source_location": "L71", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_declaredmodelavailability_parsemodelfallbackfromchatdata", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "parsemodelfallbackfromchatdata()" + }, + { + "label": "resolveDeclaredModelViaHttp()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/declaredModelAvailability.ts", + "source_location": "L88", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_declaredmodelavailability_resolvedeclaredmodelviahttp", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "resolvedeclaredmodelviahttp()" + }, + { + "label": "wireToFallback()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/declaredModelAvailability.ts", + "source_location": "L126", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_declaredmodelavailability_wiretofallback", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "wiretofallback()" + }, + { + "label": "buildLlmRequestBodyWithAvailability()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/declaredModelAvailability.ts", + "source_location": "L139", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_declaredmodelavailability_buildllmrequestbodywithavailability", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "buildllmrequestbodywithavailability()" + }, + { + "label": "LlmChatPostResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/declaredModelAvailability.ts", + "source_location": "L201", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_declaredmodelavailability_llmchatpostresult", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "llmchatpostresult" + }, + { + "label": "postLlmChatWithAvailability()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/declaredModelAvailability.ts", + "source_location": "L206", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_declaredmodelavailability_postllmchatwithavailability", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "postllmchatwithavailability()" + }, + { + "label": "globalSessionContextLlmPrefix.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/globalSessionContextLlmPrefix.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix", + "community": 147, + "community_name": "UI Stores", + "norm_label": "globalsessioncontextllmprefix.ts" + }, + { + "label": "GLOBAL_SESSION_CONTEXT_MAX_CHARS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/globalSessionContextLlmPrefix.ts", + "source_location": "L17", + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix_global_session_context_max_chars", + "community": 147, + "community_name": "UI Stores", + "norm_label": "global_session_context_max_chars" + }, + { + "label": "pdfAttachmentNote()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/globalSessionContextLlmPrefix.ts", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix_pdfattachmentnote", + "community": 147, + "community_name": "UI Stores", + "norm_label": "pdfattachmentnote()" + }, + { + "label": "formatBlobSection()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/globalSessionContextLlmPrefix.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix_formatblobsection", + "community": 147, + "community_name": "UI Stores", + "norm_label": "formatblobsection()" + }, + { + "label": "formatGlobalSessionContextForLlmPrefix()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/globalSessionContextLlmPrefix.ts", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix_formatglobalsessioncontextforllmprefix", + "community": 147, + "community_name": "UI Stores", + "norm_label": "formatglobalsessioncontextforllmprefix()" + }, + { + "label": "loadAndFormatGlobalSessionContextPrefix()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/globalSessionContextLlmPrefix.ts", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix_loadandformatglobalsessioncontextprefix", + "community": 147, + "community_name": "UI Stores", + "norm_label": "loadandformatglobalsessioncontextprefix()" + }, + { + "label": "shouldApplyModeContextLayer()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/globalSessionContextLlmPrefix.ts", + "source_location": "L63", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix_shouldapplymodecontextlayer", + "community": 147, + "community_name": "UI Stores", + "norm_label": "shouldapplymodecontextlayer()" + }, + { + "label": "buildInferenceContextPrefix()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/globalSessionContextLlmPrefix.ts", + "source_location": "L80", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix_buildinferencecontextprefix", + "community": 147, + "community_name": "UI Stores", + "norm_label": "buildinferencecontextprefix()" + }, + { + "label": "buildGlobalSessionContextPrefixOnly()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/globalSessionContextLlmPrefix.ts", + "source_location": "L107", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix_buildglobalsessioncontextprefixonly", + "community": 147, + "community_name": "UI Stores", + "norm_label": "buildglobalsessioncontextprefixonly()" + }, + { + "label": "globalSessionContextStorage.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/globalSessionContextStorage.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_globalsessioncontextstorage", + "community": 147, + "community_name": "UI Stores", + "norm_label": "globalsessioncontextstorage.ts" + }, + { + "label": "GlobalSessionContextBlob", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/globalSessionContextStorage.ts", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_globalsessioncontextstorage_globalsessioncontextblob", + "community": 147, + "community_name": "UI Stores", + "norm_label": "globalsessioncontextblob" + }, + { + "label": "LoadedGlobalSessionContext", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/globalSessionContextStorage.ts", + "source_location": "L16", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_globalsessioncontextstorage_loadedglobalsessioncontext", + "community": 147, + "community_name": "UI Stores", + "norm_label": "loadedglobalsessioncontext" + }, + { + "label": "normalizeBlob()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/globalSessionContextStorage.ts", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_globalsessioncontextstorage_normalizeblob", + "community": 147, + "community_name": "UI Stores", + "norm_label": "normalizeblob()" + }, + { + "label": "readStorageKeys()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/globalSessionContextStorage.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_globalsessioncontextstorage_readstoragekeys", + "community": 147, + "community_name": "UI Stores", + "norm_label": "readstoragekeys()" + }, + { + "label": "loadGlobalSessionContextForKey()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/globalSessionContextStorage.ts", + "source_location": "L51", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_globalsessioncontextstorage_loadglobalsessioncontextforkey", + "community": 147, + "community_name": "UI Stores", + "norm_label": "loadglobalsessioncontextforkey()" + }, + { + "label": "extension-chromium/src/lib/hostAiSelectorCopy.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/hostAiSelectorCopy.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_hostaiselectorcopy", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "extension-chromium/src/lib/hostaiselectorcopy.ts" + }, + { + "label": "HOST_AI_OPTION_TOOLTIP", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/hostAiSelectorCopy.ts", + "source_location": "L3", + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_hostaiselectorcopy_host_ai_option_tooltip", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "host_ai_option_tooltip" + }, + { + "label": "HOST_AI_UNREACHABLE_TOOLTIP", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/hostAiSelectorCopy.ts", + "source_location": "L6", + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_hostaiselectorcopy_host_ai_unreachable_tooltip", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "host_ai_unreachable_tooltip" + }, + { + "label": "HOST_AI_P2P_OFFLINE_DETAIL_TOOLTIP", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/hostAiSelectorCopy.ts", + "source_location": "L10", + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_hostaiselectorcopy_host_ai_p2p_offline_detail_tooltip", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "host_ai_p2p_offline_detail_tooltip" + }, + { + "label": "HOST_AI_CHECKING_TOOLTIP", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/hostAiSelectorCopy.ts", + "source_location": "L21", + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_hostaiselectorcopy_host_ai_checking_tooltip", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "host_ai_checking_tooltip" + }, + { + "label": "HOST_AI_STALE_INLINE", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/hostAiSelectorCopy.ts", + "source_location": "L24", + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_hostaiselectorcopy_host_ai_stale_inline", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "host_ai_stale_inline" + }, + { + "label": "GROUP_LOCAL_MODELS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/hostAiSelectorCopy.ts", + "source_location": "L27", + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_hostaiselectorcopy_group_local_models", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "group_local_models" + }, + { + "label": "GROUP_HOST_MODELS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/hostAiSelectorCopy.ts", + "source_location": "L28", + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_hostaiselectorcopy_group_host_models", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "group_host_models" + }, + { + "label": "GROUP_INTERNAL_HOST", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/hostAiSelectorCopy.ts", + "source_location": "L30", + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_hostaiselectorcopy_group_internal_host", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "group_internal_host" + }, + { + "label": "GROUP_CLOUD", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/hostAiSelectorCopy.ts", + "source_location": "L31", + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_hostaiselectorcopy_group_cloud", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "group_cloud" + }, + { + "label": "hostInferenceRouteIds.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/hostInferenceRouteIds.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_hostinferencerouteids", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "hostinferencerouteids.ts" + }, + { + "label": "parseHostInferenceModelId()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/hostInferenceRouteIds.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_hostinferencerouteids_parsehostinferencemodelid", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "parsehostinferencemodelid()" + }, + { + "label": "parseHostInternalInferenceModelId()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/hostInferenceRouteIds.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_hostinferencerouteids_parsehostinternalinferencemodelid", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "parsehostinternalinferencemodelid()" + }, + { + "label": "parseAnyHostInferenceModelId()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/hostInferenceRouteIds.ts", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_hostinferencerouteids_parseanyhostinferencemodelid", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "parseanyhostinferencemodelid()" + }, + { + "label": "isHostInferenceRouteId()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/hostInferenceRouteIds.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_hostinferencerouteids_ishostinferencerouteid", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "ishostinferencerouteid()" + }, + { + "label": "inferenceSubmitRouting.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/inferenceSubmitRouting.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_inferencesubmitrouting", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "inferencesubmitrouting.ts" + }, + { + "label": "isHostInternalChatModelId()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/inferenceSubmitRouting.ts", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_inferencesubmitrouting_ishostinternalchatmodelid", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "ishostinternalchatmodelid()" + }, + { + "label": "ChatInferenceKind", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/inferenceSubmitRouting.ts", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_inferencesubmitrouting_chatinferencekind", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "chatinferencekind" + }, + { + "label": "AvailableOrchestratorModel", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/inferenceSubmitRouting.ts", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_inferencesubmitrouting_availableorchestratormodel", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "availableorchestratormodel" + }, + { + "label": "resolveChatInferenceKind()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/inferenceSubmitRouting.ts", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_inferencesubmitrouting_resolvechatinferencekind", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "resolvechatinferencekind()" + }, + { + "label": "formatInternalInferenceErrorCode()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/inferenceSubmitRouting.ts", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_inferencesubmitrouting_formatinternalinferenceerrorcode", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "formatinternalinferenceerrorcode()" + }, + { + "label": "appendHostAiAttributionLine()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/inferenceSubmitRouting.ts", + "source_location": "L94", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_inferencesubmitrouting_appendhostaiattributionline", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "appendhostaiattributionline()" + }, + { + "label": "hostModelDisplayNameFromSelection()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/inferenceSubmitRouting.ts", + "source_location": "L99", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_inferencesubmitrouting_hostmodeldisplaynamefromselection", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "hostmodeldisplaynamefromselection()" + }, + { + "label": "HostInternalCompletionParams", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/inferenceSubmitRouting.ts", + "source_location": "L113", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_inferencesubmitrouting_hostinternalcompletionparams", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "hostinternalcompletionparams" + }, + { + "label": "InternalInfApi", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/inferenceSubmitRouting.ts", + "source_location": "L125", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_inferencesubmitrouting_internalinfapi", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "internalinfapi" + }, + { + "label": "getRequestHostCompletion()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/inferenceSubmitRouting.ts", + "source_location": "L135", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_inferencesubmitrouting_getrequesthostcompletion", + "community": 159, + "community_name": "Hostaitargetconnectionpresentation", + "norm_label": "getrequesthostcompletion()" + }, + { + "label": "lib/localModelIdentity.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/localModelIdentity.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_localmodelidentity", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "lib/localmodelidentity.ts" + }, + { + "label": "canonicalLocalModelName()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/localModelIdentity.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_localmodelidentity_canonicallocalmodelname", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "canonicallocalmodelname()" + }, + { + "label": "resolveLocalModelAlias()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/localModelIdentity.ts", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_localmodelidentity_resolvelocalmodelalias", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "resolvelocalmodelalias()" + }, + { + "label": "localModelIdsMatch()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/localModelIdentity.ts", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_localmodelidentity_localmodelidsmatch", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "localmodelidsmatch()" + }, + { + "label": "dedupeCanonicalModelNames()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/localModelIdentity.ts", + "source_location": "L51", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_localmodelidentity_dedupecanonicalmodelnames", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "dedupecanonicalmodelnames()" + }, + { + "label": "resolveOrchestratorSessionKey.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/resolveOrchestratorSessionKey.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "resolveorchestratorsessionkey.ts" + }, + { + "label": "ORCHESTRATOR_ACTIVE_SESSION_STORAGE_KEY", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/resolveOrchestratorSessionKey.ts", + "source_location": "L6", + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_orchestrator_active_session_storage_key", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "orchestrator_active_session_storage_key" + }, + { + "label": "ORCHESTRATOR_GLOBAL_ACTIVE_SESSION_KEY", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/resolveOrchestratorSessionKey.ts", + "source_location": "L7", + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_orchestrator_global_active_session_key", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "orchestrator_global_active_session_key" + }, + { + "label": "ORCHESTRATOR_TAB_SESSION_STORAGE_KEY", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/resolveOrchestratorSessionKey.ts", + "source_location": "L8", + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_orchestrator_tab_session_storage_key", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "orchestrator_tab_session_storage_key" + }, + { + "label": "ORCHESTRATOR_ACTIVE_MODE_SESSION_ID_KEY", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/resolveOrchestratorSessionKey.ts", + "source_location": "L10", + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_orchestrator_active_mode_session_id_key", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "orchestrator_active_mode_session_id_key" + }, + { + "label": "ORCHESTRATOR_ACTIVE_MODE_ID_KEY", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/resolveOrchestratorSessionKey.ts", + "source_location": "L11", + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_orchestrator_active_mode_id_key", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "orchestrator_active_mode_id_key" + }, + { + "label": "GLOBAL_ACCOUNT_CONTEXT_KEY", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/resolveOrchestratorSessionKey.ts", + "source_location": "L12", + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_global_account_context_key", + "community": 147, + "community_name": "UI Stores", + "norm_label": "global_account_context_key" + }, + { + "label": "ResolveOrchestratorSessionKeyContext", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/resolveOrchestratorSessionKey.ts", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_resolveorchestratorsessionkeycontext", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "resolveorchestratorsessionkeycontext" + }, + { + "label": "OrchestratorSessionHintsFromStorage", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/resolveOrchestratorSessionKey.ts", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_orchestratorsessionhintsfromstorage", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "orchestratorsessionhintsfromstorage" + }, + { + "label": "normalizeOrchestratorSessionKey()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/resolveOrchestratorSessionKey.ts", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_normalizeorchestratorsessionkey", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "normalizeorchestratorsessionkey()" + }, + { + "label": "globalSessionContextStorageKeys()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/resolveOrchestratorSessionKey.ts", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_globalsessioncontextstoragekeys", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "globalsessioncontextstoragekeys()" + }, + { + "label": "logGlobalContextSessionKey()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/resolveOrchestratorSessionKey.ts", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_logglobalcontextsessionkey", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "logglobalcontextsessionkey()" + }, + { + "label": "resolveOrchestratorSessionKeyForInference()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/resolveOrchestratorSessionKey.ts", + "source_location": "L69", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_resolveorchestratorsessionkeyforinference", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "resolveorchestratorsessionkeyforinference()" + }, + { + "label": "readActiveSessionKeyFromChromeStorage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/resolveOrchestratorSessionKey.ts", + "source_location": "L87", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_readactivesessionkeyfromchromestorage", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "readactivesessionkeyfromchromestorage()" + }, + { + "label": "readOrchestratorSessionHintsFromChromeStorage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/resolveOrchestratorSessionKey.ts", + "source_location": "L100", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_readorchestratorsessionhintsfromchromestorage", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "readorchestratorsessionhintsfromchromestorage()" + }, + { + "label": "resolveOrchestratorSessionKeyForInferenceAsync()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/resolveOrchestratorSessionKey.ts", + "source_location": "L133", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_resolveorchestratorsessionkeyforinferenceasync", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "resolveorchestratorsessionkeyforinferenceasync()" + }, + { + "label": "inferenceSessionKeyContextFromMode()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/resolveOrchestratorSessionKey.ts", + "source_location": "L143", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_inferencesessionkeycontextfrommode", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "inferencesessionkeycontextfrommode()" + }, + { + "label": "wrChatExtensionAiContext.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionAiContext.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_wrchatextensionaicontext", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "wrchatextensionaicontext.ts" + }, + { + "label": "WrChatExtensionAiExecutionPayload", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionAiContext.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_wrchatextensionaicontext_wrchatextensionaiexecutionpayload", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "wrchatextensionaiexecutionpayload" + }, + { + "label": "normalizeHostModelFromRow()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionAiContext.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_wrchatextensionaicontext_normalizehostmodelfromrow", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "normalizehostmodelfromrow()" + }, + { + "label": "buildWrChatExtensionAiExecutionPayload()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionAiContext.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_wrchatextensionaicontext_buildwrchatextensionaiexecutionpayload", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "buildwrchatextensionaiexecutionpayload()" + }, + { + "label": "wrChatExtensionModelPersistence.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionModelPersistence.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "wrchatextensionmodelpersistence.ts" + }, + { + "label": "WRCHAT_EXT_ACTIVE_MODEL_KEY", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionModelPersistence.ts", + "source_location": "L7", + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_wrchat_ext_active_model_key", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "wrchat_ext_active_model_key" + }, + { + "label": "WrChatExtensionSelectionSource", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionModelPersistence.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_wrchatextensionselectionsource", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "wrchatextensionselectionsource" + }, + { + "label": "PersistedMeta", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionModelPersistence.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_persistedmeta", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "persistedmeta" + }, + { + "label": "dispatchModelChanged()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionModelPersistence.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_dispatchmodelchanged", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "dispatchmodelchanged()" + }, + { + "label": "parseMeta()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionModelPersistence.ts", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_parsemeta", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "parsemeta()" + }, + { + "label": "persistWrChatExtensionModelId()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionModelPersistence.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_persistwrchatextensionmodelid", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "persistwrchatextensionmodelid()" + }, + { + "label": "loadPersistedWrChatExtensionModel()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionModelPersistence.ts", + "source_location": "L59", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_loadpersistedwrchatextensionmodel", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "loadpersistedwrchatextensionmodel()" + }, + { + "label": "clearPersistedWrChatExtensionModel()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionModelPersistence.ts", + "source_location": "L73", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_clearpersistedwrchatextensionmodel", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "clearpersistedwrchatextensionmodel()" + }, + { + "label": "subscribeWrChatExtensionModel()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionModelPersistence.ts", + "source_location": "L80", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_subscribewrchatextensionmodel", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "subscribewrchatextensionmodel()" + }, + { + "label": "mapExtensionSelectionSourceForLog()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionModelPersistence.ts", + "source_location": "L93", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_mapextensionselectionsourceforlog", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "mapextensionselectionsourceforlog()" + }, + { + "label": "wrChatExtensionPreSend.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionPreSend.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_wrchatextensionpresend", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "wrchatextensionpresend.ts" + }, + { + "label": "WrChatExtensionOrigin", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionPreSend.ts", + "source_location": "L15", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_wrchatextensionpresend_wrchatextensionorigin", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "wrchatextensionorigin" + }, + { + "label": "wrChatExtensionDebugLog()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionPreSend.ts", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_wrchatextensionpresend_wrchatextensiondebuglog", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "wrchatextensiondebuglog()" + }, + { + "label": "logSelectionSourceForSend()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionPreSend.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_wrchatextensionpresend_logselectionsourceforsend", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "logselectionsourceforsend()" + }, + { + "label": "runWrChatExtensionPreSend()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionPreSend.ts", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_wrchatextensionpresend_runwrchatextensionpresend", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "runwrchatextensionpresend()" + }, + { + "label": "wrChatHostInferenceShared.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/wrChatHostInferenceShared.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_wrchathostinferenceshared", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "wrchathostinferenceshared.ts" + }, + { + "label": "WrChatSubmitOrigin", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/wrChatHostInferenceShared.ts", + "source_location": "L15", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_wrchathostinferenceshared_wrchatsubmitorigin", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "wrchatsubmitorigin" + }, + { + "label": "ResolvedWrChatExecutionTransport", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/wrChatHostInferenceShared.ts", + "source_location": "L21", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_wrchathostinferenceshared_resolvedwrchatexecutiontransport", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "resolvedwrchatexecutiontransport" + }, + { + "label": "WrChatHostSelectorRow", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/wrChatHostInferenceShared.ts", + "source_location": "L27", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_wrchathostinferenceshared_wrchathostselectorrow", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "wrchathostselectorrow" + }, + { + "label": "resolveWrChatExecutionTransport()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/wrChatHostInferenceShared.ts", + "source_location": "L41", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_wrchathostinferenceshared_resolvewrchatexecutiontransport", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "resolvewrchatexecutiontransport()" + }, + { + "label": "wrChatHostInternalWireModel()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/wrChatHostInferenceShared.ts", + "source_location": "L58", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_wrchathostinferenceshared_wrchathostinternalwiremodel", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "wrchathostinternalwiremodel()" + }, + { + "label": "WrChatInferenceRoutingLog", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/wrChatHostInferenceShared.ts", + "source_location": "L68", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_wrchathostinferenceshared_wrchatinferenceroutinglog", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "wrchatinferenceroutinglog" + }, + { + "label": "logWrChatInferenceRoutingPreflight()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/wrChatHostInferenceShared.ts", + "source_location": "L80", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_wrchathostinferenceshared_logwrchatinferenceroutingpreflight", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "logwrchatinferenceroutingpreflight()" + }, + { + "label": "WrChatSimpleChatBubble", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/wrChatHostInferenceShared.ts", + "source_location": "L84", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_wrchathostinferenceshared_wrchatsimplechatbubble", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "wrchatsimplechatbubble" + }, + { + "label": "buildHostInternalMessagesFromSimpleChat()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/wrChatHostInferenceShared.ts", + "source_location": "L94", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_wrchathostinferenceshared_buildhostinternalmessagesfromsimplechat", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "buildhostinternalmessagesfromsimplechat()" + }, + { + "label": "postWrChatHostInternalCompletionHttp()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/wrChatHostInferenceShared.ts", + "source_location": "L151", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_wrchathostinferenceshared_postwrchathostinternalcompletionhttp", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "postwrchathostinternalcompletionhttp()" + }, + { + "label": "runWrChatHostInferenceForExtensionSurface()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/wrChatHostInferenceShared.ts", + "source_location": "L206", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_wrchathostinferenceshared_runwrchathostinferenceforextensionsurface", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "runwrchathostinferenceforextensionsurface()" + }, + { + "label": "wrChatModelsFromLlmStatus.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/wrChatModelsFromLlmStatus.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_wrchatmodelsfromllmstatus", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "wrchatmodelsfromllmstatus.ts" + }, + { + "label": "WrChatSelectorRow", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/wrChatModelsFromLlmStatus.ts", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_wrchatmodelsfromllmstatus_wrchatselectorrow", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "wrchatselectorrow" + }, + { + "label": "buildWrChatSelectorModelsFromLlmStatus()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/wrChatModelsFromLlmStatus.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_wrchatmodelsfromllmstatus_buildwrchatselectormodelsfromllmstatus", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "buildwrchatselectormodelsfromllmstatus()" + }, + { + "label": "wrChatModelButtonShortLabel()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/wrChatModelsFromLlmStatus.ts", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_wrchatmodelsfromllmstatus_wrchatmodelbuttonshortlabel", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "wrchatmodelbuttonshortlabel()" + }, + { + "label": "chooseDefaultWrChatModel()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/wrChatModelsFromLlmStatus.ts", + "source_location": "L67", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_wrchatmodelsfromllmstatus_choosedefaultwrchatmodel", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "choosedefaultwrchatmodel()" + }, + { + "label": "wrChatSelectionHygiene.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/wrChatSelectionHygiene.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_wrchatselectionhygiene", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "wrchatselectionhygiene.ts" + }, + { + "label": "WrChatHostRowLike", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/wrChatSelectionHygiene.ts", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_wrchatselectionhygiene_wrchathostrowlike", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "wrchathostrowlike" + }, + { + "label": "WrChatHostSelectionResolution", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/wrChatSelectionHygiene.ts", + "source_location": "L32", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_wrchatselectionhygiene_wrchathostselectionresolution", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "wrchathostselectionresolution" + }, + { + "label": "hostRowsForHandshake()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/wrChatSelectionHygiene.ts", + "source_location": "L42", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_wrchatselectionhygiene_hostrowsforhandshake", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "hostrowsforhandshake()" + }, + { + "label": "resolveWrChatHostSelectionForSend()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/wrChatSelectionHygiene.ts", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_wrchatselectionhygiene_resolvewrchathostselectionforsend", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "resolvewrchathostselectionforsend()" + }, + { + "label": "finishMigration()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/wrChatSelectionHygiene.ts", + "source_location": "L138", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_wrchatselectionhygiene_finishmigration", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "finishmigration()" + }, + { + "label": "wrdeskOptimizationEvents.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/wrdeskOptimizationEvents.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_wrdeskoptimizationevents", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "wrdeskoptimizationevents.ts" + }, + { + "label": "WRDESK_OPTIMIZATION_RUN_RESULTS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/lib/wrdeskOptimizationEvents.ts", + "source_location": "L2", + "_origin": "ast", + "id": "apps_extension_chromium_src_lib_wrdeskoptimizationevents_wrdesk_optimization_run_results", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "wrdesk_optimization_run_results" + }, + { + "label": "mailguard-content-script.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_mailguard_content_script", + "community": 123, + "community_name": "Mailguardcontentscript", + "norm_label": "mailguard-content-script.ts" + }, + { + "label": "EmailRowRect", + "file_type": "code", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L39", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_mailguard_content_script_emailrowrect", + "community": 123, + "community_name": "Mailguardcontentscript", + "norm_label": "emailrowrect" + }, + { + "label": "ProtectedAreaBounds", + "file_type": "code", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L50", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_mailguard_content_script_protectedareabounds", + "community": 123, + "community_name": "Mailguardcontentscript", + "norm_label": "protectedareabounds" + }, + { + "label": "SanitizedEmail", + "file_type": "code", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L59", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_mailguard_content_script_sanitizedemail", + "community": 123, + "community_name": "Mailguardcontentscript", + "norm_label": "sanitizedemail" + }, + { + "label": "debugLog()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L72", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_mailguard_content_script_debuglog", + "community": 123, + "community_name": "Mailguardcontentscript", + "norm_label": "debuglog()" + }, + { + "label": "emailRowElements", + "file_type": "code", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L84", + "_origin": "ast", + "id": "apps_extension_chromium_src_mailguard_content_script_emailrowelements", + "community": 123, + "community_name": "Mailguardcontentscript", + "norm_label": "emailrowelements" + }, + { + "label": "isEmailElement()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L104", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_mailguard_content_script_isemailelement", + "community": 123, + "community_name": "Mailguardcontentscript", + "norm_label": "isemailelement()" + }, + { + "label": "blockEmailClick()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L121", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_mailguard_content_script_blockemailclick", + "community": 123, + "community_name": "Mailguardcontentscript", + "norm_label": "blockemailclick()" + }, + { + "label": "LIGHTBOX_SELECTORS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L188", + "_origin": "ast", + "id": "apps_extension_chromium_src_mailguard_content_script_lightbox_selectors", + "community": 123, + "community_name": "Mailguardcontentscript", + "norm_label": "lightbox_selectors" + }, + { + "label": "isAnyLightboxOpen()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L205", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_mailguard_content_script_isanylightboxopen", + "community": 123, + "community_name": "Mailguardcontentscript", + "norm_label": "isanylightboxopen()" + }, + { + "label": "sendLightboxOverlayState()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L212", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_mailguard_content_script_sendlightboxoverlaystate", + "community": 123, + "community_name": "Mailguardcontentscript", + "norm_label": "sendlightboxoverlaystate()" + }, + { + "label": "themeColors", + "file_type": "code", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L256", + "_origin": "ast", + "id": "apps_extension_chromium_src_mailguard_content_script_themecolors", + "community": 123, + "community_name": "Mailguardcontentscript", + "norm_label": "themecolors" + }, + { + "label": "loadTheme()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L292", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_mailguard_content_script_loadtheme", + "community": 123, + "community_name": "Mailguardcontentscript", + "norm_label": "loadtheme()" + }, + { + "label": "sendToBackground()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L323", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_mailguard_content_script_sendtobackground", + "community": 123, + "community_name": "Mailguardcontentscript", + "norm_label": "sendtobackground()" + }, + { + "label": "showActivationBanner()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L345", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_mailguard_content_script_showactivationbanner", + "community": 123, + "community_name": "Mailguardcontentscript", + "norm_label": "showactivationbanner()" + }, + { + "label": "dismissBanner()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L457", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_mailguard_content_script_dismissbanner", + "community": 123, + "community_name": "Mailguardcontentscript", + "norm_label": "dismissbanner()" + }, + { + "label": "showReEnableBanner()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L462", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_mailguard_content_script_showreenablebanner", + "community": 123, + "community_name": "Mailguardcontentscript", + "norm_label": "showreenablebanner()" + }, + { + "label": "showStatusMarker()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L514", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_mailguard_content_script_showstatusmarker", + "community": 123, + "community_name": "Mailguardcontentscript", + "norm_label": "showstatusmarker()" + }, + { + "label": "showConnectionWarning()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L522", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_mailguard_content_script_showconnectionwarning", + "community": 123, + "community_name": "Mailguardcontentscript", + "norm_label": "showconnectionwarning()" + }, + { + "label": "hideConnectionWarning()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L549", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_mailguard_content_script_hideconnectionwarning", + "community": 123, + "community_name": "Mailguardcontentscript", + "norm_label": "hideconnectionwarning()" + }, + { + "label": "getEmailRowPositions()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L558", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_mailguard_content_script_getemailrowpositions", + "community": 123, + "community_name": "Mailguardcontentscript", + "norm_label": "getemailrowpositions()" + }, + { + "label": "EMAIL_LIST_CONTAINER_SELECTORS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L628", + "_origin": "ast", + "id": "apps_extension_chromium_src_mailguard_content_script_email_list_container_selectors", + "community": 123, + "community_name": "Mailguardcontentscript", + "norm_label": "email_list_container_selectors" + }, + { + "label": "getEmailListBounds()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L648", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_mailguard_content_script_getemaillistbounds", + "community": 123, + "community_name": "Mailguardcontentscript", + "norm_label": "getemaillistbounds()" + }, + { + "label": "sendWindowPosition()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L720", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_mailguard_content_script_sendwindowposition", + "community": 123, + "community_name": "Mailguardcontentscript", + "norm_label": "sendwindowposition()" + }, + { + "label": "initializeListeners()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L733", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_mailguard_content_script_initializelisteners", + "community": 123, + "community_name": "Mailguardcontentscript", + "norm_label": "initializelisteners()" + }, + { + "label": "startRowPositionUpdates()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L826", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_mailguard_content_script_startrowpositionupdates", + "community": 123, + "community_name": "Mailguardcontentscript", + "norm_label": "startrowpositionupdates()" + }, + { + "label": "EmailProvider", + "file_type": "code", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L891", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_mailguard_content_script_emailprovider", + "community": 123, + "community_name": "Mailguardcontentscript", + "norm_label": "emailprovider" + }, + { + "label": "getCurrentEmailProvider()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L893", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_mailguard_content_script_getcurrentemailprovider", + "community": 123, + "community_name": "Mailguardcontentscript", + "norm_label": "getcurrentemailprovider()" + }, + { + "label": "isOnSupportedEmailSite()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L901", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_mailguard_content_script_isonsupportedemailsite", + "community": 198, + "community_name": "Wrguard", + "norm_label": "isonsupportedemailsite()" + }, + { + "label": "EMAIL_ROW_SELECTORS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L907", + "_origin": "ast", + "id": "apps_extension_chromium_src_mailguard_content_script_email_row_selectors", + "community": 123, + "community_name": "Mailguardcontentscript", + "norm_label": "email_row_selectors" + }, + { + "label": "EMAIL_SELECTORS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L913", + "_origin": "ast", + "id": "apps_extension_chromium_src_mailguard_content_script_email_selectors", + "community": 123, + "community_name": "Mailguardcontentscript", + "norm_label": "email_selectors" + }, + { + "label": "stopRowPositionUpdates()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L935", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_mailguard_content_script_stoprowpositionupdates", + "community": 123, + "community_name": "Mailguardcontentscript", + "norm_label": "stoprowpositionupdates()" + }, + { + "label": "extractEmailContent()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L952", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_mailguard_content_script_extractemailcontent", + "community": 123, + "community_name": "Mailguardcontentscript", + "norm_label": "extractemailcontent()" + }, + { + "label": "sanitizeHtmlToText()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L1080", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_mailguard_content_script_sanitizehtmltotext", + "community": 123, + "community_name": "Mailguardcontentscript", + "norm_label": "sanitizehtmltotext()" + }, + { + "label": "processNodeToText()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L1108", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_mailguard_content_script_processnodetotext", + "community": 123, + "community_name": "Mailguardcontentscript", + "norm_label": "processnodetotext()" + }, + { + "label": "activateMailGuard()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L1174", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_mailguard_content_script_activatemailguard", + "community": 123, + "community_name": "Mailguardcontentscript", + "norm_label": "activatemailguard()" + }, + { + "label": "showActivationError()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L1290", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_mailguard_content_script_showactivationerror", + "community": 123, + "community_name": "Mailguardcontentscript", + "norm_label": "showactivationerror()" + }, + { + "label": "deactivateMailGuard()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L1324", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_mailguard_content_script_deactivatemailguard", + "community": 123, + "community_name": "Mailguardcontentscript", + "norm_label": "deactivatemailguard()" + }, + { + "label": "showWRGuardProtectionOverlay()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L1480", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_mailguard_content_script_showwrguardprotectionoverlay", + "community": 123, + "community_name": "Mailguardcontentscript", + "norm_label": "showwrguardprotectionoverlay()" + }, + { + "label": "hideWRGuardProtectionOverlay()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L1907", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_mailguard_content_script_hidewrguardprotectionoverlay", + "community": 123, + "community_name": "Mailguardcontentscript", + "norm_label": "hidewrguardprotectionoverlay()" + }, + { + "label": "init()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L1918", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_mailguard_content_script_init", + "community": 123, + "community_name": "Mailguardcontentscript", + "norm_label": "init()" + }, + { + "label": "waitForEmailUIReady()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L1950", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_mailguard_content_script_waitforemailuiready", + "community": 123, + "community_name": "Mailguardcontentscript", + "norm_label": "waitforemailuiready()" + }, + { + "label": "NOTE: We intentionally do NOT deactivate on tab visibility change", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L819", + "_origin": "ast", + "id": "apps_extension_chromium_src_mailguard_content_script_rationale_819", + "community": 123, + "community_name": "Mailguardcontentscript", + "norm_label": "note: we intentionally do not deactivate on tab visibility change" + }, + { + "label": "IMPORTANT: This extracts ONLY preview info from inbox rows.", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L948", + "_origin": "ast", + "id": "apps_extension_chromium_src_mailguard_content_script_rationale_948", + "community": 123, + "community_name": "Mailguardcontentscript", + "norm_label": "important: this extracts only preview info from inbox rows." + }, + { + "label": "NlpClassifier.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_nlp_nlpclassifier", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": "nlpclassifier.ts" + }, + { + "label": "WinkNlp", + "file_type": "code", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_nlp_nlpclassifier_winknlp", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": "winknlp" + }, + { + "label": "WinkModel", + "file_type": "code", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_nlp_nlpclassifier_winkmodel", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": "winkmodel" + }, + { + "label": "WinkDoc", + "file_type": "code", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L24", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_nlp_nlpclassifier_winkdoc", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": "winkdoc" + }, + { + "label": "NlpClassifier", + "file_type": "code", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L29", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": "nlpclassifier" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L37", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_constructor", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": ".constructor()" + }, + { + "label": ".log()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L50", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_log", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": ".log()" + }, + { + "label": ".initialize()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L59", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_initialize", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": ".initialize()" + }, + { + "label": ".doInitialize()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L78", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_doinitialize", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": ".doinitialize()" + }, + { + "label": ".classify()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L100", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_classify", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": ".classify()" + }, + { + "label": ".parseWithWink()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L170", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_parsewithwink", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": ".parsewithwink()" + }, + { + "label": ".mapWinkEntityType()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L259", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_mapwinkentitytype", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": ".mapwinkentitytype()" + }, + { + "label": ".parseWithRegex()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L280", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_parsewithregex", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": ".parsewithregex()" + }, + { + "label": ".extractEntitiesWithRegex()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L310", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_extractentitieswithregex", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": ".extractentitieswithregex()" + }, + { + "label": ".detectIntents()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L404", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_detectintents", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": ".detectintents()" + }, + { + "label": ".normalizeText()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L431", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_normalizetext", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": ".normalizetext()" + }, + { + "label": ".extractTriggers()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L442", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_extracttriggers", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": ".extracttriggers()" + }, + { + "label": ".isNlpAvailable()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L455", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_isnlpavailable", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": ".isnlpavailable()" + }, + { + "label": ".getStatus()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L462", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_getstatus", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": ".getstatus()" + }, + { + "label": "NlpClassifier.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/nlp/__tests__/NlpClassifier.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_nlp_tests_nlpclassifier_test", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": "nlpclassifier.test.ts" + }, + { + "label": "nlp/index.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/nlp/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_nlp_index", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": "nlp/index.ts" + }, + { + "label": "nlp/types.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/nlp/types.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_nlp_types", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": "nlp/types.ts" + }, + { + "label": "ExtractedEntity", + "file_type": "code", + "source_file": "apps/extension-chromium/src/nlp/types.ts", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_nlp_types_extractedentity", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": "extractedentity" + }, + { + "label": "AgentReasoning", + "file_type": "code", + "source_file": "apps/extension-chromium/src/nlp/types.ts", + "source_location": "L27", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_nlp_types_agentreasoning", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": "agentreasoning" + }, + { + "label": "OutputSlot", + "file_type": "code", + "source_file": "apps/extension-chromium/src/nlp/types.ts", + "source_location": "L41", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_nlp_types_outputslot", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": "outputslot" + }, + { + "label": "AgentAllocation", + "file_type": "code", + "source_file": "apps/extension-chromium/src/nlp/types.ts", + "source_location": "L58", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_nlp_types_agentallocation", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": "agentallocation" + }, + { + "label": "ClassifiedInput", + "file_type": "code", + "source_file": "apps/extension-chromium/src/nlp/types.ts", + "source_location": "L93", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_nlp_types_classifiedinput", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": "classifiedinput" + }, + { + "label": "ClassificationResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/nlp/types.ts", + "source_location": "L140", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_nlp_types_classificationresult", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": "classificationresult" + }, + { + "label": "NlpClassifierConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/nlp/types.ts", + "source_location": "L152", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_nlp_types_nlpclassifierconfig", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": "nlpclassifierconfig" + }, + { + "label": "PackageList.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/packages/components/PackageList.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_packages_components_packagelist", + "community": 119, + "community_name": "Registrationservice", + "norm_label": "packagelist.tsx" + }, + { + "label": "PackageListProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/packages/components/PackageList.tsx", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_packages_components_packagelist_packagelistprops", + "community": 119, + "community_name": "Registrationservice", + "norm_label": "packagelistprops" + }, + { + "label": "PackageList()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/packages/components/PackageList.tsx", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_packages_components_packagelist_packagelist", + "community": 119, + "community_name": "Registrationservice", + "norm_label": "packagelist()" + }, + { + "label": "PackageListItem.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/packages/components/PackageListItem.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_packages_components_packagelistitem", + "community": 119, + "community_name": "Registrationservice", + "norm_label": "packagelistitem.tsx" + }, + { + "label": "PackageListItemProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/packages/components/PackageListItem.tsx", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_packages_components_packagelistitem_packagelistitemprops", + "community": 119, + "community_name": "Registrationservice", + "norm_label": "packagelistitemprops" + }, + { + "label": "STATUS_ICONS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/packages/components/PackageListItem.tsx", + "source_location": "L20", + "_origin": "ast", + "id": "apps_extension_chromium_src_packages_components_packagelistitem_status_icons", + "community": 119, + "community_name": "Registrationservice", + "norm_label": "status_icons" + }, + { + "label": "STATUS_COLORS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/packages/components/PackageListItem.tsx", + "source_location": "L29", + "_origin": "ast", + "id": "apps_extension_chromium_src_packages_components_packagelistitem_status_colors", + "community": 119, + "community_name": "Registrationservice", + "norm_label": "status_colors" + }, + { + "label": "PackageListItem()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/packages/components/PackageListItem.tsx", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_packages_components_packagelistitem_packagelistitem", + "community": 119, + "community_name": "Registrationservice", + "norm_label": "packagelistitem()" + }, + { + "label": "packages/components/index.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/packages/components/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_packages_components_index", + "community": 119, + "community_name": "Registrationservice", + "norm_label": "packages/components/index.ts" + }, + { + "label": "packages/index.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/packages/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_packages_index", + "community": 119, + "community_name": "Registrationservice", + "norm_label": "packages/index.ts" + }, + { + "label": "registrationService.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/packages/registrationService.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_packages_registrationservice", + "community": 119, + "community_name": "Registrationservice", + "norm_label": "registrationservice.ts" + }, + { + "label": "HandshakeRegistry", + "file_type": "code", + "source_file": "apps/extension-chromium/src/packages/registrationService.ts", + "source_location": "L30", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_packages_registrationservice_handshakeregistry", + "community": 119, + "community_name": "Registrationservice", + "norm_label": "handshakeregistry" + }, + { + "label": "generatePackageId()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/packages/registrationService.ts", + "source_location": "L49", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_packages_registrationservice_generatepackageid", + "community": 119, + "community_name": "Registrationservice", + "norm_label": "generatepackageid()" + }, + { + "label": "generatePackageIdSync()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/packages/registrationService.ts", + "source_location": "L78", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_packages_registrationservice_generatepackageidsync", + "community": 119, + "community_name": "Registrationservice", + "norm_label": "generatepackageidsync()" + }, + { + "label": "checkAutoRegister()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/packages/registrationService.ts", + "source_location": "L119", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_packages_registrationservice_checkautoregister", + "community": 119, + "community_name": "Registrationservice", + "norm_label": "checkautoregister()" + }, + { + "label": "registerPackageFromChannel()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/packages/registrationService.ts", + "source_location": "L202", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_packages_registrationservice_registerpackagefromchannel", + "community": 119, + "community_name": "Registrationservice", + "norm_label": "registerpackagefromchannel()" + }, + { + "label": "acceptPendingPackage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/packages/registrationService.ts", + "source_location": "L251", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_packages_registrationservice_acceptpendingpackage", + "community": 119, + "community_name": "Registrationservice", + "norm_label": "acceptpendingpackage()" + }, + { + "label": "rejectPendingPackage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/packages/registrationService.ts", + "source_location": "L263", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_packages_registrationservice_rejectpendingpackage", + "community": 119, + "community_name": "Registrationservice", + "norm_label": "rejectpendingpackage()" + }, + { + "label": "importFromGmail()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/packages/registrationService.ts", + "source_location": "L275", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_packages_registrationservice_importfromgmail", + "community": 119, + "community_name": "Registrationservice", + "norm_label": "importfromgmail()" + }, + { + "label": "importFromOutlook()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/packages/registrationService.ts", + "source_location": "L304", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_packages_registrationservice_importfromoutlook", + "community": 119, + "community_name": "Registrationservice", + "norm_label": "importfromoutlook()" + }, + { + "label": "importFromDownload()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/packages/registrationService.ts", + "source_location": "L334", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_packages_registrationservice_importfromdownload", + "community": 119, + "community_name": "Registrationservice", + "norm_label": "importfromdownload()" + }, + { + "label": "importFromWebMessenger()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/packages/registrationService.ts", + "source_location": "L363", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_packages_registrationservice_importfromwebmessenger", + "community": 119, + "community_name": "Registrationservice", + "norm_label": "importfromwebmessenger()" + }, + { + "label": "packages/types.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/packages/types.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_packages_types", + "community": 119, + "community_name": "Registrationservice", + "norm_label": "packages/types.ts" + }, + { + "label": "PackageStatus", + "file_type": "code", + "source_file": "apps/extension-chromium/src/packages/types.ts", + "source_location": "L26", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_packages_types_packagestatus", + "community": 119, + "community_name": "Registrationservice", + "norm_label": "packagestatus" + }, + { + "label": "STATUS_TO_SECTION", + "file_type": "code", + "source_file": "apps/extension-chromium/src/packages/types.ts", + "source_location": "L37", + "_origin": "ast", + "id": "apps_extension_chromium_src_packages_types_status_to_section", + "community": 119, + "community_name": "Registrationservice", + "norm_label": "status_to_section" + }, + { + "label": "IngressChannel", + "file_type": "code", + "source_file": "apps/extension-chromium/src/packages/types.ts", + "source_location": "L53", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_packages_types_ingresschannel", + "community": 119, + "community_name": "Registrationservice", + "norm_label": "ingresschannel" + }, + { + "label": "BeapPackage", + "file_type": "code", + "source_file": "apps/extension-chromium/src/packages/types.ts", + "source_location": "L72", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_packages_types_beappackage", + "community": 119, + "community_name": "Registrationservice", + "norm_label": "beappackage" + }, + { + "label": "IngressEvent", + "file_type": "code", + "source_file": "apps/extension-chromium/src/packages/types.ts", + "source_location": "L177", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_packages_types_ingressevent", + "community": 119, + "community_name": "Registrationservice", + "norm_label": "ingressevent" + }, + { + "label": "AutoRegisterPolicy", + "file_type": "code", + "source_file": "apps/extension-chromium/src/packages/types.ts", + "source_location": "L233", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_packages_types_autoregisterpolicy", + "community": 119, + "community_name": "Registrationservice", + "norm_label": "autoregisterpolicy" + }, + { + "label": "AutoRegisterCheckResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/packages/types.ts", + "source_location": "L241", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_packages_types_autoregistercheckresult", + "community": 119, + "community_name": "Registrationservice", + "norm_label": "autoregistercheckresult" + }, + { + "label": "PackageRegistrationRequest", + "file_type": "code", + "source_file": "apps/extension-chromium/src/packages/types.ts", + "source_location": "L262", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_packages_types_packageregistrationrequest", + "community": 119, + "community_name": "Registrationservice", + "norm_label": "packageregistrationrequest" + }, + { + "label": "PackageRegistrationResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/packages/types.ts", + "source_location": "L321", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_packages_types_packageregistrationresult", + "community": 119, + "community_name": "Registrationservice", + "norm_label": "packageregistrationresult" + }, + { + "label": "usePackageStore.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/packages/usePackageStore.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_packages_usepackagestore", + "community": 119, + "community_name": "Registrationservice", + "norm_label": "usepackagestore.ts" + }, + { + "label": "generateEventId()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/packages/usePackageStore.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_packages_usepackagestore_generateeventid", + "community": 119, + "community_name": "Registrationservice", + "norm_label": "generateeventid()" + }, + { + "label": "PackageRegistryState", + "file_type": "code", + "source_file": "apps/extension-chromium/src/packages/usePackageStore.ts", + "source_location": "L42", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_packages_usepackagestore_packageregistrystate", + "community": 119, + "community_name": "Registrationservice", + "norm_label": "packageregistrystate" + }, + { + "label": "SECTION_STATUSES", + "file_type": "code", + "source_file": "apps/extension-chromium/src/packages/usePackageStore.ts", + "source_location": "L176", + "_origin": "ast", + "id": "apps_extension_chromium_src_packages_usepackagestore_section_statuses", + "community": 119, + "community_name": "Registrationservice", + "norm_label": "section_statuses" + }, + { + "label": "usePackageStore", + "file_type": "code", + "source_file": "apps/extension-chromium/src/packages/usePackageStore.ts", + "source_location": "L188", + "_origin": "ast", + "id": "apps_extension_chromium_src_packages_usepackagestore_usepackagestore", + "community": 119, + "community_name": "Registrationservice", + "norm_label": "usepackagestore" + }, + { + "label": "useInboxPackages()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/packages/usePackageStore.ts", + "source_location": "L581", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_packages_usepackagestore_useinboxpackages", + "community": 119, + "community_name": "Registrationservice", + "norm_label": "useinboxpackages()" + }, + { + "label": "useDraftPackages()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/packages/usePackageStore.ts", + "source_location": "L587", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_packages_usepackagestore_usedraftpackages", + "community": 119, + "community_name": "Registrationservice", + "norm_label": "usedraftpackages()" + }, + { + "label": "useOutboxPackages()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/packages/usePackageStore.ts", + "source_location": "L593", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_packages_usepackagestore_useoutboxpackages", + "community": 119, + "community_name": "Registrationservice", + "norm_label": "useoutboxpackages()" + }, + { + "label": "useArchivePackages()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/packages/usePackageStore.ts", + "source_location": "L599", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_packages_usepackagestore_usearchivepackages", + "community": 119, + "community_name": "Registrationservice", + "norm_label": "usearchivepackages()" + }, + { + "label": "useRejectedPackages()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/packages/usePackageStore.ts", + "source_location": "L605", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_packages_usepackagestore_userejectedpackages", + "community": 119, + "community_name": "Registrationservice", + "norm_label": "userejectedpackages()" + }, + { + "label": "usePendingConsent()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/packages/usePackageStore.ts", + "source_location": "L611", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_packages_usepackagestore_usependingconsent", + "community": 119, + "community_name": "Registrationservice", + "norm_label": "usependingconsent()" + }, + { + "label": "usePackageCounts()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/packages/usePackageStore.ts", + "source_location": "L617", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_packages_usepackagestore_usepackagecounts", + "community": 119, + "community_name": "Registrationservice", + "norm_label": "usepackagecounts()" + }, + { + "label": "ConsentDialog.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_consentdialog", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "consentdialog.tsx" + }, + { + "label": "ConsentDialogProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_consentdialog_consentdialogprops", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "consentdialogprops" + }, + { + "label": "ConsentScope", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L37", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_consentdialog_consentscope", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "consentscope" + }, + { + "label": "ConsentGrant", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L39", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_consentdialog_consentgrant", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "consentgrant" + }, + { + "label": "ConsentDialog()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L50", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_consentdialog_consentdialog", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "consentdialog()" + }, + { + "label": "formatCapability()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L229", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_consentdialog_formatcapability", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "formatcapability()" + }, + { + "label": "logConsentGrant()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L238", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_consentdialog_logconsentgrant", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "logconsentgrant()" + }, + { + "label": "getConsentAuditLog()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L263", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_consentdialog_getconsentauditlog", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "getconsentauditlog()" + }, + { + "label": "revokeConsentGrant()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L271", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_consentdialog_revokeconsentgrant", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "revokeconsentgrant()" + }, + { + "label": "ChannelsEditor.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/ChannelsEditor.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_domaineditor_channelseditor", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "channelseditor.tsx" + }, + { + "label": "ChannelsEditorProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/ChannelsEditor.tsx", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_domaineditor_channelseditor_channelseditorprops", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "channelseditorprops" + }, + { + "label": "ATTESTATION_TIERS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/ChannelsEditor.tsx", + "source_location": "L20", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_domaineditor_channelseditor_attestation_tiers", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "attestation_tiers" + }, + { + "label": "NETWORK_SCOPES", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/ChannelsEditor.tsx", + "source_location": "L28", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_domaineditor_channelseditor_network_scopes", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "network_scopes" + }, + { + "label": "CHANNELS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/ChannelsEditor.tsx", + "source_location": "L35", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_domaineditor_channelseditor_channels", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "channels" + }, + { + "label": "ChannelsEditor()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/ChannelsEditor.tsx", + "source_location": "L50", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_domaineditor_channelseditor_channelseditor", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "channelseditor()" + }, + { + "label": "DerivationsEditor.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/DerivationsEditor.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_domaineditor_derivationseditor", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "derivationseditor.tsx" + }, + { + "label": "DerivationsEditorProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/DerivationsEditor.tsx", + "source_location": "L15", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_domaineditor_derivationseditor_derivationseditorprops", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "derivationseditorprops" + }, + { + "label": "DERIVATION_CAPABILITIES", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/DerivationsEditor.tsx", + "source_location": "L21", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_domaineditor_derivationseditor_derivation_capabilities", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "derivation_capabilities" + }, + { + "label": "RISK_COLORS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/DerivationsEditor.tsx", + "source_location": "L50", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_domaineditor_derivationseditor_risk_colors", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "risk_colors" + }, + { + "label": "DerivationsEditor()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/DerivationsEditor.tsx", + "source_location": "L58", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_domaineditor_derivationseditor_derivationseditor", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "derivationseditor()" + }, + { + "label": "EgressEditor.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/EgressEditor.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_domaineditor_egresseditor", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "egresseditor.tsx" + }, + { + "label": "EgressEditorProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/EgressEditor.tsx", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_domaineditor_egresseditor_egresseditorprops", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "egresseditorprops" + }, + { + "label": "DATA_CATEGORIES", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/EgressEditor.tsx", + "source_location": "L16", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_domaineditor_egresseditor_data_categories", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "data_categories" + }, + { + "label": "EGRESS_CHANNELS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/EgressEditor.tsx", + "source_location": "L27", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_domaineditor_egresseditor_egress_channels", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "egress_channels" + }, + { + "label": "EgressEditor()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/EgressEditor.tsx", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_domaineditor_egresseditor_egresseditor", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "egresseditor()" + }, + { + "label": "ToggleRow()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/EgressEditor.tsx", + "source_location": "L477", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_domaineditor_egresseditor_togglerow", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "togglerow()" + }, + { + "label": "getRiskColor()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/EgressEditor.tsx", + "source_location": "L560", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_domaineditor_egresseditor_getriskcolor", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "getriskcolor()" + }, + { + "label": "IngressEditor.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/IngressEditor.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_domaineditor_ingresseditor", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "ingresseditor.tsx" + }, + { + "label": "IngressEditorProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/IngressEditor.tsx", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_domaineditor_ingresseditor_ingresseditorprops", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "ingresseditorprops" + }, + { + "label": "ARTEFACT_TYPES", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/IngressEditor.tsx", + "source_location": "L15", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_domaineditor_ingresseditor_artefact_types", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "artefact_types" + }, + { + "label": "IngressEditor()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/IngressEditor.tsx", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_domaineditor_ingresseditor_ingresseditor", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "ingresseditor()" + }, + { + "label": "ToggleRow()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/IngressEditor.tsx", + "source_location": "L270", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_domaineditor_ingresseditor_togglerow", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "togglerow()" + }, + { + "label": "getRiskColor()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/IngressEditor.tsx", + "source_location": "L353", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_domaineditor_ingresseditor_getriskcolor", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "getriskcolor()" + }, + { + "label": "PreVerificationEditor.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/PreVerificationEditor.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_domaineditor_preverificationeditor", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "preverificationeditor.tsx" + }, + { + "label": "PreVerificationEditorProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/PreVerificationEditor.tsx", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_domaineditor_preverificationeditor_preverificationeditorprops", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "preverificationeditorprops" + }, + { + "label": "QUARANTINE_BEHAVIORS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/PreVerificationEditor.tsx", + "source_location": "L20", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_domaineditor_preverificationeditor_quarantine_behaviors", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "quarantine_behaviors" + }, + { + "label": "RATE_LIMIT_ACTIONS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/PreVerificationEditor.tsx", + "source_location": "L27", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_domaineditor_preverificationeditor_rate_limit_actions", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "rate_limit_actions" + }, + { + "label": "formatBytes()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/PreVerificationEditor.tsx", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_domaineditor_preverificationeditor_formatbytes", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "formatbytes()" + }, + { + "label": "PreVerificationEditor()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/PreVerificationEditor.tsx", + "source_location": "L41", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_domaineditor_preverificationeditor_preverificationeditor", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "preverificationeditor()" + }, + { + "label": "DomainEditor/index.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_domaineditor_index", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "domaineditor/index.ts" + }, + { + "label": "EffectivePreview.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/EffectivePreview.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_effectivepreview", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "effectivepreview.tsx" + }, + { + "label": "PolicyWithSessionRestrictions", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/EffectivePreview.tsx", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_effectivepreview_policywithsessionrestrictions", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "policywithsessionrestrictions" + }, + { + "label": "EffectivePreviewProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/EffectivePreview.tsx", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_effectivepreview_effectivepreviewprops", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "effectivepreviewprops" + }, + { + "label": "EffectivePreview()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/EffectivePreview.tsx", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_effectivepreview_effectivepreview", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "effectivepreview()" + }, + { + "label": "CapabilityRow()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/EffectivePreview.tsx", + "source_location": "L297", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_effectivepreview_capabilityrow", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "capabilityrow()" + }, + { + "label": "LocalPolicyEditor.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/LocalPolicyEditor.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_localpolicyeditor", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "localpolicyeditor.tsx" + }, + { + "label": "PolicyWithSessionRestrictions", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/LocalPolicyEditor.tsx", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_localpolicyeditor_policywithsessionrestrictions", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "policywithsessionrestrictions" + }, + { + "label": "LocalPolicyEditorProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/LocalPolicyEditor.tsx", + "source_location": "L32", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_localpolicyeditor_localpolicyeditorprops", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "localpolicyeditorprops" + }, + { + "label": "Section", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/LocalPolicyEditor.tsx", + "source_location": "L39", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_localpolicyeditor_section", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "section" + }, + { + "label": "LocalPolicyEditor()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/LocalPolicyEditor.tsx", + "source_location": "L41", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_localpolicyeditor_localpolicyeditor", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "localpolicyeditor()" + }, + { + "label": "PackageBuilderPolicy.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/PackageBuilderPolicy.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_packagebuilderpolicy", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "packagebuilderpolicy.tsx" + }, + { + "label": "PackageBuilderPolicyProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/PackageBuilderPolicy.tsx", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_packagebuilderpolicy_packagebuilderpolicyprops", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "packagebuilderpolicyprops" + }, + { + "label": "PERMISSION_PRESETS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/PackageBuilderPolicy.tsx", + "source_location": "L22", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_packagebuilderpolicy_permission_presets", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "permission_presets" + }, + { + "label": "PackageBuilderPolicy()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/PackageBuilderPolicy.tsx", + "source_location": "L52", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_packagebuilderpolicy_packagebuilderpolicy", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "packagebuilderpolicy()" + }, + { + "label": "PolicyDiffView.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/PolicyDiffView.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_policydiffview", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "policydiffview.tsx" + }, + { + "label": "PolicyDiffViewProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/PolicyDiffView.tsx", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_policydiffview_policydiffviewprops", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "policydiffviewprops" + }, + { + "label": "DiffItem", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/PolicyDiffView.tsx", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_policydiffview_diffitem", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "diffitem" + }, + { + "label": "PolicyDiffView()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/PolicyDiffView.tsx", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_policydiffview_policydiffview", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "policydiffview()" + }, + { + "label": "ValueDisplay()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/PolicyDiffView.tsx", + "source_location": "L194", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_policydiffview_valuedisplay", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "valuedisplay()" + }, + { + "label": "computeDiffs()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/PolicyDiffView.tsx", + "source_location": "L255", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_policydiffview_computediffs", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "computediffs()" + }, + { + "label": "getChangeType()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/PolicyDiffView.tsx", + "source_location": "L296", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_policydiffview_getchangetype", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "getchangetype()" + }, + { + "label": "PolicyLightbox.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_policylightbox", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "policylightbox.tsx" + }, + { + "label": "ErrorBoundary", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L52", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_policylightbox_errorboundary", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "errorboundary" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_policylightbox_errorboundary_constructor", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": ".constructor()" + }, + { + "label": ".getDerivedStateFromError()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L57", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_policylightbox_errorboundary_getderivedstatefromerror", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": ".getderivedstatefromerror()" + }, + { + "label": ".componentDidCatch()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L60", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_policylightbox_errorboundary_componentdidcatch", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": ".componentdidcatch()" + }, + { + "label": ".render()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L63", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_policylightbox_errorboundary_render", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": ".render()" + }, + { + "label": "PolicyLightboxProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L71", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_policylightbox_policylightboxprops", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "policylightboxprops" + }, + { + "label": "Tab", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L77", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_policylightbox_tab", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "tab" + }, + { + "label": "PolicyLightbox()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L82", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_policylightbox_policylightbox", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "policylightbox()" + }, + { + "label": "RiskLabel.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/RiskLabel.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_risklabel", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "risklabel.tsx" + }, + { + "label": "RiskLabelProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/RiskLabel.tsx", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_risklabel_risklabelprops", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "risklabelprops" + }, + { + "label": "RiskLabel()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/RiskLabel.tsx", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_risklabel_risklabel", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "risklabel()" + }, + { + "label": "policy/components/index.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_index", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "policy/components/index.ts" + }, + { + "label": "policy-lightbox-init.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/policy-lightbox-init.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_policy_lightbox_init", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "policy-lightbox-init.tsx" + }, + { + "label": "PolicyLightboxInitProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/policy-lightbox-init.tsx", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_policy_lightbox_init_policylightboxinitprops", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "policylightboxinitprops" + }, + { + "label": "PolicyLightboxInit()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/policy-lightbox-init.tsx", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_policy_lightbox_init_policylightboxinit", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "policylightboxinit()" + }, + { + "label": "openPolicyLightboxInContent()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/components/policy-lightbox-init.tsx", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_components_policy_lightbox_init_openpolicylightboxincontent", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "openpolicylightboxincontent()" + }, + { + "label": "evaluator.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/engine/__tests__/evaluator.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_engine_tests_evaluator_test", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "evaluator.test.ts" + }, + { + "label": "intersection.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/engine/__tests__/intersection.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_engine_tests_intersection_test", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "intersection.test.ts" + }, + { + "label": "decisions.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/engine/decisions.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_engine_decisions", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "decisions.ts" + }, + { + "label": "ApprovalType", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/engine/decisions.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_engine_decisions_approvaltype", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "approvaltype" + }, + { + "label": "PolicyDecision", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/engine/decisions.ts", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_engine_decisions_policydecision", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "policydecision" + }, + { + "label": "PolicyDenial", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/engine/decisions.ts", + "source_location": "L49", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_engine_decisions_policydenial", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "policydenial" + }, + { + "label": "PolicyDiff", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/engine/decisions.ts", + "source_location": "L62", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_engine_decisions_policydiff", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "policydiff" + }, + { + "label": "createDecision()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/engine/decisions.ts", + "source_location": "L85", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_engine_decisions_createdecision", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "createdecision()" + }, + { + "label": "createDenial()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/engine/decisions.ts", + "source_location": "L106", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_engine_decisions_createdenial", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "createdenial()" + }, + { + "label": "evaluator.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/engine/evaluator.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_engine_evaluator", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "evaluator.ts" + }, + { + "label": "PolicyEvaluationInput", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/engine/evaluator.ts", + "source_location": "L33", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_engine_evaluator_policyevaluationinput", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "policyevaluationinput" + }, + { + "label": "EffectivePolicyResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/engine/evaluator.ts", + "source_location": "L50", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_engine_evaluator_effectivepolicyresult", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "effectivepolicyresult" + }, + { + "label": "computeEffectivePolicy()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/engine/evaluator.ts", + "source_location": "L79", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_engine_evaluator_computeeffectivepolicy", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "computeeffectivepolicy()" + }, + { + "label": "isCapabilityAllowed()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/engine/evaluator.ts", + "source_location": "L167", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_engine_evaluator_iscapabilityallowed", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "iscapabilityallowed()" + }, + { + "label": "getDeniedCapabilities()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/engine/evaluator.ts", + "source_location": "L205", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_engine_evaluator_getdeniedcapabilities", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "getdeniedcapabilities()" + }, + { + "label": "verifyNoEscalation()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/engine/evaluator.ts", + "source_location": "L302", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_engine_evaluator_verifynoescalation", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "verifynoescalation()" + }, + { + "label": "engine/index.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/engine/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_engine_index", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "engine/index.ts" + }, + { + "label": "intersection.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/engine/intersection.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_engine_intersection", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "intersection.ts" + }, + { + "label": "intersectArrays()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/engine/intersection.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_engine_intersection_intersectarrays", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "intersectarrays()" + }, + { + "label": "unionArrays()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/engine/intersection.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_engine_intersection_unionarrays", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "unionarrays()" + }, + { + "label": "intersectIngress()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/engine/intersection.ts", + "source_location": "L37", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_engine_intersection_intersectingress", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "intersectingress()" + }, + { + "label": "intersectEgress()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/engine/intersection.ts", + "source_location": "L153", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_engine_intersection_intersectegress", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "intersectegress()" + }, + { + "label": "src/policy/index.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_index", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "src/policy/index.ts" + }, + { + "label": "automation-risk.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/automation-risk.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_automation_risk", + "community": 313, + "community_name": "Policy Schema Domains", + "norm_label": "automation-risk.ts" + }, + { + "label": "AutomationRiskClassSchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/automation-risk.ts", + "source_location": "L26", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_automation_risk_automationriskclassschema", + "community": 313, + "community_name": "Policy Schema Domains", + "norm_label": "automationriskclassschema" + }, + { + "label": "AutomationRiskClass", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/automation-risk.ts", + "source_location": "L34", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_automation_risk_automationriskclass", + "community": 313, + "community_name": "Policy Schema Domains", + "norm_label": "automationriskclass" + }, + { + "label": "ExecutionPhaseSchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/automation-risk.ts", + "source_location": "L39", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_automation_risk_executionphaseschema", + "community": 313, + "community_name": "Policy Schema Domains", + "norm_label": "executionphaseschema" + }, + { + "label": "ExecutionPhase", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/automation-risk.ts", + "source_location": "L45", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_automation_risk_executionphase", + "community": 313, + "community_name": "Policy Schema Domains", + "norm_label": "executionphase" + }, + { + "label": "PHASE_CONSTRAINTS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/automation-risk.ts", + "source_location": "L50", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_automation_risk_phase_constraints", + "community": 313, + "community_name": "Policy Schema Domains", + "norm_label": "phase_constraints" + }, + { + "label": "CAPABILITY_RISK_MAP", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/automation-risk.ts", + "source_location": "L74", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_automation_risk_capability_risk_map", + "community": 313, + "community_name": "Policy Schema Domains", + "norm_label": "capability_risk_map" + }, + { + "label": "getCapabilityRiskClass()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/automation-risk.ts", + "source_location": "L106", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_automation_risk_getcapabilityriskclass", + "community": 313, + "community_name": "Policy Schema Domains", + "norm_label": "getcapabilityriskclass()" + }, + { + "label": "requiresConsent()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/automation-risk.ts", + "source_location": "L113", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_automation_risk_requiresconsent", + "community": 313, + "community_name": "Policy Schema Domains", + "norm_label": "requiresconsent()" + }, + { + "label": "canRememberConsent()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/automation-risk.ts", + "source_location": "L121", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_automation_risk_canrememberconsent", + "community": 313, + "community_name": "Policy Schema Domains", + "norm_label": "canrememberconsent()" + }, + { + "label": "PresetAutomationLimits", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/automation-risk.ts", + "source_location": "L130", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_automation_risk_presetautomationlimits", + "community": 313, + "community_name": "Policy Schema Domains", + "norm_label": "presetautomationlimits" + }, + { + "label": "PRESET_LIMITS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/automation-risk.ts", + "source_location": "L141", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_automation_risk_preset_limits", + "community": 313, + "community_name": "Policy Schema Domains", + "norm_label": "preset_limits" + }, + { + "label": "getPresetLimits()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/automation-risk.ts", + "source_location": "L175", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_automation_risk_getpresetlimits", + "community": 313, + "community_name": "Policy Schema Domains", + "norm_label": "getpresetlimits()" + }, + { + "label": "isAutomationAllowedForPreset()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/automation-risk.ts", + "source_location": "L182", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_automation_risk_isautomationallowedforpreset", + "community": 313, + "community_name": "Policy Schema Domains", + "norm_label": "isautomationallowedforpreset()" + }, + { + "label": "channels.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/channels.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_channels", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "channels.ts" + }, + { + "label": "AttestationTierSchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/channels.ts", + "source_location": "L20", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_channels_attestationtierschema", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "attestationtierschema" + }, + { + "label": "AttestationTier", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/channels.ts", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_channels_attestationtier", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "attestationtier" + }, + { + "label": "NetworkScopeSchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/channels.ts", + "source_location": "L33", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_channels_networkscopeschema", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "networkscopeschema" + }, + { + "label": "NetworkScope", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/channels.ts", + "source_location": "L40", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_channels_networkscope", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "networkscope" + }, + { + "label": "ChannelConfigSchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/channels.ts", + "source_location": "L45", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_channels_channelconfigschema", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "channelconfigschema" + }, + { + "label": "ChannelConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/channels.ts", + "source_location": "L65", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_channels_channelconfig", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "channelconfig" + }, + { + "label": "ChannelsPolicySchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/channels.ts", + "source_location": "L73", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_channels_channelspolicyschema", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "channelspolicyschema" + }, + { + "label": "ChannelsPolicy", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/channels.ts", + "source_location": "L159", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_channels_channelspolicy", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "channelspolicy" + }, + { + "label": "DEFAULT_CHANNELS_POLICY", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/channels.ts", + "source_location": "L164", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_channels_default_channels_policy", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "default_channels_policy" + }, + { + "label": "derivations.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/derivations.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_derivations", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "derivations.ts" + }, + { + "label": "DerivationRiskSchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/derivations.ts", + "source_location": "L21", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_derivations_derivationriskschema", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "derivationriskschema" + }, + { + "label": "DerivationRisk", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/derivations.ts", + "source_location": "L29", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_derivations_derivationrisk", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "derivationrisk" + }, + { + "label": "DerivationCapabilitySchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/derivations.ts", + "source_location": "L34", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_derivations_derivationcapabilityschema", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "derivationcapabilityschema" + }, + { + "label": "DerivationCapability", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/derivations.ts", + "source_location": "L48", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_derivations_derivationcapability", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "derivationcapability" + }, + { + "label": "DerivationsPolicySchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/derivations.ts", + "source_location": "L56", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_derivations_derivationspolicyschema", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "derivationspolicyschema" + }, + { + "label": "DerivationsPolicy", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/derivations.ts", + "source_location": "L225", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_derivations_derivationspolicy", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "derivationspolicy" + }, + { + "label": "DEFAULT_DERIVATIONS_POLICY", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/derivations.ts", + "source_location": "L230", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_derivations_default_derivations_policy", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "default_derivations_policy" + }, + { + "label": "getDerivationRisk()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/derivations.ts", + "source_location": "L337", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_derivations_getderivationrisk", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "getderivationrisk()" + }, + { + "label": "egress.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/egress.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_egress", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "egress.ts" + }, + { + "label": "DataCategorySchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/egress.ts", + "source_location": "L13", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_egress_datacategoryschema", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "datacategoryschema" + }, + { + "label": "DataCategory", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/egress.ts", + "source_location": "L24", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_egress_datacategory", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "datacategory" + }, + { + "label": "EgressChannelSchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/egress.ts", + "source_location": "L29", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_egress_egresschannelschema", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "egresschannelschema" + }, + { + "label": "EgressChannel", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/egress.ts", + "source_location": "L40", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_egress_egresschannel", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "egresschannel" + }, + { + "label": "DestinationPatternSchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/egress.ts", + "source_location": "L45", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_egress_destinationpatternschema", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "destinationpatternschema" + }, + { + "label": "DestinationPattern", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/egress.ts", + "source_location": "L51", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_egress_destinationpattern", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "destinationpattern" + }, + { + "label": "EgressPolicySchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/egress.ts", + "source_location": "L57", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_egress_egresspolicyschema", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "egresspolicyschema" + }, + { + "label": "EgressPolicy", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/egress.ts", + "source_location": "L95", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_egress_egresspolicy", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "egresspolicy" + }, + { + "label": "DEFAULT_EGRESS_POLICY", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/egress.ts", + "source_location": "L100", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_egress_default_egress_policy", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "default_egress_policy" + }, + { + "label": "execution.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/execution.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_execution", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "execution.ts" + }, + { + "label": "ConnectorTypeSchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/execution.ts", + "source_location": "L13", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_execution_connectortypeschema", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "connectortypeschema" + }, + { + "label": "ConnectorType", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/execution.ts", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_execution_connectortype", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "connectortype" + }, + { + "label": "AutomationCapabilitySchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/execution.ts", + "source_location": "L33", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_execution_automationcapabilityschema", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "automationcapabilityschema" + }, + { + "label": "AutomationCapability", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/execution.ts", + "source_location": "L44", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_execution_automationcapability", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "automationcapability" + }, + { + "label": "FilesystemOperationSchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/execution.ts", + "source_location": "L49", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_execution_filesystemoperationschema", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "filesystemoperationschema" + }, + { + "label": "FilesystemOperation", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/execution.ts", + "source_location": "L58", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_execution_filesystemoperation", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "filesystemoperation" + }, + { + "label": "ExecutionPolicySchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/execution.ts", + "source_location": "L63", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_execution_executionpolicyschema", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "executionpolicyschema" + }, + { + "label": "ExecutionPolicy", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/execution.ts", + "source_location": "L101", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_execution_executionpolicy", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "executionpolicy" + }, + { + "label": "DEFAULT_EXECUTION_POLICY", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/execution.ts", + "source_location": "L106", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_execution_default_execution_policy", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "default_execution_policy" + }, + { + "label": "handshake-overrides.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/handshake-overrides.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_handshake_overrides", + "community": 323, + "community_name": "Policy Schema Domains #323", + "norm_label": "handshake-overrides.ts" + }, + { + "label": "HandshakeAutomationPermissionsSchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/handshake-overrides.ts", + "source_location": "L23", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_handshake_overrides_handshakeautomationpermissionsschema", + "community": 323, + "community_name": "Policy Schema Domains #323", + "norm_label": "handshakeautomationpermissionsschema" + }, + { + "label": "HandshakeAutomationPermissions", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/handshake-overrides.ts", + "source_location": "L64", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_handshake_overrides_handshakeautomationpermissions", + "community": 323, + "community_name": "Policy Schema Domains #323", + "norm_label": "handshakeautomationpermissions" + }, + { + "label": "HandshakeEgressPermissionsSchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/handshake-overrides.ts", + "source_location": "L69", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_handshake_overrides_handshakeegresspermissionsschema", + "community": 323, + "community_name": "Policy Schema Domains #323", + "norm_label": "handshakeegresspermissionsschema" + }, + { + "label": "HandshakeEgressPermissions", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/handshake-overrides.ts", + "source_location": "L83", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_handshake_overrides_handshakeegresspermissions", + "community": 323, + "community_name": "Policy Schema Domains #323", + "norm_label": "handshakeegresspermissions" + }, + { + "label": "HandshakeIngressPermissionsSchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/handshake-overrides.ts", + "source_location": "L88", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_handshake_overrides_handshakeingresspermissionsschema", + "community": 323, + "community_name": "Policy Schema Domains #323", + "norm_label": "handshakeingresspermissionsschema" + }, + { + "label": "HandshakeIngressPermissions", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/handshake-overrides.ts", + "source_location": "L102", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_handshake_overrides_handshakeingresspermissions", + "community": 323, + "community_name": "Policy Schema Domains #323", + "norm_label": "handshakeingresspermissions" + }, + { + "label": "HandshakePolicyOverrideSchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/handshake-overrides.ts", + "source_location": "L107", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_handshake_overrides_handshakepolicyoverrideschema", + "community": 323, + "community_name": "Policy Schema Domains #323", + "norm_label": "handshakepolicyoverrideschema" + }, + { + "label": "HandshakePolicyOverride", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/handshake-overrides.ts", + "source_location": "L144", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_handshake_overrides_handshakepolicyoverride", + "community": 323, + "community_name": "Policy Schema Domains #323", + "norm_label": "handshakepolicyoverride" + }, + { + "label": "HandshakeOverridesCollectionSchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/handshake-overrides.ts", + "source_location": "L149", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_handshake_overrides_handshakeoverridescollectionschema", + "community": 323, + "community_name": "Policy Schema Domains #323", + "norm_label": "handshakeoverridescollectionschema" + }, + { + "label": "HandshakeOverridesCollection", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/handshake-overrides.ts", + "source_location": "L159", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_handshake_overrides_handshakeoverridescollection", + "community": 323, + "community_name": "Policy Schema Domains #323", + "norm_label": "handshakeoverridescollection" + }, + { + "label": "createHandshakeOverride()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/handshake-overrides.ts", + "source_location": "L164", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_handshake_overrides_createhandshakeoverride", + "community": 323, + "community_name": "Policy Schema Domains #323", + "norm_label": "createhandshakeoverride()" + }, + { + "label": "mergeWithGlobalPolicy()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/handshake-overrides.ts", + "source_location": "L219", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_handshake_overrides_mergewithglobalpolicy", + "community": 323, + "community_name": "Policy Schema Domains #323", + "norm_label": "mergewithglobalpolicy()" + }, + { + "label": "identity.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/identity.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_identity", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "identity.ts" + }, + { + "label": "IdentityAttributeSchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/identity.ts", + "source_location": "L13", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_identity_identityattributeschema", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "identityattributeschema" + }, + { + "label": "IdentityAttribute", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/identity.ts", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_identity_identityattribute", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "identityattribute" + }, + { + "label": "VerificationLevelSchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/identity.ts", + "source_location": "L33", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_identity_verificationlevelschema", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "verificationlevelschema" + }, + { + "label": "VerificationLevel", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/identity.ts", + "source_location": "L41", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_identity_verificationlevel", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "verificationlevel" + }, + { + "label": "PseudonymityModeSchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/identity.ts", + "source_location": "L46", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_identity_pseudonymitymodeschema", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "pseudonymitymodeschema" + }, + { + "label": "PseudonymityMode", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/identity.ts", + "source_location": "L53", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_identity_pseudonymitymode", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "pseudonymitymode" + }, + { + "label": "IdentityPolicySchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/identity.ts", + "source_location": "L58", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_identity_identitypolicyschema", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "identitypolicyschema" + }, + { + "label": "IdentityPolicy", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/identity.ts", + "source_location": "L93", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_identity_identitypolicy", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "identitypolicy" + }, + { + "label": "DEFAULT_IDENTITY_POLICY", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/identity.ts", + "source_location": "L98", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_identity_default_identity_policy", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "default_identity_policy" + }, + { + "label": "domains/index.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_index", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "domains/index.ts" + }, + { + "label": "domains/ingress.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/ingress.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_ingress", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "domains/ingress.ts" + }, + { + "label": "ArtefactTypeSchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/ingress.ts", + "source_location": "L14", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_ingress_artefacttypeschema", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "artefacttypeschema" + }, + { + "label": "ArtefactType", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/ingress.ts", + "source_location": "L25", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_ingress_artefacttype", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "artefacttype" + }, + { + "label": "ParsingConstraintSchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/ingress.ts", + "source_location": "L30", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_ingress_parsingconstraintschema", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "parsingconstraintschema" + }, + { + "label": "ParsingConstraint", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/ingress.ts", + "source_location": "L36", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_ingress_parsingconstraint", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "parsingconstraint" + }, + { + "label": "IngressPolicySchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/ingress.ts", + "source_location": "L42", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_ingress_ingresspolicyschema", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "ingresspolicyschema" + }, + { + "label": "IngressPolicy", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/ingress.ts", + "source_location": "L77", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_ingress_ingresspolicy", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "ingresspolicy" + }, + { + "label": "DEFAULT_INGRESS_POLICY", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/ingress.ts", + "source_location": "L82", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_ingress_default_ingress_policy", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "default_ingress_policy" + }, + { + "label": "pre-verification.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/pre-verification.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_pre_verification", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "pre-verification.ts" + }, + { + "label": "QuarantineBehaviorSchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/pre-verification.ts", + "source_location": "L21", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_pre_verification_quarantinebehaviorschema", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "quarantinebehaviorschema" + }, + { + "label": "QuarantineBehavior", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/pre-verification.ts", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_pre_verification_quarantinebehavior", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "quarantinebehavior" + }, + { + "label": "RateLimitActionSchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/pre-verification.ts", + "source_location": "L33", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_pre_verification_ratelimitactionschema", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "ratelimitactionschema" + }, + { + "label": "RateLimitAction", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/pre-verification.ts", + "source_location": "L40", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_pre_verification_ratelimitaction", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "ratelimitaction" + }, + { + "label": "PreVerificationPolicySchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/pre-verification.ts", + "source_location": "L48", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_pre_verification_preverificationpolicyschema", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "preverificationpolicyschema" + }, + { + "label": "PreVerificationPolicy", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/pre-verification.ts", + "source_location": "L143", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_pre_verification_preverificationpolicy", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "preverificationpolicy" + }, + { + "label": "DEFAULT_PRE_VERIFICATION_POLICY", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/pre-verification.ts", + "source_location": "L148", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_pre_verification_default_pre_verification_policy", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "default_pre_verification_policy" + }, + { + "label": "session-restrictions.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/session-restrictions.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_session_restrictions", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "session-restrictions.ts" + }, + { + "label": "AutomationSessionRestrictionsSchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/session-restrictions.ts", + "source_location": "L21", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_session_restrictions_automationsessionrestrictionsschema", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "automationsessionrestrictionsschema" + }, + { + "label": "AutomationSessionRestrictions", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/session-restrictions.ts", + "source_location": "L69", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_session_restrictions_automationsessionrestrictions", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "automationsessionrestrictions" + }, + { + "label": "SESSION_RESTRICTION_DEFAULTS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/session-restrictions.ts", + "source_location": "L74", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_session_restrictions_session_restriction_defaults", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "session_restriction_defaults" + }, + { + "label": "getSessionRestrictionsForMode()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/session-restrictions.ts", + "source_location": "L142", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_session_restrictions_getsessionrestrictionsformode", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "getsessionrestrictionsformode()" + }, + { + "label": "vault-access.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/vault-access.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_vault_access", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "vault-access.ts" + }, + { + "label": "VaultOperationSchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/vault-access.ts", + "source_location": "L13", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_vault_access_vaultoperationschema", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "vaultoperationschema" + }, + { + "label": "VaultOperation", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/vault-access.ts", + "source_location": "L25", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_vault_access_vaultoperation", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "vaultoperation" + }, + { + "label": "CompartmentAccessSchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/vault-access.ts", + "source_location": "L30", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_vault_access_compartmentaccessschema", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "compartmentaccessschema" + }, + { + "label": "CompartmentAccess", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/vault-access.ts", + "source_location": "L37", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_vault_access_compartmentaccess", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "compartmentaccess" + }, + { + "label": "VaultAccessPolicySchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/vault-access.ts", + "source_location": "L42", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_vault_access_vaultaccesspolicyschema", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "vaultaccesspolicyschema" + }, + { + "label": "VaultAccessPolicy", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/vault-access.ts", + "source_location": "L80", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_vault_access_vaultaccesspolicy", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "vaultaccesspolicy" + }, + { + "label": "DEFAULT_VAULT_ACCESS_POLICY", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/domains/vault-access.ts", + "source_location": "L85", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_domains_vault_access_default_vault_access_policy", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "default_vault_access_policy" + }, + { + "label": "schema/index.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_index", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "schema/index.ts" + }, + { + "label": "policy.schema.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_policy_schema", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "policy.schema.ts" + }, + { + "label": "POLICY_VERSION", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L35", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_policy_schema_policy_version", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "policy_version" + }, + { + "label": "RiskTierSchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L40", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_policy_schema_risktierschema", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "risktierschema" + }, + { + "label": "RiskTier", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L47", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_policy_schema_risktier", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "risktier" + }, + { + "label": "PolicyLayerSchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L52", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_policy_schema_policylayerschema", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "policylayerschema" + }, + { + "label": "PolicyLayer", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L59", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_policy_schema_policylayer", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "policylayer" + }, + { + "label": "PolicyMetadataSchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L64", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_policy_schema_policymetadataschema", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "policymetadataschema" + }, + { + "label": "PolicyMetadata", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L105", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_policy_schema_policymetadata", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "policymetadata" + }, + { + "label": "CanonicalPolicySchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L113", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_policy_schema_canonicalpolicyschema", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "canonicalpolicyschema" + }, + { + "label": "CanonicalPolicy", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L148", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_policy_schema_canonicalpolicy", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "canonicalpolicy" + }, + { + "label": "createDefaultPolicy()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L153", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_policy_schema_createdefaultpolicy", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "createdefaultpolicy()" + }, + { + "label": "validatePolicy()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L189", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_policy_schema_validatepolicy", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "validatepolicy()" + }, + { + "label": "serializePolicy()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L205", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_policy_schema_serializepolicy", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "serializepolicy()" + }, + { + "label": "hashPolicy()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L212", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_policy_schema_hashpolicy", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "hashpolicy()" + }, + { + "label": "calculateRiskTier()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L224", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_policy_schema_calculaterisktier", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "calculaterisktier()" + }, + { + "label": "lockdownPolicy()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L283", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_policy_schema_lockdownpolicy", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "lockdownpolicy()" + }, + { + "label": "schema/types.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_schema_types", + "community": 25, + "community_name": "Policy Schema Channels", + "norm_label": "schema/types.ts" + }, + { + "label": "store/index.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/store/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_store_index", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "store/index.ts" + }, + { + "label": "usePolicyStore.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/store/usePolicyStore.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_store_usepolicystore", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "usepolicystore.ts" + }, + { + "label": "PolicyState", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/store/usePolicyStore.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_store_usepolicystore_policystate", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "policystate" + }, + { + "label": "usePolicyStore", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/store/usePolicyStore.ts", + "source_location": "L47", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_store_usepolicystore_usepolicystore", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "usepolicystore" + }, + { + "label": "templates/index.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/templates/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_templates_index", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "templates/index.ts" + }, + { + "label": "TemplateName", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/templates/index.ts", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_templates_index_templatename", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "templatename" + }, + { + "label": "TEMPLATES", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/templates/index.ts", + "source_location": "L25", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_templates_index_templates", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "templates" + }, + { + "label": "createPolicyFromTemplate()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/templates/index.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_templates_index_createpolicyfromtemplate", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "createpolicyfromtemplate()" + }, + { + "label": "getTemplateDescription()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/templates/index.ts", + "source_location": "L63", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_templates_index_gettemplatedescription", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "gettemplatedescription()" + }, + { + "label": "getRecommendedTemplate()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/templates/index.ts", + "source_location": "L75", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_templates_index_getrecommendedtemplate", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "getrecommendedtemplate()" + }, + { + "label": "permissive.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/templates/permissive.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_templates_permissive", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "permissive.ts" + }, + { + "label": "PERMISSIVE_TEMPLATE", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/templates/permissive.ts", + "source_location": "L14", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_templates_permissive_permissive_template", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "permissive_template" + }, + { + "label": "createPermissivePolicy()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/templates/permissive.ts", + "source_location": "L149", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_templates_permissive_createpermissivepolicy", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "createpermissivepolicy()" + }, + { + "label": "restrictive.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/templates/restrictive.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_templates_restrictive", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "restrictive.ts" + }, + { + "label": "RESTRICTIVE_TEMPLATE", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/templates/restrictive.ts", + "source_location": "L13", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_templates_restrictive_restrictive_template", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "restrictive_template" + }, + { + "label": "createRestrictivePolicy()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/templates/restrictive.ts", + "source_location": "L147", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_templates_restrictive_createrestrictivepolicy", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "createrestrictivepolicy()" + }, + { + "label": "standard.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/templates/standard.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_templates_standard", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "standard.ts" + }, + { + "label": "STANDARD_TEMPLATE", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/templates/standard.ts", + "source_location": "L13", + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_templates_standard_standard_template", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "standard_template" + }, + { + "label": "createStandardPolicy()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/policy/templates/standard.ts", + "source_location": "L147", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_policy_templates_standard_createstandardpolicy", + "community": 58, + "community_name": "Policy Engine Schema", + "norm_label": "createstandardpolicy()" + }, + { + "label": "popup-chat.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_popup_chat", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "popup-chat.tsx" + }, + { + "label": "Theme", + "file_type": "code", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L76", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_popup_chat_theme", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "theme" + }, + { + "label": "LlmStatusData", + "file_type": "code", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L79", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_popup_chat_llmstatusdata", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "llmstatusdata" + }, + { + "label": "unwrapLlmStatusPayload()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L86", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_popup_chat_unwrapllmstatuspayload", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "unwrapllmstatuspayload()" + }, + { + "label": "toBeapTheme()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L93", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_popup_chat_tobeaptheme", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "tobeaptheme()" + }, + { + "label": "toPlaceholderTheme()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L97", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_popup_chat_toplaceholdertheme", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "toplaceholdertheme()" + }, + { + "label": "beapUiValidationFailure()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L103", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_popup_chat_beapuivalidationfailure", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "beapuivalidationfailure()" + }, + { + "label": "sessionListLabel()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L120", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_popup_chat_sessionlistlabel", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "sessionlistlabel()" + }, + { + "label": "DockedWorkspace", + "file_type": "code", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L128", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_popup_chat_dockedworkspace", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "dockedworkspace" + }, + { + "label": "DockedSubmode", + "file_type": "code", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L129", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_popup_chat_dockedsubmode", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "dockedsubmode" + }, + { + "label": "BeapSubmode", + "file_type": "code", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L130", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_popup_chat_beapsubmode", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "beapsubmode" + }, + { + "label": "DraftAttachment", + "file_type": "code", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L133", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_popup_chat_draftattachment", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "draftattachment" + }, + { + "label": "SessionOption", + "file_type": "code", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L152", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_popup_chat_sessionoption", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "sessionoption" + }, + { + "label": "getInitialTheme()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L159", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_popup_chat_getinitialtheme", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "getinitialtheme()" + }, + { + "label": "AuthStatusResponse", + "file_type": "code", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L174", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_popup_chat_authstatusresponse", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "authstatusresponse" + }, + { + "label": "PopupChatApp()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L183", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_popup_chat_popupchatapp", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "popupchatapp()" + }, + { + "label": "container", + "file_type": "code", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L2567", + "_origin": "ast", + "id": "apps_extension_chromium_src_popup_chat_container", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "container" + }, + { + "label": "NOTE: Using beapDraftMessage and beapDraftTo from above for consistency with\u2026", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L1057", + "_origin": "ast", + "id": "apps_extension_chromium_src_popup_chat_rationale_1057", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "note: using beapdraftmessage and beapdraftto from above for consistency with..." + }, + { + "label": "RasterPreview.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/reconstruction/components/RasterPreview.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_reconstruction_components_rasterpreview", + "community": 100, + "community_name": "Reconstruction", + "norm_label": "rasterpreview.tsx" + }, + { + "label": "RasterPreviewProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/reconstruction/components/RasterPreview.tsx", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_reconstruction_components_rasterpreview_rasterpreviewprops", + "community": 100, + "community_name": "Reconstruction", + "norm_label": "rasterpreviewprops" + }, + { + "label": "RasterPreview()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/reconstruction/components/RasterPreview.tsx", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_reconstruction_components_rasterpreview_rasterpreview", + "community": 100, + "community_name": "Reconstruction", + "norm_label": "rasterpreview()" + }, + { + "label": "ReconstructionStatus.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/reconstruction/components/ReconstructionStatus.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_reconstruction_components_reconstructionstatus", + "community": 100, + "community_name": "Reconstruction", + "norm_label": "reconstructionstatus.tsx" + }, + { + "label": "ReconstructionStatusProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/reconstruction/components/ReconstructionStatus.tsx", + "source_location": "L16", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_reconstruction_components_reconstructionstatus_reconstructionstatusprops", + "community": 100, + "community_name": "Reconstruction", + "norm_label": "reconstructionstatusprops" + }, + { + "label": "ReconstructionStatus()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/reconstruction/components/ReconstructionStatus.tsx", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_reconstruction_components_reconstructionstatus_reconstructionstatus", + "community": 100, + "community_name": "Reconstruction", + "norm_label": "reconstructionstatus()" + }, + { + "label": "SafePreviewPanel.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/reconstruction/components/SafePreviewPanel.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_reconstruction_components_safepreviewpanel", + "community": 100, + "community_name": "Reconstruction", + "norm_label": "safepreviewpanel.tsx" + }, + { + "label": "SafePreviewPanelProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/reconstruction/components/SafePreviewPanel.tsx", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_reconstruction_components_safepreviewpanel_safepreviewpanelprops", + "community": 91, + "community_name": "Beapmessages Audit Reconstruction", + "norm_label": "safepreviewpanelprops" + }, + { + "label": "SafePreviewPanel()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/reconstruction/components/SafePreviewPanel.tsx", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_reconstruction_components_safepreviewpanel_safepreviewpanel", + "community": 100, + "community_name": "Reconstruction", + "norm_label": "safepreviewpanel()" + }, + { + "label": "SemanticPreview.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/reconstruction/components/SemanticPreview.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_reconstruction_components_semanticpreview", + "community": 100, + "community_name": "Reconstruction", + "norm_label": "semanticpreview.tsx" + }, + { + "label": "SemanticPreviewProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/reconstruction/components/SemanticPreview.tsx", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_reconstruction_components_semanticpreview_semanticpreviewprops", + "community": 100, + "community_name": "Reconstruction", + "norm_label": "semanticpreviewprops" + }, + { + "label": "SemanticPreview()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/reconstruction/components/SemanticPreview.tsx", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_reconstruction_components_semanticpreview_semanticpreview", + "community": 100, + "community_name": "Reconstruction", + "norm_label": "semanticpreview()" + }, + { + "label": "reconstruction/components/index.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/reconstruction/components/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_reconstruction_components_index", + "community": 100, + "community_name": "Reconstruction", + "norm_label": "reconstruction/components/index.ts" + }, + { + "label": "reconstruction/index.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/reconstruction/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_reconstruction_index", + "community": 100, + "community_name": "Reconstruction", + "norm_label": "reconstruction/index.ts" + }, + { + "label": "reconstructionService.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/reconstruction/reconstructionService.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_reconstruction_reconstructionservice", + "community": 100, + "community_name": "Reconstruction", + "norm_label": "reconstructionservice.ts" + }, + { + "label": "computeHash()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/reconstruction/reconstructionService.ts", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_reconstruction_reconstructionservice_computehash", + "community": 100, + "community_name": "Reconstruction", + "norm_label": "computehash()" + }, + { + "label": "shortHash()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/reconstruction/reconstructionService.ts", + "source_location": "L58", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_reconstruction_reconstructionservice_shorthash", + "community": 100, + "community_name": "Reconstruction", + "norm_label": "shorthash()" + }, + { + "label": "executeToolIsolated()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/reconstruction/reconstructionService.ts", + "source_location": "L77", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_reconstruction_reconstructionservice_executetoolisolated", + "community": 100, + "community_name": "Reconstruction", + "norm_label": "executetoolisolated()" + }, + { + "label": "simulateTikaOutput()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/reconstruction/reconstructionService.ts", + "source_location": "L123", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_reconstruction_reconstructionservice_simulatetikaoutput", + "community": 100, + "community_name": "Reconstruction", + "norm_label": "simulatetikaoutput()" + }, + { + "label": "simulatePdfiumOutput()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/reconstruction/reconstructionService.ts", + "source_location": "L199", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_reconstruction_reconstructionservice_simulatepdfiumoutput", + "community": 100, + "community_name": "Reconstruction", + "norm_label": "simulatepdfiumoutput()" + }, + { + "label": "runReconstruction()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/reconstruction/reconstructionService.ts", + "source_location": "L242", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_reconstruction_reconstructionservice_runreconstruction", + "community": 100, + "community_name": "Reconstruction", + "norm_label": "runreconstruction()" + }, + { + "label": "extractSemanticText()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/reconstruction/reconstructionService.ts", + "source_location": "L294", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_reconstruction_reconstructionservice_extractsemantictext", + "community": 100, + "community_name": "Reconstruction", + "norm_label": "extractsemantictext()" + }, + { + "label": "generateRasterPreviews()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/reconstruction/reconstructionService.ts", + "source_location": "L350", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_reconstruction_reconstructionservice_generaterasterpreviews", + "community": 100, + "community_name": "Reconstruction", + "norm_label": "generaterasterpreviews()" + }, + { + "label": "canReconstruct()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/reconstruction/reconstructionService.ts", + "source_location": "L410", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_reconstruction_reconstructionservice_canreconstruct", + "community": 100, + "community_name": "Reconstruction", + "norm_label": "canreconstruct()" + }, + { + "label": "validateReconstructionIntegrity()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/reconstruction/reconstructionService.ts", + "source_location": "L418", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_reconstruction_reconstructionservice_validatereconstructionintegrity", + "community": 100, + "community_name": "Reconstruction", + "norm_label": "validatereconstructionintegrity()" + }, + { + "label": "reconstruction/types.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/reconstruction/types.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_reconstruction_types", + "community": 100, + "community_name": "Reconstruction", + "norm_label": "reconstruction/types.ts" + }, + { + "label": "ReconstructionState", + "file_type": "code", + "source_file": "apps/extension-chromium/src/reconstruction/types.ts", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_reconstruction_types_reconstructionstate", + "community": 100, + "community_name": "Reconstruction", + "norm_label": "reconstructionstate" + }, + { + "label": "SemanticTextSource", + "file_type": "code", + "source_file": "apps/extension-chromium/src/reconstruction/types.ts", + "source_location": "L27", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_reconstruction_types_semantictextsource", + "community": 100, + "community_name": "Reconstruction", + "norm_label": "semantictextsource" + }, + { + "label": "SemanticTextEntry", + "file_type": "code", + "source_file": "apps/extension-chromium/src/reconstruction/types.ts", + "source_location": "L36", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_reconstruction_types_semantictextentry", + "community": 100, + "community_name": "Reconstruction", + "norm_label": "semantictextentry" + }, + { + "label": "RasterPage", + "file_type": "code", + "source_file": "apps/extension-chromium/src/reconstruction/types.ts", + "source_location": "L62", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_reconstruction_types_rasterpage", + "community": 100, + "community_name": "Reconstruction", + "norm_label": "rasterpage" + }, + { + "label": "RasterRef", + "file_type": "code", + "source_file": "apps/extension-chromium/src/reconstruction/types.ts", + "source_location": "L85", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_reconstruction_types_rasterref", + "community": 100, + "community_name": "Reconstruction", + "norm_label": "rasterref" + }, + { + "label": "ReconstructionRecord", + "file_type": "code", + "source_file": "apps/extension-chromium/src/reconstruction/types.ts", + "source_location": "L112", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_reconstruction_types_reconstructionrecord", + "community": 100, + "community_name": "Reconstruction", + "norm_label": "reconstructionrecord" + }, + { + "label": "ReconstructionRequest", + "file_type": "code", + "source_file": "apps/extension-chromium/src/reconstruction/types.ts", + "source_location": "L148", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_reconstruction_types_reconstructionrequest", + "community": 100, + "community_name": "Reconstruction", + "norm_label": "reconstructionrequest" + }, + { + "label": "ReconstructionAttachment", + "file_type": "code", + "source_file": "apps/extension-chromium/src/reconstruction/types.ts", + "source_location": "L165", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_reconstruction_types_reconstructionattachment", + "community": 100, + "community_name": "Reconstruction", + "norm_label": "reconstructionattachment" + }, + { + "label": "ReconstructionResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/reconstruction/types.ts", + "source_location": "L188", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_reconstruction_types_reconstructionresult", + "community": 100, + "community_name": "Reconstruction", + "norm_label": "reconstructionresult" + }, + { + "label": "ToolExecutionRequest", + "file_type": "code", + "source_file": "apps/extension-chromium/src/reconstruction/types.ts", + "source_location": "L212", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_reconstruction_types_toolexecutionrequest", + "community": 100, + "community_name": "Reconstruction", + "norm_label": "toolexecutionrequest" + }, + { + "label": "ToolExecutionResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/reconstruction/types.ts", + "source_location": "L232", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_reconstruction_types_toolexecutionresult", + "community": 100, + "community_name": "Reconstruction", + "norm_label": "toolexecutionresult" + }, + { + "label": "TIKA_SUPPORTED_TYPES", + "file_type": "code", + "source_file": "apps/extension-chromium/src/reconstruction/types.ts", + "source_location": "L265", + "_origin": "ast", + "id": "apps_extension_chromium_src_reconstruction_types_tika_supported_types", + "community": 100, + "community_name": "Reconstruction", + "norm_label": "tika_supported_types" + }, + { + "label": "PDFIUM_SUPPORTED_TYPES", + "file_type": "code", + "source_file": "apps/extension-chromium/src/reconstruction/types.ts", + "source_location": "L283", + "_origin": "ast", + "id": "apps_extension_chromium_src_reconstruction_types_pdfium_supported_types", + "community": 100, + "community_name": "Reconstruction", + "norm_label": "pdfium_supported_types" + }, + { + "label": "isTikaSupported()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/reconstruction/types.ts", + "source_location": "L290", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_reconstruction_types_istikasupported", + "community": 100, + "community_name": "Reconstruction", + "norm_label": "istikasupported()" + }, + { + "label": "isPdfiumSupported()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/reconstruction/types.ts", + "source_location": "L297", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_reconstruction_types_ispdfiumsupported", + "community": 100, + "community_name": "Reconstruction", + "norm_label": "ispdfiumsupported()" + }, + { + "label": "useReconstruction.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/reconstruction/useReconstruction.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_reconstruction_usereconstruction", + "community": 100, + "community_name": "Reconstruction", + "norm_label": "usereconstruction.ts" + }, + { + "label": "UseReconstructionReturn", + "file_type": "code", + "source_file": "apps/extension-chromium/src/reconstruction/useReconstruction.ts", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_reconstruction_usereconstruction_usereconstructionreturn", + "community": 100, + "community_name": "Reconstruction", + "norm_label": "usereconstructionreturn" + }, + { + "label": "useReconstruction()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/reconstruction/useReconstruction.ts", + "source_location": "L41", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_reconstruction_usereconstruction_usereconstruction", + "community": 100, + "community_name": "Reconstruction", + "norm_label": "usereconstruction()" + }, + { + "label": "guessMimeType()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/reconstruction/useReconstruction.ts", + "source_location": "L169", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_reconstruction_usereconstruction_guessmimetype", + "community": 100, + "community_name": "Reconstruction", + "norm_label": "guessmimetype()" + }, + { + "label": "useReconstructionStore.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/reconstruction/useReconstructionStore.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_reconstruction_usereconstructionstore", + "community": 100, + "community_name": "Reconstruction", + "norm_label": "usereconstructionstore.ts" + }, + { + "label": "ReconstructionStoreState", + "file_type": "code", + "source_file": "apps/extension-chromium/src/reconstruction/useReconstructionStore.ts", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_reconstruction_usereconstructionstore_reconstructionstorestate", + "community": 100, + "community_name": "Reconstruction", + "norm_label": "reconstructionstorestate" + }, + { + "label": "useReconstructionStore", + "file_type": "code", + "source_file": "apps/extension-chromium/src/reconstruction/useReconstructionStore.ts", + "source_location": "L74", + "_origin": "ast", + "id": "apps_extension_chromium_src_reconstruction_usereconstructionstore_usereconstructionstore", + "community": 100, + "community_name": "Reconstruction", + "norm_label": "usereconstructionstore" + }, + { + "label": "useReconstructionState()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/reconstruction/useReconstructionStore.ts", + "source_location": "L213", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_reconstruction_usereconstructionstore_usereconstructionstate", + "community": 100, + "community_name": "Reconstruction", + "norm_label": "usereconstructionstate()" + }, + { + "label": "useIsReconstructed()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/reconstruction/useReconstructionStore.ts", + "source_location": "L216", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_reconstruction_usereconstructionstore_useisreconstructed", + "community": 100, + "community_name": "Reconstruction", + "norm_label": "useisreconstructed()" + }, + { + "label": "useSemanticText()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/reconstruction/useReconstructionStore.ts", + "source_location": "L219", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_reconstruction_usereconstructionstore_usesemantictext", + "community": 100, + "community_name": "Reconstruction", + "norm_label": "usesemantictext()" + }, + { + "label": "useRasterRefs()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/reconstruction/useReconstructionStore.ts", + "source_location": "L222", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_reconstruction_usereconstructionstore_userasterrefs", + "community": 100, + "community_name": "Reconstruction", + "norm_label": "userasterrefs()" + }, + { + "label": "electronRpc.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_rpc_electronrpc", + "community": 116, + "community_name": "Electronrpc", + "norm_label": "electronrpc.ts" + }, + { + "label": "LlmLocalRuntimeInfo", + "file_type": "code", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_rpc_electronrpc_llmlocalruntimeinfo", + "community": 129, + "community_name": "Llmsettings", + "norm_label": "llmlocalruntimeinfo" + }, + { + "label": "DbTestConnection", + "file_type": "code", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L46", + "_origin": "ast", + "id": "apps_extension_chromium_src_rpc_electronrpc_dbtestconnection", + "community": 116, + "community_name": "Electronrpc", + "norm_label": "dbtestconnection" + }, + { + "label": "DbTestDataStats", + "file_type": "code", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L60", + "_origin": "ast", + "id": "apps_extension_chromium_src_rpc_electronrpc_dbtestdatastats", + "community": 116, + "community_name": "Electronrpc", + "norm_label": "dbtestdatastats" + }, + { + "label": "DbInsertTestData", + "file_type": "code", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L67", + "_origin": "ast", + "id": "apps_extension_chromium_src_rpc_electronrpc_dbinserttestdata", + "community": 116, + "community_name": "Electronrpc", + "norm_label": "dbinserttestdata" + }, + { + "label": "DbLaunchDbeaver", + "file_type": "code", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L83", + "_origin": "ast", + "id": "apps_extension_chromium_src_rpc_electronrpc_dblaunchdbeaver", + "community": 116, + "community_name": "Electronrpc", + "norm_label": "dblaunchdbeaver" + }, + { + "label": "LlmHardware", + "file_type": "code", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L101", + "_origin": "ast", + "id": "apps_extension_chromium_src_rpc_electronrpc_llmhardware", + "community": 116, + "community_name": "Electronrpc", + "norm_label": "llmhardware" + }, + { + "label": "LlmStatus", + "file_type": "code", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L108", + "_origin": "ast", + "id": "apps_extension_chromium_src_rpc_electronrpc_llmstatus", + "community": 116, + "community_name": "Electronrpc", + "norm_label": "llmstatus" + }, + { + "label": "LlmCatalog", + "file_type": "code", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L115", + "_origin": "ast", + "id": "apps_extension_chromium_src_rpc_electronrpc_llmcatalog", + "community": 116, + "community_name": "Electronrpc", + "norm_label": "llmcatalog" + }, + { + "label": "LlmStart", + "file_type": "code", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L122", + "_origin": "ast", + "id": "apps_extension_chromium_src_rpc_electronrpc_llmstart", + "community": 116, + "community_name": "Electronrpc", + "norm_label": "llmstart" + }, + { + "label": "LlmImportModelFromPicker", + "file_type": "code", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L129", + "_origin": "ast", + "id": "apps_extension_chromium_src_rpc_electronrpc_llmimportmodelfrompicker", + "community": 116, + "community_name": "Electronrpc", + "norm_label": "llmimportmodelfrompicker" + }, + { + "label": "LlmDownloadModelFromUrl", + "file_type": "code", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L136", + "_origin": "ast", + "id": "apps_extension_chromium_src_rpc_electronrpc_llmdownloadmodelfromurl", + "community": 116, + "community_name": "Electronrpc", + "norm_label": "llmdownloadmodelfromurl" + }, + { + "label": "LlmCancelModelDownload", + "file_type": "code", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L143", + "_origin": "ast", + "id": "apps_extension_chromium_src_rpc_electronrpc_llmcancelmodeldownload", + "community": 116, + "community_name": "Electronrpc", + "norm_label": "llmcancelmodeldownload" + }, + { + "label": "LlmDeleteModel", + "file_type": "code", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L150", + "_origin": "ast", + "id": "apps_extension_chromium_src_rpc_electronrpc_llmdeletemodel", + "community": 116, + "community_name": "Electronrpc", + "norm_label": "llmdeletemodel" + }, + { + "label": "LlmActivateModel", + "file_type": "code", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L157", + "_origin": "ast", + "id": "apps_extension_chromium_src_rpc_electronrpc_llmactivatemodel", + "community": 116, + "community_name": "Electronrpc", + "norm_label": "llmactivatemodel" + }, + { + "label": "LlmPerformance", + "file_type": "code", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L164", + "_origin": "ast", + "id": "apps_extension_chromium_src_rpc_electronrpc_llmperformance", + "community": 116, + "community_name": "Electronrpc", + "norm_label": "llmperformance" + }, + { + "label": "LlmInstallProgress", + "file_type": "code", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L171", + "_origin": "ast", + "id": "apps_extension_chromium_src_rpc_electronrpc_llminstallprogress", + "community": 116, + "community_name": "Electronrpc", + "norm_label": "llminstallprogress" + }, + { + "label": "LlmBinaryStatus", + "file_type": "code", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L180", + "_origin": "ast", + "id": "apps_extension_chromium_src_rpc_electronrpc_llmbinarystatus", + "community": 116, + "community_name": "Electronrpc", + "norm_label": "llmbinarystatus" + }, + { + "label": "LlmInstallLlamaServerBinary", + "file_type": "code", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L187", + "_origin": "ast", + "id": "apps_extension_chromium_src_rpc_electronrpc_llminstallllamaserverbinary", + "community": 116, + "community_name": "Electronrpc", + "norm_label": "llminstallllamaserverbinary" + }, + { + "label": "LlmBinaryInstallProgress", + "file_type": "code", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L194", + "_origin": "ast", + "id": "apps_extension_chromium_src_rpc_electronrpc_llmbinaryinstallprogress", + "community": 116, + "community_name": "Electronrpc", + "norm_label": "llmbinaryinstallprogress" + }, + { + "label": "LlmCancelBinaryInstall", + "file_type": "code", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L201", + "_origin": "ast", + "id": "apps_extension_chromium_src_rpc_electronrpc_llmcancelbinaryinstall", + "community": 116, + "community_name": "Electronrpc", + "norm_label": "llmcancelbinaryinstall" + }, + { + "label": "LlmServerConfigGet", + "file_type": "code", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L210", + "_origin": "ast", + "id": "apps_extension_chromium_src_rpc_electronrpc_llmserverconfigget", + "community": 116, + "community_name": "Electronrpc", + "norm_label": "llmserverconfigget" + }, + { + "label": "LlmServerConfigSet", + "file_type": "code", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L217", + "_origin": "ast", + "id": "apps_extension_chromium_src_rpc_electronrpc_llmserverconfigset", + "community": 116, + "community_name": "Electronrpc", + "norm_label": "llmserverconfigset" + }, + { + "label": "LlmServerRestart", + "file_type": "code", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L228", + "_origin": "ast", + "id": "apps_extension_chromium_src_rpc_electronrpc_llmserverrestart", + "community": 116, + "community_name": "Electronrpc", + "norm_label": "llmserverrestart" + }, + { + "label": "LlmSetAiExecutionContext", + "file_type": "code", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L235", + "_origin": "ast", + "id": "apps_extension_chromium_src_rpc_electronrpc_llmsetaiexecutioncontext", + "community": 116, + "community_name": "Electronrpc", + "norm_label": "llmsetaiexecutioncontext" + }, + { + "label": "DashboardOpen", + "file_type": "code", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L261", + "_origin": "ast", + "id": "apps_extension_chromium_src_rpc_electronrpc_dashboardopen", + "community": 116, + "community_name": "Electronrpc", + "norm_label": "dashboardopen" + }, + { + "label": "DashboardStatus", + "file_type": "code", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L268", + "_origin": "ast", + "id": "apps_extension_chromium_src_rpc_electronrpc_dashboardstatus", + "community": 116, + "community_name": "Electronrpc", + "norm_label": "dashboardstatus" + }, + { + "label": "OrchestratorMode", + "file_type": "code", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L289", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_rpc_electronrpc_orchestratormode", + "community": 116, + "community_name": "Electronrpc", + "norm_label": "orchestratormode" + }, + { + "label": "OrchestratorGetModeResponse", + "file_type": "code", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L298", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_rpc_electronrpc_orchestratorgetmoderesponse", + "community": 116, + "community_name": "Electronrpc", + "norm_label": "orchestratorgetmoderesponse" + }, + { + "label": "OrchestratorGetMode", + "file_type": "code", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L302", + "_origin": "ast", + "id": "apps_extension_chromium_src_rpc_electronrpc_orchestratorgetmode", + "community": 116, + "community_name": "Electronrpc", + "norm_label": "orchestratorgetmode" + }, + { + "label": "OrchestratorSetMode", + "file_type": "code", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L309", + "_origin": "ast", + "id": "apps_extension_chromium_src_rpc_electronrpc_orchestratorsetmode", + "community": 116, + "community_name": "Electronrpc", + "norm_label": "orchestratorsetmode" + }, + { + "label": "OrchestratorRegeneratePairingCodeResponse", + "file_type": "code", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L330", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_rpc_electronrpc_orchestratorregeneratepairingcoderesponse", + "community": 116, + "community_name": "Electronrpc", + "norm_label": "orchestratorregeneratepairingcoderesponse" + }, + { + "label": "OrchestratorRegeneratePairingCode", + "file_type": "code", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L334", + "_origin": "ast", + "id": "apps_extension_chromium_src_rpc_electronrpc_orchestratorregeneratepairingcode", + "community": 116, + "community_name": "Electronrpc", + "norm_label": "orchestratorregeneratepairingcode" + }, + { + "label": "customModeDraftSchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L343", + "_origin": "ast", + "id": "apps_extension_chromium_src_rpc_electronrpc_custommodedraftschema", + "community": 116, + "community_name": "Electronrpc", + "norm_label": "custommodedraftschema" + }, + { + "label": "CustomModesList", + "file_type": "code", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L360", + "_origin": "ast", + "id": "apps_extension_chromium_src_rpc_electronrpc_custommodeslist", + "community": 116, + "community_name": "Electronrpc", + "norm_label": "custommodeslist" + }, + { + "label": "CustomModesGetMigrationStatus", + "file_type": "code", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L367", + "_origin": "ast", + "id": "apps_extension_chromium_src_rpc_electronrpc_custommodesgetmigrationstatus", + "community": 116, + "community_name": "Electronrpc", + "norm_label": "custommodesgetmigrationstatus" + }, + { + "label": "CustomModesCreate", + "file_type": "code", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L374", + "_origin": "ast", + "id": "apps_extension_chromium_src_rpc_electronrpc_custommodescreate", + "community": 116, + "community_name": "Electronrpc", + "norm_label": "custommodescreate" + }, + { + "label": "CustomModesUpdate", + "file_type": "code", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L381", + "_origin": "ast", + "id": "apps_extension_chromium_src_rpc_electronrpc_custommodesupdate", + "community": 116, + "community_name": "Electronrpc", + "norm_label": "custommodesupdate" + }, + { + "label": "CustomModesDelete", + "file_type": "code", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L391", + "_origin": "ast", + "id": "apps_extension_chromium_src_rpc_electronrpc_custommodesdelete", + "community": 116, + "community_name": "Electronrpc", + "norm_label": "custommodesdelete" + }, + { + "label": "CustomModesImport", + "file_type": "code", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L398", + "_origin": "ast", + "id": "apps_extension_chromium_src_rpc_electronrpc_custommodesimport", + "community": 116, + "community_name": "Electronrpc", + "norm_label": "custommodesimport" + }, + { + "label": "RPC_REGISTRY", + "file_type": "code", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L417", + "_origin": "ast", + "id": "apps_extension_chromium_src_rpc_electronrpc_rpc_registry", + "community": 116, + "community_name": "Electronrpc", + "norm_label": "rpc_registry" + }, + { + "label": "RpcDef", + "file_type": "code", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L454", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_rpc_electronrpc_rpcdef", + "community": 116, + "community_name": "Electronrpc", + "norm_label": "rpcdef" + }, + { + "label": "RpcMethod", + "file_type": "code", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L455", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_rpc_electronrpc_rpcmethod", + "community": 129, + "community_name": "Llmsettings", + "norm_label": "rpcmethod" + }, + { + "label": "REGISTRY_MAP", + "file_type": "code", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L458", + "_origin": "ast", + "id": "apps_extension_chromium_src_rpc_electronrpc_registry_map", + "community": 116, + "community_name": "Electronrpc", + "norm_label": "registry_map" + }, + { + "label": "ElectronRpcRequest", + "file_type": "code", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L467", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_rpc_electronrpc_electronrpcrequest", + "community": 116, + "community_name": "Electronrpc", + "norm_label": "electronrpcrequest" + }, + { + "label": "ElectronRpcResponse", + "file_type": "code", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L475", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_rpc_electronrpc_electronrpcresponse", + "community": 116, + "community_name": "Electronrpc", + "norm_label": "electronrpcresponse" + }, + { + "label": "executeElectronRpcRequest()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L502", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_rpc_electronrpc_executeelectronrpcrequest", + "community": 116, + "community_name": "Electronrpc", + "norm_label": "executeelectronrpcrequest()" + }, + { + "label": "handleElectronRpc()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L579", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_rpc_electronrpc_handleelectronrpc", + "community": 116, + "community_name": "Electronrpc", + "norm_label": "handleelectronrpc()" + }, + { + "label": "electronRpc()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L612", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_rpc_electronrpc_electronrpc", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "electronrpc()" + }, + { + "label": "InputCoordinator.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_services_inputcoordinator", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": "inputcoordinator.ts" + }, + { + "label": "isWRChatTriggerType()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_inputcoordinator_iswrchattriggertype", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": "iswrchattriggertype()" + }, + { + "label": "isModeTriggerType()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_inputcoordinator_ismodetriggertype", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": "ismodetriggertype()" + }, + { + "label": "isTriggerRowEnabled()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_inputcoordinator_istriggerrowenabled", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": "istriggerrowenabled()" + }, + { + "label": "normalizeSessionKey()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_inputcoordinator_normalizesessionkey", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": "normalizesessionkey()" + }, + { + "label": "routingDebugEnabled()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_inputcoordinator_routingdebugenabled", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": "routingdebugenabled()" + }, + { + "label": "InputCoordinatorConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L71", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinatorconfig", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": "inputcoordinatorconfig" + }, + { + "label": "ListenerEvaluation", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L79", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_inputcoordinator_listenerevaluation", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": "listenerevaluation" + }, + { + "label": "InputCoordinator", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L111", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": "inputcoordinator" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L114", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_constructor", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": ".constructor()" + }, + { + "label": ".log()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L121", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_log", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": ".log()" + }, + { + "label": ".extractTriggerPatterns()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L134", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_extracttriggerpatterns", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": ".extracttriggerpatterns()" + }, + { + "label": ".matchesExpectedContext()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L155", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_matchesexpectedcontext", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": ".matchesexpectedcontext()" + }, + { + "label": ".matchesApplyFor()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L169", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_matchesapplyfor", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": ".matchesapplyfor()" + }, + { + "label": ".matchesWebsiteFilter()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L188", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_matcheswebsitefilter", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": ".matcheswebsitefilter()" + }, + { + "label": ".checkTriggerKeywords()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L202", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_checktriggerkeywords", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": ".checktriggerkeywords()" + }, + { + "label": ".hasWRChatTrigger()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L268", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_haswrchattrigger", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": ".haswrchattrigger()" + }, + { + "label": ".hasModeTrigger()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L284", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_hasmodetrigger", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": ".hasmodetrigger()" + }, + { + "label": ".evaluateAgentListener()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L319", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_evaluateagentlistener", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": ".evaluateagentlistener()" + }, + { + "label": ".findAgentBoxesForAgent()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L597", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_findagentboxesforagent", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": ".findagentboxesforagent()" + }, + { + "label": ".routeToAgents()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L761", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_routetoagents", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": ".routetoagents()" + }, + { + "label": ".routeToAgentsForModeRun()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L858", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_routetoagentsformoderun", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": ".routetoagentsformoderun()" + }, + { + "label": ".generateForwardingResponse()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L919", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_generateforwardingresponse", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": ".generateforwardingresponse()" + }, + { + "label": ".routeClassifiedInput()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L960", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_routeclassifiedinput", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": ".routeclassifiedinput()" + }, + { + "label": ".generateForwardingResponseFromClassified()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L1072", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_generateforwardingresponsefromclassified", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": ".generateforwardingresponsefromclassified()" + }, + { + "label": ".routeEventTagTrigger()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L1117", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_routeeventtagtrigger", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": ".routeeventtagtrigger()" + }, + { + "label": ".extractEventTagTriggers()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L1263", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_extracteventtagtriggers", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": ".extracteventtagtriggers()" + }, + { + "label": ".evaluateEventTagConditions()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L1326", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_evaluateeventtagconditions", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": ".evaluateeventtagconditions()" + }, + { + "label": ".resolveLlmFromAgentBox()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L1469", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_resolvellmfromagentbox", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": ".resolvellmfromagentbox()" + }, + { + "label": ".resolveReasoningConfig()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L1505", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_resolvereasoningconfig", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": ".resolvereasoningconfig()" + }, + { + "label": ".resolveExecutionConfig()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L1550", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_resolveexecutionconfig", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": ".resolveexecutionconfig()" + }, + { + "label": ".collectSensorContext()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L1685", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_collectsensorcontext", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": ".collectsensorcontext()" + }, + { + "label": ".generateRoutingSummary()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L1723", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_generateroutingsummary", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": ".generateroutingsummary()" + }, + { + "label": "TypeSystemService.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/TypeSystemService.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_services_typesystemservice", + "community": 314, + "community_name": "Services #314", + "norm_label": "typesystemservice.ts" + }, + { + "label": "getMasterSchema()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/TypeSystemService.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_typesystemservice_getmasterschema", + "community": 314, + "community_name": "Services #314", + "norm_label": "getmasterschema()" + }, + { + "label": "getUnifiedTemplate()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/TypeSystemService.ts", + "source_location": "L41", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_typesystemservice_getunifiedtemplate", + "community": 314, + "community_name": "Services #314", + "norm_label": "getunifiedtemplate()" + }, + { + "label": "clearSchemaCache()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/TypeSystemService.ts", + "source_location": "L57", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_typesystemservice_clearschemacache", + "community": 314, + "community_name": "Services #314", + "norm_label": "clearschemacache()" + }, + { + "label": "toCanonicalAgentBox()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/TypeSystemService.ts", + "source_location": "L69", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_typesystemservice_tocanonicalagentbox", + "community": 314, + "community_name": "Services #314", + "norm_label": "tocanonicalagentbox()" + }, + { + "label": "inferAgentNumber()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/TypeSystemService.ts", + "source_location": "L95", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_typesystemservice_inferagentnumber", + "community": 314, + "community_name": "Services #314", + "norm_label": "inferagentnumber()" + }, + { + "label": "toCanonicalAgent()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/TypeSystemService.ts", + "source_location": "L108", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_typesystemservice_tocanonicalagent", + "community": 314, + "community_name": "Services #314", + "norm_label": "tocanonicalagent()" + }, + { + "label": "buildConnectionInfo()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/TypeSystemService.ts", + "source_location": "L145", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_typesystemservice_buildconnectioninfo", + "community": 314, + "community_name": "Services #314", + "norm_label": "buildconnectioninfo()" + }, + { + "label": "convertToCanonicalFormat()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/TypeSystemService.ts", + "source_location": "L177", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_typesystemservice_converttocanonicalformat", + "community": 314, + "community_name": "Services #314", + "norm_label": "converttocanonicalformat()" + }, + { + "label": "createMasterSchema()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/TypeSystemService.ts", + "source_location": "L200", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_typesystemservice_createmasterschema", + "community": 314, + "community_name": "Services #314", + "norm_label": "createmasterschema()" + }, + { + "label": "createUnifiedTemplate()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/TypeSystemService.ts", + "source_location": "L437", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_typesystemservice_createunifiedtemplate", + "community": 314, + "community_name": "Services #314", + "norm_label": "createunifiedtemplate()" + }, + { + "label": "downloadJson()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/TypeSystemService.ts", + "source_location": "L531", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_typesystemservice_downloadjson", + "community": 314, + "community_name": "Services #314", + "norm_label": "downloadjson()" + }, + { + "label": "downloadMasterSchema()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/TypeSystemService.ts", + "source_location": "L547", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_typesystemservice_downloadmasterschema", + "community": 314, + "community_name": "Services #314", + "norm_label": "downloadmasterschema()" + }, + { + "label": "downloadUnifiedTemplate()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/TypeSystemService.ts", + "source_location": "L555", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_typesystemservice_downloadunifiedtemplate", + "community": 314, + "community_name": "Services #314", + "norm_label": "downloadunifiedtemplate()" + }, + { + "label": "beapRunAutomationResult.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/__tests__/beapRunAutomationResult.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_services_tests_beaprunautomationresult_test", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "beaprunautomationresult.test.ts" + }, + { + "label": "modeIntervalScheduler.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/__tests__/modeIntervalScheduler.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_services_tests_modeintervalscheduler_test", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "modeintervalscheduler.test.ts" + }, + { + "label": "customMode()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/__tests__/modeIntervalScheduler.test.ts", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_tests_modeintervalscheduler_test_custommode", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "custommode()" + }, + { + "label": "modeSessionRunInFlightExecute.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/__tests__/modeSessionRunInFlightExecute.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_services_tests_modesessionruninflightexecute_test", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "modesessionruninflightexecute.test.ts" + }, + { + "label": "modeSessionRunResultReporting.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/__tests__/modeSessionRunResultReporting.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_services_tests_modesessionrunresultreporting_test", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "modesessionrunresultreporting.test.ts" + }, + { + "label": "runModeAllocatedSessionAutomation.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/__tests__/runModeAllocatedSessionAutomation.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_services_tests_runmodeallocatedsessionautomation_test", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "runmodeallocatedsessionautomation.test.ts" + }, + { + "label": "customMode()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/__tests__/runModeAllocatedSessionAutomation.test.ts", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_tests_runmodeallocatedsessionautomation_test_custommode", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "custommode()" + }, + { + "label": "sessionImportArtefactUnwrap.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/__tests__/sessionImportArtefactUnwrap.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_services_tests_sessionimportartefactunwrap_test", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "sessionimportartefactunwrap.test.ts" + }, + { + "label": "beapRunAutomationResult.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/beapRunAutomationResult.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_services_beaprunautomationresult", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "beaprunautomationresult.ts" + }, + { + "label": "BEAP_AUTOMATION_NO_MODE_TRIGGER_MSG", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/beapRunAutomationResult.ts", + "source_location": "L6", + "_origin": "ast", + "id": "apps_extension_chromium_src_services_beaprunautomationresult_beap_automation_no_mode_trigger_msg", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "beap_automation_no_mode_trigger_msg" + }, + { + "label": "ModeRunAgentsResultLite", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/beapRunAutomationResult.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_beaprunautomationresult_moderunagentsresultlite", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "moderunagentsresultlite" + }, + { + "label": "BeapAutomationModeRunOk", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/beapRunAutomationResult.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_beaprunautomationresult_beapautomationmoderunok", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "beapautomationmoderunok" + }, + { + "label": "BeapAutomationModeRunErr", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/beapRunAutomationResult.ts", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_beaprunautomationresult_beapautomationmoderunerr", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "beapautomationmoderunerr" + }, + { + "label": "interpretBeapAutomationModeRun()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/beapRunAutomationResult.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_beaprunautomationresult_interpretbeapautomationmoderun", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "interpretbeapautomationmoderun()" + }, + { + "label": "customModesClient.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/customModesClient.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_services_custommodesclient", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "custommodesclient.ts" + }, + { + "label": "CustomModesMigrationOrigin", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/customModesClient.ts", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_custommodesclient_custommodesmigrationorigin", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "custommodesmigrationorigin" + }, + { + "label": "CustomModesStoreResponse", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/customModesClient.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_custommodesclient_custommodesstoreresponse", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "custommodesstoreresponse" + }, + { + "label": "CustomModesMigrationStatusResponse", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/customModesClient.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_custommodesclient_custommodesmigrationstatusresponse", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "custommodesmigrationstatusresponse" + }, + { + "label": "parseModesResponse()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/customModesClient.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_custommodesclient_parsemodesresponse", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "parsemodesresponse()" + }, + { + "label": "parseMigrationStatusResponse()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/customModesClient.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_custommodesclient_parsemigrationstatusresponse", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "parsemigrationstatusresponse()" + }, + { + "label": "customModesClient", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/customModesClient.ts", + "source_location": "L59", + "_origin": "ast", + "id": "apps_extension_chromium_src_services_custommodesclient_custommodesclient", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "custommodesclient" + }, + { + "label": "customModesMigration.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/customModesMigration.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_services_custommodesmigration", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "custommodesmigration.ts" + }, + { + "label": "isElectronDashboard()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/customModesMigration.ts", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_custommodesmigration_iselectrondashboard", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "iselectrondashboard()" + }, + { + "label": "getMigrationStatus()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/customModesMigration.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_custommodesmigration_getmigrationstatus", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "getmigrationstatus()" + }, + { + "label": "importModes()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/customModesMigration.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_custommodesmigration_importmodes", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "importmodes()" + }, + { + "label": "verifyImportedModes()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/customModesMigration.ts", + "source_location": "L52", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_custommodesmigration_verifyimportedmodes", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "verifyimportedmodes()" + }, + { + "label": "runCustomModesMigrationIfNeeded()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/customModesMigration.ts", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_custommodesmigration_runcustommodesmigrationifneeded", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "runcustommodesmigrationifneeded()" + }, + { + "label": "warnIfLegacyCustomModesLocalStorageReappears()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/customModesMigration.ts", + "source_location": "L98", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_custommodesmigration_warniflegacycustommodeslocalstoragereappears", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "warniflegacycustommodeslocalstoragereappears()" + }, + { + "label": "displayGridAgentSelection.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/displayGridAgentSelection.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_services_displaygridagentselection", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "displaygridagentselection.ts" + }, + { + "label": "isProviderModelConfigured()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/displayGridAgentSelection.ts", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_displaygridagentselection_isprovidermodelconfigured", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "isprovidermodelconfigured()" + }, + { + "label": "boxForSlotNumber()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/displayGridAgentSelection.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_displaygridagentselection_boxforslotnumber", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "boxforslotnumber()" + }, + { + "label": "firstGridWithEarliestAgentSetup()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/displayGridAgentSelection.ts", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_displaygridagentselection_firstgridwithearliestagentsetup", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "firstgridwithearliestagentsetup()" + }, + { + "label": "domSnapshotBridge.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/domSnapshotBridge.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_services_domsnapshotbridge", + "community": 339, + "community_name": "Services UI Optimization", + "norm_label": "domsnapshotbridge.ts" + }, + { + "label": "requestDomSnapshot()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/domSnapshotBridge.ts", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_domsnapshotbridge_requestdomsnapshot", + "community": 339, + "community_name": "Services UI Optimization", + "norm_label": "requestdomsnapshot()" + }, + { + "label": "domSnapshotCapture.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/domSnapshotCapture.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_services_domsnapshotcapture", + "community": 339, + "community_name": "Services UI Optimization", + "norm_label": "domsnapshotcapture.ts" + }, + { + "label": "domSnapshotCaptureInjected()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/domSnapshotCapture.ts", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_domsnapshotcapture_domsnapshotcaptureinjected", + "community": 339, + "community_name": "Services UI Optimization", + "norm_label": "domsnapshotcaptureinjected()" + }, + { + "label": "captureDomSnapshot()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/domSnapshotCapture.ts", + "source_location": "L220", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_domsnapshotcapture_capturedomsnapshot", + "community": 339, + "community_name": "Services UI Optimization", + "norm_label": "capturedomsnapshot()" + }, + { + "label": "domSnapshotMessageTypes.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/domSnapshotMessageTypes.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_services_domsnapshotmessagetypes", + "community": 572, + "community_name": "Services #572", + "norm_label": "domsnapshotmessagetypes.ts" + }, + { + "label": "CAPTURE_DOM_SNAPSHOT_MESSAGE_TYPE", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/domSnapshotMessageTypes.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_services_domsnapshotmessagetypes_capture_dom_snapshot_message_type", + "community": 572, + "community_name": "Services #572", + "norm_label": "capture_dom_snapshot_message_type" + }, + { + "label": "ensureLaunchSecretForElectronHttp.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/ensureLaunchSecretForElectronHttp.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_services_ensurelaunchsecretforelectronhttp", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "ensurelaunchsecretforelectronhttp.ts" + }, + { + "label": "ensureLaunchSecretForElectronHttp()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/ensureLaunchSecretForElectronHttp.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_ensurelaunchsecretforelectronhttp_ensurelaunchsecretforelectronhttp", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "ensurelaunchsecretforelectronhttp()" + }, + { + "label": "fetchWithElectronHttpReady()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/ensureLaunchSecretForElectronHttp.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_ensurelaunchsecretforelectronhttp_fetchwithelectronhttpready", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "fetchwithelectronhttpready()" + }, + { + "label": "fetchOptimizerTrigger.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/fetchOptimizerTrigger.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_services_fetchoptimizertrigger", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "fetchoptimizertrigger.ts" + }, + { + "label": "dispatchOptimizationToast()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/fetchOptimizerTrigger.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_fetchoptimizertrigger_dispatchoptimizationtoast", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "dispatchoptimizationtoast()" + }, + { + "label": "getLaunchSecret()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/fetchOptimizerTrigger.ts", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_fetchoptimizertrigger_getlaunchsecret", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "getlaunchsecret()" + }, + { + "label": "resolveElectronFallback()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/fetchOptimizerTrigger.ts", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_fetchoptimizertrigger_resolveelectronfallback", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "resolveelectronfallback()" + }, + { + "label": "buildHeaders()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/fetchOptimizerTrigger.ts", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_fetchoptimizertrigger_buildheaders", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "buildheaders()" + }, + { + "label": "getOptimizerStatus()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/fetchOptimizerTrigger.ts", + "source_location": "L60", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_fetchoptimizertrigger_getoptimizerstatus", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "getoptimizerstatus()" + }, + { + "label": "setOptimizerContinuous()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/fetchOptimizerTrigger.ts", + "source_location": "L82", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_fetchoptimizertrigger_setoptimizercontinuous", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "setoptimizercontinuous()" + }, + { + "label": "triggerOptimizerSnapshot()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/fetchOptimizerTrigger.ts", + "source_location": "L125", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_fetchoptimizertrigger_triggeroptimizersnapshot", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "triggeroptimizersnapshot()" + }, + { + "label": "fetchOrchestratorSession.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/fetchOrchestratorSession.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_services_fetchorchestratorsession", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "fetchorchestratorsession.ts" + }, + { + "label": "OrchestratorSessionJson", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/fetchOrchestratorSession.ts", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_fetchorchestratorsession_orchestratorsessionjson", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "orchestratorsessionjson" + }, + { + "label": "FetchOrchestratorSessionResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/fetchOrchestratorSession.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_fetchorchestratorsession_fetchorchestratorsessionresult", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "fetchorchestratorsessionresult" + }, + { + "label": "orchestratorGetHeaders()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/fetchOrchestratorSession.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_fetchorchestratorsession_orchestratorgetheaders", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "orchestratorgetheaders()" + }, + { + "label": "fetchOrchestratorSession()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/fetchOrchestratorSession.ts", + "source_location": "L51", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_fetchorchestratorsession_fetchorchestratorsession", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "fetchorchestratorsession()" + }, + { + "label": "fetchOrchestratorSessionsList.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/fetchOrchestratorSessionsList.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_services_fetchorchestratorsessionslist", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "fetchorchestratorsessionslist.ts" + }, + { + "label": "OrchestratorSessionListEntry", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/fetchOrchestratorSessionsList.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_fetchorchestratorsessionslist_orchestratorsessionlistentry", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "orchestratorsessionlistentry" + }, + { + "label": "fetchOrchestratorSessionsForWizardViaHttp()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/fetchOrchestratorSessionsList.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_fetchorchestratorsessionslist_fetchorchestratorsessionsforwizardviahttp", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "fetchorchestratorsessionsforwizardviahttp()" + }, + { + "label": "displayNameForSessionKey()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/fetchOrchestratorSessionsList.ts", + "source_location": "L50", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_fetchorchestratorsessionslist_displaynameforsessionkey", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "displaynameforsessionkey()" + }, + { + "label": "fetchOrchestratorSessionsForWizard()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/fetchOrchestratorSessionsList.ts", + "source_location": "L68", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_fetchorchestratorsessionslist_fetchorchestratorsessionsforwizard", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "fetchorchestratorsessionsforwizard()" + }, + { + "label": "fetchTriggerProjects.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/fetchTriggerProjects.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_services_fetchtriggerprojects", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "fetchtriggerprojects.ts" + }, + { + "label": "TriggerListResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/fetchTriggerProjects.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_fetchtriggerprojects_triggerlistresult", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "triggerlistresult" + }, + { + "label": "getLaunchSecret()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/fetchTriggerProjects.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_fetchtriggerprojects_getlaunchsecret", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "getlaunchsecret()" + }, + { + "label": "resolveElectronFallback()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/fetchTriggerProjects.ts", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_fetchtriggerprojects_resolveelectronfallback", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "resolveelectronfallback()" + }, + { + "label": "buildHeaders()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/fetchTriggerProjects.ts", + "source_location": "L49", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_fetchtriggerprojects_buildheaders", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "buildheaders()" + }, + { + "label": "parseProjectRows()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/fetchTriggerProjects.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_fetchtriggerprojects_parseprojectrows", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "parseprojectrows()" + }, + { + "label": "TRIGGER_COMPOSER_IDS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/fetchTriggerProjects.ts", + "source_location": "L79", + "_origin": "ast", + "id": "apps_extension_chromium_src_services_fetchtriggerprojects_trigger_composer_ids", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "trigger_composer_ids" + }, + { + "label": "isTriggerComposerShortcutId()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/fetchTriggerProjects.ts", + "source_location": "L87", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_fetchtriggerprojects_istriggercomposershortcutid", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "istriggercomposershortcutid()" + }, + { + "label": "defaultComposerShortcutTitle()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/fetchTriggerProjects.ts", + "source_location": "L91", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_fetchtriggerprojects_defaultcomposershortcuttitle", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "defaultcomposershortcuttitle()" + }, + { + "label": "parseComposerShortcuts()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/fetchTriggerProjects.ts", + "source_location": "L106", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_fetchtriggerprojects_parsecomposershortcuts", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "parsecomposershortcuts()" + }, + { + "label": "fetchTriggerProjects()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/fetchTriggerProjects.ts", + "source_location": "L133", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_fetchtriggerprojects_fetchtriggerprojects", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "fetchtriggerprojects()" + }, + { + "label": "localOllamaModels.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/localOllamaModels.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_services_localollamamodels", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "localollamamodels.ts" + }, + { + "label": "InstalledLocalModelsResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/localOllamaModels.ts", + "source_location": "L15", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_localollamamodels_installedlocalmodelsresult", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "installedlocalmodelsresult" + }, + { + "label": "unwrapStatusPayload()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/localOllamaModels.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_localollamamodels_unwrapstatuspayload", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "unwrapstatuspayload()" + }, + { + "label": "fetchOllamaModelNamesFromEndpoint()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/localOllamaModels.ts", + "source_location": "L46", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_localollamamodels_fetchollamamodelnamesfromendpoint", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "fetchollamamodelnamesfromendpoint()" + }, + { + "label": "fetchInstalledLocalModelNames()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/localOllamaModels.ts", + "source_location": "L70", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_localollamamodels_fetchinstalledlocalmodelnames", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "fetchinstalledlocalmodelnames()" + }, + { + "label": "WrChatSelectorModelsResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/localOllamaModels.ts", + "source_location": "L110", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_localollamamodels_wrchatselectormodelsresult", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "wrchatselectormodelsresult" + }, + { + "label": "fetchWrChatSelectorModelsFromBackend()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/localOllamaModels.ts", + "source_location": "L121", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_localollamamodels_fetchwrchatselectormodelsfrombackend", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "fetchwrchatselectormodelsfrombackend()" + }, + { + "label": "escapeHtmlAttr()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/localOllamaModels.ts", + "source_location": "L159", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_localollamamodels_escapehtmlattr", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "escapehtmlattr()" + }, + { + "label": "modeIntervalRunner.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/modeIntervalRunner.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_services_modeintervalrunner", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "modeintervalrunner.ts" + }, + { + "label": "SYNC_MODE_INTERVAL_SCHEDULERS_TYPE", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/modeIntervalRunner.ts", + "source_location": "L8", + "_origin": "ast", + "id": "apps_extension_chromium_src_services_modeintervalrunner_sync_mode_interval_schedulers_type", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "sync_mode_interval_schedulers_type" + }, + { + "label": "syncCustomModeIntervalRunners()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/modeIntervalRunner.ts", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_modeintervalrunner_synccustommodeintervalrunners", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "synccustommodeintervalrunners()" + }, + { + "label": "stopAllCustomModeIntervalRunners()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/modeIntervalRunner.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_modeintervalrunner_stopallcustommodeintervalrunners", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "stopallcustommodeintervalrunners()" + }, + { + "label": "modeIntervalScheduler.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/modeIntervalScheduler.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_services_modeintervalscheduler", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "modeintervalscheduler.ts" + }, + { + "label": "MODE_INTERVAL_ALARM_PREFIX", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/modeIntervalScheduler.ts", + "source_location": "L10", + "_origin": "ast", + "id": "apps_extension_chromium_src_services_modeintervalscheduler_mode_interval_alarm_prefix", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "mode_interval_alarm_prefix" + }, + { + "label": "intervalSecondsByModeId", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/modeIntervalScheduler.ts", + "source_location": "L12", + "_origin": "ast", + "id": "apps_extension_chromium_src_services_modeintervalscheduler_intervalsecondsbymodeid", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "intervalsecondsbymodeid" + }, + { + "label": "modeIntervalAlarmName()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/modeIntervalScheduler.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_modeintervalscheduler_modeintervalalarmname", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "modeintervalalarmname()" + }, + { + "label": "parseModeIdFromIntervalAlarm()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/modeIntervalScheduler.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_modeintervalscheduler_parsemodeidfromintervalalarm", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "parsemodeidfromintervalalarm()" + }, + { + "label": "modeNeedsIntervalRun()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/modeIntervalScheduler.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_modeintervalscheduler_modeneedsintervalrun", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "modeneedsintervalrun()" + }, + { + "label": "delayMinutesForInterval()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/modeIntervalScheduler.ts", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_modeintervalscheduler_delayminutesforinterval", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "delayminutesforinterval()" + }, + { + "label": "scheduleModeIntervalAlarm()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/modeIntervalScheduler.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_modeintervalscheduler_schedulemodeintervalalarm", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "schedulemodeintervalalarm()" + }, + { + "label": "clearAllModeIntervalAlarms()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/modeIntervalScheduler.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_modeintervalscheduler_clearallmodeintervalalarms", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "clearallmodeintervalalarms()" + }, + { + "label": "syncModeIntervalSchedulers()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/modeIntervalScheduler.ts", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_modeintervalscheduler_syncmodeintervalschedulers", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "syncmodeintervalschedulers()" + }, + { + "label": "syncModeIntervalSchedulersFromStore()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/modeIntervalScheduler.ts", + "source_location": "L100", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_modeintervalscheduler_syncmodeintervalschedulersfromstore", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "syncmodeintervalschedulersfromstore()" + }, + { + "label": "rescheduleModeIntervalAlarm()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/modeIntervalScheduler.ts", + "source_location": "L107", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_modeintervalscheduler_reschedulemodeintervalalarm", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "reschedulemodeintervalalarm()" + }, + { + "label": "getModeIntervalSeconds()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/modeIntervalScheduler.ts", + "source_location": "L112", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_modeintervalscheduler_getmodeintervalseconds", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "getmodeintervalseconds()" + }, + { + "label": "modeModelWarmOnTrigger.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/modeModelWarmOnTrigger.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_services_modemodelwarmontrigger", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "modemodelwarmontrigger.ts" + }, + { + "label": "ModeWarmTrigger", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/modeModelWarmOnTrigger.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_modemodelwarmontrigger_modewarmtrigger", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "modewarmtrigger" + }, + { + "label": "resolveLaunchSecret()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/modeModelWarmOnTrigger.ts", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_modemodelwarmontrigger_resolvelaunchsecret", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "resolvelaunchsecret()" + }, + { + "label": "requestModeModelWarmOnTrigger()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/modeModelWarmOnTrigger.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_modemodelwarmontrigger_requestmodemodelwarmontrigger", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "requestmodemodelwarmontrigger()" + }, + { + "label": "modeRunExecution.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_services_moderunexecution", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "moderunexecution.ts" + }, + { + "label": "defaultGetFetchHeaders()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L50", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_moderunexecution_defaultgetfetchheaders", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "defaultgetfetchheaders()" + }, + { + "label": "ModeRunAgentExecutionResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L75", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_moderunexecution_moderunagentexecutionresult", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "moderunagentexecutionresult" + }, + { + "label": "ExecuteModeRunAgentsResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L83", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_moderunexecution_executemoderunagentsresult", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "executemoderunagentsresult" + }, + { + "label": "ExecuteModeRunAgentsOptions", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L88", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_moderunexecution_executemoderunagentsoptions", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "executemoderunagentsoptions" + }, + { + "label": "resolveModeRunWrchatModelId()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L119", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_moderunexecution_resolvemoderunwrchatmodelid", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "resolvemoderunwrchatmodelid()" + }, + { + "label": "fetchWrChatAvailableModelsForModeRun()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L129", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_moderunexecution_fetchwrchatavailablemodelsformoderun", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "fetchwrchatavailablemodelsformoderun()" + }, + { + "label": "resolveModeRunHostRouteModelId()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L149", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_moderunexecution_resolvemoderunhostroutemodelid", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "resolvemoderunhostroutemodelid()" + }, + { + "label": "ModeRunLlmSubmitResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L163", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_moderunexecution_moderunllmsubmitresult", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "moderunllmsubmitresult" + }, + { + "label": "submitModeRunAgentLlm()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L168", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_moderunexecution_submitmoderunagentllm", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "submitmoderunagentllm()" + }, + { + "label": "executeModeRunAgents()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L309", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_moderunexecution_executemoderunagents", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "executemoderunagents()" + }, + { + "label": "RunOneParams", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L370", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_moderunexecution_runoneparams", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "runoneparams" + }, + { + "label": "runAgentMatchLlm()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L390", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_moderunexecution_runagentmatchllm", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "runagentmatchllm()" + }, + { + "label": "modeSessionRunInFlightExecute.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/modeSessionRunInFlightExecute.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_services_modesessionruninflightexecute", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "modesessionruninflightexecute.ts" + }, + { + "label": "MODE_RUN_HARD_TIMEOUT_MS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/modeSessionRunInFlightExecute.ts", + "source_location": "L14", + "_origin": "ast", + "id": "apps_extension_chromium_src_services_modesessionruninflightexecute_mode_run_hard_timeout_ms", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "mode_run_hard_timeout_ms" + }, + { + "label": "MODE_RUN_TIMED_OUT_ERROR", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/modeSessionRunInFlightExecute.ts", + "source_location": "L16", + "_origin": "ast", + "id": "apps_extension_chromium_src_services_modesessionruninflightexecute_mode_run_timed_out_error", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "mode_run_timed_out_error" + }, + { + "label": "ModeSessionRunInFlightResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/modeSessionRunInFlightExecute.ts", + "source_location": "L21", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_modesessionruninflightexecute_modesessionruninflightresult", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "modesessionruninflightresult" + }, + { + "label": "notifyModeSessionRunTimedOut()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/modeSessionRunInFlightExecute.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_modesessionruninflightexecute_notifymodesessionruntimedout", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "notifymodesessionruntimedout()" + }, + { + "label": "raceExecuteModeRunAgentsWithHardTimeout()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/modeSessionRunInFlightExecute.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_modesessionruninflightexecute_raceexecutemoderunagentswithhardtimeout", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "raceexecutemoderunagentswithhardtimeout()" + }, + { + "label": "executeModeSessionRunWithInFlightGuard()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/modeSessionRunInFlightExecute.ts", + "source_location": "L77", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_modesessionruninflightexecute_executemodesessionrunwithinflightguard", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "executemodesessionrunwithinflightguard()" + }, + { + "label": "modeSessionRunResultReporting.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/modeSessionRunResultReporting.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_services_modesessionrunresultreporting", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "modesessionrunresultreporting.ts" + }, + { + "label": "reportModeSessionRunResult()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/modeSessionRunResultReporting.ts", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_modesessionrunresultreporting_reportmodesessionrunresult", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "reportmodesessionrunresult()" + }, + { + "label": "optimizationSidebarChatSync.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/optimizationSidebarChatSync.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_services_optimizationsidebarchatsync", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "optimizationsidebarchatsync.ts" + }, + { + "label": "OptimizationSidebarChatLogEntry", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/optimizationSidebarChatSync.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_optimizationsidebarchatsync_optimizationsidebarchatlogentry", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "optimizationsidebarchatlogentry" + }, + { + "label": "appendOptimizationSidebarChatLog()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/optimizationSidebarChatSync.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_optimizationsidebarchatsync_appendoptimizationsidebarchatlog", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "appendoptimizationsidebarchatlog()" + }, + { + "label": "presentOrchestratorDisplayGridSession.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/presentOrchestratorDisplayGridSession.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_services_presentorchestratordisplaygridsession", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "presentorchestratordisplaygridsession.ts" + }, + { + "label": "gridFingerprint()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/presentOrchestratorDisplayGridSession.ts", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_presentorchestratordisplaygridsession_gridfingerprint", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "gridfingerprint()" + }, + { + "label": "computeNextBoxNumber()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/presentOrchestratorDisplayGridSession.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_presentorchestratordisplaygridsession_computenextboxnumber", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "computenextboxnumber()" + }, + { + "label": "maybePresentOrchestratorDisplayGridSession()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/presentOrchestratorDisplayGridSession.ts", + "source_location": "L57", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_presentorchestratordisplaygridsession_maybepresentorchestratordisplaygridsession", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "maybepresentorchestratordisplaygridsession()" + }, + { + "label": "processFlow.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "processflow.ts" + }, + { + "label": "getListenerManager()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_getlistenermanager", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "getlistenermanager()" + }, + { + "label": "getTriggerRegistry()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L69", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_gettriggerregistry", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "gettriggerregistry()" + }, + { + "label": "getChatTrigger()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L77", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_getchattrigger", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "getchattrigger()" + }, + { + "label": "getLegacyAdapter()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L85", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_getlegacyadapter", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "getlegacyadapter()" + }, + { + "label": "initializeAutomationsFromSession()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L94", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_initializeautomationsfromsession", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "initializeautomationsfromsession()" + }, + { + "label": "processWithAutomation()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L120", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_processwithautomation", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "processwithautomation()" + }, + { + "label": "AgentMatch", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L154", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_agentmatch", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": "agentmatch" + }, + { + "label": "AgentConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L184", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_agentconfig", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": "agentconfig" + }, + { + "label": "AgentBox", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L238", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_agentbox", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": "agentbox" + }, + { + "label": "DisplayGrid", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L260", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_displaygrid", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "displaygrid" + }, + { + "label": "RoutingDecision", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L269", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_routingdecision", + "community": 64, + "community_name": "Services Automation Workflows", + "norm_label": "routingdecision" + }, + { + "label": "EnrichedTurnInput", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L282", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_enrichedturninput", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "enrichedturninput" + }, + { + "label": "resolveProcessFlowSessionKey()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L298", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_resolveprocessflowsessionkey", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "resolveprocessflowsessionkey()" + }, + { + "label": "getCurrentSessionKey()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L324", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_getcurrentsessionkey", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "getcurrentsessionkey()" + }, + { + "label": "extractAgentNumber()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L347", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_extractagentnumber", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "extractagentnumber()" + }, + { + "label": "loadSavedTriggers()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L402", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_loadsavedtriggers", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "loadsavedtriggers()" + }, + { + "label": "loadAgentsFromSession()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L422", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_loadagentsfromsession", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "loadagentsfromsession()" + }, + { + "label": "loadAgentsFromChromeStorage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L490", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_loadagentsfromchromestorage", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "loadagentsfromchromestorage()" + }, + { + "label": "parseAgentsFromSession()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L508", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_parseagentsfromsession", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "parseagentsfromsession()" + }, + { + "label": "extractBoxAgentNumber()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L570", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_extractboxagentnumber", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "extractboxagentnumber()" + }, + { + "label": "loadAgentBoxesFromSession()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L614", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_loadagentboxesfromsession", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "loadagentboxesfromsession()" + }, + { + "label": "loadAgentBoxesFromChromeStorage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L679", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_loadagentboxesfromchromestorage", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "loadagentboxesfromchromestorage()" + }, + { + "label": "normalizeAgentBoxes()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L698", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_normalizeagentboxes", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "normalizeagentboxes()" + }, + { + "label": "findAgentBoxesForAgent()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L741", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_findagentboxesforagent", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "findagentboxesforagent()" + }, + { + "label": "extractTriggerPatterns()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L753", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_extracttriggerpatterns", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "extracttriggerpatterns()" + }, + { + "label": "matchesExpectedContext()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L761", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_matchesexpectedcontext", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "matchesexpectedcontext()" + }, + { + "label": "matchesApplyFor()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L776", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_matchesapplyfor", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "matchesapplyfor()" + }, + { + "label": "matchInputToAgents()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L797", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_matchinputtoagents", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "matchinputtoagents()" + }, + { + "label": "matchAgentsForModeRun()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L838", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_matchagentsformoderun", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "matchagentsformoderun()" + }, + { + "label": "isSystemQuery()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L855", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_issystemquery", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "issystemquery()" + }, + { + "label": "generateForwardingResponse()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L873", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_generateforwardingresponse", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "generateforwardingresponse()" + }, + { + "label": "generateSystemStatusResponse()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L881", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_generatesystemstatusresponse", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "generatesystemstatusresponse()" + }, + { + "label": "getButlerSystemPrompt()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L947", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_getbutlersystemprompt", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "getbutlersystemprompt()" + }, + { + "label": "routeInput()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L981", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_routeinput", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "routeinput()" + }, + { + "label": "routeEventTagInput()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1078", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_routeeventtaginput", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "routeeventtaginput()" + }, + { + "label": "processEventTagMatch()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1141", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_processeventtagmatch", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "processeventtagmatch()" + }, + { + "label": "generateEventTagRoutingSummary()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1207", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_generateeventtagroutingsummary", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "generateeventtagroutingsummary()" + }, + { + "label": "enrichRouteTextWithOcr()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1214", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_enrichroutetextwithocr", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "enrichroutetextwithocr()" + }, + { + "label": "wrapInputForAgent()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1222", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_wrapinputforagent", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "wrapinputforagent()" + }, + { + "label": "updateAgentBoxOutput()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1280", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_updateagentboxoutput", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "updateagentboxoutput()" + }, + { + "label": "updateAgentBoxOutputInChromeStorage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1354", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_updateagentboxoutputinchromestorage", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "updateagentboxoutputinchromestorage()" + }, + { + "label": "getAgentById()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1400", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_getagentbyid", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "getagentbyid()" + }, + { + "label": "BrainResolution", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1405", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_brainresolution", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "brainresolution" + }, + { + "label": "BrainErrorType", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1409", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_brainerrortype", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "brainerrortype" + }, + { + "label": "resolveModelForAgent()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1425", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_resolvemodelforagent", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "resolvemodelforagent()" + }, + { + "label": "AgentBoxModelSource", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1502", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_agentboxmodelsource", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "agentboxmodelsource" + }, + { + "label": "agentBoxInferenceDebugLog()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1508", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_agentboxinferencedebuglog", + "community": 72, + "community_name": "Services", + "norm_label": "agentboxinferencedebuglog()" + }, + { + "label": "hasAgentBoxFixedLlm()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1513", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_hasagentboxfixedllm", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "hasagentboxfixedllm()" + }, + { + "label": "ResolveAgentBoxModelIdsResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1519", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_resolveagentboxmodelidsresult", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "resolveagentboxmodelidsresult" + }, + { + "label": "resolveAgentBoxModelIds()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1527", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_resolveagentboxmodelids", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "resolveagentboxmodelids()" + }, + { + "label": "ResolveAgentBoxInferenceResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1552", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_resolveagentboxinferenceresult", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "resolveagentboxinferenceresult" + }, + { + "label": "resolveAgentBoxInference()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1563", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_resolveagentboxinference", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "resolveagentboxinference()" + }, + { + "label": "getCloudApiKey()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1630", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_getcloudapikey", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "getcloudapikey()" + }, + { + "label": "LlmRequestBody", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1641", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_llmrequestbody", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "llmrequestbody" + }, + { + "label": "buildLlmRequestBody()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1653", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_buildllmrequestbody", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "buildllmrequestbody()" + }, + { + "label": "TODO: Actually call the LLM here", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1185", + "_origin": "ast", + "id": "apps_extension_chromium_src_services_processflow_rationale_1185", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "todo: actually call the llm here" + }, + { + "label": "runModeAllocatedSessionAutomation.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "runmodeallocatedsessionautomation.ts" + }, + { + "label": "RUN_MODE_ALLOCATED_SESSION_TYPE", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts", + "source_location": "L18", + "_origin": "ast", + "id": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation_run_mode_allocated_session_type", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "run_mode_allocated_session_type" + }, + { + "label": "ModeSessionRunTrigger", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation_modesessionruntrigger", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "modesessionruntrigger" + }, + { + "label": "ModeSessionRunExecuteResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation_modesessionrunexecuteresult", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "modesessionrunexecuteresult" + }, + { + "label": "RunModeAllocatedSessionAutomationResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts", + "source_location": "L32", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation_runmodeallocatedsessionautomationresult", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "runmodeallocatedsessionautomationresult" + }, + { + "label": "RunModeAllocatedSessionOptions", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts", + "source_location": "L49", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation_runmodeallocatedsessionoptions", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "runmodeallocatedsessionoptions" + }, + { + "label": "ResolvedModeSessionRun", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts", + "source_location": "L57", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation_resolvedmodesessionrun", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "resolvedmodesessionrun" + }, + { + "label": "resolveModeAllocatedSessionRun()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts", + "source_location": "L64", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation_resolvemodeallocatedsessionrun", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "resolvemodeallocatedsessionrun()" + }, + { + "label": "mirrorSessionBlob()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts", + "source_location": "L88", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation_mirrorsessionblob", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "mirrorsessionblob()" + }, + { + "label": "focusGridTabIfPresent()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts", + "source_location": "L92", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation_focusgridtabifpresent", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "focusgridtabifpresent()" + }, + { + "label": "RunModeAllocatedSessionAutomationDeps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts", + "source_location": "L101", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation_runmodeallocatedsessionautomationdeps", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "runmodeallocatedsessionautomationdeps" + }, + { + "label": "runModeAllocatedSessionAutomation()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts", + "source_location": "L122", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation_runmodeallocatedsessionautomation", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "runmodeallocatedsessionautomation()" + }, + { + "label": "requestRunModeAllocatedSession()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts", + "source_location": "L203", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation_requestrunmodeallocatedsession", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "requestrunmodeallocatedsession()" + }, + { + "label": "modeHasAllocatedSession()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts", + "source_location": "L246", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation_modehasallocatedsession", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "modehasallocatedsession()" + }, + { + "label": "sessionActivationForOptimization.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/sessionActivationForOptimization.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_services_sessionactivationforoptimization", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "sessionactivationforoptimization.ts" + }, + { + "label": "OptimizationProject", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/sessionActivationForOptimization.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_sessionactivationforoptimization_optimizationproject", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "optimizationproject" + }, + { + "label": "ActivationResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/sessionActivationForOptimization.ts", + "source_location": "L15", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_sessionactivationforoptimization_activationresult", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "activationresult" + }, + { + "label": "loadSessionBlob()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/sessionActivationForOptimization.ts", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_sessionactivationforoptimization_loadsessionblob", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "loadsessionblob()" + }, + { + "label": "waitForTabComplete()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/sessionActivationForOptimization.ts", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_sessionactivationforoptimization_waitfortabcomplete", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "waitfortabcomplete()" + }, + { + "label": "waitForGridTabSessionKey()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/sessionActivationForOptimization.ts", + "source_location": "L66", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_sessionactivationforoptimization_waitforgridtabsessionkey", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "waitforgridtabsessionkey()" + }, + { + "label": "runActivation()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/sessionActivationForOptimization.ts", + "source_location": "L76", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_sessionactivationforoptimization_runactivation", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "runactivation()" + }, + { + "label": "mapMessageResponseToActivation()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/sessionActivationForOptimization.ts", + "source_location": "L143", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_sessionactivationforoptimization_mapmessageresponsetoactivation", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "mapmessageresponsetoactivation()" + }, + { + "label": "activateViaRuntimeMessage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/sessionActivationForOptimization.ts", + "source_location": "L166", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_sessionactivationforoptimization_activateviaruntimemessage", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "activateviaruntimemessage()" + }, + { + "label": "activateSessionForOptimization()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/sessionActivationForOptimization.ts", + "source_location": "L201", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_sessionactivationforoptimization_activatesessionforoptimization", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "activatesessionforoptimization()" + }, + { + "label": "services/sessionImportArtefactUnwrap.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/sessionImportArtefactUnwrap.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_services_sessionimportartefactunwrap", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "services/sessionimportartefactunwrap.ts" + }, + { + "label": "SessionImportUnwrapResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/sessionImportArtefactUnwrap.ts", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_sessionimportartefactunwrap_sessionimportunwrapresult", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "sessionimportunwrapresult" + }, + { + "label": "isSessionImportArtefactWrapper()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/sessionImportArtefactUnwrap.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_sessionimportartefactunwrap_issessionimportartefactwrapper", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "issessionimportartefactwrapper()" + }, + { + "label": "isOrchestratorSessionContent()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/sessionImportArtefactUnwrap.ts", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_sessionimportartefactunwrap_isorchestratorsessioncontent", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "isorchestratorsessioncontent()" + }, + { + "label": "isFullSessionExportContent()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/sessionImportArtefactUnwrap.ts", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_sessionimportartefactunwrap_isfullsessionexportcontent", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "isfullsessionexportcontent()" + }, + { + "label": "orchestratorSessionContentToTabImport()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/sessionImportArtefactUnwrap.ts", + "source_location": "L37", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_sessionimportartefactunwrap_orchestratorsessioncontenttotabimport", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "orchestratorsessioncontenttotabimport()" + }, + { + "label": "unwrapSessionImportPayloadForTab()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/sessionImportArtefactUnwrap.ts", + "source_location": "L82", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_sessionimportartefactunwrap_unwrapsessionimportpayloadfortab", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "unwrapsessionimportpayloadfortab()" + }, + { + "label": "sessionImportCore.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/sessionImportCore.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_services_sessionimportcore", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "sessionimportcore.ts" + }, + { + "label": "SessionImportActivationIntent", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/sessionImportCore.ts", + "source_location": "L21", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_sessionimportcore_sessionimportactivationintent", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "sessionimportactivationintent" + }, + { + "label": "SessionImportIntentHint", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/sessionImportCore.ts", + "source_location": "L32", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_sessionimportcore_sessionimportintenthint", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "sessionimportintenthint" + }, + { + "label": "SessionImportActivationProfile", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/sessionImportCore.ts", + "source_location": "L34", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_sessionimportcore_sessionimportactivationprofile", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "sessionimportactivationprofile" + }, + { + "label": "NormalizedSessionImport", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/sessionImportCore.ts", + "source_location": "L36", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_sessionimportcore_normalizedsessionimport", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "normalizedsessionimport" + }, + { + "label": "SessionDataNotification", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/sessionImportCore.ts", + "source_location": "L41", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_sessionimportcore_sessiondatanotification", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "sessiondatanotification" + }, + { + "label": "SessionImportActivationHost", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/sessionImportCore.ts", + "source_location": "L51", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_sessionimportcore_sessionimportactivationhost", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "sessionimportactivationhost" + }, + { + "label": "CanonicalSessionImportOptions", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/sessionImportCore.ts", + "source_location": "L76", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_sessionimportcore_canonicalsessionimportoptions", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "canonicalsessionimportoptions" + }, + { + "label": "CanonicalSessionImportResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/sessionImportCore.ts", + "source_location": "L99", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_sessionimportcore_canonicalsessionimportresult", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "canonicalsessionimportresult" + }, + { + "label": "createNewImportSessionKey()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/sessionImportCore.ts", + "source_location": "L112", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_sessionimportcore_createnewimportsessionkey", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "createnewimportsessionkey()" + }, + { + "label": "safeNormalizeImportedSessionPayload()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/sessionImportCore.ts", + "source_location": "L119", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_sessionimportcore_safenormalizeimportedsessionpayload", + "community": 38, + "community_name": "Beapmessages Services", + "norm_label": "safenormalizeimportedsessionpayload()" + }, + { + "label": "normalizeImportedSessionPayload()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/sessionImportCore.ts", + "source_location": "L131", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_sessionimportcore_normalizeimportedsessionpayload", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "normalizeimportedsessionpayload()" + }, + { + "label": "persistImportedSessionRecord()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/sessionImportCore.ts", + "source_location": "L220", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_sessionimportcore_persistimportedsessionrecord", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "persistimportedsessionrecord()" + }, + { + "label": "activateImportedSession()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/sessionImportCore.ts", + "source_location": "L240", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_sessionimportcore_activateimportedsession", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "activateimportedsession()" + }, + { + "label": "runCanonicalSessionImport()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/sessionImportCore.ts", + "source_location": "L307", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_sessionimportcore_runcanonicalsessionimport", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "runcanonicalsessionimport()" + }, + { + "label": "sessionOrigin.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/sessionOrigin.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_services_sessionorigin", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "sessionorigin.ts" + }, + { + "label": "SessionOrigin", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/sessionOrigin.ts", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_sessionorigin_sessionorigin", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "sessionorigin" + }, + { + "label": "resolveSessionOrigin()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/sessionOrigin.ts", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_sessionorigin_resolvesessionorigin", + "community": 42, + "community_name": "Services Beapbuilder", + "norm_label": "resolvesessionorigin()" + }, + { + "label": "sessionSurfaceResolver.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/sessionSurfaceResolver.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_services_sessionsurfaceresolver", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "sessionsurfaceresolver.ts" + }, + { + "label": "SessionSurface", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/sessionSurfaceResolver.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_sessionsurfaceresolver_sessionsurface", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "sessionsurface" + }, + { + "label": "urlMatchesSessionKey()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/sessionSurfaceResolver.ts", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_sessionsurfaceresolver_urlmatchessessionkey", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "urlmatchessessionkey()" + }, + { + "label": "isGridDisplayUrl()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/sessionSurfaceResolver.ts", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_sessionsurfaceresolver_isgriddisplayurl", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "isgriddisplayurl()" + }, + { + "label": "findOpenSessionSurface()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/sessionSurfaceResolver.ts", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_sessionsurfaceresolver_findopensessionsurface", + "community": 49, + "community_name": "Services Shims Beapmessages", + "norm_label": "findopensessionsurface()" + }, + { + "label": "syncCustomModeDiffWatcher.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/syncCustomModeDiffWatcher.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_services_synccustommodediffwatcher", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": "synccustommodediffwatcher.ts" + }, + { + "label": "getLaunchSecret()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/syncCustomModeDiffWatcher.ts", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_synccustommodediffwatcher_getlaunchsecret", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": "getlaunchsecret()" + }, + { + "label": "modeDiffWatcherIdPrefix()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/syncCustomModeDiffWatcher.ts", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_synccustommodediffwatcher_modediffwatcheridprefix", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": "modediffwatcheridprefix()" + }, + { + "label": "customModeDiffWatcherId()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/syncCustomModeDiffWatcher.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_synccustommodediffwatcher_custommodediffwatcherid", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": "custommodediffwatcherid()" + }, + { + "label": "isModeOwnedDiffWatcherId()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/syncCustomModeDiffWatcher.ts", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_synccustommodediffwatcher_ismodeowneddiffwatcherid", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": "ismodeowneddiffwatcherid()" + }, + { + "label": "syncCustomModeDiffWatcher()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/services/syncCustomModeDiffWatcher.ts", + "source_location": "L41", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_services_synccustommodediffwatcher_synccustommodediffwatcher", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": "synccustommodediffwatcher()" + }, + { + "label": "ALIGNMENT_REPORT.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/beap/ALIGNMENT_REPORT.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_beap_alignment_report", + "community": 606, + "community_name": "BEAP #606", + "norm_label": "alignment_report.ts" + }, + { + "label": "constants.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/beap/constants.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_beap_constants", + "community": 208, + "community_name": "BEAP", + "norm_label": "constants.ts" + }, + { + "label": "BEAP_PACKAGE_EXT", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/beap/constants.ts", + "source_location": "L25", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_beap_constants_beap_package_ext", + "community": 208, + "community_name": "BEAP", + "norm_label": "beap_package_ext" + }, + { + "label": "BEAP_ENCRYPTED_CAPSULE_EXT", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/beap/constants.ts", + "source_location": "L34", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_beap_constants_beap_encrypted_capsule_ext", + "community": 208, + "community_name": "BEAP", + "norm_label": "beap_encrypted_capsule_ext" + }, + { + "label": "BEAP_MIN_MARKER_TYPE", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/beap/constants.ts", + "source_location": "L44", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_beap_constants_beap_min_marker_type", + "community": 208, + "community_name": "BEAP", + "norm_label": "beap_min_marker_type" + }, + { + "label": "BEAP_VERSION_CURRENT", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/beap/constants.ts", + "source_location": "L49", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_beap_constants_beap_version_current", + "community": 208, + "community_name": "BEAP", + "norm_label": "beap_version_current" + }, + { + "label": "ALLOWED_IMPORT_EXTENSIONS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/beap/constants.ts", + "source_location": "L62", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_beap_constants_allowed_import_extensions", + "community": 208, + "community_name": "BEAP", + "norm_label": "allowed_import_extensions" + }, + { + "label": "NON_IMPORTABLE_EXTENSIONS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/beap/constants.ts", + "source_location": "L67", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_beap_constants_non_importable_extensions", + "community": 208, + "community_name": "BEAP", + "norm_label": "non_importable_extensions" + }, + { + "label": "BEAP_PACKAGE_MIME", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/beap/constants.ts", + "source_location": "L76", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_beap_constants_beap_package_mime", + "community": 208, + "community_name": "BEAP", + "norm_label": "beap_package_mime" + }, + { + "label": "BEAP_ENCRYPTED_CAPSULE_MIME", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/beap/constants.ts", + "source_location": "L81", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_beap_constants_beap_encrypted_capsule_mime", + "community": 208, + "community_name": "BEAP", + "norm_label": "beap_encrypted_capsule_mime" + }, + { + "label": "beap/index.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/beap/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_beap_index", + "community": 208, + "community_name": "BEAP", + "norm_label": "beap/index.ts" + }, + { + "label": "beap/types.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/beap/types.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_beap_types", + "community": 208, + "community_name": "BEAP", + "norm_label": "beap/types.ts" + }, + { + "label": "VerificationState", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/beap/types.ts", + "source_location": "L35", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_beap_types_verificationstate", + "community": 208, + "community_name": "BEAP", + "norm_label": "verificationstate" + }, + { + "label": "Folder", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/beap/types.ts", + "source_location": "L49", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_beap_types_folder", + "community": 208, + "community_name": "BEAP", + "norm_label": "folder" + }, + { + "label": "Source", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/beap/types.ts", + "source_location": "L66", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_beap_types_source", + "community": 208, + "community_name": "BEAP", + "norm_label": "source" + }, + { + "label": "DeliveryMethod", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/beap/types.ts", + "source_location": "L82", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_beap_types_deliverymethod", + "community": 208, + "community_name": "BEAP", + "norm_label": "deliverymethod" + }, + { + "label": "ReconstructionState", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/beap/types.ts", + "source_location": "L104", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_beap_types_reconstructionstate", + "community": 208, + "community_name": "BEAP", + "norm_label": "reconstructionstate" + }, + { + "label": "ImportKind", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/beap/types.ts", + "source_location": "L117", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_beap_types_importkind", + "community": 208, + "community_name": "BEAP", + "norm_label": "importkind" + }, + { + "label": "MinimalEnvelopeMarker", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/beap/types.ts", + "source_location": "L132", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_beap_types_minimalenvelopemarker", + "community": 208, + "community_name": "BEAP", + "norm_label": "minimalenvelopemarker" + }, + { + "label": "BeapPackageMarker", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/beap/types.ts", + "source_location": "L150", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_beap_types_beappackagemarker", + "community": 208, + "community_name": "BEAP", + "norm_label": "beappackagemarker" + }, + { + "label": "validators.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/beap/validators.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_beap_validators", + "community": 208, + "community_name": "BEAP", + "norm_label": "validators.ts" + }, + { + "label": "isBeapPackageJson()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/beap/validators.ts", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_beap_validators_isbeappackagejson", + "community": 208, + "community_name": "BEAP", + "norm_label": "isbeappackagejson()" + }, + { + "label": "detectImportKind()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/beap/validators.ts", + "source_location": "L90", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_beap_validators_detectimportkind", + "community": 208, + "community_name": "BEAP", + "norm_label": "detectimportkind()" + }, + { + "label": "isImportableAsMessage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/beap/validators.ts", + "source_location": "L110", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_beap_validators_isimportableasmessage", + "community": 208, + "community_name": "BEAP", + "norm_label": "isimportableasmessage()" + }, + { + "label": "isEncryptedCapsule()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/beap/validators.ts", + "source_location": "L120", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_beap_validators_isencryptedcapsule", + "community": 208, + "community_name": "BEAP", + "norm_label": "isencryptedcapsule()" + }, + { + "label": "assertNoPrematureProcessing()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/beap/validators.ts", + "source_location": "L152", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_beap_validators_assertnoprematureprocessing", + "community": 208, + "community_name": "BEAP", + "norm_label": "assertnoprematureprocessing()" + }, + { + "label": "documentCapsuleOpacityInvariant()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/beap/validators.ts", + "source_location": "L180", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_beap_validators_documentcapsuleopacityinvariant", + "community": 208, + "community_name": "BEAP", + "norm_label": "documentcapsuleopacityinvariant()" + }, + { + "label": "EmailConnectWizard.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/components/EmailConnectWizard.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_components_emailconnectwizard", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "emailconnectwizard.tsx" + }, + { + "label": "EmailConnectWizardProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/components/EmailConnectWizard.tsx", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_components_emailconnectwizard_emailconnectwizardprops", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "emailconnectwizardprops" + }, + { + "label": "Step", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/components/EmailConnectWizard.tsx", + "source_location": "L29", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_components_emailconnectwizard_step", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "step" + }, + { + "label": "Provider", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/components/EmailConnectWizard.tsx", + "source_location": "L30", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_components_emailconnectwizard_provider", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "provider" + }, + { + "label": "ResultType", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/components/EmailConnectWizard.tsx", + "source_location": "L31", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_components_emailconnectwizard_resulttype", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "resulttype" + }, + { + "label": "SecurityModeUi", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/components/EmailConnectWizard.tsx", + "source_location": "L32", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_components_emailconnectwizard_securitymodeui", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "securitymodeui" + }, + { + "label": "GmailConnectFailureDebug", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/components/EmailConnectWizard.tsx", + "source_location": "L35", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_components_emailconnectwizard_gmailconnectfailuredebug", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "gmailconnectfailuredebug" + }, + { + "label": "GmailBuiltinProviderStatusUi", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/components/EmailConnectWizard.tsx", + "source_location": "L44", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_components_emailconnectwizard_gmailbuiltinproviderstatusui", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "gmailbuiltinproviderstatusui" + }, + { + "label": "coerceSecurityModeUi()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/components/EmailConnectWizard.tsx", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_components_emailconnectwizard_coercesecuritymodeui", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "coercesecuritymodeui()" + }, + { + "label": "isElectron()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/components/EmailConnectWizard.tsx", + "source_location": "L58", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_components_emailconnectwizard_iselectron", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "iselectron()" + }, + { + "label": "gmailOAuthDiagnosticsBridgeAvailable()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/components/EmailConnectWizard.tsx", + "source_location": "L62", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_components_emailconnectwizard_gmailoauthdiagnosticsbridgeavailable", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "gmailoauthdiagnosticsbridgeavailable()" + }, + { + "label": "formatGmailOAuthDiagnosticRows()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/components/EmailConnectWizard.tsx", + "source_location": "L66", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_components_emailconnectwizard_formatgmailoauthdiagnosticrows", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "formatgmailoauthdiagnosticrows()" + }, + { + "label": "emptyCustomForm()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/components/EmailConnectWizard.tsx", + "source_location": "L95", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_components_emailconnectwizard_emptycustomform", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "emptycustomform()" + }, + { + "label": "isExtension()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/components/EmailConnectWizard.tsx", + "source_location": "L113", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_components_emailconnectwizard_isextension", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "isextension()" + }, + { + "label": "EmailConnectWizard()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/components/EmailConnectWizard.tsx", + "source_location": "L116", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_components_emailconnectwizard_emailconnectwizard", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "emailconnectwizard()" + }, + { + "label": "ImapConnectionNotice.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/email/ImapConnectionNotice.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_email_imapconnectionnotice", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "imapconnectionnotice.tsx" + }, + { + "label": "ImapNoticeVariant", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/email/ImapConnectionNotice.tsx", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_email_imapconnectionnotice_imapnoticevariant", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "imapnoticevariant" + }, + { + "label": "ImapConnectionNoticeProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/email/ImapConnectionNotice.tsx", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_email_imapconnectionnotice_imapconnectionnoticeprops", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "imapconnectionnoticeprops" + }, + { + "label": "BODY_PARAGRAPHS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/email/ImapConnectionNotice.tsx", + "source_location": "L21", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_email_imapconnectionnotice_body_paragraphs", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "body_paragraphs" + }, + { + "label": "ImapConnectionNotice()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/email/ImapConnectionNotice.tsx", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_email_imapconnectionnotice_imapconnectionnotice", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "imapconnectionnotice()" + }, + { + "label": "connectEmail.launch.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/email/connectEmail.launch.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_email_connectemail_launch_test", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "connectemail.launch.test.ts" + }, + { + "label": "REQUIRED_LAUNCH_SOURCES", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/email/connectEmail.launch.test.ts", + "source_location": "L9", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_email_connectemail_launch_test_required_launch_sources", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "required_launch_sources" + }, + { + "label": "connectEmailFlow.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/email/connectEmailFlow.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_email_connectemailflow", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "connectemailflow.tsx" + }, + { + "label": "ConnectEmailFlowTheme", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/email/connectEmailFlow.tsx", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_email_connectemailflow_connectemailflowtheme", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "connectemailflowtheme" + }, + { + "label": "UseConnectEmailFlowOptions", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/email/connectEmailFlow.tsx", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_email_connectemailflow_useconnectemailflowoptions", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "useconnectemailflowoptions" + }, + { + "label": "wizardThemeFromFlowTheme()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/email/connectEmailFlow.tsx", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_email_connectemailflow_wizardthemefromflowtheme", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "wizardthemefromflowtheme()" + }, + { + "label": "UseConnectEmailFlowResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/email/connectEmailFlow.tsx", + "source_location": "L35", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_email_connectemailflow_useconnectemailflowresult", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "useconnectemailflowresult" + }, + { + "label": "useConnectEmailFlow()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/email/connectEmailFlow.tsx", + "source_location": "L42", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_email_connectemailflow_useconnectemailflow", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "useconnectemailflow()" + }, + { + "label": "connectEmailTypes.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/email/connectEmailTypes.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_email_connectemailtypes", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "connectemailtypes.ts" + }, + { + "label": "ConnectEmailLaunchSource", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/email/connectEmailTypes.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_email_connectemailtypes_connectemaillaunchsource", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "connectemaillaunchsource" + }, + { + "label": "formatConnectEmailLaunchSource()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/email/connectEmailTypes.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_email_connectemailtypes_formatconnectemaillaunchsource", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "formatconnectemaillaunchsource()" + }, + { + "label": "pickDefaultAccountRow.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/email/pickDefaultAccountRow.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_email_pickdefaultaccountrow", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "pickdefaultaccountrow.ts" + }, + { + "label": "pickDefaultEmailAccountRowId()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/email/pickDefaultAccountRow.ts", + "source_location": "L6", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_email_pickdefaultaccountrow_pickdefaultemailaccountrowid", + "community": 29, + "community_name": "Analysis Canvas Email", + "norm_label": "pickdefaultemailaccountrowid()" + }, + { + "label": "customModeProfileFields.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/customModeProfileFields.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_tests_custommodeprofilefields_test", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "custommodeprofilefields.test.ts" + }, + { + "label": "baseMode()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/customModeProfileFields.test.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_tests_custommodeprofilefields_test_basemode", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "basemode()" + }, + { + "label": "customModeSystemInstructions.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/customModeSystemInstructions.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_tests_custommodesysteminstructions_test", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "custommodesysteminstructions.test.ts" + }, + { + "label": "baseMode()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/customModeSystemInstructions.test.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_tests_custommodesysteminstructions_test_basemode", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "basemode()" + }, + { + "label": "isUserOwnedCustomMode.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/isUserOwnedCustomMode.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_tests_isuserownedcustommode_test", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "isuserownedcustommode.test.ts" + }, + { + "label": "ui/__tests__/scamWatchdogBuiltIn.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/scamWatchdogBuiltIn.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_tests_scamwatchdogbuiltin_test", + "community": 147, + "community_name": "UI Stores", + "norm_label": "ui/__tests__/scamwatchdogbuiltin.test.ts" + }, + { + "label": "uiStateDefaults.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/uiStateDefaults.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_tests_uistatedefaults_test", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "uistatedefaults.test.ts" + }, + { + "label": "watchdogPromptsChatScanSplit.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/watchdogPromptsChatScanSplit.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_tests_watchdogpromptschatscansplit_test", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "watchdogpromptschatscansplit.test.ts" + }, + { + "label": "ui/capabilities.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_capabilities", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "ui/capabilities.ts" + }, + { + "label": "ComposerButtonConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_capabilities_composerbuttonconfig", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "composerbuttonconfig" + }, + { + "label": "COMPOSER_BUTTONS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L21", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_capabilities_composer_buttons", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "composer_buttons" + }, + { + "label": "getEnabledComposerButtons()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_capabilities_getenabledcomposerbuttons", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "getenabledcomposerbuttons()" + }, + { + "label": "isComposerButtonEnabled()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L64", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_capabilities_iscomposerbuttonenabled", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "iscomposerbuttonenabled()" + }, + { + "label": "getPrimaryButtonLabel()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L71", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_capabilities_getprimarybuttonlabel", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "getprimarybuttonlabel()" + }, + { + "label": "shouldShowModelInButton()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L91", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_capabilities_shouldshowmodelinbutton", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "shouldshowmodelinbutton()" + }, + { + "label": "getModelSelectorLocation()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L100", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_capabilities_getmodelselectorlocation", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "getmodelselectorlocation()" + }, + { + "label": "isComposerVisible()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L119", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_capabilities_iscomposervisible", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "iscomposervisible()" + }, + { + "label": "isAdminModeVisible()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L126", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_capabilities_isadminmodevisible", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "isadminmodevisible()" + }, + { + "label": "canPerformAction()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L133", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_capabilities_canperformaction", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "canperformaction()" + }, + { + "label": "LayoutType", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L158", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_capabilities_layouttype", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "layouttype" + }, + { + "label": "getLayoutType()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L163", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_capabilities_getlayouttype", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "getlayouttype()" + }, + { + "label": "isChatListVisible()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L178", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_capabilities_ischatlistvisible", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "ischatlistvisible()" + }, + { + "label": "isVideoGridVisible()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L185", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_capabilities_isvideogridvisible", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "isvideogridvisible()" + }, + { + "label": "AIAssistAction", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L193", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_capabilities_aiassistaction", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "aiassistaction" + }, + { + "label": "AI_ASSIST_ACTIONS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L199", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_capabilities_ai_assist_actions", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "ai_assist_actions" + }, + { + "label": "MockModel", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L205", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_capabilities_mockmodel", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "mockmodel" + }, + { + "label": "MOCK_MODELS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L211", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_capabilities_mock_models", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "mock_models" + }, + { + "label": "generateMockAIResponse()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L220", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_capabilities_generatemockairesponse", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "generatemockairesponse()" + }, + { + "label": "customModeDisplay.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeDisplay.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodedisplay", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "custommodedisplay.ts" + }, + { + "label": "safeCustomModeRowLabel()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeDisplay.ts", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodedisplay_safecustommoderowlabel", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "safecustommoderowlabel()" + }, + { + "label": "safeDraftString()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeDisplay.ts", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodedisplay_safedraftstring", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "safedraftstring()" + }, + { + "label": "coerceSessionMode()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeDisplay.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodedisplay_coercesessionmode", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "coercesessionmode()" + }, + { + "label": "customModeIntervalPresets.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeIntervalPresets.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodeintervalpresets", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "custommodeintervalpresets.ts" + }, + { + "label": "CUSTOM_MODE_INTERVAL_PRESET_SECONDS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeIntervalPresets.ts", + "source_location": "L5", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodeintervalpresets_custom_mode_interval_preset_seconds", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "custom_mode_interval_preset_seconds" + }, + { + "label": "CustomModeIntervalPresetSeconds", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeIntervalPresets.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodeintervalpresets_custommodeintervalpresetseconds", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "custommodeintervalpresetseconds" + }, + { + "label": "CUSTOM_MODE_INTERVAL_PRESET_OPTIONS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeIntervalPresets.ts", + "source_location": "L11", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodeintervalpresets_custom_mode_interval_preset_options", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "custom_mode_interval_preset_options" + }, + { + "label": "LABEL_BY_SECONDS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeIntervalPresets.ts", + "source_location": "L26", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodeintervalpresets_label_by_seconds", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "label_by_seconds" + }, + { + "label": "formatCustomModeIntervalPresetLabel()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeIntervalPresets.ts", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodeintervalpresets_formatcustommodeintervalpresetlabel", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "formatcustommodeintervalpresetlabel()" + }, + { + "label": "isCustomModeIntervalPresetSeconds()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeIntervalPresets.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodeintervalpresets_iscustommodeintervalpresetseconds", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "iscustommodeintervalpresetseconds()" + }, + { + "label": "snapSecondsToIntervalPreset()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeIntervalPresets.ts", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodeintervalpresets_snapsecondstointervalpreset", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "snapsecondstointervalpreset()" + }, + { + "label": "customModePersistence.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModePersistence.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodepersistence", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "custommodepersistence.ts" + }, + { + "label": "CUSTOM_MODES_PERSIST_KEY", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModePersistence.ts", + "source_location": "L14", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodepersistence_custom_modes_persist_key", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "custom_modes_persist_key" + }, + { + "label": "CUSTOM_MODES_SCHEMA_VERSION", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModePersistence.ts", + "source_location": "L17", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodepersistence_custom_modes_schema_version", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "custom_modes_schema_version" + }, + { + "label": "PersistedSlice", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModePersistence.ts", + "source_location": "L19", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodepersistence_persistedslice", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "persistedslice" + }, + { + "label": "migrateCustomModesPersistedState()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModePersistence.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodepersistence_migratecustommodespersistedstate", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "migratecustommodespersistedstate()" + }, + { + "label": "coerceCustomModeRecord()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModePersistence.ts", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodepersistence_coercecustommoderecord", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "coercecustommoderecord()" + }, + { + "label": "isLegacyNestedShape()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModePersistence.ts", + "source_location": "L62", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodepersistence_islegacynestedshape", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "islegacynestedshape()" + }, + { + "label": "migrateLegacyNestedRow()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModePersistence.ts", + "source_location": "L72", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodepersistence_migratelegacynestedrow", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "migratelegacynestedrow()" + }, + { + "label": "normalizeSessionMode()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModePersistence.ts", + "source_location": "L118", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodepersistence_normalizesessionmode", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "normalizesessionmode()" + }, + { + "label": "stringifyCustomModes()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModePersistence.ts", + "source_location": "L126", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodepersistence_stringifycustommodes", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "stringifycustommodes()" + }, + { + "label": "parseCustomModesJson()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModePersistence.ts", + "source_location": "L134", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodepersistence_parsecustommodesjson", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "parsecustommodesjson()" + }, + { + "label": "loadCustomModesFromLocalStorageKey()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModePersistence.ts", + "source_location": "L160", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodepersistence_loadcustommodesfromlocalstoragekey", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "loadcustommodesfromlocalstoragekey()" + }, + { + "label": "saveCustomModesToLocalStorageKey()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModePersistence.ts", + "source_location": "L173", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodepersistence_savecustommodestolocalstoragekey", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "savecustommodestolocalstoragekey()" + }, + { + "label": "customModeRuntime.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeRuntime.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommoderuntime", + "community": 147, + "community_name": "UI Stores", + "norm_label": "custommoderuntime.ts" + }, + { + "label": "CustomModeRuntimeConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeRuntime.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommoderuntime_custommoderuntimeconfig", + "community": 147, + "community_name": "UI Stores", + "norm_label": "custommoderuntimeconfig" + }, + { + "label": "wrExpertFromMetadata()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeRuntime.ts", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommoderuntime_wrexpertfrommetadata", + "community": 147, + "community_name": "UI Stores", + "norm_label": "wrexpertfrommetadata()" + }, + { + "label": "customModeDefinitionToRuntime()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeRuntime.ts", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommoderuntime_custommodedefinitiontoruntime", + "community": 147, + "community_name": "UI Stores", + "norm_label": "custommodedefinitiontoruntime()" + }, + { + "label": "customModeTypes.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodetypes", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "custommodetypes.ts" + }, + { + "label": "ModeTypeKind", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodetypes_modetypekind", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "modetypekind" + }, + { + "label": "SessionMode", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodetypes_sessionmode", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "sessionmode" + }, + { + "label": "CustomModeProfileFieldType", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodeprofilefieldtype", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "custommodeprofilefieldtype" + }, + { + "label": "CustomModeProfileFieldUsage", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L33", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodeprofilefieldusage", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "custommodeprofilefieldusage" + }, + { + "label": "CUSTOM_MODE_PROFILE_FIELD_USAGE_OPTIONS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L35", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodetypes_custom_mode_profile_field_usage_options", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "custom_mode_profile_field_usage_options" + }, + { + "label": "CustomModeProfileField", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L46", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodeprofilefield", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "custommodeprofilefield" + }, + { + "label": "CustomModeDefinition", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L58", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodedefinition", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "custommodedefinition" + }, + { + "label": "CustomModeScopeMetadata", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L99", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodescopemetadata", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "custommodescopemetadata" + }, + { + "label": "CUSTOM_MODE_SCOPE_URLS_DRAFT_KEY", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L109", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodetypes_custom_mode_scope_urls_draft_key", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "custom_mode_scope_urls_draft_key" + }, + { + "label": "CUSTOM_MODE_DIFF_FOLDERS_DRAFT_KEY", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L112", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodetypes_custom_mode_diff_folders_draft_key", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "custom_mode_diff_folders_draft_key" + }, + { + "label": "CUSTOM_MODE_TRIGGER_BAR_ICON_KEY", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L115", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodetypes_custom_mode_trigger_bar_icon_key", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "custom_mode_trigger_bar_icon_key" + }, + { + "label": "getCustomModeTriggerBarIcon()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L117", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodetypes_getcustommodetriggerbaricon", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "getcustommodetriggerbaricon()" + }, + { + "label": "getCustomModeScopeFromMetadata()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L123", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodetypes_getcustommodescopefrommetadata", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": "getcustommodescopefrommetadata()" + }, + { + "label": "getScopeUrlsDraftText()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L146", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodetypes_getscopeurlsdrafttext", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "getscopeurlsdrafttext()" + }, + { + "label": "getDiffWatchFoldersDraftText()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L157", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodetypes_getdiffwatchfoldersdrafttext", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "getdiffwatchfoldersdrafttext()" + }, + { + "label": "isValidCustomModeScopeUrlLine()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L171", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodetypes_isvalidcustommodescopeurlline", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "isvalidcustommodescopeurlline()" + }, + { + "label": "CustomModeDraft", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L188", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodedraft", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "custommodedraft" + }, + { + "label": "DEFAULT_OLLAMA_ENDPOINT", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L190", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodetypes_default_ollama_endpoint", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "default_ollama_endpoint" + }, + { + "label": "defaultCustomModeDraft()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L192", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodetypes_defaultcustommodedraft", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "defaultcustommodedraft()" + }, + { + "label": "slugCustomModeProfileFieldKey()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L212", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodetypes_slugcustommodeprofilefieldkey", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "slugcustommodeprofilefieldkey()" + }, + { + "label": "PROFILE_FIELD_TYPES", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L222", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodetypes_profile_field_types", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "profile_field_types" + }, + { + "label": "isProfileFieldType()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L232", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodetypes_isprofilefieldtype", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "isprofilefieldtype()" + }, + { + "label": "profileFieldHasContent()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L236", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodetypes_profilefieldhascontent", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "profilefieldhascontent()" + }, + { + "label": "isProfileFieldUsage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L242", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodetypes_isprofilefieldusage", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "isprofilefieldusage()" + }, + { + "label": "normalizeProfileFields()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L251", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodetypes_normalizeprofilefields", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "normalizeprofilefields()" + }, + { + "label": "isTruthyToggleValue()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L291", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodetypes_istruthytogglevalue", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "istruthytogglevalue()" + }, + { + "label": "formatCustomModeProfileFieldLine()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L297", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodetypes_formatcustommodeprofilefieldline", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "formatcustommodeprofilefieldline()" + }, + { + "label": "formatCustomModeProfileFieldsForPrefix()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L320", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodetypes_formatcustommodeprofilefieldsforprefix", + "community": 147, + "community_name": "UI Stores", + "norm_label": "formatcustommodeprofilefieldsforprefix()" + }, + { + "label": "createEmptyCustomModeProfileField()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L332", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodetypes_createemptycustommodeprofilefield", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "createemptycustommodeprofilefield()" + }, + { + "label": "normalizeCustomModeNameKey()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L343", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodetypes_normalizecustommodenamekey", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "normalizecustommodenamekey()" + }, + { + "label": "createCustomModeId()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L351", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodetypes_createcustommodeid", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "createcustommodeid()" + }, + { + "label": "isCustomModeId()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L361", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodetypes_iscustommodeid", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "iscustommodeid()" + }, + { + "label": "isBuiltInModeId()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L365", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodetypes_isbuiltinmodeid", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "isbuiltinmodeid()" + }, + { + "label": "isPersistedModeId()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L369", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodetypes_ispersistedmodeid", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "ispersistedmodeid()" + }, + { + "label": "isModeDeletable()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L373", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodetypes_ismodedeletable", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "ismodedeletable()" + }, + { + "label": "isUserOwnedCustomMode()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L380", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodetypes_isuserownedcustommode", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "isuserownedcustommode()" + }, + { + "label": "buildCustomModeFromDraft()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L390", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodetypes_buildcustommodefromdraft", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "buildcustommodefromdraft()" + }, + { + "label": "normalizeCustomModeFields()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L405", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodetypes_normalizecustommodefields", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "normalizecustommodefields()" + }, + { + "label": "sanitizeCustomModeMetadataForPersist()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L455", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodetypes_sanitizecustommodemetadataforpersist", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "sanitizecustommodemetadataforpersist()" + }, + { + "label": "isIsoDate()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L537", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodetypes_isisodate", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "isisodate()" + }, + { + "label": "migrateIntervalSeconds()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L542", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_custommodetypes_migrateintervalseconds", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "migrateintervalseconds()" + }, + { + "label": "RFC-4122", + "file_type": "concept", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L348", + "_origin": "ast", + "id": "docref_rfc_4122", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "rfc-4122" + }, + { + "label": "lightboxTheme.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/lightboxTheme.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_lightboxtheme", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "lightboxtheme.ts" + }, + { + "label": "LightboxTheme", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/lightboxTheme.ts", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_lightboxtheme_lightboxtheme", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "lightboxtheme" + }, + { + "label": "ThemeTokens", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/lightboxTheme.ts", + "source_location": "L21", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_lightboxtheme_themetokens", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "themetokens" + }, + { + "label": "PRO_TOKENS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/lightboxTheme.ts", + "source_location": "L91", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_lightboxtheme_pro_tokens", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "pro_tokens" + }, + { + "label": "STANDARD_TOKENS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/lightboxTheme.ts", + "source_location": "L128", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_lightboxtheme_standard_tokens", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "standard_tokens" + }, + { + "label": "DARK_TOKENS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/lightboxTheme.ts", + "source_location": "L165", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_lightboxtheme_dark_tokens", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "dark_tokens" + }, + { + "label": "getThemeTokens()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/lightboxTheme.ts", + "source_location": "L203", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_lightboxtheme_getthemetokens", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "getthemetokens()" + }, + { + "label": "overlayStyle()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/lightboxTheme.ts", + "source_location": "L223", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_lightboxtheme_overlaystyle", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "overlaystyle()" + }, + { + "label": "panelStyle()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/lightboxTheme.ts", + "source_location": "L242", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_lightboxtheme_panelstyle", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "panelstyle()" + }, + { + "label": "headerStyle()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/lightboxTheme.ts", + "source_location": "L262", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_lightboxtheme_headerstyle", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "headerstyle()" + }, + { + "label": "headerTitleStyle()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/lightboxTheme.ts", + "source_location": "L279", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_lightboxtheme_headertitlestyle", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "headertitlestyle()" + }, + { + "label": "headerMainTitleStyle()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/lightboxTheme.ts", + "source_location": "L293", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_lightboxtheme_headermaintitlestyle", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "headermaintitlestyle()" + }, + { + "label": "headerSubtitleStyle()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/lightboxTheme.ts", + "source_location": "L305", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_lightboxtheme_headersubtitlestyle", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "headersubtitlestyle()" + }, + { + "label": "closeButtonStyle()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/lightboxTheme.ts", + "source_location": "L317", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_lightboxtheme_closebuttonstyle", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "closebuttonstyle()" + }, + { + "label": "bodyStyle()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/lightboxTheme.ts", + "source_location": "L339", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_lightboxtheme_bodystyle", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "bodystyle()" + }, + { + "label": "tabBarStyle()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/lightboxTheme.ts", + "source_location": "L353", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_lightboxtheme_tabbarstyle", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "tabbarstyle()" + }, + { + "label": "tabStyle()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/lightboxTheme.ts", + "source_location": "L367", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_lightboxtheme_tabstyle", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "tabstyle()" + }, + { + "label": "inputStyle()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/lightboxTheme.ts", + "source_location": "L387", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_lightboxtheme_inputstyle", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "inputstyle()" + }, + { + "label": "labelStyle()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/lightboxTheme.ts", + "source_location": "L404", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_lightboxtheme_labelstyle", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "labelstyle()" + }, + { + "label": "cardStyle()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/lightboxTheme.ts", + "source_location": "L419", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_lightboxtheme_cardstyle", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "cardstyle()" + }, + { + "label": "primaryButtonStyle()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/lightboxTheme.ts", + "source_location": "L432", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_lightboxtheme_primarybuttonstyle", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "primarybuttonstyle()" + }, + { + "label": "secondaryButtonStyle()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/lightboxTheme.ts", + "source_location": "L451", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_lightboxtheme_secondarybuttonstyle", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "secondarybuttonstyle()" + }, + { + "label": "notificationStyle()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/lightboxTheme.ts", + "source_location": "L470", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_lightboxtheme_notificationstyle", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "notificationstyle()" + }, + { + "label": "toastStyle()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/lightboxTheme.ts", + "source_location": "L509", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_lightboxtheme_toaststyle", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "toaststyle()" + }, + { + "label": "sectionHeadingStyle()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/lightboxTheme.ts", + "source_location": "L531", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_lightboxtheme_sectionheadingstyle", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "sectionheadingstyle()" + }, + { + "label": "dividerStyle()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/lightboxTheme.ts", + "source_location": "L545", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_lightboxtheme_dividerstyle", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "dividerstyle()" + }, + { + "label": "scamWatchdogBuiltIn.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/scamWatchdogBuiltIn.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "scamwatchdogbuiltin.ts" + }, + { + "label": "BUILTIN_SCAM_WATCHDOG_ID", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/scamWatchdogBuiltIn.ts", + "source_location": "L9", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin_builtin_scam_watchdog_id", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "builtin_scam_watchdog_id" + }, + { + "label": "BUILTIN_SCAM_WATCHDOG_KEY", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/scamWatchdogBuiltIn.ts", + "source_location": "L10", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin_builtin_scam_watchdog_key", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "builtin_scam_watchdog_key" + }, + { + "label": "SCAM_WATCHDOG_DEFAULT_ICON", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/scamWatchdogBuiltIn.ts", + "source_location": "L12", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin_scam_watchdog_default_icon", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "scam_watchdog_default_icon" + }, + { + "label": "createDefaultScamWatchdogBuiltInMode()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/scamWatchdogBuiltIn.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin_createdefaultscamwatchdogbuiltinmode", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "createdefaultscamwatchdogbuiltinmode()" + }, + { + "label": "isScamWatchdogBuiltInMode()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/scamWatchdogBuiltIn.ts", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin_isscamwatchdogbuiltinmode", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "isscamwatchdogbuiltinmode()" + }, + { + "label": "listBuiltInModeSeeds()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/scamWatchdogBuiltIn.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin_listbuiltinmodeseeds", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "listbuiltinmodeseeds()" + }, + { + "label": "uiState.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/uiState.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_uistate", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "uistate.ts" + }, + { + "label": "Workspace", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/uiState.ts", + "source_location": "L19", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_uistate_workspace", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "workspace" + }, + { + "label": "BuiltInMode", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/uiState.ts", + "source_location": "L24", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_uistate_builtinmode", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "builtinmode" + }, + { + "label": "Mode", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/uiState.ts", + "source_location": "L29", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_uistate_mode", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "mode" + }, + { + "label": "ComposerMode", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/uiState.ts", + "source_location": "L34", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_uistate_composermode", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "composermode" + }, + { + "label": "Role", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/uiState.ts", + "source_location": "L39", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_uistate_role", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "role" + }, + { + "label": "UIState", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/uiState.ts", + "source_location": "L44", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_uistate_uistate", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "uistate" + }, + { + "label": "initialUIState", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/uiState.ts", + "source_location": "L62", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_uistate_initialuistate", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "initialuistate" + }, + { + "label": "ModeInfo", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/uiState.ts", + "source_location": "L73", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_uistate_modeinfo", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "modeinfo" + }, + { + "label": "MODE_INFO", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/uiState.ts", + "source_location": "L83", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_uistate_mode_info", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "mode_info" + }, + { + "label": "WorkspaceInfo", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/uiState.ts", + "source_location": "L131", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_uistate_workspaceinfo", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "workspaceinfo" + }, + { + "label": "WORKSPACE_INFO", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/uiState.ts", + "source_location": "L138", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_uistate_workspace_info", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "workspace_info" + }, + { + "label": "switchMode()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/uiState.ts", + "source_location": "L173", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_uistate_switchmode", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "switchmode()" + }, + { + "label": "switchWorkspace()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/uiState.ts", + "source_location": "L190", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_uistate_switchworkspace", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "switchworkspace()" + }, + { + "label": "setComposerMode()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/uiState.ts", + "source_location": "L202", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_uistate_setcomposermode", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "setcomposermode()" + }, + { + "label": "setRole()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/uiState.ts", + "source_location": "L212", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_uistate_setrole", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "setrole()" + }, + { + "label": "getDisplayLabel()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/uiState.ts", + "source_location": "L234", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_uistate_getdisplaylabel", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "getdisplaylabel()" + }, + { + "label": "getShortDisplayLabel()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/uiState.ts", + "source_location": "L249", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_uistate_getshortdisplaylabel", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "getshortdisplaylabel()" + }, + { + "label": "isPlaceholderMode()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/uiState.ts", + "source_location": "L267", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_uistate_isplaceholdermode", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "isplaceholdermode()" + }, + { + "label": "getAvailableModes()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/uiState.ts", + "source_location": "L280", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_uistate_getavailablemodes", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "getavailablemodes()" + }, + { + "label": "resolveModeForCapabilities()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/uiState.ts", + "source_location": "L290", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_uistate_resolvemodeforcapabilities", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "resolvemodeforcapabilities()" + }, + { + "label": "watchdogPrompts.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/watchdogPrompts.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_watchdogprompts", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "watchdogprompts.ts" + }, + { + "label": "WATCHDOG_SYSTEM_PROMPT", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/watchdogPrompts.ts", + "source_location": "L5", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_watchdogprompts_watchdog_system_prompt", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "watchdog_system_prompt" + }, + { + "label": "SCAM_WATCHDOG_CHAT_INSTRUCTION", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/watchdogPrompts.ts", + "source_location": "L36", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_watchdogprompts_scam_watchdog_chat_instruction", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "scam_watchdog_chat_instruction" + }, + { + "label": "SCAM_WATCHDOG_SCAN_SECTION_MARKER", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/watchdogPrompts.ts", + "source_location": "L40", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_watchdogprompts_scam_watchdog_scan_section_marker", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "scam_watchdog_scan_section_marker" + }, + { + "label": "SCAM_WATCHDOG_LEGACY_BUNDLED_SEARCH_FOCUS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/watchdogPrompts.ts", + "source_location": "L43", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_watchdogprompts_scam_watchdog_legacy_bundled_search_focus", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "scam_watchdog_legacy_bundled_search_focus" + }, + { + "label": "SCAM_WATCHDOG_DEFAULT_SEARCH_FOCUS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/watchdogPrompts.ts", + "source_location": "L46", + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_watchdogprompts_scam_watchdog_default_search_focus", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "scam_watchdog_default_search_focus" + }, + { + "label": "extractScamWatchdogScanPromptFromLegacySearchFocus()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/watchdogPrompts.ts", + "source_location": "L49", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_watchdogprompts_extractscamwatchdogscanpromptfromlegacysearchfocus", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "extractscamwatchdogscanpromptfromlegacysearchfocus()" + }, + { + "label": "scamWatchdogSearchFocusToChatOnly()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/shared/ui/watchdogPrompts.ts", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_shared_ui_watchdogprompts_scamwatchdogsearchfocustochatonly", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "scamwatchdogsearchfocustochatonly()" + }, + { + "label": "sidepanel.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_sidepanel", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "sidepanel.tsx" + }, + { + "label": "ConnectionStatus", + "file_type": "code", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L120", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_sidepanel_connectionstatus", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "connectionstatus" + }, + { + "label": "DraftAttachment", + "file_type": "code", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L126", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_sidepanel_draftattachment", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "draftattachment" + }, + { + "label": "SessionOption", + "file_type": "code", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L145", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_sidepanel_sessionoption", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "sessionoption" + }, + { + "label": "LlmStatusData", + "file_type": "code", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L154", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_sidepanel_llmstatusdata", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "llmstatusdata" + }, + { + "label": "SP_PINNED_EMOJIS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L162", + "_origin": "ast", + "id": "apps_extension_chromium_src_sidepanel_sp_pinned_emojis", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "sp_pinned_emojis" + }, + { + "label": "spEmojiForKey()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L169", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_sidepanel_spemojiforkey", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "spemojiforkey()" + }, + { + "label": "unwrapLlmStatusPayload()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L175", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_sidepanel_unwrapllmstatuspayload", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "unwrapllmstatuspayload()" + }, + { + "label": "beapUiValidationFailure()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L182", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_sidepanel_beapuivalidationfailure", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "beapuivalidationfailure()" + }, + { + "label": "sessionListLabel()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L199", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_sidepanel_sessionlistlabel", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "sessionlistlabel()" + }, + { + "label": "resolveSidepanelInferenceSessionKey()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L207", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_sidepanel_resolvesidepanelinferencesessionkey", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "resolvesidepanelinferencesessionkey()" + }, + { + "label": "SidepanelOrchestrator()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L222", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "sidepanelorchestrator()" + }, + { + "label": "container", + "file_type": "code", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L11054", + "_origin": "ast", + "id": "apps_extension_chromium_src_sidepanel_container", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "container" + }, + { + "label": "NOTE: Screenshot trigger processing is now handled directly in the\u2026", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L1452", + "_origin": "ast", + "id": "apps_extension_chromium_src_sidepanel_rationale_1452", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "note: screenshot trigger processing is now handled directly in the..." + }, + { + "label": "IMPORTANT: Only the latest screenshot in the thread should run OCR (or use\u2026", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L3106", + "_origin": "ast", + "id": "apps_extension_chromium_src_sidepanel_rationale_3106", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "important: only the latest screenshot in the thread should run ocr (or use..." + }, + { + "label": "TODO: Implement mini-app installation dialog", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L5261", + "_origin": "ast", + "id": "apps_extension_chromium_src_sidepanel_rationale_5261", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "todo: implement mini-app installation dialog" + }, + { + "label": "OrchestratorSQLiteAdapter.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/storage/OrchestratorSQLiteAdapter.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_storage_orchestratorsqliteadapter", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": "orchestratorsqliteadapter.ts" + }, + { + "label": "getLaunchSecret()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/storage/OrchestratorSQLiteAdapter.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_getlaunchsecret", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": "getlaunchsecret()" + }, + { + "label": "authHeaders()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/storage/OrchestratorSQLiteAdapter.ts", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_authheaders", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": "authheaders()" + }, + { + "label": "setAdapterLaunchSecret()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/storage/OrchestratorSQLiteAdapter.ts", + "source_location": "L57", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_setadapterlaunchsecret", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": "setadapterlaunchsecret()" + }, + { + "label": "OrchestratorSQLiteAdapter", + "file_type": "code", + "source_file": "apps/extension-chromium/src/storage/OrchestratorSQLiteAdapter.ts", + "source_location": "L64", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_orchestratorsqliteadapter", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": "orchestratorsqliteadapter" + }, + { + "label": ".connect()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/storage/OrchestratorSQLiteAdapter.ts", + "source_location": "L70", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_orchestratorsqliteadapter_connect", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": ".connect()" + }, + { + "label": ".ensureConnected()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/storage/OrchestratorSQLiteAdapter.ts", + "source_location": "L102", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_orchestratorsqliteadapter_ensureconnected", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": ".ensureconnected()" + }, + { + "label": ".get()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/storage/OrchestratorSQLiteAdapter.ts", + "source_location": "L108", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_orchestratorsqliteadapter_get", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": ".get()" + }, + { + "label": ".set()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/storage/OrchestratorSQLiteAdapter.ts", + "source_location": "L134", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_orchestratorsqliteadapter_set", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": ".set()" + }, + { + "label": ".getAll()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/storage/OrchestratorSQLiteAdapter.ts", + "source_location": "L159", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_orchestratorsqliteadapter_getall", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": ".getall()" + }, + { + "label": ".setAll()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/storage/OrchestratorSQLiteAdapter.ts", + "source_location": "L185", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_orchestratorsqliteadapter_setall", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": ".setall()" + }, + { + "label": ".remove()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/storage/OrchestratorSQLiteAdapter.ts", + "source_location": "L213", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_orchestratorsqliteadapter_remove", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": ".remove()" + }, + { + "label": ".migrateFromChromeStorage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/storage/OrchestratorSQLiteAdapter.ts", + "source_location": "L241", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_orchestratorsqliteadapter_migratefromchromestorage", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": ".migratefromchromestorage()" + }, + { + "label": "getActiveAdapter.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/storage/getActiveAdapter.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_storage_getactiveadapter", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": "getactiveadapter.ts" + }, + { + "label": "ConnectionResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/storage/getActiveAdapter.ts", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_storage_getactiveadapter_connectionresult", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": "connectionresult" + }, + { + "label": "checkElectronAvailability()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/storage/getActiveAdapter.ts", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_storage_getactiveadapter_checkelectronavailability", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": "checkelectronavailability()" + }, + { + "label": "logConnectionDiagnostics()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/storage/getActiveAdapter.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_storage_getactiveadapter_logconnectiondiagnostics", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": "logconnectiondiagnostics()" + }, + { + "label": "getActiveAdapter()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/storage/getActiveAdapter.ts", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_storage_getactiveadapter_getactiveadapter", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": "getactiveadapter()" + }, + { + "label": "createPostgresProxyAdapter()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/storage/getActiveAdapter.ts", + "source_location": "L133", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_storage_getactiveadapter_createpostgresproxyadapter", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": "createpostgresproxyadapter()" + }, + { + "label": "migration.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/storage/migration.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_storage_migration", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": "migration.ts" + }, + { + "label": "filterSessionData()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/storage/migration.ts", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_storage_migration_filtersessiondata", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": "filtersessiondata()" + }, + { + "label": "migrateToSQLite()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/storage/migration.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_storage_migration_migratetosqlite", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": "migratetosqlite()" + }, + { + "label": "autoMigrateIfNeeded()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/storage/migration.ts", + "source_location": "L111", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_storage_migration_automigrateifneeded", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": "automigrateifneeded()" + }, + { + "label": "showMigrationNotification()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/storage/migration.ts", + "source_location": "L151", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_storage_migration_showmigrationnotification", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": "showmigrationnotification()" + }, + { + "label": "checkSQLiteAvailability()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/storage/migration.ts", + "source_location": "L193", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_storage_migration_checksqliteavailability", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": "checksqliteavailability()" + }, + { + "label": "getMigrationStatus()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/storage/migration.ts", + "source_location": "L214", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_storage_migration_getmigrationstatus", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": "getmigrationstatus()" + }, + { + "label": "setMigrationStatus()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/storage/migration.ts", + "source_location": "L232", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_storage_migration_setmigrationstatus", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": "setmigrationstatus()" + }, + { + "label": "storageWrapper.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/storage/storageWrapper.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_storage_storagewrapper", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": "storagewrapper.ts" + }, + { + "label": "HybridBackendConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/storage/storageWrapper.ts", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_storage_storagewrapper_hybridbackendconfig", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": "hybridbackendconfig" + }, + { + "label": "readCache", + "file_type": "code", + "source_file": "apps/extension-chromium/src/storage/storageWrapper.ts", + "source_location": "L33", + "_origin": "ast", + "id": "apps_extension_chromium_src_storage_storagewrapper_readcache", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": "readcache" + }, + { + "label": "ADAPTER_KEY_PATTERNS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/storage/storageWrapper.ts", + "source_location": "L37", + "_origin": "ast", + "id": "apps_extension_chromium_src_storage_storagewrapper_adapter_key_patterns", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": "adapter_key_patterns" + }, + { + "label": "shouldUseAdapter()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/storage/storageWrapper.ts", + "source_location": "L49", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_storage_storagewrapper_shoulduseadapter", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": "shoulduseadapter()" + }, + { + "label": "shouldUsePostgres()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/storage/storageWrapper.ts", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_storage_storagewrapper_shouldusepostgres", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": "shouldusepostgres()" + }, + { + "label": "getBackendConfig()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/storage/storageWrapper.ts", + "source_location": "L64", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_storage_storagewrapper_getbackendconfig", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": "getbackendconfig()" + }, + { + "label": "invalidateBackendConfigCache()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/storage/storageWrapper.ts", + "source_location": "L107", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_storage_storagewrapper_invalidatebackendconfigcache", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": "invalidatebackendconfigcache()" + }, + { + "label": "invalidateReadCache()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/storage/storageWrapper.ts", + "source_location": "L115", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_storage_storagewrapper_invalidatereadcache", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": "invalidatereadcache()" + }, + { + "label": "storageGet()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/storage/storageWrapper.ts", + "source_location": "L128", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_storage_storagewrapper_storageget", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": "storageget()" + }, + { + "label": "storageSet()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/storage/storageWrapper.ts", + "source_location": "L238", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_storage_storagewrapper_storageset", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": "storageset()" + }, + { + "label": "storageRemove()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/storage/storageWrapper.ts", + "source_location": "L313", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_storage_storagewrapper_storageremove", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": "storageremove()" + }, + { + "label": "storageClear()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/storage/storageWrapper.ts", + "source_location": "L380", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_storage_storagewrapper_storageclear", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": "storageclear()" + }, + { + "label": "IMPORTANT: Remove adapter keys from Chrome Storage too (for fallback/migration\u2026", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/storage/storageWrapper.ts", + "source_location": "L331", + "_origin": "ast", + "id": "apps_extension_chromium_src_storage_storagewrapper_rationale_331", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": "important: remove adapter keys from chrome storage too (for fallback/migration..." + }, + { + "label": "activeCustomModeRuntime.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/stores/activeCustomModeRuntime.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_stores_activecustommoderuntime", + "community": 147, + "community_name": "UI Stores", + "norm_label": "activecustommoderuntime.ts" + }, + { + "label": "getActiveCustomModeRuntime()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/stores/activeCustomModeRuntime.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_stores_activecustommoderuntime_getactivecustommoderuntime", + "community": 147, + "community_name": "UI Stores", + "norm_label": "getactivecustommoderuntime()" + }, + { + "label": "useActiveCustomModeRuntime()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/stores/activeCustomModeRuntime.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_stores_activecustommoderuntime_useactivecustommoderuntime", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "useactivecustommoderuntime()" + }, + { + "label": "getEffectiveLlmModelNameForActiveMode()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/stores/activeCustomModeRuntime.ts", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_stores_activecustommoderuntime_geteffectivellmmodelnameforactivemode", + "community": 147, + "community_name": "UI Stores", + "norm_label": "geteffectivellmmodelnameforactivemode()" + }, + { + "label": "chatFocusStore.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/stores/chatFocusStore.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_stores_chatfocusstore", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "chatfocusstore.ts" + }, + { + "label": "ChatFocusMeta", + "file_type": "code", + "source_file": "apps/extension-chromium/src/stores/chatFocusStore.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_stores_chatfocusstore_chatfocusmeta", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "chatfocusmeta" + }, + { + "label": "EnterOptimizationFocusMeta", + "file_type": "code", + "source_file": "apps/extension-chromium/src/stores/chatFocusStore.ts", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_stores_chatfocusstore_enteroptimizationfocusmeta", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "enteroptimizationfocusmeta" + }, + { + "label": "WRCHAT_APPEND_ASSISTANT_EVENT", + "file_type": "code", + "source_file": "apps/extension-chromium/src/stores/chatFocusStore.ts", + "source_location": "L33", + "_origin": "ast", + "id": "apps_extension_chromium_src_stores_chatfocusstore_wrchat_append_assistant_event", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "wrchat_append_assistant_event" + }, + { + "label": "ChatFocusState", + "file_type": "code", + "source_file": "apps/extension-chromium/src/stores/chatFocusStore.ts", + "source_location": "L35", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_stores_chatfocusstore_chatfocusstate", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "chatfocusstate" + }, + { + "label": "useChatFocusStore", + "file_type": "code", + "source_file": "apps/extension-chromium/src/stores/chatFocusStore.ts", + "source_location": "L50", + "_origin": "ast", + "id": "apps_extension_chromium_src_stores_chatfocusstore_usechatfocusstore", + "community": 69, + "community_name": "Stores Chat Routing", + "norm_label": "usechatfocusstore" + }, + { + "label": "useCustomModesStore.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/stores/useCustomModesStore.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_stores_usecustommodesstore", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": "usecustommodesstore.ts" + }, + { + "label": "StoreResponse", + "file_type": "code", + "source_file": "apps/extension-chromium/src/stores/useCustomModesStore.ts", + "source_location": "L19", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_stores_usecustommodesstore_storeresponse", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": "storeresponse" + }, + { + "label": "CustomModesState", + "file_type": "code", + "source_file": "apps/extension-chromium/src/stores/useCustomModesStore.ts", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_stores_usecustommodesstore_custommodesstate", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": "custommodesstate" + }, + { + "label": "isElectronDashboard()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/stores/useCustomModesStore.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_stores_usecustommodesstore_iselectrondashboard", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": "iselectrondashboard()" + }, + { + "label": "detectMigrationOrigin()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/stores/useCustomModesStore.ts", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_stores_usecustommodesstore_detectmigrationorigin", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": "detectmigrationorigin()" + }, + { + "label": "listFromMain()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/stores/useCustomModesStore.ts", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_stores_usecustommodesstore_listfrommain", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": "listfrommain()" + }, + { + "label": "createOnMain()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/stores/useCustomModesStore.ts", + "source_location": "L52", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_stores_usecustommodesstore_createonmain", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": "createonmain()" + }, + { + "label": "updateOnMain()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/stores/useCustomModesStore.ts", + "source_location": "L65", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_stores_usecustommodesstore_updateonmain", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": "updateonmain()" + }, + { + "label": "deleteOnMain()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/stores/useCustomModesStore.ts", + "source_location": "L78", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_stores_usecustommodesstore_deleteonmain", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": "deleteonmain()" + }, + { + "label": "useCustomModesStore", + "file_type": "code", + "source_file": "apps/extension-chromium/src/stores/useCustomModesStore.ts", + "source_location": "L91", + "_origin": "ast", + "id": "apps_extension_chromium_src_stores_usecustommodesstore_usecustommodesstore", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "usecustommodesstore" + }, + { + "label": "hydrateCustomModesStore()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/stores/useCustomModesStore.ts", + "source_location": "L158", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_stores_usecustommodesstore_hydratecustommodesstore", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": "hydratecustommodesstore()" + }, + { + "label": "subscribeCustomModesChanged()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/stores/useCustomModesStore.ts", + "source_location": "L167", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_stores_usecustommodesstore_subscribecustommodeschanged", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": "subscribecustommodeschanged()" + }, + { + "label": "useUIStore.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/stores/useUIStore.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_stores_useuistore", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "useuistore.ts" + }, + { + "label": "UIStoreState", + "file_type": "code", + "source_file": "apps/extension-chromium/src/stores/useUIStore.ts", + "source_location": "L31", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_stores_useuistore_uistorestate", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "uistorestate" + }, + { + "label": "useUIStore", + "file_type": "code", + "source_file": "apps/extension-chromium/src/stores/useUIStore.ts", + "source_location": "L50", + "_origin": "ast", + "id": "apps_extension_chromium_src_stores_useuistore_useuistore", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "useuistore" + }, + { + "label": "useWorkspace()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/stores/useUIStore.ts", + "source_location": "L92", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_stores_useuistore_useworkspace", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "useworkspace()" + }, + { + "label": "useMode()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/stores/useUIStore.ts", + "source_location": "L97", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_stores_useuistore_usemode", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "usemode()" + }, + { + "label": "useComposerMode()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/stores/useUIStore.ts", + "source_location": "L102", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_stores_useuistore_usecomposermode", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "usecomposermode()" + }, + { + "label": "useRole()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/stores/useUIStore.ts", + "source_location": "L107", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_stores_useuistore_userole", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "userole()" + }, + { + "label": "useWorkspaceAndMode()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/stores/useUIStore.ts", + "source_location": "L112", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_stores_useuistore_useworkspaceandmode", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "useworkspaceandmode()" + }, + { + "label": "useIsPlaceholder()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/stores/useUIStore.ts", + "source_location": "L120", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_stores_useuistore_useisplaceholder", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "useisplaceholder()" + }, + { + "label": "toggleAdminRole()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/stores/useUIStore.ts", + "source_location": "L129", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_stores_useuistore_toggleadminrole", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "toggleadminrole()" + }, + { + "label": "agentBoxInferenceResolve.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/tests/agentBoxInferenceResolve.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_tests_agentboxinferenceresolve_test", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "agentboxinferenceresolve.test.ts" + }, + { + "label": "modeRunExecution.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/tests/modeRunExecution.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_tests_moderunexecution_test", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "moderunexecution.test.ts" + }, + { + "label": "wrChatExtensionModelPersistence.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/tests/wrChatExtensionModelPersistence.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_tests_wrchatextensionmodelpersistence_test", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "wrchatextensionmodelpersistence.test.ts" + }, + { + "label": "wrChatPipeline.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/tests/wrChatPipeline.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_tests_wrchatpipeline_test", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "wrchatpipeline.test.ts" + }, + { + "label": "shouldHandleShowTriggerPrompt()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/tests/wrChatPipeline.test.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_tests_wrchatpipeline_test_shouldhandleshowtriggerprompt", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "shouldhandleshowtriggerprompt()" + }, + { + "label": "baseAgent()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/tests/wrChatPipeline.test.ts", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_tests_wrchatpipeline_test_baseagent", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "baseagent()" + }, + { + "label": "wrChatSelectionHygiene.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/tests/wrChatSelectionHygiene.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_tests_wrchatselectionhygiene_test", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "wrchatselectionhygiene.test.ts" + }, + { + "label": "hostRowId()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/tests/wrChatSelectionHygiene.test.ts", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_tests_wrchatselectionhygiene_test_hostrowid", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "hostrowid()" + }, + { + "label": "STALE_ID", + "file_type": "code", + "source_file": "apps/extension-chromium/src/tests/wrChatSelectionHygiene.test.ts", + "source_location": "L25", + "_origin": "ast", + "id": "apps_extension_chromium_src_tests_wrchatselectionhygiene_test_stale_id", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "stale_id" + }, + { + "label": "CANON_ID", + "file_type": "code", + "source_file": "apps/extension-chromium/src/tests/wrChatSelectionHygiene.test.ts", + "source_location": "L26", + "_origin": "ast", + "id": "apps_extension_chromium_src_tests_wrchatselectionhygiene_test_canon_id", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "canon_id" + }, + { + "label": "canonRow", + "file_type": "code", + "source_file": "apps/extension-chromium/src/tests/wrChatSelectionHygiene.test.ts", + "source_location": "L28", + "_origin": "ast", + "id": "apps_extension_chromium_src_tests_wrchatselectionhygiene_test_canonrow", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "canonrow" + }, + { + "label": "AIChatCaptureConfig.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AIChatCaptureConfig.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_types_aichatcaptureconfig", + "community": 284, + "community_name": "Aichatcaptureconfig", + "norm_label": "aichatcaptureconfig.ts" + }, + { + "label": "SiteFiltersConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AIChatCaptureConfig.ts", + "source_location": "L21", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_aichatcaptureconfig_sitefiltersconfig", + "community": 284, + "community_name": "Aichatcaptureconfig", + "norm_label": "sitefiltersconfig" + }, + { + "label": "AutoDetectedSelectors", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AIChatCaptureConfig.ts", + "source_location": "L38", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_aichatcaptureconfig_autodetectedselectors", + "community": 284, + "community_name": "Aichatcaptureconfig", + "norm_label": "autodetectedselectors" + }, + { + "label": "TriggerConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AIChatCaptureConfig.ts", + "source_location": "L55", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_aichatcaptureconfig_triggerconfig", + "community": 284, + "community_name": "Aichatcaptureconfig", + "norm_label": "triggerconfig" + }, + { + "label": "InputCaptureConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AIChatCaptureConfig.ts", + "source_location": "L97", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_aichatcaptureconfig_inputcaptureconfig", + "community": 284, + "community_name": "Aichatcaptureconfig", + "norm_label": "inputcaptureconfig" + }, + { + "label": "ResponseReadyMode", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AIChatCaptureConfig.ts", + "source_location": "L119", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_aichatcaptureconfig_responsereadymode", + "community": 284, + "community_name": "Aichatcaptureconfig", + "norm_label": "responsereadymode" + }, + { + "label": "OutputCaptureConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AIChatCaptureConfig.ts", + "source_location": "L128", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_aichatcaptureconfig_outputcaptureconfig", + "community": 284, + "community_name": "Aichatcaptureconfig", + "norm_label": "outputcaptureconfig" + }, + { + "label": "ContextCaptureConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AIChatCaptureConfig.ts", + "source_location": "L175", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_aichatcaptureconfig_contextcaptureconfig", + "community": 284, + "community_name": "Aichatcaptureconfig", + "norm_label": "contextcaptureconfig" + }, + { + "label": "SanitizationConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AIChatCaptureConfig.ts", + "source_location": "L203", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_aichatcaptureconfig_sanitizationconfig", + "community": 284, + "community_name": "Aichatcaptureconfig", + "norm_label": "sanitizationconfig" + }, + { + "label": "DebugCaptureResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AIChatCaptureConfig.ts", + "source_location": "L231", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_aichatcaptureconfig_debugcaptureresult", + "community": 284, + "community_name": "Aichatcaptureconfig", + "norm_label": "debugcaptureresult" + }, + { + "label": "AIChatCaptureConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AIChatCaptureConfig.ts", + "source_location": "L254", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_aichatcaptureconfig_aichatcaptureconfig", + "community": 284, + "community_name": "Aichatcaptureconfig", + "norm_label": "aichatcaptureconfig" + }, + { + "label": "getDefaultAIChatCaptureConfig()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AIChatCaptureConfig.ts", + "source_location": "L294", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_aichatcaptureconfig_getdefaultaichatcaptureconfig", + "community": 284, + "community_name": "Aichatcaptureconfig", + "norm_label": "getdefaultaichatcaptureconfig()" + }, + { + "label": "fromLegacyTriggerData()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AIChatCaptureConfig.ts", + "source_location": "L339", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_aichatcaptureconfig_fromlegacytriggerdata", + "community": 284, + "community_name": "Aichatcaptureconfig", + "norm_label": "fromlegacytriggerdata()" + }, + { + "label": "toLegacyTriggerData()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AIChatCaptureConfig.ts", + "source_location": "L397", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_aichatcaptureconfig_tolegacytriggerdata", + "community": 284, + "community_name": "Aichatcaptureconfig", + "norm_label": "tolegacytriggerdata()" + }, + { + "label": "AgentExportImport.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_types_agentexportimport", + "community": 134, + "community_name": "Agenttypeschema", + "norm_label": "agentexportimport.ts" + }, + { + "label": "AgentExportMetadata", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L39", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_agentexportimport_agentexportmetadata", + "community": 134, + "community_name": "Agenttypeschema", + "norm_label": "agentexportmetadata" + }, + { + "label": "SchemaElement", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L56", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_agentexportimport_schemaelement", + "community": 134, + "community_name": "Agenttypeschema", + "norm_label": "schemaelement" + }, + { + "label": "AgentExportSection", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L76", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_agentexportimport_agentexportsection", + "community": 134, + "community_name": "Agenttypeschema", + "norm_label": "agentexportsection" + }, + { + "label": "AgentExportFormat", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L84", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_agentexportimport_agentexportformat", + "community": 134, + "community_name": "Agenttypeschema", + "norm_label": "agentexportformat" + }, + { + "label": "AgentImportResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L128", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_agentexportimport_agentimportresult", + "community": 134, + "community_name": "Agenttypeschema", + "norm_label": "agentimportresult" + }, + { + "label": "schemaNodeToElement()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L142", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_agentexportimport_schemanodetoelement", + "community": 134, + "community_name": "Agenttypeschema", + "norm_label": "schemanodetoelement()" + }, + { + "label": "wrapWithSchema()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L156", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_agentexportimport_wrapwithschema", + "community": 134, + "community_name": "Agenttypeschema", + "norm_label": "wrapwithschema()" + }, + { + "label": "processArrayWithSchema()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L166", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_agentexportimport_processarraywithschema", + "community": 134, + "community_name": "Agenttypeschema", + "norm_label": "processarraywithschema()" + }, + { + "label": "exportAgentToJson()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L193", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_agentexportimport_exportagenttojson", + "community": 134, + "community_name": "Agenttypeschema", + "norm_label": "exportagenttojson()" + }, + { + "label": "exportTriggers()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L406", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_agentexportimport_exporttriggers", + "community": 134, + "community_name": "Agenttypeschema", + "norm_label": "exporttriggers()" + }, + { + "label": "exportAgentToJsonString()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L429", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_agentexportimport_exportagenttojsonstring", + "community": 284, + "community_name": "Aichatcaptureconfig", + "norm_label": "exportagenttojsonstring()" + }, + { + "label": "exportAgentCompact()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L440", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_agentexportimport_exportagentcompact", + "community": 134, + "community_name": "Agenttypeschema", + "norm_label": "exportagentcompact()" + }, + { + "label": "importAgentFromJson()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L461", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_agentexportimport_importagentfromjson", + "community": 490, + "community_name": "Agentexportimport", + "norm_label": "importagentfromjson()" + }, + { + "label": "extractValue()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L634", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_agentexportimport_extractvalue", + "community": 490, + "community_name": "Agentexportimport", + "norm_label": "extractvalue()" + }, + { + "label": "importTriggers()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L651", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_agentexportimport_importtriggers", + "community": 490, + "community_name": "Agentexportimport", + "norm_label": "importtriggers()" + }, + { + "label": "validateAgentConfig()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L679", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_agentexportimport_validateagentconfig", + "community": 134, + "community_name": "Agenttypeschema", + "norm_label": "validateagentconfig()" + }, + { + "label": "downloadAgentAsJson()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L730", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_agentexportimport_downloadagentasjson", + "community": 284, + "community_name": "Aichatcaptureconfig", + "norm_label": "downloadagentasjson()" + }, + { + "label": "readAgentFromFile()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L747", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_agentexportimport_readagentfromfile", + "community": 490, + "community_name": "Agentexportimport", + "norm_label": "readagentfromfile()" + }, + { + "label": "AgentTypeSchema.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AgentTypeSchema.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_types_agenttypeschema", + "community": 134, + "community_name": "Agenttypeschema", + "norm_label": "agenttypeschema.ts" + }, + { + "label": "SchemaDataType", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AgentTypeSchema.ts", + "source_location": "L27", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_agenttypeschema_schemadatatype", + "community": 134, + "community_name": "Agenttypeschema", + "norm_label": "schemadatatype" + }, + { + "label": "SchemaEnumOption", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AgentTypeSchema.ts", + "source_location": "L40", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_agenttypeschema_schemaenumoption", + "community": 134, + "community_name": "Agenttypeschema", + "norm_label": "schemaenumoption" + }, + { + "label": "SchemaNode", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AgentTypeSchema.ts", + "source_location": "L46", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_agenttypeschema_schemanode", + "community": 134, + "community_name": "Agenttypeschema", + "norm_label": "schemanode" + }, + { + "label": "AgentRootSchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AgentTypeSchema.ts", + "source_location": "L104", + "_origin": "ast", + "id": "apps_extension_chromium_src_types_agenttypeschema_agentrootschema", + "community": 134, + "community_name": "Agenttypeschema", + "norm_label": "agentrootschema" + }, + { + "label": "AgentIdentitySchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AgentTypeSchema.ts", + "source_location": "L118", + "_origin": "ast", + "id": "apps_extension_chromium_src_types_agenttypeschema_agentidentityschema", + "community": 134, + "community_name": "Agenttypeschema", + "norm_label": "agentidentityschema" + }, + { + "label": "ListenerSectionSchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AgentTypeSchema.ts", + "source_location": "L247", + "_origin": "ast", + "id": "apps_extension_chromium_src_types_agenttypeschema_listenersectionschema", + "community": 134, + "community_name": "Agenttypeschema", + "norm_label": "listenersectionschema" + }, + { + "label": "ListenerElementsSchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AgentTypeSchema.ts", + "source_location": "L258", + "_origin": "ast", + "id": "apps_extension_chromium_src_types_agenttypeschema_listenerelementsschema", + "community": 134, + "community_name": "Agenttypeschema", + "norm_label": "listenerelementsschema" + }, + { + "label": "TriggerSchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AgentTypeSchema.ts", + "source_location": "L360", + "_origin": "ast", + "id": "apps_extension_chromium_src_types_agenttypeschema_triggerschema", + "community": 134, + "community_name": "Agenttypeschema", + "norm_label": "triggerschema" + }, + { + "label": "TriggerElementsSchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AgentTypeSchema.ts", + "source_location": "L371", + "_origin": "ast", + "id": "apps_extension_chromium_src_types_agenttypeschema_triggerelementsschema", + "community": 134, + "community_name": "Agenttypeschema", + "norm_label": "triggerelementsschema" + }, + { + "label": "ReasoningSectionSchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AgentTypeSchema.ts", + "source_location": "L854", + "_origin": "ast", + "id": "apps_extension_chromium_src_types_agenttypeschema_reasoningsectionschema", + "community": 134, + "community_name": "Agenttypeschema", + "norm_label": "reasoningsectionschema" + }, + { + "label": "ReasoningElementsSchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AgentTypeSchema.ts", + "source_location": "L865", + "_origin": "ast", + "id": "apps_extension_chromium_src_types_agenttypeschema_reasoningelementsschema", + "community": 134, + "community_name": "Agenttypeschema", + "norm_label": "reasoningelementsschema" + }, + { + "label": "MemoryContextSchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AgentTypeSchema.ts", + "source_location": "L987", + "_origin": "ast", + "id": "apps_extension_chromium_src_types_agenttypeschema_memorycontextschema", + "community": 134, + "community_name": "Agenttypeschema", + "norm_label": "memorycontextschema" + }, + { + "label": "ExecutionSectionSchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AgentTypeSchema.ts", + "source_location": "L1079", + "_origin": "ast", + "id": "apps_extension_chromium_src_types_agenttypeschema_executionsectionschema", + "community": 134, + "community_name": "Agenttypeschema", + "norm_label": "executionsectionschema" + }, + { + "label": "ExecutionElementsSchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AgentTypeSchema.ts", + "source_location": "L1090", + "_origin": "ast", + "id": "apps_extension_chromium_src_types_agenttypeschema_executionelementsschema", + "community": 134, + "community_name": "Agenttypeschema", + "norm_label": "executionelementsschema" + }, + { + "label": "WorkflowSchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AgentTypeSchema.ts", + "source_location": "L1178", + "_origin": "ast", + "id": "apps_extension_chromium_src_types_agenttypeschema_workflowschema", + "community": 134, + "community_name": "Agenttypeschema", + "norm_label": "workflowschema" + }, + { + "label": "WorkflowElementsSchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AgentTypeSchema.ts", + "source_location": "L1188", + "_origin": "ast", + "id": "apps_extension_chromium_src_types_agenttypeschema_workflowelementsschema", + "community": 134, + "community_name": "Agenttypeschema", + "norm_label": "workflowelementsschema" + }, + { + "label": "ConditionSchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AgentTypeSchema.ts", + "source_location": "L1250", + "_origin": "ast", + "id": "apps_extension_chromium_src_types_agenttypeschema_conditionschema", + "community": 134, + "community_name": "Agenttypeschema", + "norm_label": "conditionschema" + }, + { + "label": "ConditionElementsSchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AgentTypeSchema.ts", + "source_location": "L1260", + "_origin": "ast", + "id": "apps_extension_chromium_src_types_agenttypeschema_conditionelementsschema", + "community": 134, + "community_name": "Agenttypeschema", + "norm_label": "conditionelementsschema" + }, + { + "label": "CompleteAgentSchema", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AgentTypeSchema.ts", + "source_location": "L1373", + "_origin": "ast", + "id": "apps_extension_chromium_src_types_agenttypeschema_completeagentschema", + "community": 134, + "community_name": "Agenttypeschema", + "norm_label": "completeagentschema" + }, + { + "label": "getSchemaNodeMap()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AgentTypeSchema.ts", + "source_location": "L1410", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_agenttypeschema_getschemanodemap", + "community": 134, + "community_name": "Agenttypeschema", + "norm_label": "getschemanodemap()" + }, + { + "label": "getSchemaDescription()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AgentTypeSchema.ts", + "source_location": "L1444", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_agenttypeschema_getschemadescription", + "community": 134, + "community_name": "Agenttypeschema", + "norm_label": "getschemadescription()" + }, + { + "label": "getSchemaLabel()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AgentTypeSchema.ts", + "source_location": "L1452", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_agenttypeschema_getschemalabel", + "community": 134, + "community_name": "Agenttypeschema", + "norm_label": "getschemalabel()" + }, + { + "label": "computeSchemaHash()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AgentTypeSchema.ts", + "source_location": "L1460", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_agenttypeschema_computeschemahash", + "community": 134, + "community_name": "Agenttypeschema", + "norm_label": "computeschemahash()" + }, + { + "label": "SCHEMA_VERSION", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AgentTypeSchema.ts", + "source_location": "L1478", + "_origin": "ast", + "id": "apps_extension_chromium_src_types_agenttypeschema_schema_version", + "community": 134, + "community_name": "Agenttypeschema", + "norm_label": "schema_version" + }, + { + "label": "AgentValidator.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AgentValidator.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_types_agentvalidator", + "community": 285, + "community_name": "Canonicalagentconfig #285", + "norm_label": "agentvalidator.ts" + }, + { + "label": "ValidationError", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AgentValidator.ts", + "source_location": "L24", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_agentvalidator_validationerror", + "community": 285, + "community_name": "Canonicalagentconfig #285", + "norm_label": "validationerror" + }, + { + "label": "ValidationResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AgentValidator.ts", + "source_location": "L30", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_agentvalidator_validationresult", + "community": 285, + "community_name": "Canonicalagentconfig #285", + "norm_label": "validationresult" + }, + { + "label": "validateAgentConfig()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AgentValidator.ts", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_agentvalidator_validateagentconfig", + "community": 285, + "community_name": "Canonicalagentconfig #285", + "norm_label": "validateagentconfig()" + }, + { + "label": "validateTrigger()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AgentValidator.ts", + "source_location": "L206", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_agentvalidator_validatetrigger", + "community": 285, + "community_name": "Canonicalagentconfig #285", + "norm_label": "validatetrigger()" + }, + { + "label": "validateReasoningSection()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AgentValidator.ts", + "source_location": "L282", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_agentvalidator_validatereasoningsection", + "community": 285, + "community_name": "Canonicalagentconfig #285", + "norm_label": "validatereasoningsection()" + }, + { + "label": "validateExecutionSection()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AgentValidator.ts", + "source_location": "L312", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_agentvalidator_validateexecutionsection", + "community": 285, + "community_name": "Canonicalagentconfig #285", + "norm_label": "validateexecutionsection()" + }, + { + "label": "logValidationResult()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/AgentValidator.ts", + "source_location": "L370", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_agentvalidator_logvalidationresult", + "community": 285, + "community_name": "Canonicalagentconfig #285", + "norm_label": "logvalidationresult()" + }, + { + "label": "CanonicalAgentBoxConfig.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentBoxConfig.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_types_canonicalagentboxconfig", + "community": 324, + "community_name": "Canonicalagentboxconfig", + "norm_label": "canonicalagentboxconfig.ts" + }, + { + "label": "WRExpert", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentBoxConfig.ts", + "source_location": "L36", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_canonicalagentboxconfig_wrexpert", + "community": 324, + "community_name": "Canonicalagentboxconfig", + "norm_label": "wrexpert" + }, + { + "label": "AgentBoxProviderValues", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentBoxConfig.ts", + "source_location": "L50", + "_origin": "ast", + "id": "apps_extension_chromium_src_types_canonicalagentboxconfig_agentboxprovidervalues", + "community": 324, + "community_name": "Canonicalagentboxconfig", + "norm_label": "agentboxprovidervalues" + }, + { + "label": "AgentBoxProvider", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentBoxConfig.ts", + "source_location": "L59", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_canonicalagentboxconfig_agentboxprovider", + "community": 324, + "community_name": "Canonicalagentboxconfig", + "norm_label": "agentboxprovider" + }, + { + "label": "AgentBoxSourceValues", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentBoxConfig.ts", + "source_location": "L62", + "_origin": "ast", + "id": "apps_extension_chromium_src_types_canonicalagentboxconfig_agentboxsourcevalues", + "community": 324, + "community_name": "Canonicalagentboxconfig", + "norm_label": "agentboxsourcevalues" + }, + { + "label": "AgentBoxSource", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentBoxConfig.ts", + "source_location": "L66", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_canonicalagentboxconfig_agentboxsource", + "community": 324, + "community_name": "Canonicalagentboxconfig", + "norm_label": "agentboxsource" + }, + { + "label": "AgentBoxSideValues", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentBoxConfig.ts", + "source_location": "L69", + "_origin": "ast", + "id": "apps_extension_chromium_src_types_canonicalagentboxconfig_agentboxsidevalues", + "community": 324, + "community_name": "Canonicalagentboxconfig", + "norm_label": "agentboxsidevalues" + }, + { + "label": "AgentBoxSide", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentBoxConfig.ts", + "source_location": "L73", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_canonicalagentboxconfig_agentboxside", + "community": 324, + "community_name": "Canonicalagentboxconfig", + "norm_label": "agentboxside" + }, + { + "label": "CanonicalAgentBoxConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentBoxConfig.ts", + "source_location": "L88", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_canonicalagentboxconfig_canonicalagentboxconfig", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "canonicalagentboxconfig" + }, + { + "label": "AgentWithBoxesExport", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentBoxConfig.ts", + "source_location": "L216", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_canonicalagentboxconfig_agentwithboxesexport", + "community": 324, + "community_name": "Canonicalagentboxconfig", + "norm_label": "agentwithboxesexport" + }, + { + "label": "toCanonicalAgentBox()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentBoxConfig.ts", + "source_location": "L263", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_canonicalagentboxconfig_tocanonicalagentbox", + "community": 324, + "community_name": "Canonicalagentboxconfig", + "norm_label": "tocanonicalagentbox()" + }, + { + "label": "generateAgentBoxIdentifier()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentBoxConfig.ts", + "source_location": "L305", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_canonicalagentboxconfig_generateagentboxidentifier", + "community": 324, + "community_name": "Canonicalagentboxconfig", + "norm_label": "generateagentboxidentifier()" + }, + { + "label": "isAgentBoxConnectedToAgent()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentBoxConfig.ts", + "source_location": "L315", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_canonicalagentboxconfig_isagentboxconnectedtoagent", + "community": 324, + "community_name": "Canonicalagentboxconfig", + "norm_label": "isagentboxconnectedtoagent()" + }, + { + "label": "findConnectedAgentBoxes()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentBoxConfig.ts", + "source_location": "L330", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_canonicalagentboxconfig_findconnectedagentboxes", + "community": 324, + "community_name": "Canonicalagentboxconfig", + "norm_label": "findconnectedagentboxes()" + }, + { + "label": "CanonicalAgentConfig.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_types_canonicalagentconfig", + "community": 199, + "community_name": "Canonicalagentconfig", + "norm_label": "canonicalagentconfig.ts" + }, + { + "label": "ExecutionModeValues", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L25", + "_origin": "ast", + "id": "apps_extension_chromium_src_types_canonicalagentconfig_executionmodevalues", + "community": 285, + "community_name": "Canonicalagentconfig #285", + "norm_label": "executionmodevalues" + }, + { + "label": "ExecutionMode", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L32", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_canonicalagentconfig_executionmode", + "community": 199, + "community_name": "Canonicalagentconfig", + "norm_label": "executionmode" + }, + { + "label": "ListeningSourceValues", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L35", + "_origin": "ast", + "id": "apps_extension_chromium_src_types_canonicalagentconfig_listeningsourcevalues", + "community": 285, + "community_name": "Canonicalagentconfig #285", + "norm_label": "listeningsourcevalues" + }, + { + "label": "ListeningSource", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L52", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_canonicalagentconfig_listeningsource", + "community": 199, + "community_name": "Canonicalagentconfig", + "norm_label": "listeningsource" + }, + { + "label": "TriggerTypeValues", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L55", + "_origin": "ast", + "id": "apps_extension_chromium_src_types_canonicalagentconfig_triggertypevalues", + "community": 285, + "community_name": "Canonicalagentconfig #285", + "norm_label": "triggertypevalues" + }, + { + "label": "TriggerType", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L68", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_canonicalagentconfig_triggertype", + "community": 199, + "community_name": "Canonicalagentconfig", + "norm_label": "triggertype" + }, + { + "label": "ParserTriggerValues", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L71", + "_origin": "ast", + "id": "apps_extension_chromium_src_types_canonicalagentconfig_parsertriggervalues", + "community": 285, + "community_name": "Canonicalagentconfig #285", + "norm_label": "parsertriggervalues" + }, + { + "label": "ParserTriggerMode", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L78", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_canonicalagentconfig_parsertriggermode", + "community": 199, + "community_name": "Canonicalagentconfig", + "norm_label": "parsertriggermode" + }, + { + "label": "ResponseReadyModeValues", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L81", + "_origin": "ast", + "id": "apps_extension_chromium_src_types_canonicalagentconfig_responsereadymodevalues", + "community": 285, + "community_name": "Canonicalagentconfig #285", + "norm_label": "responsereadymodevalues" + }, + { + "label": "ResponseReadyMode", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L86", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_canonicalagentconfig_responsereadymode", + "community": 199, + "community_name": "Canonicalagentconfig", + "norm_label": "responsereadymode" + }, + { + "label": "DestinationKindValues", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L89", + "_origin": "ast", + "id": "apps_extension_chromium_src_types_canonicalagentconfig_destinationkindvalues", + "community": 285, + "community_name": "Canonicalagentconfig #285", + "norm_label": "destinationkindvalues" + }, + { + "label": "DestinationKind", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L97", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_canonicalagentconfig_destinationkind", + "community": 199, + "community_name": "Canonicalagentconfig", + "norm_label": "destinationkind" + }, + { + "label": "CanonicalMemorySettings", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L104", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_canonicalagentconfig_canonicalmemorysettings", + "community": 199, + "community_name": "Canonicalagentconfig", + "norm_label": "canonicalmemorysettings" + }, + { + "label": "CanonicalContextSettings", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L111", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_canonicalagentconfig_canonicalcontextsettings", + "community": 199, + "community_name": "Canonicalagentconfig", + "norm_label": "canonicalcontextsettings" + }, + { + "label": "CanonicalDestination", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L127", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_canonicalagentconfig_canonicaldestination", + "community": 199, + "community_name": "Canonicalagentconfig", + "norm_label": "canonicaldestination" + }, + { + "label": "TriggerCondition", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L151", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_canonicalagentconfig_triggercondition", + "community": 199, + "community_name": "Canonicalagentconfig", + "norm_label": "triggercondition" + }, + { + "label": "TriggerWorkflow", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L161", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_canonicalagentconfig_triggerworkflow", + "community": 199, + "community_name": "Canonicalagentconfig", + "norm_label": "triggerworkflow" + }, + { + "label": "AIChatCaptureConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L168", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_canonicalagentconfig_aichatcaptureconfig", + "community": 199, + "community_name": "Canonicalagentconfig", + "norm_label": "aichatcaptureconfig" + }, + { + "label": "CanonicalTrigger", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L191", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_canonicalagentconfig_canonicaltrigger", + "community": 285, + "community_name": "Canonicalagentconfig #285", + "norm_label": "canonicaltrigger" + }, + { + "label": "CanonicalListener", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L266", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_canonicalagentconfig_canonicallistener", + "community": 199, + "community_name": "Canonicalagentconfig", + "norm_label": "canonicallistener" + }, + { + "label": "CanonicalReasoningWorkflow", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L297", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_canonicalagentconfig_canonicalreasoningworkflow", + "community": 199, + "community_name": "Canonicalagentconfig", + "norm_label": "canonicalreasoningworkflow" + }, + { + "label": "CanonicalReasoning", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L304", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_canonicalagentconfig_canonicalreasoning", + "community": 285, + "community_name": "Canonicalagentconfig #285", + "norm_label": "canonicalreasoning" + }, + { + "label": "CanonicalExecutionWorkflow", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L328", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_canonicalagentconfig_canonicalexecutionworkflow", + "community": 199, + "community_name": "Canonicalagentconfig", + "norm_label": "canonicalexecutionworkflow" + }, + { + "label": "CanonicalExecution", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L336", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_canonicalagentconfig_canonicalexecution", + "community": 285, + "community_name": "Canonicalagentconfig #285", + "norm_label": "canonicalexecution" + }, + { + "label": "CanonicalAgentConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L360", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_canonicalagentconfig_canonicalagentconfig", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "canonicalagentconfig" + }, + { + "label": "SchemaField", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L421", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_canonicalagentconfig_schemafield", + "community": 199, + "community_name": "Canonicalagentconfig", + "norm_label": "schemafield" + }, + { + "label": "SchemaWrappedValue", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L430", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_canonicalagentconfig_schemawrappedvalue", + "community": 199, + "community_name": "Canonicalagentconfig", + "norm_label": "schemawrappedvalue" + }, + { + "label": "normalizeToNumber()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L442", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_canonicalagentconfig_normalizetonumber", + "community": 199, + "community_name": "Canonicalagentconfig", + "norm_label": "normalizetonumber()" + }, + { + "label": "normalizeApplyForList()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L454", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_canonicalagentconfig_normalizeapplyforlist", + "community": 199, + "community_name": "Canonicalagentconfig", + "norm_label": "normalizeapplyforlist()" + }, + { + "label": "deriveApplyFor()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L467", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_canonicalagentconfig_deriveapplyfor", + "community": 199, + "community_name": "Canonicalagentconfig", + "norm_label": "deriveapplyfor()" + }, + { + "label": "normalizeDestinations()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L474", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_canonicalagentconfig_normalizedestinations", + "community": 199, + "community_name": "Canonicalagentconfig", + "norm_label": "normalizedestinations()" + }, + { + "label": "normalizeTrigger()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L504", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_canonicalagentconfig_normalizetrigger", + "community": 199, + "community_name": "Canonicalagentconfig", + "norm_label": "normalizetrigger()" + }, + { + "label": "toCanonicalReasoningSection()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L538", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_canonicalagentconfig_tocanonicalreasoningsection", + "community": 199, + "community_name": "Canonicalagentconfig", + "norm_label": "tocanonicalreasoningsection()" + }, + { + "label": "toCanonicalExecutionSection()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L559", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_canonicalagentconfig_tocanonicalexecutionsection", + "community": 199, + "community_name": "Canonicalagentconfig", + "norm_label": "tocanonicalexecutionsection()" + }, + { + "label": "toCanonicalAgent()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L576", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_canonicalagentconfig_tocanonicalagent", + "community": 199, + "community_name": "Canonicalagentconfig", + "norm_label": "tocanonicalagent()" + }, + { + "label": "generateSchemaMetadata()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L669", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_canonicalagentconfig_generateschemametadata", + "community": 199, + "community_name": "Canonicalagentconfig", + "norm_label": "generateschemametadata()" + }, + { + "label": "CanonicalDisplayGridConfig.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/CanonicalDisplayGridConfig.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_types_canonicaldisplaygridconfig", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "canonicaldisplaygridconfig.ts" + }, + { + "label": "DisplayGridSlotConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/CanonicalDisplayGridConfig.ts", + "source_location": "L29", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_canonicaldisplaygridconfig_displaygridslotconfig", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "displaygridslotconfig" + }, + { + "label": "DisplayGridInnerConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/CanonicalDisplayGridConfig.ts", + "source_location": "L44", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_canonicaldisplaygridconfig_displaygridinnerconfig", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "displaygridinnerconfig" + }, + { + "label": "CanonicalDisplayGridConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/CanonicalDisplayGridConfig.ts", + "source_location": "L76", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_canonicaldisplaygridconfig_canonicaldisplaygridconfig", + "community": 56, + "community_name": "Beapbuilder Beapmessages Services", + "norm_label": "canonicaldisplaygridconfig" + }, + { + "label": "imageProviders.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/imageProviders.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_types_imageproviders", + "community": 129, + "community_name": "Llmsettings", + "norm_label": "imageproviders.ts" + }, + { + "label": "CloudImageProviderId", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/imageProviders.ts", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_imageproviders_cloudimageproviderid", + "community": 129, + "community_name": "Llmsettings", + "norm_label": "cloudimageproviderid" + }, + { + "label": "ImageModelType", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/imageProviders.ts", + "source_location": "L16", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_imageproviders_imagemodeltype", + "community": 129, + "community_name": "Llmsettings", + "norm_label": "imagemodeltype" + }, + { + "label": "ImageModelConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/imageProviders.ts", + "source_location": "L21", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_imageproviders_imagemodelconfig", + "community": 129, + "community_name": "Llmsettings", + "norm_label": "imagemodelconfig" + }, + { + "label": "CloudImageProviderConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/imageProviders.ts", + "source_location": "L37", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_imageproviders_cloudimageproviderconfig", + "community": 129, + "community_name": "Llmsettings", + "norm_label": "cloudimageproviderconfig" + }, + { + "label": "ImageProvider", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/imageProviders.ts", + "source_location": "L58", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_imageproviders_imageprovider", + "community": 129, + "community_name": "Llmsettings", + "norm_label": "imageprovider" + }, + { + "label": "ImageProvidersConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/imageProviders.ts", + "source_location": "L71", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_imageproviders_imageprovidersconfig", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": "imageprovidersconfig" + }, + { + "label": "DEFAULT_CLOUD_PROVIDERS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/imageProviders.ts", + "source_location": "L82", + "_origin": "ast", + "id": "apps_extension_chromium_src_types_imageproviders_default_cloud_providers", + "community": 129, + "community_name": "Llmsettings", + "norm_label": "default_cloud_providers" + }, + { + "label": "getDefaultImageProvidersConfig()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/imageProviders.ts", + "source_location": "L165", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_imageproviders_getdefaultimageprovidersconfig", + "community": 129, + "community_name": "Llmsettings", + "norm_label": "getdefaultimageprovidersconfig()" + }, + { + "label": "getEnabledImageProviders()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/imageProviders.ts", + "source_location": "L174", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_imageproviders_getenabledimageproviders", + "community": 129, + "community_name": "Llmsettings", + "norm_label": "getenabledimageproviders()" + }, + { + "label": "NOTE: Local image engines (ComfyUI, Automatic1111, SD.Next, InvokeAI) are", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/types/imageProviders.ts", + "source_location": "L5", + "_origin": "ast", + "id": "apps_extension_chromium_src_types_imageproviders_rationale_5", + "community": 129, + "community_name": "Llmsettings", + "norm_label": "note: local image engines (comfyui, automatic1111, sd.next, invokeai) are" + }, + { + "label": "types/index.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_types_index", + "community": 284, + "community_name": "Aichatcaptureconfig", + "norm_label": "types/index.ts" + }, + { + "label": "extension-chromium/src/types/optimizationTypes.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/optimizationTypes.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_types_optimizationtypes", + "community": 339, + "community_name": "Services UI Optimization", + "norm_label": "extension-chromium/src/types/optimizationtypes.ts" + }, + { + "label": "DomSnapshot", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/optimizationTypes.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_optimizationtypes_domsnapshot", + "community": 339, + "community_name": "Services UI Optimization", + "norm_label": "domsnapshot" + }, + { + "label": "DomSlotCapture", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/optimizationTypes.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_optimizationtypes_domslotcapture", + "community": 339, + "community_name": "Services UI Optimization", + "norm_label": "domslotcapture" + }, + { + "label": "AgentRunResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/optimizationTypes.ts", + "source_location": "L21", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_optimizationtypes_agentrunresult", + "community": 339, + "community_name": "Services UI Optimization", + "norm_label": "agentrunresult" + }, + { + "label": "orchestration.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/orchestration.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_types_orchestration", + "community": 382, + "community_name": "Orchestration", + "norm_label": "orchestration.ts" + }, + { + "label": "AIAgent", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/orchestration.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_orchestration_aiagent", + "community": 382, + "community_name": "Orchestration", + "norm_label": "aiagent" + }, + { + "label": "AgentMemory", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/orchestration.ts", + "source_location": "L16", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_orchestration_agentmemory", + "community": 382, + "community_name": "Orchestration", + "norm_label": "agentmemory" + }, + { + "label": "AgentContext", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/orchestration.ts", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_orchestration_agentcontext", + "community": 382, + "community_name": "Orchestration", + "norm_label": "agentcontext" + }, + { + "label": "OrchestrationTemplate", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/orchestration.ts", + "source_location": "L32", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_orchestration_orchestrationtemplate", + "community": 382, + "community_name": "Orchestration", + "norm_label": "orchestrationtemplate" + }, + { + "label": "WorkflowStep", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/orchestration.ts", + "source_location": "L45", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_orchestration_workflowstep", + "community": 382, + "community_name": "Orchestration", + "norm_label": "workflowstep" + }, + { + "label": "DisplaySlot", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/orchestration.ts", + "source_location": "L55", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_orchestration_displayslot", + "community": 382, + "community_name": "Orchestration", + "norm_label": "displayslot" + }, + { + "label": "RuntimeInjection", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/orchestration.ts", + "source_location": "L65", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_orchestration_runtimeinjection", + "community": 382, + "community_name": "Orchestration", + "norm_label": "runtimeinjection" + }, + { + "label": "OrchestrationConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/orchestration.ts", + "source_location": "L74", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_orchestration_orchestrationconfig", + "community": 382, + "community_name": "Orchestration", + "norm_label": "orchestrationconfig" + }, + { + "label": "triggerTypes.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/triggerTypes.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_types_triggertypes", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "triggertypes.ts" + }, + { + "label": "TriggerComposerShortcutId", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/triggerTypes.ts", + "source_location": "L2", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_triggertypes_triggercomposershortcutid", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "triggercomposershortcutid" + }, + { + "label": "TriggerFunctionId", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/triggerTypes.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_triggertypes_triggerfunctionid", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "triggerfunctionid" + }, + { + "label": "ChatFocusMode", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/triggerTypes.ts", + "source_location": "L27", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_triggertypes_chatfocusmode", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "chatfocusmode" + }, + { + "label": "TriggerProjectEntry", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/triggerTypes.ts", + "source_location": "L57", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_triggertypes_triggerprojectentry", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "triggerprojectentry" + }, + { + "label": "TriggerComposerEntry", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/triggerTypes.ts", + "source_location": "L68", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_triggertypes_triggercomposerentry", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "triggercomposerentry" + }, + { + "label": "TriggerDropdownItem", + "file_type": "code", + "source_file": "apps/extension-chromium/src/types/triggerTypes.ts", + "source_location": "L78", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_types_triggertypes_triggerdropdownitem", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "triggerdropdownitem" + }, + { + "label": "AIAssistPopover.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/AIAssistPopover.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_aiassistpopover", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "aiassistpopover.tsx" + }, + { + "label": "AIAssistPopoverProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/AIAssistPopover.tsx", + "source_location": "L15", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_aiassistpopover_aiassistpopoverprops", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "aiassistpopoverprops" + }, + { + "label": "AIAssistPopover()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/AIAssistPopover.tsx", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_aiassistpopover_aiassistpopover", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "aiassistpopover()" + }, + { + "label": "AddModeWizardHost.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/AddModeWizardHost.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizardhost", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": "addmodewizardhost.tsx" + }, + { + "label": "AddModeWizardHostProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/AddModeWizardHost.tsx", + "source_location": "L24", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizardhost_addmodewizardhostprops", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": "addmodewizardhostprops" + }, + { + "label": "mapThemeToLightbox()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/AddModeWizardHost.tsx", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizardhost_mapthemetolightbox", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": "mapthemetolightbox()" + }, + { + "label": "AutomationPhase", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/AddModeWizardHost.tsx", + "source_location": "L45", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizardhost_automationphase", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": "automationphase" + }, + { + "label": "WizardErrorBoundaryProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/AddModeWizardHost.tsx", + "source_location": "L47", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizardhost_wizarderrorboundaryprops", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": "wizarderrorboundaryprops" + }, + { + "label": "WizardErrorBoundaryState", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/AddModeWizardHost.tsx", + "source_location": "L49", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizardhost_wizarderrorboundarystate", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": "wizarderrorboundarystate" + }, + { + "label": "AddModeWizardErrorBoundary", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/AddModeWizardHost.tsx", + "source_location": "L51", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizardhost_addmodewizarderrorboundary", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": "addmodewizarderrorboundary" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/AddModeWizardHost.tsx", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizardhost_addmodewizarderrorboundary_constructor", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": ".constructor()" + }, + { + "label": ".getDerivedStateFromError()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/AddModeWizardHost.tsx", + "source_location": "L60", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizardhost_addmodewizarderrorboundary_getderivedstatefromerror", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": ".getderivedstatefromerror()" + }, + { + "label": ".componentDidCatch()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/AddModeWizardHost.tsx", + "source_location": "L64", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizardhost_addmodewizarderrorboundary_componentdidcatch", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": ".componentdidcatch()" + }, + { + "label": ".render()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/AddModeWizardHost.tsx", + "source_location": "L68", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizardhost_addmodewizarderrorboundary_render", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": ".render()" + }, + { + "label": "AddModeWizardHost()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/AddModeWizardHost.tsx", + "source_location": "L129", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizardhost_addmodewizardhost", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": "addmodewizardhost()" + }, + { + "label": "AdminPoliciesPlaceholder.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/AdminPoliciesPlaceholder.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_adminpoliciesplaceholder", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "adminpoliciesplaceholder.tsx" + }, + { + "label": "AdminPoliciesPlaceholderProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/AdminPoliciesPlaceholder.tsx", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_adminpoliciesplaceholder_adminpoliciesplaceholderprops", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "adminpoliciesplaceholderprops" + }, + { + "label": "AdminPoliciesPlaceholder()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/AdminPoliciesPlaceholder.tsx", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_adminpoliciesplaceholder_adminpoliciesplaceholder", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "adminpoliciesplaceholder()" + }, + { + "label": "ChatFocusBanner.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/ChatFocusBanner.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_chatfocusbanner", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "chatfocusbanner.tsx" + }, + { + "label": "ChatFocusBanner()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/ChatFocusBanner.tsx", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_chatfocusbanner_chatfocusbanner", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "chatfocusbanner()" + }, + { + "label": "CommandChatView.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/CommandChatView.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_commandchatview", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "commandchatview.tsx" + }, + { + "label": "ChatMessage", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/CommandChatView.tsx", + "source_location": "L19", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_commandchatview_chatmessage", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "chatmessage" + }, + { + "label": "CommandChatViewProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/CommandChatView.tsx", + "source_location": "L25", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_commandchatview_commandchatviewprops", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "commandchatviewprops" + }, + { + "label": "CommandChatView()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/CommandChatView.tsx", + "source_location": "L48", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_commandchatview_commandchatview", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "commandchatview()" + }, + { + "label": "ComposerToolbelt.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/ComposerToolbelt.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_composertoolbelt", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "composertoolbelt.tsx" + }, + { + "label": "ComposerToolbeltProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/ComposerToolbelt.tsx", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_composertoolbelt_composertoolbeltprops", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "composertoolbeltprops" + }, + { + "label": "ComposerToolbelt()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/ComposerToolbelt.tsx", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_composertoolbelt_composertoolbelt", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "composertoolbelt()" + }, + { + "label": "CustomModeWizard.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/CustomModeWizard.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_custommodewizard", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "custommodewizard.tsx" + }, + { + "label": "DiffTriggerDialog.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/DiffTriggerDialog.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_difftriggerdialog", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": "difftriggerdialog.tsx" + }, + { + "label": "newDiffTriggerId()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/DiffTriggerDialog.tsx", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_difftriggerdialog_newdifftriggerid", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": "newdifftriggerid()" + }, + { + "label": "DiffTriggerDialogProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/DiffTriggerDialog.tsx", + "source_location": "L21", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_difftriggerdialog_difftriggerdialogprops", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": "difftriggerdialogprops" + }, + { + "label": "ViewMode", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/DiffTriggerDialog.tsx", + "source_location": "L38", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_difftriggerdialog_viewmode", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": "viewmode" + }, + { + "label": "DiffTriggerDialog()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/DiffTriggerDialog.tsx", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_difftriggerdialog_difftriggerdialog", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": "difftriggerdialog()" + }, + { + "label": "GroupChatPlaceholder.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/GroupChatPlaceholder.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_groupchatplaceholder", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "groupchatplaceholder.tsx" + }, + { + "label": "GroupChatPlaceholderProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/GroupChatPlaceholder.tsx", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_groupchatplaceholder_groupchatplaceholderprops", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "groupchatplaceholderprops" + }, + { + "label": "GroupChatPlaceholder()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/GroupChatPlaceholder.tsx", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_groupchatplaceholder_groupchatplaceholder", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "groupchatplaceholder()" + }, + { + "label": "ModeHeaderBadge.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/ModeHeaderBadge.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_modeheaderbadge", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "modeheaderbadge.tsx" + }, + { + "label": "ModeHeaderBadgeProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/ModeHeaderBadge.tsx", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_modeheaderbadge_modeheaderbadgeprops", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "modeheaderbadgeprops" + }, + { + "label": "ModeHeaderBadge()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/ModeHeaderBadge.tsx", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_modeheaderbadge_modeheaderbadge", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "modeheaderbadge()" + }, + { + "label": "ModeRowAffordances.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/ModeRowAffordances.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_moderowaffordances", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "moderowaffordances.tsx" + }, + { + "label": "ModeRowAffordancesProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/ModeRowAffordances.tsx", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_moderowaffordances_moderowaffordancesprops", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "moderowaffordancesprops" + }, + { + "label": "TONE_FG", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/ModeRowAffordances.tsx", + "source_location": "L21", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_moderowaffordances_tone_fg", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "tone_fg" + }, + { + "label": "ModeRowAffordances()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/ModeRowAffordances.tsx", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_moderowaffordances_moderowaffordances", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "moderowaffordances()" + }, + { + "label": "ModeSelect.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/ModeSelect.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_modeselect", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "modeselect.tsx" + }, + { + "label": "ModeSelectProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/ModeSelect.tsx", + "source_location": "L29", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_modeselect_modeselectprops", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "modeselectprops" + }, + { + "label": "ModeSelect()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/ModeSelect.tsx", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_modeselect_modeselect", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "modeselect()" + }, + { + "label": "OptimizationInfobox.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/OptimizationInfobox.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_optimizationinfobox", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "optimizationinfobox.tsx" + }, + { + "label": "isIconUrl()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/OptimizationInfobox.tsx", + "source_location": "L4", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_optimizationinfobox_isiconurl", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "isiconurl()" + }, + { + "label": "OptimizationInfobox()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/OptimizationInfobox.tsx", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_optimizationinfobox_optimizationinfobox", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "optimizationinfobox()" + }, + { + "label": "P2PChatPlaceholder.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/P2PChatPlaceholder.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_p2pchatplaceholder", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "p2pchatplaceholder.tsx" + }, + { + "label": "P2PChatPlaceholderProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/P2PChatPlaceholder.tsx", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_p2pchatplaceholder_p2pchatplaceholderprops", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "p2pchatplaceholderprops" + }, + { + "label": "P2PChatPlaceholder()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/P2PChatPlaceholder.tsx", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_p2pchatplaceholder_p2pchatplaceholder", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "p2pchatplaceholder()" + }, + { + "label": "P2PStreamPlaceholder.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/P2PStreamPlaceholder.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_p2pstreamplaceholder", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "p2pstreamplaceholder.tsx" + }, + { + "label": "P2PStreamPlaceholderProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/P2PStreamPlaceholder.tsx", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_p2pstreamplaceholder_p2pstreamplaceholderprops", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "p2pstreamplaceholderprops" + }, + { + "label": "P2PStreamPlaceholder()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/P2PStreamPlaceholder.tsx", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_p2pstreamplaceholder_p2pstreamplaceholder", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "p2pstreamplaceholder()" + }, + { + "label": "PopupChatView.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_popupchatview", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "popupchatview.tsx" + }, + { + "label": "wrChatHostModelTitle()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L62", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_popupchatview_wrchathostmodeltitle", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "wrchathostmodeltitle()" + }, + { + "label": "getOrchestratorSessionKeyForSync()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L90", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_popupchatview_getorchestratorsessionkeyforsync", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "getorchestratorsessionkeyforsync()" + }, + { + "label": "PINNED_TRIGGER_EMOJIS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L103", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_popupchatview_pinned_trigger_emojis", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "pinned_trigger_emojis" + }, + { + "label": "stableIndexForKey()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L112", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_popupchatview_stableindexforkey", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "stableindexforkey()" + }, + { + "label": "emojiForTriggerKey()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L120", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_popupchatview_emojifortriggerkey", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "emojifortriggerkey()" + }, + { + "label": "DashboardWrChatBeforeLlmSendInfo", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L126", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_popupchatview_dashboardwrchatbeforellmsendinfo", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "dashboardwrchatbeforellmsendinfo" + }, + { + "label": "ChatMessage", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L132", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_popupchatview_chatmessage", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "chatmessage" + }, + { + "label": "PopupChatViewProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L141", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_popupchatview_popupchatviewprops", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "popupchatviewprops" + }, + { + "label": "getLaunchSecret()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L205", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_popupchatview_getlaunchsecret", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "getlaunchsecret()" + }, + { + "label": "resolveViaHandshakeBridge()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L225", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_popupchatview_resolveviahandshakebridge", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "resolveviahandshakebridge()" + }, + { + "label": "ensureLaunchSecret()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L241", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_popupchatview_ensurelaunchsecret", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "ensurelaunchsecret()" + }, + { + "label": "buildHeaders()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L248", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_popupchatview_buildheaders", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "buildheaders()" + }, + { + "label": "mapChatToLlmMessages()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L261", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_popupchatview_mapchattollmmessages", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "mapchattollmmessages()" + }, + { + "label": "sliceMessagesFromLastUserImage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L314", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_popupchatview_slicemessagesfromlastuserimage", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "slicemessagesfromlastuserimage()" + }, + { + "label": "resolveModelIdForChat()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L323", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_popupchatview_resolvemodelidforchat", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "resolvemodelidforchat()" + }, + { + "label": "resolveChatModelIdForSend()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L340", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_popupchatview_resolvechatmodelidforsend", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "resolvechatmodelidforsend()" + }, + { + "label": "getMergedChatLlmPrefixForModel()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L349", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_popupchatview_getmergedchatllmprefixformodel", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "getmergedchatllmprefixformodel()" + }, + { + "label": "modelMenuPrimary()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L368", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_popupchatview_modelmenuprimary", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "modelmenuprimary()" + }, + { + "label": "parseDataTransfer()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L373", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_popupchatview_parsedatatransfer", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "parsedatatransfer()" + }, + { + "label": "extractPdfText()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L389", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_popupchatview_extractpdftext", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "extractpdftext()" + }, + { + "label": "runOcr()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L413", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_popupchatview_runocr", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "runocr()" + }, + { + "label": "PopupChatView()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L446", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_popupchatview_popupchatview", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "popupchatview()" + }, + { + "label": "NOTE: processedMessages is used for popup context and for non-image flows.", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L1892", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_popupchatview_rationale_1892", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "note: processedmessages is used for popup context and for non-image flows." + }, + { + "label": "WatchdogIcon.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/WatchdogIcon.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_watchdogicon", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "watchdogicon.tsx" + }, + { + "label": "WATCHDOG_EMOJI", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/WatchdogIcon.tsx", + "source_location": "L4", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_watchdogicon_watchdog_emoji", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "watchdog_emoji" + }, + { + "label": "WatchdogIconProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/WatchdogIcon.tsx", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_watchdogicon_watchdogiconprops", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "watchdogiconprops" + }, + { + "label": "WatchdogIcon()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/WatchdogIcon.tsx", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_watchdogicon_watchdogicon", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "watchdogicon()" + }, + { + "label": "WrChatCaptureButton.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/WrChatCaptureButton.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrchatcapturebutton", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "wrchatcapturebutton.tsx" + }, + { + "label": "WrChatCaptureIcon()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/WrChatCaptureButton.tsx", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrchatcapturebutton_wrchatcaptureicon", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "wrchatcaptureicon()" + }, + { + "label": "WrChatCaptureButtonProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/WrChatCaptureButton.tsx", + "source_location": "L29", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrchatcapturebutton_wrchatcapturebuttonprops", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "wrchatcapturebuttonprops" + }, + { + "label": "WrChatCaptureButton()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/WrChatCaptureButton.tsx", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrchatcapturebutton_wrchatcapturebutton", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "wrchatcapturebutton()" + }, + { + "label": "WrChatDiffButton.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/WrChatDiffButton.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrchatdiffbutton", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": "wrchatdiffbutton.tsx" + }, + { + "label": "getLaunchSecret()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/WrChatDiffButton.tsx", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrchatdiffbutton_getlaunchsecret", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": "getlaunchsecret()" + }, + { + "label": "WrChatDiffIcon()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/WrChatDiffButton.tsx", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrchatdiffbutton_wrchatdifficon", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": "wrchatdifficon()" + }, + { + "label": "WrChatDiffButtonProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/WrChatDiffButton.tsx", + "source_location": "L54", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrchatdiffbutton_wrchatdiffbuttonprops", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": "wrchatdiffbuttonprops" + }, + { + "label": "WrChatDiffButton()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/WrChatDiffButton.tsx", + "source_location": "L70", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrchatdiffbutton_wrchatdiffbutton", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": "wrchatdiffbutton()" + }, + { + "label": "WrChatWatchdogButton.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/WrChatWatchdogButton.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrchatwatchdogbutton", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "wrchatwatchdogbutton.tsx" + }, + { + "label": "WrChatWatchdogButtonProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/WrChatWatchdogButton.tsx", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrchatwatchdogbutton_wrchatwatchdogbuttonprops", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "wrchatwatchdogbuttonprops" + }, + { + "label": "getLaunchSecret()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/WrChatWatchdogButton.tsx", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrchatwatchdogbutton_getlaunchsecret", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "getlaunchsecret()" + }, + { + "label": "resolveElectronFallback()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/WrChatWatchdogButton.tsx", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrchatwatchdogbutton_resolveelectronfallback", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "resolveelectronfallback()" + }, + { + "label": "buildHeaders()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/WrChatWatchdogButton.tsx", + "source_location": "L68", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrchatwatchdogbutton_buildheaders", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "buildheaders()" + }, + { + "label": "WrChatWatchdogButton()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/WrChatWatchdogButton.tsx", + "source_location": "L73", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrchatwatchdogbutton_wrchatwatchdogbutton", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "wrchatwatchdogbutton()" + }, + { + "label": "modeRowActions.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/__tests__/modeRowActions.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_tests_moderowactions_test", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "moderowactions.test.ts" + }, + { + "label": "AddModeWizard.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizard.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "addmodewizard.tsx" + }, + { + "label": "AddModeWizardProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizard.tsx", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard_addmodewizardprops", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "addmodewizardprops" + }, + { + "label": "LAST_STEP", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizard.tsx", + "source_location": "L49", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard_last_step", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "last_step" + }, + { + "label": "AddModeWizard()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizard.tsx", + "source_location": "L51", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard_addmodewizard", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "addmodewizard()" + }, + { + "label": "AddModeWizardStepBody.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizardStepBody.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardstepbody", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "addmodewizardstepbody.tsx" + }, + { + "label": "AddModeWizardStepBody()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizardStepBody.tsx", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardstepbody_addmodewizardstepbody", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "addmodewizardstepbody()" + }, + { + "label": "addModeWizardTypes.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/addModeWizardTypes.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardtypes", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "addmodewizardtypes.ts" + }, + { + "label": "ADD_MODE_WIZARD_STEPS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/addModeWizardTypes.ts", + "source_location": "L13", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardtypes_add_mode_wizard_steps", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "add_mode_wizard_steps" + }, + { + "label": "AddModeWizardStepIndex", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/addModeWizardTypes.ts", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardtypes_addmodewizardstepindex", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "addmodewizardstepindex" + }, + { + "label": "AddModeWizardIntent", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/addModeWizardTypes.ts", + "source_location": "L25", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardtypes_addmodewizardintent", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "addmodewizardintent" + }, + { + "label": "AddModeWizardData", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/addModeWizardTypes.ts", + "source_location": "L27", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardtypes_addmodewizarddata", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "addmodewizarddata" + }, + { + "label": "ValidateStepFn", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/addModeWizardTypes.ts", + "source_location": "L29", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardtypes_validatestepfn", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "validatestepfn" + }, + { + "label": "addModeWizardValidation.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/addModeWizardValidation.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "addmodewizardvalidation.ts" + }, + { + "label": "isValidHttpUrl()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/addModeWizardValidation.ts", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation_isvalidhttpurl", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "isvalidhttpurl()" + }, + { + "label": "InlineFieldErrors", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/addModeWizardValidation.ts", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation_inlinefielderrors", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "inlinefielderrors" + }, + { + "label": "getInlineFieldErrorsForStep()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/addModeWizardValidation.ts", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation_getinlinefielderrorsforstep", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "getinlinefielderrorsforstep()" + }, + { + "label": "validateAddModeWizardStep()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/addModeWizardValidation.ts", + "source_location": "L71", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation_validateaddmodewizardstep", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "validateaddmodewizardstep()" + }, + { + "label": "isAddModeWizardDraftValid()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/addModeWizardValidation.ts", + "source_location": "L128", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation_isaddmodewizarddraftvalid", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "isaddmodewizarddraftvalid()" + }, + { + "label": "customModeDraftDirty.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/customModeDraftDirty.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizard_custommodedraftdirty", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "custommodedraftdirty.ts" + }, + { + "label": "isCustomModeDraftDirty()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/customModeDraftDirty.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizard_custommodedraftdirty_iscustommodedraftdirty", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "iscustommodedraftdirty()" + }, + { + "label": "addModeWizard/index.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizard_index", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "addmodewizard/index.ts" + }, + { + "label": "StepBasics.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepBasics.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepbasics", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "stepbasics.tsx" + }, + { + "label": "StepBasics()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepBasics.tsx", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepbasics_stepbasics", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "stepbasics()" + }, + { + "label": "StepFocus.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepFocus.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepfocus", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "stepfocus.tsx" + }, + { + "label": "StepFocus()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepFocus.tsx", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepfocus_stepfocus", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "stepfocus()" + }, + { + "label": "StepModel.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepModel.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepmodel", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "stepmodel.tsx" + }, + { + "label": "useDebounced()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepModel.tsx", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepmodel_usedebounced", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "usedebounced()" + }, + { + "label": "hostModelOptionLabel()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepModel.tsx", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepmodel_hostmodeloptionlabel", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "hostmodeloptionlabel()" + }, + { + "label": "StepModel()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepModel.tsx", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepmodel_stepmodel", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "stepmodel()" + }, + { + "label": "StepProfileFields.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepProfileFields.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "stepprofilefields.tsx" + }, + { + "label": "ADVANCED_FIELD_TYPES", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepProfileFields.tsx", + "source_location": "L29", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields_advanced_field_types", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "advanced_field_types" + }, + { + "label": "shouldAutoKey()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepProfileFields.tsx", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields_shouldautokey", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "shouldautokey()" + }, + { + "label": "parseMultiselectValue()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepProfileFields.tsx", + "source_location": "L59", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields_parsemultiselectvalue", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "parsemultiselectvalue()" + }, + { + "label": "joinMultiselectValue()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepProfileFields.tsx", + "source_location": "L73", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields_joinmultiselectvalue", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "joinmultiselectvalue()" + }, + { + "label": "effectiveFieldType()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepProfileFields.tsx", + "source_location": "L81", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields_effectivefieldtype", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "effectivefieldtype()" + }, + { + "label": "isAdvancedType()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepProfileFields.tsx", + "source_location": "L89", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields_isadvancedtype", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "isadvancedtype()" + }, + { + "label": "ProfileFieldValueInput()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepProfileFields.tsx", + "source_location": "L97", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields_profilefieldvalueinput", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "profilefieldvalueinput()" + }, + { + "label": "StepProfileFields()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepProfileFields.tsx", + "source_location": "L367", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields_stepprofilefields", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "stepprofilefields()" + }, + { + "label": "StepReview.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepReview.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepreview", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "stepreview.tsx" + }, + { + "label": "StepReview()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepReview.tsx", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepreview_stepreview", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "stepreview()" + }, + { + "label": "StepRun.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepRun.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizard_steps_steprun", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "steprun.tsx" + }, + { + "label": "StepRun()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepRun.tsx", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizard_steps_steprun_steprun", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "steprun()" + }, + { + "label": "StepSession.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepSession.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepsession", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "stepsession.tsx" + }, + { + "label": "StepSession()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepSession.tsx", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepsession_stepsession", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "stepsession()" + }, + { + "label": "WizardFieldError.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/WizardFieldError.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizard_steps_wizardfielderror", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "wizardfielderror.tsx" + }, + { + "label": "WizardFieldError()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/WizardFieldError.tsx", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizard_steps_wizardfielderror_wizardfielderror", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "wizardfielderror()" + }, + { + "label": "wizardConstants.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/wizardConstants.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizard_wizardconstants", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "wizardconstants.ts" + }, + { + "label": "WIZARD_MODE_ICONS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/wizardConstants.ts", + "source_location": "L5", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizard_wizardconstants_wizard_mode_icons", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "wizard_mode_icons" + }, + { + "label": "WIZARD_MODEL_PROVIDERS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/wizardConstants.ts", + "source_location": "L7", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizard_wizardconstants_wizard_model_providers", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "wizard_model_providers" + }, + { + "label": "wizardStyles.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/wizardStyles.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizard_wizardstyles", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "wizardstyles.ts" + }, + { + "label": "wizardFieldColumnStyle()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/wizardStyles.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizard_wizardstyles_wizardfieldcolumnstyle", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "wizardfieldcolumnstyle()" + }, + { + "label": "wizardTextareaStyle()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/wizardStyles.ts", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizard_wizardstyles_wizardtextareastyle", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "wizardtextareastyle()" + }, + { + "label": "wizardReviewRowStyle()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/wizardStyles.ts", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizard_wizardstyles_wizardreviewrowstyle", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "wizardreviewrowstyle()" + }, + { + "label": "inputStyleWithError()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/wizardStyles.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_addmodewizard_wizardstyles_inputstylewitherror", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "inputstylewitherror()" + }, + { + "label": "ui/components/index.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_index", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "ui/components/index.ts" + }, + { + "label": "modeRowActions.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/modeRowActions.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_moderowactions", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "moderowactions.ts" + }, + { + "label": "openModeEditWizard()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/modeRowActions.ts", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_moderowactions_openmodeeditwizard", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "openmodeeditwizard()" + }, + { + "label": "confirmDeleteMode()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/modeRowActions.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_moderowactions_confirmdeletemode", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "confirmdeletemode()" + }, + { + "label": "AgentOptimizationResult.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/optimization/AgentOptimizationResult.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_optimization_agentoptimizationresult", + "community": 339, + "community_name": "Services UI Optimization", + "norm_label": "agentoptimizationresult.tsx" + }, + { + "label": "AgentOptimizationResultProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/optimization/AgentOptimizationResult.tsx", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_optimization_agentoptimizationresult_agentoptimizationresultprops", + "community": 339, + "community_name": "Services UI Optimization", + "norm_label": "agentoptimizationresultprops" + }, + { + "label": "AgentOptimizationResult()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/optimization/AgentOptimizationResult.tsx", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_optimization_agentoptimizationresult_agentoptimizationresult", + "community": 339, + "community_name": "Services UI Optimization", + "norm_label": "agentoptimizationresult()" + }, + { + "label": "OptimizationRunHeader.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/optimization/OptimizationRunHeader.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_optimization_optimizationrunheader", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "optimizationrunheader.tsx" + }, + { + "label": "OptimizationRunHeaderProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/optimization/OptimizationRunHeader.tsx", + "source_location": "L3", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_optimization_optimizationrunheader_optimizationrunheaderprops", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "optimizationrunheaderprops" + }, + { + "label": "formatTime()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/optimization/OptimizationRunHeader.tsx", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_optimization_optimizationrunheader_formattime", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "formattime()" + }, + { + "label": "OptimizationRunHeader()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/optimization/OptimizationRunHeader.tsx", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_optimization_optimizationrunheader_optimizationrunheader", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "optimizationrunheader()" + }, + { + "label": "wrChatCaptureDispatch.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/wrChatCaptureDispatch.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrchatcapturedispatch", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "wrchatcapturedispatch.ts" + }, + { + "label": "LmgtfyBridge", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/wrChatCaptureDispatch.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrchatcapturedispatch_lmgtfybridge", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "lmgtfybridge" + }, + { + "label": "getLmgtfyBridge()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/wrChatCaptureDispatch.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrchatcapturedispatch_getlmgtfybridge", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "getlmgtfybridge()" + }, + { + "label": "startWrChatScreenCapture()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/wrChatCaptureDispatch.ts", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrchatcapturedispatch_startwrchatscreencapture", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "startwrchatscreencapture()" + }, + { + "label": "tryStartSelectionViaHttp()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/wrChatCaptureDispatch.ts", + "source_location": "L69", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrchatcapturedispatch_trystartselectionviahttp", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "trystartselectionviahttp()" + }, + { + "label": "components/wrChatSurface.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/wrChatSurface.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrchatsurface", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "components/wrchatsurface.ts" + }, + { + "label": "WrChatSurface", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/wrChatSurface.ts", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrchatsurface_wrchatsurface", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "wrchatsurface" + }, + { + "label": "SOURCE_TO_SURFACE", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/wrChatSurface.ts", + "source_location": "L14", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrchatsurface_source_to_surface", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "source_to_surface" + }, + { + "label": "surfaceFromSource()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/wrChatSurface.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrchatsurface_surfacefromsource", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "surfacefromsource()" + }, + { + "label": "promptContextForSurface()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/wrChatSurface.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrchatsurface_promptcontextforsurface", + "community": 27, + "community_name": "Agent Mode Execution", + "norm_label": "promptcontextforsurface()" + }, + { + "label": "TriggerButtonShell.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/TriggerButtonShell.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrmultitrigger_triggerbuttonshell", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "triggerbuttonshell.tsx" + }, + { + "label": "TriggerButtonShellMonitorProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/TriggerButtonShell.tsx", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrmultitrigger_triggerbuttonshell_triggerbuttonshellmonitorprops", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "triggerbuttonshellmonitorprops" + }, + { + "label": "TriggerButtonShellSnapshotProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/TriggerButtonShell.tsx", + "source_location": "L38", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrmultitrigger_triggerbuttonshell_triggerbuttonshellsnapshotprops", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "triggerbuttonshellsnapshotprops" + }, + { + "label": "TriggerButtonShellProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/TriggerButtonShell.tsx", + "source_location": "L54", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrmultitrigger_triggerbuttonshell_triggerbuttonshellprops", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "triggerbuttonshellprops" + }, + { + "label": "stopCheckboxBubble()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/TriggerButtonShell.tsx", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrmultitrigger_triggerbuttonshell_stopcheckboxbubble", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "stopcheckboxbubble()" + }, + { + "label": "TriggerButtonShell()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/TriggerButtonShell.tsx", + "source_location": "L60", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrmultitrigger_triggerbuttonshell_triggerbuttonshell", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "triggerbuttonshell()" + }, + { + "label": "WrMultiTriggerBar.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "wrmultitriggerbar.tsx" + }, + { + "label": "WRCHAT_CHAT_FOCUS_REQUEST_EVENT", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L54", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrchat_chat_focus_request_event", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "wrchat_chat_focus_request_event" + }, + { + "label": "WRCHAT_OPEN_CUSTOM_MODE_WIZARD_EVENT", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L60", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrchat_open_custom_mode_wizard_event", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "wrchat_open_custom_mode_wizard_event" + }, + { + "label": "WRCHAT_CUSTOM_MODE_WIZARD_SAVED", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L66", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrchat_custom_mode_wizard_saved", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "wrchat_custom_mode_wizard_saved" + }, + { + "label": "WRDESK_OPEN_PROJECT_ASSISTANT_CREATION", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L72", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrdesk_open_project_assistant_creation", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "wrdesk_open_project_assistant_creation" + }, + { + "label": "WRDESK_TRIGGER_SYNC_AUTO_OPTIMIZER_PROJECT", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L78", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrdesk_trigger_sync_auto_optimizer_project", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "wrdesk_trigger_sync_auto_optimizer_project" + }, + { + "label": "WRDESK_COMPOSER_SHORTCUTS_UPDATED", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L81", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrdesk_composer_shortcuts_updated", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "wrdesk_composer_shortcuts_updated" + }, + { + "label": "WrMultiTriggerBarProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L83", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrmultitriggerbarprops", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "wrmultitriggerbarprops" + }, + { + "label": "SpeechBubbleButton()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L102", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_speechbubblebutton", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "speechbubblebutton()" + }, + { + "label": "functionIdKey()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L141", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_functionidkey", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "functionidkey()" + }, + { + "label": "WrMultiTriggerBar()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L148", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrmultitriggerbar", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "wrmultitriggerbar()" + }, + { + "label": "dropdownSections.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/__tests__/dropdownSections.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrmultitrigger_tests_dropdownsections_test", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "dropdownsections.test.ts" + }, + { + "label": "automationUiKind.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/automationUiKind.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrmultitrigger_automationuikind", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "automationuikind.ts" + }, + { + "label": "AutomationUiKind", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/automationUiKind.ts", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrmultitrigger_automationuikind_automationuikind", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "automationuikind" + }, + { + "label": "automationUiKindFromTriggerFunctionId()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/automationUiKind.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrmultitrigger_automationuikind_automationuikindfromtriggerfunctionid", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "automationuikindfromtriggerfunctionid()" + }, + { + "label": "ADD_AUTOMATION_ROW_UI_KIND", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/automationUiKind.ts", + "source_location": "L23", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrmultitrigger_automationuikind_add_automation_row_ui_kind", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "add_automation_row_ui_kind" + }, + { + "label": "ADD_PROJECT_ASSISTANT_ROW_UI_KIND", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/automationUiKind.ts", + "source_location": "L26", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrmultitrigger_automationuikind_add_project_assistant_row_ui_kind", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "add_project_assistant_row_ui_kind" + }, + { + "label": "dropdownSections.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/dropdownSections.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "dropdownsections.ts" + }, + { + "label": "TriggerBarDropdownRow", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/dropdownSections.ts", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections_triggerbardropdownrow", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "triggerbardropdownrow" + }, + { + "label": "TriggerBarDropdownSectionId", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/dropdownSections.ts", + "source_location": "L26", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections_triggerbardropdownsectionid", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "triggerbardropdownsectionid" + }, + { + "label": "TriggerBarDropdownSection", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/dropdownSections.ts", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections_triggerbardropdownsection", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "triggerbardropdownsection" + }, + { + "label": "buildProjectDropdownRows()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/dropdownSections.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections_buildprojectdropdownrows", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "buildprojectdropdownrows()" + }, + { + "label": "buildComposerDropdownRows()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/dropdownSections.ts", + "source_location": "L49", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections_buildcomposerdropdownrows", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "buildcomposerdropdownrows()" + }, + { + "label": "buildUserCustomModeDropdownRows()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/dropdownSections.ts", + "source_location": "L64", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections_buildusercustommodedropdownrows", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "buildusercustommodedropdownrows()" + }, + { + "label": "buildTriggerBarDropdownSections()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/dropdownSections.ts", + "source_location": "L86", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections_buildtriggerbardropdownsections", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "buildtriggerbardropdownsections()" + }, + { + "label": "flattenTriggerBarDropdownSections()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/dropdownSections.ts", + "source_location": "L120", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections_flattentriggerbardropdownsections", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "flattentriggerbardropdownsections()" + }, + { + "label": "wrMultiTrigger/index.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_components_wrmultitrigger_index", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "wrmultitrigger/index.ts" + }, + { + "label": "DockedCommandChat.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/docked/DockedCommandChat.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_docked_dockedcommandchat", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "dockedcommandchat.tsx" + }, + { + "label": "DockedCommandChatProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/docked/DockedCommandChat.tsx", + "source_location": "L21", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_docked_dockedcommandchat_dockedcommandchatprops", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "dockedcommandchatprops" + }, + { + "label": "DockedCommandChat()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/docked/DockedCommandChat.tsx", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_docked_dockedcommandchat_dockedcommandchat", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "dockedcommandchat()" + }, + { + "label": "docked/index.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/ui/docked/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_ui_docked_index", + "community": 53, + "community_name": "UI Stores Docked", + "norm_label": "docked/index.ts" + }, + { + "label": "chatFocusLlmPrefixScamWatchdog.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/__tests__/chatFocusLlmPrefixScamWatchdog.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_tests_chatfocusllmprefixscamwatchdog_test", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "chatfocusllmprefixscamwatchdog.test.ts" + }, + { + "label": "customModeLlmPrefixWrChat.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/__tests__/customModeLlmPrefixWrChat.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_tests_custommodellmprefixwrchat_test", + "community": 147, + "community_name": "UI Stores", + "norm_label": "custommodellmprefixwrchat.test.ts" + }, + { + "label": "chatFocusLlmPrefix.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/chatFocusLlmPrefix.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_chatfocusllmprefix", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "chatfocusllmprefix.ts" + }, + { + "label": "DeskLookup", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/chatFocusLlmPrefix.ts", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_chatfocusllmprefix_desklookup", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "desklookup" + }, + { + "label": "loadProjectFromWrDeskLocalStorage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/chatFocusLlmPrefix.ts", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_chatfocusllmprefix_loadprojectfromwrdesklocalstorage", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "loadprojectfromwrdesklocalstorage()" + }, + { + "label": "resolveDescriptionGoals()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/chatFocusLlmPrefix.ts", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_chatfocusllmprefix_resolvedescriptiongoals", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "resolvedescriptiongoals()" + }, + { + "label": "getChatFocusLlmPrefix()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/chatFocusLlmPrefix.ts", + "source_location": "L48", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_chatfocusllmprefix_getchatfocusllmprefix", + "community": 33, + "community_name": "Custommodes UI Services", + "norm_label": "getchatfocusllmprefix()" + }, + { + "label": "extension-chromium/src/utils/contextBlockHash.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/contextBlockHash.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_contextblockhash", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "extension-chromium/src/utils/contextblockhash.ts" + }, + { + "label": "computeBlockHashClient()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/contextBlockHash.ts", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_contextblockhash_computeblockhashclient", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "computeblockhashclient()" + }, + { + "label": "customModeLlmPrefix.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/customModeLlmPrefix.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_custommodellmprefix", + "community": 147, + "community_name": "UI Stores", + "norm_label": "custommodellmprefix.ts" + }, + { + "label": "appendWrChatContextParts()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/customModeLlmPrefix.ts", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_custommodellmprefix_appendwrchatcontextparts", + "community": 147, + "community_name": "UI Stores", + "norm_label": "appendwrchatcontextparts()" + }, + { + "label": "getCustomModeLlmPrefix()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/customModeLlmPrefix.ts", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_custommodellmprefix_getcustommodellmprefix", + "community": 147, + "community_name": "UI Stores", + "norm_label": "getcustommodellmprefix()" + }, + { + "label": "getCustomModeLlmPrefixForWrChat()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/customModeLlmPrefix.ts", + "source_location": "L68", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_custommodellmprefix_getcustommodellmprefixforwrchat", + "community": 147, + "community_name": "UI Stores", + "norm_label": "getcustommodellmprefixforwrchat()" + }, + { + "label": "mergeLlmContextPrefixes()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/customModeLlmPrefix.ts", + "source_location": "L76", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_custommodellmprefix_mergellmcontextprefixes", + "community": 147, + "community_name": "UI Stores", + "norm_label": "mergellmcontextprefixes()" + }, + { + "label": "electronPickDirectory.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/electronPickDirectory.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_electronpickdirectory", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": "electronpickdirectory.ts" + }, + { + "label": "getElectronPickDirectory()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/electronPickDirectory.ts", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_electronpickdirectory_getelectronpickdirectory", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": "getelectronpickdirectory()" + }, + { + "label": "errorMessages.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/errorMessages.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_errormessages", + "community": 392, + "community_name": "Errormessages", + "norm_label": "errormessages.ts" + }, + { + "label": "ERROR_MESSAGES", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/errorMessages.ts", + "source_location": "L8", + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_errormessages_error_messages", + "community": 392, + "community_name": "Errormessages", + "norm_label": "error_messages" + }, + { + "label": "ERROR_PATTERNS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/errorMessages.ts", + "source_location": "L111", + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_errormessages_error_patterns", + "community": 392, + "community_name": "Errormessages", + "norm_label": "error_patterns" + }, + { + "label": "getErrorMessage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/errorMessages.ts", + "source_location": "L127", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_errormessages_geterrormessage", + "community": 392, + "community_name": "Errormessages", + "norm_label": "geterrormessage()" + }, + { + "label": "formatError()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/errorMessages.ts", + "source_location": "L165", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_errormessages_formaterror", + "community": 392, + "community_name": "Errormessages", + "norm_label": "formaterror()" + }, + { + "label": "formatErrorForNotification()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/errorMessages.ts", + "source_location": "L177", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_errormessages_formaterrorfornotification", + "community": 392, + "community_name": "Errormessages", + "norm_label": "formaterrorfornotification()" + }, + { + "label": "isConnectionError()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/errorMessages.ts", + "source_location": "L189", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_errormessages_isconnectionerror", + "community": 392, + "community_name": "Errormessages", + "norm_label": "isconnectionerror()" + }, + { + "label": "requiresUserAction()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/errorMessages.ts", + "source_location": "L196", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_errormessages_requiresuseraction", + "community": 392, + "community_name": "Errormessages", + "norm_label": "requiresuseraction()" + }, + { + "label": "formatWatchdogAlert.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/formatWatchdogAlert.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_formatwatchdogalert", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "formatwatchdogalert.ts" + }, + { + "label": "WatchdogThreat", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/formatWatchdogAlert.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_formatwatchdogalert_watchdogthreat", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "watchdogthreat" + }, + { + "label": "formatSeverityLabel()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/formatWatchdogAlert.ts", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_formatwatchdogalert_formatseveritylabel", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "formatseveritylabel()" + }, + { + "label": "formatThreatBlock()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/formatWatchdogAlert.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_formatwatchdogalert_formatthreatblock", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "formatthreatblock()" + }, + { + "label": "formatWatchdogAlert()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/formatWatchdogAlert.ts", + "source_location": "L50", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_formatwatchdogalert_formatwatchdogalert", + "community": 18, + "community_name": "Dashboard UI Components", + "norm_label": "formatwatchdogalert()" + }, + { + "label": "image-resolve.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/image-resolve.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_image_resolve", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "image-resolve.ts" + }, + { + "label": "isLikelyFilesystemPath()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/image-resolve.ts", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_image_resolve_islikelyfilesystempath", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "islikelyfilesystempath()" + }, + { + "label": "pathToFileUrlString()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/image-resolve.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_image_resolve_pathtofileurlstring", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "pathtofileurlstring()" + }, + { + "label": "blobToDataUrl()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/image-resolve.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_image_resolve_blobtodataurl", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "blobtodataurl()" + }, + { + "label": "resolveViaOrchestrator()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/image-resolve.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_image_resolve_resolveviaorchestrator", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "resolveviaorchestrator()" + }, + { + "label": "toBase64ForOllama()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/image-resolve.ts", + "source_location": "L63", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_image_resolve_tobase64forollama", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "tobase64forollama()" + }, + { + "label": "isPlausibleVisionBase64()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/image-resolve.ts", + "source_location": "L82", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_image_resolve_isplausiblevisionbase64", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "isplausiblevisionbase64()" + }, + { + "label": "resolveImageUrlForBackend()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/image-resolve.ts", + "source_location": "L104", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_image_resolve_resolveimageurlforbackend", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "resolveimageurlforbackend()" + }, + { + "label": "NOTE: do NOT reject on '/' in first 10 chars \u2014 base64 alphabet includes '/' and\u2026", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/utils/image-resolve.ts", + "source_location": "L87", + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_image_resolve_rationale_87", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "note: do not reject on '/' in first 10 chars \u2014 base64 alphabet includes '/' and..." + }, + { + "label": "mergeTaggedTriggersFromHost.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/mergeTaggedTriggersFromHost.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_mergetaggedtriggersfromhost", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "mergetaggedtriggersfromhost.ts" + }, + { + "label": "getLaunchSecret()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/mergeTaggedTriggersFromHost.ts", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_mergetaggedtriggersfromhost_getlaunchsecret", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "getlaunchsecret()" + }, + { + "label": "TaggedTrigger", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/mergeTaggedTriggersFromHost.ts", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_mergetaggedtriggersfromhost_taggedtrigger", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "taggedtrigger" + }, + { + "label": "triggerKey()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/mergeTaggedTriggersFromHost.ts", + "source_location": "L37", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_mergetaggedtriggersfromhost_triggerkey", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "triggerkey()" + }, + { + "label": "triggerTs()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/mergeTaggedTriggersFromHost.ts", + "source_location": "L42", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_mergetaggedtriggersfromhost_triggerts", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "triggerts()" + }, + { + "label": "mergeTaggedTriggersFromHost()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/mergeTaggedTriggersFromHost.ts", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_mergetaggedtriggersfromhost_mergetaggedtriggersfromhost", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "mergetaggedtriggersfromhost()" + }, + { + "label": "normaliseTriggerTag.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/normaliseTriggerTag.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_normalisetriggertag", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": "normalisetriggertag.ts" + }, + { + "label": "normaliseTriggerTag()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/normaliseTriggerTag.ts", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_normalisetriggertag_normalisetriggertag", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": "normalisetriggertag()" + }, + { + "label": "parseWrExpertMarkdown.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/parseWrExpertMarkdown.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_parsewrexpertmarkdown", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "parsewrexpertmarkdown.ts" + }, + { + "label": "WrExpertParsedProfile", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/parseWrExpertMarkdown.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_parsewrexpertmarkdown_wrexpertparsedprofile", + "community": 147, + "community_name": "UI Stores", + "norm_label": "wrexpertparsedprofile" + }, + { + "label": "parseWrExpertMarkdown()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/parseWrExpertMarkdown.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_parsewrexpertmarkdown_parsewrexpertmarkdown", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "parsewrexpertmarkdown()" + }, + { + "label": "sha256HexUtf8()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/parseWrExpertMarkdown.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_parsewrexpertmarkdown_sha256hexutf8", + "community": 35, + "community_name": "UI Addmodewizard Steps", + "norm_label": "sha256hexutf8()" + }, + { + "label": "pickWatchFolderPath.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/pickWatchFolderPath.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_pickwatchfolderpath", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": "pickwatchfolderpath.ts" + }, + { + "label": "pickWatchFolderPath()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/pickWatchFolderPath.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_pickwatchfolderpath_pickwatchfolderpath", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": "pickwatchfolderpath()" + }, + { + "label": "hasNativeFolderPicker()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/pickWatchFolderPath.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_pickwatchfolderpath_hasnativefolderpicker", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": "hasnativefolderpicker()" + }, + { + "label": "prependChatFocusToLastUser.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/prependChatFocusToLastUser.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_prependchatfocustolastuser", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "prependchatfocustolastuser.ts" + }, + { + "label": "prependHiddenContextToLastUserContent()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/prependChatFocusToLastUser.ts", + "source_location": "L2", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_prependchatfocustolastuser_prependhiddencontexttolastusercontent", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "prependhiddencontexttolastusercontent()" + }, + { + "label": "sessionDisplayLabel.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/sessionDisplayLabel.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_sessiondisplaylabel", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "sessiondisplaylabel.ts" + }, + { + "label": "SessionDisplayFields", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/sessionDisplayLabel.ts", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_sessiondisplaylabel_sessiondisplayfields", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "sessiondisplayfields" + }, + { + "label": "nonEmpty()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/sessionDisplayLabel.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_sessiondisplaylabel_nonempty", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "nonempty()" + }, + { + "label": "sessionDisplayLabel()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/sessionDisplayLabel.ts", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_sessiondisplaylabel_sessiondisplaylabel", + "community": 4, + "community_name": "Extension Sidepanel Chat", + "norm_label": "sessiondisplaylabel()" + }, + { + "label": "watchdogDomExtract.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/watchdogDomExtract.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_watchdogdomextract", + "community": 46, + "community_name": "Background", + "norm_label": "watchdogdomextract.ts" + }, + { + "label": "DomSnapshot", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/watchdogDomExtract.ts", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_watchdogdomextract_domsnapshot", + "community": 46, + "community_name": "Background", + "norm_label": "domsnapshot" + }, + { + "label": "isExcludedUrl()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/watchdogDomExtract.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_watchdogdomextract_isexcludedurl", + "community": 46, + "community_name": "Background", + "norm_label": "isexcludedurl()" + }, + { + "label": "sortTabsForWatchdog()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/watchdogDomExtract.ts", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_watchdogdomextract_sorttabsforwatchdog", + "community": 46, + "community_name": "Background", + "norm_label": "sorttabsforwatchdog()" + }, + { + "label": "stripDataUris()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/watchdogDomExtract.ts", + "source_location": "L57", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_watchdogdomextract_stripdatauris", + "community": 46, + "community_name": "Background", + "norm_label": "stripdatauris()" + }, + { + "label": "stripScriptStyleBlocks()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/watchdogDomExtract.ts", + "source_location": "L62", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_watchdogdomextract_stripscriptstyleblocks", + "community": 46, + "community_name": "Background", + "norm_label": "stripscriptstyleblocks()" + }, + { + "label": "collapseWhitespace()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/watchdogDomExtract.ts", + "source_location": "L70", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_watchdogdomextract_collapsewhitespace", + "community": 46, + "community_name": "Background", + "norm_label": "collapsewhitespace()" + }, + { + "label": "sanitizeDomText()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/watchdogDomExtract.ts", + "source_location": "L74", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_watchdogdomextract_sanitizedomtext", + "community": 46, + "community_name": "Background", + "norm_label": "sanitizedomtext()" + }, + { + "label": "distributeTotalBudget()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/watchdogDomExtract.ts", + "source_location": "L84", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_watchdogdomextract_distributetotalbudget", + "community": 46, + "community_name": "Background", + "norm_label": "distributetotalbudget()" + }, + { + "label": "extractAllTabsDom()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/utils/watchdogDomExtract.ts", + "source_location": "L99", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_utils_watchdogdomextract_extractalltabsdom", + "community": 46, + "community_name": "Background", + "norm_label": "extractalltabsdom()" + }, + { + "label": "UnlockView.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/UnlockView.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_unlockview", + "community": 73, + "community_name": "Vault #73", + "norm_label": "unlockview.tsx" + }, + { + "label": "UnlockViewProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/UnlockView.tsx", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_unlockview_unlockviewprops", + "community": 73, + "community_name": "Vault #73", + "norm_label": "unlockviewprops" + }, + { + "label": "UnlockView()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/UnlockView.tsx", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_unlockview_unlockview", + "community": 73, + "community_name": "Vault #73", + "norm_label": "unlockview()" + }, + { + "label": "VaultUI.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/VaultUI.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_vaultui", + "community": 73, + "community_name": "Vault #73", + "norm_label": "vaultui.tsx" + }, + { + "label": "VaultUI()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/VaultUI.tsx", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_vaultui_vaultui", + "community": 73, + "community_name": "Vault #73", + "norm_label": "vaultui()" + }, + { + "label": "browser-safe-imports.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/__tests__/browser-safe-imports.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_tests_browser_safe_imports_test", + "community": 535, + "community_name": "Vault #535", + "norm_label": "browser-safe-imports.test.ts" + }, + { + "label": "VAULT_DIR", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/__tests__/browser-safe-imports.test.ts", + "source_location": "L18", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_tests_browser_safe_imports_test_vault_dir", + "community": 535, + "community_name": "Vault #535", + "norm_label": "vault_dir" + }, + { + "label": "BROWSER_EXECUTED_FILES", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/__tests__/browser-safe-imports.test.ts", + "source_location": "L20", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_tests_browser_safe_imports_test_browser_executed_files", + "community": 535, + "community_name": "Vault #535", + "norm_label": "browser_executed_files" + }, + { + "label": "api.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_api", + "community": 73, + "community_name": "Vault #73", + "norm_label": "api.ts" + }, + { + "label": "_storeVSBT()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_api_storevsbt", + "community": 73, + "community_name": "Vault #73", + "norm_label": "_storevsbt()" + }, + { + "label": "_clearVSBT()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_api_clearvsbt", + "community": 73, + "community_name": "Vault #73", + "norm_label": "_clearvsbt()" + }, + { + "label": "getVaultSessionToken()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_api_getvaultsessiontoken", + "community": 73, + "community_name": "Vault #73", + "norm_label": "getvaultsessiontoken()" + }, + { + "label": "debugLogs", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L42", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_api_debuglogs", + "community": 73, + "community_name": "Vault #73", + "norm_label": "debuglogs" + }, + { + "label": "addLog()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_api_addlog", + "community": 73, + "community_name": "Vault #73", + "norm_label": "addlog()" + }, + { + "label": "apiCall()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L65", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_api_apicall", + "community": 73, + "community_name": "Vault #73", + "norm_label": "apicall()" + }, + { + "label": "checkHealth()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L150", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_api_checkhealth", + "community": 73, + "community_name": "Vault #73", + "norm_label": "checkhealth()" + }, + { + "label": "connectVault()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L163", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_api_connectvault", + "community": 73, + "community_name": "Vault #73", + "norm_label": "connectvault()" + }, + { + "label": "disconnectVault()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L171", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_api_disconnectvault", + "community": 73, + "community_name": "Vault #73", + "norm_label": "disconnectvault()" + }, + { + "label": "createVault()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L179", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_api_createvault", + "community": 73, + "community_name": "Vault #73", + "norm_label": "createvault()" + }, + { + "label": "deleteVault()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L187", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_api_deletevault", + "community": 73, + "community_name": "Vault #73", + "norm_label": "deletevault()" + }, + { + "label": "unlockVault()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L191", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_api_unlockvault", + "community": 73, + "community_name": "Vault #73", + "norm_label": "unlockvault()" + }, + { + "label": "lockVault()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L198", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_api_lockvault", + "community": 73, + "community_name": "Vault #73", + "norm_label": "lockvault()" + }, + { + "label": "getVaultStatus()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L203", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_api_getvaultstatus", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "getvaultstatus()" + }, + { + "label": "createContainer()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L222", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_api_createcontainer", + "community": 73, + "community_name": "Vault #73", + "norm_label": "createcontainer()" + }, + { + "label": "updateContainer()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L226", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_api_updatecontainer", + "community": 73, + "community_name": "Vault #73", + "norm_label": "updatecontainer()" + }, + { + "label": "deleteContainer()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L230", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_api_deletecontainer", + "community": 73, + "community_name": "Vault #73", + "norm_label": "deletecontainer()" + }, + { + "label": "listContainers()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L234", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_api_listcontainers", + "community": 73, + "community_name": "Vault #73", + "norm_label": "listcontainers()" + }, + { + "label": "createItem()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L248", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_api_createitem", + "community": 73, + "community_name": "Vault #73", + "norm_label": "createitem()" + }, + { + "label": "updateItem()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L259", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_api_updateitem", + "community": 73, + "community_name": "Vault #73", + "norm_label": "updateitem()" + }, + { + "label": "deleteItem()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L263", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_api_deleteitem", + "community": 73, + "community_name": "Vault #73", + "norm_label": "deleteitem()" + }, + { + "label": "getItem()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L267", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_api_getitem", + "community": 73, + "community_name": "Vault #73", + "norm_label": "getitem()" + }, + { + "label": "FillProjection", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L284", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_api_fillprojection", + "community": 73, + "community_name": "Vault #73", + "norm_label": "fillprojection" + }, + { + "label": "getItemForFill()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L292", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_api_getitemforfill", + "community": 73, + "community_name": "Vault #73", + "norm_label": "getitemforfill()" + }, + { + "label": "listItems()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L304", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_api_listitems", + "community": 73, + "community_name": "Vault #73", + "norm_label": "listitems()" + }, + { + "label": "IndexProjection", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L332", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_api_indexprojection", + "community": 73, + "community_name": "Vault #73", + "norm_label": "indexprojection" + }, + { + "label": "listItemsForIndex()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L342", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_api_listitemsforindex", + "community": 73, + "community_name": "Vault #73", + "norm_label": "listitemsforindex()" + }, + { + "label": "searchItems()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L366", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_api_searchitems", + "community": 73, + "community_name": "Vault #73", + "norm_label": "searchitems()" + }, + { + "label": "getAutofillCandidates()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L371", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_api_getautofillcandidates", + "community": 73, + "community_name": "Vault #73", + "norm_label": "getautofillcandidates()" + }, + { + "label": "VaultDocumentMeta", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L380", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_api_vaultdocumentmeta", + "community": 73, + "community_name": "Vault #73", + "norm_label": "vaultdocumentmeta" + }, + { + "label": "DocumentImportResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L391", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_api_documentimportresult", + "community": 73, + "community_name": "Vault #73", + "norm_label": "documentimportresult" + }, + { + "label": "uploadDocument()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L402", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_api_uploaddocument", + "community": 73, + "community_name": "Vault #73", + "norm_label": "uploaddocument()" + }, + { + "label": "getDocument()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L414", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_api_getdocument", + "community": 73, + "community_name": "Vault #73", + "norm_label": "getdocument()" + }, + { + "label": "listDocuments()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L423", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_api_listdocuments", + "community": 73, + "community_name": "Vault #73", + "norm_label": "listdocuments()" + }, + { + "label": "deleteDocument()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L435", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_api_deletedocument", + "community": 73, + "community_name": "Vault #73", + "norm_label": "deletedocument()" + }, + { + "label": "updateDocument()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L442", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_api_updatedocument", + "community": 73, + "community_name": "Vault #73", + "norm_label": "updatedocument()" + }, + { + "label": "getItemMeta()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L456", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_api_getitemmeta", + "community": 73, + "community_name": "Vault #73", + "norm_label": "getitemmeta()" + }, + { + "label": "setItemMeta()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L463", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_api_setitemmeta", + "community": 73, + "community_name": "Vault #73", + "norm_label": "setitemmeta()" + }, + { + "label": "evaluateHandshakeAttach()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L474", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_api_evaluatehandshakeattach", + "community": 73, + "community_name": "Vault #73", + "norm_label": "evaluatehandshakeattach()" + }, + { + "label": "updateSettings()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L485", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_api_updatesettings", + "community": 73, + "community_name": "Vault #73", + "norm_label": "updatesettings()" + }, + { + "label": "getSettings()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L489", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_api_getsettings", + "community": 73, + "community_name": "Vault #73", + "norm_label": "getsettings()" + }, + { + "label": "exportCSV()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L493", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_api_exportcsv", + "community": 73, + "community_name": "Vault #73", + "norm_label": "exportcsv()" + }, + { + "label": "importCSV()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L498", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_api_importcsv", + "community": 73, + "community_name": "Vault #73", + "norm_label": "importcsv()" + }, + { + "label": "acceptance-criteria.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/acceptance-criteria.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_acceptance_criteria", + "community": 607, + "community_name": "Vault Autofill #607", + "norm_label": "acceptance-criteria.ts" + }, + { + "label": "audit-retention-export.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/audit-retention-export.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_audit_retention_export_test", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "audit-retention-export.test.ts" + }, + { + "label": "PII", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/audit-retention-export.test.ts", + "source_location": "L30", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_audit_retention_export_test_pii", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "pii" + }, + { + "label": "fillBuffer()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/audit-retention-export.test.ts", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_audit_retention_export_test_fillbuffer", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "fillbuffer()" + }, + { + "label": "constructor()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/audit-retention-export.test.ts", + "source_location": "L119", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_audit_retention_export_test_constructor", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "constructor()" + }, + { + "label": "toISOString()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/audit-retention-export.test.ts", + "source_location": "L123", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_audit_retention_export_test_toisostring", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "toisostring()" + }, + { + "label": "now()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/audit-retention-export.test.ts", + "source_location": "L124", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_audit_retention_export_test_now", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "now()" + }, + { + "label": "background-sender-gate.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/background-sender-gate.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test", + "community": 244, + "community_name": "Vault Autofill #244", + "norm_label": "background-sender-gate.test.ts" + }, + { + "label": "shouldRejectSender()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/background-sender-gate.test.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test_shouldrejectsender", + "community": 244, + "community_name": "Vault Autofill #244", + "norm_label": "shouldrejectsender()" + }, + { + "label": "isRateLimited()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/background-sender-gate.test.ts", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test_isratelimited", + "community": 244, + "community_name": "Vault Autofill #244", + "norm_label": "isratelimited()" + }, + { + "label": "validateWebMcpParams()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/background-sender-gate.test.ts", + "source_location": "L62", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test_validatewebmcpparams", + "community": 244, + "community_name": "Vault Autofill #244", + "norm_label": "validatewebmcpparams()" + }, + { + "label": "isRestrictedUrl()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/background-sender-gate.test.ts", + "source_location": "L81", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test_isrestrictedurl", + "community": 244, + "community_name": "Vault Autofill #244", + "norm_label": "isrestrictedurl()" + }, + { + "label": "checkGlobalLimit()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/background-sender-gate.test.ts", + "source_location": "L262", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test_checkgloballimit", + "community": 244, + "community_name": "Vault Autofill #244", + "norm_label": "checkgloballimit()" + }, + { + "label": "CircuitBreakerState", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/background-sender-gate.test.ts", + "source_location": "L288", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test_circuitbreakerstate", + "community": 244, + "community_name": "Vault Autofill #244", + "norm_label": "circuitbreakerstate" + }, + { + "label": "checkCircuitBreaker()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/background-sender-gate.test.ts", + "source_location": "L297", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test_checkcircuitbreaker", + "community": 244, + "community_name": "Vault Autofill #244", + "norm_label": "checkcircuitbreaker()" + }, + { + "label": "recordReject()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/background-sender-gate.test.ts", + "source_location": "L317", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test_recordreject", + "community": 244, + "community_name": "Vault Autofill #244", + "norm_label": "recordreject()" + }, + { + "label": "AUDIT_EXPORT_ALLOWED_PAGES", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/background-sender-gate.test.ts", + "source_location": "L688", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test_audit_export_allowed_pages", + "community": 244, + "community_name": "Vault Autofill #244", + "norm_label": "audit_export_allowed_pages" + }, + { + "label": "isExtensionUiContext()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/background-sender-gate.test.ts", + "source_location": "L699", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test_isextensionuicontext", + "community": 244, + "community_name": "Vault Autofill #244", + "norm_label": "isextensionuicontext()" + }, + { + "label": "isVaultUnlocked()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/background-sender-gate.test.ts", + "source_location": "L723", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test_isvaultunlocked", + "community": 244, + "community_name": "Vault Autofill #244", + "norm_label": "isvaultunlocked()" + }, + { + "label": "simulateExportHandler()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/background-sender-gate.test.ts", + "source_location": "L740", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test_simulateexporthandler", + "community": 244, + "community_name": "Vault Autofill #244", + "norm_label": "simulateexporthandler()" + }, + { + "label": "VALID_UI_SENDER", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/background-sender-gate.test.ts", + "source_location": "L800", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test_valid_ui_sender", + "community": 244, + "community_name": "Vault Autofill #244", + "norm_label": "valid_ui_sender" + }, + { + "label": "VALID_SIDEPANEL_SENDER", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/background-sender-gate.test.ts", + "source_location": "L801", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test_valid_sidepanel_sender", + "community": 244, + "community_name": "Vault Autofill #244", + "norm_label": "valid_sidepanel_sender" + }, + { + "label": "VALID_EXPORT", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/background-sender-gate.test.ts", + "source_location": "L803", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test_valid_export", + "community": 244, + "community_name": "Vault Autofill #244", + "norm_label": "valid_export" + }, + { + "label": "safePositiveInt()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/background-sender-gate.test.ts", + "source_location": "L1475", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test_safepositiveint", + "community": 244, + "community_name": "Vault Autofill #244", + "norm_label": "safepositiveint()" + }, + { + "label": "BG_WEBMCP_ERROR_CODES_LOCAL", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/background-sender-gate.test.ts", + "source_location": "L1603", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test_bg_webmcp_error_codes_local", + "community": 244, + "community_name": "Vault Autofill #244", + "norm_label": "bg_webmcp_error_codes_local" + }, + { + "label": "ALL_WEBMCP_ERROR_CODES_LOCAL", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/background-sender-gate.test.ts", + "source_location": "L1607", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test_all_webmcp_error_codes_local", + "community": 244, + "community_name": "Vault Autofill #244", + "norm_label": "all_webmcp_error_codes_local" + }, + { + "label": "isWebMcpResultV1Local()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/background-sender-gate.test.ts", + "source_location": "L1619", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test_iswebmcpresultv1local", + "community": 244, + "community_name": "Vault Autofill #244", + "norm_label": "iswebmcpresultv1local()" + }, + { + "label": "bgErr()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/background-sender-gate.test.ts", + "source_location": "L1647", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test_bgerr", + "community": 244, + "community_name": "Vault Autofill #244", + "norm_label": "bgerr()" + }, + { + "label": "datavault-classifier.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/datavault-classifier.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_datavault_classifier_test", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "datavault-classifier.test.ts" + }, + { + "label": "createInput()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/datavault-classifier.test.ts", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_datavault_classifier_test_createinput", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "createinput()" + }, + { + "label": "createSelect()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/datavault-classifier.test.ts", + "source_location": "L59", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_datavault_classifier_test_createselect", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "createselect()" + }, + { + "label": "datavault-improvements.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/datavault-improvements.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_datavault_improvements_test", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "datavault-improvements.test.ts" + }, + { + "label": "createInput()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/datavault-improvements.test.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_datavault_improvements_test_createinput", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "createinput()" + }, + { + "label": "e2e-autofill.spec.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-autofill.spec.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_e2e_autofill_spec", + "community": 393, + "community_name": "Vault Autofill #393", + "norm_label": "e2e-autofill.spec.ts" + }, + { + "label": "EXTENSION_PATH", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-autofill.spec.ts", + "source_location": "L31", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_e2e_autofill_spec_extension_path", + "community": 393, + "community_name": "Vault Autofill #393", + "norm_label": "extension_path" + }, + { + "label": "waitForShadowHost()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-autofill.spec.ts", + "source_location": "L37", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_e2e_autofill_spec_waitforshadowhost", + "community": 393, + "community_name": "Vault Autofill #393", + "norm_label": "waitforshadowhost()" + }, + { + "label": "isOverlayVisible()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-autofill.spec.ts", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_e2e_autofill_spec_isoverlayvisible", + "community": 393, + "community_name": "Vault Autofill #393", + "norm_label": "isoverlayvisible()" + }, + { + "label": "isQuickSelectVisible()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-autofill.spec.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_e2e_autofill_spec_isquickselectvisible", + "community": 393, + "community_name": "Vault Autofill #393", + "norm_label": "isquickselectvisible()" + }, + { + "label": "isTriggerIconVisible()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-autofill.spec.ts", + "source_location": "L62", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_e2e_autofill_spec_istriggericonvisible", + "community": 393, + "community_name": "Vault Autofill #393", + "norm_label": "istriggericonvisible()" + }, + { + "label": "isSaveBarVisible()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-autofill.spec.ts", + "source_location": "L71", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_e2e_autofill_spec_issavebarvisible", + "community": 393, + "community_name": "Vault Autofill #393", + "norm_label": "issavebarvisible()" + }, + { + "label": "triggerQuickSelect()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-autofill.spec.ts", + "source_location": "L80", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_e2e_autofill_spec_triggerquickselect", + "community": 393, + "community_name": "Vault Autofill #393", + "norm_label": "triggerquickselect()" + }, + { + "label": "e2e-security-regression.spec.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-security-regression.spec.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_e2e_security_regression_spec", + "community": 491, + "community_name": "Vault Autofill #491", + "norm_label": "e2e-security-regression.spec.ts" + }, + { + "label": "EXTENSION_PATH", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-security-regression.spec.ts", + "source_location": "L35", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_e2e_security_regression_spec_extension_path", + "community": 491, + "community_name": "Vault Autofill #491", + "norm_label": "extension_path" + }, + { + "label": "waitForShadowHost()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-security-regression.spec.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_e2e_security_regression_spec_waitforshadowhost", + "community": 491, + "community_name": "Vault Autofill #491", + "norm_label": "waitforshadowhost()" + }, + { + "label": "isOverlayVisible()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-security-regression.spec.ts", + "source_location": "L49", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_e2e_security_regression_spec_isoverlayvisible", + "community": 491, + "community_name": "Vault Autofill #491", + "norm_label": "isoverlayvisible()" + }, + { + "label": "e2e-webmcp-no-write.spec.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-webmcp-no-write.spec.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_no_write_spec", + "community": 308, + "community_name": "Vault Autofill #308", + "norm_label": "e2e-webmcp-no-write.spec.ts" + }, + { + "label": "FIXTURE_DIR", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-webmcp-no-write.spec.ts", + "source_location": "L46", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_no_write_spec_fixture_dir", + "community": 308, + "community_name": "Vault Autofill #308", + "norm_label": "fixture_dir" + }, + { + "label": "EXTENSION_PATH", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-webmcp-no-write.spec.ts", + "source_location": "L47", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_no_write_spec_extension_path", + "community": 308, + "community_name": "Vault Autofill #308", + "norm_label": "extension_path" + }, + { + "label": "FIXTURES", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-webmcp-no-write.spec.ts", + "source_location": "L49", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_no_write_spec_fixtures", + "community": 308, + "community_name": "Vault Autofill #308", + "norm_label": "fixtures" + }, + { + "label": "injectWriteDetector()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-webmcp-no-write.spec.ts", + "source_location": "L74", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_no_write_spec_injectwritedetector", + "community": 308, + "community_name": "Vault Autofill #308", + "norm_label": "injectwritedetector()" + }, + { + "label": "wasWriteDetected()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-webmcp-no-write.spec.ts", + "source_location": "L127", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_no_write_spec_waswritedetected", + "community": 308, + "community_name": "Vault Autofill #308", + "norm_label": "waswritedetected()" + }, + { + "label": "getWriteDetails()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-webmcp-no-write.spec.ts", + "source_location": "L132", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_no_write_spec_getwritedetails", + "community": 308, + "community_name": "Vault Autofill #308", + "norm_label": "getwritedetails()" + }, + { + "label": "teardownWriteDetector()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-webmcp-no-write.spec.ts", + "source_location": "L137", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_no_write_spec_teardownwritedetector", + "community": 308, + "community_name": "Vault Autofill #308", + "norm_label": "teardownwritedetector()" + }, + { + "label": "waitForOverlayHost()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-webmcp-no-write.spec.ts", + "source_location": "L151", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_no_write_spec_waitforoverlayhost", + "community": 308, + "community_name": "Vault Autofill #308", + "norm_label": "waitforoverlayhost()" + }, + { + "label": "overlayHostHasRect()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-webmcp-no-write.spec.ts", + "source_location": "L163", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_no_write_spec_overlayhosthasrect", + "community": 308, + "community_name": "Vault Autofill #308", + "norm_label": "overlayhosthasrect()" + }, + { + "label": "getAllInputValues()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-webmcp-no-write.spec.ts", + "source_location": "L173", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_no_write_spec_getallinputvalues", + "community": 308, + "community_name": "Vault Autofill #308", + "norm_label": "getallinputvalues()" + }, + { + "label": "assertNoInputValuesChanged()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-webmcp-no-write.spec.ts", + "source_location": "L186", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_no_write_spec_assertnoinputvalueschanged", + "community": 308, + "community_name": "Vault Autofill #308", + "norm_label": "assertnoinputvalueschanged()" + }, + { + "label": "checkAttackerWriteInterceptor()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-webmcp-no-write.spec.ts", + "source_location": "L199", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_no_write_spec_checkattackerwriteinterceptor", + "community": 308, + "community_name": "Vault Autofill #308", + "norm_label": "checkattackerwriteinterceptor()" + }, + { + "label": "injectWebMcpPreviewRequest()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-webmcp-no-write.spec.ts", + "source_location": "L213", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_no_write_spec_injectwebmcppreviewrequest", + "community": 308, + "community_name": "Vault Autofill #308", + "norm_label": "injectwebmcppreviewrequest()" + }, + { + "label": "dispatchSyntheticAttacks()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-webmcp-no-write.spec.ts", + "source_location": "L246", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_no_write_spec_dispatchsyntheticattacks", + "community": 308, + "community_name": "Vault Autofill #308", + "norm_label": "dispatchsyntheticattacks()" + }, + { + "label": "e2e-webmcp-preview.spec.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-webmcp-preview.spec.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_preview_spec", + "community": 394, + "community_name": "Vault Autofill #394", + "norm_label": "e2e-webmcp-preview.spec.ts" + }, + { + "label": "FIXTURE_DIR", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-webmcp-preview.spec.ts", + "source_location": "L38", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_preview_spec_fixture_dir", + "community": 394, + "community_name": "Vault Autofill #394", + "norm_label": "fixture_dir" + }, + { + "label": "FIXTURE_FILE", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-webmcp-preview.spec.ts", + "source_location": "L39", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_preview_spec_fixture_file", + "community": 394, + "community_name": "Vault Autofill #394", + "norm_label": "fixture_file" + }, + { + "label": "EXTENSION_PATH", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-webmcp-preview.spec.ts", + "source_location": "L40", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_preview_spec_extension_path", + "community": 394, + "community_name": "Vault Autofill #394", + "norm_label": "extension_path" + }, + { + "label": "waitForOverlayHost()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-webmcp-preview.spec.ts", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_preview_spec_waitforoverlayhost", + "community": 394, + "community_name": "Vault Autofill #394", + "norm_label": "waitforoverlayhost()" + }, + { + "label": "overlayHostHasRect()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-webmcp-preview.spec.ts", + "source_location": "L71", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_preview_spec_overlayhosthasrect", + "community": 394, + "community_name": "Vault Autofill #394", + "norm_label": "overlayhosthasrect()" + }, + { + "label": "getInputValue()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-webmcp-preview.spec.ts", + "source_location": "L83", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_preview_spec_getinputvalue", + "community": 394, + "community_name": "Vault Autofill #394", + "norm_label": "getinputvalue()" + }, + { + "label": "injectWebMcpPreviewRequest()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-webmcp-preview.spec.ts", + "source_location": "L101", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_preview_spec_injectwebmcppreviewrequest", + "community": 394, + "community_name": "Vault Autofill #394", + "norm_label": "injectwebmcppreviewrequest()" + }, + { + "label": "form-intent.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/form-intent.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_form_intent_test", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "form-intent.test.ts" + }, + { + "label": "createForm()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/form-intent.test.ts", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_form_intent_test_createform", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "createform()" + }, + { + "label": "filterPasswordCandidates()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/form-intent.test.ts", + "source_location": "L263", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_form_intent_test_filterpasswordcandidates", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "filterpasswordcandidates()" + }, + { + "label": "shouldSkipDueToMismatch()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/form-intent.test.ts", + "source_location": "L317", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_form_intent_test_shouldskipduetomismatch", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "shouldskipduetomismatch()" + }, + { + "label": "autofill/__tests__/hardening.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/hardening.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_hardening_test", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "autofill/__tests__/hardening.test.ts" + }, + { + "label": "makeInput()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/hardening.test.ts", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_hardening_test_makeinput", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "makeinput()" + }, + { + "label": "makeProfile()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/hardening.test.ts", + "source_location": "L69", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_hardening_test_makeprofile", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "makeprofile()" + }, + { + "label": "log-redaction-proof.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/log-redaction-proof.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_log_redaction_proof_test", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "log-redaction-proof.test.ts" + }, + { + "label": "SENSITIVE", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/log-redaction-proof.test.ts", + "source_location": "L46", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_log_redaction_proof_test_sensitive", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "sensitive" + }, + { + "label": "meta-sanitization.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/meta-sanitization.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_meta_sanitization_test", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "meta-sanitization.test.ts" + }, + { + "label": "PII", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/meta-sanitization.test.ts", + "source_location": "L22", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_meta_sanitization_test_pii", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "pii" + }, + { + "label": "reason()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/meta-sanitization.test.ts", + "source_location": "L310", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_meta_sanitization_test_reason", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "reason()" + }, + { + "label": "get()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/meta-sanitization.test.ts", + "source_location": "L475", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_meta_sanitization_test_get", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "get()" + }, + { + "label": "ownKeys()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/meta-sanitization.test.ts", + "source_location": "L476", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_meta_sanitization_test_ownkeys", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "ownkeys()" + }, + { + "label": "overlay-lifecycle.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/overlay-lifecycle.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_overlay_lifecycle_test", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "overlay-lifecycle.test.ts" + }, + { + "label": "get()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/overlay-lifecycle.test.ts", + "source_location": "L51", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_overlay_lifecycle_test_get", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "get()" + }, + { + "label": "set()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/overlay-lifecycle.test.ts", + "source_location": "L52", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_overlay_lifecycle_test_set", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "set()" + }, + { + "label": "makeSession()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/overlay-lifecycle.test.ts", + "source_location": "L73", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_overlay_lifecycle_test_makesession", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "makesession()" + }, + { + "label": "qso-engine.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-engine.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_qso_engine_test", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "qso-engine.test.ts" + }, + { + "label": "makeInput()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-engine.test.ts", + "source_location": "L128", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_qso_engine_test_makeinput", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "makeinput()" + }, + { + "label": "makeButton()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-engine.test.ts", + "source_location": "L136", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_qso_engine_test_makebutton", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "makebutton()" + }, + { + "label": "makeForm()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-engine.test.ts", + "source_location": "L145", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_qso_engine_test_makeform", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "makeform()" + }, + { + "label": "makeVaultItem()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-engine.test.ts", + "source_location": "L151", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_qso_engine_test_makevaultitem", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "makevaultitem()" + }, + { + "label": "makeScanResult()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-engine.test.ts", + "source_location": "L165", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_qso_engine_test_makescanresult", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "makescanresult()" + }, + { + "label": "assertNoPII()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-engine.test.ts", + "source_location": "L735", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_qso_engine_test_assertnopii", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "assertnopii()" + }, + { + "label": "qso-isolation.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-isolation.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_qso_isolation_test", + "community": 608, + "community_name": "Vault Autofill #608", + "norm_label": "qso-isolation.test.ts" + }, + { + "label": "qso-remap.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-remap.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_qso_remap_test", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "qso-remap.test.ts" + }, + { + "label": "makeInput()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-remap.test.ts", + "source_location": "L159", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_qso_remap_test_makeinput", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "makeinput()" + }, + { + "label": "makeButton()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-remap.test.ts", + "source_location": "L168", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_qso_remap_test_makebutton", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "makebutton()" + }, + { + "label": "makeForm()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-remap.test.ts", + "source_location": "L178", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_qso_remap_test_makeform", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "makeform()" + }, + { + "label": "makeLoginForm()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-remap.test.ts", + "source_location": "L184", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_qso_remap_test_makeloginform", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "makeloginform()" + }, + { + "label": "qso-state-matrix.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-state-matrix.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_qso_state_matrix_test", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "qso-state-matrix.test.ts" + }, + { + "label": "scan-dos-caps.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/scan-dos-caps.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_scan_dos_caps_test", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "scan-dos-caps.test.ts" + }, + { + "label": "DEFAULT_TOGGLES", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/scan-dos-caps.test.ts", + "source_location": "L53", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_scan_dos_caps_test_default_toggles", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "default_toggles" + }, + { + "label": "createInputs()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/scan-dos-caps.test.ts", + "source_location": "L60", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_scan_dos_caps_test_createinputs", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "createinputs()" + }, + { + "label": "createMixedDOM()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/scan-dos-caps.test.ts", + "source_location": "L85", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_scan_dos_caps_test_createmixeddom", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "createmixeddom()" + }, + { + "label": "__tests__/security-regression.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/security-regression.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_security_regression_test", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "__tests__/security-regression.test.ts" + }, + { + "label": "makeInput()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/security-regression.test.ts", + "source_location": "L70", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_security_regression_test_makeinput", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "makeinput()" + }, + { + "label": "makeProfile()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/security-regression.test.ts", + "source_location": "L82", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_security_regression_test_makeprofile", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "makeprofile()" + }, + { + "label": "NOTE: buildAAD is in crypto.ts. We import the originPolicy version", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/security-regression.test.ts", + "source_location": "L464", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_security_regression_test_rationale_464", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "note: buildaad is in crypto.ts. we import the originpolicy version" + }, + { + "label": "submit-guard.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/submit-guard.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_submit_guard_test", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "submit-guard.test.ts" + }, + { + "label": "makeForm()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/submit-guard.test.ts", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_submit_guard_test_makeform", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "makeform()" + }, + { + "label": "makeSubmitButton()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/submit-guard.test.ts", + "source_location": "L62", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_submit_guard_test_makesubmitbutton", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "makesubmitbutton()" + }, + { + "label": "makeDefaultInput()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/submit-guard.test.ts", + "source_location": "L75", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_submit_guard_test_makedefaultinput", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "makedefaultinput()" + }, + { + "label": "unit-test-index.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/unit-test-index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_unit_test_index", + "community": 609, + "community_name": "Vault Autofill #609", + "norm_label": "unit-test-index.ts" + }, + { + "label": "webmcp-isolation.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/webmcp-isolation.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_webmcp_isolation_test", + "community": 355, + "community_name": "Vault Autofill #355", + "norm_label": "webmcp-isolation.test.ts" + }, + { + "label": "AUTOFILL_DIR", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/webmcp-isolation.test.ts", + "source_location": "L30", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_webmcp_isolation_test_autofill_dir", + "community": 355, + "community_name": "Vault Autofill #355", + "norm_label": "autofill_dir" + }, + { + "label": "ADAPTER_PATH", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/webmcp-isolation.test.ts", + "source_location": "L31", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_webmcp_isolation_test_adapter_path", + "community": 355, + "community_name": "Vault Autofill #355", + "norm_label": "adapter_path" + }, + { + "label": "adapterSource", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/webmcp-isolation.test.ts", + "source_location": "L32", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_webmcp_isolation_test_adaptersource", + "community": 355, + "community_name": "Vault Autofill #355", + "norm_label": "adaptersource" + }, + { + "label": "extractImports()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/webmcp-isolation.test.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_webmcp_isolation_test_extractimports", + "community": 355, + "community_name": "Vault Autofill #355", + "norm_label": "extractimports()" + }, + { + "label": "moduleName()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/webmcp-isolation.test.ts", + "source_location": "L65", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_webmcp_isolation_test_modulename", + "community": 355, + "community_name": "Vault Autofill #355", + "norm_label": "modulename()" + }, + { + "label": "allImports", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/webmcp-isolation.test.ts", + "source_location": "L70", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_webmcp_isolation_test_allimports", + "community": 355, + "community_name": "Vault Autofill #355", + "norm_label": "allimports" + }, + { + "label": "valueImports", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/webmcp-isolation.test.ts", + "source_location": "L71", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_webmcp_isolation_test_valueimports", + "community": 355, + "community_name": "Vault Autofill #355", + "norm_label": "valueimports" + }, + { + "label": "allSpecifiers", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/webmcp-isolation.test.ts", + "source_location": "L72", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_webmcp_isolation_test_allspecifiers", + "community": 355, + "community_name": "Vault Autofill #355", + "norm_label": "allspecifiers" + }, + { + "label": "valueSpecifiers", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/webmcp-isolation.test.ts", + "source_location": "L73", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_webmcp_isolation_test_valuespecifiers", + "community": 355, + "community_name": "Vault Autofill #355", + "norm_label": "valuespecifiers" + }, + { + "label": "stripComments()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/webmcp-isolation.test.ts", + "source_location": "L297", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_webmcp_isolation_test_stripcomments", + "community": 355, + "community_name": "Vault Autofill #355", + "norm_label": "stripcomments()" + }, + { + "label": "writes-kill-switch.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/writes-kill-switch.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_writes_kill_switch_test", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "writes-kill-switch.test.ts" + }, + { + "label": "makeTestSession()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/writes-kill-switch.test.ts", + "source_location": "L77", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tests_writes_kill_switch_test_maketestsession", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "maketestsession()" + }, + { + "label": "autofillOrchestrator.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "autofillorchestrator.ts" + }, + { + "label": "_matchedItems", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L126", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_matcheditems", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "_matcheditems" + }, + { + "label": "initAutofill()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L141", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_initautofill", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "initautofill()" + }, + { + "label": "teardownAutofill()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L200", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_teardownautofill", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "teardownautofill()" + }, + { + "label": "forceScan()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L237", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_forcescan", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "forcescan()" + }, + { + "label": "getLastScan()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L246", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_getlastscan", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "getlastscan()" + }, + { + "label": "handleToggleChange()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L255", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handletogglechange", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "handletogglechange()" + }, + { + "label": "updateQsoAsync()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L304", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_updateqsoasync", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "updateqsoasync()" + }, + { + "label": "checkDomainMatchesAsync()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L346", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_checkdomainmatchesasync", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "checkdomainmatchesasync()" + }, + { + "label": "findQsoAnchor()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L374", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_findqsoanchor", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "findqsoanchor()" + }, + { + "label": "handleQsoIconClick()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L393", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handleqsoiconclick", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "handleqsoiconclick()" + }, + { + "label": "handleSPANavigation()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L435", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handlespanavigation", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "handlespanavigation()" + }, + { + "label": "PASSWORD_FIELD_KINDS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L469", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_password_field_kinds", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "password_field_kinds" + }, + { + "label": "ICON_SUPPRESSED_CONTEXTS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L477", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_icon_suppressed_contexts", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "icon_suppressed_contexts" + }, + { + "label": "filterPasswordCandidates()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L480", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_filterpasswordcandidates", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "filterpasswordcandidates()" + }, + { + "label": "runScan()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L488", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_runscan", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "runscan()" + }, + { + "label": "startObserver()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L530", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_startobserver", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "startobserver()" + }, + { + "label": "handleFieldIconClick()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L557", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handlefieldiconclick", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "handlefieldiconclick()" + }, + { + "label": "handleQsoButtonClick()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L580", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handleqsobuttonclick", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "handleqsobuttonclick()" + }, + { + "label": "guardedAutoSubmit()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L630", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_guardedautosubmit", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "guardedautosubmit()" + }, + { + "label": "openPopoverForField()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L681", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_openpopoverforfield", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "openpopoverforfield()" + }, + { + "label": "handleQuickSelectShortcut()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L736", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handlequickselectshortcut", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "handlequickselectshortcut()" + }, + { + "label": "openQuickSelectForElement()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L756", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_openquickselectforelement", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "openquickselectforelement()" + }, + { + "label": "handleHAStateChange()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L801", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handlehastatechange", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "handlehastatechange()" + }, + { + "label": "startSavePasswordWatcher()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L821", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_startsavepasswordwatcher", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "startsavepasswordwatcher()" + }, + { + "label": "checkExactDuplicate()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L903", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_checkexactduplicate", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "checkexactduplicate()" + }, + { + "label": "findPasswordFieldOnPage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L916", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_findpasswordfieldonpage", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "findpasswordfieldonpage()" + }, + { + "label": "NOTE: Do NOT stopSubmitWatcher() here \u2014 it must keep running to", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L261", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_rationale_261", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "note: do not stopsubmitwatcher() here \u2014 it must keep running to" + }, + { + "label": "IMPORTANT: Scanning always runs with all sections enabled so that", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L462", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_rationale_462", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "important: scanning always runs with all sections enabled so that" + }, + { + "label": "TODO: Phase 2 \u2014 create an OverlaySession from the selected entry,", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L764", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_rationale_764", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "todo: phase 2 \u2014 create an overlaysession from the selected entry," + }, + { + "label": "committer.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_committer_test", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "committer.test.ts" + }, + { + "label": "makePassingFingerprint()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.test.ts", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_committer_test_makepassingfingerprint", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "makepassingfingerprint()" + }, + { + "label": "makeField()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.test.ts", + "source_location": "L89", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_committer_test_makefield", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "makefield()" + }, + { + "label": "makeProfile()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.test.ts", + "source_location": "L98", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_committer_test_makeprofile", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "makeprofile()" + }, + { + "label": "makeTarget()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.test.ts", + "source_location": "L109", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_committer_test_maketarget", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "maketarget()" + }, + { + "label": "makeSession()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.test.ts", + "source_location": "L120", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_committer_test_makesession", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "makesession()" + }, + { + "label": "createInput()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.test.ts", + "source_location": "L140", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_committer_test_createinput", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "createinput()" + }, + { + "label": "committer.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_committer", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "committer.ts" + }, + { + "label": "setPopoverFillActive()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L94", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_committer_setpopoverfillactive", + "community": 94, + "community_name": "Vault Autofill #94", + "norm_label": "setpopoverfillactive()" + }, + { + "label": "setQsoFillActive()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L104", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_committer_setqsofillactive", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "setqsofillactive()" + }, + { + "label": "devWriteCanary()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L108", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_committer_devwritecanary", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "devwritecanary()" + }, + { + "label": "SetValueResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L136", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_committer_setvalueresult", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "setvalueresult" + }, + { + "label": "CommitTelemetryEvent", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L144", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_committer_committelemetryevent", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "committelemetryevent" + }, + { + "label": "TelemetryHook", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L164", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_committer_telemetryhook", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "telemetryhook" + }, + { + "label": "setTelemetryHook()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L171", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_committer_settelemetryhook", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "settelemetryhook()" + }, + { + "label": "FinalValidation", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L189", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_committer_finalvalidation", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "finalvalidation" + }, + { + "label": "finalValidateTarget()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L199", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_committer_finalvalidatetarget", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "finalvalidatetarget()" + }, + { + "label": "commitInsert()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L267", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_committer_commitinsert", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "commitinsert()" + }, + { + "label": "setValueSafely()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L557", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_committer_setvaluesafely", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "setvaluesafely()" + }, + { + "label": "tryNativeSetter()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L623", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_committer_trynativesetter", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "trynativesetter()" + }, + { + "label": "tryDirectAssign()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L665", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_committer_trydirectassign", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "trydirectassign()" + }, + { + "label": "trySetAttribute()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L689", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_committer_trysetattribute", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "trysetattribute()" + }, + { + "label": "dispatchFillEvents()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L727", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_committer_dispatchfillevents", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "dispatchfillevents()" + }, + { + "label": "runSafetyChecks()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L766", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_committer_runsafetychecks", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "runsafetychecks()" + }, + { + "label": "checkNotDetached()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L806", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_committer_checknotdetached", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "checknotdetached()" + }, + { + "label": "checkVisible()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L815", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_committer_checkvisible", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "checkvisible()" + }, + { + "label": "checkFocusable()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L839", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_committer_checkfocusable", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "checkfocusable()" + }, + { + "label": "checkSameOrigin()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L860", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_committer_checksameorigin", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "checksameorigin()" + }, + { + "label": "checkNotHiddenInput()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L880", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_committer_checknothiddeninput", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "checknothiddeninput()" + }, + { + "label": "checkSessionNotExpired()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L903", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_committer_checksessionnotexpired", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "checksessionnotexpired()" + }, + { + "label": "checkBoundingRectStable()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L915", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_committer_checkboundingrectstable", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "checkboundingrectstable()" + }, + { + "label": "checkFingerprintValid()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L944", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_committer_checkfingerprintvalid", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "checkfingerprintvalid()" + }, + { + "label": "tryDirectAssignRetry()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L969", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_committer_trydirectassignretry", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "trydirectassignretry()" + }, + { + "label": "makeError()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L995", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_committer_makeerror", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "makeerror()" + }, + { + "label": "safetyCheckToErrorCode()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L1000", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_committer_safetychecktoerrorcode", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "safetychecktoerrorcode()" + }, + { + "label": "emitTelemetry()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L1020", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_committer_emittelemetry", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "emittelemetry()" + }, + { + "label": "NOTE: This function is async because fingerprint validation uses", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L761", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_committer_rationale_761", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "note: this function is async because fingerprint validation uses" + }, + { + "label": "credentialStore.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_credentialstore", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "credentialstore.ts" + }, + { + "label": "findExistingCredentials()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L49", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_credentialstore_findexistingcredentials", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "findexistingcredentials()" + }, + { + "label": "CredentialSaveResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L102", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_credentialstore_credentialsaveresult", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "credentialsaveresult" + }, + { + "label": "executeCredentialSave()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L119", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_credentialstore_executecredentialsave", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "executecredentialsave()" + }, + { + "label": "createCredential()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L156", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_credentialstore_createcredential", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "createcredential()" + }, + { + "label": "updateCredential()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L203", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_credentialstore_updatecredential", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "updatecredential()" + }, + { + "label": "isNeverSaveDomain()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L255", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_credentialstore_isneversavedomain", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "isneversavedomain()" + }, + { + "label": "addToNeverSaveList()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L263", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_credentialstore_addtoneversavelist", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "addtoneversavelist()" + }, + { + "label": "removeFromNeverSaveList()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L282", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_credentialstore_removefromneversavelist", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "removefromneversavelist()" + }, + { + "label": "getNeverSaveList()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L290", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_credentialstore_getneversavelist", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "getneversavelist()" + }, + { + "label": "writeNeverSaveList()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L303", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_credentialstore_writeneversavelist", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "writeneversavelist()" + }, + { + "label": "remapItemDomain()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L327", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_credentialstore_remapitemdomain", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "remapitemdomain()" + }, + { + "label": "findMatchingItemsForDomain()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L407", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_credentialstore_findmatchingitemsfordomain", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "findmatchingitemsfordomain()" + }, + { + "label": "domainMatches()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L465", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_credentialstore_domainmatches", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "domainmatches()" + }, + { + "label": "extractFieldValue()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L477", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_credentialstore_extractfieldvalue", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "extractfieldvalue()" + }, + { + "label": "detectSubmitButtonSelector()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L494", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_credentialstore_detectsubmitbuttonselector", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "detectsubmitbuttonselector()" + }, + { + "label": "buildSelector()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L534", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_credentialstore_buildselector", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "buildselector()" + }, + { + "label": "dataVaultAdapter.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultadapter", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "datavaultadapter.ts" + }, + { + "label": "DataVaultProfileType", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L30", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultadapter_datavaultprofiletype", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "datavaultprofiletype" + }, + { + "label": "DataVaultProfileSummary", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L33", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultadapter_datavaultprofilesummary", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "datavaultprofilesummary" + }, + { + "label": "DataVaultProfile", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L41", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultadapter_datavaultprofile", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "datavaultprofile" + }, + { + "label": "DV_CATEGORIES", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L63", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultadapter_dv_categories", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "dv_categories" + }, + { + "label": "categoryToProfileType()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L66", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultadapter_categorytoprofiletype", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "categorytoprofiletype()" + }, + { + "label": "categoryToSection()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L76", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultadapter_categorytosection", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "categorytosection()" + }, + { + "label": "listDataVaultProfiles()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L93", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultadapter_listdatavaultprofiles", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "listdatavaultprofiles()" + }, + { + "label": "getDataVaultProfile()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L117", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultadapter_getdatavaultprofile", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "getdatavaultprofile()" + }, + { + "label": "buildFieldMap()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L143", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultadapter_buildfieldmap", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "buildfieldmap()" + }, + { + "label": "getLastUsedProfileId()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L204", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultadapter_getlastusedprofileid", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "getlastusedprofileid()" + }, + { + "label": "setLastUsedProfileId()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L220", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultadapter_setlastusedprofileid", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "setlastusedprofileid()" + }, + { + "label": "isDvDenylisted()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L238", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultadapter_isdvdenylisted", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "isdvdenylisted()" + }, + { + "label": "addToDvDenylist()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L254", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultadapter_addtodvdenylist", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "addtodvdenylist()" + }, + { + "label": "removeFromDvDenylist()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L275", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultadapter_removefromdvdenylist", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "removefromdvdenylist()" + }, + { + "label": "normalizeOrigin()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L296", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultadapter_normalizeorigin", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "normalizeorigin()" + }, + { + "label": "parseLegacyDob()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L309", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultadapter_parselegacydob", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "parselegacydob()" + }, + { + "label": "dataVaultFillEngine.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultFillEngine.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultfillengine", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "datavaultfillengine.ts" + }, + { + "label": "FillFieldResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultFillEngine.ts", + "source_location": "L31", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_fillfieldresult", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "fillfieldresult" + }, + { + "label": "FillAllResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultFillEngine.ts", + "source_location": "L37", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_fillallresult", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "fillallresult" + }, + { + "label": "FillOptions", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultFillEngine.ts", + "source_location": "L47", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_filloptions", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "filloptions" + }, + { + "label": "fillSingleField()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultFillEngine.ts", + "source_location": "L69", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_fillsinglefield", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "fillsinglefield()" + }, + { + "label": "fillAllMatchedFields()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultFillEngine.ts", + "source_location": "L146", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_fillallmatchedfields", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "fillallmatchedfields()" + }, + { + "label": "RevalidationResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultFillEngine.ts", + "source_location": "L215", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_revalidationresult", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "revalidationresult" + }, + { + "label": "revalidateElement()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultFillEngine.ts", + "source_location": "L232", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_revalidateelement", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "revalidateelement()" + }, + { + "label": "resolveComposedValue()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultFillEngine.ts", + "source_location": "L283", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_resolvecomposedvalue", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "resolvecomposedvalue()" + }, + { + "label": "setNativeValue()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultFillEngine.ts", + "source_location": "L333", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_setnativevalue", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "setnativevalue()" + }, + { + "label": "dispatchFillEvents()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultFillEngine.ts", + "source_location": "L359", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_dispatchfillevents", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "dispatchfillevents()" + }, + { + "label": "focusBeforeFill()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultFillEngine.ts", + "source_location": "L371", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_focusbeforefill", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "focusbeforefill()" + }, + { + "label": "fillSelectElement()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultFillEngine.ts", + "source_location": "L388", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_fillselectelement", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "fillselectelement()" + }, + { + "label": "getElementValue()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultFillEngine.ts", + "source_location": "L429", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_getelementvalue", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "getelementvalue()" + }, + { + "label": "dataVaultIcons.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultIcons.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaulticons", + "community": 307, + "community_name": "Vault Autofill #307", + "norm_label": "datavaulticons.ts" + }, + { + "label": "DvIconHandle", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultIcons.ts", + "source_location": "L30", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaulticons_dviconhandle", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "dviconhandle" + }, + { + "label": "DvIconClickHandler", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultIcons.ts", + "source_location": "L41", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaulticons_dviconclickhandler", + "community": 307, + "community_name": "Vault Autofill #307", + "norm_label": "dviconclickhandler" + }, + { + "label": "_icons", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultIcons.ts", + "source_location": "L51", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaulticons_icons", + "community": 307, + "community_name": "Vault Autofill #307", + "norm_label": "_icons" + }, + { + "label": "_iconElements", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultIcons.ts", + "source_location": "L54", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaulticons_iconelements", + "community": 307, + "community_name": "Vault Autofill #307", + "norm_label": "_iconelements" + }, + { + "label": "_availableKinds", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultIcons.ts", + "source_location": "L56", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaulticons_availablekinds", + "community": 307, + "community_name": "Vault Autofill #307", + "norm_label": "_availablekinds" + }, + { + "label": "_iconBtns", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultIcons.ts", + "source_location": "L57", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaulticons_iconbtns", + "community": 307, + "community_name": "Vault Autofill #307", + "norm_label": "_iconbtns" + }, + { + "label": "syncDvFieldIcons()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultIcons.ts", + "source_location": "L82", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaulticons_syncdvfieldicons", + "community": 307, + "community_name": "Vault Autofill #307", + "norm_label": "syncdvfieldicons()" + }, + { + "label": "clearAllDvIcons()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultIcons.ts", + "source_location": "L124", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaulticons_clearalldvicons", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "clearalldvicons()" + }, + { + "label": "getDvIconCount()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultIcons.ts", + "source_location": "L136", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaulticons_getdviconcount", + "community": 307, + "community_name": "Vault Autofill #307", + "norm_label": "getdviconcount()" + }, + { + "label": "setDvIconMatchData()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultIcons.ts", + "source_location": "L149", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaulticons_setdviconmatchdata", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "setdviconmatchdata()" + }, + { + "label": "setDvProfileDataAvailable()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultIcons.ts", + "source_location": "L165", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaulticons_setdvprofiledataavailable", + "community": 307, + "community_name": "Vault Autofill #307", + "norm_label": "setdvprofiledataavailable()" + }, + { + "label": "createDvIcon()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultIcons.ts", + "source_location": "L183", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaulticons_createdvicon", + "community": 307, + "community_name": "Vault Autofill #307", + "norm_label": "createdvicon()" + }, + { + "label": "positionDvIcon()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultIcons.ts", + "source_location": "L276", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaulticons_positiondvicon", + "community": 307, + "community_name": "Vault Autofill #307", + "norm_label": "positiondvicon()" + }, + { + "label": "startPositionWatchdog()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultIcons.ts", + "source_location": "L296", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaulticons_startpositionwatchdog", + "community": 307, + "community_name": "Vault Autofill #307", + "norm_label": "startpositionwatchdog()" + }, + { + "label": "reposAll()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultIcons.ts", + "source_location": "L311", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaulticons_reposall", + "community": 307, + "community_name": "Vault Autofill #307", + "norm_label": "reposall()" + }, + { + "label": "stopPositionWatchdog()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultIcons.ts", + "source_location": "L318", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaulticons_stoppositionwatchdog", + "community": 307, + "community_name": "Vault Autofill #307", + "norm_label": "stoppositionwatchdog()" + }, + { + "label": "IMPORTANT: This is SEPARATE from fieldIcons.ts which handles password-manager", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultIcons.ts", + "source_location": "L8", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaulticons_rationale_8", + "community": 307, + "community_name": "Vault Autofill #307", + "norm_label": "important: this is separate from fieldicons.ts which handles password-manager" + }, + { + "label": "dataVaultOrchestrator.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "datavaultorchestrator.ts" + }, + { + "label": "_profileAvailableKinds", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L72", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_profileavailablekinds", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "_profileavailablekinds" + }, + { + "label": "VAULT_POLL_DELAYS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L79", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_vault_poll_delays", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "vault_poll_delays" + }, + { + "label": "DV_FIELD_SECTIONS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L86", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_dv_field_sections", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "dv_field_sections" + }, + { + "label": "DV_ALLOWED_CONTEXTS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L89", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_dv_allowed_contexts", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "dv_allowed_contexts" + }, + { + "label": "filterDvCandidates()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L107", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_filterdvcandidates", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "filterdvcandidates()" + }, + { + "label": "CO_OCCURRENCE_GROUPS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L132", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_co_occurrence_groups", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "co_occurrence_groups" + }, + { + "label": "applyCoOccurrenceBoosts()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L181", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_applycooccurrenceboosts", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "applycooccurrenceboosts()" + }, + { + "label": "applySiteLearningBoosts()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L239", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_applysitelearningboosts", + "community": 255, + "community_name": "Vault Autofill #255", + "norm_label": "applysitelearningboosts()" + }, + { + "label": "applyNlpBooster()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L294", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_applynlpbooster", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "applynlpbooster()" + }, + { + "label": "initDataVault()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L348", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_initdatavault", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "initdatavault()" + }, + { + "label": "startVaultPoll()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L407", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_startvaultpoll", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "startvaultpoll()" + }, + { + "label": "stopVaultPoll()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L413", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_stopvaultpoll", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "stopvaultpoll()" + }, + { + "label": "scheduleNextPoll()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L420", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_schedulenextpoll", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "schedulenextpoll()" + }, + { + "label": "pollVaultStatus()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L428", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_pollvaultstatus", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "pollvaultstatus()" + }, + { + "label": "processScanForDataVault()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L475", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_processscanfordatavault", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "processscanfordatavault()" + }, + { + "label": "teardownDataVault()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L583", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_teardowndatavault", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "teardowndatavault()" + }, + { + "label": "handleDvSPANavigation()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L600", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_handledvspanavigation", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "handledvspanavigation()" + }, + { + "label": "handleDvIconClick()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L619", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_handledviconclick", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "handledviconclick()" + }, + { + "label": "loadDefaultProfileFields()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L673", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_loaddefaultprofilefields", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "loaddefaultprofilefields()" + }, + { + "label": "_lastDvCandidates", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L704", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_lastdvcandidates", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "_lastdvcandidates" + }, + { + "label": "cacheDvCandidates()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L707", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_cachedvcandidates", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "cachedvcandidates()" + }, + { + "label": "getLastDvCandidates()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L716", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_getlastdvcandidates", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "getlastdvcandidates()" + }, + { + "label": "_lastProcessedDvCandidates", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L723", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_lastprocesseddvcandidates", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "_lastprocesseddvcandidates" + }, + { + "label": "dataVaultPopup.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "datavaultpopup.ts" + }, + { + "label": "DvPopupOptions", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L61", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultpopup_dvpopupoptions", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "dvpopupoptions" + }, + { + "label": "DvPopupResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L68", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultpopup_dvpopupresult", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "dvpopupresult" + }, + { + "label": "_profiles", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L83", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultpopup_profiles", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "_profiles" + }, + { + "label": "showDvPopup()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L96", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultpopup_showdvpopup", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "showdvpopup()" + }, + { + "label": "hideDvPopup()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L109", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultpopup_hidedvpopup", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "hidedvpopup()" + }, + { + "label": "isDvPopupVisible()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L130", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultpopup_isdvpopupvisible", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "isdvpopupvisible()" + }, + { + "label": "createPopupDOM()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L138", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultpopup_createpopupdom", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "createpopupdom()" + }, + { + "label": "positionPopup()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L183", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultpopup_positionpopup", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "positionpopup()" + }, + { + "label": "loadProfiles()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L210", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultpopup_loadprofiles", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "loadprofiles()" + }, + { + "label": "loadProfile()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L263", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultpopup_loadprofile", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "loadprofile()" + }, + { + "label": "renderLoading()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L291", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultpopup_renderloading", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "renderloading()" + }, + { + "label": "renderEmpty()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L295", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultpopup_renderempty", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "renderempty()" + }, + { + "label": "renderError()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L310", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultpopup_rendererror", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "rendererror()" + }, + { + "label": "renderContent()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L325", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultpopup_rendercontent", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "rendercontent()" + }, + { + "label": "wireEvents()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L404", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultpopup_wireevents", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "wireevents()" + }, + { + "label": "handleFillSingle()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L475", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultpopup_handlefillsingle", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "handlefillsingle()" + }, + { + "label": "handleFillAll()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L495", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultpopup_handlefillall", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "handlefillall()" + }, + { + "label": "handleDeny()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L522", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultpopup_handledeny", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "handledeny()" + }, + { + "label": "dismissPopup()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L530", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultpopup_dismisspopup", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "dismisspopup()" + }, + { + "label": "FieldPreview", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L539", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultpopup_fieldpreview", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "fieldpreview" + }, + { + "label": "buildMatchedFieldPreview()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L546", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultpopup_buildmatchedfieldpreview", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "buildmatchedfieldpreview()" + }, + { + "label": "formatFieldLabel()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L593", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultpopup_formatfieldlabel", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "formatfieldlabel()" + }, + { + "label": "maskPreview()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L599", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultpopup_maskpreview", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "maskpreview()" + }, + { + "label": "getFormGroup()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L609", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultpopup_getformgroup", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "getformgroup()" + }, + { + "label": "filterCandidatesByGroup()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L642", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultpopup_filtercandidatesbygroup", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "filtercandidatesbygroup()" + }, + { + "label": "buildRemapOptions()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L659", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultpopup_buildremapoptions", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "buildremapoptions()" + }, + { + "label": "handleRemap()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L678", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultpopup_handleremap", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "handleremap()" + }, + { + "label": "BADGE_ICONS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L703", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultpopup_badge_icons", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "badge_icons" + }, + { + "label": "profileTypeBadgeIcon()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L709", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultpopup_profiletypebadgeicon", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "profiletypebadgeicon()" + }, + { + "label": "PROFILE_TYPE_LABELS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L713", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultpopup_profile_type_labels", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "profile_type_labels" + }, + { + "label": "profileTypeLabel()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L719", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultpopup_profiletypelabel", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "profiletypelabel()" + }, + { + "label": "escapeHtml()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L727", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultpopup_escapehtml", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "escapehtml()" + }, + { + "label": "buildCSS()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L739", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_datavaultpopup_buildcss", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "buildcss()" + }, + { + "label": "domFingerprint.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/domFingerprint.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_domfingerprint", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "domfingerprint.ts" + }, + { + "label": "takeFingerprint()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/domFingerprint.ts", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_domfingerprint_takefingerprint", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "takefingerprint()" + }, + { + "label": "captureProperties()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/domFingerprint.ts", + "source_location": "L57", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_domfingerprint_captureproperties", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "captureproperties()" + }, + { + "label": "validateFingerprint()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/domFingerprint.ts", + "source_location": "L99", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_domfingerprint_validatefingerprint", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "validatefingerprint()" + }, + { + "label": "roundToGrid()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/domFingerprint.ts", + "source_location": "L164", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_domfingerprint_roundtogrid", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "roundtogrid()" + }, + { + "label": "buildParentChain()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/domFingerprint.ts", + "source_location": "L169", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_domfingerprint_buildparentchain", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "buildparentchain()" + }, + { + "label": "getFrameOrigin()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/domFingerprint.ts", + "source_location": "L184", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_domfingerprint_getframeorigin", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "getframeorigin()" + }, + { + "label": "getFormAction()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/domFingerprint.ts", + "source_location": "L193", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_domfingerprint_getformaction", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "getformaction()" + }, + { + "label": "hashProperties()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/domFingerprint.ts", + "source_location": "L202", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_domfingerprint_hashproperties", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "hashproperties()" + }, + { + "label": "dvNlpBooster.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dvNlpBooster.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_dvnlpbooster", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "dvnlpbooster.ts" + }, + { + "label": "TextFeatures", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dvNlpBooster.ts", + "source_location": "L42", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_textfeatures", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "textfeatures" + }, + { + "label": "NlpClassifyResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dvNlpBooster.ts", + "source_location": "L66", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_nlpclassifyresult", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "nlpclassifyresult" + }, + { + "label": "NlpBackend", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dvNlpBooster.ts", + "source_location": "L82", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_nlpbackend", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "nlpbackend" + }, + { + "label": ".classify()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dvNlpBooster.ts", + "source_location": "L92", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_nlpbackend_classify", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": ".classify()" + }, + { + "label": ".isReady()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dvNlpBooster.ts", + "source_location": "L97", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_nlpbackend_isready", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": ".isready()" + }, + { + "label": "setNlpBoosterEnabled()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dvNlpBooster.ts", + "source_location": "L112", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_setnlpboosterenabled", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "setnlpboosterenabled()" + }, + { + "label": "isNlpBoosterEnabled()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dvNlpBooster.ts", + "source_location": "L117", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_isnlpboosterenabled", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "isnlpboosterenabled()" + }, + { + "label": "registerNlpBackend()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dvNlpBooster.ts", + "source_location": "L132", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_registernlpbackend", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "registernlpbackend()" + }, + { + "label": "unregisterNlpBackend()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dvNlpBooster.ts", + "source_location": "L139", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_unregisternlpbackend", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "unregisternlpbackend()" + }, + { + "label": "NLP_BOOSTER_WEIGHT", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dvNlpBooster.ts", + "source_location": "L157", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_nlp_booster_weight", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "nlp_booster_weight" + }, + { + "label": "semanticClassify()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dvNlpBooster.ts", + "source_location": "L174", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_semanticclassify", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "semanticclassify()" + }, + { + "label": "extractTextFeatures()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dvNlpBooster.ts", + "source_location": "L210", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_extracttextfeatures", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "extracttextfeatures()" + }, + { + "label": "resolveLabel()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dvNlpBooster.ts", + "source_location": "L230", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_resolvelabel", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "resolvelabel()" + }, + { + "label": "findNearbyHeading()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dvNlpBooster.ts", + "source_location": "L254", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_findnearbyheading", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "findnearbyheading()" + }, + { + "label": "findNearbyButtonText()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dvNlpBooster.ts", + "source_location": "L270", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_findnearbybuttontext", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "findnearbybuttontext()" + }, + { + "label": "resolveAriaDescription()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dvNlpBooster.ts", + "source_location": "L285", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_resolveariadescription", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "resolveariadescription()" + }, + { + "label": "getPageLanguage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dvNlpBooster.ts", + "source_location": "L298", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_getpagelanguage", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "getpagelanguage()" + }, + { + "label": "dvSiteLearning.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_dvsitelearning", + "community": 255, + "community_name": "Vault Autofill #255", + "norm_label": "dvsitelearning.ts" + }, + { + "label": "FieldFingerprint", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L37", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_dvsitelearning_fieldfingerprint", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "fieldfingerprint" + }, + { + "label": "LearnedMapping", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L49", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_dvsitelearning_learnedmapping", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "learnedmapping" + }, + { + "label": "OriginStore", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L57", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_dvsitelearning_originstore", + "community": 255, + "community_name": "Vault Autofill #255", + "norm_label": "originstore" + }, + { + "label": "LEARNED_CONFIDENCE_BOOST", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L72", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_dvsitelearning_learned_confidence_boost", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "learned_confidence_boost" + }, + { + "label": "buildFieldFingerprint()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L84", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_dvsitelearning_buildfieldfingerprint", + "community": 255, + "community_name": "Vault Autofill #255", + "norm_label": "buildfieldfingerprint()" + }, + { + "label": "fingerprintMatchScore()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L107", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_dvsitelearning_fingerprintmatchscore", + "community": 255, + "community_name": "Vault Autofill #255", + "norm_label": "fingerprintmatchscore()" + }, + { + "label": "lookupLearnedMapping()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L154", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_dvsitelearning_lookuplearnedmapping", + "community": 255, + "community_name": "Vault Autofill #255", + "norm_label": "lookuplearnedmapping()" + }, + { + "label": "lookupLearnedMappingsBatch()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L183", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_dvsitelearning_lookuplearnedmappingsbatch", + "community": 255, + "community_name": "Vault Autofill #255", + "norm_label": "lookuplearnedmappingsbatch()" + }, + { + "label": "saveLearned()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L221", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_dvsitelearning_savelearned", + "community": 255, + "community_name": "Vault Autofill #255", + "norm_label": "savelearned()" + }, + { + "label": "removeLearned()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L255", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_dvsitelearning_removelearned", + "community": 255, + "community_name": "Vault Autofill #255", + "norm_label": "removelearned()" + }, + { + "label": "getLearnedMappings()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L272", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_dvsitelearning_getlearnedmappings", + "community": 255, + "community_name": "Vault Autofill #255", + "norm_label": "getlearnedmappings()" + }, + { + "label": "clearLearnedMappings()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L280", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_dvsitelearning_clearlearnedmappings", + "community": 255, + "community_name": "Vault Autofill #255", + "norm_label": "clearlearnedmappings()" + }, + { + "label": "loadOriginStore()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L289", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_dvsitelearning_loadoriginstore", + "community": 255, + "community_name": "Vault Autofill #255", + "norm_label": "loadoriginstore()" + }, + { + "label": "saveOriginStore()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L302", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_dvsitelearning_saveoriginstore", + "community": 255, + "community_name": "Vault Autofill #255", + "norm_label": "saveoriginstore()" + }, + { + "label": "ensureOriginInIndex()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L313", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_dvsitelearning_ensureorigininindex", + "community": 255, + "community_name": "Vault Autofill #255", + "norm_label": "ensureorigininindex()" + }, + { + "label": "bumpUsageAsync()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L335", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_dvsitelearning_bumpusageasync", + "community": 255, + "community_name": "Vault Autofill #255", + "norm_label": "bumpusageasync()" + }, + { + "label": "chromeLocalRemove()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L354", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_dvsitelearning_chromelocalremove", + "community": 255, + "community_name": "Vault Autofill #255", + "norm_label": "chromelocalremove()" + }, + { + "label": "normalizeOrigin()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L368", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_dvsitelearning_normalizeorigin", + "community": 255, + "community_name": "Vault Autofill #255", + "norm_label": "normalizeorigin()" + }, + { + "label": "getFormIndex()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L377", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_dvsitelearning_getformindex", + "community": 255, + "community_name": "Vault Autofill #255", + "norm_label": "getformindex()" + }, + { + "label": "resolveRawLabel()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L387", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_dvsitelearning_resolverawlabel", + "community": 255, + "community_name": "Vault Autofill #255", + "norm_label": "resolverawlabel()" + }, + { + "label": "fastHash()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L413", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_dvsitelearning_fasthash", + "community": 255, + "community_name": "Vault Autofill #255", + "norm_label": "fasthash()" + }, + { + "label": "fieldIcons.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldIcons.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldicons", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "fieldicons.ts" + }, + { + "label": "FieldIconHandle", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldIcons.ts", + "source_location": "L26", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldicons_fieldiconhandle", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "fieldiconhandle" + }, + { + "label": "IconClickHandler", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldIcons.ts", + "source_location": "L35", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldicons_iconclickhandler", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "iconclickhandler" + }, + { + "label": "QsoClickHandler", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldIcons.ts", + "source_location": "L41", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldicons_qsoclickhandler", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "qsoclickhandler" + }, + { + "label": "_icons", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldIcons.ts", + "source_location": "L51", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldicons_icons", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "_icons" + }, + { + "label": "_iconElements", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldIcons.ts", + "source_location": "L56", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldicons_iconelements", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "_iconelements" + }, + { + "label": "_iconBtns", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldIcons.ts", + "source_location": "L60", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldicons_iconbtns", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "_iconbtns" + }, + { + "label": "_qsoBtns", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldIcons.ts", + "source_location": "L62", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldicons_qsobtns", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "_qsobtns" + }, + { + "label": "syncFieldIcons()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldIcons.ts", + "source_location": "L74", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldicons_syncfieldicons", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "syncfieldicons()" + }, + { + "label": "setQsoClickHandler()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldIcons.ts", + "source_location": "L130", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldicons_setqsoclickhandler", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "setqsoclickhandler()" + }, + { + "label": "clearAllFieldIcons()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldIcons.ts", + "source_location": "L137", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldicons_clearallfieldicons", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "clearallfieldicons()" + }, + { + "label": "getFieldIconCount()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldIcons.ts", + "source_location": "L154", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldicons_getfieldiconcount", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "getfieldiconcount()" + }, + { + "label": "setFieldIconMatchState()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldIcons.ts", + "source_location": "L166", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldicons_setfieldiconmatchstate", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "setfieldiconmatchstate()" + }, + { + "label": "setQsoButtonVisible()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldIcons.ts", + "source_location": "L183", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldicons_setqsobuttonvisible", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "setqsobuttonvisible()" + }, + { + "label": "hasVaultMatch()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldIcons.ts", + "source_location": "L192", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldicons_hasvaultmatch", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "hasvaultmatch()" + }, + { + "label": "createFieldIcon()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldIcons.ts", + "source_location": "L200", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldicons_createfieldicon", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "createfieldicon()" + }, + { + "label": "positionIcon()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldIcons.ts", + "source_location": "L277", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldicons_positionicon", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "positionicon()" + }, + { + "label": "startPositionWatchdog()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldIcons.ts", + "source_location": "L304", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldicons_startpositionwatchdog", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "startpositionwatchdog()" + }, + { + "label": "stopPositionWatchdog()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldIcons.ts", + "source_location": "L341", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldicons_stoppositionwatchdog", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "stoppositionwatchdog()" + }, + { + "label": "buildIconCSS()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldIcons.ts", + "source_location": "L375", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldicons_buildiconcss", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "buildiconcss()" + }, + { + "label": "fieldScanner.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_test", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "fieldscanner.test.ts" + }, + { + "label": "ALL_TOGGLES", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.test.ts", + "source_location": "L34", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_test_all_toggles", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "all_toggles" + }, + { + "label": "LOGIN_ONLY", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.test.ts", + "source_location": "L41", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_test_login_only", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "login_only" + }, + { + "label": "makeInput()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.test.ts", + "source_location": "L48", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_test_makeinput", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "makeinput()" + }, + { + "label": "makeSelect()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.test.ts", + "source_location": "L62", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_test_makeselect", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "makeselect()" + }, + { + "label": "makeLabel()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.test.ts", + "source_location": "L75", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_test_makelabel", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "makelabel()" + }, + { + "label": "makeForm()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.test.ts", + "source_location": "L83", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_test_makeform", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "makeform()" + }, + { + "label": "makeProfile()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.test.ts", + "source_location": "L92", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_test_makeprofile", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "makeprofile()" + }, + { + "label": "NOTE: JSDOM does not provide real layout (getBoundingClientRect returns zeros).", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.test.ts", + "source_location": "L8", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_test_rationale_8", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "note: jsdom does not provide real layout (getboundingclientrect returns zeros)." + }, + { + "label": "fieldScanner.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "fieldscanner.ts" + }, + { + "label": "ScanResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L66", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_scanresult", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "scanresult" + }, + { + "label": "ElementScore", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L88", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_elementscore", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "elementscore" + }, + { + "label": "FieldMapping", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L104", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_fieldmapping", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "fieldmapping" + }, + { + "label": "ScanConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L120", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_scanconfig", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "scanconfig" + }, + { + "label": "SCAN_CAP_MAX_ELEMENTS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L140", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_scan_cap_max_elements", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "scan_cap_max_elements" + }, + { + "label": "SCAN_CAP_MAX_ELEMENTS_HA", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L142", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_scan_cap_max_elements_ha", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "scan_cap_max_elements_ha" + }, + { + "label": "SCAN_CAP_MAX_CANDIDATES", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L144", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_scan_cap_max_candidates", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "scan_cap_max_candidates" + }, + { + "label": "SCAN_CAP_MAX_CANDIDATES_HA", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L146", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_scan_cap_max_candidates_ha", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "scan_cap_max_candidates_ha" + }, + { + "label": "SCAN_CAP_MAX_DURATION_MS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L148", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_scan_cap_max_duration_ms", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "scan_cap_max_duration_ms" + }, + { + "label": "SCAN_CAP_MAX_DURATION_MS_HA", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L150", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_scan_cap_max_duration_ms_ha", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "scan_cap_max_duration_ms_ha" + }, + { + "label": "SCAN_CHECK_EVERY", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L153", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_scan_check_every", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "scan_check_every" + }, + { + "label": "SCAN_CHECK_EVERY_HA", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L155", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_scan_check_every_ha", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "scan_check_every_ha" + }, + { + "label": "sanitizeNumericCap()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L164", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_sanitizenumericcap", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "sanitizenumericcap()" + }, + { + "label": "FORM_CONTROL_TAGS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L170", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_form_control_tags", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "form_control_tags" + }, + { + "label": "FORM_CONTROL_TAGS_INPUT_ONLY", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L171", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_form_control_tags_input_only", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "form_control_tags_input_only" + }, + { + "label": "BoundedIterState", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L174", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_boundediterstate", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "boundediterstate" + }, + { + "label": "iterFormControlsBounded()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L196", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_iterformcontrolsbounded", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "iterformcontrolsbounded()" + }, + { + "label": "DEFAULT_SCAN_CONFIG", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L255", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_default_scan_config", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "default_scan_config" + }, + { + "label": "_labelCache", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L273", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_labelcache", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "_labelcache" + }, + { + "label": "_formContextCache", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L276", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_formcontextcache", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "_formcontextcache" + }, + { + "label": "collectCandidates()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L310", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_collectcandidates", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "collectcandidates()" + }, + { + "label": "invalidateScanCache()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L483", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_invalidatescancache", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "invalidatescancache()" + }, + { + "label": "scoreCandidate()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L500", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_scorecandidate", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "scorecandidate()" + }, + { + "label": "pickBestMapping()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L542", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_pickbestmapping", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "pickbestmapping()" + }, + { + "label": "isAmbiguous()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L622", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_isambiguous", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "isambiguous()" + }, + { + "label": "scoreElementAgainstSpecs()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L635", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_scoreelementagainstspecs", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "scoreelementagainstspecs()" + }, + { + "label": "scoreElementAgainstSingleSpec()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L690", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_scoreelementagainstsinglespec", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "scoreelementagainstsinglespec()" + }, + { + "label": "ElementAttributes", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L707", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_elementattributes", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "elementattributes" + }, + { + "label": "extractAttributes()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L719", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_extractattributes", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "extractattributes()" + }, + { + "label": "evaluateSpec()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L738", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_evaluatespec", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "evaluatespec()" + }, + { + "label": "evaluateAntiSignals()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L776", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_evaluateantisignals", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "evaluateantisignals()" + }, + { + "label": "matchSignal()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L795", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_matchsignal", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "matchsignal()" + }, + { + "label": "matchAntiSignal()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L837", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_matchantisignal", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "matchantisignal()" + }, + { + "label": "resolveLabel()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L883", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_resolvelabel", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "resolvelabel()" + }, + { + "label": "INTENT_FIELD_KEYWORDS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L944", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_intent_field_keywords", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "intent_field_keywords" + }, + { + "label": "INTENT_BUTTON_TEXT", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L951", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_intent_button_text", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "intent_button_text" + }, + { + "label": "INTENT_URL_PATHS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L958", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_intent_url_paths", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "intent_url_paths" + }, + { + "label": "classifyFormIntent()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L980", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_classifyformintent", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "classifyformintent()" + }, + { + "label": "CONTACT_AUTOCOMPLETE_HINTS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L1123", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_contact_autocomplete_hints", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "contact_autocomplete_hints" + }, + { + "label": "ADDRESS_AUTOCOMPLETE_HINTS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L1129", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_address_autocomplete_hints", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "address_autocomplete_hints" + }, + { + "label": "CHECKOUT_AUTOCOMPLETE_HINTS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L1135", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_checkout_autocomplete_hints", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "checkout_autocomplete_hints" + }, + { + "label": "findFormlikeContainer()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L1146", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_findformlikecontainer", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "findformlikecontainer()" + }, + { + "label": "classifyByFieldAndURL()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L1162", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_classifybyfieldandurl", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "classifybyfieldandurl()" + }, + { + "label": "detectFormContext()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L1178", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_detectformcontext", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "detectformcontext()" + }, + { + "label": "isCrossOriginElement()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L1190", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_iscrossoriginelement", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "iscrossoriginelement()" + }, + { + "label": "getFormIndex()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L1209", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_getformindex", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "getformindex()" + }, + { + "label": "getActiveSpecs()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L1225", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_getactivespecs", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "getactivespecs()" + }, + { + "label": "startWatching()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L1244", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_startwatching", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "startwatching()" + }, + { + "label": "stopWatching()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L1301", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_stopwatching", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "stopwatching()" + }, + { + "label": "isInsideVaultOverlay()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L1314", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_isinsidevaultoverlay", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "isinsidevaultoverlay()" + }, + { + "label": "isFormField()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L1325", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_isformfield", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "isformfield()" + }, + { + "label": "containsFormFields()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L1331", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_containsformfields", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "containsformfields()" + }, + { + "label": "IMPORTANT: Do NOT use `document.body` here \u2014 this module is statically", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L256", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fieldscanner_rationale_256", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "important: do not use `document.body` here \u2014 this module is statically" + }, + { + "label": "fillPreview.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fillpreview", + "community": 94, + "community_name": "Vault Autofill #94", + "norm_label": "fillpreview.ts" + }, + { + "label": "PreviewOverlay", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fillpreview_previewoverlay", + "community": 94, + "community_name": "Vault Autofill #94", + "norm_label": "previewoverlay" + }, + { + "label": "_overlays", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L39", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fillpreview_overlays", + "community": 94, + "community_name": "Vault Autofill #94", + "norm_label": "_overlays" + }, + { + "label": "_pendingCandidates", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L42", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fillpreview_pendingcandidates", + "community": 94, + "community_name": "Vault Autofill #94", + "norm_label": "_pendingcandidates" + }, + { + "label": "showFillPreview()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fillpreview_showfillpreview", + "community": 94, + "community_name": "Vault Autofill #94", + "norm_label": "showfillpreview()" + }, + { + "label": "clearFillPreview()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L91", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fillpreview_clearfillpreview", + "community": 94, + "community_name": "Vault Autofill #94", + "norm_label": "clearfillpreview()" + }, + { + "label": "isFillPreviewActive()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L111", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fillpreview_isfillpreviewactive", + "community": 94, + "community_name": "Vault Autofill #94", + "norm_label": "isfillpreviewactive()" + }, + { + "label": "FieldValueEntry", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L119", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fillpreview_fieldvalueentry", + "community": 94, + "community_name": "Vault Autofill #94", + "norm_label": "fieldvalueentry" + }, + { + "label": "resolveFieldValues()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L125", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fillpreview_resolvefieldvalues", + "community": 94, + "community_name": "Vault Autofill #94", + "norm_label": "resolvefieldvalues()" + }, + { + "label": "findMatchingField()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L147", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fillpreview_findmatchingfield", + "community": 94, + "community_name": "Vault Autofill #94", + "norm_label": "findmatchingfield()" + }, + { + "label": "createPreviewOverlay()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L176", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fillpreview_createpreviewoverlay", + "community": 94, + "community_name": "Vault Autofill #94", + "norm_label": "createpreviewoverlay()" + }, + { + "label": "positionOverlay()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L224", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fillpreview_positionoverlay", + "community": 94, + "community_name": "Vault Autofill #94", + "norm_label": "positionoverlay()" + }, + { + "label": "startPositionWatchdog()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L242", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fillpreview_startpositionwatchdog", + "community": 94, + "community_name": "Vault Autofill #94", + "norm_label": "startpositionwatchdog()" + }, + { + "label": "stopPositionWatchdog()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L268", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fillpreview_stoppositionwatchdog", + "community": 94, + "community_name": "Vault Autofill #94", + "norm_label": "stoppositionwatchdog()" + }, + { + "label": "setupSubmitInterception()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L279", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fillpreview_setupsubmitinterception", + "community": 94, + "community_name": "Vault Autofill #94", + "norm_label": "setupsubmitinterception()" + }, + { + "label": "executePreviewFill()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L306", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fillpreview_executepreviewfill", + "community": 94, + "community_name": "Vault Autofill #94", + "norm_label": "executepreviewfill()" + }, + { + "label": "findSubmitButtonOnPage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L356", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fillpreview_findsubmitbuttononpage", + "community": 94, + "community_name": "Vault Autofill #94", + "norm_label": "findsubmitbuttononpage()" + }, + { + "label": "buildPreviewCSS()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L384", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_fillpreview_buildpreviewcss", + "community": 94, + "community_name": "Vault Autofill #94", + "norm_label": "buildpreviewcss()" + }, + { + "label": "haGuard.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/haGuard.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_haguard", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "haguard.ts" + }, + { + "label": "_haState", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/haGuard.ts", + "source_location": "L43", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_haguard_hastate", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "_hastate" + }, + { + "label": "_listeners", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/haGuard.ts", + "source_location": "L49", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_haguard_listeners", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "_listeners" + }, + { + "label": "MSG_HA_STATE_CHANGED", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/haGuard.ts", + "source_location": "L55", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_haguard_msg_ha_state_changed", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "msg_ha_state_changed" + }, + { + "label": "MSG_HA_STATE_REQUEST", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/haGuard.ts", + "source_location": "L56", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_haguard_msg_ha_state_request", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "msg_ha_state_request" + }, + { + "label": "isHAEnforced()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/haGuard.ts", + "source_location": "L67", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_haguard_ishaenforced", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "ishaenforced()" + }, + { + "label": "getHAConfig()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/haGuard.ts", + "source_location": "L77", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_haguard_gethaconfig", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "gethaconfig()" + }, + { + "label": "getHAState()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/haGuard.ts", + "source_location": "L84", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_haguard_gethastate", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "gethastate()" + }, + { + "label": "haCheck()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/haGuard.ts", + "source_location": "L110", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_haguard_hacheck", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "hacheck()" + }, + { + "label": "haCheckSilent()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/haGuard.ts", + "source_location": "L126", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_haguard_hachecksilent", + "community": 118, + "community_name": "Vault Autofill #118", + "norm_label": "hachecksilent()" + }, + { + "label": "initHASync()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/haGuard.ts", + "source_location": "L143", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_haguard_inithasync", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "inithasync()" + }, + { + "label": "updateHAState()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/haGuard.ts", + "source_location": "L181", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_haguard_updatehastate", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "updatehastate()" + }, + { + "label": "onHAChange()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/haGuard.ts", + "source_location": "L208", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_haguard_onhachange", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "onhachange()" + }, + { + "label": "handleHARequest()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/haGuard.ts", + "source_location": "L219", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_haguard_handleharequest", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "handleharequest()" + }, + { + "label": "notifyListeners()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/haGuard.ts", + "source_location": "L234", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_haguard_notifylisteners", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "notifylisteners()" + }, + { + "label": "hardening.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_hardening", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "hardening.ts" + }, + { + "label": "FailureMode", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L34", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_hardening_failuremode", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "failuremode" + }, + { + "label": "FailureCategory", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L42", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_hardening_failurecategory", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "failurecategory" + }, + { + "label": "FAILURE_MODES", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L55", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_hardening_failure_modes", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "failure_modes" + }, + { + "label": "HardenedErrorCode", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L303", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_hardening_hardenederrorcode", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "hardenederrorcode" + }, + { + "label": "ERROR_MESSAGES", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L338", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_hardening_error_messages", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "error_messages" + }, + { + "label": "getUserMessage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L375", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_hardening_getusermessage", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "getusermessage()" + }, + { + "label": "SafeModeDecision", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L411", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_hardening_safemodedecision", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "safemodedecision" + }, + { + "label": "SafeModeReason", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L420", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_hardening_safemodereason", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "safemodereason" + }, + { + "label": "PUBLIC_SUFFIX_PATTERNS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L434", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_hardening_public_suffix_patterns", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "public_suffix_patterns" + }, + { + "label": "evaluateSafeMode()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L463", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_hardening_evaluatesafemode", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "evaluatesafemode()" + }, + { + "label": "ElementGuardResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L549", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_hardening_elementguardresult", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "elementguardresult" + }, + { + "label": "guardElement()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L569", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_hardening_guardelement", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "guardelement()" + }, + { + "label": "isOurShadowHost()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L665", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_hardening_isourshadowhost", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "isourshadowhost()" + }, + { + "label": "SPANavigationConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L677", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_hardening_spanavigationconfig", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "spanavigationconfig" + }, + { + "label": "SPAWatcherState", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L688", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_hardening_spawatcherstate", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "spawatcherstate" + }, + { + "label": "_spaState", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L697", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_hardening_spastate", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "_spastate" + }, + { + "label": "startSPAWatcher()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L712", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_hardening_startspawatcher", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "startspawatcher()" + }, + { + "label": "stopSPAWatcher()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L763", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_hardening_stopspawatcher", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "stopspawatcher()" + }, + { + "label": "isPublicSuffixDomain()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L800", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_hardening_ispublicsuffixdomain", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "ispublicsuffixdomain()" + }, + { + "label": "domainRelated()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L814", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_hardening_domainrelated", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "domainrelated()" + }, + { + "label": "countDomainMatches()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L825", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_hardening_countdomainmatches", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "countdomainmatches()" + }, + { + "label": "redactSecrets()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L842", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_hardening_redactsecrets", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "redactsecrets()" + }, + { + "label": "redactError()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L860", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_hardening_redacterror", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "redacterror()" + }, + { + "label": "maskValue()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L875", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_hardening_maskvalue", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "maskvalue()" + }, + { + "label": "AuditLevel", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L901", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_hardening_auditlevel", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "auditlevel" + }, + { + "label": "AuditEntry", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L903", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_hardening_auditentry", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "auditentry" + }, + { + "label": "MAX_AUDIT_ENTRIES", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L919", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_hardening_max_audit_entries", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "max_audit_entries" + }, + { + "label": "MAX_AUDIT_AGE_MS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L922", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_hardening_max_audit_age_ms", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "max_audit_age_ms" + }, + { + "label": "MAX_EXPORT_BYTES", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L925", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_hardening_max_export_bytes", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "max_export_bytes" + }, + { + "label": "_auditBuffer", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L927", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_hardening_auditbuffer", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "_auditbuffer" + }, + { + "label": "_auditListeners", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L928", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_hardening_auditlisteners", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "_auditlisteners" + }, + { + "label": "META_ALLOWED_KEYS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L942", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_hardening_meta_allowed_keys", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "meta_allowed_keys" + }, + { + "label": "META_PII_PATTERNS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L967", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_hardening_meta_pii_patterns", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "meta_pii_patterns" + }, + { + "label": "sanitizeMetaValue()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L975", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_hardening_sanitizemetavalue", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "sanitizemetavalue()" + }, + { + "label": "sanitizeMeta()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L1016", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_hardening_sanitizemeta", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "sanitizemeta()" + }, + { + "label": "auditLog()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L1046", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_hardening_auditlog", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "auditlog()" + }, + { + "label": "auditLogSafe()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L1117", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_hardening_auditlogsafe", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "auditlogsafe()" + }, + { + "label": "onAuditEvent()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L1168", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_hardening_onauditevent", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "onauditevent()" + }, + { + "label": "getAuditLog()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L1179", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_hardening_getauditlog", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "getauditlog()" + }, + { + "label": "clearAuditLog()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L1190", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_hardening_clearauditlog", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "clearauditlog()" + }, + { + "label": "exportAuditLogJsonl()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L1212", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_hardening_exportauditlogjsonl", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "exportauditlogjsonl()" + }, + { + "label": "flushAuditLog()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L1260", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_hardening_flushauditlog", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "flushauditlog()" + }, + { + "label": "TelemetryEvent", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L1299", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_hardening_telemetryevent", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "telemetryevent" + }, + { + "label": "TelemetryEventType", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L1312", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_hardening_telemetryeventtype", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "telemetryeventtype" + }, + { + "label": "_telemetryBuffer", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L1362", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_hardening_telemetrybuffer", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "_telemetrybuffer" + }, + { + "label": "_telemetryListeners", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L1363", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_hardening_telemetrylisteners", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "_telemetrylisteners" + }, + { + "label": "emitTelemetryEvent()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L1369", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_hardening_emittelemetryevent", + "community": 118, + "community_name": "Vault Autofill #118", + "norm_label": "emittelemetryevent()" + }, + { + "label": "onTelemetryEvent()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L1395", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_hardening_ontelemetryevent", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "ontelemetryevent()" + }, + { + "label": "getTelemetryLog()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L1405", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_hardening_gettelemetrylog", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "gettelemetrylog()" + }, + { + "label": "clearTelemetry()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L1415", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_hardening_cleartelemetry", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "cleartelemetry()" + }, + { + "label": "safeHostname()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L1425", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_hardening_safehostname", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "safehostname()" + }, + { + "label": "autofill/index.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_index", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "autofill/index.ts" + }, + { + "label": "NOTE: setValueSafely is intentionally NOT re-exported here.", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L52", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_index_rationale_52", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "note: setvaluesafely is intentionally not re-exported here." + }, + { + "label": "inlinePopover.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "community": 94, + "community_name": "Vault Autofill #94", + "norm_label": "inlinepopover.ts" + }, + { + "label": "PopoverOptions", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L46", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_inlinepopover_popoveroptions", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "popoveroptions" + }, + { + "label": "PopoverResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L62", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_inlinepopover_popoverresult", + "community": 94, + "community_name": "Vault Autofill #94", + "norm_label": "popoverresult" + }, + { + "label": "FillMode", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L67", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_inlinepopover_fillmode", + "community": 94, + "community_name": "Vault Autofill #94", + "norm_label": "fillmode" + }, + { + "label": "_items", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L79", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_inlinepopover_items", + "community": 94, + "community_name": "Vault Autofill #94", + "norm_label": "_items" + }, + { + "label": "_filteredItems", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L80", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_inlinepopover_filtereditems", + "community": 94, + "community_name": "Vault Autofill #94", + "norm_label": "_filtereditems" + }, + { + "label": "loadQsoAutoConsent()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L94", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_inlinepopover_loadqsoautoconsent", + "community": 94, + "community_name": "Vault Autofill #94", + "norm_label": "loadqsoautoconsent()" + }, + { + "label": "saveQsoAutoConsentPublic()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L107", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_inlinepopover_saveqsoautoconsentpublic", + "community": 94, + "community_name": "Vault Autofill #94", + "norm_label": "saveqsoautoconsentpublic()" + }, + { + "label": "saveQsoAutoConsent()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L111", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_inlinepopover_saveqsoautoconsent", + "community": 94, + "community_name": "Vault Autofill #94", + "norm_label": "saveqsoautoconsent()" + }, + { + "label": "showPopover()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L130", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_inlinepopover_showpopover", + "community": 94, + "community_name": "Vault Autofill #94", + "norm_label": "showpopover()" + }, + { + "label": "hidePopover()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L156", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_inlinepopover_hidepopover", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "hidepopover()" + }, + { + "label": "isPopoverVisible()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L170", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_inlinepopover_ispopovervisible", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "ispopovervisible()" + }, + { + "label": "renderPopover()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L178", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_inlinepopover_renderpopover", + "community": 94, + "community_name": "Vault Autofill #94", + "norm_label": "renderpopover()" + }, + { + "label": "buildHeader()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L246", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_inlinepopover_buildheader", + "community": 94, + "community_name": "Vault Autofill #94", + "norm_label": "buildheader()" + }, + { + "label": "buildSearchBar()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L301", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_inlinepopover_buildsearchbar", + "community": 94, + "community_name": "Vault Autofill #94", + "norm_label": "buildsearchbar()" + }, + { + "label": "loadVaultItems()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L330", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_inlinepopover_loadvaultitems", + "community": 94, + "community_name": "Vault Autofill #94", + "norm_label": "loadvaultitems()" + }, + { + "label": "filterItems()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L406", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_inlinepopover_filteritems", + "community": 94, + "community_name": "Vault Autofill #94", + "norm_label": "filteritems()" + }, + { + "label": "domainSimilarityScore()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L453", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_inlinepopover_domainsimilarityscore", + "community": 94, + "community_name": "Vault Autofill #94", + "norm_label": "domainsimilarityscore()" + }, + { + "label": "matchesDomain()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L495", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_inlinepopover_matchesdomain", + "community": 94, + "community_name": "Vault Autofill #94", + "norm_label": "matchesdomain()" + }, + { + "label": "updateListUI()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L508", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_inlinepopover_updatelistui", + "community": 94, + "community_name": "Vault Autofill #94", + "norm_label": "updatelistui()" + }, + { + "label": "highlightItem()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L598", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_inlinepopover_highlightitem", + "community": 94, + "community_name": "Vault Autofill #94", + "norm_label": "highlightitem()" + }, + { + "label": "getDisplayUsername()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L612", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_inlinepopover_getdisplayusername", + "community": 94, + "community_name": "Vault Autofill #94", + "norm_label": "getdisplayusername()" + }, + { + "label": "switchMode()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L626", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_inlinepopover_switchmode", + "community": 94, + "community_name": "Vault Autofill #94", + "norm_label": "switchmode()" + }, + { + "label": "showQsoConsentDialog()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L669", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_inlinepopover_showqsoconsentdialog", + "community": 94, + "community_name": "Vault Autofill #94", + "norm_label": "showqsoconsentdialog()" + }, + { + "label": "buildConsentCSS()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L720", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_inlinepopover_buildconsentcss", + "community": 94, + "community_name": "Vault Autofill #94", + "norm_label": "buildconsentcss()" + }, + { + "label": "updateModeUI()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L801", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_inlinepopover_updatemodeui", + "community": 94, + "community_name": "Vault Autofill #94", + "norm_label": "updatemodeui()" + }, + { + "label": "fillFromItem()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L825", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_inlinepopover_fillfromitem", + "community": 94, + "community_name": "Vault Autofill #94", + "norm_label": "fillfromitem()" + }, + { + "label": "popoverGuardedSubmit()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L904", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_inlinepopover_popoverguardedsubmit", + "community": 94, + "community_name": "Vault Autofill #94", + "norm_label": "popoverguardedsubmit()" + }, + { + "label": "fillFieldsFromVaultItem()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L956", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_inlinepopover_fillfieldsfromvaultitem", + "community": 94, + "community_name": "Vault Autofill #94", + "norm_label": "fillfieldsfromvaultitem()" + }, + { + "label": "autoSubmitAfterFill()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L1009", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_inlinepopover_autosubmitafterfill", + "community": 94, + "community_name": "Vault Autofill #94", + "norm_label": "autosubmitafterfill()" + }, + { + "label": "findSubmitButtonOnPage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L1057", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_inlinepopover_findsubmitbuttononpage", + "community": 94, + "community_name": "Vault Autofill #94", + "norm_label": "findsubmitbuttononpage()" + }, + { + "label": "findMatchingField()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L1082", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_inlinepopover_findmatchingfield", + "community": 94, + "community_name": "Vault Autofill #94", + "norm_label": "findmatchingfield()" + }, + { + "label": "getFieldValue()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L1118", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_inlinepopover_getfieldvalue", + "community": 94, + "community_name": "Vault Autofill #94", + "norm_label": "getfieldvalue()" + }, + { + "label": "handleKeydown()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L1127", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_inlinepopover_handlekeydown", + "community": 94, + "community_name": "Vault Autofill #94", + "norm_label": "handlekeydown()" + }, + { + "label": "positionPopover()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L1178", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_inlinepopover_positionpopover", + "community": 94, + "community_name": "Vault Autofill #94", + "norm_label": "positionpopover()" + }, + { + "label": "resolveAndClose()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L1206", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_inlinepopover_resolveandclose", + "community": 94, + "community_name": "Vault Autofill #94", + "norm_label": "resolveandclose()" + }, + { + "label": "cleanupPopover()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L1213", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_inlinepopover_cleanuppopover", + "community": 94, + "community_name": "Vault Autofill #94", + "norm_label": "cleanuppopover()" + }, + { + "label": "buildPopoverCSS()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L1267", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_inlinepopover_buildpopovercss", + "community": 94, + "community_name": "Vault Autofill #94", + "norm_label": "buildpopovercss()" + }, + { + "label": "escapeHtml()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L1568", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_inlinepopover_escapehtml", + "community": 94, + "community_name": "Vault Autofill #94", + "norm_label": "escapehtml()" + }, + { + "label": "autofill/microcopy.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/microcopy.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_microcopy", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "autofill/microcopy.ts" + }, + { + "label": "OVERLAY", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/microcopy.ts", + "source_location": "L23", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_microcopy_overlay", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "overlay" + }, + { + "label": "QUICK_SELECT", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/microcopy.ts", + "source_location": "L64", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_microcopy_quick_select", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "quick_select" + }, + { + "label": "SAVE_BAR", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/microcopy.ts", + "source_location": "L93", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_microcopy_save_bar", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "save_bar" + }, + { + "label": "ERRORS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/microcopy.ts", + "source_location": "L130", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_microcopy_errors", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "errors" + }, + { + "label": "SETTINGS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/microcopy.ts", + "source_location": "L159", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_microcopy_settings", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "settings" + }, + { + "label": "CONSENT_EXPLAINER", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/microcopy.ts", + "source_location": "L185", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_microcopy_consent_explainer", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "consent_explainer" + }, + { + "label": "moduleManifest.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/moduleManifest.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_modulemanifest", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "modulemanifest.ts" + }, + { + "label": "ModuleDescriptor", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/moduleManifest.ts", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_modulemanifest_moduledescriptor", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "moduledescriptor" + }, + { + "label": "ModuleId", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/moduleManifest.ts", + "source_location": "L36", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_modulemanifest_moduleid", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "moduleid" + }, + { + "label": "ModuleLayer", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/moduleManifest.ts", + "source_location": "L84", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_modulemanifest_modulelayer", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "modulelayer" + }, + { + "label": "MODULE_MANIFEST", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/moduleManifest.ts", + "source_location": "L96", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_modulemanifest_module_manifest", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "module_manifest" + }, + { + "label": "IMPORT_RULES", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/moduleManifest.ts", + "source_location": "L393", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_modulemanifest_import_rules", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "import_rules" + }, + { + "label": "ImportRule", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/moduleManifest.ts", + "source_location": "L412", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_modulemanifest_importrule", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "importrule" + }, + { + "label": "RefactorPhase", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/moduleManifest.ts", + "source_location": "L458", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_modulemanifest_refactorphase", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "refactorphase" + }, + { + "label": "REFACTOR_PHASES", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/moduleManifest.ts", + "source_location": "L466", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_modulemanifest_refactor_phases", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "refactor_phases" + }, + { + "label": "validateDependencies()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/moduleManifest.ts", + "source_location": "L534", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_modulemanifest_validatedependencies", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "validatedependencies()" + }, + { + "label": "getRefactorTargets()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/moduleManifest.ts", + "source_location": "L558", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_modulemanifest_getrefactortargets", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "getrefactortargets()" + }, + { + "label": "mutationGuard.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/mutationGuard.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_mutationguard", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "mutationguard.ts" + }, + { + "label": "GuardViolation", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/mutationGuard.ts", + "source_location": "L38", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_mutationguard_guardviolation", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "guardviolation" + }, + { + "label": "ElementSnapshot", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/mutationGuard.ts", + "source_location": "L48", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_mutationguard_elementsnapshot", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "elementsnapshot" + }, + { + "label": "GuardStatus", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/mutationGuard.ts", + "source_location": "L63", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_mutationguard_guardstatus", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "guardstatus" + }, + { + "label": "MutationGuardHandle", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/mutationGuard.ts", + "source_location": "L70", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_mutationguard_mutationguardhandle", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "mutationguardhandle" + }, + { + "label": "WATCHED_ATTRS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/mutationGuard.ts", + "source_location": "L94", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_mutationguard_watched_attrs", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "watched_attrs" + }, + { + "label": "attachGuard()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/mutationGuard.ts", + "source_location": "L109", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_mutationguard_attachguard", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "attachguard()" + }, + { + "label": "captureSnapshot()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/mutationGuard.ts", + "source_location": "L302", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_mutationguard_capturesnapshot", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "capturesnapshot()" + }, + { + "label": "readAttrs()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/mutationGuard.ts", + "source_location": "L319", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_mutationguard_readattrs", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "readattrs()" + }, + { + "label": "roundToGrid()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/mutationGuard.ts", + "source_location": "L335", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_mutationguard_roundtogrid", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "roundtogrid()" + }, + { + "label": "fnv1a()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/mutationGuard.ts", + "source_location": "L343", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_mutationguard_fnv1a", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "fnv1a()" + }, + { + "label": "buildParentChainSignature()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/mutationGuard.ts", + "source_location": "L356", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_mutationguard_buildparentchainsignature", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "buildparentchainsignature()" + }, + { + "label": "overlayManager.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "overlaymanager.ts" + }, + { + "label": "UserDecision", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L43", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_overlaymanager_userdecision", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "userdecision" + }, + { + "label": "MaskState", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L49", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_overlaymanager_maskstate", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "maskstate" + }, + { + "label": "Placement", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L52", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_overlaymanager_placement", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "placement" + }, + { + "label": "FIELD_ICONS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L58", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_overlaymanager_field_icons", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "field_icons" + }, + { + "label": "getFieldIcon()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L79", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_overlaymanager_getfieldicon", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "getfieldicon()" + }, + { + "label": "getFieldLabel()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L84", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_overlaymanager_getfieldlabel", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "getfieldlabel()" + }, + { + "label": "_maskStates", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L126", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_overlaymanager_maskstates", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "_maskstates" + }, + { + "label": "_clipboardTimers", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L132", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_overlaymanager_clipboardtimers", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "_clipboardtimers" + }, + { + "label": "showOverlay()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L153", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_overlaymanager_showoverlay", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "showoverlay()" + }, + { + "label": "hideOverlay()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L224", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_overlaymanager_hideoverlay", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "hideoverlay()" + }, + { + "label": "isOverlayVisible()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L237", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_overlaymanager_isoverlayvisible", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "isoverlayvisible()" + }, + { + "label": "getActiveSessionId()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L245", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_overlaymanager_getactivesessionid", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "getactivesessionid()" + }, + { + "label": "checkMutationGuard()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L258", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_overlaymanager_checkmutationguard", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "checkmutationguard()" + }, + { + "label": "mount()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L269", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_overlaymanager_mount", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "mount()" + }, + { + "label": "teardownInternal()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L317", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_overlaymanager_teardowninternal", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "teardowninternal()" + }, + { + "label": "removeHost()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L351", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_overlaymanager_removehost", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "removehost()" + }, + { + "label": "buildCard()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L363", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_overlaymanager_buildcard", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "buildcard()" + }, + { + "label": "buildHeader()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L388", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_overlaymanager_buildheader", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "buildheader()" + }, + { + "label": "buildFields()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L424", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_overlaymanager_buildfields", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "buildfields()" + }, + { + "label": "buildFieldRow()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L435", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_overlaymanager_buildfieldrow", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "buildfieldrow()" + }, + { + "label": "buildTrustToggle()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L499", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_overlaymanager_buildtrusttoggle", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "buildtrusttoggle()" + }, + { + "label": "buildFooter()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L522", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_overlaymanager_buildfooter", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "buildfooter()" + }, + { + "label": "positionOverlay()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L583", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_overlaymanager_positionoverlay", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "positionoverlay()" + }, + { + "label": "updateArrow()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L627", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_overlaymanager_updatearrow", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "updatearrow()" + }, + { + "label": "startPositionWatchdog()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L639", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_overlaymanager_startpositionwatchdog", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "startpositionwatchdog()" + }, + { + "label": "updateValueDisplay()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L687", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_overlaymanager_updatevaluedisplay", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "updatevaluedisplay()" + }, + { + "label": "refreshFieldDisplay()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L714", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_overlaymanager_refreshfielddisplay", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "refreshfielddisplay()" + }, + { + "label": "onToggleReveal()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L732", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_overlaymanager_ontogglereveal", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "ontogglereveal()" + }, + { + "label": "onPeekStart()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L760", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_overlaymanager_onpeekstart", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "onpeekstart()" + }, + { + "label": "onPeekEnd()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L778", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_overlaymanager_onpeekend", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "onpeekend()" + }, + { + "label": "onCopy()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L786", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_overlaymanager_oncopy", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "oncopy()" + }, + { + "label": "onInsert()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L866", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_overlaymanager_oninsert", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "oninsert()" + }, + { + "label": "onInsertClick()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L889", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_overlaymanager_oninsertclick", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "oninsertclick()" + }, + { + "label": "onCancel()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L949", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_overlaymanager_oncancel", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "oncancel()" + }, + { + "label": "onDocumentKeydown()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L967", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_overlaymanager_ondocumentkeydown", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "ondocumentkeydown()" + }, + { + "label": "onOutsideClick()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L1017", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_overlaymanager_onoutsideclick", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "onoutsideclick()" + }, + { + "label": "onCardKeydown()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L1029", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_overlaymanager_oncardkeydown", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "oncardkeydown()" + }, + { + "label": "startExpireTimer()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L1061", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_overlaymanager_startexpiretimer", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "startexpiretimer()" + }, + { + "label": "el()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L1079", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_overlaymanager_el", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "el()" + }, + { + "label": "getTrustCheckboxState()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L1087", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_overlaymanager_gettrustcheckboxstate", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "gettrustcheckboxstate()" + }, + { + "label": "_themeOverrides", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L1106", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_overlaymanager_themeoverrides", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "_themeoverrides" + }, + { + "label": "applyTheme()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L1108", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_overlaymanager_applytheme", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "applytheme()" + }, + { + "label": "getTokens()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L1124", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_overlaymanager_gettokens", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "gettokens()" + }, + { + "label": "IMPORTANT: This function MUST NOT be reachable from any code path that", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L863", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_overlaymanager_rationale_863", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "important: this function must not be reachable from any code path that" + }, + { + "label": "overlayStyles.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayStyles.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_overlaystyles", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "overlaystyles.ts" + }, + { + "label": "CSS_TOKENS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayStyles.ts", + "source_location": "L26", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_overlaystyles_css_tokens", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "css_tokens" + }, + { + "label": "CSSToken", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayStyles.ts", + "source_location": "L77", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_overlaystyles_csstoken", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "csstoken" + }, + { + "label": "buildOverlayCSS()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayStyles.ts", + "source_location": "L92", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_overlaystyles_buildoverlaycss", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "buildoverlaycss()" + }, + { + "label": "createOverlayStyleSheet()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayStyles.ts", + "source_location": "L503", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_overlaystyles_createoverlaystylesheet", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "createoverlaystylesheet()" + }, + { + "label": "mappingStore.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingStore.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_mappingstore", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "mappingstore.ts" + }, + { + "label": "saveMapping()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingStore.ts", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_savemapping", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "savemapping()" + }, + { + "label": "loadMapping()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingStore.ts", + "source_location": "L89", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_loadmapping", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "loadmapping()" + }, + { + "label": "deleteMapping()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingStore.ts", + "source_location": "L110", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_deletemapping", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "deletemapping()" + }, + { + "label": "createCredentialFromPageInput()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingStore.ts", + "source_location": "L147", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_createcredentialfrompageinput", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "createcredentialfrompageinput()" + }, + { + "label": "OriginCredential", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingStore.ts", + "source_location": "L202", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_origincredential", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "origincredential" + }, + { + "label": "findCredentialsForOrigin()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingStore.ts", + "source_location": "L214", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_findcredentialsfororigin", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "findcredentialsfororigin()" + }, + { + "label": "extractHostname()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingStore.ts", + "source_location": "L270", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_extracthostname", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "extracthostname()" + }, + { + "label": "domainsMatch()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingStore.ts", + "source_location": "L279", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_domainsmatch", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "domainsmatch()" + }, + { + "label": "mappingWizard.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingWizard.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "mappingwizard.ts" + }, + { + "label": "WizardResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingWizard.ts", + "source_location": "L32", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard_wizardresult", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "wizardresult" + }, + { + "label": "WizardHandle", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingWizard.ts", + "source_location": "L38", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard_wizardhandle", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "wizardhandle" + }, + { + "label": "WizardCompleteCallback", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingWizard.ts", + "source_location": "L43", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard_wizardcompletecallback", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "wizardcompletecallback" + }, + { + "label": "WizardCancelCallback", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingWizard.ts", + "source_location": "L44", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard_wizardcancelcallback", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "wizardcancelcallback" + }, + { + "label": "WizardOptions", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingWizard.ts", + "source_location": "L46", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard_wizardoptions", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "wizardoptions" + }, + { + "label": "WizardStep", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingWizard.ts", + "source_location": "L63", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard_wizardstep", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "wizardstep" + }, + { + "label": "showMappingWizard()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingWizard.ts", + "source_location": "L82", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard_showmappingwizard", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "showmappingwizard()" + }, + { + "label": "hideMappingWizard()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingWizard.ts", + "source_location": "L408", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard_hidemappingwizard", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "hidemappingwizard()" + }, + { + "label": "isMappingWizardVisible()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingWizard.ts", + "source_location": "L416", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard_ismappingwizardvisible", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "ismappingwizardvisible()" + }, + { + "label": "getStepInstruction()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingWizard.ts", + "source_location": "L424", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard_getstepinstruction", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "getstepinstruction()" + }, + { + "label": "isInCrossOriginFrame()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingWizard.ts", + "source_location": "L432", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard_isincrossoriginframe", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "isincrossoriginframe()" + }, + { + "label": "escapeHtml()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingWizard.ts", + "source_location": "L443", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard_escapehtml", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "escapehtml()" + }, + { + "label": "buildWizardCSS()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingWizard.ts", + "source_location": "L460", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard_buildwizardcss", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "buildwizardcss()" + }, + { + "label": "qsoEngine.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "qsoengine.ts" + }, + { + "label": "QSO_RESULT_VERSION", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L54", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_qso_result_version", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "qso_result_version" + }, + { + "label": "QsoStatus", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L56", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_qsostatus", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "qsostatus" + }, + { + "label": "QSO_STATUSES", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L62", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_qso_statuses", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "qso_statuses" + }, + { + "label": "QsoErrorCode", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L66", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_qsoerrorcode", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "qsoerrorcode" + }, + { + "label": "QSO_ERROR_CODES", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L78", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_qso_error_codes", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "qso_error_codes" + }, + { + "label": "QsoBlockReason", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L84", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_qsoblockreason", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "qsoblockreason" + }, + { + "label": "blockReasonToErrorCode()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L97", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_blockreasontoerrorcode", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "blockreasontoerrorcode()" + }, + { + "label": "QsoState", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L111", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_qsostate", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "qsostate" + }, + { + "label": "QsoActionResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L131", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_qsoactionresult", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "qsoactionresult" + }, + { + "label": "isQsoResultV1()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L153", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_isqsoresultv1", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "isqsoresultv1()" + }, + { + "label": "buildQsoStateResult()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L178", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_buildqsostateresult", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "buildqsostateresult()" + }, + { + "label": "buildQsoFillActionResult()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L196", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_buildqsofillactionresult", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "buildqsofillactionresult()" + }, + { + "label": "mapFillErrorToCode()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L216", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_mapfillerrortocode", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "mapfillerrortocode()" + }, + { + "label": "QsoCandidate", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L230", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_qsocandidate", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "qsocandidate" + }, + { + "label": "QsoFillResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L251", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_qsofillresult", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "qsofillresult" + }, + { + "label": "resolveQsoState()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L274", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_resolveqsostate", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "resolveqsostate()" + }, + { + "label": "executeQsoFill()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L435", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_executeqsofill", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "executeqsofill()" + }, + { + "label": "blocked()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L604", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_blocked", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "blocked()" + }, + { + "label": "findBestCandidate()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L615", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_findbestcandidate", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "findbestcandidate()" + }, + { + "label": "itemToProfile()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L635", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_itemtoprofile", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "itemtoprofile()" + }, + { + "label": "categoryToSection()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L662", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_categorytosection", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "categorytosection()" + }, + { + "label": "sectionToKindPrefix()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L671", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_sectiontokindprefix", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "sectiontokindprefix()" + }, + { + "label": "mapFieldKeyToKind()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L680", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_mapfieldkeytokind", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "mapfieldkeytokind()" + }, + { + "label": "qsoIcon.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoIcon.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_qsoicon", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "qsoicon.ts" + }, + { + "label": "QsoIconVisualState", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoIcon.ts", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_qsoicon_qsoiconvisualstate", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "qsoiconvisualstate" + }, + { + "label": "QsoIconHandle", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoIcon.ts", + "source_location": "L25", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_qsoicon_qsoiconhandle", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "qsoiconhandle" + }, + { + "label": "QsoIconClickHandler", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoIcon.ts", + "source_location": "L34", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_qsoicon_qsoiconclickhandler", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "qsoiconclickhandler" + }, + { + "label": "showQsoIcon()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoIcon.ts", + "source_location": "L52", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_qsoicon_showqsoicon", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "showqsoicon()" + }, + { + "label": "hideQsoIcon()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoIcon.ts", + "source_location": "L134", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_qsoicon_hideqsoicon", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "hideqsoicon()" + }, + { + "label": "isQsoIconVisible()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoIcon.ts", + "source_location": "L142", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_qsoicon_isqsoiconvisible", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "isqsoiconvisible()" + }, + { + "label": "qsoStateToVisual()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoIcon.ts", + "source_location": "L147", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_qsoicon_qsostatetovisual", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "qsostatetovisual()" + }, + { + "label": "positionIcon()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoIcon.ts", + "source_location": "L161", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_qsoicon_positionicon", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "positionicon()" + }, + { + "label": "getTooltip()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoIcon.ts", + "source_location": "L185", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_qsoicon_gettooltip", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "gettooltip()" + }, + { + "label": "buildIconCSS()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoIcon.ts", + "source_location": "L195", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_qsoicon_buildiconcss", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "buildiconcss()" + }, + { + "label": "qsoPicker.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoPicker.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_qsopicker", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "qsopicker.ts" + }, + { + "label": "QsoPickerHandle", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoPicker.ts", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_qsopicker_qsopickerhandle", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "qsopickerhandle" + }, + { + "label": "QsoPickerSelectHandler", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoPicker.ts", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_qsopicker_qsopickerselecthandler", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "qsopickerselecthandler" + }, + { + "label": "showQsoPicker()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoPicker.ts", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_qsopicker_showqsopicker", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "showqsopicker()" + }, + { + "label": "hideQsoPicker()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoPicker.ts", + "source_location": "L197", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_qsopicker_hideqsopicker", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "hideqsopicker()" + }, + { + "label": "isQsoPickerVisible()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoPicker.ts", + "source_location": "L205", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_qsopicker_isqsopickervisible", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "isqsopickervisible()" + }, + { + "label": "buildPickerCSS()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoPicker.ts", + "source_location": "L213", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_qsopicker_buildpickercss", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "buildpickercss()" + }, + { + "label": "remapIcon.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapIcon.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_remapicon", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "remapicon.ts" + }, + { + "label": "RemapIconMode", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapIcon.ts", + "source_location": "L26", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_remapicon_remapiconmode", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "remapiconmode" + }, + { + "label": "RemapIconHandle", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapIcon.ts", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_remapicon_remapiconhandle", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "remapiconhandle" + }, + { + "label": "RemapIconClickHandler", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapIcon.ts", + "source_location": "L35", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_remapicon_remapiconclickhandler", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "remapiconclickhandler" + }, + { + "label": "showRemapIcon()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapIcon.ts", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_remapicon_showremapicon", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "showremapicon()" + }, + { + "label": "hideRemapIcon()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapIcon.ts", + "source_location": "L163", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_remapicon_hideremapicon", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "hideremapicon()" + }, + { + "label": "isRemapIconVisible()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapIcon.ts", + "source_location": "L171", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_remapicon_isremapiconvisible", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "isremapiconvisible()" + }, + { + "label": "getRemapIconMode()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapIcon.ts", + "source_location": "L176", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_remapicon_getremapiconmode", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "getremapiconmode()" + }, + { + "label": "positionNearAnchor()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapIcon.ts", + "source_location": "L185", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_remapicon_positionnearanchor", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "positionnearanchor()" + }, + { + "label": "applyMode()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapIcon.ts", + "source_location": "L208", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_remapicon_applymode", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "applymode()" + }, + { + "label": "buildRemapCSS()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapIcon.ts", + "source_location": "L222", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_remapicon_buildremapcss", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "buildremapcss()" + }, + { + "label": "remapManager.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "remapmanager.ts" + }, + { + "label": "RemapState", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L56", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_remapstate", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "remapstate" + }, + { + "label": "RemapDetectionResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L66", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_remapdetectionresult", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "remapdetectionresult" + }, + { + "label": "updateRemapState()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L107", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_updateremapstate", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "updateremapstate()" + }, + { + "label": "teardownRemap()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L222", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_teardownremap", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "teardownremap()" + }, + { + "label": "getRemapState()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L231", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_getremapstate", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "getremapstate()" + }, + { + "label": "handleRemapIconClick()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L243", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_handleremapiconclick", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "handleremapiconclick()" + }, + { + "label": "handleAddAndMap()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L269", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_handleaddandmap", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "handleaddandmap()" + }, + { + "label": "handleRemap()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L347", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_handleremap", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "handleremap()" + }, + { + "label": "startRemapWizard()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L382", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_startremapwizard", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "startremapwizard()" + }, + { + "label": "attemptQsoAfterRemap()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L445", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_attemptqsoafterremap", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "attemptqsoafterremap()" + }, + { + "label": "canExecuteQso()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L486", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_canexecuteqso", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "canexecuteqso()" + }, + { + "label": "hasNonEmptyLoginField()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L491", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_hasnonemptyloginfield", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "hasnonemptyloginfield()" + }, + { + "label": "idleDetection()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L501", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_idledetection", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "idledetection()" + }, + { + "label": "forgetMapping()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L516", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_forgetmapping", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "forgetmapping()" + }, + { + "label": "selectorStrategy.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "selectorstrategy.ts" + }, + { + "label": "ElementMapping", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L21", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_elementmapping", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "elementmapping" + }, + { + "label": "ElementSignature", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L31", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_elementsignature", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "elementsignature" + }, + { + "label": "LoginFormMapping", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L49", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_loginformmapping", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "loginformmapping" + }, + { + "label": "MappingValidationResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L67", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_mappingvalidationresult", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "mappingvalidationresult" + }, + { + "label": "ElementResolution", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L79", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_elementresolution", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "elementresolution" + }, + { + "label": "buildSelector()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L99", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_buildselector", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "buildselector()" + }, + { + "label": "buildSignature()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L145", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_buildsignature", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "buildsignature()" + }, + { + "label": "buildElementMapping()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L165", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_buildelementmapping", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "buildelementmapping()" + }, + { + "label": "validateMapping()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L189", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_validatemapping", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "validatemapping()" + }, + { + "label": "resolveElement()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L262", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_resolveelement", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "resolveelement()" + }, + { + "label": "findBySignatureFallback()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L288", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_findbysignaturefallback", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "findbysignaturefallback()" + }, + { + "label": "scoreSignatureMatch()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L333", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_scoresignaturematch", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "scoresignaturematch()" + }, + { + "label": "effectiveOrigin()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L388", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_effectiveorigin", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "effectiveorigin()" + }, + { + "label": "isElementUsable()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L393", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_iselementusable", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "iselementusable()" + }, + { + "label": "isInCrossOriginFrame()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L405", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_isincrossoriginframe", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "isincrossoriginframe()" + }, + { + "label": "cssEscape()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L417", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_cssescape", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "cssescape()" + }, + { + "label": "looksAutoGenerated()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L426", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_looksautogenerated", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "looksautogenerated()" + }, + { + "label": "hashFormAction()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L435", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_hashformaction", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "hashformaction()" + }, + { + "label": "computeFormDepth()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L451", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_computeformdepth", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "computeformdepth()" + }, + { + "label": "computeFormIndex()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L463", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_computeformindex", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "computeformindex()" + }, + { + "label": "qsoState.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qsoState.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qsostate", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "qsostate.ts" + }, + { + "label": "QsoMatchStatus", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qsoState.ts", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qsostate_qsomatchstatus", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "qsomatchstatus" + }, + { + "label": "QsoAutoMode", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qsoState.ts", + "source_location": "L26", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qsostate_qsoautomode", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "qsoautomode" + }, + { + "label": "QsoUiState", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qsoState.ts", + "source_location": "L39", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qsostate_qsouistate", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "qsouistate" + }, + { + "label": "resolveQsoUiState()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qsoState.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qsostate_resolveqsouistate", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "resolveqsouistate()" + }, + { + "label": "shouldShowQsoButton()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qsoState.ts", + "source_location": "L67", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qsostate_shouldshowqsobutton", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "shouldshowqsobutton()" + }, + { + "label": "shouldAutoSubmit()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/qsoState.ts", + "source_location": "L79", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_qsostate_shouldautosubmit", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "shouldautosubmit()" + }, + { + "label": "quickSelect.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_quickselect", + "community": 118, + "community_name": "Vault Autofill #118", + "norm_label": "quickselect.ts" + }, + { + "label": "QuickSelectResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L62", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_quickselect_quickselectresult", + "community": 118, + "community_name": "Vault Autofill #118", + "norm_label": "quickselectresult" + }, + { + "label": "QuickSelectOptions", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L67", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_quickselect_quickselectoptions", + "community": 118, + "community_name": "Vault Autofill #118", + "norm_label": "quickselectoptions" + }, + { + "label": "_results", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L83", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_quickselect_results", + "community": 118, + "community_name": "Vault Autofill #118", + "norm_label": "_results" + }, + { + "label": "showTriggerIcon()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L114", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_quickselect_showtriggericon", + "community": 118, + "community_name": "Vault Autofill #118", + "norm_label": "showtriggericon()" + }, + { + "label": "hideTriggerIcon()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L148", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_quickselect_hidetriggericon", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "hidetriggericon()" + }, + { + "label": "positionIcon()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L153", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_quickselect_positionicon", + "community": 118, + "community_name": "Vault Autofill #118", + "norm_label": "positionicon()" + }, + { + "label": "quickSelectOpen()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L178", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_quickselect_quickselectopen", + "community": 118, + "community_name": "Vault Autofill #118", + "norm_label": "quickselectopen()" + }, + { + "label": "quickSelectClose()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L215", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_quickselect_quickselectclose", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "quickselectclose()" + }, + { + "label": "quickSelectIsOpen()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L234", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_quickselect_quickselectisopen", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "quickselectisopen()" + }, + { + "label": "renderDropdown()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L242", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_quickselect_renderdropdown", + "community": 118, + "community_name": "Vault Autofill #118", + "norm_label": "renderdropdown()" + }, + { + "label": "positionDropdown()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L346", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_quickselect_positiondropdown", + "community": 118, + "community_name": "Vault Autofill #118", + "norm_label": "positiondropdown()" + }, + { + "label": "showInteractionPrompt()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L379", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_quickselect_showinteractionprompt", + "community": 118, + "community_name": "Vault Autofill #118", + "norm_label": "showinteractionprompt()" + }, + { + "label": "updateResults()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L393", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_quickselect_updateresults", + "community": 118, + "community_name": "Vault Autofill #118", + "norm_label": "updateresults()" + }, + { + "label": "appendShowAllButton()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L484", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_quickselect_appendshowallbutton", + "community": 118, + "community_name": "Vault Autofill #118", + "norm_label": "appendshowallbutton()" + }, + { + "label": "handleKeyDown()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L516", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_quickselect_handlekeydown", + "community": 118, + "community_name": "Vault Autofill #118", + "norm_label": "handlekeydown()" + }, + { + "label": "setActiveItem()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L561", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_quickselect_setactiveitem", + "community": 118, + "community_name": "Vault Autofill #118", + "norm_label": "setactiveitem()" + }, + { + "label": "scrollItemIntoView()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L577", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_quickselect_scrollitemintoview", + "community": 118, + "community_name": "Vault Autofill #118", + "norm_label": "scrollitemintoview()" + }, + { + "label": "selectItem()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L584", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_quickselect_selectitem", + "community": 118, + "community_name": "Vault Autofill #118", + "norm_label": "selectitem()" + }, + { + "label": "resolveAndClose()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L594", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_quickselect_resolveandclose", + "community": 118, + "community_name": "Vault Autofill #118", + "norm_label": "resolveandclose()" + }, + { + "label": "registerShortcut()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L636", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_quickselect_registershortcut", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "registershortcut()" + }, + { + "label": "unregisterShortcut()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L652", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_quickselect_unregistershortcut", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "unregistershortcut()" + }, + { + "label": "categoryIcon()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L670", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_quickselect_categoryicon", + "community": 118, + "community_name": "Vault Autofill #118", + "norm_label": "categoryicon()" + }, + { + "label": "buildIconCSS()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L687", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_quickselect_buildiconcss", + "community": 118, + "community_name": "Vault Autofill #118", + "norm_label": "buildiconcss()" + }, + { + "label": "buildDropdownCSS()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L719", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_quickselect_builddropdowncss", + "community": 118, + "community_name": "Vault Autofill #118", + "norm_label": "builddropdowncss()" + }, + { + "label": "escapeHtml()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L901", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_quickselect_escapehtml", + "community": 118, + "community_name": "Vault Autofill #118", + "norm_label": "escapehtml()" + }, + { + "label": "saveBar.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_savebar", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "savebar.ts" + }, + { + "label": "SaveDecision", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L39", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_savebar_savedecision", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "savedecision" + }, + { + "label": "ExistingMatch", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L47", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_savebar_existingmatch", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "existingmatch" + }, + { + "label": "SaveBarOptions", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L55", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_savebar_savebaroptions", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "savebaroptions" + }, + { + "label": "showSaveBar()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L85", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_savebar_showsavebar", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "showsavebar()" + }, + { + "label": "hideSaveBar()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L109", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_savebar_hidesavebar", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "hidesavebar()" + }, + { + "label": "isSaveBarVisible()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L122", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_savebar_issavebarvisible", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "issavebarvisible()" + }, + { + "label": "showDiskIcon()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L130", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_savebar_showdiskicon", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "showdiskicon()" + }, + { + "label": "hideDiskIcon()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L165", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_savebar_hidediskicon", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "hidediskicon()" + }, + { + "label": "positionIcon()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L177", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_savebar_positionicon", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "positionicon()" + }, + { + "label": "showSaveDialog()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L207", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_savebar_showsavedialog", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "showsavedialog()" + }, + { + "label": "hideSaveDialog()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L355", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_savebar_hidesavedialog", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "hidesavedialog()" + }, + { + "label": "resolveAndClose()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L367", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_savebar_resolveandclose", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "resolveandclose()" + }, + { + "label": "buildExistingMatchSection()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L377", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_savebar_buildexistingmatchsection", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "buildexistingmatchsection()" + }, + { + "label": "getSelectedMatch()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L406", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_savebar_getselectedmatch", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "getselectedmatch()" + }, + { + "label": "trapFocus()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L416", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_savebar_trapfocus", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "trapfocus()" + }, + { + "label": "buildIconCSS()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L455", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_savebar_buildiconcss", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "buildiconcss()" + }, + { + "label": "buildDialogCSS()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L492", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_savebar_builddialogcss", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "builddialogcss()" + }, + { + "label": "escapeHtml()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L737", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_savebar_escapehtml", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "escapehtml()" + }, + { + "label": "escapeAttr()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L741", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_savebar_escapeattr", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "escapeattr()" + }, + { + "label": "securityPosture.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/securityPosture.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_securityposture", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "securityposture.ts" + }, + { + "label": "SecurityProperty", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/securityPosture.ts", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_securityposture_securityproperty", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "securityproperty" + }, + { + "label": "SecurityCategory", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/securityPosture.ts", + "source_location": "L39", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_securityposture_securitycategory", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "securitycategory" + }, + { + "label": "SECURITY_PROPERTIES", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/securityPosture.ts", + "source_location": "L48", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_securityposture_security_properties", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "security_properties" + }, + { + "label": "PostureSummary", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/securityPosture.ts", + "source_location": "L350", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_securityposture_posturesummary", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "posturesummary" + }, + { + "label": "getPostureSummary()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/securityPosture.ts", + "source_location": "L357", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_securityposture_getposturesummary", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "getposturesummary()" + }, + { + "label": "submitGuard.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/submitGuard.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_submitguard", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "submitguard.ts" + }, + { + "label": "SubmitSafetyInput", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/submitGuard.ts", + "source_location": "L30", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_submitguard_submitsafetyinput", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "submitsafetyinput" + }, + { + "label": "SubmitCode", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/submitGuard.ts", + "source_location": "L51", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_submitguard_submitcode", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "submitcode" + }, + { + "label": "SubmitBlockReason", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/submitGuard.ts", + "source_location": "L61", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_submitguard_submitblockreason", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "submitblockreason" + }, + { + "label": "SUBMIT_BLOCK_REASONS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/submitGuard.ts", + "source_location": "L76", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_submitguard_submit_block_reasons", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "submit_block_reasons" + }, + { + "label": "SubmitResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/submitGuard.ts", + "source_location": "L83", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_submitguard_submitresult", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "submitresult" + }, + { + "label": "resolveSubmitTarget()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/submitGuard.ts", + "source_location": "L103", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_submitguard_resolvesubmittarget", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "resolvesubmittarget()" + }, + { + "label": "safeSubmitAfterFill()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/submitGuard.ts", + "source_location": "L138", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_submitguard_safesubmitafterfill", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "safesubmitafterfill()" + }, + { + "label": "validateFingerprintSync()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/submitGuard.ts", + "source_location": "L270", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_submitguard_validatefingerprintsync", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "validatefingerprintsync()" + }, + { + "label": "submitWatcher.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_submitwatcher", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "submitwatcher.ts" + }, + { + "label": "SAVE_BAR_TIMEOUT_MS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L48", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_submitwatcher_save_bar_timeout_ms", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "save_bar_timeout_ms" + }, + { + "label": "AUTH_URL_PATTERNS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L51", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_submitwatcher_auth_url_patterns", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "auth_url_patterns" + }, + { + "label": "PAYMENT_PATTERNS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L68", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_submitwatcher_payment_patterns", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "payment_patterns" + }, + { + "label": "_callbacks", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L84", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_submitwatcher_callbacks", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "_callbacks" + }, + { + "label": "_interactedPasswordFields", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L86", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_submitwatcher_interactedpasswordfields", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "_interactedpasswordfields" + }, + { + "label": "startSubmitWatcher()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L121", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_submitwatcher_startsubmitwatcher", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "startsubmitwatcher()" + }, + { + "label": "stopSubmitWatcher()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L176", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_submitwatcher_stopsubmitwatcher", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "stopsubmitwatcher()" + }, + { + "label": "onCredentialSubmit()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L231", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_submitwatcher_oncredentialsubmit", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "oncredentialsubmit()" + }, + { + "label": "handleFormSubmit()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L245", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_submitwatcher_handleformsubmit", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "handleformsubmit()" + }, + { + "label": "hookFetch()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L311", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_submitwatcher_hookfetch", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "hookfetch()" + }, + { + "label": "hookXHR()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L338", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_submitwatcher_hookxhr", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "hookxhr()" + }, + { + "label": "hookHistory()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L361", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_submitwatcher_hookhistory", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "hookhistory()" + }, + { + "label": "tryExtractFromActivePasswordField()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L384", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_submitwatcher_tryextractfromactivepasswordfield", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "tryextractfromactivepasswordfield()" + }, + { + "label": "findUsernameField()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L439", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_submitwatcher_findusernamefield", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "findusernamefield()" + }, + { + "label": "findUsernameNearPassword()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L483", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_submitwatcher_findusernamenearpassword", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "findusernamenearpassword()" + }, + { + "label": "selectPassword()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L507", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_submitwatcher_selectpassword", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "selectpassword()" + }, + { + "label": "classifyFormType()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L541", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_submitwatcher_classifyformtype", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "classifyformtype()" + }, + { + "label": "waitForRegistrationSuccess()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L570", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_submitwatcher_waitforregistrationsuccess", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "waitforregistrationsuccess()" + }, + { + "label": "commitPendingRegistration()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L655", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_submitwatcher_commitpendingregistration", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "commitpendingregistration()" + }, + { + "label": "cancelPendingRegistration()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L663", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_submitwatcher_cancelpendingregistration", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "cancelpendingregistration()" + }, + { + "label": "isPaymentForm()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L683", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_submitwatcher_ispaymentform", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "ispaymentform()" + }, + { + "label": "isPasswordField()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L707", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_submitwatcher_ispasswordfield", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "ispasswordfield()" + }, + { + "label": "isAuthURL()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L711", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_submitwatcher_isauthurl", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "isauthurl()" + }, + { + "label": "emitCredentials()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L719", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_submitwatcher_emitcredentials", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "emitcredentials()" + }, + { + "label": "simpleHash()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L742", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_submitwatcher_simplehash", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "simplehash()" + }, + { + "label": "tierConfig.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/tierConfig.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tierconfig", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "tierconfig.ts" + }, + { + "label": "AutofillTierConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/tierConfig.ts", + "source_location": "L27", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tierconfig_autofilltierconfig", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "autofilltierconfig" + }, + { + "label": "TierBand", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/tierConfig.ts", + "source_location": "L96", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tierconfig_tierband", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "tierband" + }, + { + "label": "CONSUMER_CONFIG", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/tierConfig.ts", + "source_location": "L102", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tierconfig_consumer_config", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "consumer_config" + }, + { + "label": "PRO_CONFIG", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/tierConfig.ts", + "source_location": "L145", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tierconfig_pro_config", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "pro_config" + }, + { + "label": "ENTERPRISE_CONFIG", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/tierConfig.ts", + "source_location": "L188", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tierconfig_enterprise_config", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "enterprise_config" + }, + { + "label": "tierToBand()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/tierConfig.ts", + "source_location": "L232", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tierconfig_tiertoband", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "tiertoband()" + }, + { + "label": "getConfigForTier()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/tierConfig.ts", + "source_location": "L252", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tierconfig_getconfigfortier", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "getconfigfortier()" + }, + { + "label": "TIER_CONFIGS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/tierConfig.ts", + "source_location": "L265", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tierconfig_tier_configs", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "tier_configs" + }, + { + "label": "AutofillConfigOverrides", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/tierConfig.ts", + "source_location": "L276", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tierconfig_autofillconfigoverrides", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "autofillconfigoverrides" + }, + { + "label": "mergeConfig()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/tierConfig.ts", + "source_location": "L290", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tierconfig_mergeconfig", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "mergeconfig()" + }, + { + "label": "ConfigDiff", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/tierConfig.ts", + "source_location": "L374", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tierconfig_configdiff", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "configdiff" + }, + { + "label": "diffConfig()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/tierConfig.ts", + "source_location": "L382", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_tierconfig_diffconfig", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "diffconfig()" + }, + { + "label": "toggleSync.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_togglesync", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "togglesync.ts" + }, + { + "label": "AutofillToggleState", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L36", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_togglesync_autofilltogglestate", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "autofilltogglestate" + }, + { + "label": "DEFAULT_TOGGLE_STATE", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L48", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_togglesync_default_toggle_state", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "default_toggle_state" + }, + { + "label": "MSG_TOGGLES_CHANGED", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L59", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_togglesync_msg_toggles_changed", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "msg_toggles_changed" + }, + { + "label": "MSG_TOGGLES_REQUEST", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L60", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_togglesync_msg_toggles_request", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "msg_toggles_request" + }, + { + "label": "MSG_VAULT_LOCK_STATE", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L61", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_togglesync_msg_vault_lock_state", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "msg_vault_lock_state" + }, + { + "label": "ToggleChangedMessage", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L63", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_togglesync_togglechangedmessage", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "togglechangedmessage" + }, + { + "label": "ToggleRequestMessage", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L68", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_togglesync_togglerequestmessage", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "togglerequestmessage" + }, + { + "label": "VaultLockStateMessage", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L72", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_togglesync_vaultlockstatemessage", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "vaultlockstatemessage" + }, + { + "label": "ToggleSyncMessage", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L77", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_togglesync_togglesyncmessage", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "togglesyncmessage" + }, + { + "label": "syncTogglesFromVault()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L100", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_togglesync_synctogglesfromvault", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "synctogglesfromvault()" + }, + { + "label": "pushToggleUpdate()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L127", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_togglesync_pushtoggleupdate", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "pushtoggleupdate()" + }, + { + "label": "markVaultLocked()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L149", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_togglesync_markvaultlocked", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "markvaultlocked()" + }, + { + "label": "handleToggleRequest()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L161", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_togglesync_handletogglerequest", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "handletogglerequest()" + }, + { + "label": "_contentState", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L174", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_togglesync_contentstate", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "_contentstate" + }, + { + "label": "_listeners", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L177", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_togglesync_listeners", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "_listeners" + }, + { + "label": "initContentToggleSync()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L188", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_togglesync_initcontenttogglesync", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "initcontenttogglesync()" + }, + { + "label": "getToggles()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L218", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_togglesync_gettoggles", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "gettoggles()" + }, + { + "label": "getEffectiveToggles()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L231", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_togglesync_geteffectivetoggles", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "geteffectivetoggles()" + }, + { + "label": "isAutofillActive()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L241", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_togglesync_isautofillactive", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "isautofillactive()" + }, + { + "label": "onToggleChange()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L251", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_togglesync_ontogglechange", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "ontogglechange()" + }, + { + "label": "requestTogglesFromBackground()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L259", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_togglesync_requesttogglesfrombackground", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "requesttogglesfrombackground()" + }, + { + "label": "notifyListeners()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L278", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_togglesync_notifylisteners", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "notifylisteners()" + }, + { + "label": "readToggleCache()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L293", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_togglesync_readtogglecache", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "readtogglecache()" + }, + { + "label": "writeToggleCache()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L319", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_togglesync_writetogglecache", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "writetogglecache()" + }, + { + "label": "broadcastToggleChange()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L335", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_togglesync_broadcasttogglechange", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "broadcasttogglechange()" + }, + { + "label": "vaultIndex.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_vaultindex", + "community": 118, + "community_name": "Vault Autofill #118", + "norm_label": "vaultindex.ts" + }, + { + "label": "IndexEntry", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L48", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_vaultindex_indexentry", + "community": 118, + "community_name": "Vault Autofill #118", + "norm_label": "indexentry" + }, + { + "label": "SearchResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L71", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_vaultindex_searchresult", + "community": 118, + "community_name": "Vault Autofill #118", + "norm_label": "searchresult" + }, + { + "label": "_entries", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L83", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_vaultindex_entries", + "community": 118, + "community_name": "Vault Autofill #118", + "norm_label": "_entries" + }, + { + "label": "buildIndex()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L114", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_vaultindex_buildindex", + "community": 118, + "community_name": "Vault Autofill #118", + "norm_label": "buildindex()" + }, + { + "label": "searchIndex()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L146", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_vaultindex_searchindex", + "community": 118, + "community_name": "Vault Autofill #118", + "norm_label": "searchindex()" + }, + { + "label": "clearIndex()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L160", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_vaultindex_clearindex", + "community": 32, + "community_name": "Vault Autofill QSO", + "norm_label": "clearindex()" + }, + { + "label": "invalidateIndex()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L177", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_vaultindex_invalidateindex", + "community": 118, + "community_name": "Vault Autofill #118", + "norm_label": "invalidateindex()" + }, + { + "label": "hasEntries()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L185", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_vaultindex_hasentries", + "community": 118, + "community_name": "Vault Autofill #118", + "norm_label": "hasentries()" + }, + { + "label": "indexSize()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L195", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_vaultindex_indexsize", + "community": 118, + "community_name": "Vault Autofill #118", + "norm_label": "indexsize()" + }, + { + "label": "isIndexStale()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L207", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_vaultindex_isindexstale", + "community": 118, + "community_name": "Vault Autofill #118", + "norm_label": "isindexstale()" + }, + { + "label": "itemToEntry()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L225", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_vaultindex_itemtoentry", + "community": 118, + "community_name": "Vault Autofill #118", + "norm_label": "itemtoentry()" + }, + { + "label": "extractUsername()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L251", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_vaultindex_extractusername", + "community": 118, + "community_name": "Vault Autofill #118", + "norm_label": "extractusername()" + }, + { + "label": "maskUsername()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L269", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_vaultindex_maskusername", + "community": 118, + "community_name": "Vault Autofill #118", + "norm_label": "maskusername()" + }, + { + "label": "usernameSearchHint()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L287", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_vaultindex_usernamesearchhint", + "community": 118, + "community_name": "Vault Autofill #118", + "norm_label": "usernamesearchhint()" + }, + { + "label": "tokenize()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L305", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_vaultindex_tokenize", + "community": 118, + "community_name": "Vault Autofill #118", + "norm_label": "tokenize()" + }, + { + "label": "scoreEntry()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L325", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_vaultindex_scoreentry", + "community": 118, + "community_name": "Vault Autofill #118", + "norm_label": "scoreentry()" + }, + { + "label": "rankEmpty()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L393", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_vaultindex_rankempty", + "community": 118, + "community_name": "Vault Autofill #118", + "norm_label": "rankempty()" + }, + { + "label": "searchIndexFiltered()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L435", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_vaultindex_searchindexfiltered", + "community": 118, + "community_name": "Vault Autofill #118", + "norm_label": "searchindexfiltered()" + }, + { + "label": "hasOriginMatches()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L486", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_vaultindex_hasoriginmatches", + "community": 118, + "community_name": "Vault Autofill #118", + "norm_label": "hasoriginmatches()" + }, + { + "label": "webMcpAdapter.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_webmcpadapter_test", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "webmcpadapter.test.ts" + }, + { + "label": "makeInput()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.test.ts", + "source_location": "L136", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_webmcpadapter_test_makeinput", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "makeinput()" + }, + { + "label": "makeVaultItem()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.test.ts", + "source_location": "L144", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_webmcpadapter_test_makevaultitem", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "makevaultitem()" + }, + { + "label": "makeScanResult()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.test.ts", + "source_location": "L161", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_webmcpadapter_test_makescanresult", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "makescanresult()" + }, + { + "label": "VALID_PARAMS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.test.ts", + "source_location": "L176", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_webmcpadapter_test_valid_params", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "valid_params" + }, + { + "label": "webMcpAdapter.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "webmcpadapter.ts" + }, + { + "label": "WebMcpFillPreviewParams", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L48", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_webmcpadapter_webmcpfillpreviewparams", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "webmcpfillpreviewparams" + }, + { + "label": "WebMcpErrorCode", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L62", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_webmcpadapter_webmcperrorcode", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "webmcperrorcode" + }, + { + "label": "WEBMCP_ERROR_CODES", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L76", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_webmcpadapter_webmcp_error_codes", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "webmcp_error_codes" + }, + { + "label": "BgWebMcpErrorCode", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L92", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_webmcpadapter_bgwebmcperrorcode", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "bgwebmcperrorcode" + }, + { + "label": "BG_WEBMCP_ERROR_CODES", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L102", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_webmcpadapter_bg_webmcp_error_codes", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "bg_webmcp_error_codes" + }, + { + "label": "ALL_WEBMCP_ERROR_CODES", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L117", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_webmcpadapter_all_webmcp_error_codes", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "all_webmcp_error_codes" + }, + { + "label": "WebMcpAdapterResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L122", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_webmcpadapter_webmcpadapterresult", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "webmcpadapterresult" + }, + { + "label": "WEBMCP_RESULT_VERSION", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L153", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_webmcpadapter_webmcp_result_version", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "webmcp_result_version" + }, + { + "label": "isWebMcpResultV1()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L170", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_webmcpadapter_iswebmcpresultv1", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "iswebmcpresultv1()" + }, + { + "label": "VALID_TARGET_TAGS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L200", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_webmcpadapter_valid_target_tags", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "valid_target_tags" + }, + { + "label": "handleWebMcpFillPreviewRequest()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L215", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_webmcpadapter_handlewebmcpfillpreviewrequest", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "handlewebmcpfillpreviewrequest()" + }, + { + "label": "ValidationResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L438", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_webmcpadapter_validationresult", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "validationresult" + }, + { + "label": "validateParams()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L443", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_webmcpadapter_validateparams", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "validateparams()" + }, + { + "label": "ResolvedTarget", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L483", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_webmcpadapter_resolvedtarget", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "resolvedtarget" + }, + { + "label": "ScanMeta", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L489", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_webmcpadapter_scanmeta", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "scanmeta" + }, + { + "label": "ResolveResult", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L496", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_webmcpadapter_resolveresult", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "resolveresult" + }, + { + "label": "resolveTargets()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L511", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_webmcpadapter_resolvetargets", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "resolvetargets()" + }, + { + "label": "resolveFromHints()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L521", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_webmcpadapter_resolvefromhints", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "resolvefromhints()" + }, + { + "label": "resolveFromScan()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L549", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_webmcpadapter_resolvefromscan", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "resolvefromscan()" + }, + { + "label": "itemToProfile()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L590", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_webmcpadapter_itemtoprofile", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "itemtoprofile()" + }, + { + "label": "categoryToSection()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L619", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_webmcpadapter_categorytosection", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "categorytosection()" + }, + { + "label": "sectionToKindPrefix()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L628", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_webmcpadapter_sectiontokindprefix", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "sectiontokindprefix()" + }, + { + "label": "mapFieldKeyToKind()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L638", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_webmcpadapter_mapfieldkeytokind", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "mapfieldkeytokind()" + }, + { + "label": "safeOrigin()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L685", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_webmcpadapter_safeorigin", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "safeorigin()" + }, + { + "label": "webMcpConstants.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpConstants.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_webmcpconstants", + "community": 46, + "community_name": "Background", + "norm_label": "webmcpconstants.ts" + }, + { + "label": "WEBMCP_RESULT_VERSION", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpConstants.ts", + "source_location": "L5", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_webmcpconstants_webmcp_result_version", + "community": 46, + "community_name": "Background", + "norm_label": "webmcp_result_version" + }, + { + "label": "writeBoundary.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/writeBoundary.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_writeboundary", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "writeboundary.ts" + }, + { + "label": "writesKillSwitch.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/writesKillSwitch.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_writeskillswitch", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "writeskillswitch.ts" + }, + { + "label": "areWritesDisabled()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/writesKillSwitch.ts", + "source_location": "L41", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_writeskillswitch_arewritesdisabled", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "arewritesdisabled()" + }, + { + "label": "initWritesKillSwitch()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/writesKillSwitch.ts", + "source_location": "L57", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_writeskillswitch_initwriteskillswitch", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "initwriteskillswitch()" + }, + { + "label": "setWritesDisabled()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/writesKillSwitch.ts", + "source_location": "L86", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_writeskillswitch_setwritesdisabled", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "setwritesdisabled()" + }, + { + "label": "WritesDisabledListener", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/writesKillSwitch.ts", + "source_location": "L107", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_writeskillswitch_writesdisabledlistener", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "writesdisabledlistener" + }, + { + "label": "_listeners", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/writesKillSwitch.ts", + "source_location": "L108", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_writeskillswitch_listeners", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "_listeners" + }, + { + "label": "onWritesDisabledChange()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/writesKillSwitch.ts", + "source_location": "L114", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_writeskillswitch_onwritesdisabledchange", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "onwritesdisabledchange()" + }, + { + "label": "_notifyListeners()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/writesKillSwitch.ts", + "source_location": "L119", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_writeskillswitch_notifylisteners", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "_notifylisteners()" + }, + { + "label": "_testSetWritesDisabled()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/autofill/writesKillSwitch.ts", + "source_location": "L130", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_autofill_writeskillswitch_testsetwritesdisabled", + "community": 74, + "community_name": "Vault Autofill #74", + "norm_label": "_testsetwritesdisabled()" + }, + { + "label": "src/vault/capabilities.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/capabilities.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_capabilities", + "community": 73, + "community_name": "Vault #73", + "norm_label": "src/vault/capabilities.ts" + }, + { + "label": "hsContext/HsContextDocumentReader.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextDocumentReader.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentreader", + "community": 104, + "community_name": "Vault Hscontext", + "norm_label": "hscontext/hscontextdocumentreader.tsx" + }, + { + "label": "HsContextDocumentReaderProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextDocumentReader.tsx", + "source_location": "L16", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentreader_hscontextdocumentreaderprops", + "community": 104, + "community_name": "Vault Hscontext", + "norm_label": "hscontextdocumentreaderprops" + }, + { + "label": "HsContextDocumentReader()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextDocumentReader.tsx", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentreader_hscontextdocumentreader", + "community": 104, + "community_name": "Vault Hscontext", + "norm_label": "hscontextdocumentreader()" + }, + { + "label": "HsContextDocumentUpload.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextDocumentUpload.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentupload", + "community": 104, + "community_name": "Vault Hscontext", + "norm_label": "hscontextdocumentupload.tsx" + }, + { + "label": "triggerDownload()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextDocumentUpload.tsx", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentupload_triggerdownload", + "community": 104, + "community_name": "Vault Hscontext", + "norm_label": "triggerdownload()" + }, + { + "label": "suggestLabelFromFilename()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextDocumentUpload.tsx", + "source_location": "L46", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentupload_suggestlabelfromfilename", + "community": 104, + "community_name": "Vault Hscontext", + "norm_label": "suggestlabelfromfilename()" + }, + { + "label": "suggestTypeFromFilename()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextDocumentUpload.tsx", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentupload_suggesttypefromfilename", + "community": 104, + "community_name": "Vault Hscontext", + "norm_label": "suggesttypefromfilename()" + }, + { + "label": "Props", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextDocumentUpload.tsx", + "source_location": "L70", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentupload_props", + "community": 104, + "community_name": "Vault Hscontext", + "norm_label": "props" + }, + { + "label": "StatusBadge()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextDocumentUpload.tsx", + "source_location": "L81", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentupload_statusbadge", + "community": 104, + "community_name": "Vault Hscontext", + "norm_label": "statusbadge()" + }, + { + "label": "HsContextDocumentUpload()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextDocumentUpload.tsx", + "source_location": "L99", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentupload_hscontextdocumentupload", + "community": 104, + "community_name": "Vault Hscontext", + "norm_label": "hscontextdocumentupload()" + }, + { + "label": "HsContextProfileEditor.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor", + "community": 173, + "community_name": "Vault Hscontext Handshake", + "norm_label": "hscontextprofileeditor.tsx" + }, + { + "label": "Props", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L43", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor_props", + "community": 173, + "community_name": "Vault Hscontext Handshake", + "norm_label": "props" + }, + { + "label": "EMPTY_FIELDS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L50", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor_empty_fields", + "community": 173, + "community_name": "Vault Hscontext Handshake", + "norm_label": "empty_fields" + }, + { + "label": "EMPTY_CUSTOMS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L51", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor_empty_customs", + "community": 173, + "community_name": "Vault Hscontext Handshake", + "norm_label": "empty_customs" + }, + { + "label": "getCompanyFieldValue()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor_getcompanyfieldvalue", + "community": 173, + "community_name": "Vault Hscontext Handshake", + "norm_label": "getcompanyfieldvalue()" + }, + { + "label": "parseCompanyFieldsToPaymentMethods()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor_parsecompanyfieldstopaymentmethods", + "community": 173, + "community_name": "Vault Hscontext Handshake", + "norm_label": "parsecompanyfieldstopaymentmethods()" + }, + { + "label": "mapCompanyToProfileFields()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L91", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor_mapcompanytoprofilefields", + "community": 173, + "community_name": "Vault Hscontext Handshake", + "norm_label": "mapcompanytoprofilefields()" + }, + { + "label": "getCeoForContact()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L129", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor_getceoforcontact", + "community": 173, + "community_name": "Vault Hscontext Handshake", + "norm_label": "getceoforcontact()" + }, + { + "label": "DocumentIcon()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L136", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor_documenticon", + "community": 173, + "community_name": "Vault Hscontext Handshake", + "norm_label": "documenticon()" + }, + { + "label": "SectionCustomFieldsProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L147", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor_sectioncustomfieldsprops", + "community": 173, + "community_name": "Vault Hscontext Handshake", + "norm_label": "sectioncustomfieldsprops" + }, + { + "label": "SectionCustomFields()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L159", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor_sectioncustomfields", + "community": 173, + "community_name": "Vault Hscontext Handshake", + "norm_label": "sectioncustomfields()" + }, + { + "label": "HsContextProfileEditor()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L216", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor_hscontextprofileeditor", + "community": 173, + "community_name": "Vault Hscontext Handshake", + "norm_label": "hscontextprofileeditor()" + }, + { + "label": "HsContextProfileList.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileList.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontext_hscontextprofilelist", + "community": 104, + "community_name": "Vault Hscontext", + "norm_label": "hscontextprofilelist.tsx" + }, + { + "label": "Props", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileList.tsx", + "source_location": "L19", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontext_hscontextprofilelist_props", + "community": 104, + "community_name": "Vault Hscontext", + "norm_label": "props" + }, + { + "label": "HsContextProfileList()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileList.tsx", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontext_hscontextprofilelist_hscontextprofilelist", + "community": 104, + "community_name": "Vault Hscontext", + "norm_label": "hscontextprofilelist()" + }, + { + "label": "hsContextDraftLogic.test.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContext/__tests__/hsContextDraftLogic.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontext_tests_hscontextdraftlogic_test", + "community": 173, + "community_name": "Vault Hscontext Handshake", + "norm_label": "hscontextdraftlogic.test.ts" + }, + { + "label": "hsContextDraftLogic.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContext/hsContextDraftLogic.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontext_hscontextdraftlogic", + "community": 173, + "community_name": "Vault Hscontext Handshake", + "norm_label": "hscontextdraftlogic.ts" + }, + { + "label": "shouldDeleteDraftOnCancel()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContext/hsContextDraftLogic.ts", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontext_hscontextdraftlogic_shoulddeletedraftoncancel", + "community": 173, + "community_name": "Vault Hscontext Handshake", + "norm_label": "shoulddeletedraftoncancel()" + }, + { + "label": "resolveNameAfterDraftCreation()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContext/hsContextDraftLogic.ts", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontext_hscontextdraftlogic_resolvenameafterdraftcreation", + "community": 173, + "community_name": "Vault Hscontext Handshake", + "norm_label": "resolvenameafterdraftcreation()" + }, + { + "label": "vault/hsContextProfilesRpc.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontextprofilesrpc", + "community": 104, + "community_name": "Vault Hscontext", + "norm_label": "vault/hscontextprofilesrpc.ts" + }, + { + "label": "nextRpcId()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontextprofilesrpc_nextrpcid", + "community": 104, + "community_name": "Vault Hscontext", + "norm_label": "nextrpcid()" + }, + { + "label": "sendVaultRpc()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontextprofilesrpc_sendvaultrpc", + "community": 104, + "community_name": "Vault Hscontext", + "norm_label": "sendvaultrpc()" + }, + { + "label": "HsContextProfileSummary", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L59", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontextprofilesrpc_hscontextprofilesummary", + "community": 104, + "community_name": "Vault Hscontext", + "norm_label": "hscontextprofilesummary" + }, + { + "label": "PaymentMethodType", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L75", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontextprofilesrpc_paymentmethodtype", + "community": 104, + "community_name": "Vault Hscontext", + "norm_label": "paymentmethodtype" + }, + { + "label": "PaymentMethodBankAccount", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L77", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontextprofilesrpc_paymentmethodbankaccount", + "community": 104, + "community_name": "Vault Hscontext", + "norm_label": "paymentmethodbankaccount" + }, + { + "label": "PaymentMethodCreditCard", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L85", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontextprofilesrpc_paymentmethodcreditcard", + "community": 104, + "community_name": "Vault Hscontext", + "norm_label": "paymentmethodcreditcard" + }, + { + "label": "PaymentMethodPayPal", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L93", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontextprofilesrpc_paymentmethodpaypal", + "community": 104, + "community_name": "Vault Hscontext", + "norm_label": "paymentmethodpaypal" + }, + { + "label": "PaymentMethod", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L98", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontextprofilesrpc_paymentmethod", + "community": 104, + "community_name": "Vault Hscontext", + "norm_label": "paymentmethod" + }, + { + "label": "ProfileFields", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L100", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontextprofilesrpc_profilefields", + "community": 104, + "community_name": "Vault Hscontext", + "norm_label": "profilefields" + }, + { + "label": "CustomField", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L149", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontextprofilesrpc_customfield", + "community": 104, + "community_name": "Vault Hscontext", + "norm_label": "customfield" + }, + { + "label": "ProfileDocumentSummary", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L157", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontextprofilesrpc_profiledocumentsummary", + "community": 104, + "community_name": "Vault Hscontext", + "norm_label": "profiledocumentsummary" + }, + { + "label": "HsContextProfileDetail", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L173", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontextprofilesrpc_hscontextprofiledetail", + "community": 104, + "community_name": "Vault Hscontext", + "norm_label": "hscontextprofiledetail" + }, + { + "label": "CreateProfileInput", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L179", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontextprofilesrpc_createprofileinput", + "community": 104, + "community_name": "Vault Hscontext", + "norm_label": "createprofileinput" + }, + { + "label": "UpdateProfileInput", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L188", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontextprofilesrpc_updateprofileinput", + "community": 104, + "community_name": "Vault Hscontext", + "norm_label": "updateprofileinput" + }, + { + "label": "listHsProfiles()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L199", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontextprofilesrpc_listhsprofiles", + "community": 104, + "community_name": "Vault Hscontext", + "norm_label": "listhsprofiles()" + }, + { + "label": "getHsProfile()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L207", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontextprofilesrpc_gethsprofile", + "community": 173, + "community_name": "Vault Hscontext Handshake", + "norm_label": "gethsprofile()" + }, + { + "label": "createHsProfile()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L215", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontextprofilesrpc_createhsprofile", + "community": 173, + "community_name": "Vault Hscontext Handshake", + "norm_label": "createhsprofile()" + }, + { + "label": "updateHsProfile()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L223", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontextprofilesrpc_updatehsprofile", + "community": 173, + "community_name": "Vault Hscontext Handshake", + "norm_label": "updatehsprofile()" + }, + { + "label": "archiveHsProfile()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L234", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontextprofilesrpc_archivehsprofile", + "community": 104, + "community_name": "Vault Hscontext", + "norm_label": "archivehsprofile()" + }, + { + "label": "deleteHsProfile()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L238", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontextprofilesrpc_deletehsprofile", + "community": 104, + "community_name": "Vault Hscontext", + "norm_label": "deletehsprofile()" + }, + { + "label": "duplicateHsProfile()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L242", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontextprofilesrpc_duplicatehsprofile", + "community": 104, + "community_name": "Vault Hscontext", + "norm_label": "duplicatehsprofile()" + }, + { + "label": "arrayBufferToBase64()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L255", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontextprofilesrpc_arraybuffertobase64", + "community": 104, + "community_name": "Vault Hscontext", + "norm_label": "arraybuffertobase64()" + }, + { + "label": "uploadHsProfileDocument()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L273", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontextprofilesrpc_uploadhsprofiledocument", + "community": 104, + "community_name": "Vault Hscontext", + "norm_label": "uploadhsprofiledocument()" + }, + { + "label": "updateHsProfileDocumentMeta()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L301", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontextprofilesrpc_updatehsprofiledocumentmeta", + "community": 104, + "community_name": "Vault Hscontext", + "norm_label": "updatehsprofiledocumentmeta()" + }, + { + "label": "deleteHsProfileDocument()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L312", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontextprofilesrpc_deletehsprofiledocument", + "community": 104, + "community_name": "Vault Hscontext", + "norm_label": "deletehsprofiledocument()" + }, + { + "label": "getHsOwnerDocumentContent()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L321", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontextprofilesrpc_gethsownerdocumentcontent", + "community": 104, + "community_name": "Vault Hscontext", + "norm_label": "gethsownerdocumentcontent()" + }, + { + "label": "requestOriginalDocument()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L339", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontextprofilesrpc_requestoriginaldocument", + "community": 104, + "community_name": "Vault Hscontext", + "norm_label": "requestoriginaldocument()" + }, + { + "label": "requestLinkOpenApproval()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L355", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontextprofilesrpc_requestlinkopenapproval", + "community": 104, + "community_name": "Vault Hscontext", + "norm_label": "requestlinkopenapproval()" + }, + { + "label": "saveAnthropicApiKey()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L374", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontextprofilesrpc_saveanthropicapikey", + "community": 104, + "community_name": "Vault Hscontext", + "norm_label": "saveanthropicapikey()" + }, + { + "label": "hasAnthropicApiKey()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L381", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontextprofilesrpc_hasanthropicapikey", + "community": 104, + "community_name": "Vault Hscontext", + "norm_label": "hasanthropicapikey()" + }, + { + "label": "removeAnthropicApiKey()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L392", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontextprofilesrpc_removeanthropicapikey", + "community": 104, + "community_name": "Vault Hscontext", + "norm_label": "removeanthropicapikey()" + }, + { + "label": "retryExtractionWithVision()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L401", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontextprofilesrpc_retryextractionwithvision", + "community": 104, + "community_name": "Vault Hscontext", + "norm_label": "retryextractionwithvision()" + }, + { + "label": "getDocumentPageCount()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L414", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontextprofilesrpc_getdocumentpagecount", + "community": 104, + "community_name": "Vault Hscontext", + "norm_label": "getdocumentpagecount()" + }, + { + "label": "getDocumentPage()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L422", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontextprofilesrpc_getdocumentpage", + "community": 104, + "community_name": "Vault Hscontext", + "norm_label": "getdocumentpage()" + }, + { + "label": "getDocumentPageList()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L430", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontextprofilesrpc_getdocumentpagelist", + "community": 104, + "community_name": "Vault Hscontext", + "norm_label": "getdocumentpagelist()" + }, + { + "label": "getDocumentFullText()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L440", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontextprofilesrpc_getdocumentfulltext", + "community": 104, + "community_name": "Vault Hscontext", + "norm_label": "getdocumentfulltext()" + }, + { + "label": "DocumentSearchMatch", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L448", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontextprofilesrpc_documentsearchmatch", + "community": 104, + "community_name": "Vault Hscontext", + "norm_label": "documentsearchmatch" + }, + { + "label": "searchDocumentPages()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L454", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_hscontextprofilesrpc_searchdocumentpages", + "community": 104, + "community_name": "Vault Hscontext", + "norm_label": "searchdocumentpages()" + }, + { + "label": "src/vault/types.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/types.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_types", + "community": 73, + "community_name": "Vault #73", + "norm_label": "src/vault/types.ts" + }, + { + "label": "ContainerType", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/types.ts", + "source_location": "L37", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_types_containertype", + "community": 73, + "community_name": "Vault #73", + "norm_label": "containertype" + }, + { + "label": "ItemCategory", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/types.ts", + "source_location": "L38", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_types_itemcategory", + "community": 73, + "community_name": "Vault #73", + "norm_label": "itemcategory" + }, + { + "label": "FieldType", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/types.ts", + "source_location": "L39", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_types_fieldtype", + "community": 73, + "community_name": "Vault #73", + "norm_label": "fieldtype" + }, + { + "label": "StandardFieldDef", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/types.ts", + "source_location": "L42", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_types_standardfielddef", + "community": 73, + "community_name": "Vault #73", + "norm_label": "standardfielddef" + }, + { + "label": "IDENTITY_STANDARD_FIELDS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/types.ts", + "source_location": "L51", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_types_identity_standard_fields", + "community": 73, + "community_name": "Vault #73", + "norm_label": "identity_standard_fields" + }, + { + "label": "PAYMENT_FIELDS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/types.ts", + "source_location": "L70", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_types_payment_fields", + "community": 73, + "community_name": "Vault #73", + "norm_label": "payment_fields" + }, + { + "label": "COMPANY_STANDARD_FIELDS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/types.ts", + "source_location": "L83", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_types_company_standard_fields", + "community": 73, + "community_name": "Vault #73", + "norm_label": "company_standard_fields" + }, + { + "label": "PASSWORD_STANDARD_FIELDS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/types.ts", + "source_location": "L102", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_types_password_standard_fields", + "community": 73, + "community_name": "Vault #73", + "norm_label": "password_standard_fields" + }, + { + "label": "AUTOMATION_SECRET_STANDARD_FIELDS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/types.ts", + "source_location": "L111", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_types_automation_secret_standard_fields", + "community": 73, + "community_name": "Vault #73", + "norm_label": "automation_secret_standard_fields" + }, + { + "label": "DOCUMENT_STANDARD_FIELDS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/types.ts", + "source_location": "L122", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_types_document_standard_fields", + "community": 73, + "community_name": "Vault #73", + "norm_label": "document_standard_fields" + }, + { + "label": "HANDSHAKE_CONTEXT_STANDARD_FIELDS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/types.ts", + "source_location": "L127", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_types_handshake_context_standard_fields", + "community": 73, + "community_name": "Vault #73", + "norm_label": "handshake_context_standard_fields" + }, + { + "label": "Container", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/types.ts", + "source_location": "L134", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_types_container", + "community": 73, + "community_name": "Vault #73", + "norm_label": "container" + }, + { + "label": "Field", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/types.ts", + "source_location": "L143", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_types_field", + "community": 73, + "community_name": "Vault #73", + "norm_label": "field" + }, + { + "label": "VaultItem", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/types.ts", + "source_location": "L151", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_types_vaultitem", + "community": 118, + "community_name": "Vault Autofill #118", + "norm_label": "vaultitem" + }, + { + "label": "VaultStatus", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/types.ts", + "source_location": "L163", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_types_vaultstatus", + "community": 73, + "community_name": "Vault #73", + "norm_label": "vaultstatus" + }, + { + "label": "CategoryNode", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/types.ts", + "source_location": "L181", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_types_categorynode", + "community": 73, + "community_name": "Vault #73", + "norm_label": "categorynode" + }, + { + "label": "VaultSettings", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/types.ts", + "source_location": "L192", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_types_vaultsettings", + "community": 73, + "community_name": "Vault #73", + "norm_label": "vaultsettings" + }, + { + "label": "vault-ui-typescript.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_vault_ui_typescript", + "community": 98, + "community_name": "Vault #98", + "norm_label": "vault-ui-typescript.ts" + }, + { + "label": "canUseHsContextProfiles()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_vault_ui_typescript_canusehscontextprofiles", + "community": 98, + "community_name": "Vault #98", + "norm_label": "canusehscontextprofiles()" + }, + { + "label": "unmountHsContextProfileList()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_vault_ui_typescript_unmounthscontextprofilelist", + "community": 98, + "community_name": "Vault #98", + "norm_label": "unmounthscontextprofilelist()" + }, + { + "label": "mountHsContextProfileListInListArea()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L49", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_vault_ui_typescript_mounthscontextprofilelistinlistarea", + "community": 98, + "community_name": "Vault #98", + "norm_label": "mounthscontextprofilelistinlistarea()" + }, + { + "label": "mountHsContextProfileListFullReplace()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L69", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_vault_ui_typescript_mounthscontextprofilelistfullreplace", + "community": 98, + "community_name": "Vault #98", + "norm_label": "mounthscontextprofilelistfullreplace()" + }, + { + "label": "VaultThemeName", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L99", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_vault_ui_typescript_vaultthemename", + "community": 98, + "community_name": "Vault #98", + "norm_label": "vaultthemename" + }, + { + "label": "detectVaultTheme()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L101", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_vault_ui_typescript_detectvaulttheme", + "community": 98, + "community_name": "Vault #98", + "norm_label": "detectvaulttheme()" + }, + { + "label": "VAULT_THEMES", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L111", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_vault_ui_typescript_vault_themes", + "community": 98, + "community_name": "Vault #98", + "norm_label": "vault_themes" + }, + { + "label": "applyVaultTheme()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L190", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_vault_ui_typescript_applyvaulttheme", + "community": 98, + "community_name": "Vault #98", + "norm_label": "applyvaulttheme()" + }, + { + "label": "ensureConnected()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L240", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_vault_ui_typescript_ensureconnected", + "community": 98, + "community_name": "Vault #98", + "norm_label": "ensureconnected()" + }, + { + "label": "restoreDashboardAfterDialogClose()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L251", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_vault_ui_typescript_restoredashboardafterdialogclose", + "community": 98, + "community_name": "Vault #98", + "norm_label": "restoredashboardafterdialogclose()" + }, + { + "label": "openVaultLightbox()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L260", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_vault_ui_typescript_openvaultlightbox", + "community": 98, + "community_name": "Vault #98", + "norm_label": "openvaultlightbox()" + }, + { + "label": "initVaultUI()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L438", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_vault_ui_typescript_initvaultui", + "community": 98, + "community_name": "Vault #98", + "norm_label": "initvaultui()" + }, + { + "label": "renderCreateVaultScreen()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L549", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_vault_ui_typescript_rendercreatevaultscreen", + "community": 98, + "community_name": "Vault #98", + "norm_label": "rendercreatevaultscreen()" + }, + { + "label": "renderUnlockScreen()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L853", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_vault_ui_typescript_renderunlockscreen", + "community": 98, + "community_name": "Vault #98", + "norm_label": "renderunlockscreen()" + }, + { + "label": "SIDEBAR_CATEGORY_CONFIG", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1054", + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_vault_ui_typescript_sidebar_category_config", + "community": 98, + "community_name": "Vault #98", + "norm_label": "sidebar_category_config" + }, + { + "label": "buildSidebarCategoriesHTML()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1069", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_vault_ui_typescript_buildsidebarcategorieshtml", + "community": 98, + "community_name": "Vault #98", + "norm_label": "buildsidebarcategorieshtml()" + }, + { + "label": "renderVaultDashboard()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1121", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_vault_ui_typescript_rendervaultdashboard", + "community": 98, + "community_name": "Vault #98", + "norm_label": "rendervaultdashboard()" + }, + { + "label": "loadVaultItemsByContainer()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1348", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_vault_ui_typescript_loadvaultitemsbycontainer", + "community": 98, + "community_name": "Vault #98", + "norm_label": "loadvaultitemsbycontainer()" + }, + { + "label": "renderItemsList()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1384", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_vault_ui_typescript_renderitemslist", + "community": 98, + "community_name": "Vault #98", + "norm_label": "renderitemslist()" + }, + { + "label": "loadVaultItems()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1388", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_vault_ui_typescript_loadvaultitems", + "community": 98, + "community_name": "Vault #98", + "norm_label": "loadvaultitems()" + }, + { + "label": "addAddButtonsToTree()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1422", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_vault_ui_typescript_addaddbuttonstotree", + "community": 98, + "community_name": "Vault #98", + "norm_label": "addaddbuttonstotree()" + }, + { + "label": "formatBytes()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1507", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_vault_ui_typescript_formatbytes", + "community": 98, + "community_name": "Vault #98", + "norm_label": "formatbytes()" + }, + { + "label": "loadDocumentsList()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1514", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_vault_ui_typescript_loaddocumentslist", + "community": 98, + "community_name": "Vault #98", + "norm_label": "loaddocumentslist()" + }, + { + "label": "renderDocumentRow()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1593", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_vault_ui_typescript_renderdocumentrow", + "community": 98, + "community_name": "Vault #98", + "norm_label": "renderdocumentrow()" + }, + { + "label": "downloadDocument()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1647", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_vault_ui_typescript_downloaddocument", + "community": 98, + "community_name": "Vault #98", + "norm_label": "downloaddocument()" + }, + { + "label": "renderDocumentUploadDialog()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1680", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_vault_ui_typescript_renderdocumentuploaddialog", + "community": 98, + "community_name": "Vault #98", + "norm_label": "renderdocumentuploaddialog()" + }, + { + "label": "loadHandshakeContextList()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1879", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_vault_ui_typescript_loadhandshakecontextlist", + "community": 98, + "community_name": "Vault #98", + "norm_label": "loadhandshakecontextlist()" + }, + { + "label": "renderHandshakeContextDialog()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L2033", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_vault_ui_typescript_renderhandshakecontextdialog", + "community": 98, + "community_name": "Vault #98", + "norm_label": "renderhandshakecontextdialog()" + }, + { + "label": "renderAttachEvalDialog()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L2268", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_vault_ui_typescript_renderattachevaldialog", + "community": 98, + "community_name": "Vault #98", + "norm_label": "renderattachevaldialog()" + }, + { + "label": "loadContainersIntoTree()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L2399", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_vault_ui_typescript_loadcontainersintotree", + "community": 98, + "community_name": "Vault #98", + "norm_label": "loadcontainersintotree()" + }, + { + "label": "loadContainerItems()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L2431", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_vault_ui_typescript_loadcontaineritems", + "community": 98, + "community_name": "Vault #98", + "norm_label": "loadcontaineritems()" + }, + { + "label": "renderContainerData()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L2454", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_vault_ui_typescript_rendercontainerdata", + "community": 98, + "community_name": "Vault #98", + "norm_label": "rendercontainerdata()" + }, + { + "label": "copyToClipboard()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L2578", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_vault_ui_typescript_copytoclipboard", + "community": 98, + "community_name": "Vault #98", + "norm_label": "copytoclipboard()" + }, + { + "label": "renderListItemRow()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L2605", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_vault_ui_typescript_renderlistitemrow", + "community": 98, + "community_name": "Vault #98", + "norm_label": "renderlistitemrow()" + }, + { + "label": "renderItemViewModal()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L2861", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_vault_ui_typescript_renderitemviewmodal", + "community": 98, + "community_name": "Vault #98", + "norm_label": "renderitemviewmodal()" + }, + { + "label": "renderItemCard()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L3027", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_vault_ui_typescript_renderitemcard", + "community": 98, + "community_name": "Vault #98", + "norm_label": "renderitemcard()" + }, + { + "label": "parsePaymentMethodsFromItem()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L3087", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_vault_ui_typescript_parsepaymentmethodsfromitem", + "community": 98, + "community_name": "Vault #98", + "norm_label": "parsepaymentmethodsfromitem()" + }, + { + "label": "renderAddDataDialog()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L3117", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_vault_ui_typescript_renderadddatadialog", + "community": 98, + "community_name": "Vault #98", + "norm_label": "renderadddatadialog()" + }, + { + "label": "renderEditDataDialog()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L4251", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_vault_ui_typescript_rendereditdatadialog", + "community": 98, + "community_name": "Vault #98", + "norm_label": "rendereditdatadialog()" + }, + { + "label": "parseDateOfBirth()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L4439", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_vault_ui_typescript_parsedateofbirth", + "community": 98, + "community_name": "Vault #98", + "norm_label": "parsedateofbirth()" + }, + { + "label": "escapeHtml()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L4454", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_vault_ui_typescript_escapehtml", + "community": 98, + "community_name": "Vault #98", + "norm_label": "escapehtml()" + }, + { + "label": "showSuccessNotification()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L4461", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_vault_ui_typescript_showsuccessnotification", + "community": 98, + "community_name": "Vault #98", + "norm_label": "showsuccessnotification()" + }, + { + "label": "renderSettingsScreen()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L4524", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_vault_ui_typescript_rendersettingsscreen", + "community": 98, + "community_name": "Vault #98", + "norm_label": "rendersettingsscreen()" + }, + { + "label": "loadOnboardingSeen()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L4806", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_vault_ui_typescript_loadonboardingseen", + "community": 98, + "community_name": "Vault #98", + "norm_label": "loadonboardingseen()" + }, + { + "label": "saveOnboardingSeen()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L4818", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_vault_ui_typescript_saveonboardingseen", + "community": 98, + "community_name": "Vault #98", + "norm_label": "saveonboardingseen()" + }, + { + "label": "saveAutoConsent()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L4828", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_vault_ui_typescript_saveautoconsent", + "community": 98, + "community_name": "Vault #98", + "norm_label": "saveautoconsent()" + }, + { + "label": "loadAutoConsentForVault()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L4838", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_vault_ui_typescript_loadautoconsentforvault", + "community": 98, + "community_name": "Vault #98", + "norm_label": "loadautoconsentforvault()" + }, + { + "label": "showVaultAutoConsentDialog()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L4854", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_vault_ui_typescript_showvaultautoconsentdialog", + "community": 98, + "community_name": "Vault #98", + "norm_label": "showvaultautoconsentdialog()" + }, + { + "label": "showQsoOnboardingIfNeeded()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L4992", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_vault_ui_typescript_showqsoonboardingifneeded", + "community": 98, + "community_name": "Vault #98", + "norm_label": "showqsoonboardingifneeded()" + }, + { + "label": "showQsoOnboardingDialog()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L5009", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vault_vault_ui_typescript_showqsoonboardingdialog", + "community": 98, + "community_name": "Vault #98", + "norm_label": "showqsoonboardingdialog()" + }, + { + "label": "extension-chromium/src/vite-env.d.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vite-env.d.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_vite_env_d", + "community": 573, + "community_name": "Viteenvd #573", + "norm_label": "extension-chromium/src/vite-env.d.ts" + }, + { + "label": "ImportMetaEnv", + "file_type": "code", + "source_file": "apps/extension-chromium/src/vite-env.d.ts", + "source_location": "L3", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_vite_env_d_importmetaenv", + "community": 573, + "community_name": "Viteenvd #573", + "norm_label": "importmetaenv" + }, + { + "label": "EmailProvidersSection.remoteSyncBadge.test.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/components/EmailProvidersSection.remoteSyncBadge.test.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_components_emailproviderssection_remotesyncbadge_test", + "community": 286, + "community_name": "Wrguard #286", + "norm_label": "emailproviderssection.remotesyncbadge.test.tsx" + }, + { + "label": "noop()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/components/EmailProvidersSection.remoteSyncBadge.test.tsx", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_components_emailproviderssection_remotesyncbadge_test_noop", + "community": 286, + "community_name": "Wrguard #286", + "norm_label": "noop()" + }, + { + "label": "gmailAccount", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/components/EmailProvidersSection.remoteSyncBadge.test.tsx", + "source_location": "L11", + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_components_emailproviderssection_remotesyncbadge_test_gmailaccount", + "community": 286, + "community_name": "Wrguard #286", + "norm_label": "gmailaccount" + }, + { + "label": "renderProviders()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/components/EmailProvidersSection.remoteSyncBadge.test.tsx", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_components_emailproviderssection_remotesyncbadge_test_renderproviders", + "community": 286, + "community_name": "Wrguard #286", + "norm_label": "renderproviders()" + }, + { + "label": "EmailProvidersSection.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/components/EmailProvidersSection.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_components_emailproviderssection", + "community": 286, + "community_name": "Wrguard #286", + "norm_label": "emailproviderssection.tsx" + }, + { + "label": "providerDisplayLabel()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/components/EmailProvidersSection.tsx", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_components_emailproviderssection_providerdisplaylabel", + "community": 286, + "community_name": "Wrguard #286", + "norm_label": "providerdisplaylabel()" + }, + { + "label": "RemoteSyncBadge()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/components/EmailProvidersSection.tsx", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_components_emailproviderssection_remotesyncbadge", + "community": 286, + "community_name": "Wrguard #286", + "norm_label": "remotesyncbadge()" + }, + { + "label": "EmailAccount", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/components/EmailProvidersSection.tsx", + "source_location": "L135", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_components_emailproviderssection_emailaccount", + "community": 227, + "community_name": "Wrguard #227", + "norm_label": "emailaccount" + }, + { + "label": "pausedRowNoteStyle()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/components/EmailProvidersSection.tsx", + "source_location": "L154", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_components_emailproviderssection_pausedrownotestyle", + "community": 286, + "community_name": "Wrguard #286", + "norm_label": "pausedrownotestyle()" + }, + { + "label": "accountConnectionBadge()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/components/EmailProvidersSection.tsx", + "source_location": "L165", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_components_emailproviderssection_accountconnectionbadge", + "community": 286, + "community_name": "Wrguard #286", + "norm_label": "accountconnectionbadge()" + }, + { + "label": "EmailProvidersSectionProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/components/EmailProvidersSection.tsx", + "source_location": "L192", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_components_emailproviderssection_emailproviderssectionprops", + "community": 286, + "community_name": "Wrguard #286", + "norm_label": "emailproviderssectionprops" + }, + { + "label": "EmailProvidersSection()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/components/EmailProvidersSection.tsx", + "source_location": "L224", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_components_emailproviderssection_emailproviderssection", + "community": 286, + "community_name": "Wrguard #286", + "norm_label": "emailproviderssection()" + }, + { + "label": "IngestionTopologyExplainer.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/components/IngestionTopologyExplainer.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_components_ingestiontopologyexplainer", + "community": 286, + "community_name": "Wrguard #286", + "norm_label": "ingestiontopologyexplainer.tsx" + }, + { + "label": "IngestionTopologyStatus", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/components/IngestionTopologyExplainer.tsx", + "source_location": "L38", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_components_ingestiontopologyexplainer_ingestiontopologystatus", + "community": 286, + "community_name": "Wrguard #286", + "norm_label": "ingestiontopologystatus" + }, + { + "label": "ExplainerScenario", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/components/IngestionTopologyExplainer.tsx", + "source_location": "L52", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_components_ingestiontopologyexplainer_explainerscenario", + "community": 286, + "community_name": "Wrguard #286", + "norm_label": "explainerscenario" + }, + { + "label": "deriveScenario()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/components/IngestionTopologyExplainer.tsx", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_components_ingestiontopologyexplainer_derivescenario", + "community": 286, + "community_name": "Wrguard #286", + "norm_label": "derivescenario()" + }, + { + "label": "IngestionTopologyExplainerProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/components/IngestionTopologyExplainer.tsx", + "source_location": "L99", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_components_ingestiontopologyexplainer_ingestiontopologyexplainerprops", + "community": 286, + "community_name": "Wrguard #286", + "norm_label": "ingestiontopologyexplainerprops" + }, + { + "label": "IngestionTopologyExplainer()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/components/IngestionTopologyExplainer.tsx", + "source_location": "L109", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_components_ingestiontopologyexplainer_ingestiontopologyexplainer", + "community": 286, + "community_name": "Wrguard #286", + "norm_label": "ingestiontopologyexplainer()" + }, + { + "label": "PoliciesOverviewSection.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/components/PoliciesOverviewSection.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_components_policiesoverviewsection", + "community": 227, + "community_name": "Wrguard #227", + "norm_label": "policiesoverviewsection.tsx" + }, + { + "label": "PoliciesOverviewSectionProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/components/PoliciesOverviewSection.tsx", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_components_policiesoverviewsection_policiesoverviewsectionprops", + "community": 227, + "community_name": "Wrguard #227", + "norm_label": "policiesoverviewsectionprops" + }, + { + "label": "PoliciesOverviewSection()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/components/PoliciesOverviewSection.tsx", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_components_policiesoverviewsection_policiesoverviewsection", + "community": 227, + "community_name": "Wrguard #227", + "norm_label": "policiesoverviewsection()" + }, + { + "label": "ProtectedSitesList.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/components/ProtectedSitesList.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_components_protectedsiteslist", + "community": 198, + "community_name": "Wrguard", + "norm_label": "protectedsiteslist.tsx" + }, + { + "label": "ProtectedSitesListProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/components/ProtectedSitesList.tsx", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_components_protectedsiteslist_protectedsiteslistprops", + "community": 198, + "community_name": "Wrguard", + "norm_label": "protectedsiteslistprops" + }, + { + "label": "SOURCE_LABELS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/components/ProtectedSitesList.tsx", + "source_location": "L17", + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_components_protectedsiteslist_source_labels", + "community": 198, + "community_name": "Wrguard", + "norm_label": "source_labels" + }, + { + "label": "ProtectedSitesList()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/components/ProtectedSitesList.tsx", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_components_protectedsiteslist_protectedsiteslist", + "community": 227, + "community_name": "Wrguard #227", + "norm_label": "protectedsiteslist()" + }, + { + "label": "ProtectedSitesSection.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/components/ProtectedSitesSection.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_components_protectedsitessection", + "community": 227, + "community_name": "Wrguard #227", + "norm_label": "protectedsitessection.tsx" + }, + { + "label": "ProtectedSitesSectionProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/components/ProtectedSitesSection.tsx", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_components_protectedsitessection_protectedsitessectionprops", + "community": 227, + "community_name": "Wrguard #227", + "norm_label": "protectedsitessectionprops" + }, + { + "label": "ProtectedSitesSection()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/components/ProtectedSitesSection.tsx", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_components_protectedsitessection_protectedsitessection", + "community": 227, + "community_name": "Wrguard #227", + "norm_label": "protectedsitessection()" + }, + { + "label": "RuntimeConfigLightbox.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/components/RuntimeConfigLightbox.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_components_runtimeconfiglightbox", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "runtimeconfiglightbox.tsx" + }, + { + "label": "RuntimeConfigLightboxProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/components/RuntimeConfigLightbox.tsx", + "source_location": "L26", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_components_runtimeconfiglightbox_runtimeconfiglightboxprops", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "runtimeconfiglightboxprops" + }, + { + "label": "RuntimeConfigLightbox()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/components/RuntimeConfigLightbox.tsx", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_components_runtimeconfiglightbox_runtimeconfiglightbox", + "community": 71, + "community_name": "UI Ingress Handshake", + "norm_label": "runtimeconfiglightbox()" + }, + { + "label": "RuntimeControlsSection.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/components/RuntimeControlsSection.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_components_runtimecontrolssection", + "community": 227, + "community_name": "Wrguard #227", + "norm_label": "runtimecontrolssection.tsx" + }, + { + "label": "RuntimeControlsSectionProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/components/RuntimeControlsSection.tsx", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_components_runtimecontrolssection_runtimecontrolssectionprops", + "community": 227, + "community_name": "Wrguard #227", + "norm_label": "runtimecontrolssectionprops" + }, + { + "label": "RuntimeControlsSection()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/components/RuntimeControlsSection.tsx", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_components_runtimecontrolssection_runtimecontrolssection", + "community": 227, + "community_name": "Wrguard #227", + "norm_label": "runtimecontrolssection()" + }, + { + "label": "WRGuardWorkspace.tsx", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/components/WRGuardWorkspace.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_components_wrguardworkspace", + "community": 227, + "community_name": "Wrguard #227", + "norm_label": "wrguardworkspace.tsx" + }, + { + "label": "WRGuardWorkspaceProps", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/components/WRGuardWorkspace.tsx", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_components_wrguardworkspace_wrguardworkspaceprops", + "community": 227, + "community_name": "Wrguard #227", + "norm_label": "wrguardworkspaceprops" + }, + { + "label": "WRGuardWorkspace()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/components/WRGuardWorkspace.tsx", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_components_wrguardworkspace_wrguardworkspace", + "community": 227, + "community_name": "Wrguard #227", + "norm_label": "wrguardworkspace()" + }, + { + "label": "wrguard/components/index.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/components/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_components_index", + "community": 227, + "community_name": "Wrguard #227", + "norm_label": "wrguard/components/index.ts" + }, + { + "label": "wrguard/index.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_index", + "community": 227, + "community_name": "Wrguard #227", + "norm_label": "wrguard/index.ts" + }, + { + "label": "overlayProtection.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/overlayProtection.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_overlayprotection", + "community": 294, + "community_name": "Wrguard #294", + "norm_label": "overlayprotection.ts" + }, + { + "label": "ProtectionState", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/overlayProtection.ts", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_overlayprotection_protectionstate", + "community": 294, + "community_name": "Wrguard #294", + "norm_label": "protectionstate" + }, + { + "label": "createBlockOverlay()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/overlayProtection.ts", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_overlayprotection_createblockoverlay", + "community": 294, + "community_name": "Wrguard #294", + "norm_label": "createblockoverlay()" + }, + { + "label": "logBypassEvent()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/overlayProtection.ts", + "source_location": "L126", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_overlayprotection_logbypassevent", + "community": 294, + "community_name": "Wrguard #294", + "norm_label": "logbypassevent()" + }, + { + "label": "protectLinks()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/overlayProtection.ts", + "source_location": "L147", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_overlayprotection_protectlinks", + "community": 294, + "community_name": "Wrguard #294", + "norm_label": "protectlinks()" + }, + { + "label": "protectAttachments()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/overlayProtection.ts", + "source_location": "L197", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_overlayprotection_protectattachments", + "community": 294, + "community_name": "Wrguard #294", + "norm_label": "protectattachments()" + }, + { + "label": "protectMedia()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/overlayProtection.ts", + "source_location": "L246", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_overlayprotection_protectmedia", + "community": 294, + "community_name": "Wrguard #294", + "norm_label": "protectmedia()" + }, + { + "label": "protectAutomationTriggers()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/overlayProtection.ts", + "source_location": "L294", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_overlayprotection_protectautomationtriggers", + "community": 294, + "community_name": "Wrguard #294", + "norm_label": "protectautomationtriggers()" + }, + { + "label": "initializeOverlayProtection()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/overlayProtection.ts", + "source_location": "L336", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_overlayprotection_initializeoverlayprotection", + "community": 294, + "community_name": "Wrguard #294", + "norm_label": "initializeoverlayprotection()" + }, + { + "label": "runProtection()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/overlayProtection.ts", + "source_location": "L374", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_overlayprotection_runprotection", + "community": 294, + "community_name": "Wrguard #294", + "norm_label": "runprotection()" + }, + { + "label": "showProtectionIndicator()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/overlayProtection.ts", + "source_location": "L381", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_overlayprotection_showprotectionindicator", + "community": 294, + "community_name": "Wrguard #294", + "norm_label": "showprotectionindicator()" + }, + { + "label": "checkAndApplyProtection()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/overlayProtection.ts", + "source_location": "L419", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_overlayprotection_checkandapplyprotection", + "community": 294, + "community_name": "Wrguard #294", + "norm_label": "checkandapplyprotection()" + }, + { + "label": "disableProtection()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/overlayProtection.ts", + "source_location": "L442", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_overlayprotection_disableprotection", + "community": 294, + "community_name": "Wrguard #294", + "norm_label": "disableprotection()" + }, + { + "label": "wrguard/types.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/types.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_types", + "community": 198, + "community_name": "Wrguard", + "norm_label": "wrguard/types.ts" + }, + { + "label": "WRGUARD_BLOCKED_EMAIL_DOMAINS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/types.ts", + "source_location": "L56", + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_types_wrguard_blocked_email_domains", + "community": 198, + "community_name": "Wrguard", + "norm_label": "wrguard_blocked_email_domains" + }, + { + "label": "isBlockedEmailDomain()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/types.ts", + "source_location": "L67", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_types_isblockedemaildomain", + "community": 198, + "community_name": "Wrguard", + "norm_label": "isblockedemaildomain()" + }, + { + "label": "getBlockedEmailDomain()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/types.ts", + "source_location": "L74", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_types_getblockedemaildomain", + "community": 198, + "community_name": "Wrguard", + "norm_label": "getblockedemaildomain()" + }, + { + "label": "EmailProviderType", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/types.ts", + "source_location": "L85", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_types_emailprovidertype", + "community": 198, + "community_name": "Wrguard", + "norm_label": "emailprovidertype" + }, + { + "label": "ProviderConnectionStatus", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/types.ts", + "source_location": "L90", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_types_providerconnectionstatus", + "community": 198, + "community_name": "Wrguard", + "norm_label": "providerconnectionstatus" + }, + { + "label": "EmailProvider", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/types.ts", + "source_location": "L100", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_types_emailprovider", + "community": 198, + "community_name": "Wrguard", + "norm_label": "emailprovider" + }, + { + "label": "PROVIDER_CONFIG", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/types.ts", + "source_location": "L135", + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_types_provider_config", + "community": 198, + "community_name": "Wrguard", + "norm_label": "provider_config" + }, + { + "label": "ProtectedSiteSource", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/types.ts", + "source_location": "L180", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_types_protectedsitesource", + "community": 198, + "community_name": "Wrguard", + "norm_label": "protectedsitesource" + }, + { + "label": "ProtectedSite", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/types.ts", + "source_location": "L185", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_types_protectedsite", + "community": 198, + "community_name": "Wrguard", + "norm_label": "protectedsite" + }, + { + "label": "DEFAULT_PROTECTED_SITES", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/types.ts", + "source_location": "L208", + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_types_default_protected_sites", + "community": 198, + "community_name": "Wrguard", + "norm_label": "default_protected_sites" + }, + { + "label": "PolicyPosture", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/types.ts", + "source_location": "L242", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_types_policyposture", + "community": 198, + "community_name": "Wrguard", + "norm_label": "policyposture" + }, + { + "label": "PolicyOverview", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/types.ts", + "source_location": "L247", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_types_policyoverview", + "community": 198, + "community_name": "Wrguard", + "norm_label": "policyoverview" + }, + { + "label": "DEFAULT_POLICY_OVERVIEW", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/types.ts", + "source_location": "L281", + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_types_default_policy_overview", + "community": 198, + "community_name": "Wrguard", + "norm_label": "default_policy_overview" + }, + { + "label": "RuntimeConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/types.ts", + "source_location": "L310", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_types_runtimeconfig", + "community": 198, + "community_name": "Wrguard", + "norm_label": "runtimeconfig" + }, + { + "label": "DEFAULT_RUNTIME_CONFIG", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/types.ts", + "source_location": "L318", + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_types_default_runtime_config", + "community": 198, + "community_name": "Wrguard", + "norm_label": "default_runtime_config" + }, + { + "label": "WRGuardConfig", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/types.ts", + "source_location": "L333", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_types_wrguardconfig", + "community": 198, + "community_name": "Wrguard", + "norm_label": "wrguardconfig" + }, + { + "label": "WRGuardSection", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/types.ts", + "source_location": "L360", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_types_wrguardsection", + "community": 198, + "community_name": "Wrguard", + "norm_label": "wrguardsection" + }, + { + "label": "WRGUARD_SECTIONS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/types.ts", + "source_location": "L367", + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_types_wrguard_sections", + "community": 198, + "community_name": "Wrguard", + "norm_label": "wrguard_sections" + }, + { + "label": "SiteProtectionSettings", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/types.ts", + "source_location": "L382", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_types_siteprotectionsettings", + "community": 294, + "community_name": "Wrguard #294", + "norm_label": "siteprotectionsettings" + }, + { + "label": "DEFAULT_PROTECTION_SETTINGS", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/types.ts", + "source_location": "L398", + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_types_default_protection_settings", + "community": 294, + "community_name": "Wrguard #294", + "norm_label": "default_protection_settings" + }, + { + "label": "OverlayBlockEvent", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/types.ts", + "source_location": "L409", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_types_overlayblockevent", + "community": 294, + "community_name": "Wrguard #294", + "norm_label": "overlayblockevent" + }, + { + "label": "IMPORTANT: When adding new domains:", + "file_type": "rationale", + "source_file": "apps/extension-chromium/src/wrguard/types.ts", + "source_location": "L51", + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_types_rationale_51", + "community": 198, + "community_name": "Wrguard", + "norm_label": "important: when adding new domains:" + }, + { + "label": "useWRGuardStore.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/useWRGuardStore.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_usewrguardstore", + "community": 198, + "community_name": "Wrguard", + "norm_label": "usewrguardstore.ts" + }, + { + "label": "WRGuardState", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/useWRGuardStore.ts", + "source_location": "L35", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_usewrguardstore_wrguardstate", + "community": 198, + "community_name": "Wrguard", + "norm_label": "wrguardstate" + }, + { + "label": "createInitialState()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/useWRGuardStore.ts", + "source_location": "L149", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_usewrguardstore_createinitialstate", + "community": 198, + "community_name": "Wrguard", + "norm_label": "createinitialstate()" + }, + { + "label": "useWRGuardStore", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/useWRGuardStore.ts", + "source_location": "L166", + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_usewrguardstore_usewrguardstore", + "community": 227, + "community_name": "Wrguard #227", + "norm_label": "usewrguardstore" + }, + { + "label": "useActiveSection()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/useWRGuardStore.ts", + "source_location": "L455", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_usewrguardstore_useactivesection", + "community": 227, + "community_name": "Wrguard #227", + "norm_label": "useactivesection()" + }, + { + "label": "useEmailProviders()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/useWRGuardStore.ts", + "source_location": "L458", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_usewrguardstore_useemailproviders", + "community": 227, + "community_name": "Wrguard #227", + "norm_label": "useemailproviders()" + }, + { + "label": "useConnectedProviders()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/useWRGuardStore.ts", + "source_location": "L461", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_usewrguardstore_useconnectedproviders", + "community": 227, + "community_name": "Wrguard #227", + "norm_label": "useconnectedproviders()" + }, + { + "label": "useProtectedSites()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/useWRGuardStore.ts", + "source_location": "L464", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_usewrguardstore_useprotectedsites", + "community": 227, + "community_name": "Wrguard #227", + "norm_label": "useprotectedsites()" + }, + { + "label": "usePolicyOverview()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/useWRGuardStore.ts", + "source_location": "L467", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_usewrguardstore_usepolicyoverview", + "community": 227, + "community_name": "Wrguard #227", + "norm_label": "usepolicyoverview()" + }, + { + "label": "useIsWRGuardInitialized()", + "file_type": "code", + "source_file": "apps/extension-chromium/src/wrguard/useWRGuardStore.ts", + "source_location": "L470", + "_callable": true, + "_origin": "ast", + "id": "apps_extension_chromium_src_wrguard_usewrguardstore_useiswrguardinitialized", + "community": 227, + "community_name": "Wrguard #227", + "norm_label": "useiswrguardinitialized()" + }, + { + "label": "extension-chromium/tsconfig.json", + "file_type": "code", + "source_file": "apps/extension-chromium/tsconfig.json", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_tsconfig", + "community": 223, + "community_name": "Tsconfig", + "norm_label": "extension-chromium/tsconfig.json" + }, + { + "label": "compilerOptions", + "file_type": "code", + "source_file": "apps/extension-chromium/tsconfig.json", + "source_location": "L2", + "_origin": "ast", + "id": "apps_extension_chromium_tsconfig_compileroptions", + "community": 223, + "community_name": "Tsconfig", + "norm_label": "compileroptions" + }, + { + "label": "target", + "file_type": "code", + "source_file": "apps/extension-chromium/tsconfig.json", + "source_location": "L3", + "_origin": "ast", + "id": "apps_extension_chromium_tsconfig_compileroptions_target", + "community": 223, + "community_name": "Tsconfig", + "norm_label": "target" + }, + { + "label": "module", + "file_type": "code", + "source_file": "apps/extension-chromium/tsconfig.json", + "source_location": "L4", + "_origin": "ast", + "id": "apps_extension_chromium_tsconfig_compileroptions_module", + "community": 223, + "community_name": "Tsconfig", + "norm_label": "module" + }, + { + "label": "lib", + "file_type": "code", + "source_file": "apps/extension-chromium/tsconfig.json", + "source_location": "L5", + "_origin": "ast", + "id": "apps_extension_chromium_tsconfig_compileroptions_lib", + "community": 223, + "community_name": "Tsconfig", + "norm_label": "lib" + }, + { + "label": "ES2022", + "file_type": "concept", + "source_file": "apps/extension-chromium/tsconfig.json", + "source_location": "L5", + "_origin": "ast", + "id": "ref_es2022", + "community": 223, + "community_name": "Tsconfig", + "norm_label": "es2022" + }, + { + "label": "DOM", + "file_type": "concept", + "source_file": "apps/extension-chromium/tsconfig.json", + "source_location": "L5", + "_origin": "ast", + "id": "apps_extension_chromium_tsconfig_json_ref_dom", + "community": 223, + "community_name": "Tsconfig", + "norm_label": "dom" + }, + { + "label": "DOM.Iterable", + "file_type": "concept", + "source_file": "apps/extension-chromium/tsconfig.json", + "source_location": "L5", + "_origin": "ast", + "id": "apps_extension_chromium_tsconfig_json_ref_dom_iterable", + "community": 223, + "community_name": "Tsconfig", + "norm_label": "dom.iterable" + }, + { + "label": "strict", + "file_type": "code", + "source_file": "apps/extension-chromium/tsconfig.json", + "source_location": "L6", + "_origin": "ast", + "id": "apps_extension_chromium_tsconfig_compileroptions_strict", + "community": 223, + "community_name": "Tsconfig", + "norm_label": "strict" + }, + { + "label": "moduleResolution", + "file_type": "code", + "source_file": "apps/extension-chromium/tsconfig.json", + "source_location": "L7", + "_origin": "ast", + "id": "apps_extension_chromium_tsconfig_compileroptions_moduleresolution", + "community": 223, + "community_name": "Tsconfig", + "norm_label": "moduleresolution" + }, + { + "label": "types", + "file_type": "code", + "source_file": "apps/extension-chromium/tsconfig.json", + "source_location": "L8", + "_origin": "ast", + "id": "apps_extension_chromium_tsconfig_compileroptions_types", + "community": 223, + "community_name": "Tsconfig", + "norm_label": "types" + }, + { + "label": "chrome", + "file_type": "concept", + "source_file": "apps/extension-chromium/tsconfig.json", + "source_location": "L8", + "_origin": "ast", + "id": "ref_chrome", + "community": 223, + "community_name": "Tsconfig", + "norm_label": "chrome" + }, + { + "label": "jsx", + "file_type": "code", + "source_file": "apps/extension-chromium/tsconfig.json", + "source_location": "L9", + "_origin": "ast", + "id": "apps_extension_chromium_tsconfig_compileroptions_jsx", + "community": 223, + "community_name": "Tsconfig", + "norm_label": "jsx" + }, + { + "label": "allowSyntheticDefaultImports", + "file_type": "code", + "source_file": "apps/extension-chromium/tsconfig.json", + "source_location": "L10", + "_origin": "ast", + "id": "apps_extension_chromium_tsconfig_compileroptions_allowsyntheticdefaultimports", + "community": 223, + "community_name": "Tsconfig", + "norm_label": "allowsyntheticdefaultimports" + }, + { + "label": "esModuleInterop", + "file_type": "code", + "source_file": "apps/extension-chromium/tsconfig.json", + "source_location": "L11", + "_origin": "ast", + "id": "apps_extension_chromium_tsconfig_compileroptions_esmoduleinterop", + "community": 223, + "community_name": "Tsconfig", + "norm_label": "esmoduleinterop" + }, + { + "label": "skipLibCheck", + "file_type": "code", + "source_file": "apps/extension-chromium/tsconfig.json", + "source_location": "L12", + "_origin": "ast", + "id": "apps_extension_chromium_tsconfig_compileroptions_skiplibcheck", + "community": 223, + "community_name": "Tsconfig", + "norm_label": "skiplibcheck" + }, + { + "label": "baseUrl", + "file_type": "code", + "source_file": "apps/extension-chromium/tsconfig.json", + "source_location": "L13", + "_origin": "ast", + "id": "apps_extension_chromium_tsconfig_compileroptions_baseurl", + "community": 223, + "community_name": "Tsconfig", + "norm_label": "baseurl" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/extension-chromium/tsconfig.json", + "source_location": "L14", + "_origin": "ast", + "id": "apps_extension_chromium_tsconfig_compileroptions_paths", + "community": 223, + "community_name": "Tsconfig", + "norm_label": "paths" + }, + { + "label": "@shared/*", + "file_type": "code", + "source_file": "apps/extension-chromium/tsconfig.json", + "source_location": "L15", + "_origin": "ast", + "id": "apps_extension_chromium_tsconfig_paths_shared", + "community": 223, + "community_name": "Tsconfig", + "norm_label": "@shared/*" + }, + { + "label": "../../packages/shared/src/*", + "file_type": "concept", + "source_file": "apps/extension-chromium/tsconfig.json", + "source_location": "L15", + "_origin": "ast", + "id": "apps_extension_chromium_tsconfig_json_ref_packages_shared_src", + "community": 223, + "community_name": "Tsconfig", + "norm_label": "../../packages/shared/src/*" + }, + { + "label": "@shared-extension/*", + "file_type": "code", + "source_file": "apps/extension-chromium/tsconfig.json", + "source_location": "L16", + "_origin": "ast", + "id": "apps_extension_chromium_tsconfig_paths_shared_extension", + "community": 223, + "community_name": "Tsconfig", + "norm_label": "@shared-extension/*" + }, + { + "label": "../../packages/shared-extension/src/*", + "file_type": "concept", + "source_file": "apps/extension-chromium/tsconfig.json", + "source_location": "L16", + "_origin": "ast", + "id": "ref_packages_shared_extension_src", + "community": 223, + "community_name": "Tsconfig", + "norm_label": "../../packages/shared-extension/src/*" + }, + { + "label": "exclude", + "file_type": "code", + "source_file": "apps/extension-chromium/tsconfig.json", + "source_location": "L19", + "_origin": "ast", + "id": "apps_extension_chromium_tsconfig_exclude", + "community": 223, + "community_name": "Tsconfig", + "norm_label": "exclude" + }, + { + "label": "**/__tests__/**", + "file_type": "concept", + "source_file": "apps/extension-chromium/tsconfig.json", + "source_location": "L19", + "_origin": "ast", + "id": "apps_extension_chromium_tsconfig_json_ref_tests", + "community": 223, + "community_name": "Tsconfig", + "norm_label": "**/__tests__/**" + }, + { + "label": "extension-chromium/vite.config.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/vite.config.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_vite_config", + "community": 509, + "community_name": "Viteconfig #509", + "norm_label": "extension-chromium/vite.config.ts" + }, + { + "label": "__dirname", + "file_type": "code", + "source_file": "apps/extension-chromium/vite.config.ts", + "source_location": "L8", + "_origin": "ast", + "id": "apps_extension_chromium_vite_config_dirname", + "community": 509, + "community_name": "Viteconfig #509", + "norm_label": "__dirname" + }, + { + "label": "extension-chromium/vitest.config.ts", + "file_type": "code", + "source_file": "apps/extension-chromium/vitest.config.ts", + "source_location": "L1", + "_origin": "ast", + "id": "apps_extension_chromium_vitest_config", + "community": 610, + "community_name": "Vitestconfig #610", + "norm_label": "extension-chromium/vitest.config.ts" + }, + { + "label": "debug-session-data.js", + "file_type": "code", + "source_file": "debug-session-data.js", + "source_location": "L1", + "_origin": "ast", + "id": "debug_session_data", + "community": 492, + "community_name": "Debugsessiondata", + "norm_label": "debug-session-data.js" + }, + { + "label": "extensionActive", + "file_type": "code", + "source_file": "debug-session-data.js", + "source_location": "L8", + "_origin": "ast", + "id": "debug_session_data_extensionactive", + "community": 492, + "community_name": "Debugsessiondata", + "norm_label": "extensionactive" + }, + { + "label": "sessionKeys", + "file_type": "code", + "source_file": "debug-session-data.js", + "source_location": "L13", + "_origin": "ast", + "id": "debug_session_data_sessionkeys", + "community": 492, + "community_name": "Debugsessiondata", + "norm_label": "sessionkeys" + }, + { + "label": "agentModelKeys", + "file_type": "code", + "source_file": "debug-session-data.js", + "source_location": "L21", + "_origin": "ast", + "id": "debug_session_data_agentmodelkeys", + "community": 492, + "community_name": "Debugsessiondata", + "norm_label": "agentmodelkeys" + }, + { + "label": "eslint.config.mjs", + "file_type": "code", + "source_file": "eslint.config.mjs", + "source_location": "L1", + "_origin": "ast", + "id": "eslint_config", + "community": 450, + "community_name": "Eslintconfig", + "norm_label": "eslint.config.mjs" + }, + { + "label": "isRawInboxWrite()", + "file_type": "code", + "source_file": "eslint.config.mjs", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "id": "eslint_config_israwinboxwrite", + "community": 450, + "community_name": "Eslintconfig", + "norm_label": "israwinboxwrite()" + }, + { + "label": "isRawInboxSelect()", + "file_type": "code", + "source_file": "eslint.config.mjs", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "eslint_config_israwinboxselect", + "community": 450, + "community_name": "Eslintconfig", + "norm_label": "israwinboxselect()" + }, + { + "label": "extractPrepareSql()", + "file_type": "code", + "source_file": "eslint.config.mjs", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "id": "eslint_config_extractpreparesql", + "community": 450, + "community_name": "Eslintconfig", + "norm_label": "extractpreparesql()" + }, + { + "label": "beapCanonPlugin", + "file_type": "code", + "source_file": "eslint.config.mjs", + "source_location": "L62", + "_origin": "ast", + "id": "eslint_config_beapcanonplugin", + "community": 450, + "community_name": "Eslintconfig", + "norm_label": "beapcanonplugin" + }, + { + "label": "fix-tabs-and-text.mjs", + "file_type": "code", + "source_file": "fix-tabs-and-text.mjs", + "source_location": "L1", + "_origin": "ast", + "id": "fix_tabs_and_text", + "community": 536, + "community_name": "Fixtabsandtext", + "norm_label": "fix-tabs-and-text.mjs" + }, + { + "label": "s", + "file_type": "code", + "source_file": "fix-tabs-and-text.mjs", + "source_location": "L4", + "_origin": "ast", + "id": "fix_tabs_and_text_s", + "community": 536, + "community_name": "Fixtabsandtext", + "norm_label": "s" + }, + { + "label": "rep()", + "file_type": "code", + "source_file": "fix-tabs-and-text.mjs", + "source_location": "L6", + "_callable": true, + "_origin": "ast", + "id": "fix_tabs_and_text_rep", + "community": 536, + "community_name": "Fixtabsandtext", + "norm_label": "rep()" + }, + { + "label": "install-pgadmin.ps1", + "file_type": "code", + "source_file": "install-pgadmin.ps1", + "source_location": "L1", + "_origin": "ast", + "id": "install_pgadmin", + "community": 340, + "community_name": "Installpgadmin", + "norm_label": "install-pgadmin.ps1" + }, + { + "label": "Test-AdminElevation()", + "file_type": "code", + "source_file": "install-pgadmin.ps1", + "source_location": "L43", + "_origin": "ast", + "id": "install_pgadmin_test_adminelevation", + "community": 340, + "community_name": "Installpgadmin", + "norm_label": "test-adminelevation()" + }, + { + "label": "Test-WingetAvailable()", + "file_type": "code", + "source_file": "install-pgadmin.ps1", + "source_location": "L57", + "_origin": "ast", + "id": "install_pgadmin_test_wingetavailable", + "community": 340, + "community_name": "Installpgadmin", + "norm_label": "test-wingetavailable()" + }, + { + "label": "Install-Chocolatey()", + "file_type": "code", + "source_file": "install-pgadmin.ps1", + "source_location": "L66", + "_origin": "ast", + "id": "install_pgadmin_install_chocolatey", + "community": 340, + "community_name": "Installpgadmin", + "norm_label": "install-chocolatey()" + }, + { + "label": "Get-WingetPackageId()", + "file_type": "code", + "source_file": "install-pgadmin.ps1", + "source_location": "L97", + "_origin": "ast", + "id": "install_pgadmin_get_wingetpackageid", + "community": 340, + "community_name": "Installpgadmin", + "norm_label": "get-wingetpackageid()" + }, + { + "label": "Install-PgAdminWinget()", + "file_type": "code", + "source_file": "install-pgadmin.ps1", + "source_location": "L135", + "_origin": "ast", + "id": "install_pgadmin_install_pgadminwinget", + "community": 340, + "community_name": "Installpgadmin", + "norm_label": "install-pgadminwinget()" + }, + { + "label": "Install-PgAdminChoco()", + "file_type": "code", + "source_file": "install-pgadmin.ps1", + "source_location": "L178", + "_origin": "ast", + "id": "install_pgadmin_install_pgadminchoco", + "community": 340, + "community_name": "Installpgadmin", + "norm_label": "install-pgadminchoco()" + }, + { + "label": "Install-PostgreSQLWinget()", + "file_type": "code", + "source_file": "install-pgadmin.ps1", + "source_location": "L204", + "_origin": "ast", + "id": "install_pgadmin_install_postgresqlwinget", + "community": 340, + "community_name": "Installpgadmin", + "norm_label": "install-postgresqlwinget()" + }, + { + "label": "Install-PostgreSQLChoco()", + "file_type": "code", + "source_file": "install-pgadmin.ps1", + "source_location": "L244", + "_origin": "ast", + "id": "install_pgadmin_install_postgresqlchoco", + "community": 340, + "community_name": "Installpgadmin", + "norm_label": "install-postgresqlchoco()" + }, + { + "label": "New-DesktopShortcut()", + "file_type": "code", + "source_file": "install-pgadmin.ps1", + "source_location": "L273", + "_origin": "ast", + "id": "install_pgadmin_new_desktopshortcut", + "community": 340, + "community_name": "Installpgadmin", + "norm_label": "new-desktopshortcut()" + }, + { + "label": "Find-PgAdminExecutable()", + "file_type": "code", + "source_file": "install-pgadmin.ps1", + "source_location": "L301", + "_origin": "ast", + "id": "install_pgadmin_find_pgadminexecutable", + "community": 340, + "community_name": "Installpgadmin", + "norm_label": "find-pgadminexecutable()" + }, + { + "label": "New-ServersJsonFile()", + "file_type": "code", + "source_file": "install-pgadmin.ps1", + "source_location": "L339", + "_origin": "ast", + "id": "install_pgadmin_new_serversjsonfile", + "community": 340, + "community_name": "Installpgadmin", + "norm_label": "new-serversjsonfile()" + }, + { + "label": "package.json", + "file_type": "code", + "source_file": "package.json", + "source_location": "L1", + "_origin": "ast", + "id": "package", + "community": 341, + "community_name": "Community 341", + "norm_label": "package.json" + }, + { + "label": "name", + "file_type": "code", + "source_file": "package.json", + "source_location": "L2", + "_origin": "ast", + "id": "package_name", + "community": 341, + "community_name": "Community 341", + "norm_label": "name" + }, + { + "label": "private", + "file_type": "code", + "source_file": "package.json", + "source_location": "L3", + "_origin": "ast", + "id": "package_private", + "community": 341, + "community_name": "Community 341", + "norm_label": "private" + }, + { + "label": "packageManager", + "file_type": "code", + "source_file": "package.json", + "source_location": "L4", + "_origin": "ast", + "id": "package_packagemanager", + "community": 341, + "community_name": "Community 341", + "norm_label": "packagemanager" + }, + { + "label": "pnpm", + "file_type": "code", + "source_file": "package.json", + "source_location": "L5", + "_origin": "ast", + "id": "package_pnpm", + "community": 418, + "community_name": "Community 418", + "norm_label": "pnpm" + }, + { + "label": "onlyBuiltDependencies", + "file_type": "code", + "source_file": "package.json", + "source_location": "L6", + "_origin": "ast", + "id": "package_pnpm_onlybuiltdependencies", + "community": 418, + "community_name": "Community 418", + "norm_label": "onlybuiltdependencies" + }, + { + "label": "better-sqlite3", + "file_type": "concept", + "source_file": "package.json", + "source_location": "L6", + "_origin": "ast", + "id": "ref_better_sqlite3", + "community": 10, + "community_name": "Capsule Session Builder", + "norm_label": "better-sqlite3" + }, + { + "label": "canvas", + "file_type": "concept", + "source_file": "package.json", + "source_location": "L6", + "_origin": "ast", + "id": "ref_canvas", + "community": 418, + "community_name": "Community 418", + "norm_label": "canvas" + }, + { + "label": "electron", + "file_type": "concept", + "source_file": "package.json", + "source_location": "L6", + "_origin": "ast", + "id": "package_json_ref_electron", + "community": 418, + "community_name": "Community 418", + "norm_label": "electron" + }, + { + "label": "esbuild", + "file_type": "concept", + "source_file": "package.json", + "source_location": "L6", + "_origin": "ast", + "id": "ref_esbuild", + "community": 418, + "community_name": "Community 418", + "norm_label": "esbuild" + }, + { + "label": "overrides", + "file_type": "code", + "source_file": "package.json", + "source_location": "L12", + "_origin": "ast", + "id": "package_pnpm_overrides", + "community": 418, + "community_name": "Community 418", + "norm_label": "overrides" + }, + { + "label": "electron", + "file_type": "code", + "source_file": "package.json", + "source_location": "L13", + "_origin": "ast", + "id": "package_overrides_electron", + "community": 418, + "community_name": "Community 418", + "norm_label": "electron" + }, + { + "label": "version", + "file_type": "code", + "source_file": "package.json", + "source_location": "L16", + "_origin": "ast", + "id": "package_version", + "community": 341, + "community_name": "Community 341", + "norm_label": "version" + }, + { + "label": "scripts", + "file_type": "code", + "source_file": "package.json", + "source_location": "L17", + "_origin": "ast", + "id": "package_scripts", + "community": 194, + "community_name": "Community 194", + "norm_label": "scripts" + }, + { + "label": "postinstall", + "file_type": "code", + "source_file": "package.json", + "source_location": "L18", + "_origin": "ast", + "id": "package_scripts_postinstall", + "community": 194, + "community_name": "Community 194", + "norm_label": "postinstall" + }, + { + "label": "test", + "file_type": "code", + "source_file": "package.json", + "source_location": "L19", + "_origin": "ast", + "id": "package_scripts_test", + "community": 194, + "community_name": "Community 194", + "norm_label": "test" + }, + { + "label": "test:native-db", + "file_type": "code", + "source_file": "package.json", + "source_location": "L20", + "_origin": "ast", + "id": "package_scripts_test_native_db", + "community": 194, + "community_name": "Community 194", + "norm_label": "test:native-db" + }, + { + "label": "session:start", + "file_type": "code", + "source_file": "package.json", + "source_location": "L21", + "_origin": "ast", + "id": "package_scripts_session_start", + "community": 194, + "community_name": "Community 194", + "norm_label": "session:start" + }, + { + "label": "session:stop", + "file_type": "code", + "source_file": "package.json", + "source_location": "L22", + "_origin": "ast", + "id": "package_scripts_session_stop", + "community": 194, + "community_name": "Community 194", + "norm_label": "session:stop" + }, + { + "label": "session:build", + "file_type": "code", + "source_file": "package.json", + "source_location": "L23", + "_origin": "ast", + "id": "package_scripts_session_build", + "community": 194, + "community_name": "Community 194", + "norm_label": "session:build" + }, + { + "label": "session:configure-remote", + "file_type": "code", + "source_file": "package.json", + "source_location": "L24", + "_origin": "ast", + "id": "package_scripts_session_configure_remote", + "community": 194, + "community_name": "Community 194", + "norm_label": "session:configure-remote" + }, + { + "label": "test:email-lifecycle", + "file_type": "code", + "source_file": "package.json", + "source_location": "L25", + "_origin": "ast", + "id": "package_scripts_test_email_lifecycle", + "community": 194, + "community_name": "Community 194", + "norm_label": "test:email-lifecycle" + }, + { + "label": "test:webmcp", + "file_type": "code", + "source_file": "package.json", + "source_location": "L26", + "_origin": "ast", + "id": "package_scripts_test_webmcp", + "community": 194, + "community_name": "Community 194", + "norm_label": "test:webmcp" + }, + { + "label": "test:webmcp:ci", + "file_type": "code", + "source_file": "package.json", + "source_location": "L27", + "_origin": "ast", + "id": "package_scripts_test_webmcp_ci", + "community": 194, + "community_name": "Community 194", + "norm_label": "test:webmcp:ci" + }, + { + "label": "test:kill-switch", + "file_type": "code", + "source_file": "package.json", + "source_location": "L28", + "_origin": "ast", + "id": "package_scripts_test_kill_switch", + "community": 194, + "community_name": "Community 194", + "norm_label": "test:kill-switch" + }, + { + "label": "test:kill-switch:ci", + "file_type": "code", + "source_file": "package.json", + "source_location": "L29", + "_origin": "ast", + "id": "package_scripts_test_kill_switch_ci", + "community": 194, + "community_name": "Community 194", + "norm_label": "test:kill-switch:ci" + }, + { + "label": "test:redaction", + "file_type": "code", + "source_file": "package.json", + "source_location": "L30", + "_origin": "ast", + "id": "package_scripts_test_redaction", + "community": 194, + "community_name": "Community 194", + "norm_label": "test:redaction" + }, + { + "label": "test:scan-caps", + "file_type": "code", + "source_file": "package.json", + "source_location": "L31", + "_origin": "ast", + "id": "package_scripts_test_scan_caps", + "community": 194, + "community_name": "Community 194", + "norm_label": "test:scan-caps" + }, + { + "label": "test:quarantine", + "file_type": "code", + "source_file": "package.json", + "source_location": "L32", + "_origin": "ast", + "id": "package_scripts_test_quarantine", + "community": 194, + "community_name": "Community 194", + "norm_label": "test:quarantine" + }, + { + "label": "check:write-boundary", + "file_type": "code", + "source_file": "package.json", + "source_location": "L33", + "_origin": "ast", + "id": "package_scripts_check_write_boundary", + "community": 194, + "community_name": "Community 194", + "norm_label": "check:write-boundary" + }, + { + "label": "check:write-boundary:win", + "file_type": "code", + "source_file": "package.json", + "source_location": "L34", + "_origin": "ast", + "id": "package_scripts_check_write_boundary_win", + "community": 194, + "community_name": "Community 194", + "norm_label": "check:write-boundary:win" + }, + { + "label": "check:inbox-validator-gate", + "file_type": "code", + "source_file": "package.json", + "source_location": "L35", + "_origin": "ast", + "id": "package_scripts_check_inbox_validator_gate", + "community": 194, + "community_name": "Community 194", + "norm_label": "check:inbox-validator-gate" + }, + { + "label": "check:self-call-loopback", + "file_type": "code", + "source_file": "package.json", + "source_location": "L36", + "_origin": "ast", + "id": "package_scripts_check_self_call_loopback", + "community": 194, + "community_name": "Community 194", + "norm_label": "check:self-call-loopback" + }, + { + "label": "release:manifest", + "file_type": "code", + "source_file": "package.json", + "source_location": "L37", + "_origin": "ast", + "id": "package_scripts_release_manifest", + "community": 194, + "community_name": "Community 194", + "norm_label": "release:manifest" + }, + { + "label": "release:sign", + "file_type": "code", + "source_file": "package.json", + "source_location": "L38", + "_origin": "ast", + "id": "package_scripts_release_sign", + "community": 194, + "community_name": "Community 194", + "norm_label": "release:sign" + }, + { + "label": "release:verify", + "file_type": "code", + "source_file": "package.json", + "source_location": "L39", + "_origin": "ast", + "id": "package_scripts_release_verify", + "community": 194, + "community_name": "Community 194", + "norm_label": "release:verify" + }, + { + "label": "lint", + "file_type": "code", + "source_file": "package.json", + "source_location": "L40", + "_origin": "ast", + "id": "package_scripts_lint", + "community": 194, + "community_name": "Community 194", + "norm_label": "lint" + }, + { + "label": "format", + "file_type": "code", + "source_file": "package.json", + "source_location": "L41", + "_origin": "ast", + "id": "package_scripts_format", + "community": 194, + "community_name": "Community 194", + "norm_label": "format" + }, + { + "label": "format:check", + "file_type": "code", + "source_file": "package.json", + "source_location": "L42", + "_origin": "ast", + "id": "package_scripts_format_check", + "community": 194, + "community_name": "Community 194", + "norm_label": "format:check" + }, + { + "label": "handshake:repair-counterparty", + "file_type": "code", + "source_file": "package.json", + "source_location": "L43", + "_origin": "ast", + "id": "package_scripts_handshake_repair_counterparty", + "community": 194, + "community_name": "Community 194", + "norm_label": "handshake:repair-counterparty" + }, + { + "label": "test:regression-relay-handshake", + "file_type": "code", + "source_file": "package.json", + "source_location": "L44", + "_origin": "ast", + "id": "package_scripts_test_regression_relay_handshake", + "community": 194, + "community_name": "Community 194", + "norm_label": "test:regression-relay-handshake" + }, + { + "label": "devDependencies", + "file_type": "code", + "source_file": "package.json", + "source_location": "L46", + "_origin": "ast", + "id": "package_devdependencies", + "community": 260, + "community_name": "Community 260", + "norm_label": "devdependencies" + }, + { + "label": "eslint", + "file_type": "code", + "source_file": "package.json", + "source_location": "L47", + "_origin": "ast", + "id": "package_devdependencies_eslint", + "community": 260, + "community_name": "Community 260", + "norm_label": "eslint" + }, + { + "label": "eslint", + "file_type": "concept", + "source_file": "package.json", + "source_location": "L47", + "_origin": "ast", + "id": "package_json_eslint", + "community": 260, + "community_name": "Community 260", + "norm_label": "eslint" + }, + { + "label": "eslint-config-prettier", + "file_type": "code", + "source_file": "package.json", + "source_location": "L48", + "_origin": "ast", + "id": "package_devdependencies_eslint_config_prettier", + "community": 260, + "community_name": "Community 260", + "norm_label": "eslint-config-prettier" + }, + { + "label": "eslint-config-prettier", + "file_type": "concept", + "source_file": "package.json", + "source_location": "L48", + "_origin": "ast", + "id": "eslint_config_prettier", + "community": 260, + "community_name": "Community 260", + "norm_label": "eslint-config-prettier" + }, + { + "label": "husky", + "file_type": "code", + "source_file": "package.json", + "source_location": "L49", + "_origin": "ast", + "id": "package_devdependencies_husky", + "community": 260, + "community_name": "Community 260", + "norm_label": "husky" + }, + { + "label": "husky", + "file_type": "concept", + "source_file": "package.json", + "source_location": "L49", + "_origin": "ast", + "id": "husky", + "community": 260, + "community_name": "Community 260", + "norm_label": "husky" + }, + { + "label": "lint-staged", + "file_type": "code", + "source_file": "package.json", + "source_location": "L50", + "_origin": "ast", + "id": "package_devdependencies_lint_staged", + "community": 260, + "community_name": "Community 260", + "norm_label": "lint-staged" + }, + { + "label": "lint-staged", + "file_type": "concept", + "source_file": "package.json", + "source_location": "L50", + "_origin": "ast", + "id": "lint_staged", + "community": 260, + "community_name": "Community 260", + "norm_label": "lint-staged" + }, + { + "label": "prettier", + "file_type": "code", + "source_file": "package.json", + "source_location": "L51", + "_origin": "ast", + "id": "package_devdependencies_prettier", + "community": 260, + "community_name": "Community 260", + "norm_label": "prettier" + }, + { + "label": "prettier", + "file_type": "concept", + "source_file": "package.json", + "source_location": "L51", + "_origin": "ast", + "id": "prettier", + "community": 260, + "community_name": "Community 260", + "norm_label": "prettier" + }, + { + "label": "tsx", + "file_type": "code", + "source_file": "package.json", + "source_location": "L52", + "_origin": "ast", + "id": "package_devdependencies_tsx", + "community": 260, + "community_name": "Community 260", + "norm_label": "tsx" + }, + { + "label": "tsx", + "file_type": "concept", + "source_file": "package.json", + "source_location": "L52", + "_origin": "ast", + "id": "tsx", + "community": 260, + "community_name": "Community 260", + "norm_label": "tsx" + }, + { + "label": "typescript", + "file_type": "code", + "source_file": "package.json", + "source_location": "L53", + "_origin": "ast", + "id": "package_devdependencies_typescript", + "community": 260, + "community_name": "Community 260", + "norm_label": "typescript" + }, + { + "label": "typescript", + "file_type": "concept", + "source_file": "package.json", + "source_location": "L53", + "_origin": "ast", + "id": "package_json_typescript", + "community": 260, + "community_name": "Community 260", + "norm_label": "typescript" + }, + { + "label": "typescript-eslint", + "file_type": "code", + "source_file": "package.json", + "source_location": "L54", + "_origin": "ast", + "id": "package_devdependencies_typescript_eslint", + "community": 260, + "community_name": "Community 260", + "norm_label": "typescript-eslint" + }, + { + "label": "typescript-eslint", + "file_type": "concept", + "source_file": "package.json", + "source_location": "L54", + "_origin": "ast", + "id": "typescript_eslint", + "community": 260, + "community_name": "Community 260", + "norm_label": "typescript-eslint" + }, + { + "label": "vitest", + "file_type": "code", + "source_file": "package.json", + "source_location": "L55", + "_origin": "ast", + "id": "package_devdependencies_vitest", + "community": 260, + "community_name": "Community 260", + "norm_label": "vitest" + }, + { + "label": "vitest", + "file_type": "concept", + "source_file": "package.json", + "source_location": "L55", + "_origin": "ast", + "id": "package_json_vitest", + "community": 260, + "community_name": "Community 260", + "norm_label": "vitest" + }, + { + "label": "lint-staged", + "file_type": "code", + "source_file": "package.json", + "source_location": "L57", + "_origin": "ast", + "id": "package_lint_staged", + "community": 341, + "community_name": "Community 341", + "norm_label": "lint-staged" + }, + { + "label": "*.{js,jsx,ts,tsx,json,css,md}", + "file_type": "code", + "source_file": "package.json", + "source_location": "L58", + "_origin": "ast", + "id": "package_lint_staged_js_jsx_ts_tsx_json_css_md", + "community": 341, + "community_name": "Community 341", + "norm_label": "*.{js,jsx,ts,tsx,json,css,md}" + }, + { + "label": "eslint --fix", + "file_type": "concept", + "source_file": "package.json", + "source_location": "L58", + "_origin": "ast", + "id": "ref_eslint_fix", + "community": 341, + "community_name": "Community 341", + "norm_label": "eslint --fix" + }, + { + "label": "prettier --write", + "file_type": "concept", + "source_file": "package.json", + "source_location": "L58", + "_origin": "ast", + "id": "ref_prettier_write", + "community": 341, + "community_name": "Community 341", + "norm_label": "prettier --write" + }, + { + "label": "dependencies", + "file_type": "code", + "source_file": "package.json", + "source_location": "L63", + "_origin": "ast", + "id": "package_dependencies", + "community": 341, + "community_name": "Community 341", + "norm_label": "dependencies" + }, + { + "label": "canvas", + "file_type": "code", + "source_file": "package.json", + "source_location": "L64", + "_origin": "ast", + "id": "package_dependencies_canvas", + "community": 341, + "community_name": "Community 341", + "norm_label": "canvas" + }, + { + "label": "canvas", + "file_type": "concept", + "source_file": "package.json", + "source_location": "L64", + "_origin": "ast", + "id": "package_json_canvas", + "community": 341, + "community_name": "Community 341", + "norm_label": "canvas" + }, + { + "label": "beapStructuralValidator.test.ts", + "file_type": "code", + "source_file": "packages/beap-pod/__tests__/beapStructuralValidator.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_beap_pod_tests_beapstructuralvalidator_test", + "community": 256, + "community_name": "Beappod #256", + "norm_label": "beapstructuralvalidator.test.ts" + }, + { + "label": "beap-pod/package.json", + "file_type": "code", + "source_file": "packages/beap-pod/package.json", + "source_location": "L1", + "_origin": "ast", + "id": "packages_beap_pod_package", + "community": 245, + "community_name": "Beappod", + "norm_label": "beap-pod/package.json" + }, + { + "label": "name", + "file_type": "code", + "source_file": "packages/beap-pod/package.json", + "source_location": "L2", + "_origin": "ast", + "id": "packages_beap_pod_package_name", + "community": 245, + "community_name": "Beappod", + "norm_label": "name" + }, + { + "label": "version", + "file_type": "code", + "source_file": "packages/beap-pod/package.json", + "source_location": "L3", + "_origin": "ast", + "id": "packages_beap_pod_package_version", + "community": 245, + "community_name": "Beappod", + "norm_label": "version" + }, + { + "label": "private", + "file_type": "code", + "source_file": "packages/beap-pod/package.json", + "source_location": "L4", + "_origin": "ast", + "id": "packages_beap_pod_package_private", + "community": 245, + "community_name": "Beappod", + "norm_label": "private" + }, + { + "label": "type", + "file_type": "code", + "source_file": "packages/beap-pod/package.json", + "source_location": "L5", + "_origin": "ast", + "id": "packages_beap_pod_package_type", + "community": 245, + "community_name": "Beappod", + "norm_label": "type" + }, + { + "label": "main", + "file_type": "code", + "source_file": "packages/beap-pod/package.json", + "source_location": "L6", + "_origin": "ast", + "id": "packages_beap_pod_package_main", + "community": 245, + "community_name": "Beappod", + "norm_label": "main" + }, + { + "label": "scripts", + "file_type": "code", + "source_file": "packages/beap-pod/package.json", + "source_location": "L7", + "_origin": "ast", + "id": "packages_beap_pod_package_scripts", + "community": 245, + "community_name": "Beappod", + "norm_label": "scripts" + }, + { + "label": "build", + "file_type": "code", + "source_file": "packages/beap-pod/package.json", + "source_location": "L8", + "_origin": "ast", + "id": "packages_beap_pod_package_scripts_build", + "community": 245, + "community_name": "Beappod", + "norm_label": "build" + }, + { + "label": "start", + "file_type": "code", + "source_file": "packages/beap-pod/package.json", + "source_location": "L9", + "_origin": "ast", + "id": "packages_beap_pod_package_scripts_start", + "community": 245, + "community_name": "Beappod", + "norm_label": "start" + }, + { + "label": "test", + "file_type": "code", + "source_file": "packages/beap-pod/package.json", + "source_location": "L10", + "_origin": "ast", + "id": "packages_beap_pod_package_scripts_test", + "community": 245, + "community_name": "Beappod", + "norm_label": "test" + }, + { + "label": "docker:build", + "file_type": "code", + "source_file": "packages/beap-pod/package.json", + "source_location": "L11", + "_origin": "ast", + "id": "packages_beap_pod_package_scripts_docker_build", + "community": 245, + "community_name": "Beappod", + "norm_label": "docker:build" + }, + { + "label": "dependencies", + "file_type": "code", + "source_file": "packages/beap-pod/package.json", + "source_location": "L13", + "_origin": "ast", + "id": "packages_beap_pod_package_dependencies", + "community": 245, + "community_name": "Beappod", + "norm_label": "dependencies" + }, + { + "label": "devDependencies", + "file_type": "code", + "source_file": "packages/beap-pod/package.json", + "source_location": "L14", + "_origin": "ast", + "id": "packages_beap_pod_package_devdependencies", + "community": 245, + "community_name": "Beappod", + "norm_label": "devdependencies" + }, + { + "label": "@types/node", + "file_type": "code", + "source_file": "packages/beap-pod/package.json", + "source_location": "L15", + "_origin": "ast", + "id": "packages_beap_pod_package_devdependencies_types_node", + "community": 245, + "community_name": "Beappod", + "norm_label": "@types/node" + }, + { + "label": "@types/node", + "file_type": "concept", + "source_file": "packages/beap-pod/package.json", + "source_location": "L15", + "_origin": "ast", + "id": "packages_beap_pod_package_json_types_node", + "community": 245, + "community_name": "Beappod", + "norm_label": "@types/node" + }, + { + "label": "typescript", + "file_type": "code", + "source_file": "packages/beap-pod/package.json", + "source_location": "L16", + "_origin": "ast", + "id": "packages_beap_pod_package_devdependencies_typescript", + "community": 245, + "community_name": "Beappod", + "norm_label": "typescript" + }, + { + "label": "typescript", + "file_type": "concept", + "source_file": "packages/beap-pod/package.json", + "source_location": "L16", + "_origin": "ast", + "id": "packages_beap_pod_package_json_typescript", + "community": 245, + "community_name": "Beappod", + "norm_label": "typescript" + }, + { + "label": "vitest", + "file_type": "code", + "source_file": "packages/beap-pod/package.json", + "source_location": "L17", + "_origin": "ast", + "id": "packages_beap_pod_package_devdependencies_vitest", + "community": 245, + "community_name": "Beappod", + "norm_label": "vitest" + }, + { + "label": "vitest", + "file_type": "concept", + "source_file": "packages/beap-pod/package.json", + "source_location": "L17", + "_origin": "ast", + "id": "packages_beap_pod_package_json_vitest", + "community": 245, + "community_name": "Beappod", + "norm_label": "vitest" + }, + { + "label": "engines", + "file_type": "code", + "source_file": "packages/beap-pod/package.json", + "source_location": "L19", + "_origin": "ast", + "id": "packages_beap_pod_package_engines", + "community": 245, + "community_name": "Beappod", + "norm_label": "engines" + }, + { + "label": "node", + "file_type": "code", + "source_file": "packages/beap-pod/package.json", + "source_location": "L20", + "_origin": "ast", + "id": "packages_beap_pod_package_engines_node", + "community": 245, + "community_name": "Beappod", + "norm_label": "node" + }, + { + "label": "beapStructuralValidator.ts", + "file_type": "code", + "source_file": "packages/beap-pod/src/beapStructuralValidator.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_beap_pod_src_beapstructuralvalidator", + "community": 256, + "community_name": "Beappod #256", + "norm_label": "beapstructuralvalidator.ts" + }, + { + "label": "SIZE_LIMITS", + "file_type": "code", + "source_file": "packages/beap-pod/src/beapStructuralValidator.ts", + "source_location": "L13", + "_origin": "ast", + "id": "packages_beap_pod_src_beapstructuralvalidator_size_limits", + "community": 256, + "community_name": "Beappod #256", + "norm_label": "size_limits" + }, + { + "label": "POISONED_KEYS", + "file_type": "code", + "source_file": "packages/beap-pod/src/beapStructuralValidator.ts", + "source_location": "L28", + "_origin": "ast", + "id": "packages_beap_pod_src_beapstructuralvalidator_poisoned_keys", + "community": 256, + "community_name": "Beappod #256", + "norm_label": "poisoned_keys" + }, + { + "label": "ACCEPTED_VERSIONS", + "file_type": "code", + "source_file": "packages/beap-pod/src/beapStructuralValidator.ts", + "source_location": "L29", + "_origin": "ast", + "id": "packages_beap_pod_src_beapstructuralvalidator_accepted_versions", + "community": 256, + "community_name": "Beappod #256", + "norm_label": "accepted_versions" + }, + { + "label": "ACCEPTED_ENCODINGS", + "file_type": "code", + "source_file": "packages/beap-pod/src/beapStructuralValidator.ts", + "source_location": "L30", + "_origin": "ast", + "id": "packages_beap_pod_src_beapstructuralvalidator_accepted_encodings", + "community": 256, + "community_name": "Beappod #256", + "norm_label": "accepted_encodings" + }, + { + "label": "StructuralValidationResult", + "file_type": "code", + "source_file": "packages/beap-pod/src/beapStructuralValidator.ts", + "source_location": "L33", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_beap_pod_src_beapstructuralvalidator_structuralvalidationresult", + "community": 256, + "community_name": "Beappod #256", + "norm_label": "structuralvalidationresult" + }, + { + "label": "measureDepth()", + "file_type": "code", + "source_file": "packages/beap-pod/src/beapStructuralValidator.ts", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "id": "packages_beap_pod_src_beapstructuralvalidator_measuredepth", + "community": 256, + "community_name": "Beappod #256", + "norm_label": "measuredepth()" + }, + { + "label": "countFields()", + "file_type": "code", + "source_file": "packages/beap-pod/src/beapStructuralValidator.ts", + "source_location": "L59", + "_callable": true, + "_origin": "ast", + "id": "packages_beap_pod_src_beapstructuralvalidator_countfields", + "community": 256, + "community_name": "Beappod #256", + "norm_label": "countfields()" + }, + { + "label": "sha256Hex()", + "file_type": "code", + "source_file": "packages/beap-pod/src/beapStructuralValidator.ts", + "source_location": "L75", + "_callable": true, + "_origin": "ast", + "id": "packages_beap_pod_src_beapstructuralvalidator_sha256hex", + "community": 256, + "community_name": "Beappod #256", + "norm_label": "sha256hex()" + }, + { + "label": "validateBeapStructure()", + "file_type": "code", + "source_file": "packages/beap-pod/src/beapStructuralValidator.ts", + "source_location": "L92", + "_callable": true, + "_origin": "ast", + "id": "packages_beap_pod_src_beapstructuralvalidator_validatebeapstructure", + "community": 256, + "community_name": "Beappod #256", + "norm_label": "validatebeapstructure()" + }, + { + "label": "beap-pod/src/index.ts", + "file_type": "code", + "source_file": "packages/beap-pod/src/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_beap_pod_src_index", + "community": 256, + "community_name": "Beappod #256", + "norm_label": "beap-pod/src/index.ts" + }, + { + "label": "__filename", + "file_type": "code", + "source_file": "packages/beap-pod/src/index.ts", + "source_location": "L13", + "_origin": "ast", + "id": "packages_beap_pod_src_index_filename", + "community": 256, + "community_name": "Beappod #256", + "norm_label": "__filename" + }, + { + "label": "podServer.ts", + "file_type": "code", + "source_file": "packages/beap-pod/src/podServer.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_beap_pod_src_podserver", + "community": 256, + "community_name": "Beappod #256", + "norm_label": "podserver.ts" + }, + { + "label": "PORT", + "file_type": "code", + "source_file": "packages/beap-pod/src/podServer.ts", + "source_location": "L15", + "_origin": "ast", + "id": "packages_beap_pod_src_podserver_port", + "community": 256, + "community_name": "Beappod #256", + "norm_label": "port" + }, + { + "label": "readBody()", + "file_type": "code", + "source_file": "packages/beap-pod/src/podServer.ts", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "id": "packages_beap_pod_src_podserver_readbody", + "community": 256, + "community_name": "Beappod #256", + "norm_label": "readbody()" + }, + { + "label": "sendJson()", + "file_type": "code", + "source_file": "packages/beap-pod/src/podServer.ts", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "id": "packages_beap_pod_src_podserver_sendjson", + "community": 256, + "community_name": "Beappod #256", + "norm_label": "sendjson()" + }, + { + "label": "createHandler()", + "file_type": "code", + "source_file": "packages/beap-pod/src/podServer.ts", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "id": "packages_beap_pod_src_podserver_createhandler", + "community": 256, + "community_name": "Beappod #256", + "norm_label": "createhandler()" + }, + { + "label": "createPodServer()", + "file_type": "code", + "source_file": "packages/beap-pod/src/podServer.ts", + "source_location": "L112", + "_callable": true, + "_origin": "ast", + "id": "packages_beap_pod_src_podserver_createpodserver", + "community": 256, + "community_name": "Beappod #256", + "norm_label": "createpodserver()" + }, + { + "label": "startPodServer()", + "file_type": "code", + "source_file": "packages/beap-pod/src/podServer.ts", + "source_location": "L116", + "_callable": true, + "_origin": "ast", + "id": "packages_beap_pod_src_podserver_startpodserver", + "community": 256, + "community_name": "Beappod #256", + "norm_label": "startpodserver()" + }, + { + "label": "beap-pod/tsconfig.json", + "file_type": "code", + "source_file": "packages/beap-pod/tsconfig.json", + "source_location": "L1", + "_origin": "ast", + "id": "packages_beap_pod_tsconfig", + "community": 315, + "community_name": "Beappod #315", + "norm_label": "beap-pod/tsconfig.json" + }, + { + "label": "compilerOptions", + "file_type": "code", + "source_file": "packages/beap-pod/tsconfig.json", + "source_location": "L2", + "_origin": "ast", + "id": "packages_beap_pod_tsconfig_compileroptions", + "community": 315, + "community_name": "Beappod #315", + "norm_label": "compileroptions" + }, + { + "label": "target", + "file_type": "code", + "source_file": "packages/beap-pod/tsconfig.json", + "source_location": "L3", + "_origin": "ast", + "id": "packages_beap_pod_tsconfig_compileroptions_target", + "community": 315, + "community_name": "Beappod #315", + "norm_label": "target" + }, + { + "label": "module", + "file_type": "code", + "source_file": "packages/beap-pod/tsconfig.json", + "source_location": "L4", + "_origin": "ast", + "id": "packages_beap_pod_tsconfig_compileroptions_module", + "community": 315, + "community_name": "Beappod #315", + "norm_label": "module" + }, + { + "label": "moduleResolution", + "file_type": "code", + "source_file": "packages/beap-pod/tsconfig.json", + "source_location": "L5", + "_origin": "ast", + "id": "packages_beap_pod_tsconfig_compileroptions_moduleresolution", + "community": 315, + "community_name": "Beappod #315", + "norm_label": "moduleresolution" + }, + { + "label": "strict", + "file_type": "code", + "source_file": "packages/beap-pod/tsconfig.json", + "source_location": "L6", + "_origin": "ast", + "id": "packages_beap_pod_tsconfig_compileroptions_strict", + "community": 315, + "community_name": "Beappod #315", + "norm_label": "strict" + }, + { + "label": "skipLibCheck", + "file_type": "code", + "source_file": "packages/beap-pod/tsconfig.json", + "source_location": "L7", + "_origin": "ast", + "id": "packages_beap_pod_tsconfig_compileroptions_skiplibcheck", + "community": 315, + "community_name": "Beappod #315", + "norm_label": "skiplibcheck" + }, + { + "label": "outDir", + "file_type": "code", + "source_file": "packages/beap-pod/tsconfig.json", + "source_location": "L8", + "_origin": "ast", + "id": "packages_beap_pod_tsconfig_compileroptions_outdir", + "community": 315, + "community_name": "Beappod #315", + "norm_label": "outdir" + }, + { + "label": "rootDir", + "file_type": "code", + "source_file": "packages/beap-pod/tsconfig.json", + "source_location": "L9", + "_origin": "ast", + "id": "packages_beap_pod_tsconfig_compileroptions_rootdir", + "community": 315, + "community_name": "Beappod #315", + "norm_label": "rootdir" + }, + { + "label": "include", + "file_type": "code", + "source_file": "packages/beap-pod/tsconfig.json", + "source_location": "L11", + "_origin": "ast", + "id": "packages_beap_pod_tsconfig_include", + "community": 315, + "community_name": "Beappod #315", + "norm_label": "include" + }, + { + "label": "src/**/*.ts", + "file_type": "concept", + "source_file": "packages/beap-pod/tsconfig.json", + "source_location": "L11", + "_origin": "ast", + "id": "packages_beap_pod_tsconfig_json_ref_src_ts", + "community": 315, + "community_name": "Beappod #315", + "norm_label": "src/**/*.ts" + }, + { + "label": "exclude", + "file_type": "code", + "source_file": "packages/beap-pod/tsconfig.json", + "source_location": "L12", + "_origin": "ast", + "id": "packages_beap_pod_tsconfig_exclude", + "community": 315, + "community_name": "Beappod #315", + "norm_label": "exclude" + }, + { + "label": "node_modules", + "file_type": "concept", + "source_file": "packages/beap-pod/tsconfig.json", + "source_location": "L12", + "_origin": "ast", + "id": "packages_beap_pod_tsconfig_json_ref_node_modules", + "community": 315, + "community_name": "Beappod #315", + "norm_label": "node_modules" + }, + { + "label": "dist", + "file_type": "concept", + "source_file": "packages/beap-pod/tsconfig.json", + "source_location": "L12", + "_origin": "ast", + "id": "packages_beap_pod_tsconfig_json_ref_dist", + "community": 315, + "community_name": "Beappod #315", + "norm_label": "dist" + }, + { + "label": "beap-pod/vitest.config.ts", + "file_type": "code", + "source_file": "packages/beap-pod/vitest.config.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_beap_pod_vitest_config", + "community": 612, + "community_name": "Beappod #612", + "norm_label": "beap-pod/vitest.config.ts" + }, + { + "label": "coordination.test.ts", + "file_type": "code", + "source_file": "packages/coordination-service/__tests__/coordination.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_coordination_service_tests_coordination_test", + "community": 369, + "community_name": "Coordinationservice #369", + "norm_label": "coordination.test.ts" + }, + { + "label": "validBeapCapsule()", + "file_type": "code", + "source_file": "packages/coordination-service/__tests__/coordination.test.ts", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_tests_coordination_test_validbeapcapsule", + "community": 369, + "community_name": "Coordinationservice #369", + "norm_label": "validbeapcapsule()" + }, + { + "label": "samePrincipalCapsule()", + "file_type": "code", + "source_file": "packages/coordination-service/__tests__/coordination.test.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_tests_coordination_test_sameprincipalcapsule", + "community": 369, + "community_name": "Coordinationservice #369", + "norm_label": "sameprincipalcapsule()" + }, + { + "label": "sealedServiceRpcCapsule()", + "file_type": "code", + "source_file": "packages/coordination-service/__tests__/coordination.test.ts", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_tests_coordination_test_sealedservicerpccapsule", + "community": 369, + "community_name": "Coordinationservice #369", + "norm_label": "sealedservicerpccapsule()" + }, + { + "label": "makeConfig()", + "file_type": "code", + "source_file": "packages/coordination-service/__tests__/coordination.test.ts", + "source_location": "L63", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_tests_coordination_test_makeconfig", + "community": 369, + "community_name": "Coordinationservice #369", + "norm_label": "makeconfig()" + }, + { + "label": "request()", + "file_type": "code", + "source_file": "packages/coordination-service/__tests__/coordination.test.ts", + "source_location": "L82", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_tests_coordination_test_request", + "community": 369, + "community_name": "Coordinationservice #369", + "norm_label": "request()" + }, + { + "label": "wsConnect()", + "file_type": "code", + "source_file": "packages/coordination-service/__tests__/coordination.test.ts", + "source_location": "L118", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_tests_coordination_test_wsconnect", + "community": 369, + "community_name": "Coordinationservice #369", + "norm_label": "wsconnect()" + }, + { + "label": "wsConnectWithDevice()", + "file_type": "code", + "source_file": "packages/coordination-service/__tests__/coordination.test.ts", + "source_location": "L127", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_tests_coordination_test_wsconnectwithdevice", + "community": 369, + "community_name": "Coordinationservice #369", + "norm_label": "wsconnectwithdevice()" + }, + { + "label": "internalInitiateCapsule()", + "file_type": "code", + "source_file": "packages/coordination-service/__tests__/coordination.test.ts", + "source_location": "L733", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_tests_coordination_test_internalinitiatecapsule", + "community": 369, + "community_name": "Coordinationservice #369", + "norm_label": "internalinitiatecapsule()" + }, + { + "label": "sandboxCapsule()", + "file_type": "code", + "source_file": "packages/coordination-service/__tests__/coordination.test.ts", + "source_location": "L1929", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_tests_coordination_test_sandboxcapsule", + "community": 369, + "community_name": "Coordinationservice #369", + "norm_label": "sandboxcapsule()" + }, + { + "label": "p2pSignalSchema.test.ts", + "file_type": "code", + "source_file": "packages/coordination-service/__tests__/p2pSignalSchema.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_coordination_service_tests_p2psignalschema_test", + "community": 296, + "community_name": "Coordinationservice #296", + "norm_label": "p2psignalschema.test.ts" + }, + { + "label": "iceBase()", + "file_type": "code", + "source_file": "packages/coordination-service/__tests__/p2pSignalSchema.test.ts", + "source_location": "L4", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_tests_p2psignalschema_test_icebase", + "community": 296, + "community_name": "Coordinationservice #296", + "norm_label": "icebase()" + }, + { + "label": "beapAdBase()", + "file_type": "code", + "source_file": "packages/coordination-service/__tests__/p2pSignalSchema.test.ts", + "source_location": "L85", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_tests_p2psignalschema_test_beapadbase", + "community": 296, + "community_name": "Coordinationservice #296", + "norm_label": "beapadbase()" + }, + { + "label": "p2pSignalSchemaElectronAlignment.test.ts", + "file_type": "code", + "source_file": "packages/coordination-service/__tests__/p2pSignalSchemaElectronAlignment.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_coordination_service_tests_p2psignalschemaelectronalignment_test", + "community": 57, + "community_name": "Internal Inference Email Ingestionpolltrigger", + "norm_label": "p2psignalschemaelectronalignment.test.ts" + }, + { + "label": "pairing-code.test.ts", + "file_type": "code", + "source_file": "packages/coordination-service/__tests__/pairing-code.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_coordination_service_tests_pairing_code_test", + "community": 295, + "community_name": "Coordinationservice #295", + "norm_label": "pairing-code.test.ts" + }, + { + "label": "makeConfig()", + "file_type": "code", + "source_file": "packages/coordination-service/__tests__/pairing-code.test.ts", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_tests_pairing_code_test_makeconfig", + "community": 295, + "community_name": "Coordinationservice #295", + "norm_label": "makeconfig()" + }, + { + "label": "request()", + "file_type": "code", + "source_file": "packages/coordination-service/__tests__/pairing-code.test.ts", + "source_location": "L42", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_tests_pairing_code_test_request", + "community": 295, + "community_name": "Coordinationservice #295", + "norm_label": "request()" + }, + { + "label": "registerBody()", + "file_type": "code", + "source_file": "packages/coordination-service/__tests__/pairing-code.test.ts", + "source_location": "L80", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_tests_pairing_code_test_registerbody", + "community": 295, + "community_name": "Coordinationservice #295", + "norm_label": "registerbody()" + }, + { + "label": "coordination-service/__tests__/sandboxEgressGuard.test.ts", + "file_type": "code", + "source_file": "packages/coordination-service/__tests__/sandboxEgressGuard.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_coordination_service_tests_sandboxegressguard_test", + "community": 420, + "community_name": "Coordinationservice #420", + "norm_label": "coordination-service/__tests__/sandboxegressguard.test.ts" + }, + { + "label": "makeConfig()", + "file_type": "code", + "source_file": "packages/coordination-service/__tests__/sandboxEgressGuard.test.ts", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_tests_sandboxegressguard_test_makeconfig", + "community": 420, + "community_name": "Coordinationservice #420", + "norm_label": "makeconfig()" + }, + { + "label": "request()", + "file_type": "code", + "source_file": "packages/coordination-service/__tests__/sandboxEgressGuard.test.ts", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_tests_sandboxegressguard_test_request", + "community": 420, + "community_name": "Coordinationservice #420", + "norm_label": "request()" + }, + { + "label": "registerSandboxHandshake()", + "file_type": "code", + "source_file": "packages/coordination-service/__tests__/sandboxEgressGuard.test.ts", + "source_location": "L81", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_tests_sandboxegressguard_test_registersandboxhandshake", + "community": 420, + "community_name": "Coordinationservice #420", + "norm_label": "registersandboxhandshake()" + }, + { + "label": "lifecycleCapsule()", + "file_type": "code", + "source_file": "packages/coordination-service/__tests__/sandboxEgressGuard.test.ts", + "source_location": "L103", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_tests_sandboxegressguard_test_lifecyclecapsule", + "community": 420, + "community_name": "Coordinationservice #420", + "norm_label": "lifecyclecapsule()" + }, + { + "label": "sealedServiceRpcCapsule()", + "file_type": "code", + "source_file": "packages/coordination-service/__tests__/sandboxEgressGuard.test.ts", + "source_location": "L129", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_tests_sandboxegressguard_test_sealedservicerpccapsule", + "community": 420, + "community_name": "Coordinationservice #420", + "norm_label": "sealedservicerpccapsule()" + }, + { + "label": "nativeBeapPackage()", + "file_type": "code", + "source_file": "packages/coordination-service/__tests__/sandboxEgressGuard.test.ts", + "source_location": "L149", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_tests_sandboxegressguard_test_nativebeappackage", + "community": 420, + "community_name": "Coordinationservice #420", + "norm_label": "nativebeappackage()" + }, + { + "label": "startup.test.ts", + "file_type": "code", + "source_file": "packages/coordination-service/__tests__/startup.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_coordination_service_tests_startup_test", + "community": 493, + "community_name": "Coordinationservice #493", + "norm_label": "startup.test.ts" + }, + { + "label": "__dirname", + "file_type": "code", + "source_file": "packages/coordination-service/__tests__/startup.test.ts", + "source_location": "L7", + "_origin": "ast", + "id": "packages_coordination_service_tests_startup_test_dirname", + "community": 493, + "community_name": "Coordinationservice #493", + "norm_label": "__dirname" + }, + { + "label": "pkgRoot", + "file_type": "code", + "source_file": "packages/coordination-service/__tests__/startup.test.ts", + "source_location": "L8", + "_origin": "ast", + "id": "packages_coordination_service_tests_startup_test_pkgroot", + "community": 493, + "community_name": "Coordinationservice #493", + "norm_label": "pkgroot" + }, + { + "label": "distServer", + "file_type": "code", + "source_file": "packages/coordination-service/__tests__/startup.test.ts", + "source_location": "L9", + "_origin": "ast", + "id": "packages_coordination_service_tests_startup_test_distserver", + "community": 493, + "community_name": "Coordinationservice #493", + "norm_label": "distserver" + }, + { + "label": "__tests__/tierResolution.test.ts", + "file_type": "code", + "source_file": "packages/coordination-service/__tests__/tierResolution.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_coordination_service_tests_tierresolution_test", + "community": 271, + "community_name": "Coordinationservice #271", + "norm_label": "__tests__/tierresolution.test.ts" + }, + { + "label": "coordination-service/package.json", + "file_type": "code", + "source_file": "packages/coordination-service/package.json", + "source_location": "L1", + "_origin": "ast", + "id": "packages_coordination_service_package", + "community": 164, + "community_name": "Coordinationservice", + "norm_label": "coordination-service/package.json" + }, + { + "label": "name", + "file_type": "code", + "source_file": "packages/coordination-service/package.json", + "source_location": "L2", + "_origin": "ast", + "id": "packages_coordination_service_package_name", + "community": 164, + "community_name": "Coordinationservice", + "norm_label": "name" + }, + { + "label": "version", + "file_type": "code", + "source_file": "packages/coordination-service/package.json", + "source_location": "L3", + "_origin": "ast", + "id": "packages_coordination_service_package_version", + "community": 164, + "community_name": "Coordinationservice", + "norm_label": "version" + }, + { + "label": "private", + "file_type": "code", + "source_file": "packages/coordination-service/package.json", + "source_location": "L4", + "_origin": "ast", + "id": "packages_coordination_service_package_private", + "community": 164, + "community_name": "Coordinationservice", + "norm_label": "private" + }, + { + "label": "type", + "file_type": "code", + "source_file": "packages/coordination-service/package.json", + "source_location": "L5", + "_origin": "ast", + "id": "packages_coordination_service_package_type", + "community": 164, + "community_name": "Coordinationservice", + "norm_label": "type" + }, + { + "label": "main", + "file_type": "code", + "source_file": "packages/coordination-service/package.json", + "source_location": "L6", + "_origin": "ast", + "id": "packages_coordination_service_package_main", + "community": 164, + "community_name": "Coordinationservice", + "norm_label": "main" + }, + { + "label": "scripts", + "file_type": "code", + "source_file": "packages/coordination-service/package.json", + "source_location": "L7", + "_origin": "ast", + "id": "packages_coordination_service_package_scripts", + "community": 164, + "community_name": "Coordinationservice", + "norm_label": "scripts" + }, + { + "label": "build", + "file_type": "code", + "source_file": "packages/coordination-service/package.json", + "source_location": "L8", + "_origin": "ast", + "id": "packages_coordination_service_package_scripts_build", + "community": 164, + "community_name": "Coordinationservice", + "norm_label": "build" + }, + { + "label": "start", + "file_type": "code", + "source_file": "packages/coordination-service/package.json", + "source_location": "L9", + "_origin": "ast", + "id": "packages_coordination_service_package_scripts_start", + "community": 164, + "community_name": "Coordinationservice", + "norm_label": "start" + }, + { + "label": "test", + "file_type": "code", + "source_file": "packages/coordination-service/package.json", + "source_location": "L10", + "_origin": "ast", + "id": "packages_coordination_service_package_scripts_test", + "community": 164, + "community_name": "Coordinationservice", + "norm_label": "test" + }, + { + "label": "docker:build", + "file_type": "code", + "source_file": "packages/coordination-service/package.json", + "source_location": "L11", + "_origin": "ast", + "id": "packages_coordination_service_package_scripts_docker_build", + "community": 164, + "community_name": "Coordinationservice", + "norm_label": "docker:build" + }, + { + "label": "dependencies", + "file_type": "code", + "source_file": "packages/coordination-service/package.json", + "source_location": "L13", + "_origin": "ast", + "id": "packages_coordination_service_package_dependencies", + "community": 164, + "community_name": "Coordinationservice", + "norm_label": "dependencies" + }, + { + "label": "@repo/ingestion-core", + "file_type": "code", + "source_file": "packages/coordination-service/package.json", + "source_location": "L14", + "_origin": "ast", + "id": "packages_coordination_service_package_dependencies_repo_ingestion_core", + "community": 164, + "community_name": "Coordinationservice", + "norm_label": "@repo/ingestion-core" + }, + { + "label": "@repo/ingestion-core", + "file_type": "concept", + "source_file": "packages/coordination-service/package.json", + "source_location": "L14", + "_origin": "ast", + "id": "packages_coordination_service_package_json_repo_ingestion_core", + "community": 164, + "community_name": "Coordinationservice", + "norm_label": "@repo/ingestion-core" + }, + { + "label": "better-sqlite3", + "file_type": "code", + "source_file": "packages/coordination-service/package.json", + "source_location": "L15", + "_origin": "ast", + "id": "packages_coordination_service_package_dependencies_better_sqlite3", + "community": 164, + "community_name": "Coordinationservice", + "norm_label": "better-sqlite3" + }, + { + "label": "better-sqlite3", + "file_type": "concept", + "source_file": "packages/coordination-service/package.json", + "source_location": "L15", + "_origin": "ast", + "id": "packages_coordination_service_package_json_better_sqlite3", + "community": 164, + "community_name": "Coordinationservice", + "norm_label": "better-sqlite3" + }, + { + "label": "jose", + "file_type": "code", + "source_file": "packages/coordination-service/package.json", + "source_location": "L16", + "_origin": "ast", + "id": "packages_coordination_service_package_dependencies_jose", + "community": 164, + "community_name": "Coordinationservice", + "norm_label": "jose" + }, + { + "label": "jose", + "file_type": "concept", + "source_file": "packages/coordination-service/package.json", + "source_location": "L16", + "_origin": "ast", + "id": "packages_coordination_service_package_json_jose", + "community": 164, + "community_name": "Coordinationservice", + "norm_label": "jose" + }, + { + "label": "ws", + "file_type": "code", + "source_file": "packages/coordination-service/package.json", + "source_location": "L17", + "_origin": "ast", + "id": "packages_coordination_service_package_dependencies_ws", + "community": 164, + "community_name": "Coordinationservice", + "norm_label": "ws" + }, + { + "label": "ws", + "file_type": "concept", + "source_file": "packages/coordination-service/package.json", + "source_location": "L17", + "_origin": "ast", + "id": "packages_coordination_service_package_json_ws", + "community": 164, + "community_name": "Coordinationservice", + "norm_label": "ws" + }, + { + "label": "devDependencies", + "file_type": "code", + "source_file": "packages/coordination-service/package.json", + "source_location": "L19", + "_origin": "ast", + "id": "packages_coordination_service_package_devdependencies", + "community": 164, + "community_name": "Coordinationservice", + "norm_label": "devdependencies" + }, + { + "label": "@types/better-sqlite3", + "file_type": "code", + "source_file": "packages/coordination-service/package.json", + "source_location": "L20", + "_origin": "ast", + "id": "packages_coordination_service_package_devdependencies_types_better_sqlite3", + "community": 164, + "community_name": "Coordinationservice", + "norm_label": "@types/better-sqlite3" + }, + { + "label": "@types/better-sqlite3", + "file_type": "concept", + "source_file": "packages/coordination-service/package.json", + "source_location": "L20", + "_origin": "ast", + "id": "packages_coordination_service_package_json_types_better_sqlite3", + "community": 164, + "community_name": "Coordinationservice", + "norm_label": "@types/better-sqlite3" + }, + { + "label": "@types/node", + "file_type": "code", + "source_file": "packages/coordination-service/package.json", + "source_location": "L21", + "_origin": "ast", + "id": "packages_coordination_service_package_devdependencies_types_node", + "community": 164, + "community_name": "Coordinationservice", + "norm_label": "@types/node" + }, + { + "label": "@types/node", + "file_type": "concept", + "source_file": "packages/coordination-service/package.json", + "source_location": "L21", + "_origin": "ast", + "id": "packages_coordination_service_package_json_types_node", + "community": 164, + "community_name": "Coordinationservice", + "norm_label": "@types/node" + }, + { + "label": "@types/ws", + "file_type": "code", + "source_file": "packages/coordination-service/package.json", + "source_location": "L22", + "_origin": "ast", + "id": "packages_coordination_service_package_devdependencies_types_ws", + "community": 164, + "community_name": "Coordinationservice", + "norm_label": "@types/ws" + }, + { + "label": "@types/ws", + "file_type": "concept", + "source_file": "packages/coordination-service/package.json", + "source_location": "L22", + "_origin": "ast", + "id": "packages_coordination_service_package_json_types_ws", + "community": 164, + "community_name": "Coordinationservice", + "norm_label": "@types/ws" + }, + { + "label": "typescript", + "file_type": "code", + "source_file": "packages/coordination-service/package.json", + "source_location": "L23", + "_origin": "ast", + "id": "packages_coordination_service_package_devdependencies_typescript", + "community": 164, + "community_name": "Coordinationservice", + "norm_label": "typescript" + }, + { + "label": "typescript", + "file_type": "concept", + "source_file": "packages/coordination-service/package.json", + "source_location": "L23", + "_origin": "ast", + "id": "packages_coordination_service_package_json_typescript", + "community": 164, + "community_name": "Coordinationservice", + "norm_label": "typescript" + }, + { + "label": "vitest", + "file_type": "code", + "source_file": "packages/coordination-service/package.json", + "source_location": "L24", + "_origin": "ast", + "id": "packages_coordination_service_package_devdependencies_vitest", + "community": 164, + "community_name": "Coordinationservice", + "norm_label": "vitest" + }, + { + "label": "vitest", + "file_type": "concept", + "source_file": "packages/coordination-service/package.json", + "source_location": "L24", + "_origin": "ast", + "id": "packages_coordination_service_package_json_vitest", + "community": 164, + "community_name": "Coordinationservice", + "norm_label": "vitest" + }, + { + "label": "engines", + "file_type": "code", + "source_file": "packages/coordination-service/package.json", + "source_location": "L26", + "_origin": "ast", + "id": "packages_coordination_service_package_engines", + "community": 164, + "community_name": "Coordinationservice", + "norm_label": "engines" + }, + { + "label": "node", + "file_type": "code", + "source_file": "packages/coordination-service/package.json", + "source_location": "L27", + "_origin": "ast", + "id": "packages_coordination_service_package_engines_node", + "community": 164, + "community_name": "Coordinationservice", + "norm_label": "node" + }, + { + "label": "coordination-service/src/auth.ts", + "file_type": "code", + "source_file": "packages/coordination-service/src/auth.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_coordination_service_src_auth", + "community": 271, + "community_name": "Coordinationservice #271", + "norm_label": "coordination-service/src/auth.ts" + }, + { + "label": "ValidatedIdentity", + "file_type": "code", + "source_file": "packages/coordination-service/src/auth.ts", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_coordination_service_src_auth_validatedidentity", + "community": 271, + "community_name": "Coordinationservice #271", + "norm_label": "validatedidentity" + }, + { + "label": "RESOLVER_VERSION", + "file_type": "code", + "source_file": "packages/coordination-service/src/auth.ts", + "source_location": "L34", + "_origin": "ast", + "id": "packages_coordination_service_src_auth_resolver_version", + "community": 271, + "community_name": "Coordinationservice #271", + "norm_label": "resolver_version" + }, + { + "label": "AuthAdapter", + "file_type": "code", + "source_file": "packages/coordination-service/src/auth.ts", + "source_location": "L36", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_coordination_service_src_auth_authadapter", + "community": 356, + "community_name": "Coordinationservice #356", + "norm_label": "authadapter" + }, + { + "label": ".extractBearerToken()", + "file_type": "code", + "source_file": "packages/coordination-service/src/auth.ts", + "source_location": "L37", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_auth_authadapter_extractbearertoken", + "community": 356, + "community_name": "Coordinationservice #356", + "norm_label": ".extractbearertoken()" + }, + { + "label": ".validateOidcToken()", + "file_type": "code", + "source_file": "packages/coordination-service/src/auth.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_auth_authadapter_validateoidctoken", + "community": 356, + "community_name": "Coordinationservice #356", + "norm_label": ".validateoidctoken()" + }, + { + "label": ".checkJwksHealth()", + "file_type": "code", + "source_file": "packages/coordination-service/src/auth.ts", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_auth_authadapter_checkjwkshealth", + "community": 356, + "community_name": "Coordinationservice #356", + "norm_label": ".checkjwkshealth()" + }, + { + "label": "createAuth()", + "file_type": "code", + "source_file": "packages/coordination-service/src/auth.ts", + "source_location": "L42", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_auth_createauth", + "community": 235, + "community_name": "Coordinationservice #235", + "norm_label": "createauth()" + }, + { + "label": "cleanup.ts", + "file_type": "code", + "source_file": "packages/coordination-service/src/cleanup.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_coordination_service_src_cleanup", + "community": 295, + "community_name": "Coordinationservice #295", + "norm_label": "cleanup.ts" + }, + { + "label": "CleanupAdapter", + "file_type": "code", + "source_file": "packages/coordination-service/src/cleanup.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_coordination_service_src_cleanup_cleanupadapter", + "community": 295, + "community_name": "Coordinationservice #295", + "norm_label": "cleanupadapter" + }, + { + "label": ".run()", + "file_type": "code", + "source_file": "packages/coordination-service/src/cleanup.ts", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_cleanup_cleanupadapter_run", + "community": 295, + "community_name": "Coordinationservice #295", + "norm_label": ".run()" + }, + { + "label": ".startInterval()", + "file_type": "code", + "source_file": "packages/coordination-service/src/cleanup.ts", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_cleanup_cleanupadapter_startinterval", + "community": 295, + "community_name": "Coordinationservice #295", + "norm_label": ".startinterval()" + }, + { + "label": "createCleanup()", + "file_type": "code", + "source_file": "packages/coordination-service/src/cleanup.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_cleanup_createcleanup", + "community": 295, + "community_name": "Coordinationservice #295", + "norm_label": "createcleanup()" + }, + { + "label": "coordination-service/src/config.ts", + "file_type": "code", + "source_file": "packages/coordination-service/src/config.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_coordination_service_src_config", + "community": 295, + "community_name": "Coordinationservice #295", + "norm_label": "coordination-service/src/config.ts" + }, + { + "label": "CoordinationConfig", + "file_type": "code", + "source_file": "packages/coordination-service/src/config.ts", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_coordination_service_src_config_coordinationconfig", + "community": 295, + "community_name": "Coordinationservice #295", + "norm_label": "coordinationconfig" + }, + { + "label": "loadConfig()", + "file_type": "code", + "source_file": "packages/coordination-service/src/config.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_config_loadconfig", + "community": 295, + "community_name": "Coordinationservice #295", + "norm_label": "loadconfig()" + }, + { + "label": "entitlements.ts", + "file_type": "code", + "source_file": "packages/coordination-service/src/entitlements.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_coordination_service_src_entitlements", + "community": 235, + "community_name": "Coordinationservice #235", + "norm_label": "entitlements.ts" + }, + { + "label": "SANDBOX_ENTITLED_TIERS", + "file_type": "code", + "source_file": "packages/coordination-service/src/entitlements.ts", + "source_location": "L20", + "_origin": "ast", + "id": "packages_coordination_service_src_entitlements_sandbox_entitled_tiers", + "community": 235, + "community_name": "Coordinationservice #235", + "norm_label": "sandbox_entitled_tiers" + }, + { + "label": "hasSandboxEntitlement()", + "file_type": "code", + "source_file": "packages/coordination-service/src/entitlements.ts", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_entitlements_hassandboxentitlement", + "community": 235, + "community_name": "Coordinationservice #235", + "norm_label": "hassandboxentitlement()" + }, + { + "label": "handshakeRegistry.ts", + "file_type": "code", + "source_file": "packages/coordination-service/src/handshakeRegistry.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_coordination_service_src_handshakeregistry", + "community": 368, + "community_name": "Coordinationservice #368", + "norm_label": "handshakeregistry.ts" + }, + { + "label": "HandshakeEntry", + "file_type": "code", + "source_file": "packages/coordination-service/src/handshakeRegistry.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_coordination_service_src_handshakeregistry_handshakeentry", + "community": 368, + "community_name": "Coordinationservice #368", + "norm_label": "handshakeentry" + }, + { + "label": "RecipientRoute", + "file_type": "code", + "source_file": "packages/coordination-service/src/handshakeRegistry.ts", + "source_location": "L25", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_coordination_service_src_handshakeregistry_recipientroute", + "community": 368, + "community_name": "Coordinationservice #368", + "norm_label": "recipientroute" + }, + { + "label": "HandshakeRegistryAdapter", + "file_type": "code", + "source_file": "packages/coordination-service/src/handshakeRegistry.ts", + "source_location": "L27", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_coordination_service_src_handshakeregistry_handshakeregistryadapter", + "community": 368, + "community_name": "Coordinationservice #368", + "norm_label": "handshakeregistryadapter" + }, + { + "label": ".registerHandshake()", + "file_type": "code", + "source_file": "packages/coordination-service/src/handshakeRegistry.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_handshakeregistry_handshakeregistryadapter_registerhandshake", + "community": 368, + "community_name": "Coordinationservice #368", + "norm_label": ".registerhandshake()" + }, + { + "label": ".getHandshake()", + "file_type": "code", + "source_file": "packages/coordination-service/src/handshakeRegistry.ts", + "source_location": "L42", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_handshakeregistry_handshakeregistryadapter_gethandshake", + "community": 368, + "community_name": "Coordinationservice #368", + "norm_label": ".gethandshake()" + }, + { + "label": ".getRecipientForSender()", + "file_type": "code", + "source_file": "packages/coordination-service/src/handshakeRegistry.ts", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_handshakeregistry_handshakeregistryadapter_getrecipientforsender", + "community": 368, + "community_name": "Coordinationservice #368", + "norm_label": ".getrecipientforsender()" + }, + { + "label": ".isSenderAuthorized()", + "file_type": "code", + "source_file": "packages/coordination-service/src/handshakeRegistry.ts", + "source_location": "L48", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_handshakeregistry_handshakeregistryadapter_issenderauthorized", + "community": 368, + "community_name": "Coordinationservice #368", + "norm_label": ".issenderauthorized()" + }, + { + "label": ".getDeviceRoleForSender()", + "file_type": "code", + "source_file": "packages/coordination-service/src/handshakeRegistry.ts", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_handshakeregistry_handshakeregistryadapter_getdeviceroleforsender", + "community": 368, + "community_name": "Coordinationservice #368", + "norm_label": ".getdeviceroleforsender()" + }, + { + "label": ".isSamePrincipalHandshake()", + "file_type": "code", + "source_file": "packages/coordination-service/src/handshakeRegistry.ts", + "source_location": "L69", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_handshakeregistry_handshakeregistryadapter_issameprincipalhandshake", + "community": 368, + "community_name": "Coordinationservice #368", + "norm_label": ".issameprincipalhandshake()" + }, + { + "label": "createHandshakeRegistry()", + "file_type": "code", + "source_file": "packages/coordination-service/src/handshakeRegistry.ts", + "source_location": "L72", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_handshakeregistry_createhandshakeregistry", + "community": 235, + "community_name": "Coordinationservice #235", + "norm_label": "createhandshakeregistry()" + }, + { + "label": "coordination-service/src/health.ts", + "file_type": "code", + "source_file": "packages/coordination-service/src/health.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_coordination_service_src_health", + "community": 356, + "community_name": "Coordinationservice #356", + "norm_label": "coordination-service/src/health.ts" + }, + { + "label": "startTime", + "file_type": "code", + "source_file": "packages/coordination-service/src/health.ts", + "source_location": "L12", + "_origin": "ast", + "id": "packages_coordination_service_src_health_starttime", + "community": 356, + "community_name": "Coordinationservice #356", + "norm_label": "starttime" + }, + { + "label": "HostAiP2pSignalingCapability", + "file_type": "code", + "source_file": "packages/coordination-service/src/health.ts", + "source_location": "L15", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_coordination_service_src_health_hostaip2psignalingcapability", + "community": 356, + "community_name": "Coordinationservice #356", + "norm_label": "hostaip2psignalingcapability" + }, + { + "label": "HealthResult", + "file_type": "code", + "source_file": "packages/coordination-service/src/health.ts", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_coordination_service_src_health_healthresult", + "community": 356, + "community_name": "Coordinationservice #356", + "norm_label": "healthresult" + }, + { + "label": "HealthAdapter", + "file_type": "code", + "source_file": "packages/coordination-service/src/health.ts", + "source_location": "L37", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_coordination_service_src_health_healthadapter", + "community": 356, + "community_name": "Coordinationservice #356", + "norm_label": "healthadapter" + }, + { + "label": ".check()", + "file_type": "code", + "source_file": "packages/coordination-service/src/health.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_health_healthadapter_check", + "community": 356, + "community_name": "Coordinationservice #356", + "norm_label": ".check()" + }, + { + "label": "createHealth()", + "file_type": "code", + "source_file": "packages/coordination-service/src/health.ts", + "source_location": "L41", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_health_createhealth", + "community": 235, + "community_name": "Coordinationservice #235", + "norm_label": "createhealth()" + }, + { + "label": "coordination-service/src/index.ts", + "file_type": "code", + "source_file": "packages/coordination-service/src/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_coordination_service_src_index", + "community": 295, + "community_name": "Coordinationservice #295", + "norm_label": "coordination-service/src/index.ts" + }, + { + "label": "main()", + "file_type": "code", + "source_file": "packages/coordination-service/src/index.ts", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_index_main", + "community": 295, + "community_name": "Coordinationservice #295", + "norm_label": "main()" + }, + { + "label": "p2pSignal.ts", + "file_type": "code", + "source_file": "packages/coordination-service/src/p2pSignal.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_coordination_service_src_p2psignal", + "community": 296, + "community_name": "Coordinationservice #296", + "norm_label": "p2psignal.ts" + }, + { + "label": "P2P_SIGNAL_TYPES", + "file_type": "code", + "source_file": "packages/coordination-service/src/p2pSignal.ts", + "source_location": "L11", + "_origin": "ast", + "id": "packages_coordination_service_src_p2psignal_p2p_signal_types", + "community": 296, + "community_name": "Coordinationservice #296", + "norm_label": "p2p_signal_types" + }, + { + "label": "P2pSignalType", + "file_type": "code", + "source_file": "packages/coordination-service/src/p2pSignal.ts", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_coordination_service_src_p2psignal_p2psignaltype", + "community": 296, + "community_name": "Coordinationservice #296", + "norm_label": "p2psignaltype" + }, + { + "label": "P2P_SIGNAL_SCHEMA_VERSION", + "file_type": "code", + "source_file": "packages/coordination-service/src/p2pSignal.ts", + "source_location": "L24", + "_origin": "ast", + "id": "packages_coordination_service_src_p2psignal_p2p_signal_schema_version", + "community": 356, + "community_name": "Coordinationservice #356", + "norm_label": "p2p_signal_schema_version" + }, + { + "label": "P2P_SIGNAL_MAX_BODY_BYTES", + "file_type": "code", + "source_file": "packages/coordination-service/src/p2pSignal.ts", + "source_location": "L25", + "_origin": "ast", + "id": "packages_coordination_service_src_p2psignal_p2p_signal_max_body_bytes", + "community": 296, + "community_name": "Coordinationservice #296", + "norm_label": "p2p_signal_max_body_bytes" + }, + { + "label": "P2P_SIGNAL_EXPIRY_PARSE_GRACE_MS", + "file_type": "code", + "source_file": "packages/coordination-service/src/p2pSignal.ts", + "source_location": "L32", + "_origin": "ast", + "id": "packages_coordination_service_src_p2psignal_p2p_signal_expiry_parse_grace_ms", + "community": 296, + "community_name": "Coordinationservice #296", + "norm_label": "p2p_signal_expiry_parse_grace_ms" + }, + { + "label": "FORBIDDEN_TOP_LEVEL_KEYS", + "file_type": "code", + "source_file": "packages/coordination-service/src/p2pSignal.ts", + "source_location": "L35", + "_origin": "ast", + "id": "packages_coordination_service_src_p2psignal_forbidden_top_level_keys", + "community": 296, + "community_name": "Coordinationservice #296", + "norm_label": "forbidden_top_level_keys" + }, + { + "label": "P2pSignalRejectReason", + "file_type": "code", + "source_file": "packages/coordination-service/src/p2pSignal.ts", + "source_location": "L37", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_coordination_service_src_p2psignal_p2psignalrejectreason", + "community": 296, + "community_name": "Coordinationservice #296", + "norm_label": "p2psignalrejectreason" + }, + { + "label": "P2pSignalParseOk", + "file_type": "code", + "source_file": "packages/coordination-service/src/p2pSignal.ts", + "source_location": "L48", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_coordination_service_src_p2psignal_p2psignalparseok", + "community": 296, + "community_name": "Coordinationservice #296", + "norm_label": "p2psignalparseok" + }, + { + "label": "P2pSignalParseFail", + "file_type": "code", + "source_file": "packages/coordination-service/src/p2pSignal.ts", + "source_location": "L64", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_coordination_service_src_p2psignal_p2psignalparsefail", + "community": 296, + "community_name": "Coordinationservice #296", + "norm_label": "p2psignalparsefail" + }, + { + "label": "parseIso()", + "file_type": "code", + "source_file": "packages/coordination-service/src/p2pSignal.ts", + "source_location": "L66", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_p2psignal_parseiso", + "community": 296, + "community_name": "Coordinationservice #296", + "norm_label": "parseiso()" + }, + { + "label": "coerceSchemaVersion()", + "file_type": "code", + "source_file": "packages/coordination-service/src/p2pSignal.ts", + "source_location": "L75", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_p2psignal_coerceschemaversion", + "community": 296, + "community_name": "Coordinationservice #296", + "norm_label": "coerceschemaversion()" + }, + { + "label": "coerceCandidateField()", + "file_type": "code", + "source_file": "packages/coordination-service/src/p2pSignal.ts", + "source_location": "L102", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_p2psignal_coercecandidatefield", + "community": 296, + "community_name": "Coordinationservice #296", + "norm_label": "coercecandidatefield()" + }, + { + "label": "tryParseP2pSignalRequest()", + "file_type": "code", + "source_file": "packages/coordination-service/src/p2pSignal.ts", + "source_location": "L127", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_p2psignal_tryparsep2psignalrequest", + "community": 296, + "community_name": "Coordinationservice #296", + "norm_label": "tryparsep2psignalrequest()" + }, + { + "label": "p2pSignalMessageId()", + "file_type": "code", + "source_file": "packages/coordination-service/src/p2pSignal.ts", + "source_location": "L238", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_p2psignal_p2psignalmessageid", + "community": 235, + "community_name": "Coordinationservice #235", + "norm_label": "p2psignalmessageid()" + }, + { + "label": "pairingCodeRegistry.ts", + "file_type": "code", + "source_file": "packages/coordination-service/src/pairingCodeRegistry.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_coordination_service_src_pairingcoderegistry", + "community": 419, + "community_name": "Coordinationservice #419", + "norm_label": "pairingcoderegistry.ts" + }, + { + "label": "PairingCodeEntry", + "file_type": "code", + "source_file": "packages/coordination-service/src/pairingCodeRegistry.ts", + "source_location": "L21", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_coordination_service_src_pairingcoderegistry_pairingcodeentry", + "community": 419, + "community_name": "Coordinationservice #419", + "norm_label": "pairingcodeentry" + }, + { + "label": "RegisterResult", + "file_type": "code", + "source_file": "packages/coordination-service/src/pairingCodeRegistry.ts", + "source_location": "L30", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_coordination_service_src_pairingcoderegistry_registerresult", + "community": 419, + "community_name": "Coordinationservice #419", + "norm_label": "registerresult" + }, + { + "label": "PairingCodeRegistryAdapter", + "file_type": "code", + "source_file": "packages/coordination-service/src/pairingCodeRegistry.ts", + "source_location": "L35", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_coordination_service_src_pairingcoderegistry_pairingcoderegistryadapter", + "community": 419, + "community_name": "Coordinationservice #419", + "norm_label": "pairingcoderegistryadapter" + }, + { + "label": ".registerPairingCode()", + "file_type": "code", + "source_file": "packages/coordination-service/src/pairingCodeRegistry.ts", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_pairingcoderegistry_pairingcoderegistryadapter_registerpairingcode", + "community": 419, + "community_name": "Coordinationservice #419", + "norm_label": ".registerpairingcode()" + }, + { + "label": ".resolvePairingCode()", + "file_type": "code", + "source_file": "packages/coordination-service/src/pairingCodeRegistry.ts", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_pairingcoderegistry_pairingcoderegistryadapter_resolvepairingcode", + "community": 419, + "community_name": "Coordinationservice #419", + "norm_label": ".resolvepairingcode()" + }, + { + "label": ".getCodesForUser()", + "file_type": "code", + "source_file": "packages/coordination-service/src/pairingCodeRegistry.ts", + "source_location": "L58", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_pairingcoderegistry_pairingcoderegistryadapter_getcodesforuser", + "community": 419, + "community_name": "Coordinationservice #419", + "norm_label": ".getcodesforuser()" + }, + { + "label": "createPairingCodeRegistry()", + "file_type": "code", + "source_file": "packages/coordination-service/src/pairingCodeRegistry.ts", + "source_location": "L63", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_pairingcoderegistry_createpairingcoderegistry", + "community": 235, + "community_name": "Coordinationservice #235", + "norm_label": "createpairingcoderegistry()" + }, + { + "label": "coordination-service/src/rateLimiter.ts", + "file_type": "code", + "source_file": "packages/coordination-service/src/rateLimiter.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_coordination_service_src_ratelimiter", + "community": 271, + "community_name": "Coordinationservice #271", + "norm_label": "coordination-service/src/ratelimiter.ts" + }, + { + "label": "TierLimits", + "file_type": "code", + "source_file": "packages/coordination-service/src/rateLimiter.ts", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_coordination_service_src_ratelimiter_tierlimits", + "community": 271, + "community_name": "Coordinationservice #271", + "norm_label": "tierlimits" + }, + { + "label": "TIER_LIMITS", + "file_type": "code", + "source_file": "packages/coordination-service/src/rateLimiter.ts", + "source_location": "L13", + "_origin": "ast", + "id": "packages_coordination_service_src_ratelimiter_tier_limits", + "community": 271, + "community_name": "Coordinationservice #271", + "norm_label": "tier_limits" + }, + { + "label": "RateLimiterAdapter", + "file_type": "code", + "source_file": "packages/coordination-service/src/rateLimiter.ts", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_coordination_service_src_ratelimiter_ratelimiteradapter", + "community": 271, + "community_name": "Coordinationservice #271", + "norm_label": "ratelimiteradapter" + }, + { + "label": ".checkRateLimit()", + "file_type": "code", + "source_file": "packages/coordination-service/src/rateLimiter.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_ratelimiter_ratelimiteradapter_checkratelimit", + "community": 271, + "community_name": "Coordinationservice #271", + "norm_label": ".checkratelimit()" + }, + { + "label": ".recordCapsuleSent()", + "file_type": "code", + "source_file": "packages/coordination-service/src/rateLimiter.ts", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_ratelimiter_ratelimiteradapter_recordcapsulesent", + "community": 271, + "community_name": "Coordinationservice #271", + "norm_label": ".recordcapsulesent()" + }, + { + "label": ".resetForTests()", + "file_type": "code", + "source_file": "packages/coordination-service/src/rateLimiter.ts", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_ratelimiter_ratelimiteradapter_resetfortests", + "community": 271, + "community_name": "Coordinationservice #271", + "norm_label": ".resetfortests()" + }, + { + "label": "createRateLimiter()", + "file_type": "code", + "source_file": "packages/coordination-service/src/rateLimiter.ts", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_ratelimiter_createratelimiter", + "community": 235, + "community_name": "Coordinationservice #235", + "norm_label": "createratelimiter()" + }, + { + "label": "coordination-service/src/server.ts", + "file_type": "code", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_coordination_service_src_server", + "community": 235, + "community_name": "Coordinationservice #235", + "norm_label": "coordination-service/src/server.ts" + }, + { + "label": "log", + "file_type": "code", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L33", + "_origin": "ast", + "id": "packages_coordination_service_src_server_log", + "community": 235, + "community_name": "Coordinationservice #235", + "norm_label": "log" + }, + { + "label": "sandboxContextSyncLimiter", + "file_type": "code", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L44", + "_origin": "ast", + "id": "packages_coordination_service_src_server_sandboxcontextsynclimiter", + "community": 235, + "community_name": "Coordinationservice #235", + "norm_label": "sandboxcontextsynclimiter" + }, + { + "label": "STATUS_MESSAGES", + "file_type": "code", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L46", + "_origin": "ast", + "id": "packages_coordination_service_src_server_status_messages", + "community": 235, + "community_name": "Coordinationservice #235", + "norm_label": "status_messages" + }, + { + "label": "getClientIp()", + "file_type": "code", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L59", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_server_getclientip", + "community": 235, + "community_name": "Coordinationservice #235", + "norm_label": "getclientip()" + }, + { + "label": "sendError()", + "file_type": "code", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L65", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_server_senderror", + "community": 235, + "community_name": "Coordinationservice #235", + "norm_label": "senderror()" + }, + { + "label": "readBody()", + "file_type": "code", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L75", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_server_readbody", + "community": 235, + "community_name": "Coordinationservice #235", + "norm_label": "readbody()" + }, + { + "label": "validateReporterDeviceForHandshake()", + "file_type": "code", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L87", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_server_validatereporterdeviceforhandshake", + "community": 235, + "community_name": "Coordinationservice #235", + "norm_label": "validatereporterdeviceforhandshake()" + }, + { + "label": "peerDeviceIdForHealth()", + "file_type": "code", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L106", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_server_peerdeviceidforhealth", + "community": 235, + "community_name": "Coordinationservice #235", + "norm_label": "peerdeviceidforhealth()" + }, + { + "label": "RelayInstance", + "file_type": "code", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L128", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_coordination_service_src_server_relayinstance", + "community": 235, + "community_name": "Coordinationservice #235", + "norm_label": "relayinstance" + }, + { + "label": "createRequestHandler()", + "file_type": "code", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L138", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_server_createrequesthandler", + "community": 235, + "community_name": "Coordinationservice #235", + "norm_label": "createrequesthandler()" + }, + { + "label": "createServer()", + "file_type": "code", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L1144", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_server_createserver", + "community": 235, + "community_name": "Coordinationservice #235", + "norm_label": "createserver()" + }, + { + "label": "coordination-service/src/store.ts", + "file_type": "code", + "source_file": "packages/coordination-service/src/store.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_coordination_service_src_store", + "community": 295, + "community_name": "Coordinationservice #295", + "norm_label": "coordination-service/src/store.ts" + }, + { + "label": "applyHandshakeRegistryMigrations()", + "file_type": "code", + "source_file": "packages/coordination-service/src/store.ts", + "source_location": "L82", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_store_applyhandshakeregistrymigrations", + "community": 295, + "community_name": "Coordinationservice #295", + "norm_label": "applyhandshakeregistrymigrations()" + }, + { + "label": "StoreAdapter", + "file_type": "code", + "source_file": "packages/coordination-service/src/store.ts", + "source_location": "L111", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_coordination_service_src_store_storeadapter", + "community": 272, + "community_name": "Coordinationservice #272", + "norm_label": "storeadapter" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "packages/coordination-service/src/store.ts", + "source_location": "L112", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_store_storeadapter_init", + "community": 272, + "community_name": "Coordinationservice #272", + "norm_label": ".init()" + }, + { + "label": ".close()", + "file_type": "code", + "source_file": "packages/coordination-service/src/store.ts", + "source_location": "L113", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_store_storeadapter_close", + "community": 272, + "community_name": "Coordinationservice #272", + "norm_label": ".close()" + }, + { + "label": ".checkHealth()", + "file_type": "code", + "source_file": "packages/coordination-service/src/store.ts", + "source_location": "L114", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_store_storeadapter_checkhealth", + "community": 272, + "community_name": "Coordinationservice #272", + "norm_label": ".checkhealth()" + }, + { + "label": ".storeCapsule()", + "file_type": "code", + "source_file": "packages/coordination-service/src/store.ts", + "source_location": "L115", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_store_storeadapter_storecapsule", + "community": 272, + "community_name": "Coordinationservice #272", + "norm_label": ".storecapsule()" + }, + { + "label": ".getPendingCapsules()", + "file_type": "code", + "source_file": "packages/coordination-service/src/store.ts", + "source_location": "L124", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_store_storeadapter_getpendingcapsules", + "community": 272, + "community_name": "Coordinationservice #272", + "norm_label": ".getpendingcapsules()" + }, + { + "label": ".markPushed()", + "file_type": "code", + "source_file": "packages/coordination-service/src/store.ts", + "source_location": "L129", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_store_storeadapter_markpushed", + "community": 272, + "community_name": "Coordinationservice #272", + "norm_label": ".markpushed()" + }, + { + "label": ".getCapsuleRelayRoute()", + "file_type": "code", + "source_file": "packages/coordination-service/src/store.ts", + "source_location": "L130", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_store_storeadapter_getcapsulerelayroute", + "community": 272, + "community_name": "Coordinationservice #272", + "norm_label": ".getcapsulerelayroute()" + }, + { + "label": ".acknowledgeCapsules()", + "file_type": "code", + "source_file": "packages/coordination-service/src/store.ts", + "source_location": "L136", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_store_storeadapter_acknowledgecapsules", + "community": 272, + "community_name": "Coordinationservice #272", + "norm_label": ".acknowledgecapsules()" + }, + { + "label": ".countPending()", + "file_type": "code", + "source_file": "packages/coordination-service/src/store.ts", + "source_location": "L137", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_store_storeadapter_countpending", + "community": 272, + "community_name": "Coordinationservice #272", + "norm_label": ".countpending()" + }, + { + "label": ".countPendingForRecipient()", + "file_type": "code", + "source_file": "packages/coordination-service/src/store.ts", + "source_location": "L138", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_store_storeadapter_countpendingforrecipient", + "community": 272, + "community_name": "Coordinationservice #272", + "norm_label": ".countpendingforrecipient()" + }, + { + "label": ".getPendingDeviceAggregateForUser()", + "file_type": "code", + "source_file": "packages/coordination-service/src/store.ts", + "source_location": "L140", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_store_storeadapter_getpendingdeviceaggregateforuser", + "community": 228, + "community_name": "Coordinationservice #228", + "norm_label": ".getpendingdeviceaggregateforuser()" + }, + { + "label": ".cleanupExpired()", + "file_type": "code", + "source_file": "packages/coordination-service/src/store.ts", + "source_location": "L143", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_store_storeadapter_cleanupexpired", + "community": 272, + "community_name": "Coordinationservice #272", + "norm_label": ".cleanupexpired()" + }, + { + "label": ".cleanupAcknowledged()", + "file_type": "code", + "source_file": "packages/coordination-service/src/store.ts", + "source_location": "L144", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_store_storeadapter_cleanupacknowledged", + "community": 272, + "community_name": "Coordinationservice #272", + "norm_label": ".cleanupacknowledged()" + }, + { + "label": ".cleanupStaleHandshakes()", + "file_type": "code", + "source_file": "packages/coordination-service/src/store.ts", + "source_location": "L145", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_store_storeadapter_cleanupstalehandshakes", + "community": 272, + "community_name": "Coordinationservice #272", + "norm_label": ".cleanupstalehandshakes()" + }, + { + "label": ".upsertHandshakeHealthReport()", + "file_type": "code", + "source_file": "packages/coordination-service/src/store.ts", + "source_location": "L146", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_store_storeadapter_upserthandshakehealthreport", + "community": 272, + "community_name": "Coordinationservice #272", + "norm_label": ".upserthandshakehealthreport()" + }, + { + "label": ".getHandshakeHealthReport()", + "file_type": "code", + "source_file": "packages/coordination-service/src/store.ts", + "source_location": "L154", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_store_storeadapter_gethandshakehealthreport", + "community": 272, + "community_name": "Coordinationservice #272", + "norm_label": ".gethandshakehealthreport()" + }, + { + "label": ".getDb()", + "file_type": "code", + "source_file": "packages/coordination-service/src/store.ts", + "source_location": "L166", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_store_storeadapter_getdb", + "community": 272, + "community_name": "Coordinationservice #272", + "norm_label": ".getdb()" + }, + { + "label": "createStore()", + "file_type": "code", + "source_file": "packages/coordination-service/src/store.ts", + "source_location": "L169", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_store_createstore", + "community": 235, + "community_name": "Coordinationservice #235", + "norm_label": "createstore()" + }, + { + "label": "tierResolution.ts", + "file_type": "code", + "source_file": "packages/coordination-service/src/tierResolution.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_coordination_service_src_tierresolution", + "community": 271, + "community_name": "Coordinationservice #271", + "norm_label": "tierresolution.ts" + }, + { + "label": "CANONICAL_TIER_ORDER", + "file_type": "code", + "source_file": "packages/coordination-service/src/tierResolution.ts", + "source_location": "L37", + "_origin": "ast", + "id": "packages_coordination_service_src_tierresolution_canonical_tier_order", + "community": 271, + "community_name": "Coordinationservice #271", + "norm_label": "canonical_tier_order" + }, + { + "label": "TIER_RANK", + "file_type": "code", + "source_file": "packages/coordination-service/src/tierResolution.ts", + "source_location": "L38", + "_origin": "ast", + "id": "packages_coordination_service_src_tierresolution_tier_rank", + "community": 271, + "community_name": "Coordinationservice #271", + "norm_label": "tier_rank" + }, + { + "label": "isKnownTier()", + "file_type": "code", + "source_file": "packages/coordination-service/src/tierResolution.ts", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_tierresolution_isknowntier", + "community": 271, + "community_name": "Coordinationservice #271", + "norm_label": "isknowntier()" + }, + { + "label": "highestTierFromRoles()", + "file_type": "code", + "source_file": "packages/coordination-service/src/tierResolution.ts", + "source_location": "L48", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_tierresolution_highesttierfromroles", + "community": 271, + "community_name": "Coordinationservice #271", + "norm_label": "highesttierfromroles()" + }, + { + "label": "resolveRelayTier()", + "file_type": "code", + "source_file": "packages/coordination-service/src/tierResolution.ts", + "source_location": "L60", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_tierresolution_resolverelaytier", + "community": 271, + "community_name": "Coordinationservice #271", + "norm_label": "resolverelaytier()" + }, + { + "label": "wsManager.ts", + "file_type": "code", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_coordination_service_src_wsmanager", + "community": 228, + "community_name": "Coordinationservice #228", + "norm_label": "wsmanager.ts" + }, + { + "label": "ConnectedClient", + "file_type": "code", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_coordination_service_src_wsmanager_connectedclient", + "community": 228, + "community_name": "Coordinationservice #228", + "norm_label": "connectedclient" + }, + { + "label": "compositeKey()", + "file_type": "code", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_wsmanager_compositekey", + "community": 228, + "community_name": "Coordinationservice #228", + "norm_label": "compositekey()" + }, + { + "label": "parseCompositeKey()", + "file_type": "code", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_wsmanager_parsecompositekey", + "community": 228, + "community_name": "Coordinationservice #228", + "norm_label": "parsecompositekey()" + }, + { + "label": "logOrphanedPendingForUser()", + "file_type": "code", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_wsmanager_logorphanedpendingforuser", + "community": 228, + "community_name": "Coordinationservice #228", + "norm_label": "logorphanedpendingforuser()" + }, + { + "label": "deliverPendingToWs()", + "file_type": "code", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L73", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_wsmanager_deliverpendingtows", + "community": 272, + "community_name": "Coordinationservice #272", + "norm_label": "deliverpendingtows()" + }, + { + "label": "WsManagerAdapter", + "file_type": "code", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L108", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_coordination_service_src_wsmanager_wsmanageradapter", + "community": 228, + "community_name": "Coordinationservice #228", + "norm_label": "wsmanageradapter" + }, + { + "label": ".handleConnection()", + "file_type": "code", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L109", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_wsmanager_wsmanageradapter_handleconnection", + "community": 271, + "community_name": "Coordinationservice #271", + "norm_label": ".handleconnection()" + }, + { + "label": ".flushPendingToConnectedClientsForUser()", + "file_type": "code", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L115", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_wsmanager_wsmanageradapter_flushpendingtoconnectedclientsforuser", + "community": 228, + "community_name": "Coordinationservice #228", + "norm_label": ".flushpendingtoconnectedclientsforuser()" + }, + { + "label": ".pushCapsule()", + "file_type": "code", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L120", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_wsmanager_wsmanageradapter_pushcapsule", + "community": 228, + "community_name": "Coordinationservice #228", + "norm_label": ".pushcapsule()" + }, + { + "label": ".pushP2pSignal()", + "file_type": "code", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L124", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_wsmanager_wsmanageradapter_pushp2psignal", + "community": 228, + "community_name": "Coordinationservice #228", + "norm_label": ".pushp2psignal()" + }, + { + "label": ".pushSystemEvent()", + "file_type": "code", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L130", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_wsmanager_wsmanageradapter_pushsystemevent", + "community": 228, + "community_name": "Coordinationservice #228", + "norm_label": ".pushsystemevent()" + }, + { + "label": ".pushBeapIngestAck()", + "file_type": "code", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L132", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_wsmanager_wsmanageradapter_pushbeapingestack", + "community": 228, + "community_name": "Coordinationservice #228", + "norm_label": ".pushbeapingestack()" + }, + { + "label": ".handleAck()", + "file_type": "code", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L138", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_wsmanager_wsmanageradapter_handleack", + "community": 228, + "community_name": "Coordinationservice #228", + "norm_label": ".handleack()" + }, + { + "label": ".getConnectedCount()", + "file_type": "code", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L139", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_wsmanager_wsmanageradapter_getconnectedcount", + "community": 228, + "community_name": "Coordinationservice #228", + "norm_label": ".getconnectedcount()" + }, + { + "label": ".startHeartbeat()", + "file_type": "code", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L140", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_wsmanager_wsmanageradapter_startheartbeat", + "community": 228, + "community_name": "Coordinationservice #228", + "norm_label": ".startheartbeat()" + }, + { + "label": ".onPong()", + "file_type": "code", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L141", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_wsmanager_wsmanageradapter_onpong", + "community": 228, + "community_name": "Coordinationservice #228", + "norm_label": ".onpong()" + }, + { + "label": ".getUserIdForWs()", + "file_type": "code", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L142", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_wsmanager_wsmanageradapter_getuseridforws", + "community": 228, + "community_name": "Coordinationservice #228", + "norm_label": ".getuseridforws()" + }, + { + "label": ".getClient()", + "file_type": "code", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L144", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_wsmanager_wsmanageradapter_getclient", + "community": 228, + "community_name": "Coordinationservice #228", + "norm_label": ".getclient()" + }, + { + "label": ".getClientByDevice()", + "file_type": "code", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L145", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_wsmanager_wsmanageradapter_getclientbydevice", + "community": 228, + "community_name": "Coordinationservice #228", + "norm_label": ".getclientbydevice()" + }, + { + "label": ".getClientsByUser()", + "file_type": "code", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L146", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_wsmanager_wsmanageradapter_getclientsbyuser", + "community": 228, + "community_name": "Coordinationservice #228", + "norm_label": ".getclientsbyuser()" + }, + { + "label": ".listConnectedDeviceIdsForUser()", + "file_type": "code", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L147", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_wsmanager_wsmanageradapter_listconnecteddeviceidsforuser", + "community": 228, + "community_name": "Coordinationservice #228", + "norm_label": ".listconnecteddeviceidsforuser()" + }, + { + "label": ".removeClient()", + "file_type": "code", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L148", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_wsmanager_wsmanageradapter_removeclient", + "community": 228, + "community_name": "Coordinationservice #228", + "norm_label": ".removeclient()" + }, + { + "label": "createWsManager()", + "file_type": "code", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L151", + "_callable": true, + "_origin": "ast", + "id": "packages_coordination_service_src_wsmanager_createwsmanager", + "community": 228, + "community_name": "Coordinationservice #228", + "norm_label": "createwsmanager()" + }, + { + "label": "coordination-service/tsconfig.json", + "file_type": "code", + "source_file": "packages/coordination-service/tsconfig.json", + "source_location": "L1", + "_origin": "ast", + "id": "packages_coordination_service_tsconfig", + "community": 297, + "community_name": "Coordinationservice #297", + "norm_label": "coordination-service/tsconfig.json" + }, + { + "label": "compilerOptions", + "file_type": "code", + "source_file": "packages/coordination-service/tsconfig.json", + "source_location": "L2", + "_origin": "ast", + "id": "packages_coordination_service_tsconfig_compileroptions", + "community": 297, + "community_name": "Coordinationservice #297", + "norm_label": "compileroptions" + }, + { + "label": "target", + "file_type": "code", + "source_file": "packages/coordination-service/tsconfig.json", + "source_location": "L3", + "_origin": "ast", + "id": "packages_coordination_service_tsconfig_compileroptions_target", + "community": 297, + "community_name": "Coordinationservice #297", + "norm_label": "target" + }, + { + "label": "module", + "file_type": "code", + "source_file": "packages/coordination-service/tsconfig.json", + "source_location": "L4", + "_origin": "ast", + "id": "packages_coordination_service_tsconfig_compileroptions_module", + "community": 297, + "community_name": "Coordinationservice #297", + "norm_label": "module" + }, + { + "label": "moduleResolution", + "file_type": "code", + "source_file": "packages/coordination-service/tsconfig.json", + "source_location": "L5", + "_origin": "ast", + "id": "packages_coordination_service_tsconfig_compileroptions_moduleresolution", + "community": 297, + "community_name": "Coordinationservice #297", + "norm_label": "moduleresolution" + }, + { + "label": "strict", + "file_type": "code", + "source_file": "packages/coordination-service/tsconfig.json", + "source_location": "L6", + "_origin": "ast", + "id": "packages_coordination_service_tsconfig_compileroptions_strict", + "community": 297, + "community_name": "Coordinationservice #297", + "norm_label": "strict" + }, + { + "label": "skipLibCheck", + "file_type": "code", + "source_file": "packages/coordination-service/tsconfig.json", + "source_location": "L7", + "_origin": "ast", + "id": "packages_coordination_service_tsconfig_compileroptions_skiplibcheck", + "community": 297, + "community_name": "Coordinationservice #297", + "norm_label": "skiplibcheck" + }, + { + "label": "declaration", + "file_type": "code", + "source_file": "packages/coordination-service/tsconfig.json", + "source_location": "L8", + "_origin": "ast", + "id": "packages_coordination_service_tsconfig_compileroptions_declaration", + "community": 297, + "community_name": "Coordinationservice #297", + "norm_label": "declaration" + }, + { + "label": "outDir", + "file_type": "code", + "source_file": "packages/coordination-service/tsconfig.json", + "source_location": "L9", + "_origin": "ast", + "id": "packages_coordination_service_tsconfig_compileroptions_outdir", + "community": 297, + "community_name": "Coordinationservice #297", + "norm_label": "outdir" + }, + { + "label": "rootDir", + "file_type": "code", + "source_file": "packages/coordination-service/tsconfig.json", + "source_location": "L10", + "_origin": "ast", + "id": "packages_coordination_service_tsconfig_compileroptions_rootdir", + "community": 297, + "community_name": "Coordinationservice #297", + "norm_label": "rootdir" + }, + { + "label": "include", + "file_type": "code", + "source_file": "packages/coordination-service/tsconfig.json", + "source_location": "L12", + "_origin": "ast", + "id": "packages_coordination_service_tsconfig_include", + "community": 297, + "community_name": "Coordinationservice #297", + "norm_label": "include" + }, + { + "label": "src/**/*.ts", + "file_type": "concept", + "source_file": "packages/coordination-service/tsconfig.json", + "source_location": "L12", + "_origin": "ast", + "id": "packages_coordination_service_tsconfig_json_ref_src_ts", + "community": 297, + "community_name": "Coordinationservice #297", + "norm_label": "src/**/*.ts" + }, + { + "label": "exclude", + "file_type": "code", + "source_file": "packages/coordination-service/tsconfig.json", + "source_location": "L13", + "_origin": "ast", + "id": "packages_coordination_service_tsconfig_exclude", + "community": 297, + "community_name": "Coordinationservice #297", + "norm_label": "exclude" + }, + { + "label": "node_modules", + "file_type": "concept", + "source_file": "packages/coordination-service/tsconfig.json", + "source_location": "L13", + "_origin": "ast", + "id": "packages_coordination_service_tsconfig_json_ref_node_modules", + "community": 297, + "community_name": "Coordinationservice #297", + "norm_label": "node_modules" + }, + { + "label": "dist", + "file_type": "concept", + "source_file": "packages/coordination-service/tsconfig.json", + "source_location": "L13", + "_origin": "ast", + "id": "packages_coordination_service_tsconfig_json_ref_dist", + "community": 297, + "community_name": "Coordinationservice #297", + "norm_label": "dist" + }, + { + "label": "__tests__", + "file_type": "concept", + "source_file": "packages/coordination-service/tsconfig.json", + "source_location": "L13", + "_origin": "ast", + "id": "packages_coordination_service_tsconfig_json_ref_tests", + "community": 297, + "community_name": "Coordinationservice #297", + "norm_label": "__tests__" + }, + { + "label": "coordination-service/vitest.config.ts", + "file_type": "code", + "source_file": "packages/coordination-service/vitest.config.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_coordination_service_vitest_config", + "community": 613, + "community_name": "Coordinationservice #613", + "norm_label": "coordination-service/vitest.config.ts" + }, + { + "label": "hello/package.json", + "file_type": "code", + "source_file": "packages/hello/package.json", + "source_location": "L1", + "_origin": "ast", + "id": "packages_hello_package", + "community": 451, + "community_name": "Hello", + "norm_label": "hello/package.json" + }, + { + "label": "name", + "file_type": "code", + "source_file": "packages/hello/package.json", + "source_location": "L2", + "_origin": "ast", + "id": "packages_hello_package_name", + "community": 451, + "community_name": "Hello", + "norm_label": "name" + }, + { + "label": "version", + "file_type": "code", + "source_file": "packages/hello/package.json", + "source_location": "L3", + "_origin": "ast", + "id": "packages_hello_package_version", + "community": 451, + "community_name": "Hello", + "norm_label": "version" + }, + { + "label": "scripts", + "file_type": "code", + "source_file": "packages/hello/package.json", + "source_location": "L4", + "_origin": "ast", + "id": "packages_hello_package_scripts", + "community": 451, + "community_name": "Hello", + "norm_label": "scripts" + }, + { + "label": "test", + "file_type": "code", + "source_file": "packages/hello/package.json", + "source_location": "L5", + "_origin": "ast", + "id": "packages_hello_package_scripts_test", + "community": 451, + "community_name": "Hello", + "norm_label": "test" + }, + { + "label": "index.test.ts", + "file_type": "code", + "source_file": "packages/hello/src/index.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_hello_src_index_test", + "community": 614, + "community_name": "Hello #614", + "norm_label": "index.test.ts" + }, + { + "label": "hello/tsconfig.json", + "file_type": "code", + "source_file": "packages/hello/tsconfig.json", + "source_location": "L1", + "_origin": "ast", + "id": "packages_hello_tsconfig", + "community": 452, + "community_name": "Hello #452", + "norm_label": "hello/tsconfig.json" + }, + { + "label": "extends", + "file_type": "code", + "source_file": "packages/hello/tsconfig.json", + "source_location": "L1", + "_origin": "ast", + "id": "packages_hello_tsconfig_extends", + "community": 452, + "community_name": "Hello #452", + "norm_label": "extends" + }, + { + "label": "../../tsconfig.base.json", + "file_type": "concept", + "source_file": "packages/hello/tsconfig.json", + "source_location": "L1", + "_origin": "ast", + "id": "ref_tsconfig_base_json", + "community": 452, + "community_name": "Hello #452", + "norm_label": "../../tsconfig.base.json" + }, + { + "label": "include", + "file_type": "code", + "source_file": "packages/hello/tsconfig.json", + "source_location": "L1", + "_origin": "ast", + "id": "packages_hello_tsconfig_include", + "community": 452, + "community_name": "Hello #452", + "norm_label": "include" + }, + { + "label": "src", + "file_type": "concept", + "source_file": "packages/hello/tsconfig.json", + "source_location": "L1", + "_origin": "ast", + "id": "packages_hello_tsconfig_json_ref_src", + "community": 452, + "community_name": "Hello #452", + "norm_label": "src" + }, + { + "label": "ingestion-core.test.ts", + "file_type": "code", + "source_file": "packages/ingestion-core/__tests__/ingestion-core.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_ingestion_core_tests_ingestion_core_test", + "community": 383, + "community_name": "Ingestioncore #383", + "norm_label": "ingestion-core.test.ts" + }, + { + "label": "emptyTransport", + "file_type": "code", + "source_file": "packages/ingestion-core/__tests__/ingestion-core.test.ts", + "source_location": "L17", + "_origin": "ast", + "id": "packages_ingestion_core_tests_ingestion_core_test_emptytransport", + "community": 383, + "community_name": "Ingestioncore #383", + "norm_label": "emptytransport" + }, + { + "label": "validBeapPayload()", + "file_type": "code", + "source_file": "packages/ingestion-core/__tests__/ingestion-core.test.ts", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_tests_ingestion_core_test_validbeappayload", + "community": 383, + "community_name": "Ingestioncore #383", + "norm_label": "validbeappayload()" + }, + { + "label": "validSession()", + "file_type": "code", + "source_file": "packages/ingestion-core/__tests__/ingestion-core.test.ts", + "source_location": "L293", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_tests_ingestion_core_test_validsession", + "community": 383, + "community_name": "Ingestioncore #383", + "norm_label": "validsession()" + }, + { + "label": "validImportOnlyArtefact()", + "file_type": "code", + "source_file": "packages/ingestion-core/__tests__/ingestion-core.test.ts", + "source_location": "L307", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_tests_ingestion_core_test_validimportonlyartefact", + "community": 383, + "community_name": "Ingestioncore #383", + "norm_label": "validimportonlyartefact()" + }, + { + "label": "validRunArtefact()", + "file_type": "code", + "source_file": "packages/ingestion-core/__tests__/ingestion-core.test.ts", + "source_location": "L326", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_tests_ingestion_core_test_validrunartefact", + "community": 383, + "community_name": "Ingestioncore #383", + "norm_label": "validrunartefact()" + }, + { + "label": "draftCapsule()", + "file_type": "code", + "source_file": "packages/ingestion-core/__tests__/ingestion-core.test.ts", + "source_location": "L341", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_tests_ingestion_core_test_draftcapsule", + "community": 383, + "community_name": "Ingestioncore #383", + "norm_label": "draftcapsule()" + }, + { + "label": "validArtefactBase()", + "file_type": "code", + "source_file": "packages/ingestion-core/__tests__/ingestion-core.test.ts", + "source_location": "L805", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_tests_ingestion_core_test_validartefactbase", + "community": 383, + "community_name": "Ingestioncore #383", + "norm_label": "validartefactbase()" + }, + { + "label": "RFC-3339", + "file_type": "concept", + "source_file": "packages/ingestion-core/__tests__/ingestion-core.test.ts", + "source_location": "L507", + "_origin": "ast", + "id": "packages_ingestion_core_tests_ingestion_core_test_ts_docref_rfc_3339", + "community": 383, + "community_name": "Ingestioncore #383", + "norm_label": "rfc-3339" + }, + { + "label": "sandboxEgressClassification.test.ts", + "file_type": "code", + "source_file": "packages/ingestion-core/__tests__/sandboxEgressClassification.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_ingestion_core_tests_sandboxegressclassification_test", + "community": 574, + "community_name": "Ingestioncore #574", + "norm_label": "sandboxegressclassification.test.ts" + }, + { + "label": "nativeBeapPackage()", + "file_type": "code", + "source_file": "packages/ingestion-core/__tests__/sandboxEgressClassification.test.ts", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_tests_sandboxegressclassification_test_nativebeappackage", + "community": 574, + "community_name": "Ingestioncore #574", + "norm_label": "nativebeappackage()" + }, + { + "label": "sealedServiceRpcCapsuleValidation.test.ts", + "file_type": "code", + "source_file": "packages/ingestion-core/__tests__/sealedServiceRpcCapsuleValidation.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_ingestion_core_tests_sealedservicerpccapsulevalidation_test", + "community": 174, + "community_name": "Ingestioncore #174", + "norm_label": "sealedservicerpccapsulevalidation.test.ts" + }, + { + "label": "minimalSealedCapsule()", + "file_type": "code", + "source_file": "packages/ingestion-core/__tests__/sealedServiceRpcCapsuleValidation.test.ts", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_tests_sealedservicerpccapsulevalidation_test_minimalsealedcapsule", + "community": 174, + "community_name": "Ingestioncore #174", + "norm_label": "minimalsealedcapsule()" + }, + { + "label": "ingestion-core/package.json", + "file_type": "code", + "source_file": "packages/ingestion-core/package.json", + "source_location": "L1", + "_origin": "ast", + "id": "packages_ingestion_core_package", + "community": 246, + "community_name": "Ingestioncore #246", + "norm_label": "ingestion-core/package.json" + }, + { + "label": "name", + "file_type": "code", + "source_file": "packages/ingestion-core/package.json", + "source_location": "L2", + "_origin": "ast", + "id": "packages_ingestion_core_package_name", + "community": 246, + "community_name": "Ingestioncore #246", + "norm_label": "name" + }, + { + "label": "version", + "file_type": "code", + "source_file": "packages/ingestion-core/package.json", + "source_location": "L3", + "_origin": "ast", + "id": "packages_ingestion_core_package_version", + "community": 246, + "community_name": "Ingestioncore #246", + "norm_label": "version" + }, + { + "label": "private", + "file_type": "code", + "source_file": "packages/ingestion-core/package.json", + "source_location": "L4", + "_origin": "ast", + "id": "packages_ingestion_core_package_private", + "community": 246, + "community_name": "Ingestioncore #246", + "norm_label": "private" + }, + { + "label": "type", + "file_type": "code", + "source_file": "packages/ingestion-core/package.json", + "source_location": "L5", + "_origin": "ast", + "id": "packages_ingestion_core_package_type", + "community": 246, + "community_name": "Ingestioncore #246", + "norm_label": "type" + }, + { + "label": "main", + "file_type": "code", + "source_file": "packages/ingestion-core/package.json", + "source_location": "L6", + "_origin": "ast", + "id": "packages_ingestion_core_package_main", + "community": 246, + "community_name": "Ingestioncore #246", + "norm_label": "main" + }, + { + "label": "types", + "file_type": "code", + "source_file": "packages/ingestion-core/package.json", + "source_location": "L7", + "_origin": "ast", + "id": "packages_ingestion_core_package_types", + "community": 246, + "community_name": "Ingestioncore #246", + "norm_label": "types" + }, + { + "label": "exports", + "file_type": "code", + "source_file": "packages/ingestion-core/package.json", + "source_location": "L8", + "_origin": "ast", + "id": "packages_ingestion_core_package_exports", + "community": 246, + "community_name": "Ingestioncore #246", + "norm_label": "exports" + }, + { + "label": "scripts", + "file_type": "code", + "source_file": "packages/ingestion-core/package.json", + "source_location": "L14", + "_origin": "ast", + "id": "packages_ingestion_core_package_scripts", + "community": 246, + "community_name": "Ingestioncore #246", + "norm_label": "scripts" + }, + { + "label": "build", + "file_type": "code", + "source_file": "packages/ingestion-core/package.json", + "source_location": "L15", + "_origin": "ast", + "id": "packages_ingestion_core_package_scripts_build", + "community": 246, + "community_name": "Ingestioncore #246", + "norm_label": "build" + }, + { + "label": "test", + "file_type": "code", + "source_file": "packages/ingestion-core/package.json", + "source_location": "L16", + "_origin": "ast", + "id": "packages_ingestion_core_package_scripts_test", + "community": 246, + "community_name": "Ingestioncore #246", + "norm_label": "test" + }, + { + "label": "test:watch", + "file_type": "code", + "source_file": "packages/ingestion-core/package.json", + "source_location": "L17", + "_origin": "ast", + "id": "packages_ingestion_core_package_scripts_test_watch", + "community": 246, + "community_name": "Ingestioncore #246", + "norm_label": "test:watch" + }, + { + "label": "devDependencies", + "file_type": "code", + "source_file": "packages/ingestion-core/package.json", + "source_location": "L19", + "_origin": "ast", + "id": "packages_ingestion_core_package_devdependencies", + "community": 246, + "community_name": "Ingestioncore #246", + "norm_label": "devdependencies" + }, + { + "label": "@types/node", + "file_type": "code", + "source_file": "packages/ingestion-core/package.json", + "source_location": "L20", + "_origin": "ast", + "id": "packages_ingestion_core_package_devdependencies_types_node", + "community": 246, + "community_name": "Ingestioncore #246", + "norm_label": "@types/node" + }, + { + "label": "@types/node", + "file_type": "concept", + "source_file": "packages/ingestion-core/package.json", + "source_location": "L20", + "_origin": "ast", + "id": "packages_ingestion_core_package_json_types_node", + "community": 246, + "community_name": "Ingestioncore #246", + "norm_label": "@types/node" + }, + { + "label": "typescript", + "file_type": "code", + "source_file": "packages/ingestion-core/package.json", + "source_location": "L21", + "_origin": "ast", + "id": "packages_ingestion_core_package_devdependencies_typescript", + "community": 246, + "community_name": "Ingestioncore #246", + "norm_label": "typescript" + }, + { + "label": "typescript", + "file_type": "concept", + "source_file": "packages/ingestion-core/package.json", + "source_location": "L21", + "_origin": "ast", + "id": "packages_ingestion_core_package_json_typescript", + "community": 246, + "community_name": "Ingestioncore #246", + "norm_label": "typescript" + }, + { + "label": "vitest", + "file_type": "code", + "source_file": "packages/ingestion-core/package.json", + "source_location": "L22", + "_origin": "ast", + "id": "packages_ingestion_core_package_devdependencies_vitest", + "community": 246, + "community_name": "Ingestioncore #246", + "norm_label": "vitest" + }, + { + "label": "vitest", + "file_type": "concept", + "source_file": "packages/ingestion-core/package.json", + "source_location": "L22", + "_origin": "ast", + "id": "packages_ingestion_core_package_json_vitest", + "community": 246, + "community_name": "Ingestioncore #246", + "norm_label": "vitest" + }, + { + "label": "engines", + "file_type": "code", + "source_file": "packages/ingestion-core/package.json", + "source_location": "L24", + "_origin": "ast", + "id": "packages_ingestion_core_package_engines", + "community": 246, + "community_name": "Ingestioncore #246", + "norm_label": "engines" + }, + { + "label": "node", + "file_type": "code", + "source_file": "packages/ingestion-core/package.json", + "source_location": "L25", + "_origin": "ast", + "id": "packages_ingestion_core_package_engines_node", + "community": 246, + "community_name": "Ingestioncore #246", + "norm_label": "node" + }, + { + "label": "beapDetection.ts", + "file_type": "code", + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_ingestion_core_src_beapdetection", + "community": 261, + "community_name": "Ingestioncore #261", + "norm_label": "beapdetection.ts" + }, + { + "label": "BEAP_MIME_TYPES", + "file_type": "code", + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L13", + "_origin": "ast", + "id": "packages_ingestion_core_src_beapdetection_beap_mime_types", + "community": 261, + "community_name": "Ingestioncore #261", + "norm_label": "beap_mime_types" + }, + { + "label": "BEAP_HEADER_KEYS", + "file_type": "code", + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L14", + "_origin": "ast", + "id": "packages_ingestion_core_src_beapdetection_beap_header_keys", + "community": 261, + "community_name": "Ingestioncore #261", + "norm_label": "beap_header_keys" + }, + { + "label": "detectBeapCapsule()", + "file_type": "code", + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_beapdetection_detectbeapcapsule", + "community": 261, + "community_name": "Ingestioncore #261", + "norm_label": "detectbeapcapsule()" + }, + { + "label": "checkMimeType()", + "file_type": "code", + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_beapdetection_checkmimetype", + "community": 261, + "community_name": "Ingestioncore #261", + "norm_label": "checkmimetype()" + }, + { + "label": "checkHeaderMarkers()", + "file_type": "code", + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L41", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_beapdetection_checkheadermarkers", + "community": 261, + "community_name": "Ingestioncore #261", + "norm_label": "checkheadermarkers()" + }, + { + "label": "checkJsonStructure()", + "file_type": "code", + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L51", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_beapdetection_checkjsonstructure", + "community": 261, + "community_name": "Ingestioncore #261", + "norm_label": "checkjsonstructure()" + }, + { + "label": "VALID_MESSAGE_PACKAGE_ENCODINGS", + "file_type": "code", + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L71", + "_origin": "ast", + "id": "packages_ingestion_core_src_beapdetection_valid_message_package_encodings", + "community": 261, + "community_name": "Ingestioncore #261", + "norm_label": "valid_message_package_encodings" + }, + { + "label": "hasEncryptedMessagePackageBody()", + "file_type": "code", + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L78", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_beapdetection_hasencryptedmessagepackagebody", + "community": 261, + "community_name": "Ingestioncore #261", + "norm_label": "hasencryptedmessagepackagebody()" + }, + { + "label": "RELAY_HANDSHAKE_CAPSULE_TYPES", + "file_type": "code", + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L93", + "_origin": "ast", + "id": "packages_ingestion_core_src_beapdetection_relay_handshake_capsule_types", + "community": 261, + "community_name": "Ingestioncore #261", + "norm_label": "relay_handshake_capsule_types" + }, + { + "label": "isMessagePackageStructure()", + "file_type": "code", + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L101", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_beapdetection_ismessagepackagestructure", + "community": 261, + "community_name": "Ingestioncore #261", + "norm_label": "ismessagepackagestructure()" + }, + { + "label": "isPlainObject()", + "file_type": "code", + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L116", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_beapdetection_isplainobject", + "community": 261, + "community_name": "Ingestioncore #261", + "norm_label": "isplainobject()" + }, + { + "label": "normalizeCoordinationRelayNativeBeapWire()", + "file_type": "code", + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L129", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_beapdetection_normalizecoordinationrelaynativebeapwire", + "community": 261, + "community_name": "Ingestioncore #261", + "norm_label": "normalizecoordinationrelaynativebeapwire()" + }, + { + "label": "isCoordinationRelayNativeBeap()", + "file_type": "code", + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L144", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_beapdetection_iscoordinationrelaynativebeap", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "iscoordinationrelaynativebeap()" + }, + { + "label": "detectBeapMessagePackage()", + "file_type": "code", + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L179", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_beapdetection_detectbeapmessagepackage", + "community": 261, + "community_name": "Ingestioncore #261", + "norm_label": "detectbeapmessagepackage()" + }, + { + "label": "checkJsonStructureMessagePackage()", + "file_type": "code", + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L202", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_beapdetection_checkjsonstructuremessagepackage", + "community": 261, + "community_name": "Ingestioncore #261", + "norm_label": "checkjsonstructuremessagepackage()" + }, + { + "label": "checkAttachmentMetadata()", + "file_type": "code", + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L222", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_beapdetection_checkattachmentmetadata", + "community": 261, + "community_name": "Ingestioncore #261", + "norm_label": "checkattachmentmetadata()" + }, + { + "label": "tryParseBeapJson()", + "file_type": "code", + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L237", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_beapdetection_tryparsebeapjson", + "community": 261, + "community_name": "Ingestioncore #261", + "norm_label": "tryparsebeapjson()" + }, + { + "label": "contentValidator.ts", + "file_type": "code", + "source_file": "packages/ingestion-core/src/contentValidator.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_ingestion_core_src_contentvalidator", + "community": 342, + "community_name": "Ingestioncore #342", + "norm_label": "contentvalidator.ts" + }, + { + "label": "CONTENT_VALIDATOR_VERSION", + "file_type": "code", + "source_file": "packages/ingestion-core/src/contentValidator.ts", + "source_location": "L47", + "_origin": "ast", + "id": "packages_ingestion_core_src_contentvalidator_content_validator_version", + "community": 342, + "community_name": "Ingestioncore #342", + "norm_label": "content_validator_version" + }, + { + "label": "ContentValidationResult", + "file_type": "code", + "source_file": "packages/ingestion-core/src/contentValidator.ts", + "source_location": "L54", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_contentvalidator_contentvalidationresult", + "community": 174, + "community_name": "Ingestioncore #174", + "norm_label": "contentvalidationresult" + }, + { + "label": "validateDecryptedBeapContent()", + "file_type": "code", + "source_file": "packages/ingestion-core/src/contentValidator.ts", + "source_location": "L91", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_contentvalidator_validatedecryptedbeapcontent", + "community": 342, + "community_name": "Ingestioncore #342", + "norm_label": "validatedecryptedbeapcontent()" + }, + { + "label": "ok()", + "file_type": "code", + "source_file": "packages/ingestion-core/src/contentValidator.ts", + "source_location": "L173", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_contentvalidator_ok", + "community": 342, + "community_name": "Ingestioncore #342", + "norm_label": "ok()" + }, + { + "label": "validateBeapMessageContent()", + "file_type": "code", + "source_file": "packages/ingestion-core/src/contentValidator.ts", + "source_location": "L197", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_contentvalidator_validatebeapmessagecontent", + "community": 342, + "community_name": "Ingestioncore #342", + "norm_label": "validatebeapmessagecontent()" + }, + { + "label": "validateAttachmentsCanonical()", + "file_type": "code", + "source_file": "packages/ingestion-core/src/contentValidator.ts", + "source_location": "L269", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_contentvalidator_validateattachmentscanonical", + "community": 342, + "community_name": "Ingestioncore #342", + "norm_label": "validateattachmentscanonical()" + }, + { + "label": "validateAiAnalysisField()", + "file_type": "code", + "source_file": "packages/ingestion-core/src/contentValidator.ts", + "source_location": "L338", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_contentvalidator_validateaianalysisfield", + "community": 342, + "community_name": "Ingestioncore #342", + "norm_label": "validateaianalysisfield()" + }, + { + "label": "PLAIN_EMAIL_REQUIRED_STRINGS", + "file_type": "code", + "source_file": "packages/ingestion-core/src/contentValidator.ts", + "source_location": "L359", + "_origin": "ast", + "id": "packages_ingestion_core_src_contentvalidator_plain_email_required_strings", + "community": 342, + "community_name": "Ingestioncore #342", + "norm_label": "plain_email_required_strings" + }, + { + "label": "validatePlainEmailContent()", + "file_type": "code", + "source_file": "packages/ingestion-core/src/contentValidator.ts", + "source_location": "L371", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_contentvalidator_validateplainemailcontent", + "community": 342, + "community_name": "Ingestioncore #342", + "norm_label": "validateplainemailcontent()" + }, + { + "label": "QUARANTINE_REQUIRED_STRINGS", + "file_type": "code", + "source_file": "packages/ingestion-core/src/contentValidator.ts", + "source_location": "L405", + "_origin": "ast", + "id": "packages_ingestion_core_src_contentvalidator_quarantine_required_strings", + "community": 342, + "community_name": "Ingestioncore #342", + "norm_label": "quarantine_required_strings" + }, + { + "label": "validateHostQuarantineContent()", + "file_type": "code", + "source_file": "packages/ingestion-core/src/contentValidator.ts", + "source_location": "L426", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_contentvalidator_validatehostquarantinecontent", + "community": 342, + "community_name": "Ingestioncore #342", + "norm_label": "validatehostquarantinecontent()" + }, + { + "label": "RFC-3339", + "file_type": "concept", + "source_file": "packages/ingestion-core/src/contentValidator.ts", + "source_location": "L55", + "_origin": "ast", + "id": "packages_ingestion_core_src_contentvalidator_ts_docref_rfc_3339", + "community": 342, + "community_name": "Ingestioncore #342", + "norm_label": "rfc-3339" + }, + { + "label": "distributionGate.ts", + "file_type": "code", + "source_file": "packages/ingestion-core/src/distributionGate.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_ingestion_core_src_distributiongate", + "community": 236, + "community_name": "Ingestioncore #236", + "norm_label": "distributiongate.ts" + }, + { + "label": "routeValidatedCapsule()", + "file_type": "code", + "source_file": "packages/ingestion-core/src/distributionGate.ts", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_distributiongate_routevalidatedcapsule", + "community": 257, + "community_name": "Ingestioncore #257", + "norm_label": "routevalidatedcapsule()" + }, + { + "label": "ingestion-core/src/index.ts", + "file_type": "code", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_ingestion_core_src_index", + "community": 174, + "community_name": "Ingestioncore #174", + "norm_label": "ingestion-core/src/index.ts" + }, + { + "label": "ingestor.ts", + "file_type": "code", + "source_file": "packages/ingestion-core/src/ingestor.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_ingestion_core_src_ingestor", + "community": 257, + "community_name": "Ingestioncore #257", + "norm_label": "ingestor.ts" + }, + { + "label": "ingestInput()", + "file_type": "code", + "source_file": "packages/ingestion-core/src/ingestor.ts", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_ingestor_ingestinput", + "community": 257, + "community_name": "Ingestioncore #257", + "norm_label": "ingestinput()" + }, + { + "label": "src/pipeline.ts", + "file_type": "code", + "source_file": "packages/ingestion-core/src/pipeline.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_ingestion_core_src_pipeline", + "community": 257, + "community_name": "Ingestioncore #257", + "norm_label": "src/pipeline.ts" + }, + { + "label": "prepareCoordinationRelayNativeBeapRawInput()", + "file_type": "code", + "source_file": "packages/ingestion-core/src/pipeline.ts", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_pipeline_preparecoordinationrelaynativebeaprawinput", + "community": 257, + "community_name": "Ingestioncore #257", + "norm_label": "preparecoordinationrelaynativebeaprawinput()" + }, + { + "label": "PipelineResult", + "file_type": "code", + "source_file": "packages/ingestion-core/src/pipeline.ts", + "source_location": "L37", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_pipeline_pipelineresult", + "community": 257, + "community_name": "Ingestioncore #257", + "norm_label": "pipelineresult" + }, + { + "label": "validateInput()", + "file_type": "code", + "source_file": "packages/ingestion-core/src/pipeline.ts", + "source_location": "L49", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_pipeline_validateinput", + "community": 257, + "community_name": "Ingestioncore #257", + "norm_label": "validateinput()" + }, + { + "label": "plainTransform.ts", + "file_type": "code", + "source_file": "packages/ingestion-core/src/plainTransform.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_ingestion_core_src_plaintransform", + "community": 257, + "community_name": "Ingestioncore #257", + "norm_label": "plaintransform.ts" + }, + { + "label": "buildPlainDraftPayload()", + "file_type": "code", + "source_file": "packages/ingestion-core/src/plainTransform.ts", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_plaintransform_buildplaindraftpayload", + "community": 257, + "community_name": "Ingestioncore #257", + "norm_label": "buildplaindraftpayload()" + }, + { + "label": "provenanceMetadata.ts", + "file_type": "code", + "source_file": "packages/ingestion-core/src/provenanceMetadata.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_ingestion_core_src_provenancemetadata", + "community": 257, + "community_name": "Ingestioncore #257", + "norm_label": "provenancemetadata.ts" + }, + { + "label": "computeRawInputHash()", + "file_type": "code", + "source_file": "packages/ingestion-core/src/provenanceMetadata.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_provenancemetadata_computerawinputhash", + "community": 257, + "community_name": "Ingestioncore #257", + "norm_label": "computerawinputhash()" + }, + { + "label": "deriveOriginClassification()", + "file_type": "code", + "source_file": "packages/ingestion-core/src/provenanceMetadata.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_provenancemetadata_deriveoriginclassification", + "community": 257, + "community_name": "Ingestioncore #257", + "norm_label": "deriveoriginclassification()" + }, + { + "label": "buildProvenanceMetadata()", + "file_type": "code", + "source_file": "packages/ingestion-core/src/provenanceMetadata.ts", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_provenancemetadata_buildprovenancemetadata", + "community": 257, + "community_name": "Ingestioncore #257", + "norm_label": "buildprovenancemetadata()" + }, + { + "label": "buildTransportMetadata()", + "file_type": "code", + "source_file": "packages/ingestion-core/src/provenanceMetadata.ts", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_provenancemetadata_buildtransportmetadata", + "community": 257, + "community_name": "Ingestioncore #257", + "norm_label": "buildtransportmetadata()" + }, + { + "label": "sandboxEgressClassification.ts", + "file_type": "code", + "source_file": "packages/ingestion-core/src/sandboxEgressClassification.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_ingestion_core_src_sandboxegressclassification", + "community": 174, + "community_name": "Ingestioncore #174", + "norm_label": "sandboxegressclassification.ts" + }, + { + "label": "SANDBOX_OUTBOUND_ALLOWED_TYPES", + "file_type": "code", + "source_file": "packages/ingestion-core/src/sandboxEgressClassification.ts", + "source_location": "L31", + "_origin": "ast", + "id": "packages_ingestion_core_src_sandboxegressclassification_sandbox_outbound_allowed_types", + "community": 174, + "community_name": "Ingestioncore #174", + "norm_label": "sandbox_outbound_allowed_types" + }, + { + "label": "SANDBOX_CONTEXT_SYNC_MAX_BYTES", + "file_type": "code", + "source_file": "packages/ingestion-core/src/sandboxEgressClassification.ts", + "source_location": "L59", + "_origin": "ast", + "id": "packages_ingestion_core_src_sandboxegressclassification_sandbox_context_sync_max_bytes", + "community": 174, + "community_name": "Ingestioncore #174", + "norm_label": "sandbox_context_sync_max_bytes" + }, + { + "label": "SANDBOX_CONTEXT_SYNC_RATE_WINDOW_MS", + "file_type": "code", + "source_file": "packages/ingestion-core/src/sandboxEgressClassification.ts", + "source_location": "L64", + "_origin": "ast", + "id": "packages_ingestion_core_src_sandboxegressclassification_sandbox_context_sync_rate_window_ms", + "community": 174, + "community_name": "Ingestioncore #174", + "norm_label": "sandbox_context_sync_rate_window_ms" + }, + { + "label": "SANDBOX_CONTEXT_SYNC_MAX_PER_WINDOW", + "file_type": "code", + "source_file": "packages/ingestion-core/src/sandboxEgressClassification.ts", + "source_location": "L69", + "_origin": "ast", + "id": "packages_ingestion_core_src_sandboxegressclassification_sandbox_context_sync_max_per_window", + "community": 174, + "community_name": "Ingestioncore #174", + "norm_label": "sandbox_context_sync_max_per_window" + }, + { + "label": "SandboxEgressCapsuleClass", + "file_type": "code", + "source_file": "packages/ingestion-core/src/sandboxEgressClassification.ts", + "source_location": "L74", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_sandboxegressclassification_sandboxegresscapsuleclass", + "community": 174, + "community_name": "Ingestioncore #174", + "norm_label": "sandboxegresscapsuleclass" + }, + { + "label": "deriveCapsuleTypeForEgress()", + "file_type": "code", + "source_file": "packages/ingestion-core/src/sandboxEgressClassification.ts", + "source_location": "L92", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_sandboxegressclassification_derivecapsuletypeforegress", + "community": 174, + "community_name": "Ingestioncore #174", + "norm_label": "derivecapsuletypeforegress()" + }, + { + "label": "isSandboxAllowedOutboundType()", + "file_type": "code", + "source_file": "packages/ingestion-core/src/sandboxEgressClassification.ts", + "source_location": "L113", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_sandboxegressclassification_issandboxallowedoutboundtype", + "community": 174, + "community_name": "Ingestioncore #174", + "norm_label": "issandboxallowedoutboundtype()" + }, + { + "label": "classifySandboxOutboundCapsule()", + "file_type": "code", + "source_file": "packages/ingestion-core/src/sandboxEgressClassification.ts", + "source_location": "L123", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_sandboxegressclassification_classifysandboxoutboundcapsule", + "community": 174, + "community_name": "Ingestioncore #174", + "norm_label": "classifysandboxoutboundcapsule()" + }, + { + "label": "SandboxContextSyncRateLimiter", + "file_type": "code", + "source_file": "packages/ingestion-core/src/sandboxEgressClassification.ts", + "source_location": "L136", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_sandboxegressclassification_sandboxcontextsyncratelimiter", + "community": 174, + "community_name": "Ingestioncore #174", + "norm_label": "sandboxcontextsyncratelimiter" + }, + { + "label": ".check()", + "file_type": "code", + "source_file": "packages/ingestion-core/src/sandboxEgressClassification.ts", + "source_location": "L142", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_sandboxegressclassification_sandboxcontextsyncratelimiter_check", + "community": 174, + "community_name": "Ingestioncore #174", + "norm_label": ".check()" + }, + { + "label": "createSandboxContextSyncRateLimiter()", + "file_type": "code", + "source_file": "packages/ingestion-core/src/sandboxEgressClassification.ts", + "source_location": "L150", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_sandboxegressclassification_createsandboxcontextsyncratelimiter", + "community": 174, + "community_name": "Ingestioncore #174", + "norm_label": "createsandboxcontextsyncratelimiter()" + }, + { + "label": "sealedServiceRpcConstants.ts", + "file_type": "code", + "source_file": "packages/ingestion-core/src/sealedServiceRpcConstants.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_ingestion_core_src_sealedservicerpcconstants", + "community": 174, + "community_name": "Ingestioncore #174", + "norm_label": "sealedservicerpcconstants.ts" + }, + { + "label": "SEALED_SERVICE_RPC_CAPSULE_TYPE", + "file_type": "code", + "source_file": "packages/ingestion-core/src/sealedServiceRpcConstants.ts", + "source_location": "L13", + "_origin": "ast", + "id": "packages_ingestion_core_src_sealedservicerpcconstants_sealed_service_rpc_capsule_type", + "community": 174, + "community_name": "Ingestioncore #174", + "norm_label": "sealed_service_rpc_capsule_type" + }, + { + "label": "SealedServiceRpcCapsuleType", + "file_type": "code", + "source_file": "packages/ingestion-core/src/sealedServiceRpcConstants.ts", + "source_location": "L15", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_sealedservicerpcconstants_sealedservicerpccapsuletype", + "community": 174, + "community_name": "Ingestioncore #174", + "norm_label": "sealedservicerpccapsuletype" + }, + { + "label": "sealedValidation.ts", + "file_type": "code", + "source_file": "packages/ingestion-core/src/sealedValidation.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_ingestion_core_src_sealedvalidation", + "community": 174, + "community_name": "Ingestioncore #174", + "norm_label": "sealedvalidation.ts" + }, + { + "label": "SubprocessControlMessage", + "file_type": "code", + "source_file": "packages/ingestion-core/src/sealedValidation.ts", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_sealedvalidation_subprocesscontrolmessage", + "community": 174, + "community_name": "Ingestioncore #174", + "norm_label": "subprocesscontrolmessage" + }, + { + "label": "SubprocessAckMessage", + "file_type": "code", + "source_file": "packages/ingestion-core/src/sealedValidation.ts", + "source_location": "L44", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_sealedvalidation_subprocessackmessage", + "community": 174, + "community_name": "Ingestioncore #174", + "norm_label": "subprocessackmessage" + }, + { + "label": "ValidateRequest", + "file_type": "code", + "source_file": "packages/ingestion-core/src/sealedValidation.ts", + "source_location": "L70", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_sealedvalidation_validaterequest", + "community": 174, + "community_name": "Ingestioncore #174", + "norm_label": "validaterequest" + }, + { + "label": "SealedContent", + "file_type": "code", + "source_file": "packages/ingestion-core/src/sealedValidation.ts", + "source_location": "L97", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_sealedvalidation_sealedcontent", + "community": 174, + "community_name": "Ingestioncore #174", + "norm_label": "sealedcontent" + }, + { + "label": "SealedQuarantine", + "file_type": "code", + "source_file": "packages/ingestion-core/src/sealedValidation.ts", + "source_location": "L112", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_sealedvalidation_sealedquarantine", + "community": 174, + "community_name": "Ingestioncore #174", + "norm_label": "sealedquarantine" + }, + { + "label": "ValidateResponse", + "file_type": "code", + "source_file": "packages/ingestion-core/src/sealedValidation.ts", + "source_location": "L125", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_sealedvalidation_validateresponse", + "community": 174, + "community_name": "Ingestioncore #174", + "norm_label": "validateresponse" + }, + { + "label": "SubprocessOutboundMessage", + "file_type": "code", + "source_file": "packages/ingestion-core/src/sealedValidation.ts", + "source_location": "L136", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_sealedvalidation_subprocessoutboundmessage", + "community": 174, + "community_name": "Ingestioncore #174", + "norm_label": "subprocessoutboundmessage" + }, + { + "label": "SubprocessInboundMessage", + "file_type": "code", + "source_file": "packages/ingestion-core/src/sealedValidation.ts", + "source_location": "L144", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_sealedvalidation_subprocessinboundmessage", + "community": 174, + "community_name": "Ingestioncore #174", + "norm_label": "subprocessinboundmessage" + }, + { + "label": "RFC-3339", + "file_type": "concept", + "source_file": "packages/ingestion-core/src/sealedValidation.ts", + "source_location": "L95", + "_origin": "ast", + "id": "packages_ingestion_core_src_sealedvalidation_ts_docref_rfc_3339", + "community": 174, + "community_name": "Ingestioncore #174", + "norm_label": "rfc-3339" + }, + { + "label": "ingestion-core/src/types.ts", + "file_type": "code", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_ingestion_core_src_types", + "community": 236, + "community_name": "Ingestioncore #236", + "norm_label": "ingestion-core/src/types.ts" + }, + { + "label": "SourceType", + "file_type": "code", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_types_sourcetype", + "community": 257, + "community_name": "Ingestioncore #257", + "norm_label": "sourcetype" + }, + { + "label": "OriginClassification", + "file_type": "code", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_types_originclassification", + "community": 236, + "community_name": "Ingestioncore #236", + "norm_label": "originclassification" + }, + { + "label": "InputClassification", + "file_type": "code", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_types_inputclassification", + "community": 257, + "community_name": "Ingestioncore #257", + "norm_label": "inputclassification" + }, + { + "label": "ProvenanceMetadata", + "file_type": "code", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_types_provenancemetadata", + "community": 174, + "community_name": "Ingestioncore #174", + "norm_label": "provenancemetadata" + }, + { + "label": "TransportMetadata", + "file_type": "code", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L30", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_types_transportmetadata", + "community": 257, + "community_name": "Ingestioncore #257", + "norm_label": "transportmetadata" + }, + { + "label": "RawInput", + "file_type": "code", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L43", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_types_rawinput", + "community": 257, + "community_name": "Ingestioncore #257", + "norm_label": "rawinput" + }, + { + "label": "RawAttachment", + "file_type": "code", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L51", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_types_rawattachment", + "community": 236, + "community_name": "Ingestioncore #236", + "norm_label": "rawattachment" + }, + { + "label": "CandidateCapsuleEnvelope", + "file_type": "code", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L59", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_types_candidatecapsuleenvelope", + "community": 236, + "community_name": "Ingestioncore #236", + "norm_label": "candidatecapsuleenvelope" + }, + { + "label": "ValidatedCapsule", + "file_type": "code", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L69", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_types_validatedcapsule", + "community": 236, + "community_name": "Ingestioncore #236", + "norm_label": "validatedcapsule" + }, + { + "label": "ContentTypeDiscriminator", + "file_type": "code", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L78", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_types_contenttypediscriminator", + "community": 236, + "community_name": "Ingestioncore #236", + "norm_label": "contenttypediscriminator" + }, + { + "label": "CapsuleType", + "file_type": "code", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L80", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_types_capsuletype", + "community": 236, + "community_name": "Ingestioncore #236", + "norm_label": "capsuletype" + }, + { + "label": "SessionImportArtefact", + "file_type": "code", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L95", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_types_sessionimportartefact", + "community": 236, + "community_name": "Ingestioncore #236", + "norm_label": "sessionimportartefact" + }, + { + "label": "CapsulePayloadBase", + "file_type": "code", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L112", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_types_capsulepayloadbase", + "community": 236, + "community_name": "Ingestioncore #236", + "norm_label": "capsulepayloadbase" + }, + { + "label": "InitiateCapsulePayload", + "file_type": "code", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L130", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_types_initiatecapsulepayload", + "community": 236, + "community_name": "Ingestioncore #236", + "norm_label": "initiatecapsulepayload" + }, + { + "label": "AcceptCapsulePayload", + "file_type": "code", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L136", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_types_acceptcapsulepayload", + "community": 236, + "community_name": "Ingestioncore #236", + "norm_label": "acceptcapsulepayload" + }, + { + "label": "RefreshCapsulePayload", + "file_type": "code", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L142", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_types_refreshcapsulepayload", + "community": 236, + "community_name": "Ingestioncore #236", + "norm_label": "refreshcapsulepayload" + }, + { + "label": "RevokeCapsulePayload", + "file_type": "code", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L148", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_types_revokecapsulepayload", + "community": 236, + "community_name": "Ingestioncore #236", + "norm_label": "revokecapsulepayload" + }, + { + "label": "ContextSyncCapsulePayload", + "file_type": "code", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L154", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_types_contextsynccapsulepayload", + "community": 236, + "community_name": "Ingestioncore #236", + "norm_label": "contextsynccapsulepayload" + }, + { + "label": "InternalDraftCapsulePayload", + "file_type": "code", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L161", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_types_internaldraftcapsulepayload", + "community": 236, + "community_name": "Ingestioncore #236", + "norm_label": "internaldraftcapsulepayload" + }, + { + "label": "MessagePackageCapsulePayload", + "file_type": "code", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L168", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_types_messagepackagecapsulepayload", + "community": 236, + "community_name": "Ingestioncore #236", + "norm_label": "messagepackagecapsulepayload" + }, + { + "label": "ValidatedCapsulePayload", + "file_type": "code", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L184", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_types_validatedcapsulepayload", + "community": 236, + "community_name": "Ingestioncore #236", + "norm_label": "validatedcapsulepayload" + }, + { + "label": "DetectionMethod", + "file_type": "code", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L195", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_types_detectionmethod", + "community": 261, + "community_name": "Ingestioncore #261", + "norm_label": "detectionmethod" + }, + { + "label": "BeapDetectionResult", + "file_type": "code", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L197", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_types_beapdetectionresult", + "community": 261, + "community_name": "Ingestioncore #261", + "norm_label": "beapdetectionresult" + }, + { + "label": "ValidationResult", + "file_type": "code", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L203", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_types_validationresult", + "community": 236, + "community_name": "Ingestioncore #236", + "norm_label": "validationresult" + }, + { + "label": "ValidationReasonCode", + "file_type": "code", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L207", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_types_validationreasoncode", + "community": 174, + "community_name": "Ingestioncore #174", + "norm_label": "validationreasoncode" + }, + { + "label": "ArtefactValidationResult", + "file_type": "code", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L240", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_types_artefactvalidationresult", + "community": 236, + "community_name": "Ingestioncore #236", + "norm_label": "artefactvalidationresult" + }, + { + "label": "DistributionTarget", + "file_type": "code", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L246", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_types_distributiontarget", + "community": 236, + "community_name": "Ingestioncore #236", + "norm_label": "distributiontarget" + }, + { + "label": "DistributionDecision", + "file_type": "code", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L252", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_types_distributiondecision", + "community": 236, + "community_name": "Ingestioncore #236", + "norm_label": "distributiondecision" + }, + { + "label": "INGESTION_CONSTANTS", + "file_type": "code", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L260", + "_origin": "ast", + "id": "packages_ingestion_core_src_types_ingestion_constants", + "community": 257, + "community_name": "Ingestioncore #257", + "norm_label": "ingestion_constants" + }, + { + "label": "validator.ts", + "file_type": "code", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_ingestion_core_src_validator", + "community": 102, + "community_name": "Ingestioncore", + "norm_label": "validator.ts" + }, + { + "label": "VALID_CAPSULE_TYPES", + "file_type": "code", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L23", + "_origin": "ast", + "id": "packages_ingestion_core_src_validator_valid_capsule_types", + "community": 102, + "community_name": "Ingestioncore", + "norm_label": "valid_capsule_types" + }, + { + "label": "MESSAGE_PACKAGE_REQUIRED_TOP_LEVEL", + "file_type": "code", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L33", + "_origin": "ast", + "id": "packages_ingestion_core_src_validator_message_package_required_top_level", + "community": 102, + "community_name": "Ingestioncore", + "norm_label": "message_package_required_top_level" + }, + { + "label": "VALID_MESSAGE_PACKAGE_ENCODINGS", + "file_type": "code", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L34", + "_origin": "ast", + "id": "packages_ingestion_core_src_validator_valid_message_package_encodings", + "community": 102, + "community_name": "Ingestioncore", + "norm_label": "valid_message_package_encodings" + }, + { + "label": "VALID_SHARING_MODES", + "file_type": "code", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L36", + "_origin": "ast", + "id": "packages_ingestion_core_src_validator_valid_sharing_modes", + "community": 102, + "community_name": "Ingestioncore", + "norm_label": "valid_sharing_modes" + }, + { + "label": "VALID_EXTERNAL_PROCESSING", + "file_type": "code", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L38", + "_origin": "ast", + "id": "packages_ingestion_core_src_validator_valid_external_processing", + "community": 102, + "community_name": "Ingestioncore", + "norm_label": "valid_external_processing" + }, + { + "label": "VALID_CLOUD_PAYLOAD_MODES", + "file_type": "code", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L40", + "_origin": "ast", + "id": "packages_ingestion_core_src_validator_valid_cloud_payload_modes", + "community": 102, + "community_name": "Ingestioncore", + "norm_label": "valid_cloud_payload_modes" + }, + { + "label": "RequiredFieldSpec", + "file_type": "code", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L42", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_validator_requiredfieldspec", + "community": 102, + "community_name": "Ingestioncore", + "norm_label": "requiredfieldspec" + }, + { + "label": "REQUIRED_FIELDS_BY_TYPE", + "file_type": "code", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L48", + "_origin": "ast", + "id": "packages_ingestion_core_src_validator_required_fields_by_type", + "community": 102, + "community_name": "Ingestioncore", + "norm_label": "required_fields_by_type" + }, + { + "label": "POISONED_KEYS", + "file_type": "code", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L117", + "_origin": "ast", + "id": "packages_ingestion_core_src_validator_poisoned_keys", + "community": 102, + "community_name": "Ingestioncore", + "norm_label": "poisoned_keys" + }, + { + "label": "ARTEFACT_TOP_LEVEL_KEYS", + "file_type": "code", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L129", + "_origin": "ast", + "id": "packages_ingestion_core_src_validator_artefact_top_level_keys", + "community": 102, + "community_name": "Ingestioncore", + "norm_label": "artefact_top_level_keys" + }, + { + "label": "HANDSHAKE_BINDING_KEYS", + "file_type": "code", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L134", + "_origin": "ast", + "id": "packages_ingestion_core_src_validator_handshake_binding_keys", + "community": 102, + "community_name": "Ingestioncore", + "norm_label": "handshake_binding_keys" + }, + { + "label": "ARTEFACT_PURPOSE_KEYS", + "file_type": "code", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L136", + "_origin": "ast", + "id": "packages_ingestion_core_src_validator_artefact_purpose_keys", + "community": 102, + "community_name": "Ingestioncore", + "norm_label": "artefact_purpose_keys" + }, + { + "label": "SCOPE_CONSTRAINTS_KEYS", + "file_type": "code", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L138", + "_origin": "ast", + "id": "packages_ingestion_core_src_validator_scope_constraints_keys", + "community": 102, + "community_name": "Ingestioncore", + "norm_label": "scope_constraints_keys" + }, + { + "label": "ORCHESTRATOR_SESSION_KEYS", + "file_type": "code", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L141", + "_origin": "ast", + "id": "packages_ingestion_core_src_validator_orchestrator_session_keys", + "community": 102, + "community_name": "Ingestioncore", + "norm_label": "orchestrator_session_keys" + }, + { + "label": "FULL_SESSION_EXPORT_KEYS", + "file_type": "code", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L151", + "_origin": "ast", + "id": "packages_ingestion_core_src_validator_full_session_export_keys", + "community": 102, + "community_name": "Ingestioncore", + "norm_label": "full_session_export_keys" + }, + { + "label": "PROCESSING_EVENT_KEYS", + "file_type": "code", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L156", + "_origin": "ast", + "id": "packages_ingestion_core_src_validator_processing_event_keys", + "community": 102, + "community_name": "Ingestioncore", + "norm_label": "processing_event_keys" + }, + { + "label": "ARTEFACT_POLICY_KEYS", + "file_type": "code", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L158", + "_origin": "ast", + "id": "packages_ingestion_core_src_validator_artefact_policy_keys", + "community": 102, + "community_name": "Ingestioncore", + "norm_label": "artefact_policy_keys" + }, + { + "label": "SENSITIVE_SUBCAPSULE_KEYS", + "file_type": "code", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L160", + "_origin": "ast", + "id": "packages_ingestion_core_src_validator_sensitive_subcapsule_keys", + "community": 102, + "community_name": "Ingestioncore", + "norm_label": "sensitive_subcapsule_keys" + }, + { + "label": "DISPLAY_GRID_CONFIG_KEYS", + "file_type": "code", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L163", + "_origin": "ast", + "id": "packages_ingestion_core_src_validator_display_grid_config_keys", + "community": 102, + "community_name": "Ingestioncore", + "norm_label": "display_grid_config_keys" + }, + { + "label": "DISPLAY_GRID_INNER_CONFIG_KEYS", + "file_type": "code", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L166", + "_origin": "ast", + "id": "packages_ingestion_core_src_validator_display_grid_inner_config_keys", + "community": 102, + "community_name": "Ingestioncore", + "norm_label": "display_grid_inner_config_keys" + }, + { + "label": "DISPLAY_GRID_SLOT_CONFIG_KEYS", + "file_type": "code", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L169", + "_origin": "ast", + "id": "packages_ingestion_core_src_validator_display_grid_slot_config_keys", + "community": 102, + "community_name": "Ingestioncore", + "norm_label": "display_grid_slot_config_keys" + }, + { + "label": "CANONICAL_AGENT_CONFIG_TOP_KEYS", + "file_type": "code", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L178", + "_origin": "ast", + "id": "packages_ingestion_core_src_validator_canonical_agent_config_top_keys", + "community": 102, + "community_name": "Ingestioncore", + "norm_label": "canonical_agent_config_top_keys" + }, + { + "label": "CANONICAL_AGENT_BOX_CONFIG_TOP_KEYS", + "file_type": "code", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L192", + "_origin": "ast", + "id": "packages_ingestion_core_src_validator_canonical_agent_box_config_top_keys", + "community": 102, + "community_name": "Ingestioncore", + "norm_label": "canonical_agent_box_config_top_keys" + }, + { + "label": "VALID_REQUESTED_ACTIONS", + "file_type": "code", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L203", + "_origin": "ast", + "id": "packages_ingestion_core_src_validator_valid_requested_actions", + "community": 102, + "community_name": "Ingestioncore", + "norm_label": "valid_requested_actions" + }, + { + "label": "VALID_SESSION_KINDS_V1_0", + "file_type": "code", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L205", + "_origin": "ast", + "id": "packages_ingestion_core_src_validator_valid_session_kinds_v1_0", + "community": 102, + "community_name": "Ingestioncore", + "norm_label": "valid_session_kinds_v1_0" + }, + { + "label": "VALID_SESSION_KINDS_V1_1", + "file_type": "code", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L206", + "_origin": "ast", + "id": "packages_ingestion_core_src_validator_valid_session_kinds_v1_1", + "community": 102, + "community_name": "Ingestioncore", + "norm_label": "valid_session_kinds_v1_1" + }, + { + "label": "VALID_EVENT_CLASSES", + "file_type": "code", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L207", + "_origin": "ast", + "id": "packages_ingestion_core_src_validator_valid_event_classes", + "community": 102, + "community_name": "Ingestioncore", + "norm_label": "valid_event_classes" + }, + { + "label": "VALID_BOUNDARIES", + "file_type": "code", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L208", + "_origin": "ast", + "id": "packages_ingestion_core_src_validator_valid_boundaries", + "community": 102, + "community_name": "Ingestioncore", + "norm_label": "valid_boundaries" + }, + { + "label": "VALID_SCOPES", + "file_type": "code", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L209", + "_origin": "ast", + "id": "packages_ingestion_core_src_validator_valid_scopes", + "community": 102, + "community_name": "Ingestioncore", + "norm_label": "valid_scopes" + }, + { + "label": "VALID_CAPABILITY_CLASSES", + "file_type": "code", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L217", + "_origin": "ast", + "id": "packages_ingestion_core_src_validator_valid_capability_classes", + "community": 102, + "community_name": "Ingestioncore", + "norm_label": "valid_capability_classes" + }, + { + "label": "VALID_PURPOSE_IDENTIFIERS", + "file_type": "code", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L223", + "_origin": "ast", + "id": "packages_ingestion_core_src_validator_valid_purpose_identifiers", + "community": 102, + "community_name": "Ingestioncore", + "norm_label": "valid_purpose_identifiers" + }, + { + "label": "failArtefact()", + "file_type": "code", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L227", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_validator_failartefact", + "community": 102, + "community_name": "Ingestioncore", + "norm_label": "failartefact()" + }, + { + "label": "checkNoUnknownKeys()", + "file_type": "code", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L235", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_validator_checknounknownkeys", + "community": 102, + "community_name": "Ingestioncore", + "norm_label": "checknounknownkeys()" + }, + { + "label": "validateDisplayGridEntry()", + "file_type": "code", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L249", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_validator_validatedisplaygridentry", + "community": 102, + "community_name": "Ingestioncore", + "norm_label": "validatedisplaygridentry()" + }, + { + "label": "validateFullSessionExportEntry()", + "file_type": "code", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L317", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_validator_validatefullsessionexportentry", + "community": 102, + "community_name": "Ingestioncore", + "norm_label": "validatefullsessionexportentry()" + }, + { + "label": "validateSessionEntry()", + "file_type": "code", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L353", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_validator_validatesessionentry", + "community": 102, + "community_name": "Ingestioncore", + "norm_label": "validatesessionentry()" + }, + { + "label": "validateSessionImportArtefact()", + "file_type": "code", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L467", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_validator_validatesessionimportartefact", + "community": 102, + "community_name": "Ingestioncore", + "norm_label": "validatesessionimportartefact()" + }, + { + "label": "measureJsonDepth()", + "file_type": "code", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L660", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_validator_measurejsondepth", + "community": 102, + "community_name": "Ingestioncore", + "norm_label": "measurejsondepth()" + }, + { + "label": "countFields()", + "file_type": "code", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L679", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_validator_countfields", + "community": 102, + "community_name": "Ingestioncore", + "norm_label": "countfields()" + }, + { + "label": "sanitizeObject()", + "file_type": "code", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L695", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_validator_sanitizeobject", + "community": 102, + "community_name": "Ingestioncore", + "norm_label": "sanitizeobject()" + }, + { + "label": "validateCapsule()", + "file_type": "code", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L715", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_validator_validatecapsule", + "community": 257, + "community_name": "Ingestioncore #257", + "norm_label": "validatecapsule()" + }, + { + "label": "RELAY_HANDSHAKE_CAPSULE_TYPES", + "file_type": "code", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L724", + "_origin": "ast", + "id": "packages_ingestion_core_src_validator_relay_handshake_capsule_types", + "community": 102, + "community_name": "Ingestioncore", + "norm_label": "relay_handshake_capsule_types" + }, + { + "label": "hasMessagePackageEncryptedBody()", + "file_type": "code", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L727", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_validator_hasmessagepackageencryptedbody", + "community": 102, + "community_name": "Ingestioncore", + "norm_label": "hasmessagepackageencryptedbody()" + }, + { + "label": "isMessagePackageShape()", + "file_type": "code", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L738", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_validator_ismessagepackageshape", + "community": 102, + "community_name": "Ingestioncore", + "norm_label": "ismessagepackageshape()" + }, + { + "label": "runValidationMessagePackage()", + "file_type": "code", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L751", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_validator_runvalidationmessagepackage", + "community": 102, + "community_name": "Ingestioncore", + "norm_label": "runvalidationmessagepackage()" + }, + { + "label": "extractHandshakeIdFromMessagePackage()", + "file_type": "code", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L815", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_validator_extracthandshakeidfrommessagepackage", + "community": 102, + "community_name": "Ingestioncore", + "norm_label": "extracthandshakeidfrommessagepackage()" + }, + { + "label": "runValidation()", + "file_type": "code", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L827", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_validator_runvalidation", + "community": 102, + "community_name": "Ingestioncore", + "norm_label": "runvalidation()" + }, + { + "label": "createValidatedCapsule()", + "file_type": "code", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L1006", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_validator_createvalidatedcapsule", + "community": 102, + "community_name": "Ingestioncore", + "norm_label": "createvalidatedcapsule()" + }, + { + "label": "fail()", + "file_type": "code", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L1020", + "_callable": true, + "_origin": "ast", + "id": "packages_ingestion_core_src_validator_fail", + "community": 102, + "community_name": "Ingestioncore", + "norm_label": "fail()" + }, + { + "label": "RFC-3339", + "file_type": "concept", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L508", + "_origin": "ast", + "id": "packages_ingestion_core_src_validator_ts_docref_rfc_3339", + "community": 102, + "community_name": "Ingestioncore", + "norm_label": "rfc-3339" + }, + { + "label": "ingestion-core/tsconfig.json", + "file_type": "code", + "source_file": "packages/ingestion-core/tsconfig.json", + "source_location": "L1", + "_origin": "ast", + "id": "packages_ingestion_core_tsconfig", + "community": 262, + "community_name": "Ingestioncore #262", + "norm_label": "ingestion-core/tsconfig.json" + }, + { + "label": "compilerOptions", + "file_type": "code", + "source_file": "packages/ingestion-core/tsconfig.json", + "source_location": "L2", + "_origin": "ast", + "id": "packages_ingestion_core_tsconfig_compileroptions", + "community": 262, + "community_name": "Ingestioncore #262", + "norm_label": "compileroptions" + }, + { + "label": "target", + "file_type": "code", + "source_file": "packages/ingestion-core/tsconfig.json", + "source_location": "L3", + "_origin": "ast", + "id": "packages_ingestion_core_tsconfig_compileroptions_target", + "community": 262, + "community_name": "Ingestioncore #262", + "norm_label": "target" + }, + { + "label": "types", + "file_type": "code", + "source_file": "packages/ingestion-core/tsconfig.json", + "source_location": "L4", + "_origin": "ast", + "id": "packages_ingestion_core_tsconfig_compileroptions_types", + "community": 262, + "community_name": "Ingestioncore #262", + "norm_label": "types" + }, + { + "label": "node", + "file_type": "concept", + "source_file": "packages/ingestion-core/tsconfig.json", + "source_location": "L4", + "_origin": "ast", + "id": "packages_ingestion_core_tsconfig_json_ref_node", + "community": 262, + "community_name": "Ingestioncore #262", + "norm_label": "node" + }, + { + "label": "module", + "file_type": "code", + "source_file": "packages/ingestion-core/tsconfig.json", + "source_location": "L5", + "_origin": "ast", + "id": "packages_ingestion_core_tsconfig_compileroptions_module", + "community": 262, + "community_name": "Ingestioncore #262", + "norm_label": "module" + }, + { + "label": "moduleResolution", + "file_type": "code", + "source_file": "packages/ingestion-core/tsconfig.json", + "source_location": "L6", + "_origin": "ast", + "id": "packages_ingestion_core_tsconfig_compileroptions_moduleresolution", + "community": 262, + "community_name": "Ingestioncore #262", + "norm_label": "moduleresolution" + }, + { + "label": "strict", + "file_type": "code", + "source_file": "packages/ingestion-core/tsconfig.json", + "source_location": "L7", + "_origin": "ast", + "id": "packages_ingestion_core_tsconfig_compileroptions_strict", + "community": 262, + "community_name": "Ingestioncore #262", + "norm_label": "strict" + }, + { + "label": "skipLibCheck", + "file_type": "code", + "source_file": "packages/ingestion-core/tsconfig.json", + "source_location": "L8", + "_origin": "ast", + "id": "packages_ingestion_core_tsconfig_compileroptions_skiplibcheck", + "community": 262, + "community_name": "Ingestioncore #262", + "norm_label": "skiplibcheck" + }, + { + "label": "declaration", + "file_type": "code", + "source_file": "packages/ingestion-core/tsconfig.json", + "source_location": "L9", + "_origin": "ast", + "id": "packages_ingestion_core_tsconfig_compileroptions_declaration", + "community": 262, + "community_name": "Ingestioncore #262", + "norm_label": "declaration" + }, + { + "label": "declarationMap", + "file_type": "code", + "source_file": "packages/ingestion-core/tsconfig.json", + "source_location": "L10", + "_origin": "ast", + "id": "packages_ingestion_core_tsconfig_compileroptions_declarationmap", + "community": 262, + "community_name": "Ingestioncore #262", + "norm_label": "declarationmap" + }, + { + "label": "outDir", + "file_type": "code", + "source_file": "packages/ingestion-core/tsconfig.json", + "source_location": "L11", + "_origin": "ast", + "id": "packages_ingestion_core_tsconfig_compileroptions_outdir", + "community": 262, + "community_name": "Ingestioncore #262", + "norm_label": "outdir" + }, + { + "label": "rootDir", + "file_type": "code", + "source_file": "packages/ingestion-core/tsconfig.json", + "source_location": "L12", + "_origin": "ast", + "id": "packages_ingestion_core_tsconfig_compileroptions_rootdir", + "community": 262, + "community_name": "Ingestioncore #262", + "norm_label": "rootdir" + }, + { + "label": "include", + "file_type": "code", + "source_file": "packages/ingestion-core/tsconfig.json", + "source_location": "L14", + "_origin": "ast", + "id": "packages_ingestion_core_tsconfig_include", + "community": 262, + "community_name": "Ingestioncore #262", + "norm_label": "include" + }, + { + "label": "src/**/*.ts", + "file_type": "concept", + "source_file": "packages/ingestion-core/tsconfig.json", + "source_location": "L14", + "_origin": "ast", + "id": "packages_ingestion_core_tsconfig_json_ref_src_ts", + "community": 262, + "community_name": "Ingestioncore #262", + "norm_label": "src/**/*.ts" + }, + { + "label": "exclude", + "file_type": "code", + "source_file": "packages/ingestion-core/tsconfig.json", + "source_location": "L15", + "_origin": "ast", + "id": "packages_ingestion_core_tsconfig_exclude", + "community": 262, + "community_name": "Ingestioncore #262", + "norm_label": "exclude" + }, + { + "label": "node_modules", + "file_type": "concept", + "source_file": "packages/ingestion-core/tsconfig.json", + "source_location": "L15", + "_origin": "ast", + "id": "packages_ingestion_core_tsconfig_json_ref_node_modules", + "community": 262, + "community_name": "Ingestioncore #262", + "norm_label": "node_modules" + }, + { + "label": "dist", + "file_type": "concept", + "source_file": "packages/ingestion-core/tsconfig.json", + "source_location": "L15", + "_origin": "ast", + "id": "packages_ingestion_core_tsconfig_json_ref_dist", + "community": 262, + "community_name": "Ingestioncore #262", + "norm_label": "dist" + }, + { + "label": "__tests__", + "file_type": "concept", + "source_file": "packages/ingestion-core/tsconfig.json", + "source_location": "L15", + "_origin": "ast", + "id": "packages_ingestion_core_tsconfig_json_ref_tests", + "community": 262, + "community_name": "Ingestioncore #262", + "norm_label": "__tests__" + }, + { + "label": "ingestion-core/vitest.config.ts", + "file_type": "code", + "source_file": "packages/ingestion-core/vitest.config.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_ingestion_core_vitest_config", + "community": 615, + "community_name": "Ingestioncore #615", + "norm_label": "ingestion-core/vitest.config.ts" + }, + { + "label": "relay-server.test.ts", + "file_type": "code", + "source_file": "packages/relay-server/__tests__/relay-server.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_relay_server_tests_relay_server_test", + "community": 65, + "community_name": "Relayserver", + "norm_label": "relay-server.test.ts" + }, + { + "label": "validBeapCapsule()", + "file_type": "code", + "source_file": "packages/relay-server/__tests__/relay-server.test.ts", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "id": "packages_relay_server_tests_relay_server_test_validbeapcapsule", + "community": 65, + "community_name": "Relayserver", + "norm_label": "validbeapcapsule()" + }, + { + "label": "nativeBeapCapsule()", + "file_type": "code", + "source_file": "packages/relay-server/__tests__/relay-server.test.ts", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "packages_relay_server_tests_relay_server_test_nativebeapcapsule", + "community": 65, + "community_name": "Relayserver", + "norm_label": "nativebeapcapsule()" + }, + { + "label": "makeConfig()", + "file_type": "code", + "source_file": "packages/relay-server/__tests__/relay-server.test.ts", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "id": "packages_relay_server_tests_relay_server_test_makeconfig", + "community": 65, + "community_name": "Relayserver", + "norm_label": "makeconfig()" + }, + { + "label": "request()", + "file_type": "code", + "source_file": "packages/relay-server/__tests__/relay-server.test.ts", + "source_location": "L57", + "_callable": true, + "_origin": "ast", + "id": "packages_relay_server_tests_relay_server_test_request", + "community": 65, + "community_name": "Relayserver", + "norm_label": "request()" + }, + { + "label": "NOTE: The ingestion-core validator enforces the full capsule schema, so for", + "file_type": "rationale", + "source_file": "packages/relay-server/__tests__/relay-server.test.ts", + "source_location": "L374", + "_origin": "ast", + "id": "packages_relay_server_tests_relay_server_test_rationale_374", + "community": 65, + "community_name": "Relayserver", + "norm_label": "note: the ingestion-core validator enforces the full capsule schema, so for" + }, + { + "label": "relay-server/__tests__/sandboxEgressGuard.test.ts", + "file_type": "code", + "source_file": "packages/relay-server/__tests__/sandboxEgressGuard.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_relay_server_tests_sandboxegressguard_test", + "community": 65, + "community_name": "Relayserver", + "norm_label": "relay-server/__tests__/sandboxegressguard.test.ts" + }, + { + "label": "makeConfig()", + "file_type": "code", + "source_file": "packages/relay-server/__tests__/sandboxEgressGuard.test.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "packages_relay_server_tests_sandboxegressguard_test_makeconfig", + "community": 65, + "community_name": "Relayserver", + "norm_label": "makeconfig()" + }, + { + "label": "request()", + "file_type": "code", + "source_file": "packages/relay-server/__tests__/sandboxEgressGuard.test.ts", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "id": "packages_relay_server_tests_sandboxegressguard_test_request", + "community": 65, + "community_name": "Relayserver", + "norm_label": "request()" + }, + { + "label": "registerHandshakeToken()", + "file_type": "code", + "source_file": "packages/relay-server/__tests__/sandboxEgressGuard.test.ts", + "source_location": "L71", + "_callable": true, + "_origin": "ast", + "id": "packages_relay_server_tests_sandboxegressguard_test_registerhandshaketoken", + "community": 65, + "community_name": "Relayserver", + "norm_label": "registerhandshaketoken()" + }, + { + "label": "registerDeviceRole()", + "file_type": "code", + "source_file": "packages/relay-server/__tests__/sandboxEgressGuard.test.ts", + "source_location": "L79", + "_callable": true, + "_origin": "ast", + "id": "packages_relay_server_tests_sandboxegressguard_test_registerdevicerole", + "community": 65, + "community_name": "Relayserver", + "norm_label": "registerdevicerole()" + }, + { + "label": "nativeBeapPackage()", + "file_type": "code", + "source_file": "packages/relay-server/__tests__/sandboxEgressGuard.test.ts", + "source_location": "L88", + "_callable": true, + "_origin": "ast", + "id": "packages_relay_server_tests_sandboxegressguard_test_nativebeappackage", + "community": 65, + "community_name": "Relayserver", + "norm_label": "nativebeappackage()" + }, + { + "label": "lifecycleCapsule()", + "file_type": "code", + "source_file": "packages/relay-server/__tests__/sandboxEgressGuard.test.ts", + "source_location": "L98", + "_callable": true, + "_origin": "ast", + "id": "packages_relay_server_tests_sandboxegressguard_test_lifecyclecapsule", + "community": 65, + "community_name": "Relayserver", + "norm_label": "lifecyclecapsule()" + }, + { + "label": "relay-server/package.json", + "file_type": "code", + "source_file": "packages/relay-server/package.json", + "source_location": "L1", + "_origin": "ast", + "id": "packages_relay_server_package", + "community": 181, + "community_name": "Relayserver #181", + "norm_label": "relay-server/package.json" + }, + { + "label": "name", + "file_type": "code", + "source_file": "packages/relay-server/package.json", + "source_location": "L2", + "_origin": "ast", + "id": "packages_relay_server_package_name", + "community": 181, + "community_name": "Relayserver #181", + "norm_label": "name" + }, + { + "label": "version", + "file_type": "code", + "source_file": "packages/relay-server/package.json", + "source_location": "L3", + "_origin": "ast", + "id": "packages_relay_server_package_version", + "community": 181, + "community_name": "Relayserver #181", + "norm_label": "version" + }, + { + "label": "private", + "file_type": "code", + "source_file": "packages/relay-server/package.json", + "source_location": "L4", + "_origin": "ast", + "id": "packages_relay_server_package_private", + "community": 181, + "community_name": "Relayserver #181", + "norm_label": "private" + }, + { + "label": "type", + "file_type": "code", + "source_file": "packages/relay-server/package.json", + "source_location": "L5", + "_origin": "ast", + "id": "packages_relay_server_package_type", + "community": 181, + "community_name": "Relayserver #181", + "norm_label": "type" + }, + { + "label": "main", + "file_type": "code", + "source_file": "packages/relay-server/package.json", + "source_location": "L6", + "_origin": "ast", + "id": "packages_relay_server_package_main", + "community": 181, + "community_name": "Relayserver #181", + "norm_label": "main" + }, + { + "label": "scripts", + "file_type": "code", + "source_file": "packages/relay-server/package.json", + "source_location": "L7", + "_origin": "ast", + "id": "packages_relay_server_package_scripts", + "community": 181, + "community_name": "Relayserver #181", + "norm_label": "scripts" + }, + { + "label": "build", + "file_type": "code", + "source_file": "packages/relay-server/package.json", + "source_location": "L8", + "_origin": "ast", + "id": "packages_relay_server_package_scripts_build", + "community": 181, + "community_name": "Relayserver #181", + "norm_label": "build" + }, + { + "label": "start", + "file_type": "code", + "source_file": "packages/relay-server/package.json", + "source_location": "L9", + "_origin": "ast", + "id": "packages_relay_server_package_scripts_start", + "community": 181, + "community_name": "Relayserver #181", + "norm_label": "start" + }, + { + "label": "test", + "file_type": "code", + "source_file": "packages/relay-server/package.json", + "source_location": "L10", + "_origin": "ast", + "id": "packages_relay_server_package_scripts_test", + "community": 181, + "community_name": "Relayserver #181", + "norm_label": "test" + }, + { + "label": "docker:build", + "file_type": "code", + "source_file": "packages/relay-server/package.json", + "source_location": "L11", + "_origin": "ast", + "id": "packages_relay_server_package_scripts_docker_build", + "community": 181, + "community_name": "Relayserver #181", + "norm_label": "docker:build" + }, + { + "label": "docker:run", + "file_type": "code", + "source_file": "packages/relay-server/package.json", + "source_location": "L12", + "_origin": "ast", + "id": "packages_relay_server_package_scripts_docker_run", + "community": 181, + "community_name": "Relayserver #181", + "norm_label": "docker:run" + }, + { + "label": "docker:stop", + "file_type": "code", + "source_file": "packages/relay-server/package.json", + "source_location": "L13", + "_origin": "ast", + "id": "packages_relay_server_package_scripts_docker_stop", + "community": 181, + "community_name": "Relayserver #181", + "norm_label": "docker:stop" + }, + { + "label": "docker:push", + "file_type": "code", + "source_file": "packages/relay-server/package.json", + "source_location": "L14", + "_origin": "ast", + "id": "packages_relay_server_package_scripts_docker_push", + "community": 181, + "community_name": "Relayserver #181", + "norm_label": "docker:push" + }, + { + "label": "dependencies", + "file_type": "code", + "source_file": "packages/relay-server/package.json", + "source_location": "L16", + "_origin": "ast", + "id": "packages_relay_server_package_dependencies", + "community": 181, + "community_name": "Relayserver #181", + "norm_label": "dependencies" + }, + { + "label": "@repo/ingestion-core", + "file_type": "code", + "source_file": "packages/relay-server/package.json", + "source_location": "L17", + "_origin": "ast", + "id": "packages_relay_server_package_dependencies_repo_ingestion_core", + "community": 181, + "community_name": "Relayserver #181", + "norm_label": "@repo/ingestion-core" + }, + { + "label": "@repo/ingestion-core", + "file_type": "concept", + "source_file": "packages/relay-server/package.json", + "source_location": "L17", + "_origin": "ast", + "id": "packages_relay_server_package_json_repo_ingestion_core", + "community": 181, + "community_name": "Relayserver #181", + "norm_label": "@repo/ingestion-core" + }, + { + "label": "better-sqlite3", + "file_type": "code", + "source_file": "packages/relay-server/package.json", + "source_location": "L18", + "_origin": "ast", + "id": "packages_relay_server_package_dependencies_better_sqlite3", + "community": 181, + "community_name": "Relayserver #181", + "norm_label": "better-sqlite3" + }, + { + "label": "better-sqlite3", + "file_type": "concept", + "source_file": "packages/relay-server/package.json", + "source_location": "L18", + "_origin": "ast", + "id": "packages_relay_server_package_json_better_sqlite3", + "community": 181, + "community_name": "Relayserver #181", + "norm_label": "better-sqlite3" + }, + { + "label": "devDependencies", + "file_type": "code", + "source_file": "packages/relay-server/package.json", + "source_location": "L20", + "_origin": "ast", + "id": "packages_relay_server_package_devdependencies", + "community": 181, + "community_name": "Relayserver #181", + "norm_label": "devdependencies" + }, + { + "label": "@types/better-sqlite3", + "file_type": "code", + "source_file": "packages/relay-server/package.json", + "source_location": "L21", + "_origin": "ast", + "id": "packages_relay_server_package_devdependencies_types_better_sqlite3", + "community": 181, + "community_name": "Relayserver #181", + "norm_label": "@types/better-sqlite3" + }, + { + "label": "@types/better-sqlite3", + "file_type": "concept", + "source_file": "packages/relay-server/package.json", + "source_location": "L21", + "_origin": "ast", + "id": "packages_relay_server_package_json_types_better_sqlite3", + "community": 181, + "community_name": "Relayserver #181", + "norm_label": "@types/better-sqlite3" + }, + { + "label": "@types/node", + "file_type": "code", + "source_file": "packages/relay-server/package.json", + "source_location": "L22", + "_origin": "ast", + "id": "packages_relay_server_package_devdependencies_types_node", + "community": 181, + "community_name": "Relayserver #181", + "norm_label": "@types/node" + }, + { + "label": "@types/node", + "file_type": "concept", + "source_file": "packages/relay-server/package.json", + "source_location": "L22", + "_origin": "ast", + "id": "packages_relay_server_package_json_types_node", + "community": 181, + "community_name": "Relayserver #181", + "norm_label": "@types/node" + }, + { + "label": "typescript", + "file_type": "code", + "source_file": "packages/relay-server/package.json", + "source_location": "L23", + "_origin": "ast", + "id": "packages_relay_server_package_devdependencies_typescript", + "community": 181, + "community_name": "Relayserver #181", + "norm_label": "typescript" + }, + { + "label": "typescript", + "file_type": "concept", + "source_file": "packages/relay-server/package.json", + "source_location": "L23", + "_origin": "ast", + "id": "packages_relay_server_package_json_typescript", + "community": 181, + "community_name": "Relayserver #181", + "norm_label": "typescript" + }, + { + "label": "vitest", + "file_type": "code", + "source_file": "packages/relay-server/package.json", + "source_location": "L24", + "_origin": "ast", + "id": "packages_relay_server_package_devdependencies_vitest", + "community": 181, + "community_name": "Relayserver #181", + "norm_label": "vitest" + }, + { + "label": "vitest", + "file_type": "concept", + "source_file": "packages/relay-server/package.json", + "source_location": "L24", + "_origin": "ast", + "id": "packages_relay_server_package_json_vitest", + "community": 181, + "community_name": "Relayserver #181", + "norm_label": "vitest" + }, + { + "label": "engines", + "file_type": "code", + "source_file": "packages/relay-server/package.json", + "source_location": "L26", + "_origin": "ast", + "id": "packages_relay_server_package_engines", + "community": 181, + "community_name": "Relayserver #181", + "norm_label": "engines" + }, + { + "label": "node", + "file_type": "code", + "source_file": "packages/relay-server/package.json", + "source_location": "L27", + "_origin": "ast", + "id": "packages_relay_server_package_engines_node", + "community": 181, + "community_name": "Relayserver #181", + "norm_label": "node" + }, + { + "label": "relay-server/src/auth.ts", + "file_type": "code", + "source_file": "packages/relay-server/src/auth.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_relay_server_src_auth", + "community": 65, + "community_name": "Relayserver", + "norm_label": "relay-server/src/auth.ts" + }, + { + "label": "extractBearerToken()", + "file_type": "code", + "source_file": "packages/relay-server/src/auth.ts", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "id": "packages_relay_server_src_auth_extractbearertoken", + "community": 65, + "community_name": "Relayserver", + "norm_label": "extractbearertoken()" + }, + { + "label": "verifyHostAuth()", + "file_type": "code", + "source_file": "packages/relay-server/src/auth.ts", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "id": "packages_relay_server_src_auth_verifyhostauth", + "community": 65, + "community_name": "Relayserver", + "norm_label": "verifyhostauth()" + }, + { + "label": "verifyIngestAuth()", + "file_type": "code", + "source_file": "packages/relay-server/src/auth.ts", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "id": "packages_relay_server_src_auth_verifyingestauth", + "community": 65, + "community_name": "Relayserver", + "norm_label": "verifyingestauth()" + }, + { + "label": "relay-server/src/config.ts", + "file_type": "code", + "source_file": "packages/relay-server/src/config.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_relay_server_src_config", + "community": 65, + "community_name": "Relayserver", + "norm_label": "relay-server/src/config.ts" + }, + { + "label": "RelayConfig", + "file_type": "code", + "source_file": "packages/relay-server/src/config.ts", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_relay_server_src_config_relayconfig", + "community": 65, + "community_name": "Relayserver", + "norm_label": "relayconfig" + }, + { + "label": "loadFromEnv()", + "file_type": "code", + "source_file": "packages/relay-server/src/config.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "packages_relay_server_src_config_loadfromenv", + "community": 65, + "community_name": "Relayserver", + "norm_label": "loadfromenv()" + }, + { + "label": "loadFromFile()", + "file_type": "code", + "source_file": "packages/relay-server/src/config.ts", + "source_location": "L48", + "_callable": true, + "_origin": "ast", + "id": "packages_relay_server_src_config_loadfromfile", + "community": 65, + "community_name": "Relayserver", + "norm_label": "loadfromfile()" + }, + { + "label": "loadRelayConfig()", + "file_type": "code", + "source_file": "packages/relay-server/src/config.ts", + "source_location": "L63", + "_callable": true, + "_origin": "ast", + "id": "packages_relay_server_src_config_loadrelayconfig", + "community": 65, + "community_name": "Relayserver", + "norm_label": "loadrelayconfig()" + }, + { + "label": "relay-server/src/health.ts", + "file_type": "code", + "source_file": "packages/relay-server/src/health.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_relay_server_src_health", + "community": 65, + "community_name": "Relayserver", + "norm_label": "relay-server/src/health.ts" + }, + { + "label": "startTime", + "file_type": "code", + "source_file": "packages/relay-server/src/health.ts", + "source_location": "L7", + "_origin": "ast", + "id": "packages_relay_server_src_health_starttime", + "community": 65, + "community_name": "Relayserver", + "norm_label": "starttime" + }, + { + "label": "getHealthPayload()", + "file_type": "code", + "source_file": "packages/relay-server/src/health.ts", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "id": "packages_relay_server_src_health_gethealthpayload", + "community": 65, + "community_name": "Relayserver", + "norm_label": "gethealthpayload()" + }, + { + "label": "relay-server/src/index.ts", + "file_type": "code", + "source_file": "packages/relay-server/src/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_relay_server_src_index", + "community": 65, + "community_name": "Relayserver", + "norm_label": "relay-server/src/index.ts" + }, + { + "label": "main()", + "file_type": "code", + "source_file": "packages/relay-server/src/index.ts", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "id": "packages_relay_server_src_index_main", + "community": 65, + "community_name": "Relayserver", + "norm_label": "main()" + }, + { + "label": "relay-server/src/rateLimiter.ts", + "file_type": "code", + "source_file": "packages/relay-server/src/rateLimiter.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_relay_server_src_ratelimiter", + "community": 65, + "community_name": "Relayserver", + "norm_label": "relay-server/src/ratelimiter.ts" + }, + { + "label": "Entry", + "file_type": "code", + "source_file": "packages/relay-server/src/rateLimiter.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_relay_server_src_ratelimiter_entry", + "community": 65, + "community_name": "Relayserver", + "norm_label": "entry" + }, + { + "label": "ipCounts", + "file_type": "code", + "source_file": "packages/relay-server/src/rateLimiter.ts", + "source_location": "L15", + "_origin": "ast", + "id": "packages_relay_server_src_ratelimiter_ipcounts", + "community": 65, + "community_name": "Relayserver", + "norm_label": "ipcounts" + }, + { + "label": "handshakeCounts", + "file_type": "code", + "source_file": "packages/relay-server/src/rateLimiter.ts", + "source_location": "L16", + "_origin": "ast", + "id": "packages_relay_server_src_ratelimiter_handshakecounts", + "community": 65, + "community_name": "Relayserver", + "norm_label": "handshakecounts" + }, + { + "label": "authFailCounts", + "file_type": "code", + "source_file": "packages/relay-server/src/rateLimiter.ts", + "source_location": "L17", + "_origin": "ast", + "id": "packages_relay_server_src_ratelimiter_authfailcounts", + "community": 65, + "community_name": "Relayserver", + "norm_label": "authfailcounts" + }, + { + "label": "pruneIpHandshake()", + "file_type": "code", + "source_file": "packages/relay-server/src/rateLimiter.ts", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "id": "packages_relay_server_src_ratelimiter_pruneiphandshake", + "community": 65, + "community_name": "Relayserver", + "norm_label": "pruneiphandshake()" + }, + { + "label": "pruneAuthFail()", + "file_type": "code", + "source_file": "packages/relay-server/src/rateLimiter.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "packages_relay_server_src_ratelimiter_pruneauthfail", + "community": 65, + "community_name": "Relayserver", + "norm_label": "pruneauthfail()" + }, + { + "label": "checkIpLimit()", + "file_type": "code", + "source_file": "packages/relay-server/src/rateLimiter.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "packages_relay_server_src_ratelimiter_checkiplimit", + "community": 65, + "community_name": "Relayserver", + "norm_label": "checkiplimit()" + }, + { + "label": "checkHandshakeLimit()", + "file_type": "code", + "source_file": "packages/relay-server/src/rateLimiter.ts", + "source_location": "L52", + "_callable": true, + "_origin": "ast", + "id": "packages_relay_server_src_ratelimiter_checkhandshakelimit", + "community": 65, + "community_name": "Relayserver", + "norm_label": "checkhandshakelimit()" + }, + { + "label": "checkAuthFailLimit()", + "file_type": "code", + "source_file": "packages/relay-server/src/rateLimiter.ts", + "source_location": "L70", + "_callable": true, + "_origin": "ast", + "id": "packages_relay_server_src_ratelimiter_checkauthfaillimit", + "community": 65, + "community_name": "Relayserver", + "norm_label": "checkauthfaillimit()" + }, + { + "label": "recordAuthFailure()", + "file_type": "code", + "source_file": "packages/relay-server/src/rateLimiter.ts", + "source_location": "L88", + "_callable": true, + "_origin": "ast", + "id": "packages_relay_server_src_ratelimiter_recordauthfailure", + "community": 65, + "community_name": "Relayserver", + "norm_label": "recordauthfailure()" + }, + { + "label": "resetRateLimitsForTests()", + "file_type": "code", + "source_file": "packages/relay-server/src/rateLimiter.ts", + "source_location": "L98", + "_callable": true, + "_origin": "ast", + "id": "packages_relay_server_src_ratelimiter_resetratelimitsfortests", + "community": 65, + "community_name": "Relayserver", + "norm_label": "resetratelimitsfortests()" + }, + { + "label": "relay-server/src/server.ts", + "file_type": "code", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_relay_server_src_server", + "community": 65, + "community_name": "Relayserver", + "norm_label": "relay-server/src/server.ts" + }, + { + "label": "sandboxContextSyncLimiter", + "file_type": "code", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L55", + "_origin": "ast", + "id": "packages_relay_server_src_server_sandboxcontextsynclimiter", + "community": 65, + "community_name": "Relayserver", + "norm_label": "sandboxcontextsynclimiter" + }, + { + "label": "parseSenderDeviceId()", + "file_type": "code", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L58", + "_callable": true, + "_origin": "ast", + "id": "packages_relay_server_src_server_parsesenderdeviceid", + "community": 65, + "community_name": "Relayserver", + "norm_label": "parsesenderdeviceid()" + }, + { + "label": "STATUS_MESSAGES", + "file_type": "code", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L68", + "_origin": "ast", + "id": "packages_relay_server_src_server_status_messages", + "community": 65, + "community_name": "Relayserver", + "norm_label": "status_messages" + }, + { + "label": "FANOUT_CAPSULE_TYPES", + "file_type": "code", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L94", + "_origin": "ast", + "id": "packages_relay_server_src_server_fanout_capsule_types", + "community": 65, + "community_name": "Relayserver", + "norm_label": "fanout_capsule_types" + }, + { + "label": "isNativeBeapCapsule()", + "file_type": "code", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L107", + "_callable": true, + "_origin": "ast", + "id": "packages_relay_server_src_server_isnativebeapcapsule", + "community": 65, + "community_name": "Relayserver", + "norm_label": "isnativebeapcapsule()" + }, + { + "label": "shouldStoreAsHostOnly()", + "file_type": "code", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L131", + "_callable": true, + "_origin": "ast", + "id": "packages_relay_server_src_server_shouldstoreashostonly", + "community": 65, + "community_name": "Relayserver", + "norm_label": "shouldstoreashostonly()" + }, + { + "label": "getClientIp()", + "file_type": "code", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L149", + "_callable": true, + "_origin": "ast", + "id": "packages_relay_server_src_server_getclientip", + "community": 65, + "community_name": "Relayserver", + "norm_label": "getclientip()" + }, + { + "label": "sendError()", + "file_type": "code", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L155", + "_callable": true, + "_origin": "ast", + "id": "packages_relay_server_src_server_senderror", + "community": 65, + "community_name": "Relayserver", + "norm_label": "senderror()" + }, + { + "label": "parseHandshakeId()", + "file_type": "code", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L168", + "_callable": true, + "_origin": "ast", + "id": "packages_relay_server_src_server_parsehandshakeid", + "community": 65, + "community_name": "Relayserver", + "norm_label": "parsehandshakeid()" + }, + { + "label": "readBody()", + "file_type": "code", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L178", + "_callable": true, + "_origin": "ast", + "id": "packages_relay_server_src_server_readbody", + "community": 65, + "community_name": "Relayserver", + "norm_label": "readbody()" + }, + { + "label": "parseQueryParam()", + "file_type": "code", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L189", + "_callable": true, + "_origin": "ast", + "id": "packages_relay_server_src_server_parsequeryparam", + "community": 65, + "community_name": "Relayserver", + "norm_label": "parsequeryparam()" + }, + { + "label": "createRequestHandler()", + "file_type": "code", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L200", + "_callable": true, + "_origin": "ast", + "id": "packages_relay_server_src_server_createrequesthandler", + "community": 65, + "community_name": "Relayserver", + "norm_label": "createrequesthandler()" + }, + { + "label": "createServer()", + "file_type": "code", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L479", + "_callable": true, + "_origin": "ast", + "id": "packages_relay_server_src_server_createserver", + "community": 65, + "community_name": "Relayserver", + "norm_label": "createserver()" + }, + { + "label": "startCleanupInterval()", + "file_type": "code", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L497", + "_callable": true, + "_origin": "ast", + "id": "packages_relay_server_src_server_startcleanupinterval", + "community": 65, + "community_name": "Relayserver", + "norm_label": "startcleanupinterval()" + }, + { + "label": "relay-server/src/store.ts", + "file_type": "code", + "source_file": "packages/relay-server/src/store.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_relay_server_src_store", + "community": 65, + "community_name": "Relayserver", + "norm_label": "relay-server/src/store.ts" + }, + { + "label": "MIGRATIONS", + "file_type": "code", + "source_file": "packages/relay-server/src/store.ts", + "source_location": "L43", + "_origin": "ast", + "id": "packages_relay_server_src_store_migrations", + "community": 65, + "community_name": "Relayserver", + "norm_label": "migrations" + }, + { + "label": "initStore()", + "file_type": "code", + "source_file": "packages/relay-server/src/store.ts", + "source_location": "L49", + "_callable": true, + "_origin": "ast", + "id": "packages_relay_server_src_store_initstore", + "community": 65, + "community_name": "Relayserver", + "norm_label": "initstore()" + }, + { + "label": "closeStore()", + "file_type": "code", + "source_file": "packages/relay-server/src/store.ts", + "source_location": "L62", + "_callable": true, + "_origin": "ast", + "id": "packages_relay_server_src_store_closestore", + "community": 65, + "community_name": "Relayserver", + "norm_label": "closestore()" + }, + { + "label": "getDb()", + "file_type": "code", + "source_file": "packages/relay-server/src/store.ts", + "source_location": "L69", + "_callable": true, + "_origin": "ast", + "id": "packages_relay_server_src_store_getdb", + "community": 65, + "community_name": "Relayserver", + "norm_label": "getdb()" + }, + { + "label": "generateId()", + "file_type": "code", + "source_file": "packages/relay-server/src/store.ts", + "source_location": "L74", + "_callable": true, + "_origin": "ast", + "id": "packages_relay_server_src_store_generateid", + "community": 65, + "community_name": "Relayserver", + "norm_label": "generateid()" + }, + { + "label": "storeCapsule()", + "file_type": "code", + "source_file": "packages/relay-server/src/store.ts", + "source_location": "L83", + "_callable": true, + "_origin": "ast", + "id": "packages_relay_server_src_store_storecapsule", + "community": 65, + "community_name": "Relayserver", + "norm_label": "storecapsule()" + }, + { + "label": "RelayCapsuleRow", + "file_type": "code", + "source_file": "packages/relay-server/src/store.ts", + "source_location": "L103", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_relay_server_src_store_relaycapsulerow", + "community": 65, + "community_name": "Relayserver", + "norm_label": "relaycapsulerow" + }, + { + "label": "getUnacknowledgedCapsules()", + "file_type": "code", + "source_file": "packages/relay-server/src/store.ts", + "source_location": "L121", + "_callable": true, + "_origin": "ast", + "id": "packages_relay_server_src_store_getunacknowledgedcapsules", + "community": 65, + "community_name": "Relayserver", + "norm_label": "getunacknowledgedcapsules()" + }, + { + "label": "acknowledgeCapsules()", + "file_type": "code", + "source_file": "packages/relay-server/src/store.ts", + "source_location": "L131", + "_callable": true, + "_origin": "ast", + "id": "packages_relay_server_src_store_acknowledgecapsules", + "community": 65, + "community_name": "Relayserver", + "norm_label": "acknowledgecapsules()" + }, + { + "label": "cleanupExpired()", + "file_type": "code", + "source_file": "packages/relay-server/src/store.ts", + "source_location": "L144", + "_callable": true, + "_origin": "ast", + "id": "packages_relay_server_src_store_cleanupexpired", + "community": 65, + "community_name": "Relayserver", + "norm_label": "cleanupexpired()" + }, + { + "label": "registerHandshake()", + "file_type": "code", + "source_file": "packages/relay-server/src/store.ts", + "source_location": "L151", + "_callable": true, + "_origin": "ast", + "id": "packages_relay_server_src_store_registerhandshake", + "community": 65, + "community_name": "Relayserver", + "norm_label": "registerhandshake()" + }, + { + "label": "lookupHandshakeToken()", + "file_type": "code", + "source_file": "packages/relay-server/src/store.ts", + "source_location": "L165", + "_callable": true, + "_origin": "ast", + "id": "packages_relay_server_src_store_lookuphandshaketoken", + "community": 65, + "community_name": "Relayserver", + "norm_label": "lookuphandshaketoken()" + }, + { + "label": "countUnacknowledged()", + "file_type": "code", + "source_file": "packages/relay-server/src/store.ts", + "source_location": "L171", + "_callable": true, + "_origin": "ast", + "id": "packages_relay_server_src_store_countunacknowledged", + "community": 65, + "community_name": "Relayserver", + "norm_label": "countunacknowledged()" + }, + { + "label": "DeviceRole", + "file_type": "code", + "source_file": "packages/relay-server/src/store.ts", + "source_location": "L179", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_relay_server_src_store_devicerole", + "community": 65, + "community_name": "Relayserver", + "norm_label": "devicerole" + }, + { + "label": "registerDevice()", + "file_type": "code", + "source_file": "packages/relay-server/src/store.ts", + "source_location": "L185", + "_callable": true, + "_origin": "ast", + "id": "packages_relay_server_src_store_registerdevice", + "community": 65, + "community_name": "Relayserver", + "norm_label": "registerdevice()" + }, + { + "label": "getDeviceRole()", + "file_type": "code", + "source_file": "packages/relay-server/src/store.ts", + "source_location": "L198", + "_callable": true, + "_origin": "ast", + "id": "packages_relay_server_src_store_getdevicerole", + "community": 65, + "community_name": "Relayserver", + "norm_label": "getdevicerole()" + }, + { + "label": "getRegisteredHostIds()", + "file_type": "code", + "source_file": "packages/relay-server/src/store.ts", + "source_location": "L209", + "_callable": true, + "_origin": "ast", + "id": "packages_relay_server_src_store_getregisteredhostids", + "community": 65, + "community_name": "Relayserver", + "norm_label": "getregisteredhostids()" + }, + { + "label": "getRegisteredHostCount()", + "file_type": "code", + "source_file": "packages/relay-server/src/store.ts", + "source_location": "L219", + "_callable": true, + "_origin": "ast", + "id": "packages_relay_server_src_store_getregisteredhostcount", + "community": 65, + "community_name": "Relayserver", + "norm_label": "getregisteredhostcount()" + }, + { + "label": "getRegisteredDeviceCount()", + "file_type": "code", + "source_file": "packages/relay-server/src/store.ts", + "source_location": "L229", + "_callable": true, + "_origin": "ast", + "id": "packages_relay_server_src_store_getregistereddevicecount", + "community": 65, + "community_name": "Relayserver", + "norm_label": "getregistereddevicecount()" + }, + { + "label": "relay-server/tsconfig.json", + "file_type": "code", + "source_file": "packages/relay-server/tsconfig.json", + "source_location": "L1", + "_origin": "ast", + "id": "packages_relay_server_tsconfig", + "community": 298, + "community_name": "Relayserver #298", + "norm_label": "relay-server/tsconfig.json" + }, + { + "label": "compilerOptions", + "file_type": "code", + "source_file": "packages/relay-server/tsconfig.json", + "source_location": "L2", + "_origin": "ast", + "id": "packages_relay_server_tsconfig_compileroptions", + "community": 298, + "community_name": "Relayserver #298", + "norm_label": "compileroptions" + }, + { + "label": "target", + "file_type": "code", + "source_file": "packages/relay-server/tsconfig.json", + "source_location": "L3", + "_origin": "ast", + "id": "packages_relay_server_tsconfig_compileroptions_target", + "community": 298, + "community_name": "Relayserver #298", + "norm_label": "target" + }, + { + "label": "module", + "file_type": "code", + "source_file": "packages/relay-server/tsconfig.json", + "source_location": "L4", + "_origin": "ast", + "id": "packages_relay_server_tsconfig_compileroptions_module", + "community": 298, + "community_name": "Relayserver #298", + "norm_label": "module" + }, + { + "label": "moduleResolution", + "file_type": "code", + "source_file": "packages/relay-server/tsconfig.json", + "source_location": "L5", + "_origin": "ast", + "id": "packages_relay_server_tsconfig_compileroptions_moduleresolution", + "community": 298, + "community_name": "Relayserver #298", + "norm_label": "moduleresolution" + }, + { + "label": "strict", + "file_type": "code", + "source_file": "packages/relay-server/tsconfig.json", + "source_location": "L6", + "_origin": "ast", + "id": "packages_relay_server_tsconfig_compileroptions_strict", + "community": 298, + "community_name": "Relayserver #298", + "norm_label": "strict" + }, + { + "label": "skipLibCheck", + "file_type": "code", + "source_file": "packages/relay-server/tsconfig.json", + "source_location": "L7", + "_origin": "ast", + "id": "packages_relay_server_tsconfig_compileroptions_skiplibcheck", + "community": 298, + "community_name": "Relayserver #298", + "norm_label": "skiplibcheck" + }, + { + "label": "declaration", + "file_type": "code", + "source_file": "packages/relay-server/tsconfig.json", + "source_location": "L8", + "_origin": "ast", + "id": "packages_relay_server_tsconfig_compileroptions_declaration", + "community": 298, + "community_name": "Relayserver #298", + "norm_label": "declaration" + }, + { + "label": "outDir", + "file_type": "code", + "source_file": "packages/relay-server/tsconfig.json", + "source_location": "L9", + "_origin": "ast", + "id": "packages_relay_server_tsconfig_compileroptions_outdir", + "community": 298, + "community_name": "Relayserver #298", + "norm_label": "outdir" + }, + { + "label": "rootDir", + "file_type": "code", + "source_file": "packages/relay-server/tsconfig.json", + "source_location": "L10", + "_origin": "ast", + "id": "packages_relay_server_tsconfig_compileroptions_rootdir", + "community": 298, + "community_name": "Relayserver #298", + "norm_label": "rootdir" + }, + { + "label": "include", + "file_type": "code", + "source_file": "packages/relay-server/tsconfig.json", + "source_location": "L12", + "_origin": "ast", + "id": "packages_relay_server_tsconfig_include", + "community": 298, + "community_name": "Relayserver #298", + "norm_label": "include" + }, + { + "label": "src/**/*.ts", + "file_type": "concept", + "source_file": "packages/relay-server/tsconfig.json", + "source_location": "L12", + "_origin": "ast", + "id": "packages_relay_server_tsconfig_json_ref_src_ts", + "community": 298, + "community_name": "Relayserver #298", + "norm_label": "src/**/*.ts" + }, + { + "label": "exclude", + "file_type": "code", + "source_file": "packages/relay-server/tsconfig.json", + "source_location": "L13", + "_origin": "ast", + "id": "packages_relay_server_tsconfig_exclude", + "community": 298, + "community_name": "Relayserver #298", + "norm_label": "exclude" + }, + { + "label": "node_modules", + "file_type": "concept", + "source_file": "packages/relay-server/tsconfig.json", + "source_location": "L13", + "_origin": "ast", + "id": "packages_relay_server_tsconfig_json_ref_node_modules", + "community": 298, + "community_name": "Relayserver #298", + "norm_label": "node_modules" + }, + { + "label": "dist", + "file_type": "concept", + "source_file": "packages/relay-server/tsconfig.json", + "source_location": "L13", + "_origin": "ast", + "id": "packages_relay_server_tsconfig_json_ref_dist", + "community": 298, + "community_name": "Relayserver #298", + "norm_label": "dist" + }, + { + "label": "__tests__", + "file_type": "concept", + "source_file": "packages/relay-server/tsconfig.json", + "source_location": "L13", + "_origin": "ast", + "id": "packages_relay_server_tsconfig_json_ref_tests", + "community": 298, + "community_name": "Relayserver #298", + "norm_label": "__tests__" + }, + { + "label": "relay-server/vitest.config.ts", + "file_type": "code", + "source_file": "packages/relay-server/vitest.config.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_relay_server_vitest_config", + "community": 616, + "community_name": "Relayserver #616", + "norm_label": "relay-server/vitest.config.ts" + }, + { + "label": "shared-beap-ui/package.json", + "file_type": "code", + "source_file": "packages/shared-beap-ui/package.json", + "source_location": "L1", + "_origin": "ast", + "id": "packages_shared_beap_ui_package", + "community": 263, + "community_name": "Sharedbeapui #263", + "norm_label": "shared-beap-ui/package.json" + }, + { + "label": "name", + "file_type": "code", + "source_file": "packages/shared-beap-ui/package.json", + "source_location": "L2", + "_origin": "ast", + "id": "packages_shared_beap_ui_package_name", + "community": 263, + "community_name": "Sharedbeapui #263", + "norm_label": "name" + }, + { + "label": "version", + "file_type": "code", + "source_file": "packages/shared-beap-ui/package.json", + "source_location": "L3", + "_origin": "ast", + "id": "packages_shared_beap_ui_package_version", + "community": 263, + "community_name": "Sharedbeapui #263", + "norm_label": "version" + }, + { + "label": "private", + "file_type": "code", + "source_file": "packages/shared-beap-ui/package.json", + "source_location": "L4", + "_origin": "ast", + "id": "packages_shared_beap_ui_package_private", + "community": 263, + "community_name": "Sharedbeapui #263", + "norm_label": "private" + }, + { + "label": "type", + "file_type": "code", + "source_file": "packages/shared-beap-ui/package.json", + "source_location": "L5", + "_origin": "ast", + "id": "packages_shared_beap_ui_package_type", + "community": 263, + "community_name": "Sharedbeapui #263", + "norm_label": "type" + }, + { + "label": "main", + "file_type": "code", + "source_file": "packages/shared-beap-ui/package.json", + "source_location": "L6", + "_origin": "ast", + "id": "packages_shared_beap_ui_package_main", + "community": 263, + "community_name": "Sharedbeapui #263", + "norm_label": "main" + }, + { + "label": "types", + "file_type": "code", + "source_file": "packages/shared-beap-ui/package.json", + "source_location": "L7", + "_origin": "ast", + "id": "packages_shared_beap_ui_package_types", + "community": 263, + "community_name": "Sharedbeapui #263", + "norm_label": "types" + }, + { + "label": "exports", + "file_type": "code", + "source_file": "packages/shared-beap-ui/package.json", + "source_location": "L8", + "_origin": "ast", + "id": "packages_shared_beap_ui_package_exports", + "community": 263, + "community_name": "Sharedbeapui #263", + "norm_label": "exports" + }, + { + "label": "peerDependencies", + "file_type": "code", + "source_file": "packages/shared-beap-ui/package.json", + "source_location": "L15", + "_origin": "ast", + "id": "packages_shared_beap_ui_package_peerdependencies", + "community": 263, + "community_name": "Sharedbeapui #263", + "norm_label": "peerdependencies" + }, + { + "label": "react", + "file_type": "code", + "source_file": "packages/shared-beap-ui/package.json", + "source_location": "L16", + "_origin": "ast", + "id": "packages_shared_beap_ui_package_peerdependencies_react", + "community": 263, + "community_name": "Sharedbeapui #263", + "norm_label": "react" + }, + { + "label": "react", + "file_type": "concept", + "source_file": "packages/shared-beap-ui/package.json", + "source_location": "L16", + "_origin": "ast", + "id": "packages_shared_beap_ui_package_json_react", + "community": 263, + "community_name": "Sharedbeapui #263", + "norm_label": "react" + }, + { + "label": "react-dom", + "file_type": "code", + "source_file": "packages/shared-beap-ui/package.json", + "source_location": "L17", + "_origin": "ast", + "id": "packages_shared_beap_ui_package_peerdependencies_react_dom", + "community": 263, + "community_name": "Sharedbeapui #263", + "norm_label": "react-dom" + }, + { + "label": "react-dom", + "file_type": "concept", + "source_file": "packages/shared-beap-ui/package.json", + "source_location": "L17", + "_origin": "ast", + "id": "packages_shared_beap_ui_package_json_react_dom", + "community": 263, + "community_name": "Sharedbeapui #263", + "norm_label": "react-dom" + }, + { + "label": "devDependencies", + "file_type": "code", + "source_file": "packages/shared-beap-ui/package.json", + "source_location": "L19", + "_origin": "ast", + "id": "packages_shared_beap_ui_package_devdependencies", + "community": 263, + "community_name": "Sharedbeapui #263", + "norm_label": "devdependencies" + }, + { + "label": "@types/react", + "file_type": "code", + "source_file": "packages/shared-beap-ui/package.json", + "source_location": "L20", + "_origin": "ast", + "id": "packages_shared_beap_ui_package_devdependencies_types_react", + "community": 263, + "community_name": "Sharedbeapui #263", + "norm_label": "@types/react" + }, + { + "label": "@types/react", + "file_type": "concept", + "source_file": "packages/shared-beap-ui/package.json", + "source_location": "L20", + "_origin": "ast", + "id": "packages_shared_beap_ui_package_json_types_react", + "community": 263, + "community_name": "Sharedbeapui #263", + "norm_label": "@types/react" + }, + { + "label": "react", + "file_type": "code", + "source_file": "packages/shared-beap-ui/package.json", + "source_location": "L21", + "_origin": "ast", + "id": "packages_shared_beap_ui_package_devdependencies_react", + "community": 263, + "community_name": "Sharedbeapui #263", + "norm_label": "react" + }, + { + "label": "typescript", + "file_type": "code", + "source_file": "packages/shared-beap-ui/package.json", + "source_location": "L22", + "_origin": "ast", + "id": "packages_shared_beap_ui_package_devdependencies_typescript", + "community": 263, + "community_name": "Sharedbeapui #263", + "norm_label": "typescript" + }, + { + "label": "typescript", + "file_type": "concept", + "source_file": "packages/shared-beap-ui/package.json", + "source_location": "L22", + "_origin": "ast", + "id": "packages_shared_beap_ui_package_json_typescript", + "community": 263, + "community_name": "Sharedbeapui #263", + "norm_label": "typescript" + }, + { + "label": "AttachmentPicker.tsx", + "file_type": "code", + "source_file": "packages/shared-beap-ui/src/AttachmentPicker.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "packages_shared_beap_ui_src_attachmentpicker", + "community": 247, + "community_name": "Sharedbeapui", + "norm_label": "attachmentpicker.tsx" + }, + { + "label": "AttachmentPickerProps", + "file_type": "code", + "source_file": "packages/shared-beap-ui/src/AttachmentPicker.tsx", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_beap_ui_src_attachmentpicker_attachmentpickerprops", + "community": 247, + "community_name": "Sharedbeapui", + "norm_label": "attachmentpickerprops" + }, + { + "label": "AttachmentPicker()", + "file_type": "code", + "source_file": "packages/shared-beap-ui/src/AttachmentPicker.tsx", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_beap_ui_src_attachmentpicker_attachmentpicker", + "community": 247, + "community_name": "Sharedbeapui", + "norm_label": "attachmentpicker()" + }, + { + "label": "BeapIdentityBadge.tsx", + "file_type": "code", + "source_file": "packages/shared-beap-ui/src/BeapIdentityBadge.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "packages_shared_beap_ui_src_beapidentitybadge", + "community": 247, + "community_name": "Sharedbeapui", + "norm_label": "beapidentitybadge.tsx" + }, + { + "label": "BeapIdentityBadgeProps", + "file_type": "code", + "source_file": "packages/shared-beap-ui/src/BeapIdentityBadge.tsx", + "source_location": "L3", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_beap_ui_src_beapidentitybadge_beapidentitybadgeprops", + "community": 247, + "community_name": "Sharedbeapui", + "norm_label": "beapidentitybadgeprops" + }, + { + "label": "BeapIdentityBadge()", + "file_type": "code", + "source_file": "packages/shared-beap-ui/src/BeapIdentityBadge.tsx", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_beap_ui_src_beapidentitybadge_beapidentitybadge", + "community": 247, + "community_name": "Sharedbeapui", + "norm_label": "beapidentitybadge()" + }, + { + "label": "BeapMessageBody.tsx", + "file_type": "code", + "source_file": "packages/shared-beap-ui/src/BeapMessageBody.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "packages_shared_beap_ui_src_beapmessagebody", + "community": 247, + "community_name": "Sharedbeapui", + "norm_label": "beapmessagebody.tsx" + }, + { + "label": "BeapMessageBodyProps", + "file_type": "code", + "source_file": "packages/shared-beap-ui/src/BeapMessageBody.tsx", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_beap_ui_src_beapmessagebody_beapmessagebodyprops", + "community": 247, + "community_name": "Sharedbeapui", + "norm_label": "beapmessagebodyprops" + }, + { + "label": "BeapMessageBody()", + "file_type": "code", + "source_file": "packages/shared-beap-ui/src/BeapMessageBody.tsx", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_beap_ui_src_beapmessagebody_beapmessagebody", + "community": 247, + "community_name": "Sharedbeapui", + "norm_label": "beapmessagebody()" + }, + { + "label": "CapsuleFields.tsx", + "file_type": "code", + "source_file": "packages/shared-beap-ui/src/CapsuleFields.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "packages_shared_beap_ui_src_capsulefields", + "community": 247, + "community_name": "Sharedbeapui", + "norm_label": "capsulefields.tsx" + }, + { + "label": "CapsuleFieldsProps", + "file_type": "code", + "source_file": "packages/shared-beap-ui/src/CapsuleFields.tsx", + "source_location": "L3", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_beap_ui_src_capsulefields_capsulefieldsprops", + "community": 247, + "community_name": "Sharedbeapui", + "norm_label": "capsulefieldsprops" + }, + { + "label": "CapsuleFields()", + "file_type": "code", + "source_file": "packages/shared-beap-ui/src/CapsuleFields.tsx", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_beap_ui_src_capsulefields_capsulefields", + "community": 247, + "community_name": "Sharedbeapui", + "norm_label": "capsulefields()" + }, + { + "label": "SessionSelector.tsx", + "file_type": "code", + "source_file": "packages/shared-beap-ui/src/SessionSelector.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "packages_shared_beap_ui_src_sessionselector", + "community": 247, + "community_name": "Sharedbeapui", + "norm_label": "sessionselector.tsx" + }, + { + "label": "SessionSelectorProps", + "file_type": "code", + "source_file": "packages/shared-beap-ui/src/SessionSelector.tsx", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_beap_ui_src_sessionselector_sessionselectorprops", + "community": 247, + "community_name": "Sharedbeapui", + "norm_label": "sessionselectorprops" + }, + { + "label": "SessionSelector()", + "file_type": "code", + "source_file": "packages/shared-beap-ui/src/SessionSelector.tsx", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_beap_ui_src_sessionselector_sessionselector", + "community": 247, + "community_name": "Sharedbeapui", + "norm_label": "sessionselector()" + }, + { + "label": "css.d.ts", + "file_type": "code", + "source_file": "packages/shared-beap-ui/src/css.d.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_shared_beap_ui_src_css_d", + "community": 575, + "community_name": "Sharedbeapui #575", + "norm_label": "css.d.ts" + }, + { + "label": "*.css", + "file_type": "code", + "source_file": "packages/shared-beap-ui/src/css.d.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_shared_beap_ui_src_css_d_css", + "community": 575, + "community_name": "Sharedbeapui #575", + "norm_label": "*.css" + }, + { + "label": "shared-beap-ui/src/index.ts", + "file_type": "code", + "source_file": "packages/shared-beap-ui/src/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_shared_beap_ui_src_index", + "community": 247, + "community_name": "Sharedbeapui", + "norm_label": "shared-beap-ui/src/index.ts" + }, + { + "label": "shared-beap-ui/src/types.ts", + "file_type": "code", + "source_file": "packages/shared-beap-ui/src/types.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_shared_beap_ui_src_types", + "community": 247, + "community_name": "Sharedbeapui", + "norm_label": "shared-beap-ui/src/types.ts" + }, + { + "label": "CapsuleDraftState", + "file_type": "code", + "source_file": "packages/shared-beap-ui/src/types.ts", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_beap_ui_src_types_capsuledraftstate", + "community": 247, + "community_name": "Sharedbeapui", + "norm_label": "capsuledraftstate" + }, + { + "label": "SessionOption", + "file_type": "code", + "source_file": "packages/shared-beap-ui/src/types.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_beap_ui_src_types_sessionoption", + "community": 247, + "community_name": "Sharedbeapui", + "norm_label": "sessionoption" + }, + { + "label": "AttachmentItem", + "file_type": "code", + "source_file": "packages/shared-beap-ui/src/types.ts", + "source_location": "L21", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_beap_ui_src_types_attachmentitem", + "community": 247, + "community_name": "Sharedbeapui", + "norm_label": "attachmentitem" + }, + { + "label": "BeapMessageBodySessionRef", + "file_type": "code", + "source_file": "packages/shared-beap-ui/src/types.ts", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_beap_ui_src_types_beapmessagebodysessionref", + "community": 247, + "community_name": "Sharedbeapui", + "norm_label": "beapmessagebodysessionref" + }, + { + "label": "shared-beap-ui/tsconfig.json", + "file_type": "code", + "source_file": "packages/shared-beap-ui/tsconfig.json", + "source_location": "L1", + "_origin": "ast", + "id": "packages_shared_beap_ui_tsconfig", + "community": 273, + "community_name": "Sharedbeapui #273", + "norm_label": "shared-beap-ui/tsconfig.json" + }, + { + "label": "compilerOptions", + "file_type": "code", + "source_file": "packages/shared-beap-ui/tsconfig.json", + "source_location": "L2", + "_origin": "ast", + "id": "packages_shared_beap_ui_tsconfig_compileroptions", + "community": 273, + "community_name": "Sharedbeapui #273", + "norm_label": "compileroptions" + }, + { + "label": "target", + "file_type": "code", + "source_file": "packages/shared-beap-ui/tsconfig.json", + "source_location": "L3", + "_origin": "ast", + "id": "packages_shared_beap_ui_tsconfig_compileroptions_target", + "community": 273, + "community_name": "Sharedbeapui #273", + "norm_label": "target" + }, + { + "label": "lib", + "file_type": "code", + "source_file": "packages/shared-beap-ui/tsconfig.json", + "source_location": "L4", + "_origin": "ast", + "id": "packages_shared_beap_ui_tsconfig_compileroptions_lib", + "community": 273, + "community_name": "Sharedbeapui #273", + "norm_label": "lib" + }, + { + "label": "ES2020", + "file_type": "concept", + "source_file": "packages/shared-beap-ui/tsconfig.json", + "source_location": "L4", + "_origin": "ast", + "id": "packages_shared_beap_ui_tsconfig_json_ref_es2020", + "community": 273, + "community_name": "Sharedbeapui #273", + "norm_label": "es2020" + }, + { + "label": "DOM", + "file_type": "concept", + "source_file": "packages/shared-beap-ui/tsconfig.json", + "source_location": "L4", + "_origin": "ast", + "id": "packages_shared_beap_ui_tsconfig_json_ref_dom", + "community": 273, + "community_name": "Sharedbeapui #273", + "norm_label": "dom" + }, + { + "label": "DOM.Iterable", + "file_type": "concept", + "source_file": "packages/shared-beap-ui/tsconfig.json", + "source_location": "L4", + "_origin": "ast", + "id": "packages_shared_beap_ui_tsconfig_json_ref_dom_iterable", + "community": 273, + "community_name": "Sharedbeapui #273", + "norm_label": "dom.iterable" + }, + { + "label": "module", + "file_type": "code", + "source_file": "packages/shared-beap-ui/tsconfig.json", + "source_location": "L5", + "_origin": "ast", + "id": "packages_shared_beap_ui_tsconfig_compileroptions_module", + "community": 273, + "community_name": "Sharedbeapui #273", + "norm_label": "module" + }, + { + "label": "moduleResolution", + "file_type": "code", + "source_file": "packages/shared-beap-ui/tsconfig.json", + "source_location": "L6", + "_origin": "ast", + "id": "packages_shared_beap_ui_tsconfig_compileroptions_moduleresolution", + "community": 273, + "community_name": "Sharedbeapui #273", + "norm_label": "moduleresolution" + }, + { + "label": "jsx", + "file_type": "code", + "source_file": "packages/shared-beap-ui/tsconfig.json", + "source_location": "L7", + "_origin": "ast", + "id": "packages_shared_beap_ui_tsconfig_compileroptions_jsx", + "community": 273, + "community_name": "Sharedbeapui #273", + "norm_label": "jsx" + }, + { + "label": "strict", + "file_type": "code", + "source_file": "packages/shared-beap-ui/tsconfig.json", + "source_location": "L8", + "_origin": "ast", + "id": "packages_shared_beap_ui_tsconfig_compileroptions_strict", + "community": 273, + "community_name": "Sharedbeapui #273", + "norm_label": "strict" + }, + { + "label": "esModuleInterop", + "file_type": "code", + "source_file": "packages/shared-beap-ui/tsconfig.json", + "source_location": "L9", + "_origin": "ast", + "id": "packages_shared_beap_ui_tsconfig_compileroptions_esmoduleinterop", + "community": 273, + "community_name": "Sharedbeapui #273", + "norm_label": "esmoduleinterop" + }, + { + "label": "skipLibCheck", + "file_type": "code", + "source_file": "packages/shared-beap-ui/tsconfig.json", + "source_location": "L10", + "_origin": "ast", + "id": "packages_shared_beap_ui_tsconfig_compileroptions_skiplibcheck", + "community": 273, + "community_name": "Sharedbeapui #273", + "norm_label": "skiplibcheck" + }, + { + "label": "declaration", + "file_type": "code", + "source_file": "packages/shared-beap-ui/tsconfig.json", + "source_location": "L11", + "_origin": "ast", + "id": "packages_shared_beap_ui_tsconfig_compileroptions_declaration", + "community": 273, + "community_name": "Sharedbeapui #273", + "norm_label": "declaration" + }, + { + "label": "outDir", + "file_type": "code", + "source_file": "packages/shared-beap-ui/tsconfig.json", + "source_location": "L12", + "_origin": "ast", + "id": "packages_shared_beap_ui_tsconfig_compileroptions_outdir", + "community": 273, + "community_name": "Sharedbeapui #273", + "norm_label": "outdir" + }, + { + "label": "rootDir", + "file_type": "code", + "source_file": "packages/shared-beap-ui/tsconfig.json", + "source_location": "L13", + "_origin": "ast", + "id": "packages_shared_beap_ui_tsconfig_compileroptions_rootdir", + "community": 273, + "community_name": "Sharedbeapui #273", + "norm_label": "rootdir" + }, + { + "label": "include", + "file_type": "code", + "source_file": "packages/shared-beap-ui/tsconfig.json", + "source_location": "L15", + "_origin": "ast", + "id": "packages_shared_beap_ui_tsconfig_include", + "community": 273, + "community_name": "Sharedbeapui #273", + "norm_label": "include" + }, + { + "label": "src", + "file_type": "concept", + "source_file": "packages/shared-beap-ui/tsconfig.json", + "source_location": "L15", + "_origin": "ast", + "id": "packages_shared_beap_ui_tsconfig_json_ref_src", + "community": 273, + "community_name": "Sharedbeapui #273", + "norm_label": "src" + }, + { + "label": "shared-extension/package.json", + "file_type": "code", + "source_file": "packages/shared-extension/package.json", + "source_location": "L1", + "_origin": "ast", + "id": "packages_shared_extension_package", + "community": 421, + "community_name": "Sharedextension", + "norm_label": "shared-extension/package.json" + }, + { + "label": "name", + "file_type": "code", + "source_file": "packages/shared-extension/package.json", + "source_location": "L2", + "_origin": "ast", + "id": "packages_shared_extension_package_name", + "community": 421, + "community_name": "Sharedextension", + "norm_label": "name" + }, + { + "label": "version", + "file_type": "code", + "source_file": "packages/shared-extension/package.json", + "source_location": "L3", + "_origin": "ast", + "id": "packages_shared_extension_package_version", + "community": 421, + "community_name": "Sharedextension", + "norm_label": "version" + }, + { + "label": "type", + "file_type": "code", + "source_file": "packages/shared-extension/package.json", + "source_location": "L4", + "_origin": "ast", + "id": "packages_shared_extension_package_type", + "community": 421, + "community_name": "Sharedextension", + "norm_label": "type" + }, + { + "label": "main", + "file_type": "code", + "source_file": "packages/shared-extension/package.json", + "source_location": "L5", + "_origin": "ast", + "id": "packages_shared_extension_package_main", + "community": 421, + "community_name": "Sharedextension", + "norm_label": "main" + }, + { + "label": "types", + "file_type": "code", + "source_file": "packages/shared-extension/package.json", + "source_location": "L6", + "_origin": "ast", + "id": "packages_shared_extension_package_types", + "community": 421, + "community_name": "Sharedextension", + "norm_label": "types" + }, + { + "label": "private", + "file_type": "code", + "source_file": "packages/shared-extension/package.json", + "source_location": "L7", + "_origin": "ast", + "id": "packages_shared_extension_package_private", + "community": 421, + "community_name": "Sharedextension", + "norm_label": "private" + }, + { + "label": "shared-extension/src/index.ts", + "file_type": "code", + "source_file": "packages/shared-extension/src/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_shared_extension_src_index", + "community": 453, + "community_name": "Sharedextension #453", + "norm_label": "shared-extension/src/index.ts" + }, + { + "label": "Ping", + "file_type": "code", + "source_file": "packages/shared-extension/src/index.ts", + "source_location": "L1", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_extension_src_index_ping", + "community": 453, + "community_name": "Sharedextension #453", + "norm_label": "ping" + }, + { + "label": "Pong", + "file_type": "code", + "source_file": "packages/shared-extension/src/index.ts", + "source_location": "L2", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_extension_src_index_pong", + "community": 453, + "community_name": "Sharedextension #453", + "norm_label": "pong" + }, + { + "label": "Msg", + "file_type": "code", + "source_file": "packages/shared-extension/src/index.ts", + "source_location": "L3", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_extension_src_index_msg", + "community": 453, + "community_name": "Sharedextension #453", + "norm_label": "msg" + }, + { + "label": "parseMsg()", + "file_type": "code", + "source_file": "packages/shared-extension/src/index.ts", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_extension_src_index_parsemsg", + "community": 453, + "community_name": "Sharedextension #453", + "norm_label": "parsemsg()" + }, + { + "label": "ChromeStorageAdapter.ts", + "file_type": "code", + "source_file": "packages/shared-extension/src/storage/ChromeStorageAdapter.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_shared_extension_src_storage_chromestorageadapter", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": "chromestorageadapter.ts" + }, + { + "label": "ChromeStorageAdapter", + "file_type": "code", + "source_file": "packages/shared-extension/src/storage/ChromeStorageAdapter.ts", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_extension_src_storage_chromestorageadapter_chromestorageadapter", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": "chromestorageadapter" + }, + { + "label": ".get()", + "file_type": "code", + "source_file": "packages/shared-extension/src/storage/ChromeStorageAdapter.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_extension_src_storage_chromestorageadapter_chromestorageadapter_get", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": ".get()" + }, + { + "label": ".set()", + "file_type": "code", + "source_file": "packages/shared-extension/src/storage/ChromeStorageAdapter.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_extension_src_storage_chromestorageadapter_chromestorageadapter_set", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": ".set()" + }, + { + "label": ".getAll()", + "file_type": "code", + "source_file": "packages/shared-extension/src/storage/ChromeStorageAdapter.ts", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_extension_src_storage_chromestorageadapter_chromestorageadapter_getall", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": ".getall()" + }, + { + "label": ".setAll()", + "file_type": "code", + "source_file": "packages/shared-extension/src/storage/ChromeStorageAdapter.ts", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_extension_src_storage_chromestorageadapter_chromestorageadapter_setall", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": ".setall()" + }, + { + "label": "shared/package.json", + "file_type": "code", + "source_file": "packages/shared/package.json", + "source_location": "L1", + "_origin": "ast", + "id": "packages_shared_package", + "community": 431, + "community_name": "Community 431", + "norm_label": "shared/package.json" + }, + { + "label": "name", + "file_type": "code", + "source_file": "packages/shared/package.json", + "source_location": "L2", + "_origin": "ast", + "id": "packages_shared_package_name", + "community": 431, + "community_name": "Community 431", + "norm_label": "name" + }, + { + "label": "version", + "file_type": "code", + "source_file": "packages/shared/package.json", + "source_location": "L3", + "_origin": "ast", + "id": "packages_shared_package_version", + "community": 431, + "community_name": "Community 431", + "norm_label": "version" + }, + { + "label": "type", + "file_type": "code", + "source_file": "packages/shared/package.json", + "source_location": "L4", + "_origin": "ast", + "id": "packages_shared_package_type", + "community": 431, + "community_name": "Community 431", + "norm_label": "type" + }, + { + "label": "main", + "file_type": "code", + "source_file": "packages/shared/package.json", + "source_location": "L5", + "_origin": "ast", + "id": "packages_shared_package_main", + "community": 431, + "community_name": "Community 431", + "norm_label": "main" + }, + { + "label": "types", + "file_type": "code", + "source_file": "packages/shared/package.json", + "source_location": "L6", + "_origin": "ast", + "id": "packages_shared_package_types", + "community": 431, + "community_name": "Community 431", + "norm_label": "types" + }, + { + "label": "activeHandshakeHealthIssue.ts", + "file_type": "code", + "source_file": "packages/shared/src/handshake/activeHandshakeHealthIssue.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_shared_src_handshake_activehandshakehealthissue", + "community": 106, + "community_name": "Handshake Shims", + "norm_label": "activehandshakehealthissue.ts" + }, + { + "label": "HandshakeHealthTier", + "file_type": "code", + "source_file": "packages/shared/src/handshake/activeHandshakeHealthIssue.ts", + "source_location": "L3", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_activehandshakehealthissue_handshakehealthtier", + "community": 106, + "community_name": "Handshake Shims", + "norm_label": "handshakehealthtier" + }, + { + "label": "HandshakeHealthReason", + "file_type": "code", + "source_file": "packages/shared/src/handshake/activeHandshakeHealthIssue.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_activehandshakehealthissue_handshakehealthreason", + "community": 106, + "community_name": "Handshake Shims", + "norm_label": "handshakehealthreason" + }, + { + "label": "ActiveHandshakeHealthIssue", + "file_type": "code", + "source_file": "packages/shared/src/handshake/activeHandshakeHealthIssue.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_activehandshakehealthissue_activehandshakehealthissue", + "community": 106, + "community_name": "Handshake Shims", + "norm_label": "activehandshakehealthissue" + }, + { + "label": "src/handshake/contextGovernance.ts", + "file_type": "code", + "source_file": "packages/shared/src/handshake/contextGovernance.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_shared_src_handshake_contextgovernance", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "src/handshake/contextgovernance.ts" + }, + { + "label": "ContentType", + "file_type": "code", + "source_file": "packages/shared/src/handshake/contextGovernance.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_contextgovernance_contenttype", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "contenttype" + }, + { + "label": "CONTENT_TYPES", + "file_type": "code", + "source_file": "packages/shared/src/handshake/contextGovernance.ts", + "source_location": "L22", + "_origin": "ast", + "id": "packages_shared_src_handshake_contextgovernance_content_types", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "content_types" + }, + { + "label": "Sensitivity", + "file_type": "code", + "source_file": "packages/shared/src/handshake/contextGovernance.ts", + "source_location": "L38", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_contextgovernance_sensitivity", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "sensitivity" + }, + { + "label": "SENSITIVITY_LEVELS", + "file_type": "code", + "source_file": "packages/shared/src/handshake/contextGovernance.ts", + "source_location": "L40", + "_origin": "ast", + "id": "packages_shared_src_handshake_contextgovernance_sensitivity_levels", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "sensitivity_levels" + }, + { + "label": "ContextOrigin", + "file_type": "code", + "source_file": "packages/shared/src/handshake/contextGovernance.ts", + "source_location": "L49", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_contextgovernance_contextorigin", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "contextorigin" + }, + { + "label": "UsagePolicy", + "file_type": "code", + "source_file": "packages/shared/src/handshake/contextGovernance.ts", + "source_location": "L53", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_contextgovernance_usagepolicy", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "usagepolicy" + }, + { + "label": "DEFAULT_USAGE_POLICY", + "file_type": "code", + "source_file": "packages/shared/src/handshake/contextGovernance.ts", + "source_location": "L64", + "_origin": "ast", + "id": "packages_shared_src_handshake_contextgovernance_default_usage_policy", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "default_usage_policy" + }, + { + "label": "MESSAGE_DEFAULT_POLICY", + "file_type": "code", + "source_file": "packages/shared/src/handshake/contextGovernance.ts", + "source_location": "L74", + "_origin": "ast", + "id": "packages_shared_src_handshake_contextgovernance_message_default_policy", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "message_default_policy" + }, + { + "label": "ContextProvenance", + "file_type": "code", + "source_file": "packages/shared/src/handshake/contextGovernance.ts", + "source_location": "L85", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_contextgovernance_contextprovenance", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "contextprovenance" + }, + { + "label": "ContextVerification", + "file_type": "code", + "source_file": "packages/shared/src/handshake/contextGovernance.ts", + "source_location": "L94", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_contextgovernance_contextverification", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "contextverification" + }, + { + "label": "ContextItemGovernance", + "file_type": "code", + "source_file": "packages/shared/src/handshake/contextGovernance.ts", + "source_location": "L102", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_contextgovernance_contextitemgovernance", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "contextitemgovernance" + }, + { + "label": "createDefaultGovernance()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/contextGovernance.ts", + "source_location": "L116", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_contextgovernance_createdefaultgovernance", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "createdefaultgovernance()" + }, + { + "label": "createMessageGovernance()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/contextGovernance.ts", + "source_location": "L131", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_contextgovernance_createmessagegovernance", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "createmessagegovernance()" + }, + { + "label": "hsContextFieldValidation.ts", + "file_type": "code", + "source_file": "packages/shared/src/handshake/hsContextFieldValidation.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_shared_src_handshake_hscontextfieldvalidation", + "community": 173, + "community_name": "Vault Hscontext Handshake", + "norm_label": "hscontextfieldvalidation.ts" + }, + { + "label": "validateUrl()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/hsContextFieldValidation.ts", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_hscontextfieldvalidation_validateurl", + "community": 173, + "community_name": "Vault Hscontext Handshake", + "norm_label": "validateurl()" + }, + { + "label": "validateEmail()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/hsContextFieldValidation.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_hscontextfieldvalidation_validateemail", + "community": 173, + "community_name": "Vault Hscontext Handshake", + "norm_label": "validateemail()" + }, + { + "label": "validatePhone()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/hsContextFieldValidation.ts", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_hscontextfieldvalidation_validatephone", + "community": 173, + "community_name": "Vault Hscontext Handshake", + "norm_label": "validatephone()" + }, + { + "label": "validateIdentifier()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/hsContextFieldValidation.ts", + "source_location": "L46", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_hscontextfieldvalidation_validateidentifier", + "community": 173, + "community_name": "Vault Hscontext Handshake", + "norm_label": "validateidentifier()" + }, + { + "label": "validatePlainText()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/hsContextFieldValidation.ts", + "source_location": "L58", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_hscontextfieldvalidation_validateplaintext", + "community": 173, + "community_name": "Vault Hscontext Handshake", + "norm_label": "validateplaintext()" + }, + { + "label": "validateOpeningHoursEntry()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/hsContextFieldValidation.ts", + "source_location": "L68", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_hscontextfieldvalidation_validateopeninghoursentry", + "community": 173, + "community_name": "Vault Hscontext Handshake", + "norm_label": "validateopeninghoursentry()" + }, + { + "label": "validateDocumentLabel()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/hsContextFieldValidation.ts", + "source_location": "L82", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_hscontextfieldvalidation_validatedocumentlabel", + "community": 173, + "community_name": "Vault Hscontext Handshake", + "norm_label": "validatedocumentlabel()" + }, + { + "label": "ALLOWED_DOCUMENT_TYPES", + "file_type": "code", + "source_file": "packages/shared/src/handshake/hsContextFieldValidation.ts", + "source_location": "L92", + "_origin": "ast", + "id": "packages_shared_src_handshake_hscontextfieldvalidation_allowed_document_types", + "community": 173, + "community_name": "Vault Hscontext Handshake", + "norm_label": "allowed_document_types" + }, + { + "label": "validateDocumentType()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/hsContextFieldValidation.ts", + "source_location": "L94", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_hscontextfieldvalidation_validatedocumenttype", + "community": 173, + "community_name": "Vault Hscontext Handshake", + "norm_label": "validatedocumenttype()" + }, + { + "label": "RFC-5322", + "file_type": "concept", + "source_file": "packages/shared/src/handshake/hsContextFieldValidation.ts", + "source_location": "L18", + "_origin": "ast", + "id": "packages_shared_src_handshake_hscontextfieldvalidation_ts_docref_rfc_5322", + "community": 173, + "community_name": "Vault Hscontext Handshake", + "norm_label": "rfc-5322" + }, + { + "label": "hsContextHardening.test.ts", + "file_type": "code", + "source_file": "packages/shared/src/handshake/hsContextHardening.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_shared_src_handshake_hscontexthardening_test", + "community": 173, + "community_name": "Vault Hscontext Handshake", + "norm_label": "hscontexthardening.test.ts" + }, + { + "label": "shared/src/handshake/index.ts", + "file_type": "code", + "source_file": "packages/shared/src/handshake/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_shared_src_handshake_index", + "community": 106, + "community_name": "Handshake Shims", + "norm_label": "shared/src/handshake/index.ts" + }, + { + "label": "internalEndpointValidation.test.ts", + "file_type": "code", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_shared_src_handshake_internalendpointvalidation_test", + "community": 95, + "community_name": "Handshake #95", + "norm_label": "internalendpointvalidation.test.ts" + }, + { + "label": "internalEndpointValidation.ts", + "file_type": "code", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_shared_src_handshake_internalendpointvalidation", + "community": 95, + "community_name": "Handshake #95", + "norm_label": "internalendpointvalidation.ts" + }, + { + "label": "InternalDeviceRole", + "file_type": "code", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_internalendpointvalidation_internaldevicerole", + "community": 95, + "community_name": "Handshake #95", + "norm_label": "internaldevicerole" + }, + { + "label": "internalEndpointIdentity", + "file_type": "code", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L98", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_internalendpointvalidation_internalendpointidentity", + "community": 95, + "community_name": "Handshake #95", + "norm_label": "internalendpointidentity" + }, + { + "label": "InternalHandshakeEndpoint", + "file_type": "code", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_internalendpointvalidation_internalhandshakeendpoint", + "community": 95, + "community_name": "Handshake #95", + "norm_label": "internalhandshakeendpoint" + }, + { + "label": "INTERNAL_ENDPOINT_ERROR_CODES", + "file_type": "code", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L30", + "_origin": "ast", + "id": "packages_shared_src_handshake_internalendpointvalidation_internal_endpoint_error_codes", + "community": 37, + "community_name": "Handshake Sandbox Ingestioncore", + "norm_label": "internal_endpoint_error_codes" + }, + { + "label": "InternalEndpointErrorCode", + "file_type": "code", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L50", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_internalendpointvalidation_internalendpointerrorcode", + "community": 95, + "community_name": "Handshake #95", + "norm_label": "internalendpointerrorcode" + }, + { + "label": "InternalEndpointMissingField", + "file_type": "code", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L65", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_internalendpointvalidation_internalendpointmissingfield", + "community": 95, + "community_name": "Handshake #95", + "norm_label": "internalendpointmissingfield" + }, + { + "label": "InternalEndpointSide", + "file_type": "code", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L70", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_internalendpointvalidation_internalendpointside", + "community": 95, + "community_name": "Handshake #95", + "norm_label": "internalendpointside" + }, + { + "label": "InternalEndpointPairValidationResult", + "file_type": "code", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L72", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_internalendpointvalidation_internalendpointpairvalidationresult", + "community": 95, + "community_name": "Handshake #95", + "norm_label": "internalendpointpairvalidationresult" + }, + { + "label": "normalizeComputerNameForHandshake()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L88", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_internalendpointvalidation_normalizecomputernameforhandshake", + "community": 95, + "community_name": "Handshake #95", + "norm_label": "normalizecomputernameforhandshake()" + }, + { + "label": "internalEndpointIdentityFromCamel()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L110", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_internalendpointvalidation_internalendpointidentityfromcamel", + "community": 95, + "community_name": "Handshake #95", + "norm_label": "internalendpointidentityfromcamel()" + }, + { + "label": "internalEndpointIdentityToCamel()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L118", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_internalendpointvalidation_internalendpointidentitytocamel", + "community": 95, + "community_name": "Handshake #95", + "norm_label": "internalendpointidentitytocamel()" + }, + { + "label": "isNonEmpty()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L126", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_internalendpointvalidation_isnonempty", + "community": 95, + "community_name": "Handshake #95", + "norm_label": "isnonempty()" + }, + { + "label": "validRole()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L130", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_internalendpointvalidation_validrole", + "community": 95, + "community_name": "Handshake #95", + "norm_label": "validrole()" + }, + { + "label": "sideFromLabel()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L141", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_internalendpointvalidation_sidefromlabel", + "community": 95, + "community_name": "Handshake #95", + "norm_label": "sidefromlabel()" + }, + { + "label": "messageForMissingField()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L152", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_internalendpointvalidation_messageformissingfield", + "community": 95, + "community_name": "Handshake #95", + "norm_label": "messageformissingfield()" + }, + { + "label": "validateInternalEndpointIdentity()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L183", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_internalendpointvalidation_validateinternalendpointidentity", + "community": 95, + "community_name": "Handshake #95", + "norm_label": "validateinternalendpointidentity()" + }, + { + "label": "validateInternalEndpointPair()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L228", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_internalendpointvalidation_validateinternalendpointpair", + "community": 95, + "community_name": "Handshake #95", + "norm_label": "validateinternalendpointpair()" + }, + { + "label": "validateInternalCapsuleDeviceIds()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L304", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_internalendpointvalidation_validateinternalcapsuledeviceids", + "community": 95, + "community_name": "Handshake #95", + "norm_label": "validateinternalcapsuledeviceids()" + }, + { + "label": "validateInternalEndpointFields()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L324", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_internalendpointvalidation_validateinternalendpointfields", + "community": 95, + "community_name": "Handshake #95", + "norm_label": "validateinternalendpointfields()" + }, + { + "label": "validateInternalEndpointPairDistinct()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L341", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_internalendpointvalidation_validateinternalendpointpairdistinct", + "community": 95, + "community_name": "Handshake #95", + "norm_label": "validateinternalendpointpairdistinct()" + }, + { + "label": "isValidPairingCodeFormat()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L354", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_internalendpointvalidation_isvalidpairingcodeformat", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "isvalidpairingcodeformat()" + }, + { + "label": "normalizePairingCode()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L360", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_internalendpointvalidation_normalizepairingcode", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "normalizepairingcode()" + }, + { + "label": "validateInternalInitiateContract()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L380", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_internalendpointvalidation_validateinternalinitiatecontract", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "validateinternalinitiatecontract()" + }, + { + "label": "formatPairingCodeForDisplay()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L435", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_internalendpointvalidation_formatpairingcodefordisplay", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "formatpairingcodefordisplay()" + }, + { + "label": "internalIdentityUi.test.ts", + "file_type": "code", + "source_file": "packages/shared/src/handshake/internalIdentityUi.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_shared_src_handshake_internalidentityui_test", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "internalidentityui.test.ts" + }, + { + "label": "base", + "file_type": "code", + "source_file": "packages/shared/src/handshake/internalIdentityUi.test.ts", + "source_location": "L12", + "_origin": "ast", + "id": "packages_shared_src_handshake_internalidentityui_test_base", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "base" + }, + { + "label": "activeInternal()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/internalIdentityUi.test.ts", + "source_location": "L85", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_internalidentityui_test_activeinternal", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "activeinternal()" + }, + { + "label": "internalIdentityUi.ts", + "file_type": "code", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_shared_src_handshake_internalidentityui", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "internalidentityui.ts" + }, + { + "label": "OrchestratorKind", + "file_type": "code", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_internalidentityui_orchestratorkind", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "orchestratorkind" + }, + { + "label": "normalizeDeviceRole()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_internalidentityui_normalizedevicerole", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "normalizedevicerole()" + }, + { + "label": "trimName()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_internalidentityui_trimname", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "trimname()" + }, + { + "label": "sixDigitPairingCodeForUi()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_internalidentityui_sixdigitpairingcodeforui", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "sixdigitpairingcodeforui()" + }, + { + "label": "InternalIdentitySource", + "file_type": "code", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_internalidentityui_internalidentitysource", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "internalidentitysource" + }, + { + "label": "InternalHandshakeRoleSource", + "file_type": "code", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L47", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_internalidentityui_internalhandshakerolesource", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "internalhandshakerolesource" + }, + { + "label": "DerivedInternalHandshakeRoles", + "file_type": "code", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L51", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_internalidentityui_derivedinternalhandshakeroles", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "derivedinternalhandshakeroles" + }, + { + "label": "deriveInternalHandshakeRoles()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L69", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_internalidentityui_deriveinternalhandshakeroles", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "deriveinternalhandshakeroles()" + }, + { + "label": "isInternalHandshake()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L111", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_internalidentityui_isinternalhandshake", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "isinternalhandshake()" + }, + { + "label": "localOrchestratorKind()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L115", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_internalidentityui_localorchestratorkind", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "localorchestratorkind()" + }, + { + "label": "peerOrchestratorKind()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L119", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_internalidentityui_peerorchestratorkind", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "peerorchestratorkind()" + }, + { + "label": "orchestratorUserLabel()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L124", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_internalidentityui_orchestratoruserlabel", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "orchestratoruserlabel()" + }, + { + "label": "shortDeviceIdForUi()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L130", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_internalidentityui_shortdeviceidforui", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "shortdeviceidforui()" + }, + { + "label": "peerCoordinationDeviceId()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L137", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_internalidentityui_peercoordinationdeviceid", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "peercoordinationdeviceid()" + }, + { + "label": "localCoordinationDeviceId()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L143", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_internalidentityui_localcoordinationdeviceid", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "localcoordinationdeviceid()" + }, + { + "label": "peerStableIdentifier()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L153", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_internalidentityui_peerstableidentifier", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "peerstableidentifier()" + }, + { + "label": "peerDeviceDisplayName()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L161", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_internalidentityui_peerdevicedisplayname", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "peerdevicedisplayname()" + }, + { + "label": "peerDisplayComputerName()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L169", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_internalidentityui_peerdisplaycomputername", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "peerdisplaycomputername()" + }, + { + "label": "formatPairingCodeForDisplay()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L178", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_internalidentityui_formatpairingcodefordisplay", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "formatpairingcodefordisplay()" + }, + { + "label": "formatInternalPrimaryLine()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L188", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_internalidentityui_formatinternalprimaryline", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "formatinternalprimaryline()" + }, + { + "label": "formatInternalPairingIdLine()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L198", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_internalidentityui_formatinternalpairingidline", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "formatinternalpairingidline()" + }, + { + "label": "formatInternalListSubtitle()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L211", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_internalidentityui_formatinternallistsubtitle", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "formatinternallistsubtitle()" + }, + { + "label": "formatInternalBeapTargetSummary()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L218", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_internalidentityui_formatinternalbeaptargetsummary", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "formatinternalbeaptargetsummary()" + }, + { + "label": "internalIdentityNeedsAttention()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L226", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_internalidentityui_internalidentityneedsattention", + "community": 79, + "community_name": "Handshake Beapmessages", + "norm_label": "internalidentityneedsattention()" + }, + { + "label": "linkValidation.ts", + "file_type": "code", + "source_file": "packages/shared/src/handshake/linkValidation.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_shared_src_handshake_linkvalidation", + "community": 171, + "community_name": "Handshake #171", + "norm_label": "linkvalidation.ts" + }, + { + "label": "UNSAFE_PROTOCOLS", + "file_type": "code", + "source_file": "packages/shared/src/handshake/linkValidation.ts", + "source_location": "L8", + "_origin": "ast", + "id": "packages_shared_src_handshake_linkvalidation_unsafe_protocols", + "community": 171, + "community_name": "Handshake #171", + "norm_label": "unsafe_protocols" + }, + { + "label": "SAFE_PROTOCOLS", + "file_type": "code", + "source_file": "packages/shared/src/handshake/linkValidation.ts", + "source_location": "L21", + "_origin": "ast", + "id": "packages_shared_src_handshake_linkvalidation_safe_protocols", + "community": 171, + "community_name": "Handshake #171", + "norm_label": "safe_protocols" + }, + { + "label": "validateHsContextLink()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/linkValidation.ts", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_linkvalidation_validatehscontextlink", + "community": 171, + "community_name": "Handshake #171", + "norm_label": "validatehscontextlink()" + }, + { + "label": "linkEntityId()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/linkValidation.ts", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_linkvalidation_linkentityid", + "community": 171, + "community_name": "Handshake #171", + "norm_label": "linkentityid()" + }, + { + "label": "policyUtils.test.ts", + "file_type": "code", + "source_file": "packages/shared/src/handshake/policyUtils.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_shared_src_handshake_policyutils_test", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "policyutils.test.ts" + }, + { + "label": "policyUtils.ts", + "file_type": "code", + "source_file": "packages/shared/src/handshake/policyUtils.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_shared_src_handshake_policyutils", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "policyutils.ts" + }, + { + "label": "LegacyPolicySelection", + "file_type": "code", + "source_file": "packages/shared/src/handshake/policyUtils.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_policyutils_legacypolicyselection", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "legacypolicyselection" + }, + { + "label": "PolicySelectionNew", + "file_type": "code", + "source_file": "packages/shared/src/handshake/policyUtils.ts", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_policyutils_policyselectionnew", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "policyselectionnew" + }, + { + "label": "PolicySelectionInput", + "file_type": "code", + "source_file": "packages/shared/src/handshake/policyUtils.ts", + "source_location": "L25", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_policyutils_policyselectioninput", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "policyselectioninput" + }, + { + "label": "DEFAULT_AI_PROCESSING_MODE", + "file_type": "code", + "source_file": "packages/shared/src/handshake/policyUtils.ts", + "source_location": "L28", + "_origin": "ast", + "id": "packages_shared_src_handshake_policyutils_default_ai_processing_mode", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "default_ai_processing_mode" + }, + { + "label": "legacyToAiProcessingMode()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/policyUtils.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_policyutils_legacytoaiprocessingmode", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "legacytoaiprocessingmode()" + }, + { + "label": "parsePolicyToMode()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/policyUtils.ts", + "source_location": "L50", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_policyutils_parsepolicytomode", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "parsepolicytomode()" + }, + { + "label": "modeToUsageFlags()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/policyUtils.ts", + "source_location": "L67", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_policyutils_modetousageflags", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "modetousageflags()" + }, + { + "label": "modeToLegacy()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/policyUtils.ts", + "source_location": "L84", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_policyutils_modetolegacy", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "modetolegacy()" + }, + { + "label": "serializePolicyForDb()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/policyUtils.ts", + "source_location": "L100", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_policyutils_serializepolicyfordb", + "community": 8, + "community_name": "Handshake IPC Governance", + "norm_label": "serializepolicyfordb()" + }, + { + "label": "receiverEmailValidation.test.ts", + "file_type": "code", + "source_file": "packages/shared/src/handshake/receiverEmailValidation.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_shared_src_handshake_receiveremailvalidation_test", + "community": 188, + "community_name": "Handshake #188", + "norm_label": "receiveremailvalidation.test.ts" + }, + { + "label": "receiverEmailValidation.ts", + "file_type": "code", + "source_file": "packages/shared/src/handshake/receiverEmailValidation.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_shared_src_handshake_receiveremailvalidation", + "community": 188, + "community_name": "Handshake #188", + "norm_label": "receiveremailvalidation.ts" + }, + { + "label": "ReceiverEmailValidationResult", + "file_type": "code", + "source_file": "packages/shared/src/handshake/receiverEmailValidation.ts", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_receiveremailvalidation_receiveremailvalidationresult", + "community": 188, + "community_name": "Handshake #188", + "norm_label": "receiveremailvalidationresult" + }, + { + "label": "normalizeHandshakeEmail()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/receiverEmailValidation.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_receiveremailvalidation_normalizehandshakeemail", + "community": 188, + "community_name": "Handshake #188", + "norm_label": "normalizehandshakeemail()" + }, + { + "label": "isSameAccountHandshakeEmails()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/receiverEmailValidation.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_receiveremailvalidation_issameaccounthandshakeemails", + "community": 188, + "community_name": "Handshake #188", + "norm_label": "issameaccounthandshakeemails()" + }, + { + "label": "toEmailArray()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/receiverEmailValidation.ts", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_receiveremailvalidation_toemailarray", + "community": 188, + "community_name": "Handshake #188", + "norm_label": "toemailarray()" + }, + { + "label": "validateReceiverEmail()", + "file_type": "code", + "source_file": "packages/shared/src/handshake/receiverEmailValidation.ts", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_receiveremailvalidation_validatereceiveremail", + "community": 188, + "community_name": "Handshake #188", + "norm_label": "validatereceiveremail()" + }, + { + "label": "shared/src/handshake/types.ts", + "file_type": "code", + "source_file": "packages/shared/src/handshake/types.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_shared_src_handshake_types", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "shared/src/handshake/types.ts" + }, + { + "label": "HandshakeTier", + "file_type": "code", + "source_file": "packages/shared/src/handshake/types.ts", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_types_handshaketier", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "handshaketier" + }, + { + "label": "SharingMode", + "file_type": "code", + "source_file": "packages/shared/src/handshake/types.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_types_sharingmode", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "sharingmode" + }, + { + "label": "ActionType", + "file_type": "code", + "source_file": "packages/shared/src/handshake/types.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_types_actiontype", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "actiontype" + }, + { + "label": "HandshakeState", + "file_type": "code", + "source_file": "packages/shared/src/handshake/types.ts", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_types_handshakestate", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "handshakestate" + }, + { + "label": "AiProcessingMode", + "file_type": "code", + "source_file": "packages/shared/src/handshake/types.ts", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_types_aiprocessingmode", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "aiprocessingmode" + }, + { + "label": "PolicySelection", + "file_type": "code", + "source_file": "packages/shared/src/handshake/types.ts", + "source_location": "L31", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_types_policyselection", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "policyselection" + }, + { + "label": "PolicyMode", + "file_type": "code", + "source_file": "packages/shared/src/handshake/types.ts", + "source_location": "L35", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_types_policymode", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "policymode" + }, + { + "label": "ContextItemPolicy", + "file_type": "code", + "source_file": "packages/shared/src/handshake/types.ts", + "source_location": "L38", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_types_contextitempolicy", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "contextitempolicy" + }, + { + "label": "ProfileContextItem", + "file_type": "code", + "source_file": "packages/shared/src/handshake/types.ts", + "source_location": "L44", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_types_profilecontextitem", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "profilecontextitem" + }, + { + "label": "ContextBlockWithPolicy", + "file_type": "code", + "source_file": "packages/shared/src/handshake/types.ts", + "source_location": "L51", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_types_contextblockwithpolicy", + "community": 188, + "community_name": "Handshake #188", + "norm_label": "contextblockwithpolicy" + }, + { + "label": "HandshakeIPCRequest", + "file_type": "code", + "source_file": "packages/shared/src/handshake/types.ts", + "source_location": "L63", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_types_handshakeipcrequest", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "handshakeipcrequest" + }, + { + "label": "HandshakeIPCResponse", + "file_type": "code", + "source_file": "packages/shared/src/handshake/types.ts", + "source_location": "L72", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_types_handshakeipcresponse", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "handshakeipcresponse" + }, + { + "label": "HandshakeIPCEvent", + "file_type": "code", + "source_file": "packages/shared/src/handshake/types.ts", + "source_location": "L81", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_handshake_types_handshakeipcevent", + "community": 54, + "community_name": "Handshake Policy", + "norm_label": "handshakeipcevent" + }, + { + "label": "shared/src/index.ts", + "file_type": "code", + "source_file": "packages/shared/src/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_shared_src_index", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": "shared/src/index.ts" + }, + { + "label": "APP_NAME", + "file_type": "code", + "source_file": "packages/shared/src/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_shared_src_index_app_name", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": "app_name" + }, + { + "label": "src/ingestion/index.ts", + "file_type": "code", + "source_file": "packages/shared/src/ingestion/index.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_shared_src_ingestion_index", + "community": 395, + "community_name": "Ingestion", + "norm_label": "src/ingestion/index.ts" + }, + { + "label": "src/ingestion/types.ts", + "file_type": "code", + "source_file": "packages/shared/src/ingestion/types.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_shared_src_ingestion_types", + "community": 395, + "community_name": "Ingestion", + "norm_label": "src/ingestion/types.ts" + }, + { + "label": "SourceType", + "file_type": "code", + "source_file": "packages/shared/src/ingestion/types.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_ingestion_types_sourcetype", + "community": 395, + "community_name": "Ingestion", + "norm_label": "sourcetype" + }, + { + "label": "OriginClassification", + "file_type": "code", + "source_file": "packages/shared/src/ingestion/types.ts", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_ingestion_types_originclassification", + "community": 395, + "community_name": "Ingestion", + "norm_label": "originclassification" + }, + { + "label": "InputClassification", + "file_type": "code", + "source_file": "packages/shared/src/ingestion/types.ts", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_ingestion_types_inputclassification", + "community": 395, + "community_name": "Ingestion", + "norm_label": "inputclassification" + }, + { + "label": "DistributionTarget", + "file_type": "code", + "source_file": "packages/shared/src/ingestion/types.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_ingestion_types_distributiontarget", + "community": 395, + "community_name": "Ingestion", + "norm_label": "distributiontarget" + }, + { + "label": "ValidationReasonCode", + "file_type": "code", + "source_file": "packages/shared/src/ingestion/types.ts", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_ingestion_types_validationreasoncode", + "community": 395, + "community_name": "Ingestion", + "norm_label": "validationreasoncode" + }, + { + "label": "IngestionIPCResult", + "file_type": "code", + "source_file": "packages/shared/src/ingestion/types.ts", + "source_location": "L29", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_ingestion_types_ingestionipcresult", + "community": 395, + "community_name": "Ingestion", + "norm_label": "ingestionipcresult" + }, + { + "label": "sanitizeReturnTo.test.ts", + "file_type": "code", + "source_file": "packages/shared/src/security/sanitizeReturnTo.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_shared_src_security_sanitizereturnto_test", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": "sanitizereturnto.test.ts" + }, + { + "label": "sanitizeReturnTo.ts", + "file_type": "code", + "source_file": "packages/shared/src/security/sanitizeReturnTo.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_shared_src_security_sanitizereturnto", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": "sanitizereturnto.ts" + }, + { + "label": "DANGEROUS_SCHEMES", + "file_type": "code", + "source_file": "packages/shared/src/security/sanitizeReturnTo.ts", + "source_location": "L27", + "_origin": "ast", + "id": "packages_shared_src_security_sanitizereturnto_dangerous_schemes", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": "dangerous_schemes" + }, + { + "label": "SanitizeReturnToConfig", + "file_type": "code", + "source_file": "packages/shared/src/security/sanitizeReturnTo.ts", + "source_location": "L47", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_security_sanitizereturnto_sanitizereturntoconfig", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": "sanitizereturntoconfig" + }, + { + "label": "SanitizeResult", + "file_type": "code", + "source_file": "packages/shared/src/security/sanitizeReturnTo.ts", + "source_location": "L70", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_security_sanitizereturnto_sanitizeresult", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": "sanitizeresult" + }, + { + "label": "sanitizeReturnTo()", + "file_type": "code", + "source_file": "packages/shared/src/security/sanitizeReturnTo.ts", + "source_location": "L99", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_security_sanitizereturnto_sanitizereturnto", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": "sanitizereturnto()" + }, + { + "label": "sanitizeReturnToSimple()", + "file_type": "code", + "source_file": "packages/shared/src/security/sanitizeReturnTo.ts", + "source_location": "L200", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_security_sanitizereturnto_sanitizereturntosimple", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": "sanitizereturntosimple()" + }, + { + "label": "isReturnToSafe()", + "file_type": "code", + "source_file": "packages/shared/src/security/sanitizeReturnTo.ts", + "source_location": "L211", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_security_sanitizereturnto_isreturntosafe", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": "isreturntosafe()" + }, + { + "label": "StorageAdapter.ts", + "file_type": "code", + "source_file": "packages/shared/src/storage/StorageAdapter.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_shared_src_storage_storageadapter", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": "storageadapter.ts" + }, + { + "label": "StorageAdapter", + "file_type": "code", + "source_file": "packages/shared/src/storage/StorageAdapter.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_storage_storageadapter_storageadapter", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": "storageadapter" + }, + { + "label": ".get()", + "file_type": "code", + "source_file": "packages/shared/src/storage/StorageAdapter.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_storage_storageadapter_storageadapter_get", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": ".get()" + }, + { + "label": ".set()", + "file_type": "code", + "source_file": "packages/shared/src/storage/StorageAdapter.ts", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_storage_storageadapter_storageadapter_set", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": ".set()" + }, + { + "label": ".getAll()", + "file_type": "code", + "source_file": "packages/shared/src/storage/StorageAdapter.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_storage_storageadapter_storageadapter_getall", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": ".getall()" + }, + { + "label": ".setAll()", + "file_type": "code", + "source_file": "packages/shared/src/storage/StorageAdapter.ts", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_storage_storageadapter_storageadapter_setall", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": ".setall()" + }, + { + "label": ".remove()", + "file_type": "code", + "source_file": "packages/shared/src/storage/StorageAdapter.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_storage_storageadapter_storageadapter_remove", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": ".remove()" + }, + { + "label": "AdapterResult", + "file_type": "code", + "source_file": "packages/shared/src/storage/StorageAdapter.ts", + "source_location": "L34", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_storage_storageadapter_adapterresult", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": "adapterresult" + }, + { + "label": "BackendConfig", + "file_type": "code", + "source_file": "packages/shared/src/storage/StorageAdapter.ts", + "source_location": "L44", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_storage_storageadapter_backendconfig", + "community": 62, + "community_name": "Storage Sharedextension", + "norm_label": "backendconfig" + }, + { + "label": "fieldTaxonomy.ts", + "file_type": "code", + "source_file": "packages/shared/src/vault/fieldTaxonomy.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_shared_src_vault_fieldtaxonomy", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "fieldtaxonomy.ts" + }, + { + "label": "VaultSection", + "file_type": "code", + "source_file": "packages/shared/src/vault/fieldTaxonomy.ts", + "source_location": "L34", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_fieldtaxonomy_vaultsection", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "vaultsection" + }, + { + "label": "SECTION_META", + "file_type": "code", + "source_file": "packages/shared/src/vault/fieldTaxonomy.ts", + "source_location": "L37", + "_origin": "ast", + "id": "packages_shared_src_vault_fieldtaxonomy_section_meta", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "section_meta" + }, + { + "label": "FieldKind", + "file_type": "code", + "source_file": "packages/shared/src/vault/fieldTaxonomy.ts", + "source_location": "L50", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_fieldtaxonomy_fieldkind", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "fieldkind" + }, + { + "label": "FIELD_SECTION", + "file_type": "code", + "source_file": "packages/shared/src/vault/fieldTaxonomy.ts", + "source_location": "L103", + "_origin": "ast", + "id": "packages_shared_src_vault_fieldtaxonomy_field_section", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "field_section" + }, + { + "label": "LEGACY_KEY_MAP", + "file_type": "code", + "source_file": "packages/shared/src/vault/fieldTaxonomy.ts", + "source_location": "L162", + "_origin": "ast", + "id": "packages_shared_src_vault_fieldtaxonomy_legacy_key_map", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "legacy_key_map" + }, + { + "label": "DOMSignal", + "file_type": "code", + "source_file": "packages/shared/src/vault/fieldTaxonomy.ts", + "source_location": "L220", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_fieldtaxonomy_domsignal", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "domsignal" + }, + { + "label": "FieldSignalSpec", + "file_type": "code", + "source_file": "packages/shared/src/vault/fieldTaxonomy.ts", + "source_location": "L257", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_fieldtaxonomy_fieldsignalspec", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "fieldsignalspec" + }, + { + "label": "CONFIDENCE_THRESHOLD", + "file_type": "code", + "source_file": "packages/shared/src/vault/fieldTaxonomy.ts", + "source_location": "L285", + "_origin": "ast", + "id": "packages_shared_src_vault_fieldtaxonomy_confidence_threshold", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "confidence_threshold" + }, + { + "label": "CONFIDENCE_HINT_THRESHOLD", + "file_type": "code", + "source_file": "packages/shared/src/vault/fieldTaxonomy.ts", + "source_location": "L291", + "_origin": "ast", + "id": "packages_shared_src_vault_fieldtaxonomy_confidence_hint_threshold", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "confidence_hint_threshold" + }, + { + "label": "MAX_SIGNALS_PER_ELEMENT", + "file_type": "code", + "source_file": "packages/shared/src/vault/fieldTaxonomy.ts", + "source_location": "L297", + "_origin": "ast", + "id": "packages_shared_src_vault_fieldtaxonomy_max_signals_per_element", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "max_signals_per_element" + }, + { + "label": "KW", + "file_type": "code", + "source_file": "packages/shared/src/vault/fieldTaxonomy.ts", + "source_location": "L304", + "_origin": "ast", + "id": "packages_shared_src_vault_fieldtaxonomy_kw", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "kw" + }, + { + "label": "RX", + "file_type": "code", + "source_file": "packages/shared/src/vault/fieldTaxonomy.ts", + "source_location": "L348", + "_origin": "ast", + "id": "packages_shared_src_vault_fieldtaxonomy_rx", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "rx" + }, + { + "label": "ANTI_SIGNALS", + "file_type": "code", + "source_file": "packages/shared/src/vault/fieldTaxonomy.ts", + "source_location": "L387", + "_origin": "ast", + "id": "packages_shared_src_vault_fieldtaxonomy_anti_signals", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "anti_signals" + }, + { + "label": "FormContext", + "file_type": "code", + "source_file": "packages/shared/src/vault/fieldTaxonomy.ts", + "source_location": "L410", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_fieldtaxonomy_formcontext", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "formcontext" + }, + { + "label": "FORM_CONTEXT_SIGNALS", + "file_type": "code", + "source_file": "packages/shared/src/vault/fieldTaxonomy.ts", + "source_location": "L412", + "_origin": "ast", + "id": "packages_shared_src_vault_fieldtaxonomy_form_context_signals", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "form_context_signals" + }, + { + "label": "FIELD_REGISTRY", + "file_type": "code", + "source_file": "packages/shared/src/vault/fieldTaxonomy.ts", + "source_location": "L482", + "_origin": "ast", + "id": "packages_shared_src_vault_fieldtaxonomy_field_registry", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "field_registry" + }, + { + "label": "FIELD_BY_KIND", + "file_type": "code", + "source_file": "packages/shared/src/vault/fieldTaxonomy.ts", + "source_location": "L1152", + "_origin": "ast", + "id": "packages_shared_src_vault_fieldtaxonomy_field_by_kind", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "field_by_kind" + }, + { + "label": "FILLABLE_FIELDS", + "file_type": "code", + "source_file": "packages/shared/src/vault/fieldTaxonomy.ts", + "source_location": "L1157", + "_origin": "ast", + "id": "packages_shared_src_vault_fieldtaxonomy_fillable_fields", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "fillable_fields" + }, + { + "label": "FIELDS_BY_SECTION", + "file_type": "code", + "source_file": "packages/shared/src/vault/fieldTaxonomy.ts", + "source_location": "L1161", + "_origin": "ast", + "id": "packages_shared_src_vault_fieldtaxonomy_fields_by_section", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "fields_by_section" + }, + { + "label": "FieldEntry", + "file_type": "code", + "source_file": "packages/shared/src/vault/fieldTaxonomy.ts", + "source_location": "L1181", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_fieldtaxonomy_fieldentry", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "fieldentry" + }, + { + "label": "VaultProfile", + "file_type": "code", + "source_file": "packages/shared/src/vault/fieldTaxonomy.ts", + "source_location": "L1208", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_fieldtaxonomy_vaultprofile", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "vaultprofile" + }, + { + "label": "AutofillSectionToggles", + "file_type": "code", + "source_file": "packages/shared/src/vault/fieldTaxonomy.ts", + "source_location": "L1232", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_fieldtaxonomy_autofillsectiontoggles", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "autofillsectiontoggles" + }, + { + "label": "DEFAULT_SECTION_TOGGLES", + "file_type": "code", + "source_file": "packages/shared/src/vault/fieldTaxonomy.ts", + "source_location": "L1240", + "_origin": "ast", + "id": "packages_shared_src_vault_fieldtaxonomy_default_section_toggles", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "default_section_toggles" + }, + { + "label": "FieldDetectionResult", + "file_type": "code", + "source_file": "packages/shared/src/vault/fieldTaxonomy.ts", + "source_location": "L1254", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_fieldtaxonomy_fielddetectionresult", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "fielddetectionresult" + }, + { + "label": "PageScanResult", + "file_type": "code", + "source_file": "packages/shared/src/vault/fieldTaxonomy.ts", + "source_location": "L1278", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_fieldtaxonomy_pagescanresult", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "pagescanresult" + }, + { + "label": "FIELD_TAXONOMY_VERSION", + "file_type": "code", + "source_file": "packages/shared/src/vault/fieldTaxonomy.ts", + "source_location": "L1322", + "_origin": "ast", + "id": "packages_shared_src_vault_fieldtaxonomy_field_taxonomy_version", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "field_taxonomy_version" + }, + { + "label": "haMode.ts", + "file_type": "code", + "source_file": "packages/shared/src/vault/haMode.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_shared_src_vault_hamode", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "hamode.ts" + }, + { + "label": "HAConfig", + "file_type": "code", + "source_file": "packages/shared/src/vault/haMode.ts", + "source_location": "L48", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_hamode_haconfig", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "haconfig" + }, + { + "label": "HA_CONFIG", + "file_type": "code", + "source_file": "packages/shared/src/vault/haMode.ts", + "source_location": "L105", + "_origin": "ast", + "id": "packages_shared_src_vault_hamode_ha_config", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "ha_config" + }, + { + "label": "HAState", + "file_type": "code", + "source_file": "packages/shared/src/vault/haMode.ts", + "source_location": "L164", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_hamode_hastate", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "hastate" + }, + { + "label": "HAModeState", + "file_type": "code", + "source_file": "packages/shared/src/vault/haMode.ts", + "source_location": "L169", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_hamode_hamodestate", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "hamodestate" + }, + { + "label": "DEFAULT_HA_STATE", + "file_type": "code", + "source_file": "packages/shared/src/vault/haMode.ts", + "source_location": "L194", + "_origin": "ast", + "id": "packages_shared_src_vault_hamode_default_ha_state", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "default_ha_state" + }, + { + "label": "INITIAL_HA_STATE_OFF", + "file_type": "code", + "source_file": "packages/shared/src/vault/haMode.ts", + "source_location": "L207", + "_origin": "ast", + "id": "packages_shared_src_vault_hamode_initial_ha_state_off", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "initial_ha_state_off" + }, + { + "label": "isHAActive()", + "file_type": "code", + "source_file": "packages/shared/src/vault/haMode.ts", + "source_location": "L221", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_vault_hamode_ishaactive", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "ishaactive()" + }, + { + "label": "isHALocked()", + "file_type": "code", + "source_file": "packages/shared/src/vault/haMode.ts", + "source_location": "L227", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_vault_hamode_ishalocked", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "ishalocked()" + }, + { + "label": "canDeactivateHA()", + "file_type": "code", + "source_file": "packages/shared/src/vault/haMode.ts", + "source_location": "L233", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_vault_hamode_candeactivateha", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "candeactivateha()" + }, + { + "label": "HATransitionResult", + "file_type": "code", + "source_file": "packages/shared/src/vault/haMode.ts", + "source_location": "L243", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_hamode_hatransitionresult", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "hatransitionresult" + }, + { + "label": "activateHA()", + "file_type": "code", + "source_file": "packages/shared/src/vault/haMode.ts", + "source_location": "L259", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_vault_hamode_activateha", + "community": 176, + "community_name": "Vault #176", + "norm_label": "activateha()" + }, + { + "label": "deactivateHA()", + "file_type": "code", + "source_file": "packages/shared/src/vault/haMode.ts", + "source_location": "L285", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_vault_hamode_deactivateha", + "community": 176, + "community_name": "Vault #176", + "norm_label": "deactivateha()" + }, + { + "label": "lockHA()", + "file_type": "code", + "source_file": "packages/shared/src/vault/haMode.ts", + "source_location": "L317", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_vault_hamode_lockha", + "community": 176, + "community_name": "Vault #176", + "norm_label": "lockha()" + }, + { + "label": "unlockHA()", + "file_type": "code", + "source_file": "packages/shared/src/vault/haMode.ts", + "source_location": "L347", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_vault_hamode_unlockha", + "community": 176, + "community_name": "Vault #176", + "norm_label": "unlockha()" + }, + { + "label": "HAGatedAction", + "file_type": "code", + "source_file": "packages/shared/src/vault/haMode.ts", + "source_location": "L401", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_hamode_hagatedaction", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "hagatedaction" + }, + { + "label": "haAllows()", + "file_type": "code", + "source_file": "packages/shared/src/vault/haMode.ts", + "source_location": "L421", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_vault_hamode_haallows", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "haallows()" + }, + { + "label": "haDenyReason()", + "file_type": "code", + "source_file": "packages/shared/src/vault/haMode.ts", + "source_location": "L434", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_vault_hamode_hadenyreason", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "hadenyreason()" + }, + { + "label": "HA_IPC_ALLOWLIST", + "file_type": "code", + "source_file": "packages/shared/src/vault/haMode.ts", + "source_location": "L458", + "_origin": "ast", + "id": "packages_shared_src_vault_hamode_ha_ipc_allowlist", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "ha_ipc_allowlist" + }, + { + "label": "haAllowsIPC()", + "file_type": "code", + "source_file": "packages/shared/src/vault/haMode.ts", + "source_location": "L472", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_vault_hamode_haallowsipc", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "haallowsipc()" + }, + { + "label": "HA_TIER_OVERRIDES", + "file_type": "code", + "source_file": "packages/shared/src/vault/haMode.ts", + "source_location": "L491", + "_origin": "ast", + "id": "packages_shared_src_vault_hamode_ha_tier_overrides", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "ha_tier_overrides" + }, + { + "label": "HAVerificationItem", + "file_type": "code", + "source_file": "packages/shared/src/vault/haMode.ts", + "source_location": "L526", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_hamode_haverificationitem", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "haverificationitem" + }, + { + "label": "verifyHAEnforcement()", + "file_type": "code", + "source_file": "packages/shared/src/vault/haMode.ts", + "source_location": "L533", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_vault_hamode_verifyhaenforcement", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "verifyhaenforcement()" + }, + { + "label": "insertionPipeline.ts", + "file_type": "code", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_shared_src_vault_insertionpipeline", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "insertionpipeline.ts" + }, + { + "label": "FieldCandidate", + "file_type": "code", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L215", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_insertionpipeline_fieldcandidate", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "fieldcandidate" + }, + { + "label": "MatchResult", + "file_type": "code", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L250", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_insertionpipeline_matchresult", + "community": 50, + "community_name": "Vault Autofill Critical Jobs", + "norm_label": "matchresult" + }, + { + "label": "FiredSignal", + "file_type": "code", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L279", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_insertionpipeline_firedsignal", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "firedsignal" + }, + { + "label": "DOMFingerprint", + "file_type": "code", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L328", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_insertionpipeline_domfingerprint", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "domfingerprint" + }, + { + "label": "DOMFingerprintProperties", + "file_type": "code", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L345", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_insertionpipeline_domfingerprintproperties", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "domfingerprintproperties" + }, + { + "label": "FingerprintValidation", + "file_type": "code", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L360", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_insertionpipeline_fingerprintvalidation", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "fingerprintvalidation" + }, + { + "label": "FingerprintInvalidReason", + "file_type": "code", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L366", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_insertionpipeline_fingerprintinvalidreason", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "fingerprintinvalidreason" + }, + { + "label": "OverlaySession", + "file_type": "code", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L387", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_insertionpipeline_overlaysession", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "overlaysession" + }, + { + "label": "OverlaySessionState", + "file_type": "code", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L424", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_insertionpipeline_overlaysessionstate", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "overlaysessionstate" + }, + { + "label": "OverlayTarget", + "file_type": "code", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L432", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_insertionpipeline_overlaytarget", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "overlaytarget" + }, + { + "label": "CommitResult", + "file_type": "code", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L459", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_insertionpipeline_commitresult", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "commitresult" + }, + { + "label": "CommitFieldResult", + "file_type": "code", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L474", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_insertionpipeline_commitfieldresult", + "community": 59, + "community_name": "Vault Autofill #59", + "norm_label": "commitfieldresult" + }, + { + "label": "CommitError", + "file_type": "code", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L488", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_insertionpipeline_commiterror", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "commiterror" + }, + { + "label": "CommitErrorCode", + "file_type": "code", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L495", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_insertionpipeline_commiterrorcode", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "commiterrorcode" + }, + { + "label": "SafetyCheckResult", + "file_type": "code", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L529", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_insertionpipeline_safetycheckresult", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "safetycheckresult" + }, + { + "label": "SafetyCheck", + "file_type": "code", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L537", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_insertionpipeline_safetycheck", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "safetycheck" + }, + { + "label": "SafetyCheckName", + "file_type": "code", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L548", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_insertionpipeline_safetycheckname", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "safetycheckname" + }, + { + "label": "OverlayRenderConfig", + "file_type": "code", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L570", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_insertionpipeline_overlayrenderconfig", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "overlayrenderconfig" + }, + { + "label": "DEFAULT_OVERLAY_CONFIG", + "file_type": "code", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L597", + "_origin": "ast", + "id": "packages_shared_src_vault_insertionpipeline_default_overlay_config", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "default_overlay_config" + }, + { + "label": "MaskingConfig", + "file_type": "code", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L667", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_insertionpipeline_maskingconfig", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "maskingconfig" + }, + { + "label": "DEFAULT_MASKING", + "file_type": "code", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L699", + "_origin": "ast", + "id": "packages_shared_src_vault_insertionpipeline_default_masking", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "default_masking" + }, + { + "label": "computeDisplayValue()", + "file_type": "code", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L716", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_vault_insertionpipeline_computedisplayvalue", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "computedisplayvalue()" + }, + { + "label": "IFieldScanner", + "file_type": "code", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L756", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_insertionpipeline_ifieldscanner", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": "ifieldscanner" + }, + { + "label": ".scan()", + "file_type": "code", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L761", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_vault_insertionpipeline_ifieldscanner_scan", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": ".scan()" + }, + { + "label": ".rescan()", + "file_type": "code", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L766", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_vault_insertionpipeline_ifieldscanner_rescan", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": ".rescan()" + }, + { + "label": ".scoreElement()", + "file_type": "code", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L771", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_vault_insertionpipeline_ifieldscanner_scoreelement", + "community": 28, + "community_name": "Autofill DataVault", + "norm_label": ".scoreelement()" + }, + { + "label": "IOverlayManager", + "file_type": "code", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L778", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_insertionpipeline_ioverlaymanager", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "ioverlaymanager" + }, + { + "label": ".createSession()", + "file_type": "code", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L783", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_vault_insertionpipeline_ioverlaymanager_createsession", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": ".createsession()" + }, + { + "label": ".show()", + "file_type": "code", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L792", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_vault_insertionpipeline_ioverlaymanager_show", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": ".show()" + }, + { + "label": ".dismiss()", + "file_type": "code", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L797", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_vault_insertionpipeline_ioverlaymanager_dismiss", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": ".dismiss()" + }, + { + "label": ".getActiveSession()", + "file_type": "code", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L802", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_vault_insertionpipeline_ioverlaymanager_getactivesession", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": ".getactivesession()" + }, + { + "label": ".teardownAll()", + "file_type": "code", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L807", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_vault_insertionpipeline_ioverlaymanager_teardownall", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": ".teardownall()" + }, + { + "label": "ICommitter", + "file_type": "code", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L814", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_insertionpipeline_icommitter", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "icommitter" + }, + { + "label": ".commit()", + "file_type": "code", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L826", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_vault_insertionpipeline_icommitter_commit", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": ".commit()" + }, + { + "label": "IQuickSelect", + "file_type": "code", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L833", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_insertionpipeline_iquickselect", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "iquickselect" + }, + { + "label": ".open()", + "file_type": "code", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L838", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_vault_insertionpipeline_iquickselect_open", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": ".open()" + }, + { + "label": ".close()", + "file_type": "code", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L843", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_vault_insertionpipeline_iquickselect_close", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": ".close()" + }, + { + "label": ".isOpen()", + "file_type": "code", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L848", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_vault_insertionpipeline_iquickselect_isopen", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": ".isopen()" + }, + { + "label": "ISubmitWatcher", + "file_type": "code", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L855", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_insertionpipeline_isubmitwatcher", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "isubmitwatcher" + }, + { + "label": ".start()", + "file_type": "code", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L859", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_vault_insertionpipeline_isubmitwatcher_start", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": ".start()" + }, + { + "label": ".stop()", + "file_type": "code", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L864", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_vault_insertionpipeline_isubmitwatcher_stop", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": ".stop()" + }, + { + "label": ".onCredentialSubmit()", + "file_type": "code", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L869", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_vault_insertionpipeline_isubmitwatcher_oncredentialsubmit", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": ".oncredentialsubmit()" + }, + { + "label": "ExtractedCredentials", + "file_type": "code", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L875", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_insertionpipeline_extractedcredentials", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "extractedcredentials" + }, + { + "label": "AutofillMessage", + "file_type": "code", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L903", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_insertionpipeline_autofillmessage", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "autofillmessage" + }, + { + "label": "AutofillResponse", + "file_type": "code", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L913", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_insertionpipeline_autofillresponse", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "autofillresponse" + }, + { + "label": "MAX_SESSION_TIMEOUT_MS", + "file_type": "code", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L924", + "_origin": "ast", + "id": "packages_shared_src_vault_insertionpipeline_max_session_timeout_ms", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "max_session_timeout_ms" + }, + { + "label": "DEFAULT_SESSION_TIMEOUT_MS", + "file_type": "code", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L927", + "_origin": "ast", + "id": "packages_shared_src_vault_insertionpipeline_default_session_timeout_ms", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "default_session_timeout_ms" + }, + { + "label": "FINGERPRINT_MAX_AGE_MS", + "file_type": "code", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L930", + "_origin": "ast", + "id": "packages_shared_src_vault_insertionpipeline_fingerprint_max_age_ms", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "fingerprint_max_age_ms" + }, + { + "label": "RECT_TOLERANCE_PX", + "file_type": "code", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L933", + "_origin": "ast", + "id": "packages_shared_src_vault_insertionpipeline_rect_tolerance_px", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "rect_tolerance_px" + }, + { + "label": "MAX_ACTIVE_SESSIONS", + "file_type": "code", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L936", + "_origin": "ast", + "id": "packages_shared_src_vault_insertionpipeline_max_active_sessions", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "max_active_sessions" + }, + { + "label": "MUTATION_RESCAN_DEBOUNCE_MS", + "file_type": "code", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L939", + "_origin": "ast", + "id": "packages_shared_src_vault_insertionpipeline_mutation_rescan_debounce_ms", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "mutation_rescan_debounce_ms" + }, + { + "label": "SCAN_THROTTLE_MS", + "file_type": "code", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L942", + "_origin": "ast", + "id": "packages_shared_src_vault_insertionpipeline_scan_throttle_ms", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "scan_throttle_ms" + }, + { + "label": "VALID_TARGET_TAGS", + "file_type": "code", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L948", + "_origin": "ast", + "id": "packages_shared_src_vault_insertionpipeline_valid_target_tags", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "valid_target_tags" + }, + { + "label": "BLOCKED_INPUT_TYPES", + "file_type": "code", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L954", + "_origin": "ast", + "id": "packages_shared_src_vault_insertionpipeline_blocked_input_types", + "community": 23, + "community_name": "Web MCP Insertion", + "norm_label": "blocked_input_types" + }, + { + "label": "originPolicy.ts", + "file_type": "code", + "source_file": "packages/shared/src/vault/originPolicy.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_shared_src_vault_originpolicy", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "originpolicy.ts" + }, + { + "label": "ParsedOrigin", + "file_type": "code", + "source_file": "packages/shared/src/vault/originPolicy.ts", + "source_location": "L50", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_originpolicy_parsedorigin", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "parsedorigin" + }, + { + "label": "SubdomainPolicy", + "file_type": "code", + "source_file": "packages/shared/src/vault/originPolicy.ts", + "source_location": "L71", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_originpolicy_subdomainpolicy", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "subdomainpolicy" + }, + { + "label": "OriginMatchResult", + "file_type": "code", + "source_file": "packages/shared/src/vault/originPolicy.ts", + "source_location": "L76", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_originpolicy_originmatchresult", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "originmatchresult" + }, + { + "label": "DEFAULT_PORTS", + "file_type": "code", + "source_file": "packages/shared/src/vault/originPolicy.ts", + "source_location": "L90", + "_origin": "ast", + "id": "packages_shared_src_vault_originpolicy_default_ports", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "default_ports" + }, + { + "label": "PUBLIC_SUFFIXES", + "file_type": "code", + "source_file": "packages/shared/src/vault/originPolicy.ts", + "source_location": "L101", + "_origin": "ast", + "id": "packages_shared_src_vault_originpolicy_public_suffixes", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "public_suffixes" + }, + { + "label": "parseOrigin()", + "file_type": "code", + "source_file": "packages/shared/src/vault/originPolicy.ts", + "source_location": "L150", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_vault_originpolicy_parseorigin", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "parseorigin()" + }, + { + "label": "normalizeToOrigin()", + "file_type": "code", + "source_file": "packages/shared/src/vault/originPolicy.ts", + "source_location": "L190", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_vault_originpolicy_normalizetoorigin", + "community": 77, + "community_name": "Vault Autofill #77", + "norm_label": "normalizetoorigin()" + }, + { + "label": "registrableDomain()", + "file_type": "code", + "source_file": "packages/shared/src/vault/originPolicy.ts", + "source_location": "L203", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_vault_originpolicy_registrabledomain", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "registrabledomain()" + }, + { + "label": "OriginMatchOptions", + "file_type": "code", + "source_file": "packages/shared/src/vault/originPolicy.ts", + "source_location": "L224", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_originpolicy_originmatchoptions", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "originmatchoptions" + }, + { + "label": "matchOrigin()", + "file_type": "code", + "source_file": "packages/shared/src/vault/originPolicy.ts", + "source_location": "L252", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_vault_originpolicy_matchorigin", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "matchorigin()" + }, + { + "label": "isPublicSuffix()", + "file_type": "code", + "source_file": "packages/shared/src/vault/originPolicy.ts", + "source_location": "L336", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_vault_originpolicy_ispublicsuffix", + "community": 22, + "community_name": "QSO Remap Engine", + "norm_label": "ispublicsuffix()" + }, + { + "label": "RelevanceTier", + "file_type": "code", + "source_file": "packages/shared/src/vault/originPolicy.ts", + "source_location": "L353", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_originpolicy_relevancetier", + "community": 118, + "community_name": "Vault Autofill #118", + "norm_label": "relevancetier" + }, + { + "label": "classifyRelevance()", + "file_type": "code", + "source_file": "packages/shared/src/vault/originPolicy.ts", + "source_location": "L368", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_vault_originpolicy_classifyrelevance", + "community": 36, + "community_name": "Vault Autofill", + "norm_label": "classifyrelevance()" + }, + { + "label": "relevanceWeight()", + "file_type": "code", + "source_file": "packages/shared/src/vault/originPolicy.ts", + "source_location": "L402", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_vault_originpolicy_relevanceweight", + "community": 118, + "community_name": "Vault Autofill #118", + "norm_label": "relevanceweight()" + }, + { + "label": "vaultCapabilities.test.ts", + "file_type": "code", + "source_file": "packages/shared/src/vault/vaultCapabilities.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_shared_src_vault_vaultcapabilities_test", + "community": 210, + "community_name": "Vault #210", + "norm_label": "vaultcapabilities.test.ts" + }, + { + "label": "vaultCapabilities.ts", + "file_type": "code", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_shared_src_vault_vaultcapabilities", + "community": 210, + "community_name": "Vault #210", + "norm_label": "vaultcapabilities.ts" + }, + { + "label": "VaultRecordType", + "file_type": "code", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L30", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_vaultcapabilities_vaultrecordtype", + "community": 210, + "community_name": "Vault #210", + "norm_label": "vaultrecordtype" + }, + { + "label": "VAULT_RECORD_TYPES", + "file_type": "code", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L40", + "_origin": "ast", + "id": "packages_shared_src_vault_vaultcapabilities_vault_record_types", + "community": 210, + "community_name": "Vault #210", + "norm_label": "vault_record_types" + }, + { + "label": "VaultTier", + "file_type": "code", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L59", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_vaultcapabilities_vaulttier", + "community": 63, + "community_name": "Vault", + "norm_label": "vaulttier" + }, + { + "label": "TIER_LEVEL", + "file_type": "code", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L70", + "_origin": "ast", + "id": "packages_shared_src_vault_vaultcapabilities_tier_level", + "community": 210, + "community_name": "Vault #210", + "norm_label": "tier_level" + }, + { + "label": "RECORD_TYPE_MIN_TIER", + "file_type": "code", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L88", + "_origin": "ast", + "id": "packages_shared_src_vault_vaultcapabilities_record_type_min_tier", + "community": 210, + "community_name": "Vault #210", + "norm_label": "record_type_min_tier" + }, + { + "label": "RECORD_TYPE_MIN_TIER_WRITE", + "file_type": "code", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L102", + "_origin": "ast", + "id": "packages_shared_src_vault_vaultcapabilities_record_type_min_tier_write", + "community": 210, + "community_name": "Vault #210", + "norm_label": "record_type_min_tier_write" + }, + { + "label": "VaultAction", + "file_type": "code", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L109", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_vaultcapabilities_vaultaction", + "community": 210, + "community_name": "Vault #210", + "norm_label": "vaultaction" + }, + { + "label": "TIER_ALLOWED_ACTIONS", + "file_type": "code", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L116", + "_origin": "ast", + "id": "packages_shared_src_vault_vaultcapabilities_tier_allowed_actions", + "community": 210, + "community_name": "Vault #210", + "norm_label": "tier_allowed_actions" + }, + { + "label": "canAccessRecordType()", + "file_type": "code", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L146", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_vault_vaultcapabilities_canaccessrecordtype", + "community": 138, + "community_name": "Vault #138", + "norm_label": "canaccessrecordtype()" + }, + { + "label": "getAccessibleRecordTypes()", + "file_type": "code", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L173", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_vault_vaultcapabilities_getaccessiblerecordtypes", + "community": 210, + "community_name": "Vault #210", + "norm_label": "getaccessiblerecordtypes()" + }, + { + "label": "RecordTypeDisplayInfo", + "file_type": "code", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L181", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_vaultcapabilities_recordtypedisplayinfo", + "community": 210, + "community_name": "Vault #210", + "norm_label": "recordtypedisplayinfo" + }, + { + "label": "RECORD_TYPE_DISPLAY", + "file_type": "code", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L195", + "_origin": "ast", + "id": "packages_shared_src_vault_vaultcapabilities_record_type_display", + "community": 210, + "community_name": "Vault #210", + "norm_label": "record_type_display" + }, + { + "label": "LegacyItemCategory", + "file_type": "code", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L256", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_vaultcapabilities_legacyitemcategory", + "community": 210, + "community_name": "Vault #210", + "norm_label": "legacyitemcategory" + }, + { + "label": "LEGACY_CATEGORY_TO_RECORD_TYPE", + "file_type": "code", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L268", + "_origin": "ast", + "id": "packages_shared_src_vault_vaultcapabilities_legacy_category_to_record_type", + "community": 210, + "community_name": "Vault #210", + "norm_label": "legacy_category_to_record_type" + }, + { + "label": "RECORD_TYPE_TO_DEFAULT_CATEGORY", + "file_type": "code", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L284", + "_origin": "ast", + "id": "packages_shared_src_vault_vaultcapabilities_record_type_to_default_category", + "community": 210, + "community_name": "Vault #210", + "norm_label": "record_type_to_default_category" + }, + { + "label": "CategoryUILabel", + "file_type": "code", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L309", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_vaultcapabilities_categoryuilabel", + "community": 210, + "community_name": "Vault #210", + "norm_label": "categoryuilabel" + }, + { + "label": "CATEGORY_UI_MAP", + "file_type": "code", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L320", + "_origin": "ast", + "id": "packages_shared_src_vault_vaultcapabilities_category_ui_map", + "community": 73, + "community_name": "Vault #73", + "norm_label": "category_ui_map" + }, + { + "label": "ALL_ITEM_CATEGORIES", + "file_type": "code", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L373", + "_origin": "ast", + "id": "packages_shared_src_vault_vaultcapabilities_all_item_categories", + "community": 210, + "community_name": "Vault #210", + "norm_label": "all_item_categories" + }, + { + "label": "getCategoryOptionsForTier()", + "file_type": "code", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L387", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_vault_vaultcapabilities_getcategoryoptionsfortier", + "community": 98, + "community_name": "Vault #98", + "norm_label": "getcategoryoptionsfortier()" + }, + { + "label": "canAccessCategory()", + "file_type": "code", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L403", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_vault_vaultcapabilities_canaccesscategory", + "community": 63, + "community_name": "Vault", + "norm_label": "canaccesscategory()" + }, + { + "label": "HandshakeBindingPolicy", + "file_type": "code", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L423", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_vaultcapabilities_handshakebindingpolicy", + "community": 210, + "community_name": "Vault #210", + "norm_label": "handshakebindingpolicy" + }, + { + "label": "DEFAULT_BINDING_POLICY", + "file_type": "code", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L437", + "_origin": "ast", + "id": "packages_shared_src_vault_vaultcapabilities_default_binding_policy", + "community": 210, + "community_name": "Vault #210", + "norm_label": "default_binding_policy" + }, + { + "label": "HandshakeTarget", + "file_type": "code", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L449", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_vaultcapabilities_handshaketarget", + "community": 210, + "community_name": "Vault #210", + "norm_label": "handshaketarget" + }, + { + "label": "AttachBlockReason", + "file_type": "code", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L459", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_vaultcapabilities_attachblockreason", + "community": 210, + "community_name": "Vault #210", + "norm_label": "attachblockreason" + }, + { + "label": "AttachEvalResult", + "file_type": "code", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L467", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_vault_vaultcapabilities_attachevalresult", + "community": 210, + "community_name": "Vault #210", + "norm_label": "attachevalresult" + }, + { + "label": "canAttachContext()", + "file_type": "code", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L491", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_vault_vaultcapabilities_canattachcontext", + "community": 210, + "community_name": "Vault #210", + "norm_label": "canattachcontext()" + }, + { + "label": "matchDomainGlob()", + "file_type": "code", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L565", + "_callable": true, + "_origin": "ast", + "id": "packages_shared_src_vault_vaultcapabilities_matchdomainglob", + "community": 210, + "community_name": "Vault #210", + "norm_label": "matchdomainglob()" + }, + { + "label": "diffTrigger.ts", + "file_type": "code", + "source_file": "packages/shared/src/wrChat/diffTrigger.ts", + "source_location": "L1", + "_origin": "ast", + "id": "packages_shared_src_wrchat_difftrigger", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": "difftrigger.ts" + }, + { + "label": "DiffTrigger", + "file_type": "code", + "source_file": "packages/shared/src/wrChat/diffTrigger.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "packages_shared_src_wrchat_difftrigger_difftrigger", + "community": 87, + "community_name": "UI Stores Security", + "norm_label": "difftrigger" + }, + { + "label": "check-inbox-validator-gate.sh", + "file_type": "code", + "source_file": "scripts/check-inbox-validator-gate.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "file" + }, + "_origin": "ast", + "id": "scripts_check_inbox_validator_gate", + "community": 576, + "community_name": "Scripts #576", + "norm_label": "check-inbox-validator-gate.sh" + }, + { + "label": "check-inbox-validator-gate.sh script", + "file_type": "code", + "source_file": "scripts/check-inbox-validator-gate.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "bash_entrypoint" + }, + "_origin": "ast", + "id": "scripts_check_inbox_validator_gate_sh__entry", + "community": 576, + "community_name": "Scripts #576", + "norm_label": "check-inbox-validator-gate.sh script" + }, + { + "label": "check-self-call-loopback.cjs", + "file_type": "code", + "source_file": "scripts/check-self-call-loopback.cjs", + "source_location": "L1", + "_origin": "ast", + "id": "scripts_check_self_call_loopback", + "community": 357, + "community_name": "Scripts #357", + "norm_label": "check-self-call-loopback.cjs" + }, + { + "label": "fs", + "file_type": "code", + "source_file": "scripts/check-self-call-loopback.cjs", + "source_location": "L9", + "_origin": "ast", + "id": "scripts_check_self_call_loopback_fs", + "community": 357, + "community_name": "Scripts #357", + "norm_label": "fs" + }, + { + "label": "path", + "file_type": "code", + "source_file": "scripts/check-self-call-loopback.cjs", + "source_location": "L10", + "_origin": "ast", + "id": "scripts_check_self_call_loopback_path", + "community": 357, + "community_name": "Scripts #357", + "norm_label": "path" + }, + { + "label": "CODE_ROOT", + "file_type": "code", + "source_file": "scripts/check-self-call-loopback.cjs", + "source_location": "L12", + "_origin": "ast", + "id": "scripts_check_self_call_loopback_code_root", + "community": 357, + "community_name": "Scripts #357", + "norm_label": "code_root" + }, + { + "label": "SCAN_ROOT", + "file_type": "code", + "source_file": "scripts/check-self-call-loopback.cjs", + "source_location": "L13", + "_origin": "ast", + "id": "scripts_check_self_call_loopback_scan_root", + "community": 357, + "community_name": "Scripts #357", + "norm_label": "scan_root" + }, + { + "label": "ALLOWLIST_SUFFIXES", + "file_type": "code", + "source_file": "scripts/check-self-call-loopback.cjs", + "source_location": "L15", + "_origin": "ast", + "id": "scripts_check_self_call_loopback_allowlist_suffixes", + "community": 357, + "community_name": "Scripts #357", + "norm_label": "allowlist_suffixes" + }, + { + "label": "isAllowlisted()", + "file_type": "code", + "source_file": "scripts/check-self-call-loopback.cjs", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "id": "scripts_check_self_call_loopback_isallowlisted", + "community": 357, + "community_name": "Scripts #357", + "norm_label": "isallowlisted()" + }, + { + "label": "walk()", + "file_type": "code", + "source_file": "scripts/check-self-call-loopback.cjs", + "source_location": "L37", + "_callable": true, + "_origin": "ast", + "id": "scripts_check_self_call_loopback_walk", + "community": 357, + "community_name": "Scripts #357", + "norm_label": "walk()" + }, + { + "label": "checkFile()", + "file_type": "code", + "source_file": "scripts/check-self-call-loopback.cjs", + "source_location": "L50", + "_callable": true, + "_origin": "ast", + "id": "scripts_check_self_call_loopback_checkfile", + "community": 357, + "community_name": "Scripts #357", + "norm_label": "checkfile()" + }, + { + "label": "main()", + "file_type": "code", + "source_file": "scripts/check-self-call-loopback.cjs", + "source_location": "L68", + "_callable": true, + "_origin": "ast", + "id": "scripts_check_self_call_loopback_main", + "community": 357, + "community_name": "Scripts #357", + "norm_label": "main()" + }, + { + "label": "RFC-1918", + "file_type": "concept", + "source_file": "scripts/check-self-call-loopback.cjs", + "source_location": "L3", + "_origin": "ast", + "id": "scripts_check_self_call_loopback_cjs_docref_rfc_1918", + "community": 357, + "community_name": "Scripts #357", + "norm_label": "rfc-1918" + }, + { + "label": "check-write-boundary.ps1", + "file_type": "code", + "source_file": "scripts/check-write-boundary.ps1", + "source_location": "L1", + "_origin": "ast", + "id": "scripts_check_write_boundary_ps1_scripts_check_write_boundary", + "community": 577, + "community_name": "Scripts #577", + "norm_label": "check-write-boundary.ps1" + }, + { + "label": "Find-InFiles()", + "file_type": "code", + "source_file": "scripts/check-write-boundary.ps1", + "source_location": "L19", + "_origin": "ast", + "id": "scripts_check_write_boundary_find_infiles", + "community": 577, + "community_name": "Scripts #577", + "norm_label": "find-infiles()" + }, + { + "label": "check-write-boundary.sh", + "file_type": "code", + "source_file": "scripts/check-write-boundary.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "file" + }, + "_origin": "ast", + "id": "scripts_check_write_boundary_sh_scripts_check_write_boundary", + "community": 578, + "community_name": "Scripts #578", + "norm_label": "check-write-boundary.sh" + }, + { + "label": "check-write-boundary.sh script", + "file_type": "code", + "source_file": "scripts/check-write-boundary.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "bash_entrypoint" + }, + "_origin": "ast", + "id": "scripts_check_write_boundary_sh__entry", + "community": 578, + "community_name": "Scripts #578", + "norm_label": "check-write-boundary.sh script" + }, + { + "label": "check_braces.py", + "file_type": "code", + "source_file": "scripts/check_braces.py", + "source_location": "L1", + "_origin": "ast", + "id": "scripts_check_braces", + "community": 617, + "community_name": "Scripts #617", + "norm_label": "check_braces.py" + }, + { + "label": "run-native-db-tests.cjs", + "file_type": "code", + "source_file": "scripts/run-native-db-tests.cjs", + "source_location": "L1", + "_origin": "ast", + "id": "scripts_run_native_db_tests", + "community": 384, + "community_name": "Scripts #384", + "norm_label": "run-native-db-tests.cjs" + }, + { + "label": "{ spawnSync }", + "file_type": "code", + "source_file": "scripts/run-native-db-tests.cjs", + "source_location": "L18", + "_origin": "ast", + "id": "scripts_run_native_db_tests_spawnsync", + "community": 384, + "community_name": "Scripts #384", + "norm_label": "{ spawnsync }" + }, + { + "label": "path", + "file_type": "code", + "source_file": "scripts/run-native-db-tests.cjs", + "source_location": "L19", + "_origin": "ast", + "id": "scripts_run_native_db_tests_path", + "community": 384, + "community_name": "Scripts #384", + "norm_label": "path" + }, + { + "label": "electronBin", + "file_type": "code", + "source_file": "scripts/run-native-db-tests.cjs", + "source_location": "L23", + "_origin": "ast", + "id": "scripts_run_native_db_tests_electronbin", + "community": 384, + "community_name": "Scripts #384", + "norm_label": "electronbin" + }, + { + "label": "vitestEntry", + "file_type": "code", + "source_file": "scripts/run-native-db-tests.cjs", + "source_location": "L24", + "_origin": "ast", + "id": "scripts_run_native_db_tests_vitestentry", + "community": 384, + "community_name": "Scripts #384", + "norm_label": "vitestentry" + }, + { + "label": "DEFAULT_FILES", + "file_type": "code", + "source_file": "scripts/run-native-db-tests.cjs", + "source_location": "L26", + "_origin": "ast", + "id": "scripts_run_native_db_tests_default_files", + "community": 384, + "community_name": "Scripts #384", + "norm_label": "default_files" + }, + { + "label": "files", + "file_type": "code", + "source_file": "scripts/run-native-db-tests.cjs", + "source_location": "L32", + "_origin": "ast", + "id": "scripts_run_native_db_tests_files", + "community": 384, + "community_name": "Scripts #384", + "norm_label": "files" + }, + { + "label": "res", + "file_type": "code", + "source_file": "scripts/run-native-db-tests.cjs", + "source_location": "L35", + "_origin": "ast", + "id": "scripts_run_native_db_tests_res", + "community": 384, + "community_name": "Scripts #384", + "norm_label": "res" + }, + { + "label": "WHY: `better-sqlite3` is electron-rebuilt to Electron's ABI for the app, so it", + "file_type": "rationale", + "source_file": "scripts/run-native-db-tests.cjs", + "source_location": "L6", + "_origin": "ast", + "id": "scripts_run_native_db_tests_rationale_6", + "community": 384, + "community_name": "Scripts #384", + "norm_label": "why: `better-sqlite3` is electron-rebuilt to electron's abi for the app, so it" + }, + { + "label": "session-build.cjs", + "file_type": "code", + "source_file": "scripts/session-build.cjs", + "source_location": "L1", + "_origin": "ast", + "id": "scripts_session_build_cjs_scripts_session_build_e222db", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "session-build.cjs" + }, + { + "label": "{ formatBuildLine, runOrchestratorBuild }", + "file_type": "code", + "source_file": "scripts/session-build.cjs", + "source_location": "L10", + "_origin": "ast", + "id": "scripts_session_build_formatbuildline_runorchestratorbuild", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "{ formatbuildline, runorchestratorbuild }" + }, + { + "label": "{ ensureRelayUp }", + "file_type": "code", + "source_file": "scripts/session-build.cjs", + "source_location": "L11", + "_origin": "ast", + "id": "scripts_session_build_ensurerelayup", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "{ ensurerelayup }" + }, + { + "label": "main()", + "file_type": "code", + "source_file": "scripts/session-build.cjs", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "id": "scripts_session_build_main", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "main()" + }, + { + "label": "session-configure-remote.cjs", + "file_type": "code", + "source_file": "scripts/session-configure-remote.cjs", + "source_location": "L1", + "_origin": "ast", + "id": "scripts_session_configure_remote", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "session-configure-remote.cjs" + }, + { + "label": "{ configureCoordinationOnMachine }", + "file_type": "code", + "source_file": "scripts/session-configure-remote.cjs", + "source_location": "L7", + "_origin": "ast", + "id": "scripts_session_configure_remote_configurecoordinationonmachine", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "{ configurecoordinationonmachine }" + }, + { + "label": "main()", + "file_type": "code", + "source_file": "scripts/session-configure-remote.cjs", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "id": "scripts_session_configure_remote_main", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "main()" + }, + { + "label": "session-start.cjs", + "file_type": "code", + "source_file": "scripts/session-start.cjs", + "source_location": "L1", + "_origin": "ast", + "id": "scripts_session_start", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "session-start.cjs" + }, + { + "label": "{ formatBuildLine, runOrchestratorBuild }", + "file_type": "code", + "source_file": "scripts/session-start.cjs", + "source_location": "L10", + "_origin": "ast", + "id": "scripts_session_start_formatbuildline_runorchestratorbuild", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "{ formatbuildline, runorchestratorbuild }" + }, + { + "label": "{\r\n detectLanIPv4,\r\n configureCoordinationOnMachine,\r\n startRelay,\r\n waitForHealth,\r\n windowsHostLine,\r\n}", + "file_type": "code", + "source_file": "scripts/session-start.cjs", + "source_location": "L11", + "_origin": "ast", + "id": "scripts_session_start_detectlanipv4_configurecoordinationonmachine_startrelay_waitforhealth_windowshostline", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "{\r\n detectlanipv4,\r\n configurecoordinationonmachine,\r\n startrelay,\r\n waitforhealth,\r\n windowshostline,\r\n}" + }, + { + "label": "main()", + "file_type": "code", + "source_file": "scripts/session-start.cjs", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "id": "scripts_session_start_main", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "main()" + }, + { + "label": "session-stop.cjs", + "file_type": "code", + "source_file": "scripts/session-stop.cjs", + "source_location": "L1", + "_origin": "ast", + "id": "scripts_session_stop", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "session-stop.cjs" + }, + { + "label": "{ stopRelay, RELAY_DB }", + "file_type": "code", + "source_file": "scripts/session-stop.cjs", + "source_location": "L7", + "_origin": "ast", + "id": "scripts_session_stop_stoprelay_relay_db", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "{ stoprelay, relay_db }" + }, + { + "label": "main()", + "file_type": "code", + "source_file": "scripts/session-stop.cjs", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "id": "scripts_session_stop_main", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "main()" + }, + { + "label": "build.cjs", + "file_type": "code", + "source_file": "scripts/session/build.cjs", + "source_location": "L1", + "_origin": "ast", + "id": "scripts_session_build_cjs_scripts_session_build_860cbb", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "build.cjs" + }, + { + "label": "{ execSync, spawnSync }", + "file_type": "code", + "source_file": "scripts/session/build.cjs", + "source_location": "L7", + "_origin": "ast", + "id": "scripts_session_build_execsync_spawnsync", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "{ execsync, spawnsync }" + }, + { + "label": "{ spawnPnpmSync, formatSpawnFailure }", + "file_type": "code", + "source_file": "scripts/session/build.cjs", + "source_location": "L8", + "_origin": "ast", + "id": "scripts_session_build_spawnpnpmsync_formatspawnfailure", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "{ spawnpnpmsync, formatspawnfailure }" + }, + { + "label": "fs", + "file_type": "code", + "source_file": "scripts/session/build.cjs", + "source_location": "L9", + "_origin": "ast", + "id": "scripts_session_build_fs", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "fs" + }, + { + "label": "path", + "file_type": "code", + "source_file": "scripts/session/build.cjs", + "source_location": "L10", + "_origin": "ast", + "id": "scripts_session_build_path", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "path" + }, + { + "label": "CODE_ROOT", + "file_type": "code", + "source_file": "scripts/session/build.cjs", + "source_location": "L12", + "_origin": "ast", + "id": "scripts_session_build_code_root", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "code_root" + }, + { + "label": "ELECTRON_APP", + "file_type": "code", + "source_file": "scripts/session/build.cjs", + "source_location": "L13", + "_origin": "ast", + "id": "scripts_session_build_electron_app", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "electron_app" + }, + { + "label": "MAIN_BUNDLE", + "file_type": "code", + "source_file": "scripts/session/build.cjs", + "source_location": "L14", + "_origin": "ast", + "id": "scripts_session_build_main_bundle", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "main_bundle" + }, + { + "label": "BUILDER_CFG", + "file_type": "code", + "source_file": "scripts/session/build.cjs", + "source_location": "L15", + "_origin": "ast", + "id": "scripts_session_build_builder_cfg", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "builder_cfg" + }, + { + "label": "PROVENANCE_MANIFEST", + "file_type": "code", + "source_file": "scripts/session/build.cjs", + "source_location": "L16", + "_origin": "ast", + "id": "scripts_session_build_provenance_manifest", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "provenance_manifest" + }, + { + "label": "killOrchestrator()", + "file_type": "code", + "source_file": "scripts/session/build.cjs", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "scripts_session_build_killorchestrator", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "killorchestrator()" + }, + { + "label": "readDefineFromBundle()", + "file_type": "code", + "source_file": "scripts/session/build.cjs", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "scripts_session_build_readdefinefrombundle", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "readdefinefrombundle()" + }, + { + "label": "readBuildStampFromConfig()", + "file_type": "code", + "source_file": "scripts/session/build.cjs", + "source_location": "L41", + "_callable": true, + "_origin": "ast", + "id": "scripts_session_build_readbuildstampfromconfig", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "readbuildstampfromconfig()" + }, + { + "label": "readBuiltProvenance()", + "file_type": "code", + "source_file": "scripts/session/build.cjs", + "source_location": "L48", + "_callable": true, + "_origin": "ast", + "id": "scripts_session_build_readbuiltprovenance", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "readbuiltprovenance()" + }, + { + "label": "writeBuiltProvenance()", + "file_type": "code", + "source_file": "scripts/session/build.cjs", + "source_location": "L62", + "_callable": true, + "_origin": "ast", + "id": "scripts_session_build_writebuiltprovenance", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "writebuiltprovenance()" + }, + { + "label": "readWindowsOutputBasename()", + "file_type": "code", + "source_file": "scripts/session/build.cjs", + "source_location": "L67", + "_callable": true, + "_origin": "ast", + "id": "scripts_session_build_readwindowsoutputbasename", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "readwindowsoutputbasename()" + }, + { + "label": "readWindowsExecutableName()", + "file_type": "code", + "source_file": "scripts/session/build.cjs", + "source_location": "L73", + "_callable": true, + "_origin": "ast", + "id": "scripts_session_build_readwindowsexecutablename", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "readwindowsexecutablename()" + }, + { + "label": "resolveLinuxLaunchPath()", + "file_type": "code", + "source_file": "scripts/session/build.cjs", + "source_location": "L79", + "_callable": true, + "_origin": "ast", + "id": "scripts_session_build_resolvelinuxlaunchpath", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "resolvelinuxlaunchpath()" + }, + { + "label": "resolveWindowsLaunchPath()", + "file_type": "code", + "source_file": "scripts/session/build.cjs", + "source_location": "L105", + "_callable": true, + "_origin": "ast", + "id": "scripts_session_build_resolvewindowslaunchpath", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "resolvewindowslaunchpath()" + }, + { + "label": "resolveLaunchPath()", + "file_type": "code", + "source_file": "scripts/session/build.cjs", + "source_location": "L119", + "_callable": true, + "_origin": "ast", + "id": "scripts_session_build_resolvelaunchpath", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "resolvelaunchpath()" + }, + { + "label": "formatBuildLine()", + "file_type": "code", + "source_file": "scripts/session/build.cjs", + "source_location": "L124", + "_callable": true, + "_origin": "ast", + "id": "scripts_session_build_formatbuildline", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "formatbuildline()" + }, + { + "label": "runOrchestratorBuild()", + "file_type": "code", + "source_file": "scripts/session/build.cjs", + "source_location": "L128", + "_callable": true, + "_origin": "ast", + "id": "scripts_session_build_runorchestratorbuild", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "runorchestratorbuild()" + }, + { + "label": "configure-coordination-worker.cjs", + "file_type": "code", + "source_file": "scripts/session/configure-coordination-worker.cjs", + "source_location": "L1", + "_origin": "ast", + "id": "scripts_session_configure_coordination_worker", + "community": 385, + "community_name": "Scripts Session #385", + "norm_label": "configure-coordination-worker.cjs" + }, + { + "label": "crypto", + "file_type": "code", + "source_file": "scripts/session/configure-coordination-worker.cjs", + "source_location": "L6", + "_origin": "ast", + "id": "scripts_session_configure_coordination_worker_crypto", + "community": 385, + "community_name": "Scripts Session #385", + "norm_label": "crypto" + }, + { + "label": "path", + "file_type": "code", + "source_file": "scripts/session/configure-coordination-worker.cjs", + "source_location": "L7", + "_origin": "ast", + "id": "scripts_session_configure_coordination_worker_path", + "community": 385, + "community_name": "Scripts Session #385", + "norm_label": "path" + }, + { + "label": "buildLedgerSessionToken()", + "file_type": "code", + "source_file": "scripts/session/configure-coordination-worker.cjs", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "id": "scripts_session_configure_coordination_worker_buildledgersessiontoken", + "community": 385, + "community_name": "Scripts Session #385", + "norm_label": "buildledgersessiontoken()" + }, + { + "label": "decodeJwtPayload()", + "file_type": "code", + "source_file": "scripts/session/configure-coordination-worker.cjs", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "scripts_session_configure_coordination_worker_decodejwtpayload", + "community": 385, + "community_name": "Scripts Session #385", + "norm_label": "decodejwtpayload()" + }, + { + "label": "loadIdentity()", + "file_type": "code", + "source_file": "scripts/session/configure-coordination-worker.cjs", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "scripts_session_configure_coordination_worker_loadidentity", + "community": 385, + "community_name": "Scripts Session #385", + "norm_label": "loadidentity()" + }, + { + "label": "openLedger()", + "file_type": "code", + "source_file": "scripts/session/configure-coordination-worker.cjs", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "id": "scripts_session_configure_coordination_worker_openledger", + "community": 385, + "community_name": "Scripts Session #385", + "norm_label": "openledger()" + }, + { + "label": "upsertCoordination()", + "file_type": "code", + "source_file": "scripts/session/configure-coordination-worker.cjs", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "id": "scripts_session_configure_coordination_worker_upsertcoordination", + "community": 385, + "community_name": "Scripts Session #385", + "norm_label": "upsertcoordination()" + }, + { + "label": "main()", + "file_type": "code", + "source_file": "scripts/session/configure-coordination-worker.cjs", + "source_location": "L80", + "_callable": true, + "_origin": "ast", + "id": "scripts_session_configure_coordination_worker_main", + "community": 385, + "community_name": "Scripts Session #385", + "norm_label": "main()" + }, + { + "label": "lib.cjs", + "file_type": "code", + "source_file": "scripts/session/lib.cjs", + "source_location": "L1", + "_origin": "ast", + "id": "scripts_session_lib", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "lib.cjs" + }, + { + "label": "{ spawn, spawnSync }", + "file_type": "code", + "source_file": "scripts/session/lib.cjs", + "source_location": "L5", + "_origin": "ast", + "id": "scripts_session_lib_spawn_spawnsync", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "{ spawn, spawnsync }" + }, + { + "label": "fs", + "file_type": "code", + "source_file": "scripts/session/lib.cjs", + "source_location": "L6", + "_origin": "ast", + "id": "scripts_session_lib_fs", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "fs" + }, + { + "label": "http", + "file_type": "code", + "source_file": "scripts/session/lib.cjs", + "source_location": "L7", + "_origin": "ast", + "id": "scripts_session_lib_http", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "http" + }, + { + "label": "os", + "file_type": "code", + "source_file": "scripts/session/lib.cjs", + "source_location": "L8", + "_origin": "ast", + "id": "scripts_session_lib_os", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "os" + }, + { + "label": "path", + "file_type": "code", + "source_file": "scripts/session/lib.cjs", + "source_location": "L9", + "_origin": "ast", + "id": "scripts_session_lib_path", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "path" + }, + { + "label": "CODE_ROOT", + "file_type": "code", + "source_file": "scripts/session/lib.cjs", + "source_location": "L11", + "_origin": "ast", + "id": "scripts_session_lib_code_root", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "code_root" + }, + { + "label": "COORD_PKG", + "file_type": "code", + "source_file": "scripts/session/lib.cjs", + "source_location": "L12", + "_origin": "ast", + "id": "scripts_session_lib_coord_pkg", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "coord_pkg" + }, + { + "label": "ELECTRON_APP", + "file_type": "code", + "source_file": "scripts/session/lib.cjs", + "source_location": "L13", + "_origin": "ast", + "id": "scripts_session_lib_electron_app", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "electron_app" + }, + { + "label": "RELAY_LOG", + "file_type": "code", + "source_file": "scripts/session/lib.cjs", + "source_location": "L17", + "_origin": "ast", + "id": "scripts_session_lib_relay_log", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "relay_log" + }, + { + "label": "spawnPnpmSync()", + "file_type": "code", + "source_file": "scripts/session/lib.cjs", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "scripts_session_lib_spawnpnpmsync", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "spawnpnpmsync()" + }, + { + "label": "formatSpawnFailure()", + "file_type": "code", + "source_file": "scripts/session/lib.cjs", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "id": "scripts_session_lib_formatspawnfailure", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "formatspawnfailure()" + }, + { + "label": "ledgerDbPath()", + "file_type": "code", + "source_file": "scripts/session/lib.cjs", + "source_location": "L51", + "_callable": true, + "_origin": "ast", + "id": "scripts_session_lib_ledgerdbpath", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "ledgerdbpath()" + }, + { + "label": "detectLanIPv4()", + "file_type": "code", + "source_file": "scripts/session/lib.cjs", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "id": "scripts_session_lib_detectlanipv4", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "detectlanipv4()" + }, + { + "label": "relayUrls()", + "file_type": "code", + "source_file": "scripts/session/lib.cjs", + "source_location": "L71", + "_callable": true, + "_origin": "ast", + "id": "scripts_session_lib_relayurls", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "relayurls()" + }, + { + "label": "runElectronNode()", + "file_type": "code", + "source_file": "scripts/session/lib.cjs", + "source_location": "L79", + "_callable": true, + "_origin": "ast", + "id": "scripts_session_lib_runelectronnode", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "runelectronnode()" + }, + { + "label": "configureCoordinationOnMachine()", + "file_type": "code", + "source_file": "scripts/session/lib.cjs", + "source_location": "L93", + "_callable": true, + "_origin": "ast", + "id": "scripts_session_lib_configurecoordinationonmachine", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "configurecoordinationonmachine()" + }, + { + "label": "buildCoordinationService()", + "file_type": "code", + "source_file": "scripts/session/lib.cjs", + "source_location": "L111", + "_callable": true, + "_origin": "ast", + "id": "scripts_session_lib_buildcoordinationservice", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "buildcoordinationservice()" + }, + { + "label": "readPid()", + "file_type": "code", + "source_file": "scripts/session/lib.cjs", + "source_location": "L122", + "_callable": true, + "_origin": "ast", + "id": "scripts_session_lib_readpid", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "readpid()" + }, + { + "label": "isProcessAlive()", + "file_type": "code", + "source_file": "scripts/session/lib.cjs", + "source_location": "L132", + "_callable": true, + "_origin": "ast", + "id": "scripts_session_lib_isprocessalive", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "isprocessalive()" + }, + { + "label": "waitForHealth()", + "file_type": "code", + "source_file": "scripts/session/lib.cjs", + "source_location": "L141", + "_callable": true, + "_origin": "ast", + "id": "scripts_session_lib_waitforhealth", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "waitforhealth()" + }, + { + "label": "startRelay()", + "file_type": "code", + "source_file": "scripts/session/lib.cjs", + "source_location": "L165", + "_callable": true, + "_origin": "ast", + "id": "scripts_session_lib_startrelay", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "startrelay()" + }, + { + "label": "ensureRelayUp()", + "file_type": "code", + "source_file": "scripts/session/lib.cjs", + "source_location": "L200", + "_callable": true, + "_origin": "ast", + "id": "scripts_session_lib_ensurerelayup", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "ensurerelayup()" + }, + { + "label": "stopRelay()", + "file_type": "code", + "source_file": "scripts/session/lib.cjs", + "source_location": "L208", + "_callable": true, + "_origin": "ast", + "id": "scripts_session_lib_stoprelay", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "stoprelay()" + }, + { + "label": "windowsHostLine()", + "file_type": "code", + "source_file": "scripts/session/lib.cjs", + "source_location": "L232", + "_callable": true, + "_origin": "ast", + "id": "scripts_session_lib_windowshostline", + "community": 83, + "community_name": "Scripts Session", + "norm_label": "windowshostline()" + }, + { + "label": "start-dev-full.ps1", + "file_type": "code", + "source_file": "start-dev-full.ps1", + "source_location": "L1", + "_origin": "ast", + "id": "start_dev_full", + "community": 619, + "community_name": "Startdevfull", + "norm_label": "start-dev-full.ps1" + }, + { + "label": "start-dev.ps1", + "file_type": "code", + "source_file": "start-dev.ps1", + "source_location": "L1", + "_origin": "ast", + "id": "start_dev", + "community": 618, + "community_name": "Startdev", + "norm_label": "start-dev.ps1" + }, + { + "label": "sealed-storage.test.ts", + "file_type": "code", + "source_file": "test/harness/sealed-storage.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "test_harness_sealed_storage_test", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "sealed-storage.test.ts" + }, + { + "label": "sealed-storage.ts", + "file_type": "code", + "source_file": "test/harness/sealed-storage.ts", + "source_location": "L1", + "_origin": "ast", + "id": "test_harness_sealed_storage", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "sealed-storage.ts" + }, + { + "label": "_TEST_VAULT_MASTER_KEY", + "file_type": "code", + "source_file": "test/harness/sealed-storage.ts", + "source_location": "L55", + "_origin": "ast", + "id": "test_harness_sealed_storage_test_vault_master_key", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "_test_vault_master_key" + }, + { + "label": "TEST_DEK", + "file_type": "code", + "source_file": "test/harness/sealed-storage.ts", + "source_location": "L66", + "_origin": "ast", + "id": "test_harness_sealed_storage_test_dek", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "test_dek" + }, + { + "label": "_req", + "file_type": "code", + "source_file": "test/harness/sealed-storage.ts", + "source_location": "L80", + "_origin": "ast", + "id": "test_harness_sealed_storage_req", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "_req" + }, + { + "label": "HarnessDatabase", + "file_type": "code", + "source_file": "test/harness/sealed-storage.ts", + "source_location": "L91", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "test_harness_sealed_storage_harnessdatabase", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "harnessdatabase" + }, + { + "label": "createHarnessDb()", + "file_type": "code", + "source_file": "test/harness/sealed-storage.ts", + "source_location": "L98", + "_callable": true, + "_origin": "ast", + "id": "test_harness_sealed_storage_createharnessdb", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "createharnessdb()" + }, + { + "label": "buildValidSealForRowId()", + "file_type": "code", + "source_file": "test/harness/sealed-storage.ts", + "source_location": "L157", + "_callable": true, + "_origin": "ast", + "id": "test_harness_sealed_storage_buildvalidsealforrowid", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "buildvalidsealforrowid()" + }, + { + "label": "SealedStorageTestContext", + "file_type": "code", + "source_file": "test/harness/sealed-storage.ts", + "source_location": "L178", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "test_harness_sealed_storage_sealedstoragetestcontext", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "sealedstoragetestcontext" + }, + { + "label": ".buildValidSealForRowId()", + "file_type": "code", + "source_file": "test/harness/sealed-storage.ts", + "source_location": "L194", + "_callable": true, + "_origin": "ast", + "id": "test_harness_sealed_storage_sealedstoragetestcontext_buildvalidsealforrowid", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": ".buildvalidsealforrowid()" + }, + { + "label": ".cleanup()", + "file_type": "code", + "source_file": "test/harness/sealed-storage.ts", + "source_location": "L202", + "_callable": true, + "_origin": "ast", + "id": "test_harness_sealed_storage_sealedstoragetestcontext_cleanup", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": ".cleanup()" + }, + { + "label": "createSealedStorageTestContext()", + "file_type": "code", + "source_file": "test/harness/sealed-storage.ts", + "source_location": "L215", + "_callable": true, + "_origin": "ast", + "id": "test_harness_sealed_storage_createsealedstoragetestcontext", + "community": 5, + "community_name": "Sealed Storage Lifecycle", + "norm_label": "createsealedstoragetestcontext()" + }, + { + "label": "electron.ts", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L1", + "_origin": "ast", + "id": "test_mocks_electron", + "community": 126, + "community_name": "Mocks", + "norm_label": "electron.ts" + }, + { + "label": "testUserData", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L18", + "_origin": "ast", + "id": "test_mocks_electron_testuserdata", + "community": 126, + "community_name": "Mocks", + "norm_label": "testuserdata" + }, + { + "label": "app", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L23", + "_origin": "ast", + "id": "test_mocks_electron_app", + "community": 126, + "community_name": "Mocks", + "norm_label": "app" + }, + { + "label": "safeStorage", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L83", + "_origin": "ast", + "id": "test_mocks_electron_safestorage", + "community": 126, + "community_name": "Mocks", + "norm_label": "safestorage" + }, + { + "label": "ipcMain", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L92", + "_origin": "ast", + "id": "test_mocks_electron_ipcmain", + "community": 126, + "community_name": "Mocks", + "norm_label": "ipcmain" + }, + { + "label": "ipcRenderer", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L108", + "_origin": "ast", + "id": "test_mocks_electron_ipcrenderer", + "community": 126, + "community_name": "Mocks", + "norm_label": "ipcrenderer" + }, + { + "label": "mockWebContents", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L123", + "_origin": "ast", + "id": "test_mocks_electron_mockwebcontents", + "community": 126, + "community_name": "Mocks", + "norm_label": "mockwebcontents" + }, + { + "label": "BrowserWindow", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L137", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "test_mocks_electron_browserwindow", + "community": 151, + "community_name": "Mocks Lmgtfy Email", + "norm_label": "browserwindow" + }, + { + "label": ".getAllWindows()", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L140", + "_callable": true, + "_origin": "ast", + "id": "test_mocks_electron_browserwindow_getallwindows", + "community": 41, + "community_name": "Email Domain Providers", + "norm_label": ".getallwindows()" + }, + { + "label": ".getFocusedWindow()", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L141", + "_callable": true, + "_origin": "ast", + "id": "test_mocks_electron_browserwindow_getfocusedwindow", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": ".getfocusedwindow()" + }, + { + "label": ".fromId()", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L142", + "_callable": true, + "_origin": "ast", + "id": "test_mocks_electron_browserwindow_fromid", + "community": 151, + "community_name": "Mocks Lmgtfy Email", + "norm_label": ".fromid()" + }, + { + "label": ".fromWebContents()", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L143", + "_callable": true, + "_origin": "ast", + "id": "test_mocks_electron_browserwindow_fromwebcontents", + "community": 151, + "community_name": "Mocks Lmgtfy Email", + "norm_label": ".fromwebcontents()" + }, + { + "label": ".loadURL()", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L145", + "_callable": true, + "_origin": "ast", + "id": "test_mocks_electron_browserwindow_loadurl", + "community": 151, + "community_name": "Mocks Lmgtfy Email", + "norm_label": ".loadurl()" + }, + { + "label": ".loadFile()", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L146", + "_callable": true, + "_origin": "ast", + "id": "test_mocks_electron_browserwindow_loadfile", + "community": 11, + "community_name": "P2P Inference Sessions", + "norm_label": ".loadfile()" + }, + { + "label": ".show()", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L147", + "_callable": true, + "_origin": "ast", + "id": "test_mocks_electron_browserwindow_show", + "community": 151, + "community_name": "Mocks Lmgtfy Email", + "norm_label": ".show()" + }, + { + "label": ".hide()", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L148", + "_callable": true, + "_origin": "ast", + "id": "test_mocks_electron_browserwindow_hide", + "community": 151, + "community_name": "Mocks Lmgtfy Email", + "norm_label": ".hide()" + }, + { + "label": ".close()", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L149", + "_callable": true, + "_origin": "ast", + "id": "test_mocks_electron_browserwindow_close", + "community": 16, + "community_name": "Electron Main Window", + "norm_label": ".close()" + }, + { + "label": ".destroy()", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L150", + "_callable": true, + "_origin": "ast", + "id": "test_mocks_electron_browserwindow_destroy", + "community": 151, + "community_name": "Mocks Lmgtfy Email", + "norm_label": ".destroy()" + }, + { + "label": ".focus()", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L151", + "_callable": true, + "_origin": "ast", + "id": "test_mocks_electron_browserwindow_focus", + "community": 151, + "community_name": "Mocks Lmgtfy Email", + "norm_label": ".focus()" + }, + { + "label": ".blur()", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L152", + "_callable": true, + "_origin": "ast", + "id": "test_mocks_electron_browserwindow_blur", + "community": 151, + "community_name": "Mocks Lmgtfy Email", + "norm_label": ".blur()" + }, + { + "label": ".isFocused()", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L153", + "_callable": true, + "_origin": "ast", + "id": "test_mocks_electron_browserwindow_isfocused", + "community": 151, + "community_name": "Mocks Lmgtfy Email", + "norm_label": ".isfocused()" + }, + { + "label": ".isDestroyed()", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L154", + "_callable": true, + "_origin": "ast", + "id": "test_mocks_electron_browserwindow_isdestroyed", + "community": 151, + "community_name": "Mocks Lmgtfy Email", + "norm_label": ".isdestroyed()" + }, + { + "label": ".isVisible()", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L155", + "_callable": true, + "_origin": "ast", + "id": "test_mocks_electron_browserwindow_isvisible", + "community": 151, + "community_name": "Mocks Lmgtfy Email", + "norm_label": ".isvisible()" + }, + { + "label": ".minimize()", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L156", + "_callable": true, + "_origin": "ast", + "id": "test_mocks_electron_browserwindow_minimize", + "community": 151, + "community_name": "Mocks Lmgtfy Email", + "norm_label": ".minimize()" + }, + { + "label": ".maximize()", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L157", + "_callable": true, + "_origin": "ast", + "id": "test_mocks_electron_browserwindow_maximize", + "community": 151, + "community_name": "Mocks Lmgtfy Email", + "norm_label": ".maximize()" + }, + { + "label": ".unmaximize()", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L158", + "_callable": true, + "_origin": "ast", + "id": "test_mocks_electron_browserwindow_unmaximize", + "community": 151, + "community_name": "Mocks Lmgtfy Email", + "norm_label": ".unmaximize()" + }, + { + "label": ".isMaximized()", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L159", + "_callable": true, + "_origin": "ast", + "id": "test_mocks_electron_browserwindow_ismaximized", + "community": 151, + "community_name": "Mocks Lmgtfy Email", + "norm_label": ".ismaximized()" + }, + { + "label": ".isMinimized()", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L160", + "_callable": true, + "_origin": "ast", + "id": "test_mocks_electron_browserwindow_isminimized", + "community": 151, + "community_name": "Mocks Lmgtfy Email", + "norm_label": ".isminimized()" + }, + { + "label": ".restore()", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L161", + "_callable": true, + "_origin": "ast", + "id": "test_mocks_electron_browserwindow_restore", + "community": 151, + "community_name": "Mocks Lmgtfy Email", + "norm_label": ".restore()" + }, + { + "label": ".setSize()", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L162", + "_callable": true, + "_origin": "ast", + "id": "test_mocks_electron_browserwindow_setsize", + "community": 151, + "community_name": "Mocks Lmgtfy Email", + "norm_label": ".setsize()" + }, + { + "label": ".getSize()", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L163", + "_callable": true, + "_origin": "ast", + "id": "test_mocks_electron_browserwindow_getsize", + "community": 151, + "community_name": "Mocks Lmgtfy Email", + "norm_label": ".getsize()" + }, + { + "label": ".setTitle()", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L164", + "_callable": true, + "_origin": "ast", + "id": "test_mocks_electron_browserwindow_settitle", + "community": 151, + "community_name": "Mocks Lmgtfy Email", + "norm_label": ".settitle()" + }, + { + "label": ".getTitle()", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L165", + "_callable": true, + "_origin": "ast", + "id": "test_mocks_electron_browserwindow_gettitle", + "community": 151, + "community_name": "Mocks Lmgtfy Email", + "norm_label": ".gettitle()" + }, + { + "label": ".center()", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L166", + "_callable": true, + "_origin": "ast", + "id": "test_mocks_electron_browserwindow_center", + "community": 151, + "community_name": "Mocks Lmgtfy Email", + "norm_label": ".center()" + }, + { + "label": ".setBounds()", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L167", + "_callable": true, + "_origin": "ast", + "id": "test_mocks_electron_browserwindow_setbounds", + "community": 151, + "community_name": "Mocks Lmgtfy Email", + "norm_label": ".setbounds()" + }, + { + "label": ".getBounds()", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L168", + "_callable": true, + "_origin": "ast", + "id": "test_mocks_electron_browserwindow_getbounds", + "community": 151, + "community_name": "Mocks Lmgtfy Email", + "norm_label": ".getbounds()" + }, + { + "label": ".on()", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L169", + "_callable": true, + "_origin": "ast", + "id": "test_mocks_electron_browserwindow_on", + "community": 151, + "community_name": "Mocks Lmgtfy Email", + "norm_label": ".on()" + }, + { + "label": ".once()", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L170", + "_callable": true, + "_origin": "ast", + "id": "test_mocks_electron_browserwindow_once", + "community": 151, + "community_name": "Mocks Lmgtfy Email", + "norm_label": ".once()" + }, + { + "label": ".removeListener()", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L171", + "_callable": true, + "_origin": "ast", + "id": "test_mocks_electron_browserwindow_removelistener", + "community": 151, + "community_name": "Mocks Lmgtfy Email", + "norm_label": ".removelistener()" + }, + { + "label": ".removeAllListeners()", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L172", + "_callable": true, + "_origin": "ast", + "id": "test_mocks_electron_browserwindow_removealllisteners", + "community": 151, + "community_name": "Mocks Lmgtfy Email", + "norm_label": ".removealllisteners()" + }, + { + "label": ".emit()", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L173", + "_callable": true, + "_origin": "ast", + "id": "test_mocks_electron_browserwindow_emit", + "community": 151, + "community_name": "Mocks Lmgtfy Email", + "norm_label": ".emit()" + }, + { + "label": "shell", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L179", + "_origin": "ast", + "id": "test_mocks_electron_shell", + "community": 126, + "community_name": "Mocks", + "norm_label": "shell" + }, + { + "label": "dialog", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L190", + "_origin": "ast", + "id": "test_mocks_electron_dialog", + "community": 126, + "community_name": "Mocks", + "norm_label": "dialog" + }, + { + "label": "nativeTheme", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L200", + "_origin": "ast", + "id": "test_mocks_electron_nativetheme", + "community": 126, + "community_name": "Mocks", + "norm_label": "nativetheme" + }, + { + "label": "powerMonitor", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L210", + "_origin": "ast", + "id": "test_mocks_electron_powermonitor", + "community": 126, + "community_name": "Mocks", + "norm_label": "powermonitor" + }, + { + "label": "screen", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L221", + "_origin": "ast", + "id": "test_mocks_electron_screen", + "community": 126, + "community_name": "Mocks", + "norm_label": "screen" + }, + { + "label": "clipboard", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L239", + "_origin": "ast", + "id": "test_mocks_electron_clipboard", + "community": 126, + "community_name": "Mocks", + "norm_label": "clipboard" + }, + { + "label": "nativeImage", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L254", + "_origin": "ast", + "id": "test_mocks_electron_nativeimage", + "community": 126, + "community_name": "Mocks", + "norm_label": "nativeimage" + }, + { + "label": "contextBridge", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L264", + "_origin": "ast", + "id": "test_mocks_electron_contextbridge", + "community": 126, + "community_name": "Mocks", + "norm_label": "contextbridge" + }, + { + "label": "Menu", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L271", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "test_mocks_electron_menu", + "community": 126, + "community_name": "Mocks", + "norm_label": "menu" + }, + { + "label": ".setApplicationMenu()", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L272", + "_callable": true, + "_origin": "ast", + "id": "test_mocks_electron_menu_setapplicationmenu", + "community": 126, + "community_name": "Mocks", + "norm_label": ".setapplicationmenu()" + }, + { + "label": ".getApplicationMenu()", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L273", + "_callable": true, + "_origin": "ast", + "id": "test_mocks_electron_menu_getapplicationmenu", + "community": 126, + "community_name": "Mocks", + "norm_label": ".getapplicationmenu()" + }, + { + "label": ".buildFromTemplate()", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L274", + "_callable": true, + "_origin": "ast", + "id": "test_mocks_electron_menu_buildfromtemplate", + "community": 126, + "community_name": "Mocks", + "norm_label": ".buildfromtemplate()" + }, + { + "label": ".popup()", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L275", + "_callable": true, + "_origin": "ast", + "id": "test_mocks_electron_menu_popup", + "community": 126, + "community_name": "Mocks", + "norm_label": ".popup()" + }, + { + "label": ".closePopup()", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L276", + "_callable": true, + "_origin": "ast", + "id": "test_mocks_electron_menu_closepopup", + "community": 126, + "community_name": "Mocks", + "norm_label": ".closepopup()" + }, + { + "label": ".append()", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L277", + "_callable": true, + "_origin": "ast", + "id": "test_mocks_electron_menu_append", + "community": 126, + "community_name": "Mocks", + "norm_label": ".append()" + }, + { + "label": ".insert()", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L278", + "_callable": true, + "_origin": "ast", + "id": "test_mocks_electron_menu_insert", + "community": 126, + "community_name": "Mocks", + "norm_label": ".insert()" + }, + { + "label": "MenuItem", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L282", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "test_mocks_electron_menuitem", + "community": 126, + "community_name": "Mocks", + "norm_label": "menuitem" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L283", + "_callable": true, + "_origin": "ast", + "id": "test_mocks_electron_menuitem_constructor", + "community": 126, + "community_name": "Mocks", + "norm_label": ".constructor()" + }, + { + "label": "Tray", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L286", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "test_mocks_electron_tray", + "community": 126, + "community_name": "Mocks", + "norm_label": "tray" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L287", + "_callable": true, + "_origin": "ast", + "id": "test_mocks_electron_tray_constructor", + "community": 126, + "community_name": "Mocks", + "norm_label": ".constructor()" + }, + { + "label": ".destroy()", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L288", + "_callable": true, + "_origin": "ast", + "id": "test_mocks_electron_tray_destroy", + "community": 126, + "community_name": "Mocks", + "norm_label": ".destroy()" + }, + { + "label": ".setImage()", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L289", + "_callable": true, + "_origin": "ast", + "id": "test_mocks_electron_tray_setimage", + "community": 126, + "community_name": "Mocks", + "norm_label": ".setimage()" + }, + { + "label": ".setToolTip()", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L290", + "_callable": true, + "_origin": "ast", + "id": "test_mocks_electron_tray_settooltip", + "community": 126, + "community_name": "Mocks", + "norm_label": ".settooltip()" + }, + { + "label": ".setContextMenu()", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L291", + "_callable": true, + "_origin": "ast", + "id": "test_mocks_electron_tray_setcontextmenu", + "community": 126, + "community_name": "Mocks", + "norm_label": ".setcontextmenu()" + }, + { + "label": ".on()", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L292", + "_callable": true, + "_origin": "ast", + "id": "test_mocks_electron_tray_on", + "community": 126, + "community_name": "Mocks", + "norm_label": ".on()" + }, + { + "label": "Notification", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L298", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "test_mocks_electron_notification", + "community": 126, + "community_name": "Mocks", + "norm_label": "notification" + }, + { + "label": ".isSupported()", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L299", + "_callable": true, + "_origin": "ast", + "id": "test_mocks_electron_notification_issupported", + "community": 126, + "community_name": "Mocks", + "norm_label": ".issupported()" + }, + { + "label": ".show()", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L300", + "_callable": true, + "_origin": "ast", + "id": "test_mocks_electron_notification_show", + "community": 126, + "community_name": "Mocks", + "norm_label": ".show()" + }, + { + "label": ".close()", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L301", + "_callable": true, + "_origin": "ast", + "id": "test_mocks_electron_notification_close", + "community": 126, + "community_name": "Mocks", + "norm_label": ".close()" + }, + { + "label": ".on()", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L302", + "_callable": true, + "_origin": "ast", + "id": "test_mocks_electron_notification_on", + "community": 126, + "community_name": "Mocks", + "norm_label": ".on()" + }, + { + "label": "session", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L308", + "_origin": "ast", + "id": "test_mocks_electron_session", + "community": 126, + "community_name": "Mocks", + "norm_label": "session" + }, + { + "label": "powerSaveBlocker", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L324", + "_origin": "ast", + "id": "test_mocks_electron_powersaveblocker", + "community": 126, + "community_name": "Mocks", + "norm_label": "powersaveblocker" + }, + { + "label": "net", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L333", + "_origin": "ast", + "id": "test_mocks_electron_net", + "community": 126, + "community_name": "Mocks", + "norm_label": "net" + }, + { + "label": "electron", + "file_type": "code", + "source_file": "test/mocks/electron.ts", + "source_location": "L347", + "_origin": "ast", + "id": "test_mocks_electron_electron", + "community": 126, + "community_name": "Mocks", + "norm_label": "electron" + }, + { + "label": "setup.ts", + "file_type": "code", + "source_file": "test/setup.ts", + "source_location": "L1", + "_origin": "ast", + "id": "test_setup", + "community": 579, + "community_name": "Setup", + "norm_label": "setup.ts" + }, + { + "label": "escape()", + "file_type": "code", + "source_file": "test/setup.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "test_setup_escape", + "community": 579, + "community_name": "Setup", + "norm_label": "escape()" + }, + { + "label": "tsconfig.base.json", + "file_type": "code", + "source_file": "tsconfig.base.json", + "source_location": "L1", + "_origin": "ast", + "id": "tsconfig_base", + "community": 370, + "community_name": "Tsconfigbase", + "norm_label": "tsconfig.base.json" + }, + { + "label": "compilerOptions", + "file_type": "code", + "source_file": "tsconfig.base.json", + "source_location": "L2", + "_origin": "ast", + "id": "tsconfig_base_compileroptions", + "community": 370, + "community_name": "Tsconfigbase", + "norm_label": "compileroptions" + }, + { + "label": "target", + "file_type": "code", + "source_file": "tsconfig.base.json", + "source_location": "L3", + "_origin": "ast", + "id": "tsconfig_base_compileroptions_target", + "community": 370, + "community_name": "Tsconfigbase", + "norm_label": "target" + }, + { + "label": "module", + "file_type": "code", + "source_file": "tsconfig.base.json", + "source_location": "L4", + "_origin": "ast", + "id": "tsconfig_base_compileroptions_module", + "community": 370, + "community_name": "Tsconfigbase", + "norm_label": "module" + }, + { + "label": "moduleResolution", + "file_type": "code", + "source_file": "tsconfig.base.json", + "source_location": "L5", + "_origin": "ast", + "id": "tsconfig_base_compileroptions_moduleresolution", + "community": 370, + "community_name": "Tsconfigbase", + "norm_label": "moduleresolution" + }, + { + "label": "strict", + "file_type": "code", + "source_file": "tsconfig.base.json", + "source_location": "L6", + "_origin": "ast", + "id": "tsconfig_base_compileroptions_strict", + "community": 370, + "community_name": "Tsconfigbase", + "norm_label": "strict" + }, + { + "label": "skipLibCheck", + "file_type": "code", + "source_file": "tsconfig.base.json", + "source_location": "L7", + "_origin": "ast", + "id": "tsconfig_base_compileroptions_skiplibcheck", + "community": 370, + "community_name": "Tsconfigbase", + "norm_label": "skiplibcheck" + }, + { + "label": "noEmit", + "file_type": "code", + "source_file": "tsconfig.base.json", + "source_location": "L8", + "_origin": "ast", + "id": "tsconfig_base_compileroptions_noemit", + "community": 370, + "community_name": "Tsconfigbase", + "norm_label": "noemit" + }, + { + "label": "types", + "file_type": "code", + "source_file": "tsconfig.base.json", + "source_location": "L9", + "_origin": "ast", + "id": "tsconfig_base_compileroptions_types", + "community": 370, + "community_name": "Tsconfigbase", + "norm_label": "types" + }, + { + "label": "node", + "file_type": "concept", + "source_file": "tsconfig.base.json", + "source_location": "L9", + "_origin": "ast", + "id": "tsconfig_base_json_ref_node", + "community": 370, + "community_name": "Tsconfigbase", + "norm_label": "node" + }, + { + "label": "verify-headless.ps1", + "file_type": "code", + "source_file": "verify-headless.ps1", + "source_location": "L1", + "_origin": "ast", + "id": "verify_headless", + "community": 620, + "community_name": "Verifyheadless", + "norm_label": "verify-headless.ps1" + }, + { + "label": "vitest.config.ts", + "file_type": "code", + "source_file": "vitest.config.ts", + "source_location": "L1", + "_origin": "ast", + "id": "vitest_config", + "community": 580, + "community_name": "Vitestconfig", + "norm_label": "vitest.config.ts" + }, + { + "label": "bypassElectronRendererShims()", + "file_type": "code", + "source_file": "vitest.config.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "vitest_config_bypasselectronrenderershims", + "community": 580, + "community_name": "Vitestconfig", + "norm_label": "bypasselectronrenderershims()" + }, + { + "label": "functions.php", + "file_type": "code", + "source_file": "wp-content/themes/blocksy-child/functions.php", + "source_location": "L1", + "_origin": "ast", + "id": "wp_content_themes_blocksy_child_functions", + "community": 537, + "community_name": "Wpcontent Themes Blocksychild", + "norm_label": "functions.php" + }, + { + "label": "blocksy_child_enqueue_styles()", + "file_type": "code", + "source_file": "wp-content/themes/blocksy-child/functions.php", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "id": "wp_content_themes_blocksy_child_functions_blocksy_child_enqueue_styles", + "community": 537, + "community_name": "Wpcontent Themes Blocksychild", + "norm_label": "blocksy_child_enqueue_styles()" + }, + { + "label": "blocksy_child_container_background_fix()", + "file_type": "code", + "source_file": "wp-content/themes/blocksy-child/functions.php", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "wp_content_themes_blocksy_child_functions_blocksy_child_container_background_fix", + "community": 537, + "community_name": "Wpcontent Themes Blocksychild", + "norm_label": "blocksy_child_container_background_fix()" + } + ], + "links": [ + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/desktop/main.js", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_desktop_main", + "target": "apps_desktop_main_app_browserwindow_tray_menu", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/desktop/main.js", + "source_location": "L153", + "weight": 1.0, + "_origin": "ast", + "source": "apps_desktop_main", + "target": "apps_desktop_main_createtray", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/desktop/main.js", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_desktop_main", + "target": "apps_desktop_main_createwindow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/desktop/main.js", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_desktop_main", + "target": "apps_desktop_main_path", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/desktop/main.js", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_desktop_main", + "target": "apps_desktop_main_startwebsocketserver", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/desktop/main.js", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_desktop_main", + "target": "apps_desktop_main_websocket", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/desktop/package.json", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_desktop_package", + "target": "apps_desktop_package_build", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/desktop/package.json", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_desktop_package", + "target": "apps_desktop_package_dependencies", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/desktop/package.json", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_desktop_package", + "target": "apps_desktop_package_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/desktop/package.json", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_desktop_package", + "target": "apps_desktop_package_devdependencies", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/desktop/package.json", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_desktop_package", + "target": "apps_desktop_package_main", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/desktop/package.json", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_desktop_package", + "target": "apps_desktop_package_name", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/desktop/package.json", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_desktop_package", + "target": "apps_desktop_package_scripts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/desktop/package.json", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_desktop_package", + "target": "apps_desktop_package_version", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/desktop/package.json", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_desktop_package_scripts", + "target": "apps_desktop_package_scripts_build", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/desktop/package.json", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_desktop_package_scripts", + "target": "apps_desktop_package_scripts_dev", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/desktop/package.json", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_desktop_package_scripts", + "target": "apps_desktop_package_scripts_dist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/desktop/package.json", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_desktop_package_scripts", + "target": "apps_desktop_package_scripts_start", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/desktop/package.json", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_desktop_package_scripts", + "target": "apps_desktop_package_scripts_start_headless", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/desktop/package.json", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_desktop_package_build", + "target": "apps_desktop_package_build_appid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/desktop/package.json", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_desktop_package_build", + "target": "apps_desktop_package_build_directories", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/desktop/package.json", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_desktop_package_build", + "target": "apps_desktop_package_build_files", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/desktop/package.json", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_desktop_package_build", + "target": "apps_desktop_package_build_linux", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/desktop/package.json", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_desktop_package_build", + "target": "apps_desktop_package_build_mac", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/desktop/package.json", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_desktop_package_build", + "target": "apps_desktop_package_build_nsis", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/desktop/package.json", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_desktop_package_build", + "target": "apps_desktop_package_build_productname", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/desktop/package.json", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_desktop_package_build", + "target": "apps_desktop_package_build_win", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/desktop/package.json", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_desktop_package_build_directories", + "target": "apps_desktop_package_directories_output", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/desktop/package.json", + "source_location": "L19", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_desktop_package_build_files", + "target": "ref_index_html", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/desktop/package.json", + "source_location": "L19", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_desktop_package_build_files", + "target": "ref_main_js", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/desktop/package.json", + "source_location": "L19", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_desktop_package_build_files", + "target": "ref_package_json", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/desktop/package.json", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_desktop_package_build_win", + "target": "apps_desktop_package_win_icon", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/desktop/package.json", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_desktop_package_build_win", + "target": "apps_desktop_package_win_target", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/desktop/package.json", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_desktop_package_build_nsis", + "target": "apps_desktop_package_nsis_createdesktopshortcut", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/desktop/package.json", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_desktop_package_build_nsis", + "target": "apps_desktop_package_nsis_createstartmenushortcut", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/desktop/package.json", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_desktop_package_build_nsis", + "target": "apps_desktop_package_nsis_oneclick", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/desktop/package.json", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_desktop_package_build_nsis", + "target": "apps_desktop_package_nsis_permachine", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/desktop/package.json", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_desktop_package_build_nsis", + "target": "apps_desktop_package_nsis_shortcutname", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/desktop/package.json", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_desktop_package_build_mac", + "target": "apps_desktop_package_mac_target", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/desktop/package.json", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_desktop_package_build_linux", + "target": "apps_desktop_package_linux_target", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/desktop/package.json", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_desktop_package_dependencies", + "target": "apps_desktop_package_dependencies_ws", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/desktop/package.json", + "source_location": "L43", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_desktop_package_dependencies_ws", + "target": "apps_desktop_package_json_ws", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/desktop/package.json", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_desktop_package_devdependencies", + "target": "apps_desktop_package_devdependencies_electron", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/desktop/package.json", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_desktop_package_devdependencies", + "target": "apps_desktop_package_devdependencies_electron_builder", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/desktop/package.json", + "source_location": "L46", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_desktop_package_devdependencies_electron", + "target": "apps_desktop_package_json_electron", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/desktop/package.json", + "source_location": "L47", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_desktop_package_devdependencies_electron_builder", + "target": "apps_desktop_package_json_electron_builder", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/desktop/start-server.js", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_desktop_start_server", + "target": "apps_desktop_start_server_electronprocess", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/desktop/start-server.js", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_desktop_start_server", + "target": "apps_desktop_start_server_path", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/desktop/start-server.js", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_desktop_start_server", + "target": "apps_desktop_start_server_spawn", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/desktop/websocket-server.js", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_desktop_websocket_server", + "target": "apps_desktop_websocket_server_websocket", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/desktop/websocket-server.js", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_desktop_websocket_server", + "target": "apps_desktop_websocket_server_wss", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron-builder.config.cjs", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_builder_config", + "target": "apps_electron_vite_project_electron_builder_config_extraresources", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron-builder.config.cjs", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_builder_config", + "target": "apps_electron_vite_project_electron_builder_config_findfile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron-builder.config.cjs", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_builder_config", + "target": "apps_electron_vite_project_electron_builder_config_fs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron-builder.config.cjs", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_builder_config", + "target": "apps_electron_vite_project_electron_builder_config_path", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron-builder.config.cjs", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_builder_config", + "target": "apps_electron_vite_project_electron_builder_config_tesseractcorewasmpath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron-builder.config.cjs", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_builder_config", + "target": "apps_electron_vite_project_electron_builder_config_tesseractlang", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron-builder.config.cjs", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_builder_config", + "target": "apps_electron_vite_project_electron_builder_config_wasm", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron-builder.config.cjs", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_builder_config", + "target": "apps_electron_vite_project_electron_builder_config_windowsoutputdirmarker", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron-builder.config.cjs", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_builder_config", + "target": "apps_electron_vite_project_electron_builder_config_workspaceroot", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron-builder.config.cjs", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_builder_config_tesseractcorewasmpath", + "target": "apps_electron_vite_project_electron_builder_config_findfile", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/__tests__/handshakeAcceptSafeOpts.regression.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_tests_handshakeacceptsafeopts_regression_test", + "target": "apps_electron_vite_project_electron_handshakeacceptsafeopts", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/__tests__/handshakeAcceptSafeOpts.regression.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_tests_handshakeacceptsafeopts_regression_test", + "target": "apps_electron_vite_project_electron_handshakeacceptsafeopts_buildhandshakeacceptsafeopts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/bootstrapUserData.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_bootstrapuserdata", + "target": "apps_electron_vite_project_electron_bootstrapuserdata_customuserdatapath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/bootstrapUserData.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_bootstrapuserdata", + "target": "apps_electron_vite_project_electron_bootstrapuserdata_getwrdeskuserdatapath", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/bootstrapUserData.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_bootstrapuserdata", + "target": "apps_electron_vite_project_electron_userdatabootstrapstate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/bootstrapUserData.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_bootstrapuserdata", + "target": "apps_electron_vite_project_electron_userdatabootstrapstate_isuserdatapathbootstrapped", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/bootstrapUserData.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_bootstrapuserdata", + "target": "apps_electron_vite_project_electron_userdatabootstrapstate_markuserdatapathbootstrapped", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_bootstrapuserdata", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/userDataBootstrapPersistence.test.ts", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_userdatabootstrappersistence_test_runbootstrapmodule", + "target": "apps_electron_vite_project_electron_bootstrapuserdata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher", + "target": "apps_electron_vite_project_electron_diffwatcher_binarysentinel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher", + "target": "apps_electron_vite_project_electron_diffwatcher_buildunifiedstylediff", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher", + "target": "apps_electron_vite_project_electron_diffwatcher_createdifftriggerid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher", + "target": "apps_electron_vite_project_electron_diffwatcher_default_allowed_extensions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L512", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher", + "target": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher", + "target": "apps_electron_vite_project_electron_diffwatcher_isallowedextension", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher", + "target": "apps_electron_vite_project_electron_diffwatcher_isbinarybuffer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher", + "target": "apps_electron_vite_project_electron_diffwatcher_parsebinarysentinel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher", + "target": "apps_electron_vite_project_electron_diffwatcher_parsepathonly", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher", + "target": "apps_electron_vite_project_electron_diffwatcher_pathonlysnapshot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher", + "target": "apps_electron_vite_project_electron_diffwatcher_safelstatsync", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher", + "target": "apps_electron_vite_project_electron_diffwatcher_scanfoldersnapshots", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L155", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher", + "target": "apps_electron_vite_project_electron_diffwatcher_scanresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher", + "target": "apps_electron_vite_project_electron_diffwatcher_snapshotfile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher", + "target": "apps_electron_vite_project_electron_diffwatcher_truncatetext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher", + "target": "apps_electron_vite_project_electron_diffwatcher_watcherentry", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher", + "target": "packages_shared_src_wrchat_difftrigger", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher", + "target": "packages_shared_src_wrchat_difftrigger_difftrigger", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/presets.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_presets", + "target": "apps_electron_vite_project_electron_diffwatcher", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L945", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_diffwatcher", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher_isallowedextension", + "target": "apps_electron_vite_project_electron_diffwatcher_default_allowed_extensions" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L181", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher_scanfoldersnapshots", + "target": "apps_electron_vite_project_electron_diffwatcher_isallowedextension", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L201", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher_scanfoldersnapshots", + "target": "apps_electron_vite_project_electron_diffwatcher_pathonlysnapshot", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L321", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_computediff", + "target": "apps_electron_vite_project_electron_diffwatcher_parsepathonly", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher_snapshotfile", + "target": "apps_electron_vite_project_electron_diffwatcher_isbinarybuffer", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher_snapshotfile", + "target": "apps_electron_vite_project_electron_diffwatcher_binarysentinel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L320", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_computediff", + "target": "apps_electron_vite_project_electron_diffwatcher_parsebinarysentinel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L287", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_computediff", + "target": "apps_electron_vite_project_electron_diffwatcher_safelstatsync", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L392", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_start", + "target": "apps_electron_vite_project_electron_diffwatcher_safelstatsync", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L183", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher_scanfoldersnapshots", + "target": "apps_electron_vite_project_electron_diffwatcher_safelstatsync", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L207", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher_scanfoldersnapshots", + "target": "apps_electron_vite_project_electron_diffwatcher_snapshotfile", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher_snapshotfile", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L134", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher_buildunifiedstylediff", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L358", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_computediff", + "target": "apps_electron_vite_project_electron_diffwatcher_buildunifiedstylediff", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L327", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_computediff", + "target": "apps_electron_vite_project_electron_diffwatcher_truncatetext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L150", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher_truncatetext", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L292", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_computediff", + "target": "apps_electron_vite_project_electron_diffwatcher_scanfoldersnapshots", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L403", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_start", + "target": "apps_electron_vite_project_electron_diffwatcher_scanfoldersnapshots", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L229", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice", + "target": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_cleardebounce", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L272", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice", + "target": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_computediff", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L255", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice", + "target": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_disablewatcher", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L498", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice", + "target": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_getstatus", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L475", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice", + "target": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_iswatching", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L217", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice", + "target": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_ondiffready", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L219", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice", + "target": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_onerror", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L484", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice", + "target": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_runnow", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L236", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice", + "target": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_schedulecomputediff", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L221", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice", + "target": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_setondiffready", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L225", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice", + "target": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_setonerror", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L376", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice", + "target": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_start", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L457", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice", + "target": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_stop", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L469", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice", + "target": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_stopall", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L945", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L369", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_computediff", + "target": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_ondiffready", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L417", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_start", + "target": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_ondiffready", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L266", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_disablewatcher", + "target": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_onerror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L493", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_runnow", + "target": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_onerror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L247", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_schedulecomputediff", + "target": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_onerror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L389", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_start", + "target": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_onerror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L258", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_disablewatcher", + "target": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_cleardebounce", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L487", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_runnow", + "target": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_cleardebounce", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L237", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_schedulecomputediff", + "target": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_cleardebounce", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L460", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_stop", + "target": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_cleardebounce", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L242", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_schedulecomputediff", + "target": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_computediff", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L432", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_start", + "target": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_schedulecomputediff", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L284", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_computediff", + "target": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_disablewatcher", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L445", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_start", + "target": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_disablewatcher", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L351", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_computediff", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L489", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_runnow", + "target": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_computediff", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L382", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_start", + "target": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_stop", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L376", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_start", + "target": "packages_shared_src_wrchat_difftrigger_difftrigger", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/diffWatcher.ts", + "source_location": "L471", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_stopall", + "target": "apps_electron_vite_project_electron_diffwatcher_diffwatcherservice_stop", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/electron-env.d.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_electron_env_d", + "target": "apps_electron_vite_project_electron_electron_env_d_nodejs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/electron-env.d.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_electron_env_d", + "target": "apps_electron_vite_project_electron_electron_env_d_processenv", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/electron-env.d.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_electron_env_d", + "target": "apps_electron_vite_project_electron_electron_env_d_window", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/handshakeAcceptSafeOpts.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_handshakeacceptsafeopts", + "target": "apps_electron_vite_project_electron_handshakeacceptsafeopts_buildhandshakeacceptsafeopts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/handshakeAcceptSafeOpts.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_handshakeacceptsafeopts", + "target": "apps_electron_vite_project_electron_handshakeacceptsafeopts_optstring", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/handshakeAcceptSafeOpts.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_handshakeacceptsafeopts", + "target": "apps_electron_vite_project_electron_handshakeacceptsafeopts_safekeyagreement", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/handshakeAcceptSafeOpts.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_handshakeacceptsafeopts", + "target": "apps_electron_vite_project_electron_handshakeacceptsafeopts_safepolicyselections", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/handshakeAcceptSafeOpts.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_handshakeacceptsafeopts", + "target": "apps_electron_vite_project_electron_handshakeacceptsafeopts_trimstr", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshakeRefactorRegression.matrix.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshakerefactorregression_matrix_test", + "target": "apps_electron_vite_project_electron_handshakeacceptsafeopts", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_preload", + "target": "apps_electron_vite_project_electron_handshakeacceptsafeopts", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/handshakeAcceptSafeOpts.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_handshakeacceptsafeopts_optstring", + "target": "apps_electron_vite_project_electron_handshakeacceptsafeopts_trimstr", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/handshakeAcceptSafeOpts.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_handshakeacceptsafeopts_safekeyagreement", + "target": "apps_electron_vite_project_electron_handshakeacceptsafeopts_trimstr", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/handshakeAcceptSafeOpts.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_handshakeacceptsafeopts_safepolicyselections", + "target": "apps_electron_vite_project_electron_handshakeacceptsafeopts_trimstr", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/handshakeAcceptSafeOpts.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_handshakeacceptsafeopts_buildhandshakeacceptsafeopts", + "target": "apps_electron_vite_project_electron_handshakeacceptsafeopts_optstring", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/handshakeAcceptSafeOpts.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_handshakeacceptsafeopts_buildhandshakeacceptsafeopts", + "target": "apps_electron_vite_project_electron_handshakeacceptsafeopts_safekeyagreement", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/handshakeAcceptSafeOpts.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_handshakeacceptsafeopts_buildhandshakeacceptsafeopts", + "target": "apps_electron_vite_project_electron_handshakeacceptsafeopts_safepolicyselections", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshakeRefactorRegression.matrix.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshakerefactorregression_matrix_test", + "target": "apps_electron_vite_project_electron_handshakeacceptsafeopts_buildhandshakeacceptsafeopts", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_preload", + "target": "apps_electron_vite_project_electron_handshakeacceptsafeopts_buildhandshakeacceptsafeopts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/ipc/db.ts", + "source_location": "L165", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_ipc_db", + "target": "apps_electron_vite_project_electron_ipc_db_getconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/ipc/db.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_ipc_db", + "target": "apps_electron_vite_project_electron_ipc_db_getpostgresadapter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/ipc/db.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_ipc_db", + "target": "apps_electron_vite_project_electron_ipc_db_redactpassword", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/ipc/db.ts", + "source_location": "L196", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_ipc_db", + "target": "apps_electron_vite_project_electron_ipc_db_registerdbhandlers", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/ipc/db.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_ipc_db", + "target": "apps_electron_vite_project_electron_ipc_db_syncchromedatatopostgres", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/ipc/db.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_ipc_db", + "target": "apps_electron_vite_project_electron_ipc_db_testconnection", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/ipc/db.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_ipc_db", + "target": "apps_electron_vite_project_electron_storage_postgresadapter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/ipc/db.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_ipc_db", + "target": "apps_electron_vite_project_electron_storage_postgresadapter_postgresadapter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/ipc/db.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_ipc_db", + "target": "apps_electron_vite_project_electron_storage_postgresadapter_postgresconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/ipc/db.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_ipc_db", + "target": "packages_shared_src_storage_storageadapter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/ipc/db.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_ipc_db", + "target": "packages_shared_src_storage_storageadapter_adapterresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L958", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_ipc_db", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L958", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_ipc_db_getpostgresadapter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/ipc/db.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_ipc_db_testconnection", + "target": "apps_electron_vite_project_electron_ipc_db_redactpassword", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/ipc/db.ts", + "source_location": "L201", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_ipc_db_registerdbhandlers", + "target": "apps_electron_vite_project_electron_ipc_db_testconnection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/ipc/db.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_ipc_db_testconnection", + "target": "apps_electron_vite_project_electron_storage_postgresadapter_postgresadapter_connect" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L958", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_ipc_db_testconnection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/ipc/db.ts", + "source_location": "L205", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_ipc_db_registerdbhandlers", + "target": "apps_electron_vite_project_electron_ipc_db_syncchromedatatopostgres", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L958", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_ipc_db_syncchromedatatopostgres", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/ipc/db.ts", + "source_location": "L209", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_ipc_db_registerdbhandlers", + "target": "apps_electron_vite_project_electron_ipc_db_getconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L958", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_ipc_db_getconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L958", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_ipc_db_registerdbhandlers", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1402", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_createwindow", + "target": "apps_electron_vite_project_electron_ipc_db_registerdbhandlers", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/capture.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_capture", + "target": "apps_electron_vite_project_electron_lmgtfy_capture_capturescreenshot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/capture.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_capture", + "target": "apps_electron_vite_project_electron_lmgtfy_capture_capturesroot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/capture.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_capture", + "target": "apps_electron_vite_project_electron_lmgtfy_capture_dateddir", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/capture.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_capture", + "target": "apps_electron_vite_project_electron_lmgtfy_capture_ensuredir", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/capture.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_capture", + "target": "apps_electron_vite_project_electron_lmgtfy_capture_startregionstream", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/capture.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_capture", + "target": "apps_electron_vite_project_electron_lmgtfy_overlay", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/capture.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_capture", + "target": "apps_electron_vite_project_electron_lmgtfy_overlay_selection", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L935", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_lmgtfy_capture", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice", + "target": "apps_electron_vite_project_electron_lmgtfy_capture", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/capture.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_capture_dateddir", + "target": "apps_electron_vite_project_electron_lmgtfy_capture_capturesroot", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/capture.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_capture_dateddir", + "target": "apps_electron_vite_project_electron_lmgtfy_capture_ensuredir", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/capture.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_capture_capturescreenshot", + "target": "apps_electron_vite_project_electron_lmgtfy_capture_dateddir", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L935", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_lmgtfy_capture_capturescreenshot", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1694", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_createwindow", + "target": "apps_electron_vite_project_electron_lmgtfy_capture_capturescreenshot", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L12272", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_executetriggerfromextension", + "target": "apps_electron_vite_project_electron_lmgtfy_capture_capturescreenshot", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L2353", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_updatetraymenu", + "target": "apps_electron_vite_project_electron_lmgtfy_capture_capturescreenshot", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice", + "target": "apps_electron_vite_project_electron_lmgtfy_capture_capturescreenshot", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L300", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_captureallscreens", + "target": "apps_electron_vite_project_electron_lmgtfy_capture_capturescreenshot" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L935", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_lmgtfy_capture_startregionstream", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1772", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_createwindow", + "target": "apps_electron_vite_project_electron_lmgtfy_capture_startregionstream", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L12283", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_executetriggerfromextension", + "target": "apps_electron_vite_project_electron_lmgtfy_capture_startregionstream", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L2360", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_updatetraymenu", + "target": "apps_electron_vite_project_electron_lmgtfy_capture_startregionstream", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/ipc.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_ipc", + "target": "apps_electron_vite_project_electron_lmgtfy_ipc_captureeventpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/ipc.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_ipc", + "target": "apps_electron_vite_project_electron_lmgtfy_ipc_capturemeta", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/ipc.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_ipc", + "target": "apps_electron_vite_project_electron_lmgtfy_ipc_capturemode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/ipc.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_ipc", + "target": "apps_electron_vite_project_electron_lmgtfy_ipc_emitcapture", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/ipc.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_ipc", + "target": "apps_electron_vite_project_electron_lmgtfy_ipc_lmgtfychannels", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/ipc.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_ipc", + "target": "apps_electron_vite_project_electron_lmgtfy_ipc_registerhandler", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/ipc.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_ipc", + "target": "apps_electron_vite_project_electron_lmgtfy_ipc_unregisterall", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L933", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_lmgtfy_ipc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L933", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_lmgtfy_ipc_lmgtfychannels", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L933", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_lmgtfy_ipc_emitcapture", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1788", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_createwindow", + "target": "apps_electron_vite_project_electron_lmgtfy_ipc_emitcapture", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L12166", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_postscreenshottopopup", + "target": "apps_electron_vite_project_electron_lmgtfy_ipc_emitcapture", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L12194", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_poststreamtopopup", + "target": "apps_electron_vite_project_electron_lmgtfy_ipc_emitcapture", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L933", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_lmgtfy_ipc_registerhandler", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1398", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_createwindow", + "target": "apps_electron_vite_project_electron_lmgtfy_ipc_registerhandler", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/overlay.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_overlay", + "target": "apps_electron_vite_project_electron_lmgtfy_overlay_activeoverlays", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/overlay.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_overlay", + "target": "apps_electron_vite_project_electron_lmgtfy_overlay_beginoverlay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/overlay.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_overlay", + "target": "apps_electron_vite_project_electron_lmgtfy_overlay_cancelactiveselection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/overlay.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_overlay", + "target": "apps_electron_vite_project_electron_lmgtfy_overlay_closealloverlays", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/overlay.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_overlay", + "target": "apps_electron_vite_project_electron_lmgtfy_overlay_selection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/overlay.ts", + "source_location": "L237", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_overlay", + "target": "apps_electron_vite_project_electron_lmgtfy_overlay_showstreamtriggeroverlay", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L934", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_lmgtfy_overlay", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice", + "target": "apps_electron_vite_project_electron_lmgtfy_overlay", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice", + "target": "apps_electron_vite_project_electron_lmgtfy_overlay_selection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/overlay.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_overlay_beginoverlay", + "target": "apps_electron_vite_project_electron_lmgtfy_overlay_closealloverlays", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L934", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_lmgtfy_overlay_closealloverlays", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1690", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_createwindow", + "target": "apps_electron_vite_project_electron_lmgtfy_overlay_closealloverlays", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/lmgtfy/overlay.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_overlay_beginoverlay", + "target": "test_mocks_electron_browserwindow" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/lmgtfy/overlay.ts", + "source_location": "L206", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_overlay_beginoverlay", + "target": "test_mocks_electron_browserwindow_focus" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/lmgtfy/overlay.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_overlay_beginoverlay", + "target": "test_mocks_electron_browserwindow_loadurl" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/lmgtfy/overlay.ts", + "source_location": "L219", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_overlay_beginoverlay", + "target": "test_mocks_electron_browserwindow_on" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/lmgtfy/overlay.ts", + "source_location": "L205", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_overlay_beginoverlay", + "target": "test_mocks_electron_browserwindow_show" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L934", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_lmgtfy_overlay_beginoverlay", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L2225", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_createwindow", + "target": "apps_electron_vite_project_electron_lmgtfy_overlay_beginoverlay", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/lmgtfy/overlay.ts", + "source_location": "L271", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_overlay_showstreamtriggeroverlay", + "target": "test_mocks_electron_browserwindow" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/lmgtfy/overlay.ts", + "source_location": "L336", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_overlay_showstreamtriggeroverlay", + "target": "test_mocks_electron_browserwindow_focus" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/lmgtfy/overlay.ts", + "source_location": "L275", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_overlay_showstreamtriggeroverlay", + "target": "test_mocks_electron_browserwindow_loadurl" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/lmgtfy/overlay.ts", + "source_location": "L332", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_overlay_showstreamtriggeroverlay", + "target": "test_mocks_electron_browserwindow_on" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/lmgtfy/overlay.ts", + "source_location": "L336", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_overlay_showstreamtriggeroverlay", + "target": "test_mocks_electron_browserwindow_once" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/lmgtfy/overlay.ts", + "source_location": "L336", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_overlay_showstreamtriggeroverlay", + "target": "test_mocks_electron_browserwindow_show" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L934", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_lmgtfy_overlay_showstreamtriggeroverlay", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L2276", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_createwindow", + "target": "apps_electron_vite_project_electron_lmgtfy_overlay_showstreamtriggeroverlay", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L12282", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_executetriggerfromextension", + "target": "apps_electron_vite_project_electron_lmgtfy_overlay_showstreamtriggeroverlay", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L2358", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_updatetraymenu", + "target": "apps_electron_vite_project_electron_lmgtfy_overlay_showstreamtriggeroverlay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/presets.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_presets", + "target": "apps_electron_vite_project_electron_lmgtfy_presets_ensuredir", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/presets.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_presets", + "target": "apps_electron_vite_project_electron_lmgtfy_presets_getdiffwatcherspath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/presets.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_presets", + "target": "apps_electron_vite_project_electron_lmgtfy_presets_getfilepath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/presets.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_presets", + "target": "apps_electron_vite_project_electron_lmgtfy_presets_getrootdir", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/presets.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_presets", + "target": "apps_electron_vite_project_electron_lmgtfy_presets_gettaggedtriggerspath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/presets.ts", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_presets", + "target": "apps_electron_vite_project_electron_lmgtfy_presets_loaddiffwatcherslist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/presets.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_presets", + "target": "apps_electron_vite_project_electron_lmgtfy_presets_loadpresets", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/presets.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_presets", + "target": "apps_electron_vite_project_electron_lmgtfy_presets_loadtaggedtriggerslist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/presets.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_presets", + "target": "apps_electron_vite_project_electron_lmgtfy_presets_normalisepresettag", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/presets.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_presets", + "target": "apps_electron_vite_project_electron_lmgtfy_presets_presetsfile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/presets.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_presets", + "target": "apps_electron_vite_project_electron_lmgtfy_presets_regionpreset", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/presets.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_presets", + "target": "apps_electron_vite_project_electron_lmgtfy_presets_savediffwatcherslist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/presets.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_presets", + "target": "apps_electron_vite_project_electron_lmgtfy_presets_savepresets", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/presets.ts", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_presets", + "target": "apps_electron_vite_project_electron_lmgtfy_presets_savetaggedtriggerslist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/presets.ts", + "source_location": "L134", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_presets", + "target": "apps_electron_vite_project_electron_lmgtfy_presets_upsertregion", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/presets.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_presets", + "target": "packages_shared_src_wrchat_difftrigger_difftrigger", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L936", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_lmgtfy_presets", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/presets.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_presets_ensuredir", + "target": "apps_electron_vite_project_electron_lmgtfy_presets_getrootdir", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/presets.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_presets_getdiffwatcherspath", + "target": "apps_electron_vite_project_electron_lmgtfy_presets_getrootdir", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/presets.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_presets_getfilepath", + "target": "apps_electron_vite_project_electron_lmgtfy_presets_getrootdir", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/presets.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_presets_gettaggedtriggerspath", + "target": "apps_electron_vite_project_electron_lmgtfy_presets_getrootdir", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/presets.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_presets_loadpresets", + "target": "apps_electron_vite_project_electron_lmgtfy_presets_getfilepath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/presets.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_presets_savepresets", + "target": "apps_electron_vite_project_electron_lmgtfy_presets_getfilepath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/presets.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_presets_loadtaggedtriggerslist", + "target": "apps_electron_vite_project_electron_lmgtfy_presets_gettaggedtriggerspath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/presets.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_presets_savetaggedtriggerslist", + "target": "apps_electron_vite_project_electron_lmgtfy_presets_gettaggedtriggerspath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/presets.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_presets_loaddiffwatcherslist", + "target": "apps_electron_vite_project_electron_lmgtfy_presets_getdiffwatcherspath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/presets.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_presets_savediffwatcherslist", + "target": "apps_electron_vite_project_electron_lmgtfy_presets_getdiffwatcherspath", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L936", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_lmgtfy_presets_normalisepresettag", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L12246", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_executetriggerfromextension", + "target": "apps_electron_vite_project_electron_lmgtfy_presets_normalisepresettag", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/presets.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_presets_loaddiffwatcherslist", + "target": "apps_electron_vite_project_electron_lmgtfy_presets_ensuredir", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/presets.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_presets_loadpresets", + "target": "apps_electron_vite_project_electron_lmgtfy_presets_ensuredir", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/presets.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_presets_loadtaggedtriggerslist", + "target": "apps_electron_vite_project_electron_lmgtfy_presets_ensuredir", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/presets.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_presets_savediffwatcherslist", + "target": "apps_electron_vite_project_electron_lmgtfy_presets_ensuredir", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/presets.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_presets_savepresets", + "target": "apps_electron_vite_project_electron_lmgtfy_presets_ensuredir", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/presets.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_presets_savetaggedtriggerslist", + "target": "apps_electron_vite_project_electron_lmgtfy_presets_ensuredir", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/presets.ts", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_presets_upsertregion", + "target": "apps_electron_vite_project_electron_lmgtfy_presets_loadpresets", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L936", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_lmgtfy_presets_loadpresets", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1398", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_createwindow", + "target": "apps_electron_vite_project_electron_lmgtfy_presets_loadpresets", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L12244", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_executetriggerfromextension", + "target": "apps_electron_vite_project_electron_lmgtfy_presets_loadpresets", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L2338", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_updatetraymenu", + "target": "apps_electron_vite_project_electron_lmgtfy_presets_loadpresets", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/lmgtfy/presets.ts", + "source_location": "L144", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_lmgtfy_presets_upsertregion", + "target": "apps_electron_vite_project_electron_lmgtfy_presets_savepresets", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L936", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_lmgtfy_presets_loadtaggedtriggerslist", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L936", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_lmgtfy_presets_savetaggedtriggerslist", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L936", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_lmgtfy_presets_loaddiffwatcherslist", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1081", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_persistdiffwatcherdisabled", + "target": "apps_electron_vite_project_electron_lmgtfy_presets_loaddiffwatcherslist", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1161", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_startpersisteddiffwatchers", + "target": "apps_electron_vite_project_electron_lmgtfy_presets_loaddiffwatcherslist", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1095", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_wirediffwatcherhostcallbacks", + "target": "apps_electron_vite_project_electron_lmgtfy_presets_loaddiffwatcherslist", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L936", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_lmgtfy_presets_savediffwatcherslist", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1085", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_persistdiffwatcherdisabled", + "target": "apps_electron_vite_project_electron_lmgtfy_presets_savediffwatcherslist", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L936", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_lmgtfy_presets_upsertregion", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1399", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_createwindow", + "target": "apps_electron_vite_project_electron_lmgtfy_presets_upsertregion", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L144", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_gmail_api", + "target": "apps_electron_vite_project_electron_mailguard_gmail_api_buildauthurl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L500", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_gmail_api", + "target": "apps_electron_vite_project_electron_mailguard_gmail_api_decodebase64url", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L614", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_gmail_api", + "target": "apps_electron_vite_project_electron_mailguard_gmail_api_deletecredentialsfromdisk", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L544", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_gmail_api", + "target": "apps_electron_vite_project_electron_mailguard_gmail_api_disconnectgmailapi", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L307", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_gmail_api", + "target": "apps_electron_vite_project_electron_mailguard_gmail_api_ensurevalidtoken", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L203", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_gmail_api", + "target": "apps_electron_vite_project_electron_mailguard_gmail_api_exchangecodefortokens", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L553", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_gmail_api", + "target": "apps_electron_vite_project_electron_mailguard_gmail_api_exportcredentials", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L482", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_gmail_api", + "target": "apps_electron_vite_project_electron_mailguard_gmail_api_extractattachmentsfromparts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L462", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_gmail_api", + "target": "apps_electron_vite_project_electron_mailguard_gmail_api_extractbodyfromparts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L323", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_gmail_api", + "target": "apps_electron_vite_project_electron_mailguard_gmail_api_fetchemailbyid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L405", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_gmail_api", + "target": "apps_electron_vite_project_electron_mailguard_gmail_api_findemailbypreview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L573", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_gmail_api", + "target": "apps_electron_vite_project_electron_mailguard_gmail_api_getcredentialspath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_gmail_api", + "target": "apps_electron_vite_project_electron_mailguard_gmail_api_getoauthcredentials", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_gmail_api", + "target": "apps_electron_vite_project_electron_mailguard_gmail_api_gmailmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L509", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_gmail_api", + "target": "apps_electron_vite_project_electron_mailguard_gmail_api_htmltotext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L564", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_gmail_api", + "target": "apps_electron_vite_project_electron_mailguard_gmail_api_importcredentials", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_gmail_api", + "target": "apps_electron_vite_project_electron_mailguard_gmail_api_isgmailapiauthenticated", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_gmail_api", + "target": "apps_electron_vite_project_electron_mailguard_gmail_api_isgmailapiconfigured", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L595", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_gmail_api", + "target": "apps_electron_vite_project_electron_mailguard_gmail_api_loadcredentialsfromdisk", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_gmail_api", + "target": "apps_electron_vite_project_electron_mailguard_gmail_api_oauth_config", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L425", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_gmail_api", + "target": "apps_electron_vite_project_electron_mailguard_gmail_api_parsegmailmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L253", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_gmail_api", + "target": "apps_electron_vite_project_electron_mailguard_gmail_api_refreshaccesstoken", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L533", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_gmail_api", + "target": "apps_electron_vite_project_electron_mailguard_gmail_api_sanitizeemailbody", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L581", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_gmail_api", + "target": "apps_electron_vite_project_electron_mailguard_gmail_api_savecredentialstodisk", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L361", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_gmail_api", + "target": "apps_electron_vite_project_electron_mailguard_gmail_api_searchemails", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_gmail_api", + "target": "apps_electron_vite_project_electron_mailguard_gmail_api_setoauthcredentials", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L160", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_gmail_api", + "target": "apps_electron_vite_project_electron_mailguard_gmail_api_startlocalserver", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_gmail_api", + "target": "apps_electron_vite_project_electron_mailguard_gmail_api_startoauthflow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_gmail_api", + "target": "apps_electron_vite_project_electron_mailguard_gmail_api_tokendata", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1951", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_createwindow", + "target": "apps_electron_vite_project_electron_mailguard_gmail_api", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_gmail_api_startoauthflow", + "target": "apps_electron_vite_project_electron_mailguard_gmail_api_buildauthurl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_gmail_api_startoauthflow", + "target": "apps_electron_vite_project_electron_mailguard_gmail_api_exchangecodefortokens", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_gmail_api_startoauthflow", + "target": "apps_electron_vite_project_electron_mailguard_gmail_api_startlocalserver", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L219", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_gmail_api_exchangecodefortokens", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L314", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_gmail_api_ensurevalidtoken", + "target": "apps_electron_vite_project_electron_mailguard_gmail_api_refreshaccesstoken", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L272", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_gmail_api_refreshaccesstoken", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L324", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_gmail_api_fetchemailbyid", + "target": "apps_electron_vite_project_electron_mailguard_gmail_api_ensurevalidtoken", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L362", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_gmail_api_searchemails", + "target": "apps_electron_vite_project_electron_mailguard_gmail_api_ensurevalidtoken", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L345", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_gmail_api_fetchemailbyid", + "target": "apps_electron_vite_project_electron_mailguard_gmail_api_parsegmailmessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L415", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_gmail_api_findemailbypreview", + "target": "apps_electron_vite_project_electron_mailguard_gmail_api_fetchemailbyid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L409", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_gmail_api_findemailbypreview", + "target": "apps_electron_vite_project_electron_mailguard_gmail_api_searchemails", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L436", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_gmail_api_parsegmailmessage", + "target": "apps_electron_vite_project_electron_mailguard_gmail_api_decodebase64url", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L444", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_gmail_api_parsegmailmessage", + "target": "apps_electron_vite_project_electron_mailguard_gmail_api_extractattachmentsfromparts", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L438", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_gmail_api_parsegmailmessage", + "target": "apps_electron_vite_project_electron_mailguard_gmail_api_extractbodyfromparts", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L454", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_gmail_api_parsegmailmessage", + "target": "apps_electron_vite_project_electron_mailguard_gmail_api_sanitizeemailbody", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L465", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_gmail_api_extractbodyfromparts", + "target": "apps_electron_vite_project_electron_mailguard_gmail_api_decodebase64url", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L469", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_gmail_api_extractbodyfromparts", + "target": "apps_electron_vite_project_electron_mailguard_gmail_api_htmltotext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L503", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_gmail_api_decodebase64url", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L584", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_gmail_api_savecredentialstodisk", + "target": "apps_electron_vite_project_electron_mailguard_gmail_api_exportcredentials", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L602", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_gmail_api_loadcredentialsfromdisk", + "target": "apps_electron_vite_project_electron_mailguard_gmail_api_importcredentials", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L616", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_gmail_api_deletecredentialsfromdisk", + "target": "apps_electron_vite_project_electron_mailguard_gmail_api_getcredentialspath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L597", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_gmail_api_loadcredentialsfromdisk", + "target": "apps_electron_vite_project_electron_mailguard_gmail_api_getcredentialspath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/gmail-api.ts", + "source_location": "L583", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_gmail_api_savecredentialstodisk", + "target": "apps_electron_vite_project_electron_mailguard_gmail_api_getcredentialspath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/overlay.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_overlay", + "target": "apps_electron_vite_project_electron_mailguard_overlay_activatemailguard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/overlay.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_overlay", + "target": "apps_electron_vite_project_electron_mailguard_overlay_browserwindowoffset", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/overlay.ts", + "source_location": "L373", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_overlay", + "target": "apps_electron_vite_project_electron_mailguard_overlay_closelightbox", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/overlay.ts", + "source_location": "L222", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_overlay", + "target": "apps_electron_vite_project_electron_mailguard_overlay_deactivatemailguard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/overlay.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_overlay", + "target": "apps_electron_vite_project_electron_mailguard_overlay_emailrowrect", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/overlay.ts", + "source_location": "L388", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_overlay", + "target": "apps_electron_vite_project_electron_mailguard_overlay_getoverlayhtml", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/overlay.ts", + "source_location": "L237", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_overlay", + "target": "apps_electron_vite_project_electron_mailguard_overlay_hideoverlay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/overlay.ts", + "source_location": "L381", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_overlay", + "target": "apps_electron_vite_project_electron_mailguard_overlay_ismailguardactive", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/overlay.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_overlay", + "target": "apps_electron_vite_project_electron_mailguard_overlay_protectedareabounds", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/overlay.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_overlay", + "target": "apps_electron_vite_project_electron_mailguard_overlay_sanitizedemail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/overlay.ts", + "source_location": "L247", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_overlay", + "target": "apps_electron_vite_project_electron_mailguard_overlay_showoverlay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/overlay.ts", + "source_location": "L363", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_overlay", + "target": "apps_electron_vite_project_electron_mailguard_overlay_showsanitizedemail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/overlay.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_overlay", + "target": "apps_electron_vite_project_electron_mailguard_overlay_themecolors", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/overlay.ts", + "source_location": "L348", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_overlay", + "target": "apps_electron_vite_project_electron_mailguard_overlay_updateemailrows", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/overlay.ts", + "source_location": "L259", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_overlay", + "target": "apps_electron_vite_project_electron_mailguard_overlay_updateprotectedarea", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/overlay.ts", + "source_location": "L308", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_overlay", + "target": "apps_electron_vite_project_electron_mailguard_overlay_updatewindowposition", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/overlay.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_overlay", + "target": "apps_electron_vite_project_electron_mailguard_overlay_windowinfo", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/overlay.ts", + "source_location": "L376", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_overlay_rationale_376", + "target": "apps_electron_vite_project_electron_mailguard_overlay", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L991", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_mailguard_overlay", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/mailguard/overlay.ts", + "source_location": "L181", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_mailguard_overlay_activatemailguard", + "target": "apps_electron_vite_project_electron_mailguard_overlay_getoverlayhtml", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L991", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_mailguard_overlay_activatemailguard", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L991", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_mailguard_overlay_deactivatemailguard", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1855", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_createwindow", + "target": "apps_electron_vite_project_electron_mailguard_overlay_deactivatemailguard", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L991", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_mailguard_overlay_hideoverlay", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L991", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_mailguard_overlay_showoverlay", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L991", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_mailguard_overlay_updateprotectedarea", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L991", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_mailguard_overlay_updatewindowposition", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L991", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_mailguard_overlay_updateemailrows", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L991", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_mailguard_overlay_showsanitizedemail", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1927", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_createwindow", + "target": "apps_electron_vite_project_electron_mailguard_overlay_showsanitizedemail", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L991", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_mailguard_overlay_closelightbox", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1994", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_createwindow", + "target": "apps_electron_vite_project_electron_mailguard_overlay_closelightbox", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L991", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_mailguard_overlay_ismailguardactive", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L10022", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_aiexecutionlane", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_autosortdiagnostics", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_autosortdiagnostics_autosortdiaglog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_autosortdiagnostics_debug_autosort_diagnostics", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_autosortdiagnostics_getautosortdiagmainstate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_autosortdiagnostics_recordvaultlock", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L981", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_beap_autoresponderaudit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L981", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_beap_autoresponderaudit_getauditformessage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L981", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_beap_autoresponderaudit_getautoresponderauditlog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L3988", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_beapsessionimportpolicyhook", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_broadcastmainprocesslog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_broadcastorchestratorsessiondisplayupdated", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1060", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_broadcasttoextensions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L455", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_checkstartupsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L10495", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_cloudaiconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L770", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_cors_allowed_origins", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L798", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_corspnaheaders", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L2300", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_createtray", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1301", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_createwindow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L644", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_debuglog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L999", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_dirname", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L6995", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_dispatchcloudchat", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L3242", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_dispatchdashboardmethodrpc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L979", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L979", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_processpendingp2pbeapemails", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L979", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_retrypendinginboxplaceholders", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L979", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_retrypendingqbeapdecrypt", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L982", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_email_beapinboxdashboardnotify", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L982", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_email_beapinboxdashboardnotify_notifybeapinboxdashboard", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L982", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_email_beapinboxdashboardnotify_setbeapinboxdashboardnotifier", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L989", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_email_beapsync", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L989", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_email_beapsync_setemailfunctions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L990", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_email_ipc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L990", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_email_ipc_registeremailhandlers", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L990", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L980", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L980", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged_drainextensionmergebuffer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L994", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_emailrowpreviewdata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1297", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_enabledevtools", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_enrichhttpchatmessages", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L888", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_ensureportsavailable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L12218", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_executetriggerfromextension", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L11226", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_extractpdftextforipc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L2828", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_firesandboxreadcleanuphint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_formatmainlogarg", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L619", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_getauthstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L2617", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_getdbeaverdatapath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L337", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_geteffectivetier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L3198", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_gethandshakedb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L814", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_gethttpapilistenhost", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L3224", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_getledgerdboropen", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L11877", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_getoidctoken", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L629", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_gotthelock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1250", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_handledeeplink", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L988", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L988", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_completependingcontextsyncs", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L988", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_tryenqueuecontextsync", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L987", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L987", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_handshake_db_migratehandshaketables", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L969", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_handshake_emailtransport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L969", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_handshake_emailtransport_setemailsendfn", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L960", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_handshake_ipc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L960", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_getcurrentsession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L960", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L960", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_registerhandshakeroutes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L960", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_setoidctokenprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L960", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_setssosessionprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L963", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_handshake_ledger", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L963", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_buildledgersessiontoken", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L963", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_closeledger", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L963", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_getledgerdb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L963", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_openledger", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L986", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L986", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_getqueueentries", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L986", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_getqueuestatus", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L970", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_logprocessoutboundqueuefailure", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L970", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_processoutboundqueue", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L970", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_setoutboundqueueauthrefresh", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L961", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L961", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_sessionfromclaims", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L962", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L962", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc_handleingestionrpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L962", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc_registeringestionroutes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L791", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_iscorsallowedorigin", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L778", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_islocaldevhttporigin", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L821", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_isportavailable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L836", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_killprocessonport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L872", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_killstaleprocesses", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L671", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_launch_secret_buf", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L2635", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_launchdbeaver", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L677", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_launchsecrethex", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_converttopdf", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_detectlibreoffice", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_prewarmlibreoffice", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_resetlibreofficedetection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_setmanualsofficepath", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_llm_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_llm_types_chatmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1025", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_lmgtfypromptsurface", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L392", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_lockvaultifloaded", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L740", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_loglogidentityline", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L259", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_logoutcleanupasync", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_logoutfast", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L719", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_logruntimeidentityline", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1014", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_main_dist", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L951", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_mainwindowaccessor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L951", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_mainwindowaccessor_registermainwindowaccessor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L4443", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_mapinferenceroutingerror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L498", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_opendashboardwindow", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_orchestrator_broadcastmodechange", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_orchestrator_broadcastmodechange_broadcastorchestratormodechanged", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_orchestrator_ipc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_orchestrator_ipc_registerorchestratoripc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_ensurepairingcoderegistered", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_issandboxmode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_pairingcoderegistrar", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_regeneratepairingcode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_setorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_setpairingcoderegistrar", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L757", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_orchestratorbuildmeta", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L983", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_p2p_beapdeliveryack", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L983", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_p2p_beapdeliveryack_setbeapdeliveryacknotifier", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L978", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_p2p_beaprecipientnotify", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L978", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_p2p_beaprecipientnotify_notifybeaprecipientpending", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L978", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_p2p_beaprecipientnotify_setbeaprecipientpendingnotifier", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L972", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L972", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationws_createcoordinationwsclient", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L973", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationwsholder", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L973", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationwsholder_disconnectcoordinationwsforaccountswitch", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L973", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationwsholder_getcoordinationwsclient", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L973", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationwsholder_setcoordinationwsclient", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L984", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L984", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_getp2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L984", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_upsertp2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L985", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L985", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_getp2phealth", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L985", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthqueuecounts", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L985", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthrelaymode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L971", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_p2p_relaypull", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L971", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_p2p_relaypull_pullfromrelay", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L971", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_p2p_relaypull_registerdevicerolewithrelay", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_pdfjsworkersrc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_pdfjsworkersrc_resolvepdfjsdistworkerfileurl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1079", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_persistdiffwatcherdisabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L12160", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_postscreenshottopopup", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L12192", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_poststreamtopopup", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L953", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_projects_optimizerhttpinvoke", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L953", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_projects_optimizerhttpinvoke_invokeoptimizergetstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L953", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_projects_optimizerhttpinvoke_invokeoptimizersetcontinuous", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L953", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_projects_optimizerhttpinvoke_invokeoptimizersnapshot", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L952", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_projects_triggerprojectlist", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L952", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_projects_triggerprojectlist_readtriggerlistfromrenderer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_reconcilediffwatchersaftersave", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L300", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_refreshentitlements", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L5554", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_registerwindowstaskscheduler", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1015", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_renderer_dist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L551", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_requestlogin", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1030", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_resolvelmgtfypromptsurfacefromsource", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L350", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_resolverequesttier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L5894", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_rundevicekeymigration", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L712", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_runtimebuildtimestamp", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L706", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_runtimeidentitybranch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L700", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_runtimeidentitycommit", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_assertsandboxdataegressallowed", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_iseffectivesandboxnode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_resolveeffectivesandboxnode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L2532", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_setupfilelogging", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1035", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_sourceforexecutesurface", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1296", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_starthidden", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1159", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_startpersisteddiffwatchers", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_stripdatauriprefixforllm", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L432", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_testloginonce", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L11949", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_tryp2pstartup", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L2335", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_updatetraymenu", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L685", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_validatelaunchsecret", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L959", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_vault_rpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L959", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_vault_rpc_handlevaultrpc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1013", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_vite_dev_server_url", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1091", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_main_wirediffwatcherhostcallbacks", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L946", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L946", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L946", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogscanrequest", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L946", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_wrchatsurface", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_electron_wrchatsurface_surfacefromsource", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_src_auth_capabilities", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_src_auth_capabilities_resolvetier", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_src_auth_capabilities_tier", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_src_auth_capabilities_unknown_tier", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_src_auth_login", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_src_auth_login_loginwithkeycloak", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_src_auth_login_prepareloginurl", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_src_auth_login_seturlopener", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_src_auth_session", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_src_auth_session_clearsession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_src_auth_session_ensuresession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_src_auth_session_getaccesstoken", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_src_auth_session_updatesessionfromtokens", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_src_auth_sessioncache_getcacheduserinfo", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_src_auth_tokenstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_src_auth_tokenstore_clearrefreshtoken", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_src_auth_tokenstore_saverefreshtoken", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_bareollamamodelnameforapi", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L945", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main", + "target": "packages_shared_src_wrchat_difftrigger_difftrigger", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L11596", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_rationale_11596", + "target": "apps_electron_vite_project_electron_main", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1386", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_rationale_1386", + "target": "apps_electron_vite_project_electron_main", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L2462", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_rationale_2462", + "target": "apps_electron_vite_project_electron_main", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L5501", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_rationale_5501", + "target": "apps_electron_vite_project_electron_main", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_enrichhttpchatmessages", + "target": "apps_electron_vite_project_electron_main_stripdatauriprefixforllm", + "confidence_score": 0.5 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_broadcastmainprocesslog", + "target": "apps_electron_vite_project_electron_main_formatmainlogarg", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_broadcastmainprocesslog", + "target": "test_mocks_electron_browserwindow_getallwindows" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_broadcastorchestratorsessiondisplayupdated", + "target": "test_mocks_electron_browserwindow_getallwindows" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L192", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_logoutfast", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_closeledger", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L196", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_logoutfast", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L180", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_logoutfast", + "target": "apps_electron_vite_project_electron_main_lockvaultifloaded", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L201", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_logoutfast", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationwsholder_disconnectcoordinationwsforaccountswitch", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L185", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_logoutfast", + "target": "apps_electron_vite_project_electron_main_pdfjsworkersrc_require" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L216", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_logoutfast", + "target": "apps_electron_vite_project_electron_main_updatetraymenu", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L185", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_logoutfast", + "target": "apps_electron_vite_project_electron_main_vault_rpc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L186", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_logoutfast", + "target": "apps_electron_vite_project_electron_main_vault_rpc_clearembeddingserviceref" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L212", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_logoutfast", + "target": "apps_electron_vite_project_src_auth_session_clearsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L265", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_logoutcleanupasync", + "target": "apps_electron_vite_project_src_auth_tokenstore_clearrefreshtoken", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L341", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_geteffectivetier", + "target": "apps_electron_vite_project_electron_main_refreshentitlements", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L309", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_refreshentitlements", + "target": "apps_electron_vite_project_src_auth_capabilities_resolvetier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L303", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_refreshentitlements", + "target": "apps_electron_vite_project_src_auth_session_ensuresession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L3256", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_dispatchdashboardmethodrpc", + "target": "apps_electron_vite_project_electron_main_geteffectivetier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L343", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_geteffectivetier", + "target": "apps_electron_vite_project_electron_main_resolverequesttier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L361", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_resolverequesttier", + "target": "apps_electron_vite_project_src_auth_capabilities_resolvetier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L351", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_resolverequesttier", + "target": "apps_electron_vite_project_src_auth_session_ensuresession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L399", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_lockvaultifloaded", + "target": "apps_electron_vite_project_electron_main_autosortdiagnostics_autosortdiaglog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L394", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_lockvaultifloaded", + "target": "apps_electron_vite_project_electron_main_autosortdiagnostics_getautosortdiagmainstate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L393", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_lockvaultifloaded", + "target": "apps_electron_vite_project_electron_main_autosortdiagnostics_recordvaultlock", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L435", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_testloginonce", + "target": "apps_electron_vite_project_src_auth_login_loginwithkeycloak", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L437", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_testloginonce", + "target": "apps_electron_vite_project_src_auth_tokenstore_saverefreshtoken", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L464", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_checkstartupsession", + "target": "apps_electron_vite_project_src_auth_capabilities_resolvetier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L458", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_checkstartupsession", + "target": "apps_electron_vite_project_src_auth_session_ensuresession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L2310", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_createtray", + "target": "apps_electron_vite_project_electron_main_opendashboardwindow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1266", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handledeeplink", + "target": "apps_electron_vite_project_electron_main_opendashboardwindow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L511", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_opendashboardwindow", + "target": "apps_electron_vite_project_electron_main_createwindow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L601", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_requestlogin", + "target": "apps_electron_vite_project_electron_main_opendashboardwindow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L2378", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_updatetraymenu", + "target": "apps_electron_vite_project_electron_main_opendashboardwindow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L2313", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_createtray", + "target": "apps_electron_vite_project_electron_main_requestlogin", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L585", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_requestlogin", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_buildledgersessiontoken", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L586", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_requestlogin", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_openledger", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L598", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_requestlogin", + "target": "apps_electron_vite_project_electron_main_updatetraymenu", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L569", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_requestlogin", + "target": "apps_electron_vite_project_src_auth_capabilities_resolvetier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L554", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_requestlogin", + "target": "apps_electron_vite_project_src_auth_login_loginwithkeycloak", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L563", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_requestlogin", + "target": "apps_electron_vite_project_src_auth_session_updatesessionfromtokens", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L558", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_requestlogin", + "target": "apps_electron_vite_project_src_auth_tokenstore_saverefreshtoken", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1866", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_createwindow", + "target": "apps_electron_vite_project_electron_main_debuglog", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L678", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_launchsecrethex", + "target": "apps_electron_vite_project_electron_main_launch_secret_buf" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L686", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validatelaunchsecret", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L722", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_logruntimeidentityline", + "target": "apps_electron_vite_project_electron_main_runtimeidentitycommit", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L721", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_logruntimeidentityline", + "target": "apps_electron_vite_project_electron_main_runtimeidentitybranch", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L723", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_logruntimeidentityline", + "target": "apps_electron_vite_project_electron_main_runtimebuildtimestamp", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1361", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_createwindow", + "target": "apps_electron_vite_project_electron_main_logruntimeidentityline", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L724", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_logruntimeidentityline", + "target": "apps_electron_vite_project_electron_main_orchestratorbuildmeta", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L793", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_iscorsallowedorigin", + "target": "apps_electron_vite_project_electron_main_cors_allowed_origins" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L795", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_iscorsallowedorigin", + "target": "apps_electron_vite_project_electron_main_islocaldevhttporigin", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L804", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_corspnaheaders", + "target": "apps_electron_vite_project_electron_main_iscorsallowedorigin", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L815", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_gethttpapilistenhost", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L897", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ensureportsavailable", + "target": "apps_electron_vite_project_electron_main_isportavailable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L899", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ensureportsavailable", + "target": "apps_electron_vite_project_electron_main_killprocessonport", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L892", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ensureportsavailable", + "target": "apps_electron_vite_project_electron_main_killstaleprocesses", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1031", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_resolvelmgtfypromptsurfacefromsource", + "target": "apps_electron_vite_project_electron_wrchatsurface_surfacefromsource", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L12227", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_executetriggerfromextension", + "target": "apps_electron_vite_project_electron_main_sourceforexecutesurface", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1537", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_createwindow", + "target": "apps_electron_vite_project_electron_main_broadcasttoextensions", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_wirediffwatcherhostcallbacks", + "target": "apps_electron_vite_project_electron_main_persistdiffwatcherdisabled", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L2297", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_createwindow", + "target": "apps_electron_vite_project_electron_main_handledeeplink", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1887", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_createwindow", + "target": "apps_electron_vite_project_electron_main_email_gateway", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1320", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_createwindow", + "target": "apps_electron_vite_project_electron_main_mainwindowaccessor_registermainwindowaccessor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1377", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_createwindow", + "target": "apps_electron_vite_project_electron_main_platform", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1695", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_createwindow", + "target": "apps_electron_vite_project_electron_main_postscreenshottopopup", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1805", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_createwindow", + "target": "apps_electron_vite_project_electron_main_poststreamtopopup", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1436", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_createwindow", + "target": "apps_electron_vite_project_electron_main_updatetraymenu", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1707", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_createwindow", + "target": "apps_electron_vite_project_electron_wrchatsurface_surfacefromsource", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L2193", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_createwindow", + "target": "test_mocks_electron_browserwindow_close" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L2118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_createwindow", + "target": "test_mocks_electron_browserwindow_getfocusedwindow" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L2189", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_createwindow", + "target": "test_mocks_electron_browserwindow_loadurl" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L1323", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_createwindow", + "target": "test_mocks_electron_menu_setapplicationmenu" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L2303", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_createtray", + "target": "apps_electron_vite_project_electron_main_updatetraymenu", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L2426", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_updatetraymenu", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_execfileasync" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L2354", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_updatetraymenu", + "target": "apps_electron_vite_project_electron_main_postscreenshottopopup", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L2374", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_updatetraymenu", + "target": "test_mocks_electron_menu_buildfromtemplate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L2696", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_launchdbeaver", + "target": "apps_electron_vite_project_electron_main_pdfjsworkersrc_require" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L2830", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_firesandboxreadcleanuphint", + "target": "apps_electron_vite_project_electron_main_email_gateway", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L2831", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_firesandboxreadcleanuphint", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L2841", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_firesandboxreadcleanuphint", + "target": "test_mocks_electron_browserwindow_getallwindows" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L3204", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_gethandshakedb", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_buildledgersessiontoken" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L3199", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_gethandshakedb", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_getledgerdb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L3205", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_gethandshakedb", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_openledger" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L3202", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_gethandshakedb", + "target": "apps_electron_vite_project_src_auth_sessioncache_getcacheduserinfo" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L11950", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_tryp2pstartup", + "target": "apps_electron_vite_project_electron_main_gethandshakedb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L3386", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_dispatchdashboardmethodrpc", + "target": "apps_electron_vite_project_electron_main_getledgerdboropen", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L3230", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_getledgerdboropen", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_buildledgersessiontoken" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L3225", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_getledgerdboropen", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_getledgerdb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L3231", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_getledgerdboropen", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_openledger" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L3228", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_getledgerdboropen", + "target": "apps_electron_vite_project_src_auth_sessioncache_getcacheduserinfo" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L3311", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_dispatchdashboardmethodrpc", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_completependingcontextsyncs" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L3401", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_dispatchdashboardmethodrpc", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L3311", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_dispatchdashboardmethodrpc", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_getcurrentsession" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L3370", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_dispatchdashboardmethodrpc", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L3310", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_dispatchdashboardmethodrpc", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_getledgerdb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L3320", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_dispatchdashboardmethodrpc", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_logprocessoutboundqueuefailure" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L3313", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_dispatchdashboardmethodrpc", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_processoutboundqueue" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L3379", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_dispatchdashboardmethodrpc", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc_handleingestionrpc" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L3265", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_dispatchdashboardmethodrpc", + "target": "apps_electron_vite_project_electron_main_vault_rpc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L3299", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_dispatchdashboardmethodrpc", + "target": "apps_electron_vite_project_electron_main_vault_rpc_handlevaultrpc" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L3280", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_dispatchdashboardmethodrpc", + "target": "apps_electron_vite_project_electron_main_vault_vsbt_test_vsbt_exempt_rpc" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L3249", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_dispatchdashboardmethodrpc", + "target": "apps_electron_vite_project_src_auth_session_ensuresession" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L3316", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_dispatchdashboardmethodrpc", + "target": "apps_electron_vite_project_src_auth_session_getaccesstoken" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L5565", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_registerwindowstaskscheduler", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_execfileasync" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L11251", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_extractpdftextforipc", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L11254", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_extractpdftextforipc", + "target": "apps_electron_vite_project_electron_main_pdfjsworkersrc_resolvepdfjsdistworkerfileurl" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L11879", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_getoidctoken", + "target": "apps_electron_vite_project_src_auth_session_ensuresession" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L11880", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_getoidctoken", + "target": "apps_electron_vite_project_src_auth_session_getaccesstoken" + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L12017", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_tryp2pstartup", + "target": "apps_electron_vite_project_electron_main_getoidctoken", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L11987", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_tryp2pstartup", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_processpendingp2pbeapemails" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L11994", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_tryp2pstartup", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_retrypendingqbeapdecrypt" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L11988", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_tryp2pstartup", + "target": "apps_electron_vite_project_electron_main_email_beapinboxdashboardnotify_notifybeapinboxdashboard" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L12008", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_tryp2pstartup", + "target": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged_drainextensionmergebuffer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L12041", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_tryp2pstartup", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_completependingcontextsyncs" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L12053", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_tryp2pstartup", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_tryenqueuecontextsync" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L11957", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_tryp2pstartup", + "target": "apps_electron_vite_project_electron_main_handshake_handshakehealthstartuplog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L12008", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_tryp2pstartup", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_getcurrentsession" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L12019", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_tryp2pstartup", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_logprocessoutboundqueuefailure" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L12017", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_tryp2pstartup", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_processoutboundqueue" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L12022", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_tryp2pstartup", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptokenbackfill", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L11974", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_tryp2pstartup", + "target": "apps_electron_vite_project_electron_main_handshake_topologyautowire", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L12120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_tryp2pstartup", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L12031", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_tryp2pstartup", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_ensurepairingcoderegistered" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L12096", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_tryp2pstartup", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationws_createcoordinationwsclient" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L12116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_tryp2pstartup", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationwsholder_disconnectcoordinationwsforaccountswitch" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L12084", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_tryp2pstartup", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationwsholder_getcoordinationwsclient" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L12107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_tryp2pstartup", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationwsholder_setcoordinationwsclient" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L12067", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_tryp2pstartup", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_getp2pconfig" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L12068", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_tryp2pstartup", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthrelaymode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L12076", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_tryp2pstartup", + "target": "apps_electron_vite_project_electron_main_p2p_relaypull_pullfromrelay" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L12073", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_tryp2pstartup", + "target": "apps_electron_vite_project_electron_main_p2p_relaypull_registerdevicerolewithrelay" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L12082", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_tryp2pstartup", + "target": "apps_electron_vite_project_src_auth_sessioncache_getcacheduserinfo" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L12273", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_executetriggerfromextension", + "target": "apps_electron_vite_project_electron_main_postscreenshottopopup", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L12173", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_postscreenshottopopup", + "target": "apps_electron_vite_project_electron_wrchatsurface_surfacefromsource", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main.ts", + "source_location": "L12204", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_poststreamtopopup", + "target": "apps_electron_vite_project_electron_wrchatsurface_surfacefromsource", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/__tests__/invariants.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_tests_invariants_test", + "target": "apps_electron_vite_project_electron_main_execution_executetoolrequest", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/__tests__/invariants.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_tests_invariants_test", + "target": "apps_electron_vite_project_electron_main_execution_executetoolrequest_executetoolrequest", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/__tests__/invariants.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_tests_invariants_test", + "target": "apps_electron_vite_project_electron_main_execution_toolregistry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/__tests__/invariants.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_tests_invariants_test", + "target": "apps_electron_vite_project_electron_main_execution_toolregistry_registertool", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/__tests__/invariants.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_tests_invariants_test", + "target": "apps_electron_vite_project_electron_main_execution_toolregistry_resetregistryfortesting", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/__tests__/invariants.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_tests_invariants_test", + "target": "apps_electron_vite_project_electron_main_ingestion_index", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/__tests__/invariants.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_tests_invariants_test", + "target": "apps_electron_vite_project_electron_main_ingestion_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/__tests__/invariants.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_tests_invariants_test", + "target": "apps_electron_vite_project_electron_main_ingestion_types_candidatecapsuleenvelope", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/__tests__/invariants.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_tests_invariants_test", + "target": "apps_electron_vite_project_electron_main_ingestion_types_validatedcapsule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/__tests__/invariants.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_tests_invariants_test", + "target": "apps_electron_vite_project_electron_main_tests_invariants_test_collectproductionfiles", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/__tests__/invariants.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_tests_invariants_test", + "target": "apps_electron_vite_project_electron_main_tests_invariants_test_electron_main_dir", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/__tests__/invariants.test.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_tests_invariants_test", + "target": "apps_electron_vite_project_electron_main_tests_invariants_test_makehandshakerow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/__tests__/invariants.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_tests_invariants_test", + "target": "apps_electron_vite_project_electron_main_tests_invariants_test_makemockdb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/autosortDiagnostics.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_autosortdiagnostics", + "target": "apps_electron_vite_project_electron_main_autosortdiagnostics_autosortdiaglog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/autosortDiagnostics.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_autosortdiagnostics", + "target": "apps_electron_vite_project_electron_main_autosortdiagnostics_autosortdiagmainstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/autosortDiagnostics.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_autosortdiagnostics", + "target": "apps_electron_vite_project_electron_main_autosortdiagnostics_autosorttiminglog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/autosortDiagnostics.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_autosortdiagnostics", + "target": "apps_electron_vite_project_electron_main_autosortdiagnostics_debug_autosort_diagnostics", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/autosortDiagnostics.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_autosortdiagnostics", + "target": "apps_electron_vite_project_electron_main_autosortdiagnostics_debug_autosort_timing", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/autosortDiagnostics.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_autosortdiagnostics", + "target": "apps_electron_vite_project_electron_main_autosortdiagnostics_getautosortdiagmainstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/autosortDiagnostics.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_autosortdiagnostics", + "target": "apps_electron_vite_project_electron_main_autosortdiagnostics_getlastvaultlock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/autosortDiagnostics.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_autosortdiagnostics", + "target": "apps_electron_vite_project_electron_main_autosortdiagnostics_isrecentvaultlock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/autosortDiagnostics.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_autosortdiagnostics", + "target": "apps_electron_vite_project_electron_main_autosortdiagnostics_mainstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/autosortDiagnostics.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_autosortdiagnostics", + "target": "apps_electron_vite_project_electron_main_autosortdiagnostics_recordvaultlock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/autosortDiagnostics.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_autosortdiagnostics", + "target": "apps_electron_vite_project_electron_main_autosortdiagnostics_setautosortdiagmainstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/autosortDiagnostics.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_autosortdiagnostics", + "target": "apps_electron_vite_project_electron_main_autosortdiagnostics_vaultlockrecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_autosortdiagnostics", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_autosortdiagnostics", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders", + "target": "apps_electron_vite_project_electron_main_autosortdiagnostics", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics", + "target": "apps_electron_vite_project_electron_main_autosortdiagnostics", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_autosortdiagnostics_debug_autosort_diagnostics", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_autosortdiagnostics_debug_autosort_diagnostics", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders", + "target": "apps_electron_vite_project_electron_main_autosortdiagnostics_debug_autosort_diagnostics", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_autosortdiagnostics_debug_autosort_timing", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics", + "target": "apps_electron_vite_project_electron_main_autosortdiagnostics_debug_autosort_timing", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_autosortdiagnostics_autosorttiminglog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L1851", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_autosortdiagnostics_autosorttiminglog" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_autosortdiagnostics_setautosortdiagmainstate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L1870", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_autosortdiagnostics_setautosortdiagmainstate" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_autosortdiagnostics_getautosortdiagmainstate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L4633", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_autosortdiagnostics_getautosortdiagmainstate" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_autosortdiagnostics_isrecentvaultlock", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L5413", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_autosortdiagnostics_isrecentvaultlock" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_autosortdiagnostics_autosortdiaglog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L357", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_autosortdiagnostics_autosortdiaglog" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_autosortdiagnostics_autosortdiaglog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L4634", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_autosortdiagnostics_autosortdiaglog" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders", + "target": "apps_electron_vite_project_electron_main_autosortdiagnostics_autosortdiaglog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L279", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider_generatechat", + "target": "apps_electron_vite_project_electron_main_autosortdiagnostics_autosortdiaglog" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/beap/autoresponderAudit.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_autoresponderaudit", + "target": "apps_electron_vite_project_electron_main_beap_autoresponderaudit_auditlog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/beap/autoresponderAudit.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_autoresponderaudit", + "target": "apps_electron_vite_project_electron_main_beap_autoresponderaudit_getauditformessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/beap/autoresponderAudit.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_autoresponderaudit", + "target": "apps_electron_vite_project_electron_main_beap_autoresponderaudit_getautoresponderauditlog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/beap/autoresponderAudit.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_autoresponderaudit", + "target": "apps_electron_vite_project_electron_main_beap_autoresponderaudit_logautoresponderdecision", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/beap/autoresponderAudit.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_autoresponderaudit", + "target": "apps_electron_vite_project_electron_main_beap_autoresponderevaluator", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/beap/autoresponderAudit.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_autoresponderaudit", + "target": "apps_electron_vite_project_electron_main_beap_autoresponderevaluator_autoresponderevaluation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_beap_autoresponderaudit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_beap_autoresponderaudit_logautoresponderdecision", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/beap/autoresponderEvaluator.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_autoresponderevaluator", + "target": "apps_electron_vite_project_electron_main_beap_autoresponderevaluator_autoresponderdecision", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/beap/autoresponderEvaluator.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_autoresponderevaluator", + "target": "apps_electron_vite_project_electron_main_beap_autoresponderevaluator_autoresponderevaluation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/beap/autoresponderEvaluator.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_autoresponderevaluator", + "target": "apps_electron_vite_project_electron_main_beap_autoresponderevaluator_evaluateautoresponder", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_beap_autoresponderevaluator", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_beap_autoresponderevaluator_evaluateautoresponder", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/beap/beapEnvelopeAad.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_beapenvelopeaad", + "target": "apps_electron_vite_project_electron_main_beap_beapenvelopeaad_buildenvelopeaadfields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/beap/beapEnvelopeAad.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_beapenvelopeaad", + "target": "apps_electron_vite_project_electron_main_beap_beapenvelopeaad_canonicalserializeaad", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/beap/beapEnvelopeAad.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_beapenvelopeaad", + "target": "apps_electron_vite_project_electron_main_beap_beapenvelopeaad_computeenvelopeaadbytes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/beap/beapEnvelopeAad.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_beapenvelopeaad", + "target": "apps_electron_vite_project_electron_main_beap_beapenvelopeaad_envelopeheaderforaad", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/beap/beapEnvelopeAad.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_beapenvelopeaad", + "target": "apps_electron_vite_project_electron_main_beap_beapenvelopeaad_stablecanonicalize", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage", + "target": "apps_electron_vite_project_electron_main_beap_beapenvelopeaad", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/beap/beapEnvelopeAad.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_beapenvelopeaad_canonicalserializeaad", + "target": "apps_electron_vite_project_electron_main_beap_beapenvelopeaad_stablecanonicalize", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/beap/beapEnvelopeAad.ts", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_beapenvelopeaad_computeenvelopeaadbytes", + "target": "apps_electron_vite_project_electron_main_beap_beapenvelopeaad_canonicalserializeaad", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/beap/beapEnvelopeAad.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_beapenvelopeaad_computeenvelopeaadbytes", + "target": "apps_electron_vite_project_electron_main_beap_beapenvelopeaad_buildenvelopeaadfields", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage", + "target": "apps_electron_vite_project_electron_main_beap_beapenvelopeaad_computeenvelopeaadbytes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L502", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_decryptqbeappackage", + "target": "apps_electron_vite_project_electron_main_beap_beapenvelopeaad_computeenvelopeaadbytes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage", + "target": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_aesgcmdecrypt", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage", + "target": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_concatbytearrays", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L197", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage", + "target": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_decryptchunksequence", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage", + "target": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_decryptedqbeapcontent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L222", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage", + "target": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_decryptqbeapcalloptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L230", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage", + "target": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_decryptqbeappackage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L159", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage", + "target": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_encryptedchunk", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage", + "target": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_frombase64", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L183", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage", + "target": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_getartefactchunks", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L168", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage", + "target": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_getpayloadchunks", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage", + "target": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_hexpreview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage", + "target": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_hkdfderive", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage", + "target": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_loggcmdecryptinputs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L142", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage", + "target": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_sha256hexutf8", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage", + "target": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_wc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage", + "target": "apps_electron_vite_project_electron_main_security_cryptofingerprint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage", + "target": "apps_electron_vite_project_electron_main_security_cryptofingerprint_safefingerprint", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L441", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_decryptqbeappackage", + "target": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_hexpreview", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_hexpreview", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L548", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_decryptqbeappackage", + "target": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_loggcmdecryptinputs", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_loggcmdecryptinputs", + "target": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_frombase64", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_loggcmdecryptinputs", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_decryptedqbeapcontent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_aesgcmdecrypt", + "target": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_frombase64", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L428", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_decryptqbeappackage", + "target": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_frombase64", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_frombase64", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L485", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_decryptqbeappackage", + "target": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_hkdfderive", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_aesgcmdecrypt", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L213", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_decryptchunksequence", + "target": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_aesgcmdecrypt", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L566", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_decryptqbeappackage", + "target": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_aesgcmdecrypt", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L571", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_decryptqbeappackage", + "target": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_sha256hexutf8", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_sha256hexutf8", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L216", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_decryptchunksequence", + "target": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_concatbytearrays", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L516", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_decryptqbeappackage", + "target": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_getpayloadchunks", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L602", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_decryptqbeappackage", + "target": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_getartefactchunks", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L549", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_decryptqbeappackage", + "target": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_decryptchunksequence", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L239", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_decryptqbeappackage", + "target": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_decryptqbeapcalloptions" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L281", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_decryptqbeappackage", + "target": "apps_electron_vite_project_electron_main_device_keys_devicekeystore", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L651", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_decryptqbeappackage", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L265", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_decryptqbeappackage", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts", + "source_location": "L347", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_decryptqbeappackage", + "target": "apps_electron_vite_project_electron_main_security_cryptofingerprint_safefingerprint" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_decryptqbeappackage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L1127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_processbeappackageinlineinternal", + "target": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_decryptqbeappackage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L921", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_processsandboxquarantinereceiveinternal", + "target": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_decryptqbeappackage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L1510", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_retrypendingqbeapdecrypt", + "target": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_decryptqbeappackage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_decryptqbeappackage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L591", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_detectandroutemessageinline", + "target": "apps_electron_vite_project_electron_main_beap_decryptqbeappackage_decryptqbeappackage" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.devbox.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_devbox_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_livevalidationcutover", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.devbox.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_devbox_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_livevalidationcutover_dispatchvalidatedecryptedbeap", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.devbox.test.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_devbox_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_devbox_test_corpus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.devbox.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_devbox_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_devbox_test_dirname", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.devbox.test.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_devbox_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_devbox_test_initiate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.devbox.test.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_devbox_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_devbox_test_internaldraft", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.devbox.test.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_devbox_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_devbox_test_provenance", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.devbox.test.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_devbox_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_devbox_test_req", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.devbox.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_devbox_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_devbox_test_require", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.devbox.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_devbox_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_devbox_test_testvault", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.devbox.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_devbox_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_devbox_test_worker_ts", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.devbox.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_devbox_test", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.devbox.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_devbox_test", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator_setvalidatorworkerpath", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.devbox.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_devbox_test", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.devbox.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_devbox_test", + "target": "apps_electron_vite_project_electron_main_validator_process_test_session", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.devbox.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_devbox_test", + "target": "apps_electron_vite_project_electron_main_validator_process_test_session_derivetestsealkey", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.devbox.test.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_devbox_test_testvault", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_devbox_test_testvault_deriveapplicationkey", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.devbox.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_devbox_test_testvault_deriveapplicationkey", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.devbox.test.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_devbox_test_req", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_devbox_test_provenance", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.test.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.test.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.test.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.test.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_remotehandshakeexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.test.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_livevalidationcutover", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.test.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_livevalidationcutover_dispatchvalidatedecryptedbeap", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.test.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_livevalidationcutover_dispatchvalidatenativebeap", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.test.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.test.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution_resolutiontable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.test.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_test_makecandidate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.test.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_test_makeprovenance", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.test.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_test_native_beap_corpus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_test_sentinelresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.test.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_test_stripvolatile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_test_validatemock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.test.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_test_validinitiate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_test", + "target": "apps_electron_vite_project_electron_main_ingestion_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_test", + "target": "apps_electron_vite_project_electron_main_ingestion_types_candidatecapsuleenvelope", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_test", + "target": "apps_electron_vite_project_electron_main_ingestion_types_provenancemetadata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.test.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_test_makecandidate", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_cutoverparity_test_makeprovenance", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/depackageEmailCutover.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_depackageemailcutover_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/depackageEmailCutover.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_depackageemailcutover_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover_dispatchdepackageemail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/depackageEmailCutover.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_depackageemailcutover_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_depackageemailcutover_test_eml", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/depackageEmailCutover.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_depackageemailcutover_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_depackageemailcutover_test_pub", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/depackageEmailCutover.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_depackageemailcutover_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_depackageemailcutover_test_qbeap_pkg", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/depackageEmailCutover.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_depackageemailcutover_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_depackageemailcutover_test_sandboxpubb64", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/depackageEmailCutover.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_depackageemailcutover_test_sandboxpubb64", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/depackageEmailCutover.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_depackageemailcutover_test_eml", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/depackageParity.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_depackageparity_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/depackageParity.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_depackageparity_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/depackageParity.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_depackageparity_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_depackageparity_test_keys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/depackageParity.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_depackageparity_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_depackageparity_test_recoveredset", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/depackageParity.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_depackageparity_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_depackageparitycorpus", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/depackageParity.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_depackageparity_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_depackageparitycorpus_depackage_parity_corpus", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/depackageParity.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_depackageparity_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_blindcourier", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/depackageParity.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_depackageparity_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_blindcourier_courierartifactrecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/depackageParity.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_depackageparity_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/depackageParity.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_depackageparity_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker_blobartifact", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/depackageParity.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_depackageparity_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker_depackage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/depackageParity.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_depackageparity_test", + "target": "apps_electron_vite_project_electron_main_quarantine_blob_storage_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/depackageParity.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_depackageparity_test", + "target": "apps_electron_vite_project_electron_main_quarantine_blob_storage_index_quarantineblobfile", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/depackageParity.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_depackageparity_test", + "target": "apps_electron_vite_project_electron_main_quarantine_encrypt_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/depackageParity.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_depackageparity_test", + "target": "apps_electron_vite_project_electron_main_quarantine_encrypt_index_decryptquarantineblob", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/depackageParity.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_depackageparity_test_keys", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/depackageParity.test.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_depackageparity_test_recoveredset", + "target": "apps_electron_vite_project_electron_main_quarantine_encrypt_index_decryptquarantineblob", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/depackageParityCorpus.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_depackageparitycorpus", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_depackageparitycorpus_depackage_parity_corpus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/depackageParityCorpus.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_depackageparitycorpus", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_depackageparitycorpus_eml", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/depackageParityCorpus.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_depackageparitycorpus", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_depackageparitycorpus_paritycase", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/depackageParityCorpus.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_depackageparitycorpus_eml", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.email.rig.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_email_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.email.rig.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_email_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.email.rig.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_email_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.email.rig.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_email_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.email.rig.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_email_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.email.rig.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_email_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor_createcrosvmmicrovmexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.email.rig.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_email_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.email.rig.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_email_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_remotehandshakeexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.email.rig.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_email_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.email.rig.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_email_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution_default_resolution_table", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.email.rig.test.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_email_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_email_rig_test_cfg", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.email.rig.test.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_email_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_email_rig_test_eml", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.email.rig.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_email_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_email_rig_test_home", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.email.rig.test.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_email_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_email_rig_test_makesandboxkeys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.email.rig.test.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_email_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_email_rig_test_qbeap_pkg", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.email.rig.test.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_email_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_email_rig_test_rig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.email.rig.test.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_email_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_email_rig_test_rigavailable", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.email.rig.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_email_rig_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.email.rig.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_email_rig_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmproviderconfig", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.email.rig.test.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_email_rig_test_makesandboxkeys", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.email.rig.test.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_email_rig_test_eml", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.rig.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.rig.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.rig.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.rig.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.rig.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.rig.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor_createcrosvmmicrovmexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.rig.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.rig.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_remotehandshakeexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.rig.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.rig.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution_default_resolution_table", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.rig.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_rig_test_cfg", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.rig.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_rig_test_home", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.rig.test.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_rig_test_makesandboxkeys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.rig.test.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_rig_test_rig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.rig.test.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_rig_test_rigavailable", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.rig.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_rig_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.rig.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_rig_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmproviderconfig", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.rig.test.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_microvm_rig_test_makesandboxkeys", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_executorregistry", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executor_criticaljobexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor_microvmexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_remotehandshakeexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution_default_resolution_table", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution_resolutioncontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test_ctx", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test_custody", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test_depackagespec", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test_fakeprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test_pub", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test_registry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L192", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test_slowexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljoberror", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobkind", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobspec", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_role", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker_rundepackagingjob", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_jobspec", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_sandboxhypervisorprovider", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test_pub", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test_fakeprovider", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test_fakeprovider_constructor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test_fakeprovider", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test_fakeprovider_isavailable", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test_fakeprovider", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test_fakeprovider_runjob", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test_fakeprovider", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_sandboxhypervisorprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test_fakeprovider_runjob", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker_rundepackagingjob" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test_fakeprovider_runjob", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_jobspec", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test_depackagespec", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "implements", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L192", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test_slowexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executor_criticaljobexecutor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L197", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test_slowexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test_slowexecutor_isavailable", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test_slowexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test_slowexecutor_run", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L194", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test_slowexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test_slowexecutor_supports", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L194", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test_slowexecutor_supports", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobkind", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test_slowexecutor_run", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_dispatcher_test_slowexecutor_run", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobspec", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/envelope.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_envelope_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_envelope_test_specsofeverykind", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/envelope.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_envelope_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/envelope.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_envelope_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobspec", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/envelope.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_envelope_test_specsofeverykind", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/inProcessExecutor.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_inprocessexecutor_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/inProcessExecutor.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_inprocessexecutor_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/inProcessExecutor.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_inprocessexecutor_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_inprocessexecutor_test_depackagespec", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/inProcessExecutor.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_inprocessexecutor_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_inprocessexecutor_test_pub", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/inProcessExecutor.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_inprocessexecutor_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/inProcessExecutor.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_inprocessexecutor_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljoberror", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/inProcessExecutor.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_inprocessexecutor_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobspec", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/inProcessExecutor.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_inprocessexecutor_test_pub", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/localMicrovmRouting.test.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_context", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/localMicrovmRouting.test.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_context_detectlocalmicrovmavailable", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/localMicrovmRouting.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/localMicrovmRouting.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/localMicrovmRouting.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_executorregistry", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/localMicrovmRouting.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/localMicrovmRouting.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/localMicrovmRouting.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/localMicrovmRouting.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor_microvmexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/localMicrovmRouting.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/localMicrovmRouting.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_remotehandshakeexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/localMicrovmRouting.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/localMicrovmRouting.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution_default_resolution_table", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/localMicrovmRouting.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution_resolutioncontext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/localMicrovmRouting.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution_resolve", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/localMicrovmRouting.test.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test_ctx", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/localMicrovmRouting.test.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test_custody", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/localMicrovmRouting.test.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test_depackageemailspec", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/localMicrovmRouting.test.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test_depackagespec", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/localMicrovmRouting.test.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test_fakeprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/localMicrovmRouting.test.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test_pub", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/localMicrovmRouting.test.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test_registry", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/localMicrovmRouting.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/localMicrovmRouting.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobkind", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/localMicrovmRouting.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobspec", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/localMicrovmRouting.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_role", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/localMicrovmRouting.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/localMicrovmRouting.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker_rundepackagingjob", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/localMicrovmRouting.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/localMicrovmRouting.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_jobspec", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/localMicrovmRouting.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_sandboxhypervisorprovider", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/localMicrovmRouting.test.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test_pub", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/localMicrovmRouting.test.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test_fakeprovider", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test_fakeprovider_constructor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/localMicrovmRouting.test.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test_fakeprovider", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test_fakeprovider_isavailable", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/localMicrovmRouting.test.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test_fakeprovider", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test_fakeprovider_runjob", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/localMicrovmRouting.test.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test_fakeprovider", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_sandboxhypervisorprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/localMicrovmRouting.test.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test_fakeprovider_runjob", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker_rundepackagingjob" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/localMicrovmRouting.test.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test_fakeprovider_runjob", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_jobspec", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/localMicrovmRouting.test.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test_depackagespec", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/localMicrovmRouting.test.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_localmicrovmrouting_test_depackageemailspec", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/resolution.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_resolution_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/resolution.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_resolution_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution_default_resolution_table", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/resolution.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_resolution_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution_resolutioncontext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/resolution.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_resolution_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution_resolutiontable", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/resolution.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_resolution_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution_resolve", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/resolution.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_resolution_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution_validateresolutiontable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/resolution.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_resolution_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_resolution_test_ctx", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/resolution.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_resolution_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/resolution.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_resolution_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljoberror", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/sandboxEmailDelivery.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_sandboxemaildelivery_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/sandboxEmailDelivery.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_sandboxemaildelivery_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery_sandbox_email_delivery_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/sandboxEmailDelivery.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_sandboxemaildelivery_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery_sandbox_email_delivery_type", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/sandboxEmailDelivery.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_sandboxemaildelivery_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery_setsandboxdeliveryhostwriterfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/sandboxEmailDelivery.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_sandboxemaildelivery_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery_tryhandlesandboxemaildelivery", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/sandboxEmailDelivery.test.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_sandboxemaildelivery_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_sandboxemaildelivery_test_fakedb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/sandboxEmailDelivery.test.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_sandboxemaildelivery_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_sandboxemaildelivery_test_makebeapcarrierresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/sandboxEmailDelivery.test.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_sandboxemaildelivery_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_sandboxemaildelivery_test_makemockres", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/sandboxEmailDelivery.test.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_sandboxemaildelivery_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_sandboxemaildelivery_test_makewire", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/sandboxEmailDelivery.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_sandboxemaildelivery_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_sandboxemaildelivery_test_mockreshandle", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/sandboxEmailDelivery.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_sandboxemaildelivery_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/sandboxEmailDelivery.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_sandboxemaildelivery_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_depackageemailresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/sandboxEmailDelivery.test.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_sandboxemaildelivery_test_makebeapcarrierresult", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/verify.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_verify_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_verify_test_pub", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/verify.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_verify_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_verify_test_realresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/verify.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_verify_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_verify", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/verify.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_verify_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_verify_depackagejobresulttocriticalresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/verify.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_verify_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_verify_verifydepackageresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/verify.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_verify_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/verify.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_verify_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker_rundepackagingjob", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/verify.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_verify_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/verify.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_verify_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_jobresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/verify.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_verify_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_signjobresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/verify.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_verify_test_pub", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/verify.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_verify_test_realresult", + "target": "apps_electron_vite_project_electron_main_critical_jobs_tests_verify_test_pub", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/verify.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_verify_test_realresult", + "target": "apps_electron_vite_project_electron_main_critical_jobs_verify_depackagejobresulttocriticalresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/verify.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_verify_test_realresult", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker_rundepackagingjob", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/__tests__/verify.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_tests_verify_test_realresult", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/context.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_context", + "target": "apps_electron_vite_project_electron_main_critical_jobs_context_buildcontextoptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/context.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_context", + "target": "apps_electron_vite_project_electron_main_critical_jobs_context_buildresolutioncontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/context.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_context", + "target": "apps_electron_vite_project_electron_main_critical_jobs_context_detectlocalmicrovmavailable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/context.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_context", + "target": "apps_electron_vite_project_electron_main_critical_jobs_context_parseargvrole", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/context.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_context", + "target": "apps_electron_vite_project_electron_main_critical_jobs_context_resolveexecoverride", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/context.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_context", + "target": "apps_electron_vite_project_electron_main_critical_jobs_context_resolverole", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/context.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_context", + "target": "apps_electron_vite_project_electron_main_critical_jobs_context_rolefrommode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/context.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_context", + "target": "apps_electron_vite_project_electron_main_critical_jobs_context_valid_roles", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/context.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_context", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/context.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_context", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution_resolutioncontext", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/context.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_context", + "target": "apps_electron_vite_project_electron_main_critical_jobs_topology", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/context.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_context", + "target": "apps_electron_vite_project_electron_main_critical_jobs_topology_loadlinkedtopology", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/context.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_context", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/context.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_context", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_role", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/context.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_context", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_tier", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/context.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_context", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/context.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_context", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/index.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_index", + "target": "apps_electron_vite_project_electron_main_critical_jobs_context", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveDepackageCutover.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover", + "target": "apps_electron_vite_project_electron_main_critical_jobs_context", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveValidationCutover.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_livevalidationcutover", + "target": "apps_electron_vite_project_electron_main_critical_jobs_context", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiverDispatcher.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiverdispatcher", + "target": "apps_electron_vite_project_electron_main_critical_jobs_context", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/opaqueIngestion.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_opaqueingestion", + "target": "apps_electron_vite_project_electron_main_critical_jobs_context", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/context.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_context_parseargvrole", + "target": "apps_electron_vite_project_electron_main_critical_jobs_context_valid_roles" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/context.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_context_resolverole", + "target": "apps_electron_vite_project_electron_main_critical_jobs_context_valid_roles" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/context.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_context_resolverole", + "target": "apps_electron_vite_project_electron_main_critical_jobs_context_parseargvrole", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/context.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_context_resolverole", + "target": "apps_electron_vite_project_electron_main_critical_jobs_context_rolefrommode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/context.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_context_rolefrommode", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/context.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_context_buildresolutioncontext", + "target": "apps_electron_vite_project_electron_main_critical_jobs_context_resolverole", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/index.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_index", + "target": "apps_electron_vite_project_electron_main_critical_jobs_context_resolverole", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/context.ts", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_context_buildresolutioncontext", + "target": "apps_electron_vite_project_electron_main_critical_jobs_context_resolveexecoverride", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/context.ts", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_context_buildresolutioncontext", + "target": "apps_electron_vite_project_electron_main_critical_jobs_context_detectlocalmicrovmavailable", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/context.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_context_buildcontextoptions", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_tier", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/index.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_index", + "target": "apps_electron_vite_project_electron_main_critical_jobs_context_buildcontextoptions", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/context.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_context_buildresolutioncontext", + "target": "apps_electron_vite_project_electron_main_critical_jobs_topology_loadlinkedtopology" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/context.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_context_buildresolutioncontext", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/index.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_index", + "target": "apps_electron_vite_project_electron_main_critical_jobs_context_buildresolutioncontext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveDepackageCutover.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover", + "target": "apps_electron_vite_project_electron_main_critical_jobs_context_buildresolutioncontext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveDepackageCutover.ts", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover_builddispatcher", + "target": "apps_electron_vite_project_electron_main_critical_jobs_context_buildresolutioncontext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveValidationCutover.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_livevalidationcutover", + "target": "apps_electron_vite_project_electron_main_critical_jobs_context_buildresolutioncontext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveValidationCutover.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_livevalidationcutover_builddispatcher", + "target": "apps_electron_vite_project_electron_main_critical_jobs_context_buildresolutioncontext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiverDispatcher.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiverdispatcher", + "target": "apps_electron_vite_project_electron_main_critical_jobs_context_buildresolutioncontext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/opaqueIngestion.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_opaqueingestion", + "target": "apps_electron_vite_project_electron_main_critical_jobs_context_buildresolutioncontext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/opaqueIngestion.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_opaqueingestion_haslinkeddepackagesandbox", + "target": "apps_electron_vite_project_electron_main_critical_jobs_context_buildresolutioncontext" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher", + "target": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher", + "target": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_executorregistry", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executor_criticaljobexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution_resolutioncontext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution_resolutiontable", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution_resolve", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution_resolvedexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution_validateresolutiontable", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljoberror", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljoberrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobkind", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobspec", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_executorid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_resultmeta", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_safe_text_output_kinds", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher", + "target": "apps_electron_vite_project_electron_main_critical_jobs_verify", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher", + "target": "apps_electron_vite_project_electron_main_critical_jobs_verify_verifydepackageemailresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher", + "target": "apps_electron_vite_project_electron_main_critical_jobs_verify_verifydepackageresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/index.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_index", + "target": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveDepackageCutover.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover", + "target": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveValidationCutover.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_livevalidationcutover", + "target": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiver.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver", + "target": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiverDispatcher.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiverdispatcher", + "target": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.email.rig.test.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.test.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/roundtrip.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmImageBundlePreflight.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmimagebundlepreflight_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/index.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_index", + "target": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_executorregistry", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher", + "target": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher_constructor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher", + "target": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher_dispatch", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher", + "target": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher_fail", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L180", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher", + "target": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher_logok", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher", + "target": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher_resolve", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher", + "target": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher_runwithtimeout", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/index.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_index", + "target": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveDepackageCutover.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover", + "target": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveValidationCutover.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_livevalidationcutover", + "target": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiver.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver", + "target": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiver.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver_criticaljobreceiverdeps", + "target": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiverDispatcher.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiverdispatcher", + "target": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.email.rig.test.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.test.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/roundtrip.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmImageBundlePreflight.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmimagebundlepreflight_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher_constructor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution_resolutioncontext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher_constructor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution_resolutiontable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher_constructor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution_validateresolutiontable" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher_dispatch", + "target": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher_resolve", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher_resolve", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution_resolvedexecutor", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher_resolve", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobkind", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher_dispatch", + "target": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher_fail", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L137", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher_dispatch", + "target": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher_logok", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher_dispatch", + "target": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher_runwithtimeout", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher_dispatch", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executor_criticaljobexecutor_isavailable" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher_dispatch", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executor_criticaljobexecutor_supports" + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher_dispatch", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher_dispatch", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobspec", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher_dispatch", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_safe_text_output_kinds" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher_dispatch", + "target": "apps_electron_vite_project_electron_main_critical_jobs_verify_verifydepackageemailresult" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher_dispatch", + "target": "apps_electron_vite_project_electron_main_critical_jobs_verify_verifydepackageresult" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher_runwithtimeout", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executor_criticaljobexecutor", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L150", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher_runwithtimeout", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executor_criticaljobexecutor_run" + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher_runwithtimeout", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher_runwithtimeout", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobspec", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher_fail", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljoberrorcode", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher_fail", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher_fail", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobspec", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher_fail", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_executorid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiver.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver_handlecriticaljobrequest", + "target": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher_fail" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L180", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher_logok", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobspec", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts", + "source_location": "L180", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_dispatcher_criticaljobdispatcher_logok", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_resultmeta", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executor.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executor_criticaljobexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executor.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executor.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobkind", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executor.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executor.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobspec", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executor.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_executorid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/microVmExecutor.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executor", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/index.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_index", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executor.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executor_criticaljobexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executor_criticaljobexecutor_isavailable", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executor.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executor_criticaljobexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executor_criticaljobexecutor_run", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executor.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executor_criticaljobexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executor_criticaljobexecutor_supports", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executor.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executor_criticaljobexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_executorid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executor_criticaljobexecutor", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executor_criticaljobexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/microVmExecutor.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executor_criticaljobexecutor", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/microVmExecutor.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor_microvmexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executor_criticaljobexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executor_criticaljobexecutor", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_remotehandshakeexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executor_criticaljobexecutor", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executor.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executor_criticaljobexecutor_supports", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobkind", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executor.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executor_criticaljobexecutor_run", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executor.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executor_criticaljobexecutor_run", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobspec", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_supported", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljoberror", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobkind", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobspec", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_role", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_transitional_inprocess_kinds", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_verify", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_verify_depackagejobresulttocriticalresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker_rundepackagingjob", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_rundepackageemailjob", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/index.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_index", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveDepackageCutover.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveValidationCutover.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_livevalidationcutover", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiverDispatcher.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiverdispatcher", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.email.rig.test.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.test.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/roundtrip.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmImageBundlePreflight.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmimagebundlepreflight_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor_supports", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_supported" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor_constructor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor_isavailable", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor_run", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor_rundepackage", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor_rundepackageemail", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor_runvalidatedecryptedbeap", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L190", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor_runvalidatenativebeap", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor_supports", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/index.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_index", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveDepackageCutover.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveValidationCutover.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_livevalidationcutover", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiverDispatcher.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiverdispatcher", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.email.rig.test.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.test.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/roundtrip.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmImageBundlePreflight.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmimagebundlepreflight_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor_constructor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_role", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor_supports", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobkind", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor_run", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor_rundepackage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor_run", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor_rundepackageemail", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor_run", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor_runvalidatedecryptedbeap", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor_run", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor_runvalidatenativebeap", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor_run", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor_run", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobspec", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor_run", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_transitional_inprocess_kinds" + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor_rundepackage", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor_rundepackage", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobspec", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor_rundepackage", + "target": "apps_electron_vite_project_electron_main_critical_jobs_verify_depackagejobresulttocriticalresult" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor_rundepackage", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker_rundepackagingjob" + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor_rundepackageemail", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor_rundepackageemail", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobspec", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L144", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor_rundepackageemail", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_rundepackageemailjob" + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor_runvalidatedecryptedbeap", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor_runvalidatedecryptedbeap", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobspec", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L168", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor_runvalidatedecryptedbeap", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L190", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor_runvalidatenativebeap", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts", + "source_location": "L190", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_inprocessexecutor_inprocessexecutor_runvalidatenativebeap", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobspec", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/microVmExecutor.ts", + "source_location": "L173", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor_createcrosvmmicrovmexecutor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/microVmExecutor.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor_microvmexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/microVmExecutor.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/microVmExecutor.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljoberror", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/microVmExecutor.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobkind", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/microVmExecutor.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/microVmExecutor.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobspec", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/microVmExecutor.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_verify", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/microVmExecutor.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_verify_depackagejobresulttocriticalresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/microVmExecutor.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/microVmExecutor.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/microVmExecutor.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmproviderconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/microVmExecutor.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_imagebundlemismatcherror", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/microVmExecutor.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/microVmExecutor.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_depackageemailjobresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/microVmExecutor.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_jobresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/microVmExecutor.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_jobspec", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/microVmExecutor.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_sandboxhypervisorprovider", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/index.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_index", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveDepackageCutover.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.email.rig.test.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmImageBundlePreflight.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmimagebundlepreflight_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/microVmExecutor.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor_microvmexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor_microvmexecutor_constructor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/microVmExecutor.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor_microvmexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor_microvmexecutor_isavailable", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/microVmExecutor.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor_microvmexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor_microvmexecutor_run", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/microVmExecutor.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor_microvmexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor_microvmexecutor_rundepackageemail", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/microVmExecutor.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor_microvmexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor_microvmexecutor_runproviderjob", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/microVmExecutor.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor_microvmexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor_microvmexecutor_supports", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/index.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_index", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor_microvmexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmImageBundlePreflight.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmimagebundlepreflight_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor_microvmexecutor", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/microVmExecutor.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor_microvmexecutor_constructor", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_sandboxhypervisorprovider", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/microVmExecutor.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor_microvmexecutor_supports", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobkind", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/microVmExecutor.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor_microvmexecutor_isavailable", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_sandboxhypervisorprovider_isavailable" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/microVmExecutor.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor_microvmexecutor_run", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor_microvmexecutor_rundepackageemail", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/microVmExecutor.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor_microvmexecutor_run", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor_microvmexecutor_runproviderjob", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/microVmExecutor.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor_microvmexecutor_run", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/microVmExecutor.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor_microvmexecutor_run", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobspec", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/microVmExecutor.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor_microvmexecutor_run", + "target": "apps_electron_vite_project_electron_main_critical_jobs_verify_depackagejobresulttocriticalresult" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/microVmExecutor.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor_microvmexecutor_rundepackageemail", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor_microvmexecutor_runproviderjob", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/microVmExecutor.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor_microvmexecutor_runproviderjob", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_depackageemailjobresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/microVmExecutor.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor_microvmexecutor_runproviderjob", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_jobresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/microVmExecutor.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor_microvmexecutor_runproviderjob", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_jobspec", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/microVmExecutor.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor_microvmexecutor_runproviderjob", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_sandboxhypervisorprovider_runjob" + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/microVmExecutor.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor_microvmexecutor_rundepackageemail", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/microVmExecutor.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor_microvmexecutor_rundepackageemail", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobspec", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/index.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_index", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor_createcrosvmmicrovmexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveDepackageCutover.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor_createcrosvmmicrovmexecutor", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveDepackageCutover.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover_builddispatcher", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor_createcrosvmmicrovmexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.email.rig.test.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_microvmexecutor_createcrosvmmicrovmexecutor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_defaultgetrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_defaultthisdeviceid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_peercoordinationid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_remotehandshakeexecutor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_remotehandshakeexecutordeps", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_subordinatetimeout", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_send", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_send_criticaljobtransport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_send_httpcriticaljobtransport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_send_throwtransporterror", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize_deserializecriticaljobresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize_serializecriticaljobspec", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_critical_job_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_criticaljobrequestwire", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_topology", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_topology_linkedtopologyentry", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljoberror", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobkind", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobspec", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_kind_metadata", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_verify", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_verify_depackageresultsignaturevalid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor", + "target": "apps_electron_vite_project_electron_main_internalinference_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/index.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_index", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveDepackageCutover.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveValidationCutover.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_livevalidationcutover", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/executor.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_executor_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.email.rig.test.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.test.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/roundtrip.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_remotehandshakeexecutordeps", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_send_criticaljobtransport", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_remotehandshakeexecutordeps", + "target": "apps_electron_vite_project_electron_main_critical_jobs_topology_linkedtopologyentry", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_remotehandshakeexecutordeps", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/index.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_index", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_remotehandshakeexecutordeps", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_remotehandshakeexecutor_run", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_subordinatetimeout", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_defaultgetrecord", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_defaultgetrecord", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L154", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_remotehandshakeexecutor_run", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_peercoordinationid", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_remotehandshakeexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_remotehandshakeexecutor_constructor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_remotehandshakeexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_remotehandshakeexecutor_isavailable", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_remotehandshakeexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_remotehandshakeexecutor_run", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_remotehandshakeexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_remotehandshakeexecutor_supports", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_remotehandshakeexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_send_criticaljobtransport", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_remotehandshakeexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_topology_linkedtopologyentry", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/index.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_index", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_remotehandshakeexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveDepackageCutover.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_remotehandshakeexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveValidationCutover.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_livevalidationcutover", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_remotehandshakeexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/executor.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_executor_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_remotehandshakeexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.email.rig.test.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_remotehandshakeexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.test.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_remotehandshakeexecutor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/roundtrip.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_remotehandshakeexecutor", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_remotehandshakeexecutor_supports", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobkind", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_remotehandshakeexecutor_isavailable", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L166", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_remotehandshakeexecutor_run", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_send_throwtransporterror" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L177", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_remotehandshakeexecutor_run", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize_deserializecriticaljobresult" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L157", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_remotehandshakeexecutor_run", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize_serializecriticaljobspec" + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_remotehandshakeexecutor_run", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_remotehandshakeexecutor_run", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobspec", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L183", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_remotehandshakeexecutor_run", + "target": "apps_electron_vite_project_electron_main_critical_jobs_verify_depackageresultsignaturevalid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_executors_remotehandshakeexecutor_remotehandshakeexecutor_run", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/featureFlags.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_featureflags", + "target": "apps_electron_vite_project_electron_main_critical_jobs_featureflags_isseamdepackagecutoverenabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/featureFlags.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_featureflags", + "target": "apps_electron_vite_project_electron_main_critical_jobs_featureflags_isseamvalidationcutoverenabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/featureFlags.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_featureflags", + "target": "apps_electron_vite_project_electron_main_critical_jobs_featureflags_readpersistedflag", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/featureFlags.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_featureflags", + "target": "apps_electron_vite_project_electron_main_critical_jobs_featureflags_truthy", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_critical_jobs_featureflags", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_critical_jobs_featureflags", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/opaqueIngestion.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_opaqueingestion", + "target": "apps_electron_vite_project_electron_main_critical_jobs_featureflags", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ingestionPipeline.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ingestionpipeline", + "target": "apps_electron_vite_project_electron_main_critical_jobs_featureflags", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/featureFlags.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_featureflags_isseamdepackagecutoverenabled", + "target": "apps_electron_vite_project_electron_main_critical_jobs_featureflags_truthy", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/featureFlags.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_featureflags_isseamvalidationcutoverenabled", + "target": "apps_electron_vite_project_electron_main_critical_jobs_featureflags_truthy", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/featureFlags.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_featureflags_readpersistedflag", + "target": "apps_electron_vite_project_electron_main_critical_jobs_featureflags_truthy", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/featureFlags.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_featureflags_isseamdepackagecutoverenabled", + "target": "apps_electron_vite_project_electron_main_critical_jobs_featureflags_readpersistedflag", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/featureFlags.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_featureflags_isseamvalidationcutoverenabled", + "target": "apps_electron_vite_project_electron_main_critical_jobs_featureflags_readpersistedflag", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_critical_jobs_featureflags_isseamvalidationcutoverenabled", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L1261", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_processbeappackageinlineinternal", + "target": "apps_electron_vite_project_electron_main_critical_jobs_featureflags_isseamvalidationcutoverenabled", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_critical_jobs_featureflags_isseamvalidationcutoverenabled", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L642", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_detectandroutemessageinline", + "target": "apps_electron_vite_project_electron_main_critical_jobs_featureflags_isseamvalidationcutoverenabled" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ingestionPipeline.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ingestionpipeline", + "target": "apps_electron_vite_project_electron_main_critical_jobs_featureflags_isseamvalidationcutoverenabled", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/ingestion/ingestionPipeline.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ingestionpipeline_processincominginput", + "target": "apps_electron_vite_project_electron_main_critical_jobs_featureflags_isseamvalidationcutoverenabled" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/opaqueIngestion.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_opaqueingestion", + "target": "apps_electron_vite_project_electron_main_critical_jobs_featureflags_isseamdepackagecutoverenabled", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/opaqueIngestion.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_opaqueingestion_isopaqueingestionactive", + "target": "apps_electron_vite_project_electron_main_critical_jobs_featureflags_isseamdepackagecutoverenabled" + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/index.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_index", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/index.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_index", + "target": "apps_electron_vite_project_electron_main_critical_jobs_topology", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/index.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_index", + "target": "apps_electron_vite_project_electron_main_critical_jobs_topology_linkedrole", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/index.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_index", + "target": "apps_electron_vite_project_electron_main_critical_jobs_topology_linkedtopologyentry", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/index.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_index", + "target": "apps_electron_vite_project_electron_main_critical_jobs_topology_loadlinkedtopology", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/index.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_index", + "target": "apps_electron_vite_project_electron_main_critical_jobs_topology_validatelinkedentry", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/index.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_index", + "target": "apps_electron_vite_project_electron_main_critical_jobs_topology_validatelinkedtopology", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_index", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/index.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_index", + "target": "apps_electron_vite_project_electron_main_critical_jobs_verify", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveDepackageCutover.ts", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover", + "target": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover_builddispatcher", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveDepackageCutover.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover", + "target": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover_depackagedispatchoutcome", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveDepackageCutover.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover", + "target": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover_depackageinputform", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveDepackageCutover.ts", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover", + "target": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover_dispatchdepackageemail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveDepackageCutover.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover", + "target": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover_resolvecrosvmconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveDepackageCutover.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover", + "target": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover_resolveexpectedbundlesha256", + "confidence_score": 1.0 + }, + { + "relation": "cites", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveDepackageCutover.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover", + "target": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover_ts_docref_rfc_822", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveDepackageCutover.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveDepackageCutover.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution_default_resolution_table", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveDepackageCutover.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveDepackageCutover.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljoberrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveDepackageCutover.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveDepackageCutover.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmproviderconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveDepackageCutover.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveDepackageCutover.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_depackageemailresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L979", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_routeviadepackageseam", + "target": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestion", + "target": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestion", + "target": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover_depackagedispatchoutcome", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestion_sandboxingestiondeps", + "target": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover_depackagedispatchoutcome", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveDepackageCutover.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover_resolvecrosvmconfig", + "target": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover_resolveexpectedbundlesha256", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveDepackageCutover.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover_builddispatcher", + "target": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover_resolvecrosvmconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveDepackageCutover.ts", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover_dispatchdepackageemail", + "target": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover_builddispatcher", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestion", + "target": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover_depackageinputform", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestion_sandboxfetchedmessage", + "target": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover_depackageinputform", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestion_sandboxingestiondeps", + "target": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover_depackageinputform", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestion", + "target": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover_dispatchdepackageemail", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L226", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestion_pollonesandboxreadaccount", + "target": "apps_electron_vite_project_electron_main_critical_jobs_livedepackagecutover_dispatchdepackageemail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveValidationCutover.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_livevalidationcutover", + "target": "apps_electron_vite_project_electron_main_critical_jobs_livevalidationcutover_builddispatcher", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveValidationCutover.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_livevalidationcutover", + "target": "apps_electron_vite_project_electron_main_critical_jobs_livevalidationcutover_dispatchvalidatedecryptedbeap", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveValidationCutover.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_livevalidationcutover", + "target": "apps_electron_vite_project_electron_main_critical_jobs_livevalidationcutover_dispatchvalidatenativebeap", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveValidationCutover.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_livevalidationcutover", + "target": "apps_electron_vite_project_electron_main_critical_jobs_livevalidationcutover_validationdispatchoutcome", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveValidationCutover.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_livevalidationcutover", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveValidationCutover.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_livevalidationcutover", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution_default_resolution_table", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveValidationCutover.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_livevalidationcutover", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveValidationCutover.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_livevalidationcutover", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljoberrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L1263", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_processbeappackageinlineinternal", + "target": "apps_electron_vite_project_electron_main_critical_jobs_livevalidationcutover", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L644", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_detectandroutemessageinline", + "target": "apps_electron_vite_project_electron_main_critical_jobs_livevalidationcutover", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ingestionPipeline.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ingestionpipeline_processincominginput", + "target": "apps_electron_vite_project_electron_main_critical_jobs_livevalidationcutover", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveValidationCutover.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_livevalidationcutover_dispatchvalidatedecryptedbeap", + "target": "apps_electron_vite_project_electron_main_critical_jobs_livevalidationcutover_builddispatcher", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/liveValidationCutover.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_livevalidationcutover_dispatchvalidatenativebeap", + "target": "apps_electron_vite_project_electron_main_critical_jobs_livevalidationcutover_builddispatcher", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/executor.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_executor_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_send", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/executor.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_executor_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_send_criticaljobtransport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/executor.test.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_executor_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_executor_test_exec", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/executor.test.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_executor_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_executor_test_linked", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/executor.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_executor_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_executor_test_party", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/executor.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_executor_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_executor_test_record", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/executor.test.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_executor_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_executor_test_resulttransport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/executor.test.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_executor_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_executor_test_spec", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/executor.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_executor_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/executor.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_executor_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_critical_job_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/executor.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_executor_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_criticaljobrequestwire", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/executor.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_executor_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_topology", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/executor.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_executor_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_topology_linkedtopologyentry", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/executor.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_executor_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/executor.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_executor_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/executor.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_executor_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobspec", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/executor.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_executor_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_verify", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/executor.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_executor_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_verify_depackagejobresulttocriticalresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/executor.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_executor_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/executor.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_executor_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker_rundepackagingjob", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/executor.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_executor_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/executor.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_executor_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/executor.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_executor_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_partyidentity", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/executor.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_executor_test_record", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_executor_test_party", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/executor.test.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_executor_test_exec", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_executor_test_record", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/executor.test.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_executor_test_spec", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L508", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_scorecandidate", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_executor_test_spec" + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L657", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_scoreelementagainstspecs", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_executor_test_spec" + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_gpustatus", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_executor_test_exec" + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_executor_test_exec" + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_executor_test_exec" + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-capability-check.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_capability_check", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_executor_test_exec" + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-diagnostics.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_executor_test_exec" + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_executor_test_exec" + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_executor_test_exec" + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeStatus.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_executor_test_exec" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.email.rig.test.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_criticaljobservicedispatch", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.email.rig.test.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_criticaljobservicedispatch_setcriticaljobreceiverdepsfactoryfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.email.rig.test.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_criticaljobservicedispatch_tryhandlecriticaljobservicep2p", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.email.rig.test.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.email.rig.test.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver_resetreplayfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.email.rig.test.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiverdispatcher", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.email.rig.test.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiverdispatcher_buildreceiverdispatcher", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.email.rig.test.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_send", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.email.rig.test.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_send_httpcriticaljobtransport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.email.rig.test.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test_cfg", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.email.rig.test.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test_eml", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.email.rig.test.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test_home", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.email.rig.test.ts", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test_internalrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.email.rig.test.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test_party", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.email.rig.test.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test_rig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.email.rig.test.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test_rigavailable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.email.rig.test.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test_startrigserver", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.email.rig.test.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.email.rig.test.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_iscriticaljobservicerpcshape", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.email.rig.test.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.email.rig.test.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution_default_resolution_table", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.email.rig.test.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution_resolutioncontext", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.email.rig.test.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.email.rig.test.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobspec", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.email.rig.test.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.email.rig.test.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmproviderconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.email.rig.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.email.rig.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.email.rig.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_partyidentity", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.email.rig.test.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test_internalrecord", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test_party", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.email.rig.test.ts", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test_eml", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.email.rig.test.ts", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test_startrigserver", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_criticaljobservicedispatch_tryhandlecriticaljobservicep2p", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.email.rig.test.ts", + "source_location": "L139", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_email_rig_test_startrigserver", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_iscriticaljobservicerpcshape", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_criticaljobservicedispatch", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_criticaljobservicedispatch_setcriticaljobreceiverdepsfactoryfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_criticaljobservicedispatch_tryhandlecriticaljobservicep2p", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.test.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.test.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver_resetreplayfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.test.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiverdispatcher", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.test.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiverdispatcher_buildreceiverdispatcher", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.test.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_send", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.test.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_send_httpcriticaljobtransport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.test.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_test_internalrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.test.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_test_party", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.test.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_test_startserver", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.test.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.test.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_iscriticaljobservicerpcshape", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.test.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.test.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution_default_resolution_table", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.test.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution_resolutioncontext", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.test.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.test.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobspec", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_partyidentity", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.test.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_test_internalrecord", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_test_party", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.test.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_test_startserver", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_criticaljobservicedispatch_tryhandlecriticaljobservicep2p", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.test.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_loopbackhttp_test_startserver", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_iscriticaljobservicerpcshape", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/receiver.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_receiver_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/receiver.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_receiver_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver_criticaljobreceiverdeps", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/receiver.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_receiver_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver_handlecriticaljobrequest", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/receiver.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_receiver_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver_resetreplayfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/receiver.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_receiver_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiverdispatcher", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/receiver.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_receiver_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiverdispatcher_buildreceiverdispatcher", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/receiver.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_receiver_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/receiver.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_receiver_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize_serializecriticaljobspec", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/receiver.test.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_receiver_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_receiver_test_depackagespec", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/receiver.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_receiver_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_receiver_test_party", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/receiver.test.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_receiver_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_receiver_test_pubkey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/receiver.test.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_receiver_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_receiver_test_record", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/receiver.test.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_receiver_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_receiver_test_requestwire", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/receiver.test.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_receiver_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_receiver_test_sandboxdeps", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/receiver.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_receiver_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/receiver.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_receiver_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_critical_job_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/receiver.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_receiver_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_criticaljobrequestwire", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/receiver.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_receiver_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/receiver.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_receiver_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobkind", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/receiver.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_receiver_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobspec", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/receiver.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_receiver_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/receiver.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_receiver_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/receiver.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_receiver_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_partyidentity", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/receiver.test.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_receiver_test_record", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_receiver_test_party", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/receiver.test.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_receiver_test_sandboxdeps", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_receiver_test_record", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/receiver.test.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_receiver_test_depackagespec", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_receiver_test_pubkey", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/receiver.test.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_receiver_test_pubkey", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/receiver.test.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_receiver_test_depackagespec", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/receiver.test.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_receiver_test_requestwire", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize_serializecriticaljobspec", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/receiver.test.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_receiver_test_sandboxdeps", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiverdispatcher_buildreceiverdispatcher", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/relayExclusion.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_relayexclusion_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_relayexclusion_test_electronmain", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/relayExclusion.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_relayexclusion_test", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/relayExclusion.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_relayexclusion_test", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_coordination_relay_allowed_capsule_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/roundtrip.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/roundtrip.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver_handlecriticaljobrequest", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/roundtrip.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver_resetreplayfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/roundtrip.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiverdispatcher", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/roundtrip.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiverdispatcher_buildreceiverdispatcher", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/roundtrip.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_send", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/roundtrip.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_send_criticaljobtransport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/roundtrip.test.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_roundtrip_test_linked", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/roundtrip.test.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_roundtrip_test_loopbacktransport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/roundtrip.test.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_roundtrip_test_multipartcarrier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/roundtrip.test.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_roundtrip_test_party", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/roundtrip.test.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_roundtrip_test_pubkey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/roundtrip.test.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_roundtrip_test_record", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/roundtrip.test.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_roundtrip_test_workstationdispatcher", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/roundtrip.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/roundtrip.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution_default_resolution_table", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/roundtrip.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution_resolutioncontext", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/roundtrip.test.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/roundtrip.test.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobspec", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/roundtrip.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/roundtrip.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/roundtrip.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_partyidentity", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/roundtrip.test.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_roundtrip_test_record", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_roundtrip_test_party", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/roundtrip.test.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_roundtrip_test_loopbacktransport", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_roundtrip_test_record", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/roundtrip.test.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_roundtrip_test_workstationdispatcher", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_roundtrip_test_record", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/roundtrip.test.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_roundtrip_test_pubkey", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/roundtrip.test.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_roundtrip_test_loopbacktransport", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver_handlecriticaljobrequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/roundtrip.test.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_roundtrip_test_loopbacktransport", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiverdispatcher_buildreceiverdispatcher", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/roundtrip.test.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_roundtrip_test_workstationdispatcher", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_roundtrip_test_loopbacktransport", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/serialize.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_serialize_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/serialize.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_serialize_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize_assertnokeymaterialonwire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/serialize.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_serialize_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize_decodebuffers", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/serialize.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_serialize_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize_deserializecriticaljobspec", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/serialize.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_serialize_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize_encodebuffers", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/serialize.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_serialize_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize_serializecriticaljobspec", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/serialize.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_serialize_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/serialize.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_serialize_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobspec", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/topology.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_topology_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_topology", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/topology.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_topology_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_topology_loadlinkedtopology", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/topology.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_topology_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_topology_validatelinkedentry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/topology.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_tests_topology_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_topology_validatelinkedtopology", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/criticalJobServiceDispatch.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_criticaljobservicedispatch", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_criticaljobservicedispatch_criticaljobreceiverdepsfactory", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/criticalJobServiceDispatch.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_criticaljobservicedispatch", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_criticaljobservicedispatch_defaultdepsfactory", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/criticalJobServiceDispatch.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_criticaljobservicedispatch", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_criticaljobservicedispatch_setcriticaljobreceiverdepsfactoryfortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/criticalJobServiceDispatch.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_criticaljobservicedispatch", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_criticaljobservicedispatch_tryhandlecriticaljobservicep2p", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/criticalJobServiceDispatch.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_criticaljobservicedispatch", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_criticaljobservicedispatch_writejson", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/criticalJobServiceDispatch.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_criticaljobservicedispatch", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/criticalJobServiceDispatch.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_criticaljobservicedispatch", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver_criticaljobreceiverdeps", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/criticalJobServiceDispatch.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_criticaljobservicedispatch", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver_handlecriticaljobrequest", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/criticalJobServiceDispatch.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_criticaljobservicedispatch", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiverdispatcher", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/criticalJobServiceDispatch.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_criticaljobservicedispatch", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiverdispatcher_buildreceiverdispatcher", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/criticalJobServiceDispatch.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_criticaljobservicedispatch", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/criticalJobServiceDispatch.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_criticaljobservicedispatch", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_critical_job_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/criticalJobServiceDispatch.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_criticaljobservicedispatch", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_criticaljobrequestwire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/criticalJobServiceDispatch.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_criticaljobservicedispatch", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_isvalidcriticaljobbaseenvelope", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/criticalJobServiceDispatch.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_criticaljobservicedispatch", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/criticalJobServiceDispatch.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_criticaljobservicedispatch", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/criticalJobServiceDispatch.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_criticaljobservicedispatch_tryhandlecriticaljobservicep2p", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_criticaljobservicedispatch_writejson", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/criticalJobServiceDispatch.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_criticaljobservicedispatch_defaultdepsfactory", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiverdispatcher_buildreceiverdispatcher", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/criticalJobServiceDispatch.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_criticaljobservicedispatch_defaultdepsfactory", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/criticalJobServiceDispatch.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_criticaljobservicedispatch_tryhandlecriticaljobservicep2p", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver_handlecriticaljobrequest" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/criticalJobServiceDispatch.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_criticaljobservicedispatch_tryhandlecriticaljobservicep2p", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_isvalidcriticaljobbaseenvelope" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiver.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver_criticaljobreceiveoutcome", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiver.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver_criticaljobreceiverdeps", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiver.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver_errorwire", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiver.ts", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver_handlecriticaljobrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiver.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver_inputbyteslength", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiver.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver_markseen", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiver.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver_receiver_max_input_bytes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiver.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver_resetreplayfortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiver.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver_seenjobids", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiver.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiver.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize_deserializecriticaljobspec", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiver.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize_serializecriticaljobresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiver.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiver.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_critical_job_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiver.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_criticaljoberrorwire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiver.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_criticaljobrequestwire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiver.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_criticaljobresultwire", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiver.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiver.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljoberrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiver.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobkind", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiver.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_kind_metadata", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiver.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiver.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiver.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver", + "target": "apps_electron_vite_project_electron_main_internalinference_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiver.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiver.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver_criticaljobreceiverdeps", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiver.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver_handlecriticaljobrequest", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver_criticaljobreceiverdeps" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiver.ts", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver_handlecriticaljobrequest", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver_markseen", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiver.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver_handlecriticaljobrequest", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver_errorwire", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiver.ts", + "source_location": "L142", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver_handlecriticaljobrequest", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver_inputbyteslength", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiver.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver_inputbyteslength", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiver.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver_handlecriticaljobrequest", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize_deserializecriticaljobspec" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiver.ts", + "source_location": "L178", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver_handlecriticaljobrequest", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize_serializecriticaljobresult" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiver.ts", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiver_handlecriticaljobrequest", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiverDispatcher.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiverdispatcher", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiverdispatcher_buildreceiverdispatcher", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiverDispatcher.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiverdispatcher", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiverDispatcher.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiverdispatcher", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution_default_resolution_table", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/receiverDispatcher.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_receiverdispatcher", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution_resolutioncontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/sandboxEmailDelivery.ts", + "source_location": "L250", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery_defaulthostwriter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/sandboxEmailDelivery.ts", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery_httpsandboxdeliverytransport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/sandboxEmailDelivery.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery_issandboxemaildeliveryshape", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/sandboxEmailDelivery.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery_nextdeliveryid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/sandboxEmailDelivery.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery_postsandboxemaildelivery", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/sandboxEmailDelivery.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery_sandbox_email_delivery_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/sandboxEmailDelivery.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery_sandbox_email_delivery_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/sandboxEmailDelivery.ts", + "source_location": "L172", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery_sandboxdeliveryhostwriter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/sandboxEmailDelivery.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery_sandboxdeliverytransport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/sandboxEmailDelivery.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery_sandboxemaildeliverywire", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/sandboxEmailDelivery.ts", + "source_location": "L187", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery_setsandboxdeliveryhostwriterfortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/sandboxEmailDelivery.ts", + "source_location": "L195", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery_tryhandlesandboxemaildelivery", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/sandboxEmailDelivery.ts", + "source_location": "L179", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery_writejson", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/sandboxEmailDelivery.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/sandboxEmailDelivery.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_depackageemailresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/sandboxEmailDelivery.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/sandboxEmailDelivery.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_depackageemailjobresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/sandboxEmailDelivery.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestion", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/sandboxEmailDelivery.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestion_sandboxdeliveryresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/sandboxEmailDelivery.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestion_sandboxfetchedmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestionProduction.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/sandboxEmailDelivery.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery_sandboxemaildeliverywire", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_depackageemailresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/sandboxEmailDelivery.ts", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery_tryhandlesandboxemaildelivery", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery_issandboxemaildeliveryshape", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestionProduction.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery_sandboxdeliverytransport", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/sandboxEmailDelivery.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery_postsandboxemaildelivery", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery_nextdeliveryid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestionProduction.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery_postsandboxemaildelivery", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestionProduction.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction_buildproductionsandboxingestiondeps", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery_postsandboxemaildelivery" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/sandboxEmailDelivery.ts", + "source_location": "L206", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery_tryhandlesandboxemaildelivery", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery_writejson", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/sandboxEmailDelivery.ts", + "source_location": "L282", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery_defaulthostwriter", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/sandboxEmailDelivery.ts", + "source_location": "L289", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery_defaulthostwriter", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/sandboxEmailDelivery.ts", + "source_location": "L255", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_sandboxemaildelivery_defaulthostwriter", + "target": "apps_electron_vite_project_electron_main_email_messagerouter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/send.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_send", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_send_criticaljobtransport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/send.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_send", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_send_criticaljobtransportargs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/send.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_send", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_send_criticaljobtransportresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/send.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_send", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_send_httpcriticaljobtransport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/send.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_send", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_send_parseresponsebody", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/send.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_send", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_send_throwtransporterror", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/send.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_send", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/send.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_send", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_criticaljoberrorwire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/send.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_send", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_criticaljobrequestwire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/send.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_send", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_criticaljobresultwire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/send.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_send", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_criticaljobserviceenvelope", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/send.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_send", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_iscriticaljobservicerpcshape", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/send.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_send", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_isvalidcriticaljobbaseenvelope", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/send.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_send", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/send.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_send", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljoberror", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/send.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_send", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljoberrorcode", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/send.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_send_criticaljobtransportargs", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_criticaljobrequestwire", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/send.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_send_httpcriticaljobtransport", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_send_parseresponsebody", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/send.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_send_parseresponsebody", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_iscriticaljobservicerpcshape", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/send.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_send_parseresponsebody", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_isvalidcriticaljobbaseenvelope", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/serialize.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize_allowed_spec_top_keys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/serialize.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize_assertnokeymaterialonwire", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/serialize.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize_decodebuffers", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/serialize.ts", + "source_location": "L180", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize_deserializecriticaljobresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/serialize.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize_deserializecriticaljobspec", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/serialize.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize_encodebuffers", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/serialize.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize_scanforkeymaterial", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/serialize.ts", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize_serializecriticaljobresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/serialize.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize_serializecriticaljobspec", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/serialize.ts", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize_valid_flush", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/serialize.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/serialize.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_serializedcriticaljobresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/serialize.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_serializedcriticaljobspec", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/serialize.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/serialize.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljoberror", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/serialize.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobkind", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/serialize.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/serialize.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobspec", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/serialize.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_flushmode", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/serialize.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize_encodebuffers", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/serialize.ts", + "source_location": "L177", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize_serializecriticaljobresult", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize_encodebuffers", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/serialize.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize_serializecriticaljobspec", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize_encodebuffers", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/serialize.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize_decodebuffers", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/serialize.ts", + "source_location": "L181", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize_deserializecriticaljobresult", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize_decodebuffers", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/serialize.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize_deserializecriticaljobspec", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize_decodebuffers", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/serialize.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize_assertnokeymaterialonwire", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize_allowed_spec_top_keys" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/serialize.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize_assertnokeymaterialonwire", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize_scanforkeymaterial", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/serialize.ts", + "source_location": "L160", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize_deserializecriticaljobspec", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize_assertnokeymaterialonwire", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/serialize.ts", + "source_location": "L137", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize_serializecriticaljobspec", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize_assertnokeymaterialonwire", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/serialize.ts", + "source_location": "L156", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize_deserializecriticaljobspec", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_serialize_valid_flush" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/wire.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_critical_job_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/wire.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_criticaljoberrorwire", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/wire.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_criticaljobrequestwire", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/wire.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_criticaljobresultwire", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/wire.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_criticaljobserviceenvelope", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/wire.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_criticaljobserviceenvelopebase", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/wire.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_criticaljobservicemessagetype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/wire.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_iscriticaljobservicerpcshape", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/wire.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_iscriticaljobservicetype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/wire.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_isvalidcriticaljobbaseenvelope", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/wire.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_serializedcriticaljobresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/wire.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_serializedcriticaljobspec", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/wire.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/wire.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljoberrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/wire.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobkind", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/wire.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_criticaljoberrorwire", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_criticaljobserviceenvelopebase", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/wire.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_criticaljobrequestwire", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_criticaljobserviceenvelopebase", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/wire.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_criticaljobresultwire", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_criticaljobserviceenvelopebase", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/wire.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_serializedcriticaljobspec", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobkind", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/wire.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_criticaljoberrorwire", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljoberrorcode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/wire.ts", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_iscriticaljobservicerpcshape", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_iscriticaljobservicetype", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/remote/wire.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_isvalidcriticaljobbaseenvelope", + "target": "apps_electron_vite_project_electron_main_critical_jobs_remote_wire_iscriticaljobservicetype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/resolution.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_resolution", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution_default_resolution_table", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/resolution.ts", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_resolution", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution_lookuprule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/resolution.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_resolution", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution_resolutioncontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/resolution.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_resolution", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution_resolutionrule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/resolution.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_resolution", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution_resolutiontable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/resolution.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_resolution", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution_resolve", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/resolution.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_resolution", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution_resolvedexecutor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/resolution.ts", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_resolution", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution_validateresolutiontable", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/resolution.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_resolution", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/resolution.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_resolution", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljoberror", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/resolution.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_resolution", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobkind", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/resolution.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_resolution", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_executorid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/resolution.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_resolution", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_kind_metadata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/resolution.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_resolution", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_role", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/resolution.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_resolution", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_tier", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/resolution.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_resolution", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_transitional_inprocess_kinds", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/resolution.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_resolution", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_untrusted_content_kinds", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmImageBundlePreflight.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmimagebundlepreflight_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/resolution.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_resolution_resolutioncontext", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobkind", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/resolution.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_resolution_resolutioncontext", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_role", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/resolution.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_resolution_resolutioncontext", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_tier", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/resolution.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_resolution_resolvedexecutor", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_executorid", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/resolution.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_resolution_resolutionrule", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobkind", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/resolution.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_resolution_resolutionrule", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_role", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/resolution.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_resolution_resolutionrule", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_tier", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmImageBundlePreflight.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmimagebundlepreflight_test", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution_default_resolution_table", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/resolution.ts", + "source_location": "L169", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_resolution_resolve", + "target": "apps_electron_vite_project_electron_main_critical_jobs_resolution_lookuprule", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/resolution.ts", + "source_location": "L232", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_resolution_validateresolutiontable", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_transitional_inprocess_kinds" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/resolution.ts", + "source_location": "L233", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_resolution_validateresolutiontable", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_untrusted_content_kinds" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/topology.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_topology", + "target": "apps_electron_vite_project_electron_main_critical_jobs_topology_linkedentryvalidation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/topology.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_topology", + "target": "apps_electron_vite_project_electron_main_critical_jobs_topology_linkedrole", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/topology.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_topology", + "target": "apps_electron_vite_project_electron_main_critical_jobs_topology_linkedtopologyentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/topology.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_topology", + "target": "apps_electron_vite_project_electron_main_critical_jobs_topology_loadlinkedtopology", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/topology.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_topology", + "target": "apps_electron_vite_project_electron_main_critical_jobs_topology_safeparse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/topology.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_topology", + "target": "apps_electron_vite_project_electron_main_critical_jobs_topology_valid_kinds", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/topology.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_topology", + "target": "apps_electron_vite_project_electron_main_critical_jobs_topology_validatelinkedentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/topology.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_topology", + "target": "apps_electron_vite_project_electron_main_critical_jobs_topology_validatelinkedtopology", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/topology.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_topology", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/topology.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_topology", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobkind", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/topology.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_topology", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_kind_metadata", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/topology.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_topology_linkedtopologyentry", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobkind", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/topology.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_topology_validatelinkedentry", + "target": "apps_electron_vite_project_electron_main_critical_jobs_topology_valid_kinds" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/topology.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_topology_validatelinkedtopology", + "target": "apps_electron_vite_project_electron_main_critical_jobs_topology_validatelinkedentry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/topology.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_topology_loadlinkedtopology", + "target": "apps_electron_vite_project_electron_main_critical_jobs_topology_validatelinkedtopology", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/topology.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_topology_loadlinkedtopology", + "target": "apps_electron_vite_project_electron_main_critical_jobs_topology_safeparse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L331", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_types", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljoberror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L310", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_types", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljoberrorcode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_types", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobkind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L296", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_types", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L278", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_types", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobspec", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L184", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_types", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_depackageoutput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L176", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_types", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_executorid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L179", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_types", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_flushmode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_types", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_jobinputmap", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L264", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_types", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_joblimits", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L243", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_types", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_joboutputmap", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_types", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_keylocality", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_types", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_kind_metadata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_types", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_kindmetadata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_types", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_pipeline", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L194", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_types", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_renderverdict", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L289", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_types", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_resultmeta", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_types", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_role", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L342", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_types", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_safe_text_output_kinds", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L173", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_types", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_tier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L166", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_types", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_transitional_inprocess_kinds", + "confidence_score": 1.0 + }, + { + "relation": "cites", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L204", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_types", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_ts_docref_rfc_822", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L154", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_types", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_untrusted_content_kinds", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_types", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_blindcourier", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_types", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_blindcourier_courierartifactrecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_types", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_types", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_depackageemailresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_types", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_types", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_jobkind", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_types", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_types", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext_safetextv1", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/verify.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_verify", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L186", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_types_depackageoutput", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_blindcourier_courierartifactrecord", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L185", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_types_depackageoutput", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext_safetextv1", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/verify.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_verify", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_depackageoutput", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L252", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_types_joboutputmap", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_depackageemailresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/verify.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_verify", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljobresult", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/types.ts", + "source_location": "L332", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljoberror", + "target": "apps_electron_vite_project_electron_main_critical_jobs_types_criticaljoberror_constructor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/verify.ts", + "source_location": "L189", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_verify", + "target": "apps_electron_vite_project_electron_main_critical_jobs_verify_depackageemailverification", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/verify.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_verify", + "target": "apps_electron_vite_project_electron_main_critical_jobs_verify_depackagejobresulttocriticalresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/verify.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_verify", + "target": "apps_electron_vite_project_electron_main_critical_jobs_verify_depackageresultsignaturevalid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/verify.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_verify", + "target": "apps_electron_vite_project_electron_main_critical_jobs_verify_depackageverification", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/verify.ts", + "source_location": "L142", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_verify", + "target": "apps_electron_vite_project_electron_main_critical_jobs_verify_hoststagefailure", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/verify.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_verify", + "target": "apps_electron_vite_project_electron_main_critical_jobs_verify_reconstructjobresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/verify.ts", + "source_location": "L157", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_verify", + "target": "apps_electron_vite_project_electron_main_critical_jobs_verify_runhostfinalstage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/verify.ts", + "source_location": "L202", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_verify", + "target": "apps_electron_vite_project_electron_main_critical_jobs_verify_verifydepackageemailresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/verify.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_verify", + "target": "apps_electron_vite_project_electron_main_critical_jobs_verify_verifydepackageresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/verify.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_verify", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_blindcourier", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/verify.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_verify", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_blindcourier_courierartifactrecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/verify.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_verify", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_blindcourier_tocourierrecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/verify.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_verify", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_defenseindepthdetection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/verify.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_verify", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_defenseindepthdetection_detectthreats", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/verify.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_verify", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/verify.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_verify", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_depackageemailresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/verify.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_verify", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/verify.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_verify", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_depackageemailjobresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/verify.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_verify", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_jobresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/verify.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_verify", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_verifydepackageemailresultsignature", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/verify.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_verify", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_verifyjobresultsignature", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/verify.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_verify", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/verify.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_verify", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext_safetextv1", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/verify.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_verify", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext_validatesafetext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/verify.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_verify_depackageresultsignaturevalid", + "target": "apps_electron_vite_project_electron_main_critical_jobs_verify_reconstructjobresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/verify.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_verify_verifydepackageresult", + "target": "apps_electron_vite_project_electron_main_critical_jobs_verify_reconstructjobresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/verify.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_verify_depackageresultsignaturevalid", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_verifyjobresultsignature" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/verify.ts", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_verify_verifydepackageresult", + "target": "apps_electron_vite_project_electron_main_critical_jobs_verify_runhostfinalstage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/verify.ts", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_verify_verifydepackageresult", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_blindcourier_tocourierrecord" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/verify.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_verify_verifydepackageresult", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_verifyjobresultsignature" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/verify.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_verify_runhostfinalstage", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_defenseindepthdetection_detectthreats", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/verify.ts", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_verify_runhostfinalstage", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext_validatesafetext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/verify.ts", + "source_location": "L229", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_verify_verifydepackageemailresult", + "target": "apps_electron_vite_project_electron_main_critical_jobs_verify_runhostfinalstage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/critical-jobs/verify.ts", + "source_location": "L216", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_critical_jobs_verify_verifydepackageemailresult", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_verifydepackageemailresultsignature" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/__tests__/builtInModes.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_tests_builtinmodes_test", + "target": "apps_electron_vite_project_electron_main_custommodes_builtinmodes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/__tests__/builtInModes.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_tests_builtinmodes_test", + "target": "apps_electron_vite_project_electron_main_custommodes_builtinmodes_backfillemptyscamwatchdogfields", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/__tests__/builtInModes.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_tests_builtinmodes_test", + "target": "apps_electron_vite_project_electron_main_custommodes_builtinmodes_backfillscamwatchdogchatonlysearchfocus", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/__tests__/builtInModes.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_tests_builtinmodes_test", + "target": "apps_electron_vite_project_electron_main_custommodes_builtinmodes_ensurebuiltinmodes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/__tests__/builtInModes.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_tests_builtinmodes_test", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/__tests__/builtInModes.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_tests_builtinmodes_test", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_normalizecustommodefields", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/__tests__/builtInModes.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_tests_builtinmodes_test", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/__tests__/builtInModes.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_tests_builtinmodes_test", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin_builtin_scam_watchdog_id", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/__tests__/builtInModes.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_tests_builtinmodes_test", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin_createdefaultscamwatchdogbuiltinmode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/__tests__/builtInModes.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_tests_builtinmodes_test", + "target": "apps_extension_chromium_src_shared_ui_watchdogprompts", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/__tests__/builtInModes.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_tests_builtinmodes_test", + "target": "apps_extension_chromium_src_shared_ui_watchdogprompts_scam_watchdog_chat_instruction", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/__tests__/builtInModes.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_tests_builtinmodes_test", + "target": "apps_extension_chromium_src_shared_ui_watchdogprompts_scam_watchdog_legacy_bundled_search_focus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/__tests__/customModesStore.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_tests_custommodesstore_test", + "target": "apps_electron_vite_project_electron_main_custommodes_tests_custommodesstore_test_electronmockstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/__tests__/customModesStore.test.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_tests_custommodesstore_test", + "target": "apps_electron_vite_project_electron_main_custommodes_tests_custommodesstore_test_makeelectronmock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/__tests__/customModesStore.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_tests_custommodesstore_test", + "target": "apps_electron_vite_project_electron_main_custommodes_tests_custommodesstore_test_makemode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/__tests__/customModesStore.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_tests_custommodesstore_test", + "target": "apps_electron_vite_project_electron_main_llm_localllmpaths", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/__tests__/customModesStore.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_tests_custommodesstore_test", + "target": "apps_electron_vite_project_electron_main_llm_localllmpaths_host_ai_default_local_llamacpp_base", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/__tests__/scamWatchdogBuiltIn.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_tests_scamwatchdogbuiltin_test", + "target": "apps_electron_vite_project_electron_main_custommodes_tests_scamwatchdogbuiltin_test_makeelectronmock", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/__tests__/scamWatchdogBuiltIn.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_tests_scamwatchdogbuiltin_test", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/__tests__/scamWatchdogBuiltIn.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_tests_scamwatchdogbuiltin_test", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_ismodedeletable", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/__tests__/scamWatchdogBuiltIn.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_tests_scamwatchdogbuiltin_test", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/__tests__/scamWatchdogBuiltIn.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_tests_scamwatchdogbuiltin_test", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin_builtin_scam_watchdog_id", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/broadcast.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_broadcast", + "target": "apps_electron_vite_project_electron_main_custommodes_broadcast_broadcastcustommodeschanged", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/broadcast.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_broadcast", + "target": "apps_electron_vite_project_electron_main_custommodes_broadcast_setcustommodesextensionbroadcast", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/broadcast.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_broadcast", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/broadcast.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_broadcast", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodedefinition", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/ipc.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_ipc", + "target": "apps_electron_vite_project_electron_main_custommodes_broadcast", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/customModes/broadcast.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_broadcast_broadcastcustommodeschanged", + "target": "test_mocks_electron_browserwindow_getallwindows" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/ipc.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_ipc", + "target": "apps_electron_vite_project_electron_main_custommodes_broadcast_broadcastcustommodeschanged", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/ipc.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_ipc_aftermutation", + "target": "apps_electron_vite_project_electron_main_custommodes_broadcast_broadcastcustommodeschanged", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/builtInModes.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_builtinmodes", + "target": "apps_electron_vite_project_electron_main_custommodes_builtinmodes_backfillemptyscamwatchdogfields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/builtInModes.ts", + "source_location": "L177", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_builtinmodes", + "target": "apps_electron_vite_project_electron_main_custommodes_builtinmodes_backfillemptyscamwatchdogsearchfocus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/builtInModes.ts", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_builtinmodes", + "target": "apps_electron_vite_project_electron_main_custommodes_builtinmodes_backfillscamwatchdogchatonlysearchfocus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/builtInModes.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_builtinmodes", + "target": "apps_electron_vite_project_electron_main_custommodes_builtinmodes_ensurebuiltinmodes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/builtInModes.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_builtinmodes", + "target": "apps_electron_vite_project_electron_main_custommodes_builtinmodes_seedrow", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/builtInModes.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_builtinmodes", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/builtInModes.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_builtinmodes", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodedefinition", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/builtInModes.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_builtinmodes", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_normalizecustommodefields", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/builtInModes.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_builtinmodes", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/builtInModes.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_builtinmodes", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin_builtin_scam_watchdog_id", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/builtInModes.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_builtinmodes", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin_createdefaultscamwatchdogbuiltinmode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/builtInModes.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_builtinmodes", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin_listbuiltinmodeseeds", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/builtInModes.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_builtinmodes", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin_scam_watchdog_default_icon", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/builtInModes.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_builtinmodes", + "target": "apps_extension_chromium_src_shared_ui_watchdogprompts", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/builtInModes.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_builtinmodes", + "target": "apps_extension_chromium_src_shared_ui_watchdogprompts_scamwatchdogsearchfocustochatonly", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore", + "target": "apps_electron_vite_project_electron_main_custommodes_builtinmodes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/customModes/builtInModes.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_builtinmodes_ensurebuiltinmodes", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin_listbuiltinmodeseeds" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore", + "target": "apps_electron_vite_project_electron_main_custommodes_builtinmodes_ensurebuiltinmodes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L186", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_normalizemodesfromraw", + "target": "apps_electron_vite_project_electron_main_custommodes_builtinmodes_ensurebuiltinmodes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_persistbuiltinseedifneeded", + "target": "apps_electron_vite_project_electron_main_custommodes_builtinmodes_ensurebuiltinmodes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L265", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_writemodes", + "target": "apps_electron_vite_project_electron_main_custommodes_builtinmodes_ensurebuiltinmodes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/builtInModes.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_builtinmodes_backfillemptyscamwatchdogfields", + "target": "apps_electron_vite_project_electron_main_custommodes_builtinmodes_seedrow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/builtInModes.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_builtinmodes_seedrow", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin_createdefaultscamwatchdogbuiltinmode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/customModes/builtInModes.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_builtinmodes_backfillemptyscamwatchdogfields", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_normalizecustommodefields" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/builtInModes.ts", + "source_location": "L185", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_builtinmodes_backfillemptyscamwatchdogsearchfocus", + "target": "apps_electron_vite_project_electron_main_custommodes_builtinmodes_backfillemptyscamwatchdogfields", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore", + "target": "apps_electron_vite_project_electron_main_custommodes_builtinmodes_backfillemptyscamwatchdogfields", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_persistbuiltinseedifneeded", + "target": "apps_electron_vite_project_electron_main_custommodes_builtinmodes_backfillemptyscamwatchdogfields", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/customModes/builtInModes.ts", + "source_location": "L157", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_builtinmodes_backfillscamwatchdogchatonlysearchfocus", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_normalizecustommodefields" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/customModes/builtInModes.ts", + "source_location": "L151", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_builtinmodes_backfillscamwatchdogchatonlysearchfocus", + "target": "apps_extension_chromium_src_shared_ui_watchdogprompts_scamwatchdogsearchfocustochatonly" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore", + "target": "apps_electron_vite_project_electron_main_custommodes_builtinmodes_backfillscamwatchdogchatonlysearchfocus", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_persistbuiltinseedifneeded", + "target": "apps_electron_vite_project_electron_main_custommodes_builtinmodes_backfillscamwatchdogchatonlysearchfocus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_atomicwritemodes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L152", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_backupmodesfileifexists", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L350", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_createmode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_custommodesfileenvelope", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_custommodesmigrationmeta", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_custommodesmigrationorigin", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_defaultmigrationmeta", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L399", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_deletemode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L274", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_findduplicatename", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L346", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_getmigrationstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L342", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_getmodebyid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L416", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_importmodes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L338", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_listmodes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L284", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_mergecustommodes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_metapath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_modesbackuppath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_modespath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L325", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_mutatemodes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L185", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_normalizemodesfromraw", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_persistbuiltinseedifneeded", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_readmeta", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L194", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_readmodesenvelope", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L441", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_readmodesenvelopefortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L436", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_resetcustommodeswritelockfortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_storeresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L366", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_updatemode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_withstorelock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_writelock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_writemeta", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L264", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_writemodes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore", + "target": "apps_electron_vite_project_electron_userdatabootstrapstate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore", + "target": "apps_electron_vite_project_electron_userdatabootstrapstate_isuserdatapathbootstrapped", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore", + "target": "apps_extension_chromium_src_shared_ui_custommodepersistence", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore", + "target": "apps_extension_chromium_src_shared_ui_custommodepersistence_coercecustommoderecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore", + "target": "apps_extension_chromium_src_shared_ui_custommodepersistence_custom_modes_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore", + "target": "apps_extension_chromium_src_shared_ui_custommodepersistence_migratecustommodespersistedstate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_buildcustommodefromdraft", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodedefinition", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodedraft", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_ismodedeletable", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_normalizecustommodefields", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_normalizecustommodenamekey", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/ipc.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_ipc", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/detectVramCapacity.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_detectvramcapacity_estimatemaxresidentmodels", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/modeModelWarmupTrigger.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_modemodelwarmuptrigger", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_persistbuiltinseedifneeded", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_readmeta", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_persistbuiltinseedifneeded", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_writemeta", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_persistbuiltinseedifneeded", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_writemodes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L201", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_readmodesenvelope", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_persistbuiltinseedifneeded", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/ipc.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_ipc", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_custommodesmigrationorigin", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_custommodesfileenvelope", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodedefinition", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L351", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_createmode", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_withstorelock", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L400", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_deletemode", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_withstorelock", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L420", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_importmodes", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_withstorelock", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L367", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_updatemode", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_withstorelock", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_atomicwritemodes", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_modespath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L153", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_backupmodesfileifexists", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_modespath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_modesbackuppath", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_modespath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_modespath", + "target": "apps_electron_vite_project_electron_userdatabootstrapstate_isuserdatapathbootstrapped", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_readmodesenvelope", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_modespath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_readmeta", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_metapath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_writemeta", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_metapath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L156", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_backupmodesfileifexists", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_modesbackuppath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L247", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_readmodesenvelope", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_modesbackuppath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_readmeta", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_defaultmigrationmeta", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L347", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_getmigrationstatus", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_readmeta", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L424", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_importmodes", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_readmeta", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L429", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_importmodes", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_writemeta", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L165", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_atomicwritemodes", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_backupmodesfileifexists", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L266", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_writemodes", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_atomicwritemodes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L421", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_importmodes", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_normalizemodesfromraw", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L188", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_normalizemodesfromraw", + "target": "apps_extension_chromium_src_shared_ui_custommodepersistence_coercecustommoderecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L190", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_normalizemodesfromraw", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_normalizecustommodefields", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L209", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_readmodesenvelope", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_normalizemodesfromraw", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L352", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_createmode", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_readmodesenvelope", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L404", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_deletemode", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_readmodesenvelope", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L339", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_listmodes", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_readmodesenvelope", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L327", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_mutatemodes", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_readmodesenvelope", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L216", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_readmodesenvelope", + "target": "apps_extension_chromium_src_shared_ui_custommodepersistence_migratecustommodespersistedstate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L442", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_readmodesenvelopefortests", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_readmodesenvelope", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L371", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_updatemode", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_readmodesenvelope", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L329", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_mutatemodes", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_writemodes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L265", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_writemodes", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_normalizecustommodefields", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L352", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_createmode", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_findduplicatename", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L275", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_findduplicatename", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_normalizecustommodenamekey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L378", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_updatemode", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_findduplicatename", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L422", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_importmodes", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_mergecustommodes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L295", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_mergecustommodes", + "target": "apps_extension_chromium_src_shared_ui_custommodepersistence_coercecustommoderecord" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L290", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_mergecustommodes", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_normalizecustommodefields" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L308", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_mergecustommodes", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_normalizecustommodenamekey" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L362", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_createmode", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_mutatemodes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L412", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_deletemode", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_mutatemodes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L422", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_importmodes", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_mutatemodes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L382", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_updatemode", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_mutatemodes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L343", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_getmodebyid", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_listmodes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/ipc.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_ipc", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_listmodes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/customModes/ipc.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_ipc_registercustommodeshandlers", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_listmodes" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/modeModelWarmupTrigger.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_modemodelwarmuptrigger", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_getmodebyid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/modeModelWarmupTrigger.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_modemodelwarmuptrigger_runmodemodelwarmontrigger", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_getmodebyid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_getmodebyid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_resolvewatchdogeffectivemodelid", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_getmodebyid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L157", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_resolvewatchdogsystempromptfrommode", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_getmodebyid" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/ipc.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_ipc", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_getmigrationstatus", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/customModes/ipc.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_ipc_registercustommodeshandlers", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_getmigrationstatus" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L357", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_createmode", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_buildcustommodefromdraft" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/ipc.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_ipc", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_createmode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/customModes/ipc.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_ipc_registercustommodeshandlers", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_createmode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L385", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_updatemode", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_normalizecustommodefields" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/ipc.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_ipc", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_updatemode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/customModes/ipc.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_ipc_registercustommodeshandlers", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_updatemode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/customModes/customModesStore.ts", + "source_location": "L409", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_deletemode", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_ismodedeletable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/ipc.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_ipc", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_deletemode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/customModes/ipc.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_ipc_registercustommodeshandlers", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_deletemode" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/ipc.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_ipc", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_importmodes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/customModes/ipc.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_ipc_registercustommodeshandlers", + "target": "apps_electron_vite_project_electron_main_custommodes_custommodesstore_importmodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/ipc.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_ipc", + "target": "apps_electron_vite_project_electron_main_custommodes_ipc_aftermutation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/ipc.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_ipc", + "target": "apps_electron_vite_project_electron_main_custommodes_ipc_ipcresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/ipc.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_ipc", + "target": "apps_electron_vite_project_electron_main_custommodes_ipc_ismigrationorigin", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/ipc.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_ipc", + "target": "apps_electron_vite_project_electron_main_custommodes_ipc_registercustommodeshandlers", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/ipc.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_ipc", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/ipc.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_ipc", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodedraft", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/ipc.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_ipc_registercustommodeshandlers", + "target": "apps_electron_vite_project_electron_main_custommodes_ipc_ismigrationorigin", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/customModes/ipc.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_custommodes_ipc_registercustommodeshandlers", + "target": "apps_electron_vite_project_electron_main_custommodes_ipc_aftermutation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/blindCourier.invariant.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_blindcourier_invariant_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_blindcourier", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/blindCourier.invariant.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_blindcourier_invariant_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_blindcourier_tocourierrecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/blindCourier.invariant.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_blindcourier_invariant_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/blindCourier.invariant.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_blindcourier_invariant_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker_depackage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/blindCourier.invariant.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_blindcourier_invariant_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker_rundepackagingjob", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/blindCourier.invariant.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_blindcourier_invariant_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/blindCourier.invariant.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_blindcourier_invariant_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext_validatesafetext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/blindCourier.invariant.test.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_blindcourier_invariant_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_blindcourier_invariant_test_craftemailwithsecretattachment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/blindCourier.invariant.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_blindcourier_invariant_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_blindcourier_invariant_test_makesandboxkeys", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/blindCourier.invariant.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_blindcourier_invariant_test", + "target": "apps_electron_vite_project_electron_main_quarantine_encrypt_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/blindCourier.invariant.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_blindcourier_invariant_test", + "target": "apps_electron_vite_project_electron_main_quarantine_encrypt_index_decryptquarantineblob", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/blindCourier.invariant.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_blindcourier_invariant_test_makesandboxkeys", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/blindCourier.invariant.test.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_blindcourier_invariant_test_craftemailwithsecretattachment", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmImageBundlePreflight.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmimagebundlepreflight_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmImageBundlePreflight.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmimagebundlepreflight_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmImageBundlePreflight.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmimagebundlepreflight_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmproviderconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmImageBundlePreflight.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmimagebundlepreflight_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_imagebundlemismatcherror", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmImageBundlePreflight.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmimagebundlepreflight_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmImageBundlePreflight.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmimagebundlepreflight_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_jobspec", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmImageBundlePreflight.test.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmimagebundlepreflight_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmimagebundlepreflight_test_cfg", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmImageBundlePreflight.test.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmimagebundlepreflight_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmimagebundlepreflight_test_depackagespec", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmImageBundlePreflight.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmimagebundlepreflight_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmimagebundlepreflight_test_expected", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmImageBundlePreflight.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmimagebundlepreflight_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmimagebundlepreflight_test_stale", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmProvider.rig.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmprovider_rig_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_blindcourier", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmProvider.rig.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmprovider_rig_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_blindcourier_tocourierrecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmProvider.rig.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmprovider_rig_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmProvider.rig.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmprovider_rig_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_buildcrosvmargs", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmProvider.rig.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmprovider_rig_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmProvider.rig.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmprovider_rig_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmproviderconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmProvider.rig.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmprovider_rig_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmProvider.rig.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmprovider_rig_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_jobresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmProvider.rig.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmprovider_rig_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_jobspec", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmProvider.rig.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmprovider_rig_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_verifyjobresultsignature", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmProvider.rig.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmprovider_rig_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_legacyrepair", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmProvider.rig.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmprovider_rig_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_legacyrepair_assesssandboxkeyreadiness", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmProvider.rig.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmprovider_rig_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_legacyrepair_err_handshake_local_key_missing", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmProvider.rig.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmprovider_rig_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmProvider.rig.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmprovider_rig_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext_validatesafetext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmProvider.rig.test.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmprovider_rig_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmprovider_rig_test_cfg", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmProvider.rig.test.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmprovider_rig_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmprovider_rig_test_eml", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmProvider.rig.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmprovider_rig_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmprovider_rig_test_home", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmProvider.rig.test.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmprovider_rig_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmprovider_rig_test_makesandboxkeys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmProvider.rig.test.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmprovider_rig_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmprovider_rig_test_rig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmProvider.rig.test.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmprovider_rig_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmprovider_rig_test_rigavailable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmProvider.rig.test.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmprovider_rig_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmprovider_rig_test_runone", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmProvider.rig.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmprovider_rig_test", + "target": "apps_electron_vite_project_electron_main_quarantine_encrypt_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmProvider.rig.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmprovider_rig_test", + "target": "apps_electron_vite_project_electron_main_quarantine_encrypt_index_decryptquarantineblob", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmProvider.rig.test.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmprovider_rig_test_makesandboxkeys", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmProvider.rig.test.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmprovider_rig_test_eml", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmProvider.rig.test.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_crosvmprovider_rig_test_runone", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider_runjob" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/defenseInDepthDetection.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_defenseindepthdetection_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_defenseindepthdetection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/defenseInDepthDetection.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_defenseindepthdetection_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_defenseindepthdetection_detectioncategory", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/defenseInDepthDetection.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_defenseindepthdetection_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_defenseindepthdetection_detectionresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/defenseInDepthDetection.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_defenseindepthdetection_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_defenseindepthdetection_detectthreats", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/defenseInDepthDetection.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_defenseindepthdetection_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_defenseindepthdetection_test_hascategory", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/defenseInDepthDetection.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_defenseindepthdetection_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_defenseindepthdetection_test_hasdetail", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/depackagingService.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_depackagingservice_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingservice", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/depackagingService.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_depackagingservice_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingservice_depackageuntrustedbytes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/depackagingService.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_depackagingservice_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingservice_resetdepackagingproviderfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/depackagingService.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_depackagingservice_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingservice_resolvecrosvmconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/depackagingService.test.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_depackagingservice_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_depackagingservice_test_home", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/depackagingService.test.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_depackagingservice_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_depackagingservice_test_rig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/depackagingService.test.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_depackagingservice_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_depackagingservice_test_rigavailable", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/displayEnvelope.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_displayenvelope_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/displayEnvelope.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_displayenvelope_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_buildenvelopefromfields", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/displayEnvelope.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_displayenvelope_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_buildenvelopefromheaders", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/displayEnvelope.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_displayenvelope_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_decodeheadertext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/displayEnvelope.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_displayenvelope_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_envelope_caps", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/displayEnvelope.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_displayenvelope_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_threadingfromheaders", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/displayEnvelope.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_displayenvelope_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_threadingfromprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/displayEnvelope.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_displayenvelope_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_displayenvelope_test_ewb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/displayEnvelope.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_displayenvelope_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_displayenvelope_test_headers", + "confidence_score": 1.0 + }, + { + "relation": "cites", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/displayEnvelope.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_displayenvelope_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_displayenvelope_test_ts_docref_rfc_2047", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/displayEnvelope.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_displayenvelope_test_ewb", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/emailDepackage.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_emaildepackage_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/emailDepackage.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_emaildepackage_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_depackageemail", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/emailDepackage.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_emaildepackage_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/emailDepackage.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_emaildepackage_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_htmltosafetext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/emailDepackage.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_emaildepackage_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_emaildepackage_test_eml", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/emailDepackage.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_emaildepackage_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_emaildepackage_test_pbeap_pkg", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/emailDepackage.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_emaildepackage_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_emaildepackage_test_pub", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/emailDepackage.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_emaildepackage_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_emaildepackage_test_qbeap_pkg", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/emailDepackage.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_emaildepackage_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_emaildepackage_test_sandboxpubb64", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/emailDepackage.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_emaildepackage_test_sandboxpubb64", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/emailDepackage.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_emaildepackage_test_eml", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/emailResultSigning.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_emailresultsigning_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/emailResultSigning.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_emailresultsigning_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_rundepackageemailjob", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/emailResultSigning.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_emailresultsigning_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/emailResultSigning.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_emailresultsigning_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_depackageemailjobresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/emailResultSigning.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_emailresultsigning_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_verifydepackageemailresultsignature", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/emailResultSigning.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_emailresultsigning_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_emailresultsigning_test_eml", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/emailResultSigning.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_emailresultsigning_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_emailresultsigning_test_overthewire", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/emailResultSigning.test.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_emailresultsigning_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_emailresultsigning_test_pub", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/emailResultSigning.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_emailresultsigning_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_emailresultsigning_test_sandboxpubb64", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/emailResultSigning.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_emailresultsigning_test_sandboxpubb64", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/emailResultSigning.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_emailresultsigning_test_eml", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/htmlToText.equivalence.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_htmltotext_equivalence_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/htmlToText.equivalence.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_htmltotext_equivalence_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_htmltosafetext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/htmlToText.equivalence.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_htmltotext_equivalence_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_htmltotext_equivalence_test_corpus", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/htmlToText.equivalence.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_htmltotext_equivalence_test", + "target": "apps_electron_vite_project_electron_main_email_sanitizer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/htmlToText.equivalence.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_htmltotext_equivalence_test", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_sanitizehtmltotext", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/inertSinkAudit.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_inertsinkaudit_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/inertSinkAudit.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_inertsinkaudit_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext_constructsafetext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/inertSinkAudit.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_inertsinkaudit_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext_safe_text_limits", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/inertSinkAudit.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_inertsinkaudit_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext_safe_text_schema", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/inertSinkAudit.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_inertsinkaudit_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext_toplaintextfield", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/inertSinkAudit.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_inertsinkaudit_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext_validatesafetext", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/livePbeapTrust.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_livepbeaptrust_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_livepbeaptrust", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/livePbeapTrust.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_livepbeaptrust_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_livepbeaptrust_classifylivepbeaptrust", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/livePbeapTrust.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_livepbeaptrust_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_livepbeaptrust_pbeaptrustmetadata", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/livePbeapTrust.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_livepbeaptrust_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_pbeaptrust", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/livePbeapTrust.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_livepbeaptrust_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_pbeaptrust_knowncounterparty", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/providerStructuredWalker.equivalence.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_providerstructuredwalker_equivalence_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/providerStructuredWalker.equivalence.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_providerstructuredwalker_equivalence_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_depackageemail", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/providerStructuredWalker.equivalence.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_providerstructuredwalker_equivalence_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_depackageemailresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/providerStructuredWalker.equivalence.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_providerstructuredwalker_equivalence_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_depackageemailstructured", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/providerStructuredWalker.equivalence.test.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_providerstructuredwalker_equivalence_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_providerstructuredwalker_equivalence_test_corpus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/providerStructuredWalker.equivalence.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_providerstructuredwalker_equivalence_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_providerstructuredwalker_equivalence_test_eml", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/providerStructuredWalker.equivalence.test.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_providerstructuredwalker_equivalence_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_providerstructuredwalker_equivalence_test_ewb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/providerStructuredWalker.equivalence.test.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_providerstructuredwalker_equivalence_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_providerstructuredwalker_equivalence_test_graphjson", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/providerStructuredWalker.equivalence.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_providerstructuredwalker_equivalence_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_providerstructuredwalker_equivalence_test_outlook", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/providerStructuredWalker.equivalence.test.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_providerstructuredwalker_equivalence_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_providerstructuredwalker_equivalence_test_pair", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/providerStructuredWalker.equivalence.test.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_providerstructuredwalker_equivalence_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_providerstructuredwalker_equivalence_test_pbeap_pkg", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/providerStructuredWalker.equivalence.test.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_providerstructuredwalker_equivalence_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_providerstructuredwalker_equivalence_test_project", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/providerStructuredWalker.equivalence.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_providerstructuredwalker_equivalence_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_providerstructuredwalker_equivalence_test_pub", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/providerStructuredWalker.equivalence.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_providerstructuredwalker_equivalence_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_providerstructuredwalker_equivalence_test_qbeap_pkg", + "confidence_score": 1.0 + }, + { + "relation": "cites", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/providerStructuredWalker.equivalence.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_providerstructuredwalker_equivalence_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_providerstructuredwalker_equivalence_test_ts_docref_rfc_822", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/providerStructuredWalker.equivalence.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_providerstructuredwalker_equivalence_test_eml", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/providerStructuredWalker.equivalence.test.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_providerstructuredwalker_equivalence_test_graphjson", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/providerStructuredWalker.equivalence.test.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_providerstructuredwalker_equivalence_test_ewb", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/revalidate.trust.repair.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_revalidate_trust_repair_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_legacyrepair", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/revalidate.trust.repair.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_revalidate_trust_repair_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_legacyrepair_assesssandboxkeyreadiness", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/revalidate.trust.repair.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_revalidate_trust_repair_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_legacyrepair_err_handshake_local_key_missing", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/revalidate.trust.repair.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_revalidate_trust_repair_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_pbeaptrust", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/revalidate.trust.repair.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_revalidate_trust_repair_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_pbeaptrust_classifypbeaptrust", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/revalidate.trust.repair.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_revalidate_trust_repair_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/revalidate.trust.repair.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_revalidate_trust_repair_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext_safe_text_schema", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/revalidate.trust.repair.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_revalidate_trust_repair_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext_validatesafetext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/revalidate.trust.repair.test.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_revalidate_trust_repair_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_revalidate_trust_repair_test_counterparty", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/textPurity.invariant.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_textpurity_invariant_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/textPurity.invariant.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_textpurity_invariant_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker_depackage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/textPurity.invariant.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_textpurity_invariant_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/textPurity.invariant.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_textpurity_invariant_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext_safe_text_schema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/textPurity.invariant.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_textpurity_invariant_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_textpurity_invariant_test_craftmultipart", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/textPurity.invariant.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_textpurity_invariant_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_textpurity_invariant_test_sandboxpubb64", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/textPurity.invariant.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_textpurity_invariant_test_sandboxpubb64", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/textPurity.invariant.test.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_textpurity_invariant_test_craftmultipart", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/vmIdentitySigning.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_vmidentitysigning_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/vmIdentitySigning.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_vmidentitysigning_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker_rundepackagingjob", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/vmIdentitySigning.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_vmidentitysigning_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/vmIdentitySigning.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_vmidentitysigning_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_rundepackageemailjob", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/vmIdentitySigning.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_vmidentitysigning_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/vmIdentitySigning.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_vmidentitysigning_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_verifydepackageemailresultsignature", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/vmIdentitySigning.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_vmidentitysigning_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_verifyjobresultsignature", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/vmIdentitySigning.test.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_vmidentitysigning_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_vmidentitysigning_test_hostkeypair", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/vmIdentitySigning.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_vmidentitysigning_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_vmidentitysigning_test_makecleaninput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/vmIdentitySigning.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_vmidentitysigning_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_vmidentitysigning_test_pub", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/vmIdentitySigning.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_vmidentitysigning_test_pub", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/vmIdentitySigning.test.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_vmidentitysigning_test_makecleaninput", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/vmIdentitySigning.test.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_tests_vmidentitysigning_test_hostkeypair", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/blindCourier.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_blindcourier", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_blindcourier_courierartifactrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/blindCourier.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_blindcourier", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_blindcourier_courierrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/blindCourier.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_blindcourier", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_blindcourier_tocourierrecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/blindCourier.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_blindcourier", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/blindCourier.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_blindcourier", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_jobresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/blindCourier.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_blindcourier", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/blindCourier.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_blindcourier", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext_safetextv1", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/blindCourier.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_blindcourier", + "target": "apps_electron_vite_project_electron_main_quarantine_blob_storage_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/blindCourier.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_blindcourier", + "target": "apps_electron_vite_project_electron_main_quarantine_blob_storage_index_quarantineblobfile", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingService.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingservice", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_blindcourier", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/blindCourier.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_blindcourier_courierartifactrecord", + "target": "apps_electron_vite_project_electron_main_quarantine_blob_storage_index_quarantineblobfile", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/blindCourier.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_blindcourier_courierrecord", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext_safetextv1", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingService.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingservice", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_blindcourier_courierrecord", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingService.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingservice_depackageoutcome", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_blindcourier_courierrecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingService.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingservice", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_blindcourier_tocourierrecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingService.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingservice_depackageuntrustedbytes", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_blindcourier_tocourierrecord" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_buildcrosvmargs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmproviderconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_image_bundle_mismatch_code", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_imagebundlemismatcherror", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_depackageemailjobresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_jobresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_jobspec", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_sandboxhypervisorprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_verifydepackageemailresultsignature", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_verifyjobresultsignature", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingService.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingservice", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingService.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingservice", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmproviderconfig", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_imagebundlemismatcherror", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_imagebundlemismatcherror_constructor", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L243", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider_runjob", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_buildcrosvmargs", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L322", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider_allocatecid", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L383", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider_besteffortunlink", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider_constructor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L326", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider_createephemeraloverlay", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider_isavailable", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L180", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider_preflightimagebundle", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L334", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider_runhostclient", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider_runjob", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L359", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider_runtocompletion", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L375", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider_terminate", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_sandboxhypervisorprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingService.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingservice", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L201", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider_runjob", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider_isavailable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L212", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider_runjob", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider_preflightimagebundle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L216", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider_runjob", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider_allocatecid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L317", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider_runjob", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider_besteffortunlink", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L240", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider_runjob", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider_createephemeraloverlay", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L270", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider_runjob", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider_runhostclient", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L316", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider_runjob", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider_terminate", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider_runjob", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_depackageemailjobresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider_runjob", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_jobresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider_runjob", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_jobspec", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L286", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider_runjob", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_verifydepackageemailresultsignature" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L308", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider_runjob", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_verifyjobresultsignature" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L235", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider_runjob", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L330", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider_createephemeraloverlay", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider_runtocompletion", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts", + "source_location": "L328", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_crosvmprovider_crosvmprovider_createephemeraloverlay", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/defenseInDepthDetection.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_defenseindepthdetection", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_defenseindepthdetection_beap_carrier_patterns", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/defenseInDepthDetection.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_defenseindepthdetection", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_defenseindepthdetection_code_construct_patterns", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/defenseInDepthDetection.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_defenseindepthdetection", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_defenseindepthdetection_detectioncategory", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/defenseInDepthDetection.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_defenseindepthdetection", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_defenseindepthdetection_detectionfinding", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/defenseInDepthDetection.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_defenseindepthdetection", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_defenseindepthdetection_detectionresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/defenseInDepthDetection.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_defenseindepthdetection", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_defenseindepthdetection_detectthreats", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/defenseInDepthDetection.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_defenseindepthdetection", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_defenseindepthdetection_escapeforregex", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackageModel.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagemodel", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagemodel_depackage_defaults", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackageModel.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagemodel", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagemodel_depackagefailure", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackageModel.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagemodel", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagemodel_depackagefailurecode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackageModel.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagemodel", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagemodel_depackagelimits", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackageModel.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagemodel", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagemodel_leaf", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackageModel.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagemodel", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagemodel_parseout", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackageModel.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagemodel", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagemodel_resolvemaxinputbytes", + "confidence_score": 1.0 + }, + { + "relation": "cites", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackageModel.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagemodel", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagemodel_ts_docref_rfc_822", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackageModel.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagemodel", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackageModel.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagemodel", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_displayenvelope", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackageModel.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagemodel", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_threadinghints", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagemodel", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/providerStructuredWalker.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagemodel", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagemodel_depackagefailurecode", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackageModel.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagemodel_depackagefailure", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagemodel_depackagefailure_constructor", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagemodel_depackagefailure", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/providerStructuredWalker.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagemodel_depackagefailure", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagemodel_depackagelimits", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/providerStructuredWalker.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagemodel_depackagelimits", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagemodel_depackage_defaults", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/providerStructuredWalker.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagemodel_depackage_defaults", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagemodel_resolvemaxinputbytes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L190", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_hardenedparse", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagemodel_resolvemaxinputbytes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/providerStructuredWalker.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagemodel_resolvemaxinputbytes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/providerStructuredWalker.ts", + "source_location": "L226", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker_walkproviderstructured", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagemodel_resolvemaxinputbytes" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagemodel_leaf", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/providerStructuredWalker.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagemodel_leaf", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackageModel.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagemodel_parseout", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_displayenvelope", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackageModel.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagemodel_parseout", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_threadinghints", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagemodel_parseout", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/providerStructuredWalker.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagemodel_parseout", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/providerStructuredWalker.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker_graphlist", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagemodel_parseout" + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/providerStructuredWalker.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker_providerstructuredadapter_walk", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagemodel_parseout", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingService.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingservice", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingservice_depackageoutcome", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingService.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingservice", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingservice_depackageuntrustedbytes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingService.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingservice", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingservice_getdepackagingprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingService.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingservice", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingservice_resetdepackagingproviderfortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingService.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingservice", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingservice_resolvecrosvmconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingService.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingservice", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingService.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingservice", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_jobresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingService.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingservice", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_jobspec", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingService.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingservice", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingService.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingservice", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext_safetextv1", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingService.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingservice", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext_validatesafetext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingService.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingservice_getdepackagingprovider", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingservice_resolvecrosvmconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingService.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingservice_depackageuntrustedbytes", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingservice_getdepackagingprovider", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingService.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingservice_depackageoutcome", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_jobresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingService.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingservice_depackageoutcome", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext_safetextv1", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingService.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingservice_depackageuntrustedbytes", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext_validatesafetext" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingWorker.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker_blobartifact", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingWorker.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker_depackage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingWorker.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker_depackagingoutput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingWorker.ts", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker_rundepackagingjob", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingWorker.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingWorker.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_jobresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingWorker.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_jobspec", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingWorker.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_signjobresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingWorker.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_mimeextract", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingWorker.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_mimeextract_extractmime", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingWorker.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingWorker.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext_constructsafetext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingWorker.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext_safetextv1", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingWorker.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker", + "target": "apps_electron_vite_project_electron_main_quarantine_blob_storage_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingWorker.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker", + "target": "apps_electron_vite_project_electron_main_quarantine_blob_storage_index_quarantineblobfile", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingWorker.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker", + "target": "apps_electron_vite_project_electron_main_quarantine_encrypt_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingWorker.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker", + "target": "apps_electron_vite_project_electron_main_quarantine_encrypt_index_encryptforquarantine", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/guestEntry.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_guestentry", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingWorker.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker_blobartifact", + "target": "apps_electron_vite_project_electron_main_quarantine_blob_storage_index_quarantineblobfile", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker_blobartifact", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_jobresult", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker_blobartifact", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingWorker.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker_depackagingoutput", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext_safetextv1", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingWorker.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker_depackage", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_mimeextract_extractmime" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingWorker.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker_depackage", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext_constructsafetext" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingWorker.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker_depackage", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingWorker.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker_depackage", + "target": "apps_electron_vite_project_electron_main_quarantine_encrypt_index_encryptforquarantine" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingWorker.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker_rundepackagingjob", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker_depackage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingWorker.ts", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker_rundepackagingjob", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_signjobresult" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/guestEntry.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_guestentry", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker_rundepackagingjob", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/guestEntry.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_guestentry_main", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_depackagingworker_rundepackagingjob", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L325", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_buildenvelopefromfields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L261", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_buildenvelopefromheaders", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_capmsgid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L169", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_captext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_decodeheadertext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_decodeone", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_decodeq", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_displayenvelope", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_envelope_caps", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_envelopeaddress", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L250", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_normalizedate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L292", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_normalizeprovideraddress", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L309", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_normalizeproviderlist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L242", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_normalizesubject", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L226", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_parseaddresslist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L201", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_parseoneaddress", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L279", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_rawprovideraddress", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L283", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_rawproviderenvelopefields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L181", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_splitaddresslist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_stripquotes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_threadingfromheaders", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_threadingfromprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_threadinghints", + "confidence_score": 1.0 + }, + { + "relation": "cites", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_ts_docref_rfc_2047", + "confidence_score": 1.0 + }, + { + "relation": "cites", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_ts_docref_rfc_822", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/providerStructuredWalker.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_envelopeaddress", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_displayenvelope", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_threadinghints", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_threadingfromheaders", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_capmsgid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_threadingfromprovider", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_capmsgid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_threadingfromheaders", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L208", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_hardenedparse", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_threadingfromheaders", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/providerStructuredWalker.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_threadingfromprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_decodeone", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_decodeq", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_decodeq", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_decodeheadertext", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_decodeone", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_decodeone", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L298", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_normalizeprovideraddress", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_decodeheadertext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L243", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_normalizesubject", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_decodeheadertext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L215", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_parseoneaddress", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_decodeheadertext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L255", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_normalizedate", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_captext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L300", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_normalizeprovideraddress", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_captext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L245", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_normalizesubject", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_captext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L217", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_parseoneaddress", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_captext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L215", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_parseoneaddress", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_stripquotes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L229", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_parseaddresslist", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_splitaddresslist", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L236", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_parseaddresslist", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_parseoneaddress", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L263", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_buildenvelopefromheaders", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_parseaddresslist", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L328", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_buildenvelopefromfields", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_normalizesubject", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L268", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_buildenvelopefromheaders", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_normalizesubject", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L333", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_buildenvelopefromfields", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_normalizedate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L273", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_buildenvelopefromheaders", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_normalizedate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_buildenvelopefromheaders", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L201", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_hardenedparse", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_buildenvelopefromheaders", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/providerStructuredWalker.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_rawprovideraddress", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/providerStructuredWalker.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_rawproviderenvelopefields", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L329", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_buildenvelopefromfields", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_normalizeprovideraddress", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L318", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_normalizeproviderlist", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_normalizeprovideraddress", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts", + "source_location": "L330", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_buildenvelopefromfields", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_normalizeproviderlist", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/providerStructuredWalker.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_displayenvelope_buildenvelopefromfields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L397", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_buildresultfromparse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_contenttypeof", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_decodetransfer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L456", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_depackageemail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L491", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_depackageemailjobinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_depackageemailresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L476", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_depackageemailstructured", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L381", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_derivebodytext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L218", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_detectbeapcapsule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L265", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_detectbeapinjson", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L237", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_detectbeapmessagepackage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L301", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_detectcarrierpackages", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L289", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_encodinghintof", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L189", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_hardenedparse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L273", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_isbeapattachment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L281", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_isjsonattachment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_opaquepackage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_parseentity", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_parseheaders", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L514", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_rundepackageemailjob", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L368", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_sealartifacts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_sealedartifact", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_splitheaderbody", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L443", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_tofailureresult", + "confidence_score": 1.0 + }, + { + "relation": "cites", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L198", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_ts_docref_rfc_2047", + "confidence_score": 1.0 + }, + { + "relation": "cites", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L394", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_ts_docref_rfc_822", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_htmltosafetext", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_depackageemailjobresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_signdepackageemailresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker_walkproviderstructured", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext_constructsafetext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext_safetextv1", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "target": "apps_electron_vite_project_electron_main_quarantine_blob_storage_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "target": "apps_electron_vite_project_electron_main_quarantine_blob_storage_index_quarantineblobfile", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "target": "apps_electron_vite_project_electron_main_quarantine_encrypt_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "target": "apps_electron_vite_project_electron_main_quarantine_encrypt_index_encryptforquarantine", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/guestEntry.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_guestentry", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_sealedartifact", + "target": "apps_electron_vite_project_electron_main_quarantine_blob_storage_index_quarantineblobfile", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_depackageemailresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_depackageemailjobresult", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_depackageemailresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L197", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_hardenedparse", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_parseheaders", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_parseentity", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_parseheaders", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_decodetransfer", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L172", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_parseentity", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_decodetransfer", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L153", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_parseentity", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_contenttypeof", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L196", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_hardenedparse", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_splitheaderbody", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_parseentity", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_splitheaderbody", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L210", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_hardenedparse", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_parseentity", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L172", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_parseentity", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L462", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_depackageemail", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_hardenedparse", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L195", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_hardenedparse", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_depackageemailjobinput" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L313", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_detectcarrierpackages", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_detectbeapcapsule", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L319", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_detectcarrierpackages", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_detectbeapmessagepackage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L356", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_detectcarrierpackages", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_detectbeapinjson", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L309", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_detectcarrierpackages", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_isbeapattachment", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L350", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_detectcarrierpackages", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_isjsonattachment", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L315", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_detectcarrierpackages", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_encodinghintof", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L398", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_buildresultfromparse", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_detectcarrierpackages", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L315", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_detectcarrierpackages", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L417", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_buildresultfromparse", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_sealartifacts", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L371", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_sealartifacts", + "target": "apps_electron_vite_project_electron_main_quarantine_encrypt_index_encryptforquarantine", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L413", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_buildresultfromparse", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_derivebodytext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L387", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_derivebodytext", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_htmltosafetext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L418", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_buildresultfromparse", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext_constructsafetext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L462", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_depackageemail", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_buildresultfromparse", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L484", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_depackageemailstructured", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_buildresultfromparse", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L464", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_depackageemail", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_tofailureresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L486", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_depackageemailstructured", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_tofailureresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L523", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_rundepackageemailjob", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_depackageemail", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L483", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_depackageemailstructured", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker_walkproviderstructured" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L522", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_rundepackageemailjob", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_depackageemailstructured", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts", + "source_location": "L526", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_rundepackageemailjob", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_signdepackageemailresult" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/guestEntry.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_guestentry", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_rundepackageemailjob", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/guestEntry.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_guestentry_main", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_emaildepackage_rundepackageemailjob", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/htmlToText.ts", + "source_location": "L203", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_cleanwhitespace", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/htmlToText.ts", + "source_location": "L185", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_convertblockstobreaks", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/htmlToText.ts", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_convertlinkstotext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/htmlToText.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_decodehtmlentities", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/htmlToText.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_html_entities", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/htmlToText.ts", + "source_location": "L218", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_htmltosafetext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/htmlToText.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_istrackingpixel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/htmlToText.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_remove_tags", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/htmlToText.ts", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_removedangerouscss", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/htmlToText.ts", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_removedangeroustags", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/htmlToText.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_removeeventhandlers", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/htmlToText.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_removetrackingpixels", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/htmlToText.ts", + "source_location": "L158", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_shouldskiplink", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/htmlToText.ts", + "source_location": "L137", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_skip_link_patterns", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/htmlToText.ts", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_stripalltags", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/htmlToText.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_tracking_patterns", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/htmlToText.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_rationale_14", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/htmlToText.ts", + "source_location": "L230", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_htmltosafetext", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_decodehtmlentities", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/htmlToText.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_removetrackingpixels", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_istrackingpixel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/htmlToText.ts", + "source_location": "L223", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_htmltosafetext", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_removedangeroustags", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/htmlToText.ts", + "source_location": "L224", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_htmltosafetext", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_removeeventhandlers", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/htmlToText.ts", + "source_location": "L225", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_htmltosafetext", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_removedangerouscss", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/htmlToText.ts", + "source_location": "L226", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_htmltosafetext", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_removetrackingpixels", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/htmlToText.ts", + "source_location": "L171", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_convertlinkstotext", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_shouldskiplink", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/htmlToText.ts", + "source_location": "L227", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_htmltosafetext", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_convertlinkstotext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/htmlToText.ts", + "source_location": "L228", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_htmltosafetext", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_convertblockstobreaks", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/htmlToText.ts", + "source_location": "L229", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_htmltosafetext", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_stripalltags", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/htmlToText.ts", + "source_location": "L231", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_htmltosafetext", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_htmltotext_cleanwhitespace", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts", + "source_location": "L244", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_canonicaldepackageemailresultbytes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_canonicaljobresultbytes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_depackageemailjobresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_jobkind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_joblimits", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_jobresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_jobspec", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_sandboxhypervisorprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts", + "source_location": "L280", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_signdepackageemailresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts", + "source_location": "L166", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_signjobresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts", + "source_location": "L219", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_stablestringify", + "confidence_score": 1.0 + }, + { + "relation": "cites", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_ts_docref_rfc_822", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts", + "source_location": "L299", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_verifydepackageemailresultsignature", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts", + "source_location": "L192", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_verifyjobresultsignature", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext_safetextv1", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider", + "target": "apps_electron_vite_project_electron_main_security_ed25519weakkey", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider", + "target": "apps_electron_vite_project_electron_main_security_ed25519weakkey_isweaked25519publickey", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/guestEntry.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_guestentry", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/security/__tests__/ed25519WeakKey.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_security_tests_ed25519weakkey_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/guestEntry.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_guestentry", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_jobspec", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_jobresult", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext_safetextv1", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/security/__tests__/ed25519WeakKey.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_security_tests_ed25519weakkey_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_jobresult", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_sandboxhypervisorprovider", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_sandboxhypervisorprovider_isavailable", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_sandboxhypervisorprovider", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_sandboxhypervisorprovider_runjob", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_canonicaljobresultbytes", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts", + "source_location": "L170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_signjobresult", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_canonicaljobresultbytes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_verifyjobresultsignature", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_canonicaljobresultbytes", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_signjobresult", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/security/__tests__/ed25519WeakKey.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_security_tests_ed25519weakkey_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_signjobresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_verifyjobresultsignature", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts", + "source_location": "L202", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_verifyjobresultsignature", + "target": "apps_electron_vite_project_electron_main_security_ed25519weakkey_isweaked25519publickey" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/security/__tests__/ed25519WeakKey.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_security_tests_ed25519weakkey_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_verifyjobresultsignature", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts", + "source_location": "L276", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_canonicaldepackageemailresultbytes", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_stablestringify", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts", + "source_location": "L276", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_canonicaldepackageemailresultbytes", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts", + "source_location": "L285", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_signdepackageemailresult", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_canonicaldepackageemailresultbytes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts", + "source_location": "L306", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_verifydepackageemailresultsignature", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_canonicaldepackageemailresultbytes", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts", + "source_location": "L289", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_signdepackageemailresult", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts", + "source_location": "L307", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_verifydepackageemailresultsignature", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts", + "source_location": "L309", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_hypervisorprovider_verifydepackageemailresultsignature", + "target": "apps_electron_vite_project_electron_main_security_ed25519weakkey_isweaked25519publickey" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/legacyRepair.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_legacyrepair", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_legacyrepair_assesssandboxkeyreadiness", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/legacyRepair.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_legacyrepair", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_legacyrepair_err_handshake_local_key_missing", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/legacyRepair.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_legacyrepair", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_legacyrepair_handshakekeyview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/legacyRepair.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_legacyrepair", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_legacyrepair_isvalidx25519pubb64", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/legacyRepair.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_legacyrepair", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_legacyrepair_repairaffordance", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/legacyRepair.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_legacyrepair", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_legacyrepair_sandboxkeyreadiness", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/legacyRepair.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_legacyrepair_assesssandboxkeyreadiness", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_legacyrepair_isvalidx25519pubb64", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/legacyRepair.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_legacyrepair_isvalidx25519pubb64", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/livePbeapTrust.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_livepbeaptrust", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_livepbeaptrust_classifylivepbeaptrust", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/livePbeapTrust.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_livepbeaptrust", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_livepbeaptrust_livepbeaptrustinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/livePbeapTrust.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_livepbeaptrust", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_livepbeaptrust_pbeaptrustmetadata", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/livePbeapTrust.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_livepbeaptrust", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_pbeaptrust", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/livePbeapTrust.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_livepbeaptrust", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_pbeaptrust_classifypbeaptrust", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/livePbeapTrust.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_livepbeaptrust", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_pbeaptrust_knowncounterparty", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/livePbeapTrust.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_livepbeaptrust", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_pbeaptrust_pbeaptrustresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_livepbeaptrust", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_livepbeaptrust", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapTrustPersistence.regression.test.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pbeaptrustpersistence_regression_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_livepbeaptrust", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/livePbeapTrust.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_livepbeaptrust_livepbeaptrustinput", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_pbeaptrust_knowncounterparty", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/livePbeapTrust.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_livepbeaptrust_classifylivepbeaptrust", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_pbeaptrust_classifypbeaptrust" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_livepbeaptrust_classifylivepbeaptrust", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L1162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_processbeappackageinlineinternal", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_livepbeaptrust_classifylivepbeaptrust", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_livepbeaptrust_classifylivepbeaptrust", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L614", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_detectandroutemessageinline", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_livepbeaptrust_classifylivepbeaptrust" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapTrustPersistence.regression.test.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pbeaptrustpersistence_regression_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_livepbeaptrust_classifylivepbeaptrust", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_livepbeaptrust_pbeaptrustmetadata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L1167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_processbeappackageinlineinternal", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_livepbeaptrust_pbeaptrustmetadata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_livepbeaptrust_pbeaptrustmetadata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L615", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_detectandroutemessageinline", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_livepbeaptrust_pbeaptrustmetadata" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/mimeExtract.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_mimeextract", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_mimeextract_contenttypeof", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/mimeExtract.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_mimeextract", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_mimeextract_decodetransfer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/mimeExtract.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_mimeextract", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_mimeextract_extractedmime", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/mimeExtract.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_mimeextract", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_mimeextract_extractmime", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/mimeExtract.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_mimeextract", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_mimeextract_mime_limits", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/mimeExtract.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_mimeextract", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_mimeextract_mimepart", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/mimeExtract.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_mimeextract", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_mimeextract_parseheaders", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/mimeExtract.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_mimeextract", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_mimeextract_splitheaderbody", + "confidence_score": 1.0 + }, + { + "relation": "cites", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/mimeExtract.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_mimeextract", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_mimeextract_ts_docref_rfc_822", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/mimeExtract.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_mimeextract_extractmime", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_mimeextract_parseheaders", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/mimeExtract.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_mimeextract_decodetransfer", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/mimeExtract.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_mimeextract_extractmime", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_mimeextract_decodetransfer", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/mimeExtract.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_mimeextract_extractmime", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_mimeextract_contenttypeof", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/mimeExtract.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_mimeextract_extractmime", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_mimeextract_splitheaderbody", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/mimeExtract.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_mimeextract_extractmime", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/pbeapTrust.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_pbeaptrust", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_pbeaptrust_classifypbeapargs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/pbeapTrust.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_pbeaptrust", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_pbeaptrust_classifypbeaptrust", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/pbeapTrust.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_pbeaptrust", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_pbeaptrust_knowncounterparty", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/pbeapTrust.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_pbeaptrust", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_pbeaptrust_pbeapheaderview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/pbeapTrust.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_pbeaptrust", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_pbeaptrust_pbeaptrustlevel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/pbeapTrust.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_pbeaptrust", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_pbeaptrust_pbeaptrustresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapTrustPersistence.regression.test.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pbeaptrustpersistence_regression_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_pbeaptrust", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapTrustPersistence.regression.test.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pbeaptrustpersistence_regression_test", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_pbeaptrust_pbeaptrustresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/pbeapTrust.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_pbeaptrust_classifypbeaptrust", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/providerStructuredWalker.ts", + "source_location": "L210", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker_adapters", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/providerStructuredWalker.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker_assertjsondepth", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/providerStructuredWalker.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker_chargebytes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/providerStructuredWalker.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker_chargepart", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/providerStructuredWalker.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker_decodebase64guarded", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/providerStructuredWalker.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker_graphaddr", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/providerStructuredWalker.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker_graphlist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/providerStructuredWalker.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker_outlookadapter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/providerStructuredWalker.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker_providerstructuredadapter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/providerStructuredWalker.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker_pushleaf", + "confidence_score": 1.0 + }, + { + "relation": "cites", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/providerStructuredWalker.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker_ts_docref_rfc_822", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/providerStructuredWalker.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker_walkbudget", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/providerStructuredWalker.ts", + "source_location": "L221", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker_walkproviderstructured", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/providerStructuredWalker.ts", + "source_location": "L251", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker_walkproviderstructured", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker_assertjsondepth", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/providerStructuredWalker.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker_decodebase64guarded", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/providerStructuredWalker.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker_providerstructuredadapter", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker_providerstructuredadapter_walk", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/providerStructuredWalker.ts", + "source_location": "L254", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker_walkproviderstructured", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker_providerstructuredadapter_walk", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/providerStructuredWalker.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker_pushleaf", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker_chargebytes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/providerStructuredWalker.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker_pushleaf", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker_chargepart", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/providerStructuredWalker.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker_graphlist", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker_graphaddr", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/providerStructuredWalker.ts", + "source_location": "L235", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker_walkproviderstructured", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker_adapters" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/providerStructuredWalker.ts", + "source_location": "L228", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_providerstructuredwalker_walkproviderstructured", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/build-golden-image.sh", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_build_golden_image", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_build_golden_image_sh__entry", + "confidence_score": 1.0 + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/build-golden-image.sh", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_build_golden_image", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_build_golden_image_stage_mod", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/build-golden-image.sh", + "source_location": "L90", + "weight": 1.0, + "context": "call", + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_build_golden_image_sh__entry", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_build_golden_image_stage_mod", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/buildWorkerBundle.mjs", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_buildworkerbundle", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_buildworkerbundle_cleaned", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/buildWorkerBundle.mjs", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_buildworkerbundle", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_buildworkerbundle_findlockfile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/buildWorkerBundle.mjs", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_buildworkerbundle", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_buildworkerbundle_here", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/buildWorkerBundle.mjs", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_buildworkerbundle", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_buildworkerbundle_inputs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/buildWorkerBundle.mjs", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_buildworkerbundle", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_buildworkerbundle_lockfile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/buildWorkerBundle.mjs", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_buildworkerbundle", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_buildworkerbundle_markerfile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/buildWorkerBundle.mjs", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_buildworkerbundle", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_buildworkerbundle_outfile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/buildWorkerBundle.mjs", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_buildworkerbundle", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_buildworkerbundle_provenance", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/buildWorkerBundle.mjs", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_buildworkerbundle", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_buildworkerbundle_provenancefile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/buildWorkerBundle.mjs", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_buildworkerbundle", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_buildworkerbundle_sha256file", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/buildWorkerBundle.mjs", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_buildworkerbundle", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_buildworkerbundle_stripmodulebanners", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/buildWorkerBundle.mjs", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_buildworkerbundle", + "target": "ref_esbuild", + "confidence_score": 1.0 + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/crosvm-launch.sh", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_crosvm_launch", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_crosvm_launch_cleanup", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/crosvm-launch.sh", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_crosvm_launch", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_crosvm_launch_sh__entry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/guestEntry.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_guestentry", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_guestentry_guestjobinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/guestEntry.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_guestentry", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_guestentry_main", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/guestEntry.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_guestentry", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_guestentry_readstdin", + "confidence_score": 1.0 + }, + { + "relation": "cites", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/guestEntry.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_guestentry", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_guestentry_ts_docref_rfc_822", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/guestEntry.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_guestentry_main", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_guestentry_readstdin", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/guestEntry.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_guestentry_readstdin", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/guestEntry.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_guestentry_main", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/host-setup-root.sh", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_host_setup_root", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_host_setup_root_debian_frontend", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/host-setup-root.sh", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_host_setup_root", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_host_setup_root_sh__entry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/smokeTest.mjs", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_smoketest", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_smoketest_bundle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/smokeTest.mjs", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_smoketest", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_smoketest_checkresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/smokeTest.mjs", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_smoketest", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_smoketest_eml", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/smokeTest.mjs", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_smoketest", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_smoketest_emlb64", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/smokeTest.mjs", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_smoketest", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_smoketest_graphjson", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/smokeTest.mjs", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_smoketest", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_smoketest_here", + "confidence_score": 1.0 + }, + { + "relation": "cites", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/smokeTest.mjs", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_smoketest", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_smoketest_mjs_docref_rfc_822", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/smokeTest.mjs", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_smoketest", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_smoketest_paths", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/smokeTest.mjs", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_smoketest", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_smoketest_runjob", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/smokeTest.mjs", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_smoketest", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_smoketest_sandboxpubb64", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/smokeTest.mjs", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_smoketest", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_smoketest_unwrap", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/smokeTest.mjs", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_smoketest_checkresult", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_smoketest_unwrap", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/vsock-echo.c", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_vsock_echo_c_apps_electron_vite_project_electron_main_depackaging_microvm_rig_vsock_echo", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_vsock_echo_main", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/vsock-echo.sh", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_vsock_echo_sh_apps_electron_vite_project_electron_main_depackaging_microvm_rig_vsock_echo", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_vsock_echo_sh__entry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/vsock-host-client.c", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_vsock_host_client", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_vsock_host_client_main", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/vsock-job-server.c", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_vsock_job_server", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_vsock_job_server_copy_until_eof", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/vsock-job-server.c", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_vsock_job_server", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_vsock_job_server_main", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/rig/vsock-job-server.c", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_vsock_job_server_main", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_rig_vsock_job_server_copy_until_eof", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/safeText.ts", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext_allowed_keys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/safeText.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext_constructsafetext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/safeText.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext_safe_text_limits", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/safeText.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext_safe_text_schema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/safeText.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext_safetextv1", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/safeText.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext_safetextvalidation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/safeText.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext_toplaintextfield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/safeText.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext_validatesafetext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/safeText.ts", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext_constructsafetext", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext_toplaintextfield", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/depackaging-microvm/safeText.ts", + "source_location": "L155", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext_validatesafetext", + "target": "apps_electron_vite_project_electron_main_depackaging_microvm_safetext_allowed_keys" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyMigration.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_device_keys_devicekeymigration", + "target": "apps_electron_vite_project_electron_main_device_keys_devicekeymigration_computekeyid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyMigration.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_device_keys_devicekeymigration", + "target": "apps_electron_vite_project_electron_main_device_keys_devicekeymigration_extensionrpcsender", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyMigration.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_device_keys_devicekeymigration", + "target": "apps_electron_vite_project_electron_main_device_keys_devicekeymigration_generatenewdevicekeypair", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyMigration.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_device_keys_devicekeymigration", + "target": "apps_electron_vite_project_electron_main_device_keys_devicekeymigration_migratedevicekeyfromextension", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyMigration.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_device_keys_devicekeymigration", + "target": "apps_electron_vite_project_electron_main_device_keys_devicekeymigration_requestextensiondeletedevicekey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyMigration.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_device_keys_devicekeymigration", + "target": "apps_electron_vite_project_electron_main_device_keys_devicekeymigration_requestextensiondevicekey", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyMigration.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_device_keys_devicekeymigration", + "target": "apps_electron_vite_project_electron_main_device_keys_devicekeystore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyMigration.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_device_keys_devicekeymigration", + "target": "apps_electron_vite_project_electron_main_device_keys_devicekeystore_devicekeyalreadyexistserror", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyMigration.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_device_keys_devicekeymigration", + "target": "apps_electron_vite_project_electron_main_device_keys_devicekeystore_devicekeyexists", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyMigration.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_device_keys_devicekeymigration", + "target": "apps_electron_vite_project_electron_main_device_keys_devicekeystore_storedevicex25519keypair", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyMigration.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_device_keys_devicekeymigration_generatenewdevicekeypair", + "target": "apps_electron_vite_project_electron_main_device_keys_devicekeymigration_computekeyid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyMigration.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_device_keys_devicekeymigration_migratedevicekeyfromextension", + "target": "apps_electron_vite_project_electron_main_device_keys_devicekeymigration_requestextensiondevicekey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyMigration.ts", + "source_location": "L156", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_device_keys_devicekeymigration_migratedevicekeyfromextension", + "target": "apps_electron_vite_project_electron_main_device_keys_devicekeymigration_requestextensiondeletedevicekey", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyMigration.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_device_keys_devicekeymigration_generatenewdevicekeypair", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyMigration.ts", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_device_keys_devicekeymigration_migratedevicekeyfromextension", + "target": "apps_electron_vite_project_electron_main_device_keys_devicekeymigration_generatenewdevicekeypair", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyMigration.ts", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_device_keys_devicekeymigration_migratedevicekeyfromextension", + "target": "apps_electron_vite_project_electron_main_device_keys_devicekeystore_devicekeyexists" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyMigration.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_device_keys_devicekeymigration_migratedevicekeyfromextension", + "target": "apps_electron_vite_project_electron_main_device_keys_devicekeystore_storedevicex25519keypair" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyStore.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_device_keys_devicekeystore", + "target": "apps_electron_vite_project_electron_main_device_keys_devicekeystore_decryptprivatekey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyStore.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_device_keys_devicekeystore", + "target": "apps_electron_vite_project_electron_main_device_keys_devicekeystore_derivecolumnkey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyStore.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_device_keys_devicekeystore", + "target": "apps_electron_vite_project_electron_main_device_keys_devicekeystore_devicekeyalreadyexistserror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyStore.ts", + "source_location": "L222", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_device_keys_devicekeystore", + "target": "apps_electron_vite_project_electron_main_device_keys_devicekeystore_devicekeyexists", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyStore.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_device_keys_devicekeystore", + "target": "apps_electron_vite_project_electron_main_device_keys_devicekeystore_devicekeynotfounderror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyStore.ts", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_device_keys_devicekeystore", + "target": "apps_electron_vite_project_electron_main_device_keys_devicekeystore_devicekeypair", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyStore.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_device_keys_devicekeystore", + "target": "apps_electron_vite_project_electron_main_device_keys_devicekeystore_encryptprivatekey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyStore.ts", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_device_keys_devicekeystore", + "target": "apps_electron_vite_project_electron_main_device_keys_devicekeystore_getdevicex25519keypair", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyStore.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_device_keys_devicekeystore", + "target": "apps_electron_vite_project_electron_main_device_keys_devicekeystore_getdevicex25519publickey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyStore.ts", + "source_location": "L183", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_device_keys_devicekeystore", + "target": "apps_electron_vite_project_electron_main_device_keys_devicekeystore_storedevicex25519keypair", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyStore.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_device_keys_devicekeystore", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyStore.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_device_keys_devicekeystore", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service_getorchestratorservice", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L189", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_device_keys_devicekeystore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L1233", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_device_keys_devicekeystore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L368", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_openservicerpcpayloadresolvinglocalkey", + "target": "apps_electron_vite_project_electron_main_device_keys_devicekeystore", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyStore.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_device_keys_devicekeystore_devicekeynotfounderror", + "target": "apps_electron_vite_project_electron_main_device_keys_devicekeystore_devicekeynotfounderror_constructor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L189", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_device_keys_devicekeystore_devicekeynotfounderror", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyStore.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_device_keys_devicekeystore_devicekeyalreadyexistserror", + "target": "apps_electron_vite_project_electron_main_device_keys_devicekeystore_devicekeyalreadyexistserror_constructor", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyStore.ts", + "source_location": "L150", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_device_keys_devicekeystore_getdevicex25519keypair", + "target": "apps_electron_vite_project_electron_main_device_keys_devicekeystore_derivecolumnkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyStore.ts", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_device_keys_devicekeystore_storedevicex25519keypair", + "target": "apps_electron_vite_project_electron_main_device_keys_devicekeystore_derivecolumnkey", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyStore.ts", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_device_keys_devicekeystore_encryptprivatekey", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyStore.ts", + "source_location": "L201", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_device_keys_devicekeystore_storedevicex25519keypair", + "target": "apps_electron_vite_project_electron_main_device_keys_devicekeystore_encryptprivatekey", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyStore.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_device_keys_devicekeystore_decryptprivatekey", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyStore.ts", + "source_location": "L151", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_device_keys_devicekeystore_getdevicex25519keypair", + "target": "apps_electron_vite_project_electron_main_device_keys_devicekeystore_decryptprivatekey", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyStore.ts", + "source_location": "L156", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_device_keys_devicekeystore_getdevicex25519keypair", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyStore.ts", + "source_location": "L134", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_device_keys_devicekeystore_getdevicex25519keypair", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service_getorchestratorservice" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L189", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_device_keys_devicekeystore_getdevicex25519keypair", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L3202", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_device_keys_devicekeystore_getdevicex25519keypair" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyStore.ts", + "source_location": "L224", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_device_keys_devicekeystore_devicekeyexists", + "target": "apps_electron_vite_project_electron_main_device_keys_devicekeystore_getdevicex25519publickey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyStore.ts", + "source_location": "L165", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_device_keys_devicekeystore_getdevicex25519publickey", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service_getorchestratorservice" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L189", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_device_keys_devicekeystore_getdevicex25519publickey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L330", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_ensurekeyagreementkeys", + "target": "apps_electron_vite_project_electron_main_device_keys_devicekeystore_getdevicex25519publickey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L3146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_device_keys_devicekeystore_getdevicex25519publickey" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyStore.ts", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_device_keys_devicekeystore_storedevicex25519keypair", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/device-keys/deviceKeyStore.ts", + "source_location": "L188", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_device_keys_devicekeystore_storedevicex25519keypair", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service_getorchestratorservice" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/a2SandboxIngestion.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_a2sandboxingestion_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/a2SandboxIngestion.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_a2sandboxingestion_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_ingestionownership", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/a2SandboxIngestion.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_a2sandboxingestion_test", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/a2SandboxIngestion.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_a2sandboxingestion_test", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_rolescopedtokenrecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/a2SandboxIngestion.test.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_a2sandboxingestion_test", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestion", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/a2SandboxIngestion.test.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_a2sandboxingestion_test", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestion_runsandboxingestionpoll", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/a2SandboxIngestion.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_a2sandboxingestion_test", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestion_sandboxfetchedmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/a2SandboxIngestion.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_a2sandboxingestion_test", + "target": "apps_electron_vite_project_electron_main_email_secure_storage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/a2SandboxIngestion.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_a2sandboxingestion_test", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_oauthtokens", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/a2SandboxIngestion.test.ts", + "source_location": "L243", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_a2sandboxingestion_test", + "target": "apps_electron_vite_project_electron_main_email_tests_a2sandboxingestion_test_buildvalidsealforrowid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/a2SandboxIngestion.test.ts", + "source_location": "L250", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_a2sandboxingestion_test", + "target": "apps_electron_vite_project_electron_main_email_tests_a2sandboxingestion_test_createtestdb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/a2SandboxIngestion.test.ts", + "source_location": "L285", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_a2sandboxingestion_test", + "target": "apps_electron_vite_project_electron_main_email_tests_a2sandboxingestion_test_eml", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/a2SandboxIngestion.test.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_a2sandboxingestion_test", + "target": "apps_electron_vite_project_electron_main_email_tests_a2sandboxingestion_test_fake_record", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/a2SandboxIngestion.test.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_a2sandboxingestion_test", + "target": "apps_electron_vite_project_electron_main_email_tests_a2sandboxingestion_test_fake_tokens", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/a2SandboxIngestion.test.ts", + "source_location": "L223", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_a2sandboxingestion_test", + "target": "apps_electron_vite_project_electron_main_email_tests_a2sandboxingestion_test_h", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/a2SandboxIngestion.test.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_a2sandboxingestion_test", + "target": "apps_electron_vite_project_electron_main_email_tests_a2sandboxingestion_test_host_node", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/a2SandboxIngestion.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_a2sandboxingestion_test", + "target": "apps_electron_vite_project_electron_main_email_tests_a2sandboxingestion_test_require", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/a2SandboxIngestion.test.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_a2sandboxingestion_test", + "target": "apps_electron_vite_project_electron_main_email_tests_a2sandboxingestion_test_sandbox_owner", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/a2SandboxIngestion.test.ts", + "source_location": "L222", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_a2sandboxingestion_test", + "target": "apps_electron_vite_project_electron_main_email_tests_a2sandboxingestion_test_session", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/a2SandboxIngestion.test.ts", + "source_location": "L221", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_a2sandboxingestion_test", + "target": "apps_electron_vite_project_electron_main_email_tests_a2sandboxingestion_test_test_dek", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/a2SandboxIngestion.test.ts", + "source_location": "L286", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_a2sandboxingestion_test_eml", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/accountDeleteAtomic.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_accountdeleteatomic_test", + "target": "apps_electron_vite_project_electron_main_email_accountdeletepersistence", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/accountDeleteAtomic.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_accountdeleteatomic_test", + "target": "apps_electron_vite_project_electron_main_email_accountdeletepersistence_purgeaccountledgerstate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/accountDeleteAtomic.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_accountdeleteatomic_test", + "target": "apps_electron_vite_project_electron_main_email_autosyncloopregistry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/accountDeleteAtomic.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_accountdeleteatomic_test", + "target": "apps_electron_vite_project_electron_main_email_autosyncloopregistry_clearautosyncloopsfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/accountDeleteAtomic.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_accountdeleteatomic_test", + "target": "apps_electron_vite_project_electron_main_email_autosyncloopregistry_hasautosyncloop", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/accountDeleteAtomic.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_accountdeleteatomic_test", + "target": "apps_electron_vite_project_electron_main_email_autosyncloopregistry_registerautosyncloop", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/accountDeleteAtomic.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_accountdeleteatomic_test", + "target": "apps_electron_vite_project_electron_main_email_autosyncloopregistry_stopautosyncloopforaccount", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/accountDeleteAtomic.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_accountdeleteatomic_test", + "target": "apps_electron_vite_project_electron_main_email_tests_accountdeleteatomic_test_makeelectronmock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/accountDeleteAtomic.test.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_accountdeleteatomic_test", + "target": "apps_electron_vite_project_electron_main_email_tests_accountdeleteatomic_test_writetwoaccountfixture", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/accountDeleteAtomic.test.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_accountdeleteatomic_test_makeelectronmock", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/autosortSessionReview.regression.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_autosortsessionreview_regression_test", + "target": "apps_electron_vite_project_electron_main_email_tests_autosortsessionreview_regression_test_bulkviewpath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/autosortSessionReview.regression.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_autosortsessionreview_regression_test", + "target": "apps_electron_vite_project_electron_main_email_tests_autosortsessionreview_regression_test_dirname", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/autosortSessionReview.regression.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_autosortsessionreview_regression_test", + "target": "apps_electron_vite_project_electron_main_email_tests_autosortsessionreview_regression_test_filename", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/autosortSessionReview.regression.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_autosortsessionreview_regression_test", + "target": "apps_electron_vite_project_electron_main_email_tests_autosortsessionreview_regression_test_ipcpath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b2LiveIngestion.rig.test.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b2liveingestion_rig_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b2liveingestion_rig_test_buildvalidsealforrowid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b2LiveIngestion.rig.test.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b2liveingestion_rig_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b2liveingestion_rig_test_createtestdb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b2LiveIngestion.rig.test.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b2liveingestion_rig_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b2liveingestion_rig_test_require", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b2LiveIngestion.rig.test.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b2liveingestion_rig_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b2liveingestion_rig_test_rig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b2LiveIngestion.rig.test.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b2liveingestion_rig_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b2liveingestion_rig_test_rigavailable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b2LiveIngestion.rig.test.ts", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b2liveingestion_rig_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b2liveingestion_rig_test_sandbox_owner", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b2LiveIngestion.rig.test.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b2liveingestion_rig_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b2liveingestion_rig_test_session", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b2LiveIngestion.rig.test.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b2liveingestion_rig_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b2liveingestion_rig_test_test_dek", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b31GapClosure.test.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b31gapclosure_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b31gapclosure_test_buildsealparams", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b31GapClosure.test.ts", + "source_location": "L194", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b31gapclosure_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b31gapclosure_test_createtestdb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b31GapClosure.test.ts", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b31gapclosure_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b31gapclosure_test_makeseal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b31GapClosure.test.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b31gapclosure_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b31gapclosure_test_require", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b31GapClosure.test.ts", + "source_location": "L161", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b31gapclosure_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b31gapclosure_test_seal_key", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b31GapClosure.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b31gapclosure_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b31GapClosure.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b31gapclosure_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_bindkeyprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b31GapClosure.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b31gapclosure_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_cleartamperingevents", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b31GapClosure.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b31gapclosure_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_gettamperingevents", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b31GapClosure.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b31gapclosure_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_preparesealedinsert", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b31GapClosure.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b31gapclosure_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_runsealedtransaction", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b31GapClosure.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b31gapclosure_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealverificationerror", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b31GapClosure.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b31gapclosure_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_unbindkeyprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b31GapClosure.test.ts", + "source_location": "L178", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b31gapclosure_test_buildsealparams", + "target": "apps_electron_vite_project_electron_main_email_tests_b31gapclosure_test_makeseal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b4P2PRelayMigration.test.ts", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b4p2prelaymigration_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b4p2prelaymigration_test_buildvalidsealforrowid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b4P2PRelayMigration.test.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b4p2prelaymigration_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b4p2prelaymigration_test_makeemptydb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b4P2PRelayMigration.test.ts", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b4p2prelaymigration_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b4p2prelaymigration_test_makepbeappackage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b4P2PRelayMigration.test.ts", + "source_location": "L153", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b4p2prelaymigration_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b4p2prelaymigration_test_makeqbeappackage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b4P2PRelayMigration.test.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b4p2prelaymigration_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b4p2prelaymigration_test_maketestdb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b4P2PRelayMigration.test.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b4p2prelaymigration_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b4p2prelaymigration_test_require", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b4P2PRelayMigration.test.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b4p2prelaymigration_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b4p2prelaymigration_test_setupsealgate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b4P2PRelayMigration.test.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b4p2prelaymigration_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b4p2prelaymigration_test_teardownsealgate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b4P2PRelayMigration.test.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b4p2prelaymigration_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b4p2prelaymigration_test_test_dek", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b4P2PRelayMigration.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b4p2prelaymigration_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b4P2PRelayMigration.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b4p2prelaymigration_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_bindkeyprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b4P2PRelayMigration.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b4p2prelaymigration_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_cleartamperingevents", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b4P2PRelayMigration.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b4p2prelaymigration_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_preparesealedinsert", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b4P2PRelayMigration.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b4p2prelaymigration_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_unbindkeyprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b4P2PRelayMigration.test.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b4p2prelaymigration_test_setupsealgate", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_bindkeyprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b4P2PRelayMigration.test.ts", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b4p2prelaymigration_test_setupsealgate", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_cleartamperingevents", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b4P2PRelayMigration.test.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b4p2prelaymigration_test_teardownsealgate", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_unbindkeyprovider", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b4P2PRelayMigration.test.ts", + "source_location": "L144", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b4p2prelaymigration_test_makepbeappackage", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b51ExtensionMergeBypass.test.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b51extensionmergebypass_test", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b51ExtensionMergeBypass.test.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b51extensionmergebypass_test", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_addpendingmerge", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b51ExtensionMergeBypass.test.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b51extensionmergebypass_test", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_clearpendingmergebuffer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b51ExtensionMergeBypass.test.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b51extensionmergebypass_test", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_getallpendingmerges", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b51ExtensionMergeBypass.test.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b51extensionmergebypass_test", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_getpendingmergecount", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b51ExtensionMergeBypass.test.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b51extensionmergebypass_test", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_max_extension_merge_retry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b51ExtensionMergeBypass.test.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b51extensionmergebypass_test", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_removependingmerge", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b51ExtensionMergeBypass.test.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b51extensionmergebypass_test", + "target": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b51ExtensionMergeBypass.test.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b51extensionmergebypass_test", + "target": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged_drainextensionmergebuffer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b51ExtensionMergeBypass.test.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b51extensionmergebypass_test", + "target": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged_mergeextensiondepackaged", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b51ExtensionMergeBypass.test.ts", + "source_location": "L177", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b51extensionmergebypass_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b51extensionmergebypass_test_getshellrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b51ExtensionMergeBypass.test.ts", + "source_location": "L171", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b51extensionmergebypass_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b51extensionmergebypass_test_insertshellrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b51ExtensionMergeBypass.test.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b51extensionmergebypass_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b51extensionmergebypass_test_makedb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b51ExtensionMergeBypass.test.ts", + "source_location": "L221", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b51extensionmergebypass_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b51extensionmergebypass_test_makequarantinesuccessoutcome", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b51ExtensionMergeBypass.test.ts", + "source_location": "L198", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b51extensionmergebypass_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b51extensionmergebypass_test_makerejectionoutcome", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b51ExtensionMergeBypass.test.ts", + "source_location": "L183", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b51extensionmergebypass_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b51extensionmergebypass_test_makesuccessoutcome", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b51ExtensionMergeBypass.test.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b51extensionmergebypass_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b51extensionmergebypass_test_mockfindpairedsandboxhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b51ExtensionMergeBypass.test.ts", + "source_location": "L181", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b51extensionmergebypass_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b51extensionmergebypass_test_package_json", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b51ExtensionMergeBypass.test.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b51extensionmergebypass_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b51extensionmergebypass_test_require", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b51ExtensionMergeBypass.test.ts", + "source_location": "L429", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b51extensionmergebypass_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b51extensionmergebypass_test_seedbuffer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b51ExtensionMergeBypass.test.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b51extensionmergebypass_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b51extensionmergebypass_test_test_dek", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b51ExtensionMergeBypass.test.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b51extensionmergebypass_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b51ExtensionMergeBypass.test.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b51extensionmergebypass_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_bindkeyprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b51ExtensionMergeBypass.test.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b51extensionmergebypass_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_cleartamperingevents", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b51ExtensionMergeBypass.test.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b51extensionmergebypass_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_unbindkeyprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b51ExtensionMergeBypass.test.ts", + "source_location": "L430", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b51extensionmergebypass_test_seedbuffer", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_addpendingmerge" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b5ExtensionMerge.test.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b5extensionmerge_test", + "target": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b5ExtensionMerge.test.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b5extensionmerge_test", + "target": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged_mergeextensiondepackaged", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b5ExtensionMerge.test.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b5extensionmerge_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b5extensionmerge_test_buildvalidsealforrowid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b5ExtensionMerge.test.ts", + "source_location": "L173", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b5extensionmerge_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b5extensionmerge_test_getattachments", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b5ExtensionMerge.test.ts", + "source_location": "L169", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b5extensionmerge_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b5extensionmerge_test_getrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b5ExtensionMerge.test.ts", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b5extensionmerge_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b5extensionmerge_test_insertrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b5ExtensionMerge.test.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b5extensionmerge_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b5extensionmerge_test_makedb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b5ExtensionMerge.test.ts", + "source_location": "L195", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b5extensionmerge_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b5extensionmerge_test_makerejectedoutcome", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b5ExtensionMerge.test.ts", + "source_location": "L179", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b5extensionmerge_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b5extensionmerge_test_makesealedoutcome", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b5ExtensionMerge.test.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b5extensionmerge_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b5ExtensionMerge.test.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b5extensionmerge_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_bindkeyprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b5ExtensionMerge.test.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b5extensionmerge_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_cleartamperingevents", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b5ExtensionMerge.test.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b5extensionmerge_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_unbindkeyprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b5ExtensionMerge.test.ts", + "source_location": "L180", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b5extensionmerge_test_makesealedoutcome", + "target": "apps_electron_vite_project_electron_main_email_tests_b5extensionmerge_test_buildvalidsealforrowid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b71OperationalGate.test.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b71operationalgate_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b71operationalgate_test_makedb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b71OperationalGate.test.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b71operationalgate_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b71operationalgate_test_require", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b71OperationalGate.test.ts", + "source_location": "L418", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b71operationalgate_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b71operationalgate_test_simulateclassify", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b71OperationalGate.test.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b71operationalgate_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b71operationalgate_test_skipifnobettersqlite", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b71OperationalGate.test.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b71operationalgate_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b71operationalgate_test_test_dek", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b71OperationalGate.test.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b71operationalgate_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b71OperationalGate.test.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b71operationalgate_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_bindkeyprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b71OperationalGate.test.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b71operationalgate_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_cleartamperingevents", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b71OperationalGate.test.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b71operationalgate_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_extractcolumnsfromsetclause", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b71OperationalGate.test.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b71operationalgate_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_preparesealedinsert", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b71OperationalGate.test.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b71operationalgate_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_preparesealedoperationalupdate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b71OperationalGate.test.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b71operationalgate_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedquery", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b71OperationalGate.test.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b71operationalgate_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealverificationerror", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b71OperationalGate.test.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b71operationalgate_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_unbindkeyprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b72DecryptedContentReseal.test.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b72decryptedcontentreseal_test", + "target": "apps_electron_vite_project_electron_main_email_sealedcontentupdate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b72DecryptedContentReseal.test.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b72decryptedcontentreseal_test", + "target": "apps_electron_vite_project_electron_main_email_sealedcontentupdate_decryptedqbeapresealparams", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b72DecryptedContentReseal.test.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b72decryptedcontentreseal_test", + "target": "apps_electron_vite_project_electron_main_email_sealedcontentupdate_resealwithdecryptedcontent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b72DecryptedContentReseal.test.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b72decryptedcontentreseal_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b72decryptedcontentreseal_test_buildvalidsealforrowid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b72DecryptedContentReseal.test.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b72decryptedcontentreseal_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b72decryptedcontentreseal_test_db", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b72DecryptedContentReseal.test.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b72decryptedcontentreseal_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b72decryptedcontentreseal_test_getrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b72DecryptedContentReseal.test.ts", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b72decryptedcontentreseal_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b72decryptedcontentreseal_test_insertpendingrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b72DecryptedContentReseal.test.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b72decryptedcontentreseal_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b72decryptedcontentreseal_test_makedb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b72DecryptedContentReseal.test.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b72decryptedcontentreseal_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b72decryptedcontentreseal_test_makeprovenance", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b72DecryptedContentReseal.test.ts", + "source_location": "L159", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b72decryptedcontentreseal_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b72decryptedcontentreseal_test_makerejectionoutcome", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b72DecryptedContentReseal.test.ts", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b72decryptedcontentreseal_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b72decryptedcontentreseal_test_makesuccessoutcome", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b72DecryptedContentReseal.test.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b72decryptedcontentreseal_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b72decryptedcontentreseal_test_require", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b72DecryptedContentReseal.test.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b72decryptedcontentreseal_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b72decryptedcontentreseal_test_test_dek", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b72DecryptedContentReseal.test.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b72decryptedcontentreseal_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b72DecryptedContentReseal.test.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b72decryptedcontentreseal_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_bindkeyprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b72DecryptedContentReseal.test.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b72decryptedcontentreseal_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_cleartamperingevents", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b72DecryptedContentReseal.test.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b72decryptedcontentreseal_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedquery", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b72DecryptedContentReseal.test.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b72decryptedcontentreseal_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_unbindkeyprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b72DecryptedContentReseal.test.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b72decryptedcontentreseal_test_makesuccessoutcome", + "target": "apps_electron_vite_project_electron_main_email_tests_b72decryptedcontentreseal_test_buildvalidsealforrowid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b7IpcContentUpdates.test.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b7ipccontentupdates_test", + "target": "apps_electron_vite_project_electron_main_email_sealedcontentupdate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b7IpcContentUpdates.test.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b7ipccontentupdates_test", + "target": "apps_electron_vite_project_electron_main_email_sealedcontentupdate_resealwithaianalysis", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b7IpcContentUpdates.test.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b7ipccontentupdates_test", + "target": "apps_electron_vite_project_electron_main_email_sealedcontentupdate_resealwithpdfextraction", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b7IpcContentUpdates.test.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b7ipccontentupdates_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b7ipccontentupdates_test_buildvalidsealforrowid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b7IpcContentUpdates.test.ts", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b7ipccontentupdates_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b7ipccontentupdates_test_getatt", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b7IpcContentUpdates.test.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b7ipccontentupdates_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b7ipccontentupdates_test_getrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b7IpcContentUpdates.test.ts", + "source_location": "L134", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b7ipccontentupdates_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b7ipccontentupdates_test_makebeapmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b7IpcContentUpdates.test.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b7ipccontentupdates_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b7ipccontentupdates_test_makedb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b7IpcContentUpdates.test.ts", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b7ipccontentupdates_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b7ipccontentupdates_test_makeplainemail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b7IpcContentUpdates.test.ts", + "source_location": "L398", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b7ipccontentupdates_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b7ipccontentupdates_test_makerejectionoutcome", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b7IpcContentUpdates.test.ts", + "source_location": "L382", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b7ipccontentupdates_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b7ipccontentupdates_test_makesuccessoutcome", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b7IpcContentUpdates.test.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b7ipccontentupdates_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b7ipccontentupdates_test_require", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b7IpcContentUpdates.test.ts", + "source_location": "L377", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b7ipccontentupdates_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b7ipccontentupdates_test_seedparentandattachment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b7IpcContentUpdates.test.ts", + "source_location": "L197", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b7ipccontentupdates_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b7ipccontentupdates_test_seedsealedrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b7IpcContentUpdates.test.ts", + "source_location": "L204", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b7ipccontentupdates_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b7ipccontentupdates_test_seedunsealedrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b7IpcContentUpdates.test.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b7ipccontentupdates_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b7ipccontentupdates_test_test_dek", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b7IpcContentUpdates.test.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b7ipccontentupdates_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b7IpcContentUpdates.test.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b7ipccontentupdates_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_bindkeyprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b7IpcContentUpdates.test.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b7ipccontentupdates_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_cleartamperingevents", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b7IpcContentUpdates.test.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b7ipccontentupdates_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_unbindkeyprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b7IpcContentUpdates.test.ts", + "source_location": "L210", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b7ipccontentupdates_test_makesuccessoutcome", + "target": "apps_electron_vite_project_electron_main_email_tests_b7ipccontentupdates_test_buildvalidsealforrowid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b9OutboundCloneIntegrity.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b9outboundcloneintegrity_test", + "target": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b9OutboundCloneIntegrity.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b9outboundcloneintegrity_test", + "target": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_preparebeapinboxsandboxclone", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b9OutboundCloneIntegrity.test.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b9outboundcloneintegrity_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b9outboundcloneintegrity_test_listavailableinternalsandboxes_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b9OutboundCloneIntegrity.test.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b9outboundcloneintegrity_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b9outboundcloneintegrity_test_makecontent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b9OutboundCloneIntegrity.test.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b9outboundcloneintegrity_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b9outboundcloneintegrity_test_makeeligibleentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b9OutboundCloneIntegrity.test.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b9outboundcloneintegrity_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b9outboundcloneintegrity_test_makehandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b9OutboundCloneIntegrity.test.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b9outboundcloneintegrity_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b9outboundcloneintegrity_test_makesession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b9OutboundCloneIntegrity.test.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b9outboundcloneintegrity_test", + "target": "apps_electron_vite_project_electron_main_email_tests_b9outboundcloneintegrity_test_mockhappylist", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b9OutboundCloneIntegrity.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b9outboundcloneintegrity_test", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b9OutboundCloneIntegrity.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b9outboundcloneintegrity_test", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_internalsandboxlistentry", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b9OutboundCloneIntegrity.test.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b9outboundcloneintegrity_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b9OutboundCloneIntegrity.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b9outboundcloneintegrity_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b9OutboundCloneIntegrity.test.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b9outboundcloneintegrity_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/b9OutboundCloneIntegrity.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_b9outboundcloneintegrity_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_ssosession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepare.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapinboxcloneprepare_test", + "target": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepare.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapinboxcloneprepare_test", + "target": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_preparebeapinboxsandboxclone", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepare.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapinboxcloneprepare_test", + "target": "apps_electron_vite_project_electron_main_email_tests_beapinboxcloneprepare_test_listavailableinternalsandboxes_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepare.test.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapinboxcloneprepare_test", + "target": "apps_electron_vite_project_electron_main_email_tests_beapinboxcloneprepare_test_makeeligibleentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepare.test.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapinboxcloneprepare_test", + "target": "apps_electron_vite_project_electron_main_email_tests_beapinboxcloneprepare_test_makehandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepare.test.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapinboxcloneprepare_test", + "target": "apps_electron_vite_project_electron_main_email_tests_beapinboxcloneprepare_test_makeinboxdb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepare.test.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapinboxcloneprepare_test", + "target": "apps_electron_vite_project_electron_main_email_tests_beapinboxcloneprepare_test_makesession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepare.test.ts", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapinboxcloneprepare_test", + "target": "apps_electron_vite_project_electron_main_email_tests_beapinboxcloneprepare_test_mockhappylist", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepare.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapinboxcloneprepare_test", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepare.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapinboxcloneprepare_test", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_internalsandboxlistentry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepare.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapinboxcloneprepare_test", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_p2p_beap_inbox_account_id", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepare.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapinboxcloneprepare_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepare.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapinboxcloneprepare_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepare.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapinboxcloneprepare_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepare.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapinboxcloneprepare_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_ssosession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepareSealGate.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapinboxclonepreparesealgate_test", + "target": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepareSealGate.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapinboxclonepreparesealgate_test", + "target": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_preparebeapinboxsandboxclone", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepareSealGate.test.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapinboxclonepreparesealgate_test", + "target": "apps_electron_vite_project_electron_main_email_tests_beapinboxclonepreparesealgate_test_insertdirectbeaprow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepareSealGate.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapinboxclonepreparesealgate_test", + "target": "apps_electron_vite_project_electron_main_email_tests_beapinboxclonepreparesealgate_test_listavailableinternalsandboxes_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepareSealGate.test.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapinboxclonepreparesealgate_test", + "target": "apps_electron_vite_project_electron_main_email_tests_beapinboxclonepreparesealgate_test_makeeligibleentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepareSealGate.test.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapinboxclonepreparesealgate_test", + "target": "apps_electron_vite_project_electron_main_email_tests_beapinboxclonepreparesealgate_test_makehandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepareSealGate.test.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapinboxclonepreparesealgate_test", + "target": "apps_electron_vite_project_electron_main_email_tests_beapinboxclonepreparesealgate_test_makesession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepareSealGate.test.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapinboxclonepreparesealgate_test", + "target": "apps_electron_vite_project_electron_main_email_tests_beapinboxclonepreparesealgate_test_mockhappylist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepareSealGate.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapinboxclonepreparesealgate_test", + "target": "apps_electron_vite_project_electron_main_email_tests_beapinboxclonepreparesealgate_test_outer_key", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepareSealGate.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapinboxclonepreparesealgate_test", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepareSealGate.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapinboxclonepreparesealgate_test", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_internalsandboxlistentry", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepareSealGate.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapinboxclonepreparesealgate_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepareSealGate.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapinboxclonepreparesealgate_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepareSealGate.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapinboxclonepreparesealgate_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepareSealGate.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapinboxclonepreparesealgate_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_ssosession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepareSealGate.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapinboxclonepreparesealgate_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepareSealGate.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapinboxclonepreparesealgate_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_bindkeyprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepareSealGate.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapinboxclonepreparesealgate_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_computeseal", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepareSealGate.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapinboxclonepreparesealgate_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_unbindkeyprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepareSealGate.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapinboxclonepreparesealgate_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_ledgersealkey", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepareSealGate.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapinboxclonepreparesealgate_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_ledgersealkey_deriveledgersealkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepareSealGate.test.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapinboxclonepreparesealgate_test_insertdirectbeaprow", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_computeseal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepareSealGate.test.ts", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapinboxclonepreparesealgate_test_insertdirectbeaprow", + "target": "test_harness_sealed_storage_sealedstoragetestcontext_buildvalidsealforrowid" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxCloneVaultRequirement.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapinboxclonevaultrequirement_test", + "target": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxCloneVaultRequirement.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapinboxclonevaultrequirement_test", + "target": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_inboxclonerequiresinnervault", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxCloneVaultRequirement.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapinboxclonevaultrequirement_test", + "target": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_inboxsealkeysourcerequiresinnervault", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxCloneVaultRequirement.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapinboxclonevaultrequirement_test", + "target": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_probeinboxmessageclonevaultrequirement", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapInboxCloneVaultRequirement.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapinboxclonevaultrequirement_test", + "target": "apps_electron_vite_project_electron_main_email_inboxrowsealpolicy_isdepackagedemailinboxsourcetype", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapRedirectSource.inbox.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapredirectsource_inbox_test", + "target": "apps_electron_vite_project_electron_main_email_beapredirectsource", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapRedirectSource.inbox.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapredirectsource_inbox_test", + "target": "apps_electron_vite_project_electron_main_email_beapredirectsource_extractbeapredirectsourcefromrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapRedirectSource.inbox.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapredirectsource_inbox_test", + "target": "apps_electron_vite_project_electron_main_email_beapredirectsource_extractclonepreparesourcefromrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapRedirectSource.inbox.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapredirectsource_inbox_test", + "target": "apps_electron_vite_project_electron_main_email_beapredirectsource_inboxrowisreceivedbeapforredirectorclone", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapRedirectSource.inbox.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapredirectsource_inbox_test", + "target": "apps_electron_vite_project_electron_main_email_beapredirectsource_isreceivedbeapinboxsourcetype", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapSync.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapsync_test", + "target": "apps_electron_vite_project_electron_main_email_beapsync", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapSync.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapsync_test", + "target": "apps_electron_vite_project_electron_main_email_beapsync_detectbeapinbody", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapSync.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapsync_test", + "target": "apps_electron_vite_project_electron_main_email_beapsync_detectbeapinsubject", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapSync.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapsync_test", + "target": "apps_electron_vite_project_electron_main_email_beapsync_processemailforbeap", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapSync.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapsync_test", + "target": "apps_electron_vite_project_electron_main_email_beapsync_resetemailfunctions", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapSync.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapsync_test", + "target": "apps_electron_vite_project_electron_main_email_beapsync_resetprocessedmessages", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapSync.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapsync_test", + "target": "apps_electron_vite_project_electron_main_email_beapsync_runbeapsynccycle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapSync.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapsync_test", + "target": "apps_electron_vite_project_electron_main_email_beapsync_setemailfunctions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapSync.test.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapsync_test", + "target": "apps_electron_vite_project_electron_main_email_tests_beapsync_test_makebeapmessagedetail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapSync.test.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapsync_test", + "target": "apps_electron_vite_project_electron_main_email_tests_beapsync_test_makemessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapSync.test.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapsync_test", + "target": "apps_electron_vite_project_electron_main_email_tests_beapsync_test_makenonbeapmessagedetail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapSync.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapsync_test", + "target": "apps_electron_vite_project_electron_main_email_tests_beapsync_test_makessosession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapSync.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapsync_test", + "target": "apps_electron_vite_project_electron_main_email_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapSync.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapsync_test", + "target": "apps_electron_vite_project_electron_main_email_types_sanitizedmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapSync.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapsync_test", + "target": "apps_electron_vite_project_electron_main_email_types_sanitizedmessagedetail", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapSync.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapsync_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapSync.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapsync_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildinitiatecapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapSync.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapsync_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapSync.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapsync_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapSync.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapsync_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_handshaketestdb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapSync.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapsync_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_handshaketestdb_createhandshaketestdb", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapSync.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapsync_test", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapSync.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapsync_test", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_migrateingestiontables", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/beapSync.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_beapsync_test_makessosession", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/connectToDisplay.regression.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_connecttodisplay_regression_test", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/connectToDisplay.regression.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_connecttodisplay_regression_test", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_gmail_read_scopes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/connectToDisplay.regression.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_connecttodisplay_regression_test", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_resolveoauthscopes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/connectToDisplay.regression.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_connecttodisplay_regression_test", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_scopesetcanread", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/connectToDisplay.regression.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_connecttodisplay_regression_test", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_scopesetcansend", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/connectToDisplay.regression.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_connecttodisplay_regression_test", + "target": "apps_electron_vite_project_electron_main_email_resolveconnectoauthscoperole", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/connectToDisplay.regression.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_connecttodisplay_regression_test", + "target": "apps_electron_vite_project_electron_main_email_resolveconnectoauthscoperole_resolveconnectoauthscoperole", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/connectToDisplay.regression.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_connecttodisplay_regression_test", + "target": "apps_electron_vite_project_electron_main_email_tests_connecttodisplay_regression_test_issandboxmode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/connectToDisplay.regression.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_connecttodisplay_regression_test", + "target": "apps_electron_vite_project_electron_main_email_tests_connecttodisplay_regression_test_ledgerprovessandbox", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/dedicatedSandboxReadProviderStatus.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_dedicatedsandboxreadproviderstatus_test", + "target": "apps_electron_vite_project_electron_main_email_dedicatedsandboxreadproviderstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/dedicatedSandboxReadProviderStatus.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_dedicatedsandboxreadproviderstatus_test", + "target": "apps_electron_vite_project_electron_main_email_dedicatedsandboxreadproviderstatus_hostackindicatesmissingreadprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/dedicatedSandboxReadProviderStatus.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_dedicatedsandboxreadproviderstatus_test", + "target": "apps_electron_vite_project_electron_main_email_dedicatedsandboxreadproviderstatus_hostackindicatespollunreachable", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/dedicatedSandboxReadProviderStatus.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_dedicatedsandboxreadproviderstatus_test", + "target": "apps_electron_vite_project_electron_main_email_dedicatedsandboxreadproviderstatus_sandboxdedicatedmissingreadprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/dedicatedSandboxSelfTrigger.test.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_dedicatedsandboxselftrigger_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/dedicatedSandboxSelfTrigger.test.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_dedicatedsandboxselftrigger_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_ingestion_host_triggered_only_skip", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/dedicatedSandboxSelfTrigger.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_dedicatedsandboxselftrigger_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_ingestionownership", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/dedicatedSandboxSelfTrigger.test.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_dedicatedsandboxselftrigger_test", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/dedicatedSandboxSelfTrigger.test.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_dedicatedsandboxselftrigger_test", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_host_triggered_hint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/dedicatedSandboxSelfTrigger.test.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_dedicatedsandboxselftrigger_test", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_mapskipreasontoipcwarning", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/dedicatedSandboxSelfTrigger.test.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_dedicatedsandboxselftrigger_test", + "target": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/dedicatedSandboxSelfTrigger.test.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_dedicatedsandboxselftrigger_test", + "target": "apps_electron_vite_project_electron_main_email_syncorchestrator_startautosync", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/dedicatedSandboxSelfTrigger.test.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_dedicatedsandboxselftrigger_test", + "target": "apps_electron_vite_project_electron_main_email_syncorchestrator_syncaccountemails", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/dedicatedSandboxSelfTrigger.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_dedicatedsandboxselftrigger_test", + "target": "apps_electron_vite_project_electron_main_email_tests_dedicatedsandboxselftrigger_test_dedicatedfetchnode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/dedicatedSandboxSelfTrigger.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_dedicatedsandboxselftrigger_test", + "target": "apps_electron_vite_project_electron_main_email_tests_dedicatedsandboxselftrigger_test_getaccount", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/dedicatedSandboxSelfTrigger.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_dedicatedsandboxselftrigger_test", + "target": "apps_electron_vite_project_electron_main_email_tests_dedicatedsandboxselftrigger_test_getaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/dedicatedSandboxSelfTrigger.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_dedicatedsandboxselftrigger_test", + "target": "apps_electron_vite_project_electron_main_email_tests_dedicatedsandboxselftrigger_test_hosttriggermock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/dedicatedSandboxSelfTrigger.test.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_dedicatedsandboxselftrigger_test", + "target": "apps_electron_vite_project_electron_main_email_tests_dedicatedsandboxselftrigger_test_makedb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/dedicatedSandboxSelfTrigger.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_dedicatedsandboxselftrigger_test", + "target": "apps_electron_vite_project_electron_main_email_tests_dedicatedsandboxselftrigger_test_ownershipstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/dedicatedSandboxSelfTrigger.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_dedicatedsandboxselftrigger_test", + "target": "apps_electron_vite_project_electron_main_email_tests_dedicatedsandboxselftrigger_test_runsandboxingestionpoll", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/dedicatedSandboxSelfTrigger.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_dedicatedsandboxselftrigger_test", + "target": "apps_electron_vite_project_electron_main_email_tests_dedicatedsandboxselftrigger_test_topologykind", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/emailInboxAttachmentInvariants.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_emailinboxattachmentinvariants_test", + "target": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/emailInboxAttachmentInvariants.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_emailinboxattachmentinvariants_test", + "target": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto_decryptblob", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/emailInboxAttachmentInvariants.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_emailinboxattachmentinvariants_test", + "target": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto_encryptblob", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/emailInboxAttachmentInvariants.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_emailinboxattachmentinvariants_test", + "target": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto_readdecryptedattachmentbuffer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/emailSyncPauseAndImapScheduler.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_emailsyncpauseandimapscheduler_test", + "target": "apps_electron_vite_project_electron_main_email_tests_emailsyncpauseandimapscheduler_test_dbautosynctickwouldsync", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/emailSyncPauseAndImapScheduler.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_emailsyncpauseandimapscheduler_test", + "target": "apps_electron_vite_project_electron_main_email_tests_emailsyncpauseandimapscheduler_test_imapperiodicpullwouldinclude", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/emailSyncPauseAndImapScheduler.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_emailsyncpauseandimapscheduler_test", + "target": "apps_electron_vite_project_electron_main_email_tests_emailsyncpauseandimapscheduler_test_validatesetprocessingpausedargs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/imapBruteForceAutoSync.regression.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_imapbruteforceautosync_regression_test", + "target": "apps_electron_vite_project_electron_main_email_tests_imapbruteforceautosync_regression_test_dirname", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/imapBruteForceAutoSync.regression.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_imapbruteforceautosync_regression_test", + "target": "apps_electron_vite_project_electron_main_email_tests_imapbruteforceautosync_regression_test_ipcpath", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inboxAiErrorMapping.contextOverflow.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_inboxaierrormapping_contextoverflow_test", + "target": "apps_electron_vite_project_electron_main_email_inboxaierrormapping", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inboxAiErrorMapping.contextOverflow.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_inboxaierrormapping_contextoverflow_test", + "target": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_classifyinboxaierror", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inboxAiErrorMapping.contextOverflow.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_inboxaierrormapping_contextoverflow_test", + "target": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_inbox_context_overflow_user_message", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inboxAiErrorMapping.contextOverflow.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_inboxaierrormapping_contextoverflow_test", + "target": "apps_electron_vite_project_electron_main_llm_llamacontextoverflow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inboxAiErrorMapping.contextOverflow.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_inboxaierrormapping_contextoverflow_test", + "target": "apps_electron_vite_project_electron_main_llm_llamacontextoverflow_llamacontextoverflowerror", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inboxAiTaskDedup.attach.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_inboxaitaskdedup_attach_test", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inboxAiTaskDedup.attach.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_inboxaitaskdedup_attach_test", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_appendanalysisstreamreplaychunk", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inboxAiTaskDedup.attach.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_inboxaitaskdedup_attach_test", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_initanalysisstreamreplay", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inboxAiTaskDedup.attach.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_inboxaitaskdedup_attach_test", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_markanalysisstreamreplaydone", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inboxAiTaskDedup.attach.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_inboxaitaskdedup_attach_test", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_runinboxaitaskwithdedup", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inboxAiTaskDedup.attach.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_inboxaitaskdedup_attach_test", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_tryattachmanualinboxanalysistorunningauto", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inboxAiTaskDedup.replay.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_inboxaitaskdedup_replay_test", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inboxAiTaskDedup.replay.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_inboxaitaskdedup_replay_test", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_appendanalysisstreamreplaychunk", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inboxAiTaskDedup.replay.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_inboxaitaskdedup_replay_test", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_clearanalysisstreamreplayprefix", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inboxAiTaskDedup.replay.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_inboxaitaskdedup_replay_test", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_initanalysisstreamreplay", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inboxAiTaskDedup.replay.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_inboxaitaskdedup_replay_test", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_markanalysisstreamreplaydone", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inboxAiTaskDedup.replay.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_inboxaitaskdedup_replay_test", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_replayanalysisstreamstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inboxLifecycleEngine.tick.test.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_inboxlifecycleengine_tick_test", + "target": "apps_electron_vite_project_electron_main_email_tests_inboxlifecycleengine_tick_test_createdb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inboxOllamaAnalyzeStreamSandbox.regression.test.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_inboxollamaanalyzestreamsandbox_regression_test", + "target": "apps_electron_vite_project_electron_main_email_tests_inboxollamaanalyzestreamsandbox_regression_test_constructor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inboxOllamaAnalyzeStreamSandbox.regression.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_inboxollamaanalyzestreamsandbox_regression_test", + "target": "apps_electron_vite_project_electron_main_email_tests_inboxollamaanalyzestreamsandbox_regression_test_effsandboxmock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inboxOllamaAnalyzeStreamSandbox.regression.test.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_inboxollamaanalyzestreamsandbox_regression_test", + "target": "apps_electron_vite_project_electron_main_email_tests_inboxollamaanalyzestreamsandbox_regression_test_getreader", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inboxOrchestratorRemoteQueue.enqueue.test.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_inboxorchestratorremotequeue_enqueue_test", + "target": "apps_electron_vite_project_electron_main_email_tests_inboxorchestratorremotequeue_enqueue_test_makedb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inboxOrchestratorRemoteQueue.enqueue.test.ts", + "source_location": "L173", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_inboxorchestratorremotequeue_enqueue_test", + "target": "apps_electron_vite_project_electron_main_email_tests_inboxorchestratorremotequeue_enqueue_test_makelifecycledb", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inboxPromptGuard.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_inboxpromptguard_test", + "target": "apps_electron_vite_project_electron_main_email_inboxpromptguard", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inboxPromptGuard.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_inboxpromptguard_test", + "target": "apps_electron_vite_project_electron_main_email_inboxpromptguard_estimatetexttokens", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inboxPromptGuard.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_inboxpromptguard_test", + "target": "apps_electron_vite_project_electron_main_email_inboxpromptguard_guardinboxpromptforctxslot", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inboxPromptGuard.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_inboxpromptguard_test", + "target": "apps_electron_vite_project_electron_main_email_inboxpromptguard_truncateemaillikecontent", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inboxSealedRead.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_inboxsealedread_test", + "target": "apps_electron_vite_project_electron_main_email_inboxsealedread", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inboxSealedRead.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_inboxsealedread_test", + "target": "apps_electron_vite_project_electron_main_email_inboxsealedread_filterinboxrowswithverifiedseals", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inboxSealedRead.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_inboxsealedread_test", + "target": "apps_electron_vite_project_electron_main_email_inboxsealedread_todeferredinboxlistrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inboxSealedRead.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_inboxsealedread_test", + "target": "apps_electron_vite_project_electron_main_email_tests_inboxsealedread_test_outer_key", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inboxSealedRead.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_inboxsealedread_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inboxSealedRead.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_inboxsealedread_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_bindkeyprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inboxSealedRead.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_inboxsealedread_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_cleartamperingevents", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inboxSealedRead.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_inboxsealedread_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_computeseal", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inboxSealedRead.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_inboxsealedread_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_unbindkeyprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inboxSealedRead.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_inboxsealedread_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_ledgersealkey", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inboxSealedRead.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_inboxsealedread_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_ledgersealkey_deriveledgersealkey", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/ingestionOwnership.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_ingestionownership_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/ingestionOwnership.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_ingestionownership_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_asserthostmayreadpoll", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/ingestionOwnership.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_ingestionownership_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_hostreadpollforbiddenerror", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/ingestionOwnership.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_ingestionownership_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_maytriggerremoteprovidermutationatipc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/ingestionOwnership.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_ingestionownership_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_resolveingestionownership", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/ingestionOwnership.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_ingestionownership_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_sandbox_remote_mutations_host_only", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/ingestionOwnership.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_ingestionownership_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_thisnodemayperformremoteprovidermutations", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/ingestionOwnership.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_ingestionownership_test", + "target": "apps_electron_vite_project_electron_main_email_tests_ingestionownership_test_getorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/ingestionOwnership.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_ingestionownership_test", + "target": "apps_electron_vite_project_electron_main_email_tests_ingestionownership_test_haslinkeddepackagesandbox", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/ingestionStatus.test.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_ingestionstatus_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostackstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/ingestionStatus.test.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_ingestionstatus_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostackstore_recordhostingestionpollack", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/ingestionStatus.test.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_ingestionstatus_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostackstore_recordhostingestionpollunreachable", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/ingestionStatus.test.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_ingestionstatus_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostackstore_resethostingestionpollacksfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/ingestionStatus.test.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_ingestionstatus_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/ingestionStatus.test.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_ingestionstatus_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionstatus_ingestionstatusresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/ingestionStatus.test.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_ingestionstatus_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionstatus_resolveingestionstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/ingestionStatus.test.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_ingestionstatus_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionstatus_setingestionstatustopologykindfortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/ingestionStatus.test.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_ingestionstatus_test", + "target": "apps_electron_vite_project_electron_main_email_tests_ingestionstatus_test_delegatedownershiponhost", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/ingestionStatus.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_ingestionstatus_test", + "target": "apps_electron_vite_project_electron_main_email_tests_ingestionstatus_test_mockgetlastsandboxpolloutcomes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/ingestionStatus.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_ingestionstatus_test", + "target": "apps_electron_vite_project_electron_main_email_tests_ingestionstatus_test_mockhasrolescopedtokens", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/ingestionStatus.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_ingestionstatus_test", + "target": "apps_electron_vite_project_electron_main_email_tests_ingestionstatus_test_mockresolveingestionownership", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/ingestionStatus.test.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_ingestionstatus_test", + "target": "apps_electron_vite_project_electron_main_email_tests_ingestionstatus_test_polloutcome", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/ingestionStatus.test.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_ingestionstatus_test", + "target": "apps_electron_vite_project_electron_main_email_tests_ingestionstatus_test_sandboxownsonsandbox", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/ingestionStatus.test.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_ingestionstatus_test", + "target": "apps_electron_vite_project_electron_main_email_tests_ingestionstatus_test_singlemachineownership", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inlineParseGuard.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_inlineparseguard_test", + "target": "apps_electron_vite_project_electron_main_email_inlineparseguard", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inlineParseGuard.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_inlineparseguard_test", + "target": "apps_electron_vite_project_electron_main_email_inlineparseguard_assertnoinlineparse", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inlineParseGuard.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_inlineparseguard_test", + "target": "apps_electron_vite_project_electron_main_email_inlineparseguard_inline_parse_forbidden_code", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inlineParseGuard.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_inlineparseguard_test", + "target": "apps_electron_vite_project_electron_main_email_inlineparseguard_inlineparseforbiddenerror", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inlineParseGuard.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_inlineparseguard_test", + "target": "apps_electron_vite_project_electron_main_email_messagerouter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inlineParseGuard.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_inlineparseguard_test", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_detectandroutemessageinline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inlineParseGuard.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_inlineparseguard_test", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_rawemailmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inlineParseGuard.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_inlineparseguard_test", + "target": "apps_electron_vite_project_electron_main_email_tests_inlineparseguard_test_rawmsg", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/inlineParseGuard.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_inlineparseguard_test", + "target": "apps_electron_vite_project_electron_main_email_tests_inlineparseguard_test_setflag", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/ipcSyncResultShape.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_ipcsyncresultshape_test", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/ipcSyncResultShape.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_ipcsyncresultshape_test", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_delegated_hint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/ipcSyncResultShape.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_ipcsyncresultshape_test", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_formatingestionpolltriggerpullhint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/ipcSyncResultShape.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_ipcsyncresultshape_test", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_mapingestionpolltriggerhostfeedback", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/ipcSyncResultShape.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_ipcsyncresultshape_test", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_mapingestionpolltriggerpendingfeedback", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/ipcSyncResultShape.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_ipcsyncresultshape_test", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_mapingestiontriggerfailureskipreason", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/ipcSyncResultShape.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_ipcsyncresultshape_test", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_mapskipreasontoipcwarning", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/ipcSyncResultShape.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_ipcsyncresultshape_test", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_paused_hint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/ipcSyncResultShape.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_ipcsyncresultshape_test", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_trigger_failed_hint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/ipcSyncResultShape.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_ipcsyncresultshape_test", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_trigger_fetch_failed_hint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/ipcSyncResultShape.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_ipcsyncresultshape_test", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_trigger_pending_hint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/ipcSyncResultShape.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_ipcsyncresultshape_test", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_trigger_read_consent_missing_hint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/ipcSyncResultShape.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_ipcsyncresultshape_test", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_trigger_rejected_hint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/ipcSyncResultShape.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_ipcsyncresultshape_test", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_trigger_unreachable_hint", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/localInboxDeletion.regression.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_localinboxdeletion_regression_test", + "target": "apps_electron_vite_project_electron_main_email_inboxwhereclause", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/localInboxDeletion.regression.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_localinboxdeletion_regression_test", + "target": "apps_electron_vite_project_electron_main_email_inboxwhereclause_buildinboxmessageswhereclause", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/localInboxDeletion.regression.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_localinboxdeletion_regression_test", + "target": "apps_electron_vite_project_electron_main_email_localinboxdeletion", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/localInboxDeletion.regression.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_localinboxdeletion_regression_test", + "target": "apps_electron_vite_project_electron_main_email_localinboxdeletion_bulkdeletemessageslocal", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/localInboxDeletion.regression.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_localinboxdeletion_regression_test", + "target": "apps_electron_vite_project_electron_main_email_localinboxdeletion_deletemessagelocal", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/localInboxDeletion.regression.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_localinboxdeletion_regression_test", + "target": "apps_electron_vite_project_electron_main_email_localinboxdeletion_islocallydeletedrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/localInboxDeletion.regression.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_localinboxdeletion_regression_test", + "target": "apps_electron_vite_project_electron_main_email_localinboxdeletion_local_wrdesk_delete_skip_reason", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/localInboxDeletion.regression.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_localinboxdeletion_regression_test", + "target": "apps_electron_vite_project_electron_main_email_tests_localinboxdeletion_regression_test_deletemessagemock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/localInboxDeletion.regression.test.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_localinboxdeletion_regression_test", + "target": "apps_electron_vite_project_electron_main_email_tests_localinboxdeletion_regression_test_makememorydb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/localInboxDeletion.regression.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_localinboxdeletion_regression_test", + "target": "apps_electron_vite_project_electron_main_email_tests_localinboxdeletion_regression_test_row", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/localInboxDeletion.regression.test.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_localinboxdeletion_regression_test_makememorydb", + "target": "apps_electron_vite_project_electron_main_email_inboxwhereclause_buildinboxmessageswhereclause", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/mergeExtensionDepackaged.validation.test.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_mergeextensiondepackaged_validation_test", + "target": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/mergeExtensionDepackaged.validation.test.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_mergeextensiondepackaged_validation_test", + "target": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged_mergeextensiondepackaged", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/mergeExtensionDepackaged.validation.test.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_mergeextensiondepackaged_validation_test", + "target": "apps_electron_vite_project_electron_main_email_tests_mergeextensiondepackaged_validation_test_buildvalidsealforrowid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/mergeExtensionDepackaged.validation.test.ts", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_mergeextensiondepackaged_validation_test", + "target": "apps_electron_vite_project_electron_main_email_tests_mergeextensiondepackaged_validation_test_getrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/mergeExtensionDepackaged.validation.test.ts", + "source_location": "L134", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_mergeextensiondepackaged_validation_test", + "target": "apps_electron_vite_project_electron_main_email_tests_mergeextensiondepackaged_validation_test_insertrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/mergeExtensionDepackaged.validation.test.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_mergeextensiondepackaged_validation_test", + "target": "apps_electron_vite_project_electron_main_email_tests_mergeextensiondepackaged_validation_test_makedb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/mergeExtensionDepackaged.validation.test.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_mergeextensiondepackaged_validation_test", + "target": "apps_electron_vite_project_electron_main_email_tests_mergeextensiondepackaged_validation_test_makerejectedoutcome", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/mergeExtensionDepackaged.validation.test.ts", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_mergeextensiondepackaged_validation_test", + "target": "apps_electron_vite_project_electron_main_email_tests_mergeextensiondepackaged_validation_test_makesealedoutcome", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/mergeExtensionDepackaged.validation.test.ts", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_mergeextensiondepackaged_validation_test", + "target": "apps_electron_vite_project_electron_main_email_tests_mergeextensiondepackaged_validation_test_package_json", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/mergeExtensionDepackaged.validation.test.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_mergeextensiondepackaged_validation_test", + "target": "apps_electron_vite_project_electron_main_email_tests_mergeextensiondepackaged_validation_test_require", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/mergeExtensionDepackaged.validation.test.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_mergeextensiondepackaged_validation_test", + "target": "apps_electron_vite_project_electron_main_email_tests_mergeextensiondepackaged_validation_test_test_dek", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/mergeExtensionDepackaged.validation.test.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_mergeextensiondepackaged_validation_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/mergeExtensionDepackaged.validation.test.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_mergeextensiondepackaged_validation_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_bindkeyprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/mergeExtensionDepackaged.validation.test.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_mergeextensiondepackaged_validation_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_cleartamperingevents", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/mergeExtensionDepackaged.validation.test.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_mergeextensiondepackaged_validation_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_unbindkeyprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/mergeExtensionDepackaged.validation.test.ts", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_mergeextensiondepackaged_validation_test_makesealedoutcome", + "target": "apps_electron_vite_project_electron_main_email_tests_mergeextensiondepackaged_validation_test_buildvalidsealforrowid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/messageRouter.depackageSeam.test.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_messagerouter_depackageseam_test", + "target": "apps_electron_vite_project_electron_main_email_messagerouter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/messageRouter.depackageSeam.test.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_messagerouter_depackageseam_test", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_depackagecutoverhelderror", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/messageRouter.depackageSeam.test.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_messagerouter_depackageseam_test", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_detectandroutemessage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/messageRouter.depackageSeam.test.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_messagerouter_depackageseam_test", + "target": "apps_electron_vite_project_electron_main_email_opaqueingestion", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/messageRouter.depackageSeam.test.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_messagerouter_depackageseam_test", + "target": "apps_electron_vite_project_electron_main_email_opaqueingestion_resetopaqueingestioncachefortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/messageRouter.depackageSeam.test.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_messagerouter_depackageseam_test", + "target": "apps_electron_vite_project_electron_main_email_tests_messagerouter_depackageseam_test_buildvalidsealforrowid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/messageRouter.depackageSeam.test.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_messagerouter_depackageseam_test", + "target": "apps_electron_vite_project_electron_main_email_tests_messagerouter_depackageseam_test_createtestdb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/messageRouter.depackageSeam.test.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_messagerouter_depackageseam_test", + "target": "apps_electron_vite_project_electron_main_email_tests_messagerouter_depackageseam_test_eml", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/messageRouter.depackageSeam.test.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_messagerouter_depackageseam_test", + "target": "apps_electron_vite_project_electron_main_email_tests_messagerouter_depackageseam_test_h", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/messageRouter.depackageSeam.test.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_messagerouter_depackageseam_test", + "target": "apps_electron_vite_project_electron_main_email_tests_messagerouter_depackageseam_test_pbeap_pkg", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/messageRouter.depackageSeam.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_messagerouter_depackageseam_test", + "target": "apps_electron_vite_project_electron_main_email_tests_messagerouter_depackageseam_test_require", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/messageRouter.depackageSeam.test.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_messagerouter_depackageseam_test", + "target": "apps_electron_vite_project_electron_main_email_tests_messagerouter_depackageseam_test_session", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/messageRouter.depackageSeam.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_messagerouter_depackageseam_test", + "target": "apps_electron_vite_project_electron_main_email_tests_messagerouter_depackageseam_test_test_dek", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/messageRouter.depackageSeam.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_messagerouter_depackageseam_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/messageRouter.depackageSeam.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_messagerouter_depackageseam_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_bindkeyprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/messageRouter.depackageSeam.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_messagerouter_depackageseam_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_cleartamperingevents", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/messageRouter.depackageSeam.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_messagerouter_depackageseam_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_unbindkeyprovider", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/messageRouter.depackageSeam.test.ts", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_messagerouter_depackageseam_test_eml", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/messageRouter.ingestTransaction.test.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_messagerouter_ingesttransaction_test", + "target": "apps_electron_vite_project_electron_main_email_messagerouter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/messageRouter.ingestTransaction.test.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_messagerouter_ingesttransaction_test", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_detectandroutemessage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/messageRouter.ingestTransaction.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_messagerouter_ingesttransaction_test", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_makeinboxattachmentstorageid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/messageRouter.ingestTransaction.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_messagerouter_ingesttransaction_test", + "target": "apps_electron_vite_project_electron_main_email_tests_messagerouter_ingesttransaction_test_buildvalidsealforrowid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/messageRouter.ingestTransaction.test.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_messagerouter_ingesttransaction_test", + "target": "apps_electron_vite_project_electron_main_email_tests_messagerouter_ingesttransaction_test_createtestdb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/messageRouter.ingestTransaction.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_messagerouter_ingesttransaction_test", + "target": "apps_electron_vite_project_electron_main_email_tests_messagerouter_ingesttransaction_test_require", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/messageRouter.ingestTransaction.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_messagerouter_ingesttransaction_test", + "target": "apps_electron_vite_project_electron_main_email_tests_messagerouter_ingesttransaction_test_test_dek", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/messageRouter.ingestTransaction.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_messagerouter_ingesttransaction_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/messageRouter.ingestTransaction.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_messagerouter_ingesttransaction_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_bindkeyprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/messageRouter.ingestTransaction.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_messagerouter_ingesttransaction_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_cleartamperingevents", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/messageRouter.ingestTransaction.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_messagerouter_ingesttransaction_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_unbindkeyprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/oauthScopeSplit.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_oauthscopesplit_test", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/oauthScopeSplit.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_oauthscopesplit_test", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_gmail_all_scopes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/oauthScopeSplit.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_oauthscopesplit_test", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_gmail_read_scopes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/oauthScopeSplit.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_oauthscopesplit_test", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_gmail_send_scopes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/oauthScopeSplit.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_oauthscopesplit_test", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_imapcredentialfieldforrole", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/oauthScopeSplit.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_oauthscopesplit_test", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_outlook_all_scopes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/oauthScopeSplit.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_oauthscopesplit_test", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_outlook_read_scopes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/oauthScopeSplit.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_oauthscopesplit_test", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_outlook_send_scopes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/oauthScopeSplit.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_oauthscopesplit_test", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_resolveoauthscopes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/oauthScopeSplit.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_oauthscopesplit_test", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_resolveoauthscopestring", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/oauthScopeSplit.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_oauthscopesplit_test", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_scopesetcanmodify", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/oauthScopeSplit.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_oauthscopesplit_test", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_scopesetcanread", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/oauthScopeSplit.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_oauthscopesplit_test", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_scopesetcansend", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/opaqueIngestion.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_opaqueingestion_test", + "target": "apps_electron_vite_project_electron_main_email_inlineparseguard", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/opaqueIngestion.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_opaqueingestion_test", + "target": "apps_electron_vite_project_electron_main_email_inlineparseguard_assertnoinlineparse", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/opaqueIngestion.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_opaqueingestion_test", + "target": "apps_electron_vite_project_electron_main_email_inlineparseguard_inlineparseforbiddenerror", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/opaqueIngestion.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_opaqueingestion_test", + "target": "apps_electron_vite_project_electron_main_email_opaqueingestion", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/opaqueIngestion.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_opaqueingestion_test", + "target": "apps_electron_vite_project_electron_main_email_opaqueingestion_haslinkeddepackagesandbox", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/opaqueIngestion.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_opaqueingestion_test", + "target": "apps_electron_vite_project_electron_main_email_opaqueingestion_isopaqueingestionactive", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/opaqueIngestion.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_opaqueingestion_test", + "target": "apps_electron_vite_project_electron_main_email_opaqueingestion_resetopaqueingestioncachefortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/opaqueIngestion.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_opaqueingestion_test", + "target": "apps_electron_vite_project_electron_main_email_tests_opaqueingestion_test_clearenv", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/opaqueIngestion.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_opaqueingestion_test_clearenv", + "target": "apps_electron_vite_project_electron_main_email_opaqueingestion_resetopaqueingestioncachefortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/originMailboxDelete.regression.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_originmailboxdelete_regression_test", + "target": "apps_electron_vite_project_electron_main_email_originmailboxdelete", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/originMailboxDelete.regression.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_originmailboxdelete_regression_test", + "target": "apps_electron_vite_project_electron_main_email_originmailboxdelete_trashonoriginafterlocaldelete", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/originMailboxDelete.regression.test.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_originmailboxdelete_regression_test", + "target": "apps_electron_vite_project_electron_main_email_originmailboxdeletecapability", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/originMailboxDelete.regression.test.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_originmailboxdelete_regression_test", + "target": "apps_electron_vite_project_electron_main_email_originmailboxdeletecapability_assessorigindeletecapability", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/originMailboxDelete.regression.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_originmailboxdelete_regression_test", + "target": "apps_electron_vite_project_electron_main_email_tests_originmailboxdelete_regression_test_deletemessagemock_getaccountconfigmock_iseffectivesandboxnodemock_loadrolescopedtokensmock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/originMailboxDelete.regression.test.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_originmailboxdelete_regression_test", + "target": "apps_electron_vite_project_electron_main_email_tests_originmailboxdelete_regression_test_makedb", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/outlookOpaqueFailClosed.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_outlookopaquefailclosed_test", + "target": "apps_electron_vite_project_electron_main_email_opaqueingestion", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/outlookOpaqueFailClosed.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_outlookopaquefailclosed_test", + "target": "apps_electron_vite_project_electron_main_email_opaqueingestion_resetopaqueingestioncachefortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/outlookOpaqueFailClosed.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_outlookopaquefailclosed_test", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/outlookOpaqueFailClosed.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_outlookopaquefailclosed_test", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookopaqueunprovenerror", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/outlookOpaqueFailClosed.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_outlookopaquefailclosed_test", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/outlookOpaqueFailClosed.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_outlookopaquefailclosed_test", + "target": "apps_electron_vite_project_electron_main_email_tests_outlookopaquefailclosed_test_clearenv", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/outlookOpaqueFailClosed.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_outlookopaquefailclosed_test_clearenv", + "target": "apps_electron_vite_project_electron_main_email_opaqueingestion_resetopaqueingestioncachefortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/outlookRfc822Fidelity.test.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_outlookrfc822fidelity_test", + "target": "apps_electron_vite_project_electron_main_email_opaqueingestion", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/outlookRfc822Fidelity.test.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_outlookrfc822fidelity_test", + "target": "apps_electron_vite_project_electron_main_email_opaqueingestion_resetopaqueingestioncachefortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/outlookRfc822Fidelity.test.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_outlookrfc822fidelity_test", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/outlookRfc822Fidelity.test.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_outlookrfc822fidelity_test", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/outlookRfc822Fidelity.test.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_outlookrfc822fidelity_test", + "target": "apps_electron_vite_project_electron_main_email_tests_outlookrfc822fidelity_test_attach_b64", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/outlookRfc822Fidelity.test.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_outlookrfc822fidelity_test", + "target": "apps_electron_vite_project_electron_main_email_tests_outlookrfc822fidelity_test_binary_payload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/outlookRfc822Fidelity.test.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_outlookrfc822fidelity_test", + "target": "apps_electron_vite_project_electron_main_email_tests_outlookrfc822fidelity_test_clearenv", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/outlookRfc822Fidelity.test.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_outlookrfc822fidelity_test", + "target": "apps_electron_vite_project_electron_main_email_tests_outlookrfc822fidelity_test_makeprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/outlookRfc822Fidelity.test.ts", + "source_location": "L322", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_outlookrfc822fidelity_test", + "target": "apps_electron_vite_project_electron_main_email_tests_outlookrfc822fidelity_test_makerigprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/outlookRfc822Fidelity.test.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_outlookrfc822fidelity_test", + "target": "apps_electron_vite_project_electron_main_email_tests_outlookrfc822fidelity_test_mockgraphonprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/outlookRfc822Fidelity.test.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_outlookrfc822fidelity_test", + "target": "apps_electron_vite_project_electron_main_email_tests_outlookrfc822fidelity_test_pdf_magic", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/outlookRfc822Fidelity.test.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_outlookrfc822fidelity_test", + "target": "apps_electron_vite_project_electron_main_email_tests_outlookrfc822fidelity_test_rfc822_multipart", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/outlookRfc822Fidelity.test.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_outlookrfc822fidelity_test", + "target": "apps_electron_vite_project_electron_main_email_tests_outlookrfc822fidelity_test_rfc822_nonascii_header", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/outlookRfc822Fidelity.test.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_outlookrfc822fidelity_test", + "target": "apps_electron_vite_project_electron_main_email_tests_outlookrfc822fidelity_test_rfc822_simple", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/outlookRfc822Fidelity.test.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_outlookrfc822fidelity_test", + "target": "apps_electron_vite_project_electron_main_email_tests_outlookrfc822fidelity_test_setopaqueinput", + "confidence_score": 1.0 + }, + { + "relation": "cites", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/outlookRfc822Fidelity.test.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_outlookrfc822fidelity_test", + "target": "apps_electron_vite_project_electron_main_email_tests_outlookrfc822fidelity_test_ts_docref_rfc_2047", + "confidence_score": 1.0 + }, + { + "relation": "cites", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/outlookRfc822Fidelity.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_outlookrfc822fidelity_test", + "target": "apps_electron_vite_project_electron_main_email_tests_outlookrfc822fidelity_test_ts_docref_rfc_5322", + "confidence_score": 1.0 + }, + { + "relation": "cites", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/outlookRfc822Fidelity.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_outlookrfc822fidelity_test", + "target": "apps_electron_vite_project_electron_main_email_tests_outlookrfc822fidelity_test_ts_docref_rfc_822", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/outlookRfc822Fidelity.test.ts", + "source_location": "L285", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_outlookrfc822fidelity_test_rationale_285", + "target": "apps_electron_vite_project_electron_main_email_tests_outlookrfc822fidelity_test", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/outlookRfc822Fidelity.test.ts", + "source_location": "L345", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_outlookrfc822fidelity_test_rationale_345", + "target": "apps_electron_vite_project_electron_main_email_tests_outlookrfc822fidelity_test", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/outlookRfc822Fidelity.test.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_outlookrfc822fidelity_test_setopaqueinput", + "target": "apps_electron_vite_project_electron_main_email_opaqueingestion_resetopaqueingestioncachefortests", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/outlookRfc822Fidelity.test.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_outlookrfc822fidelity_test_clearenv", + "target": "apps_electron_vite_project_electron_main_email_opaqueingestion_resetopaqueingestioncachefortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapTrustPersistence.regression.test.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pbeaptrustpersistence_regression_test", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapTrustPersistence.regression.test.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pbeaptrustpersistence_regression_test", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_processbeappackageinline", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapTrustPersistence.regression.test.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pbeaptrustpersistence_regression_test", + "target": "apps_electron_vite_project_electron_main_email_messagerouter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapTrustPersistence.regression.test.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pbeaptrustpersistence_regression_test", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_detectandroutemessageinline", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapTrustPersistence.regression.test.ts", + "source_location": "L185", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pbeaptrustpersistence_regression_test", + "target": "apps_electron_vite_project_electron_main_email_tests_pbeaptrustpersistence_regression_test_ingestemail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapTrustPersistence.regression.test.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pbeaptrustpersistence_regression_test", + "target": "apps_electron_vite_project_electron_main_email_tests_pbeaptrustpersistence_regression_test_lesser", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapTrustPersistence.regression.test.ts", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pbeaptrustpersistence_regression_test", + "target": "apps_electron_vite_project_electron_main_email_tests_pbeaptrustpersistence_regression_test_makepbeappackage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapTrustPersistence.regression.test.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pbeaptrustpersistence_regression_test", + "target": "apps_electron_vite_project_electron_main_email_tests_pbeaptrustpersistence_regression_test_maketestdb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapTrustPersistence.regression.test.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pbeaptrustpersistence_regression_test", + "target": "apps_electron_vite_project_electron_main_email_tests_pbeaptrustpersistence_regression_test_mockvalidator", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapTrustPersistence.regression.test.ts", + "source_location": "L152", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pbeaptrustpersistence_regression_test", + "target": "apps_electron_vite_project_electron_main_email_tests_pbeaptrustpersistence_regression_test_readmeta", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapTrustPersistence.regression.test.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pbeaptrustpersistence_regression_test", + "target": "apps_electron_vite_project_electron_main_email_tests_pbeaptrustpersistence_regression_test_require", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapTrustPersistence.regression.test.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pbeaptrustpersistence_regression_test", + "target": "apps_electron_vite_project_electron_main_email_tests_pbeaptrustpersistence_regression_test_test_dek", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapTrustPersistence.regression.test.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pbeaptrustpersistence_regression_test", + "target": "apps_electron_vite_project_electron_main_email_tests_pbeaptrustpersistence_regression_test_verified_bound", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapTrustPersistence.regression.test.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pbeaptrustpersistence_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapTrustPersistence.regression.test.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pbeaptrustpersistence_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_db_migratehandshaketables", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapTrustPersistence.regression.test.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pbeaptrustpersistence_regression_test", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapTrustPersistence.regression.test.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pbeaptrustpersistence_regression_test", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_migrateingestiontables", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapTrustPersistence.regression.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pbeaptrustpersistence_regression_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapTrustPersistence.regression.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pbeaptrustpersistence_regression_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_bindkeyprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapTrustPersistence.regression.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pbeaptrustpersistence_regression_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_cleartamperingevents", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapTrustPersistence.regression.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pbeaptrustpersistence_regression_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_gettamperingevents", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapTrustPersistence.regression.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pbeaptrustpersistence_regression_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedquery", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapTrustPersistence.regression.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pbeaptrustpersistence_regression_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_unbindkeyprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapTrustPersistence.regression.test.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pbeaptrustpersistence_regression_test", + "target": "apps_electron_vite_project_src_lib_inboxbeaproweligibility", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapTrustPersistence.regression.test.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pbeaptrustpersistence_regression_test", + "target": "apps_electron_vite_project_src_lib_inboxbeaproweligibility_depackagedformatfromjson", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapTrustPersistence.regression.test.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pbeaptrustpersistence_regression_test_maketestdb", + "target": "apps_electron_vite_project_electron_main_handshake_db_migratehandshaketables", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapTrustPersistence.regression.test.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pbeaptrustpersistence_regression_test_maketestdb", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_migrateingestiontables", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapTrustPersistence.regression.test.ts", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pbeaptrustpersistence_regression_test_ingestemail", + "target": "apps_electron_vite_project_electron_main_email_tests_pbeaptrustpersistence_regression_test_makepbeappackage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapTrustPersistence.regression.test.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pbeaptrustpersistence_regression_test_makepbeappackage", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapTrustPersistence.regression.test.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pbeaptrustpersistence_regression_test_mockvalidator", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapTrustPersistence.regression.test.ts", + "source_location": "L195", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pbeaptrustpersistence_regression_test_ingestemail", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_detectandroutemessageinline" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapValidation.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pbeapvalidation_test", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapValidation.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pbeapvalidation_test", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_extractpbeapcapsule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapValidation.test.ts", + "source_location": "L144", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pbeapvalidation_test", + "target": "apps_electron_vite_project_electron_main_email_tests_pbeapvalidation_test_getrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapValidation.test.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pbeapvalidation_test", + "target": "apps_electron_vite_project_electron_main_email_tests_pbeapvalidation_test_makedb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapValidation.test.ts", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pbeapvalidation_test", + "target": "apps_electron_vite_project_electron_main_email_tests_pbeapvalidation_test_makepbeappackage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapValidation.test.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pbeapvalidation_test", + "target": "apps_electron_vite_project_electron_main_email_tests_pbeapvalidation_test_require", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapValidation.test.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pbeapvalidation_test", + "target": "apps_electron_vite_project_electron_main_email_tests_pbeapvalidation_test_seedp2p", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapValidation.test.ts", + "source_location": "L176", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pbeapvalidation_test", + "target": "apps_electron_vite_project_electron_main_email_tests_pbeapvalidation_test_validartefact", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pbeapValidation.test.ts", + "source_location": "L151", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pbeapvalidation_test_makepbeappackage", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pr22SecurityDeferrals.test.ts", + "source_location": "L252", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pr22securitydeferrals_test", + "target": "apps_electron_vite_project_electron_main_email_tests_pr22securitydeferrals_test_cs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pr22SecurityDeferrals.test.ts", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pr22securitydeferrals_test", + "target": "apps_electron_vite_project_electron_main_email_tests_pr22securitydeferrals_test_getrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pr22SecurityDeferrals.test.ts", + "source_location": "L243", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pr22securitydeferrals_test", + "target": "apps_electron_vite_project_electron_main_email_tests_pr22securitydeferrals_test_init", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pr22SecurityDeferrals.test.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pr22securitydeferrals_test", + "target": "apps_electron_vite_project_electron_main_email_tests_pr22securitydeferrals_test_makedb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pr22SecurityDeferrals.test.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pr22securitydeferrals_test", + "target": "apps_electron_vite_project_electron_main_email_tests_pr22securitydeferrals_test_makeoutboundqbeappackage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pr22SecurityDeferrals.test.ts", + "source_location": "L231", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pr22securitydeferrals_test", + "target": "apps_electron_vite_project_electron_main_email_tests_pr22securitydeferrals_test_msgpkg", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pr22SecurityDeferrals.test.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pr22securitydeferrals_test", + "target": "apps_electron_vite_project_electron_main_email_tests_pr22securitydeferrals_test_require", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pr22SecurityDeferrals.test.ts", + "source_location": "L281", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pr22securitydeferrals_test", + "target": "apps_electron_vite_project_electron_main_email_tests_pr22securitydeferrals_test_runscript", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pr22SecurityDeferrals.test.ts", + "source_location": "L157", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pr22securitydeferrals_test", + "target": "apps_electron_vite_project_electron_main_email_tests_pr22securitydeferrals_test_seedinboxandpending", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pr51DepackagerDeterminism.test.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pr51depackagerdeterminism_test", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pr51DepackagerDeterminism.test.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pr51depackagerdeterminism_test", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_beappackagetomainprocessdepackaged", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pr51DepackagerDeterminism.test.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pr51depackagerdeterminism_test", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_buildoutboundqbeapdepackagedjson", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pr51DepackagerDeterminism.test.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pr51depackagerdeterminism_test", + "target": "apps_electron_vite_project_electron_main_email_tests_pr51depackagerdeterminism_test_getartefactsessionrefs", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pr51DepackagerDeterminism.test.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pr51depackagerdeterminism_test", + "target": "apps_electron_vite_project_src_lib_inboxbeaproweligibility", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pr51DepackagerDeterminism.test.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pr51depackagerdeterminism_test", + "target": "apps_electron_vite_project_src_lib_inboxbeaproweligibility_depackagedformatfromjson", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pr52CloneDeterminism.test.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pr52clonedeterminism_test", + "target": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pr52CloneDeterminism.test.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pr52clonedeterminism_test", + "target": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_preparebeapinboxsandboxclone", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pr52CloneDeterminism.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pr52clonedeterminism_test", + "target": "apps_electron_vite_project_electron_main_email_tests_pr52clonedeterminism_test_listavailableinternalsandboxes_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pr52CloneDeterminism.test.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pr52clonedeterminism_test", + "target": "apps_electron_vite_project_electron_main_email_tests_pr52clonedeterminism_test_makedb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pr52CloneDeterminism.test.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pr52clonedeterminism_test", + "target": "apps_electron_vite_project_electron_main_email_tests_pr52clonedeterminism_test_makeeligibleentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pr52CloneDeterminism.test.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pr52clonedeterminism_test", + "target": "apps_electron_vite_project_electron_main_email_tests_pr52clonedeterminism_test_makehandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pr52CloneDeterminism.test.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pr52clonedeterminism_test", + "target": "apps_electron_vite_project_electron_main_email_tests_pr52clonedeterminism_test_makesession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pr52CloneDeterminism.test.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pr52clonedeterminism_test", + "target": "apps_electron_vite_project_electron_main_email_tests_pr52clonedeterminism_test_mockhappylist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pr52CloneDeterminism.test.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pr52clonedeterminism_test", + "target": "apps_electron_vite_project_electron_main_email_tests_pr52clonedeterminism_test_session", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pr52CloneDeterminism.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pr52clonedeterminism_test", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pr52CloneDeterminism.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pr52clonedeterminism_test", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_internalsandboxlistentry", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pr52CloneDeterminism.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pr52clonedeterminism_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pr52CloneDeterminism.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pr52clonedeterminism_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pr52CloneDeterminism.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pr52clonedeterminism_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/pr52CloneDeterminism.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_pr52clonedeterminism_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_ssosession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/readConsentScopeGuard.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_readconsentscopeguard_test", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/readConsentScopeGuard.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_readconsentscopeguard_test", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_gmail_read_scopes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/readConsentScopeGuard.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_readconsentscopeguard_test", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_outlook_read_scopes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/readConsentScopeGuard.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_readconsentscopeguard_test", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_resolveoauthscopes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/readConsentScopeGuard.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_readconsentscopeguard_test", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_scopesetcanmodify", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/readConsentScopeGuard.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_readconsentscopeguard_test", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_scopesetcansend", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/readConsentScopeGuard.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_readconsentscopeguard_test_rationale_20", + "target": "apps_electron_vite_project_electron_main_email_tests_readconsentscopeguard_test", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/remoteDeletion.orphanAccount.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_remotedeletion_orphanaccount_test", + "target": "apps_electron_vite_project_electron_main_email_gatewayorphanaccounterror", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/remoteDeletion.orphanAccount.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_remotedeletion_orphanaccount_test", + "target": "apps_electron_vite_project_electron_main_email_gatewayorphanaccounterror_isgatewayorphanaccounterror", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/roleAwareConsent.test.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_roleawareconsent_test", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/roleAwareConsent.test.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_roleawareconsent_test", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_gmail_read_scopes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/roleAwareConsent.test.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_roleawareconsent_test", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_gmail_send_scopes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/roleAwareConsent.test.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_roleawareconsent_test", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_outlook_read_scopes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/roleAwareConsent.test.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_roleawareconsent_test", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_outlook_send_scopes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/roleAwareConsent.test.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_roleawareconsent_test", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_scopesetcanread", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/roleAwareConsent.test.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_roleawareconsent_test", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_scopesetcansend", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/roleAwareConsent.test.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_roleawareconsent_test", + "target": "apps_electron_vite_project_electron_main_email_roleawareconsent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/roleAwareConsent.test.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_roleawareconsent_test", + "target": "apps_electron_vite_project_electron_main_email_roleawareconsent_connectreadclient", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/roleAwareConsent.test.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_roleawareconsent_test", + "target": "apps_electron_vite_project_electron_main_email_roleawareconsent_connectsendclient", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/roleAwareConsent.test.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_roleawareconsent_test", + "target": "apps_electron_vite_project_electron_main_email_roleawareconsent_plannedscopesforrole", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/roleAwareConsent.test.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_roleawareconsent_test", + "target": "apps_electron_vite_project_electron_main_email_roleawareconsent_runrolescopedconsent", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/roleAwareConsent.test.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_roleawareconsent_test", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/roleAwareConsent.test.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_roleawareconsent_test", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_hasrolescopedtokens", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/roleAwareConsent.test.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_roleawareconsent_test", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_loadrolescopedtokens", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/roleAwareConsent.test.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_roleawareconsent_test", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_setroletokenstorebasedirfortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/roleAwareConsent.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_roleawareconsent_test", + "target": "apps_electron_vite_project_electron_main_email_tests_roleawareconsent_test_iseffectivesandbox", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/roleAwareConsent.test.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_roleawareconsent_test", + "target": "apps_electron_vite_project_electron_main_email_tests_roleawareconsent_test_securestorageunavailableerror", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/roleScopedTokenStore.test.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_rolescopedtokenstore_test", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/roleScopedTokenStore.test.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_rolescopedtokenstore_test", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_deleterolescopedtokens", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/roleScopedTokenStore.test.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_rolescopedtokenstore_test", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_hasrolescopedtokens", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/roleScopedTokenStore.test.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_rolescopedtokenstore_test", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_listrolescopedtokenroles", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/roleScopedTokenStore.test.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_rolescopedtokenstore_test", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_loadrolescopedtokens", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/roleScopedTokenStore.test.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_rolescopedtokenstore_test", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_migraterolescopedtokens", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/roleScopedTokenStore.test.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_rolescopedtokenstore_test", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_saverolescopedtokens", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/roleScopedTokenStore.test.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_rolescopedtokenstore_test", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_setroletokenstorebasedirfortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/roleScopedTokenStore.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_rolescopedtokenstore_test", + "target": "apps_electron_vite_project_electron_main_email_tests_rolescopedtokenstore_test_securestorageunavailableerror", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/sandboxCloneInboxFilter.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_sandboxcloneinboxfilter_test", + "target": "apps_electron_vite_project_electron_main_email_inboxwhereclause", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/sandboxCloneInboxFilter.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_sandboxcloneinboxfilter_test", + "target": "apps_electron_vite_project_electron_main_email_inboxwhereclause_buildinboxmessageswhereclause", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/sandboxCloneInboxFilter.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_sandboxcloneinboxfilter_test", + "target": "apps_electron_vite_project_electron_main_email_sandboxcloneinboxfilter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/sandboxCloneInboxFilter.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_sandboxcloneinboxfilter_test", + "target": "apps_electron_vite_project_electron_main_email_sandboxcloneinboxfilter_ispersistedinboxrowsandboxclone", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/sandboxCloneInboxFilter.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_sandboxcloneinboxfilter_test", + "target": "apps_electron_vite_project_electron_main_email_sandboxcloneinboxfilter_sandbox_clone_inbox_body_banner", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/sandboxCloneInboxFilter.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_sandboxcloneinboxfilter_test", + "target": "apps_electron_vite_project_electron_main_email_sandboxcloneinboxfilter_sandboxcloneinboxsqlpredicate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/sandboxCloneInboxFilter.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_sandboxcloneinboxfilter_test", + "target": "apps_electron_vite_project_electron_main_email_tests_sandboxcloneinboxfilter_test_issandboxmode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/sandboxCloneReceiveDisplay.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_sandboxclonereceivedisplay_test", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/sandboxCloneReceiveDisplay.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_sandboxclonereceivedisplay_test", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_applydecryptedqbeaptoinboxpreview", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/sandboxCloneReceiveDisplay.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_sandboxclonereceivedisplay_test", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_buildemailstyledepackagedjsonfromdecrypt", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/sandboxCloneReceiveDisplay.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_sandboxclonereceivedisplay_test", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_stripsandboxcloneleadinbodytext", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/sandboxEmailFetch.oauth.test.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_sandboxemailfetch_oauth_test", + "target": "apps_electron_vite_project_electron_main_email_credentials", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/sandboxEmailFetch.oauth.test.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_sandboxemailfetch_oauth_test", + "target": "apps_electron_vite_project_electron_main_email_credentials_getcredentialsforoauth", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/sandboxEmailFetch.oauth.test.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_sandboxemailfetch_oauth_test", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/sandboxEmailFetch.oauth.test.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_sandboxemailfetch_oauth_test", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolvebuiltingoogleoauthclientsecret", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/sandboxEmailFetch.oauth.test.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_sandboxemailfetch_oauth_test", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolvebuiltingoogleoauthclientwithmeta", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/sandboxEmailFetch.oauth.test.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_sandboxemailfetch_oauth_test", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/sandboxEmailFetch.oauth.test.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_sandboxemailfetch_oauth_test", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_rolescopedtokenrecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/sandboxEmailFetch.oauth.test.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_sandboxemailfetch_oauth_test", + "target": "apps_electron_vite_project_electron_main_email_sandboxemailfetch", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/sandboxEmailFetch.oauth.test.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_sandboxemailfetch_oauth_test", + "target": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_oauthconfigfromrolescopedreadrecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/sandboxEmailFetch.oauth.test.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_sandboxemailfetch_oauth_test", + "target": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_resolveoauthforsandboxreadfetch", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/sandboxEmailFetch.oauth.test.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_sandboxemailfetch_oauth_test", + "target": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_wiresandboxreadprovidertokenrefresh", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/sandboxEmailFetch.oauth.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_sandboxemailfetch_oauth_test", + "target": "apps_electron_vite_project_electron_main_email_tests_sandboxemailfetch_oauth_test_loadrolescopedtokens", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/sandboxEmailFetch.oauth.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_sandboxemailfetch_oauth_test", + "target": "apps_electron_vite_project_electron_main_email_tests_sandboxemailfetch_oauth_test_saverolescopedtokens", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/sandboxIngestionProduction.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_sandboxingestionproduction_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/sandboxIngestionProduction.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_sandboxingestionproduction_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_ingestionownership", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/sandboxIngestionProduction.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_sandboxingestionproduction_test", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/sandboxIngestionProduction.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_sandboxingestionproduction_test", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_rolescopedtokenrecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/sandboxIngestionProduction.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_sandboxingestionproduction_test", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestion", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/sandboxIngestionProduction.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_sandboxingestionproduction_test", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestion_sandboxfetchedmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/sandboxIngestionProduction.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_sandboxingestionproduction_test", + "target": "apps_electron_vite_project_electron_main_email_secure_storage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/sandboxIngestionProduction.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_sandboxingestionproduction_test", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_oauthtokens", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/sandboxIngestionProduction.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_sandboxingestionproduction_test", + "target": "apps_electron_vite_project_electron_main_email_tests_sandboxingestionproduction_test_h", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/sandboxIngestionProduction.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_sandboxingestionproduction_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/sandboxIngestionProduction.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_sandboxingestionproduction_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/scamWatchdog.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_scamwatchdog_test", + "target": "apps_electron_vite_project_electron_main_email_scamwatchdog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/scamWatchdog.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_scamwatchdog_test", + "target": "apps_electron_vite_project_electron_main_email_scamwatchdog_appendscamwatchdogtosystemprompt", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/scamWatchdog.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_scamwatchdog_test", + "target": "apps_electron_vite_project_electron_main_email_scamwatchdog_buildscamwatchdogusercontext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/scamWatchdog.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_scamwatchdog_test", + "target": "apps_electron_vite_project_electron_main_email_scamwatchdog_extractscamwatchdoglinkstrings", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/scamWatchdog.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_scamwatchdog_test", + "target": "apps_electron_vite_project_electron_main_email_scamwatchdog_scam_watchdog_json_keys", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/scamWatchdog.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_scamwatchdog_test", + "target": "apps_electron_vite_project_electron_main_email_scamwatchdog_scam_watchdog_prompt_section", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/setupFlow.topologyCondition.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_setupflow_topologycondition_test", + "target": "apps_electron_vite_project_electron_main_email_tests_setupflow_topologycondition_test_makeownershipdeps", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/syncOrchestrator.ingestionGate.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_syncorchestrator_ingestiongate_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/syncOrchestrator.ingestionGate.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_syncorchestrator_ingestiongate_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_ingestionownership", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/syncOrchestrator.ingestionGate.test.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_syncorchestrator_ingestiongate_test", + "target": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/syncOrchestrator.ingestionGate.test.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_syncorchestrator_ingestiongate_test", + "target": "apps_electron_vite_project_electron_main_email_syncorchestrator_syncaccountemails", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/syncOrchestrator.ingestionGate.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_syncorchestrator_ingestiongate_test", + "target": "apps_electron_vite_project_electron_main_email_tests_syncorchestrator_ingestiongate_test_getaccount", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/syncOrchestrator.ingestionGate.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_syncorchestrator_ingestiongate_test", + "target": "apps_electron_vite_project_electron_main_email_tests_syncorchestrator_ingestiongate_test_getaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/syncOrchestrator.ingestionGate.test.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_syncorchestrator_ingestiongate_test", + "target": "apps_electron_vite_project_electron_main_email_tests_syncorchestrator_ingestiongate_test_hostreadpollforbiddenerror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/syncOrchestrator.ingestionGate.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_syncorchestrator_ingestiongate_test", + "target": "apps_electron_vite_project_electron_main_email_tests_syncorchestrator_ingestiongate_test_hosttriggermock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/syncOrchestrator.ingestionGate.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_syncorchestrator_ingestiongate_test", + "target": "apps_electron_vite_project_electron_main_email_tests_syncorchestrator_ingestiongate_test_ownershipstate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/syncOrchestrator.processingPaused.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_syncorchestrator_processingpaused_test", + "target": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/syncOrchestrator.processingPaused.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_syncorchestrator_processingpaused_test", + "target": "apps_electron_vite_project_electron_main_email_syncorchestrator_syncaccountemails", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/syncOrchestrator.processingPaused.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_syncorchestrator_processingpaused_test", + "target": "apps_electron_vite_project_electron_main_email_tests_syncorchestrator_processingpaused_test_getaccount", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/syncOrchestrator.processingPaused.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_syncorchestrator_processingpaused_test", + "target": "apps_electron_vite_project_electron_main_email_tests_syncorchestrator_processingpaused_test_getaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/userDataBootstrapPersistence.test.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_userdatabootstrappersistence_test", + "target": "apps_electron_vite_project_electron_main_email_tests_userdatabootstrappersistence_test_applycustomuserdatapath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/userDataBootstrapPersistence.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_userdatabootstrappersistence_test", + "target": "apps_electron_vite_project_electron_main_email_tests_userdatabootstrappersistence_test_electronmockstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/userDataBootstrapPersistence.test.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_userdatabootstrappersistence_test", + "target": "apps_electron_vite_project_electron_main_email_tests_userdatabootstrappersistence_test_installelectronmock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/userDataBootstrapPersistence.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_userdatabootstrappersistence_test", + "target": "apps_electron_vite_project_electron_main_email_tests_userdatabootstrappersistence_test_makeelectronmock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/userDataBootstrapPersistence.test.ts", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_userdatabootstrappersistence_test", + "target": "apps_electron_vite_project_electron_main_email_tests_userdatabootstrappersistence_test_runbootstrapmodule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/userDataBootstrapPersistence.test.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_userdatabootstrappersistence_test", + "target": "apps_electron_vite_project_electron_main_email_tests_userdatabootstrappersistence_test_writeemailaccountsfixture", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/userDataBootstrapPersistence.test.ts", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_userdatabootstrappersistence_test_installelectronmock", + "target": "apps_electron_vite_project_electron_main_email_tests_userdatabootstrappersistence_test_makeelectronmock", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/userDataBootstrapPersistence.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_userdatabootstrappersistence_test_makeelectronmock", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/__tests__/userDataBootstrapPersistence.test.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_tests_userdatabootstrappersistence_test_applycustomuserdatapath", + "target": "apps_electron_vite_project_electron_userdatabootstrapstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/accountDeletePersistence.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_accountdeletepersistence", + "target": "apps_electron_vite_project_electron_main_email_accountdeletepersistence_accountledgerpurgeresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/accountDeletePersistence.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_accountdeletepersistence", + "target": "apps_electron_vite_project_electron_main_email_accountdeletepersistence_purgeaccountledgerstate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_accountdeletepersistence", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_accountdeletepersistence_purgeaccountledgerstate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1230", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_deleteaccount", + "target": "apps_electron_vite_project_electron_main_email_accountdeletepersistence_purgeaccountledgerstate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/attachmentBlobCrypto.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto", + "target": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto_attachmentrowcrypto", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/attachmentBlobCrypto.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto", + "target": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto_decryptblob", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/attachmentBlobCrypto.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto", + "target": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto_encryptblob", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/attachmentBlobCrypto.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto", + "target": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto_encryptedwriteresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/attachmentBlobCrypto.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto", + "target": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto_getattachmentsbasepath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/attachmentBlobCrypto.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto", + "target": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto_readdecryptedattachmentbuffer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/attachmentBlobCrypto.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto", + "target": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto_sanitizefilename", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/attachmentBlobCrypto.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto", + "target": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto_writeencryptedattachmentfile", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/attachmentBlobCrypto.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto", + "target": "apps_electron_vite_project_electron_main_email_secure_storage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/attachmentBlobCrypto.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_decryptvalue", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/attachmentBlobCrypto.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_encryptvalue", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L313", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged", + "target": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/attachmentBlobCrypto.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto_encryptblob", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/attachmentBlobCrypto.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto_writeencryptedattachmentfile", + "target": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto_encryptblob", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/attachmentBlobCrypto.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto_decryptblob", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/attachmentBlobCrypto.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto_readdecryptedattachmentbuffer", + "target": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto_decryptblob", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/attachmentBlobCrypto.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto_writeencryptedattachmentfile", + "target": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto_sanitizefilename", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/attachmentBlobCrypto.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto_writeencryptedattachmentfile", + "target": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto_getattachmentsbasepath", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/attachmentBlobCrypto.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto_writeencryptedattachmentfile", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/attachmentBlobCrypto.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto_writeencryptedattachmentfile", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_encryptvalue" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged", + "target": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto_writeencryptedattachmentfile", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L448", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged_mergeextensiondepackaged", + "target": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto_writeencryptedattachmentfile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto_writeencryptedattachmentfile", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L502", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_detectandroutemessageinline", + "target": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto_writeencryptedattachmentfile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L313", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto_attachmentrowcrypto", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/attachmentBlobCrypto.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto_readdecryptedattachmentbuffer", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/attachmentBlobCrypto.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto_readdecryptedattachmentbuffer", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_decryptvalue" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L313", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto_readdecryptedattachmentbuffer", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L3801", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_attachmentblobcrypto_readdecryptedattachmentbuffer" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/autoSyncLoopRegistry.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_autosyncloopregistry", + "target": "apps_electron_vite_project_electron_main_email_autosyncloopregistry_activeautosyncloops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/autoSyncLoopRegistry.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_autosyncloopregistry", + "target": "apps_electron_vite_project_electron_main_email_autosyncloopregistry_clearautosyncloopsfortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/autoSyncLoopRegistry.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_autosyncloopregistry", + "target": "apps_electron_vite_project_electron_main_email_autosyncloopregistry_hasautosyncloop", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/autoSyncLoopRegistry.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_autosyncloopregistry", + "target": "apps_electron_vite_project_electron_main_email_autosyncloopregistry_registerautosyncloop", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/autoSyncLoopRegistry.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_autosyncloopregistry", + "target": "apps_electron_vite_project_electron_main_email_autosyncloopregistry_stopautosyncloopforaccount", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_autosyncloopregistry", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L549", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_autosyncloopregistry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L549", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_autosyncloopregistry_registerautosyncloop", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L660", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_startstoredautosyncloopifmissing", + "target": "apps_electron_vite_project_electron_main_email_autosyncloopregistry_registerautosyncloop", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_autosyncloopregistry_stopautosyncloopforaccount", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1199", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_deleteaccount", + "target": "apps_electron_vite_project_electron_main_email_autosyncloopregistry_stopautosyncloopforaccount" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L549", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_autosyncloopregistry_stopautosyncloopforaccount", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L3240", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_autosyncloopregistry_stopautosyncloopforaccount" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L549", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_autosyncloopregistry_hasautosyncloop", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L648", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_startstoredautosyncloopifmissing", + "target": "apps_electron_vite_project_electron_main_email_autosyncloopregistry_hasautosyncloop", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L397", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_applydecryptedqbeaptoinboxpreview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L456", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_beapdepackagedpair", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L461", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_beappackagetomainprocessdepackaged", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L418", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_buildemailstyledepackagedjsonfromdecrypt", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_buildoutboundqbeapdepackagedjson", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L685", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_buildp2pprovenance", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L283", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_ensureinboxattachmentsfrombeappackagejson", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L187", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_extractattachmentsfrombeappackagejson", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L326", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_extractp2pbeapinboxpreview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L1663", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_extractpbeapcapsule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_finalizedirectbeapinboxpersistence", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L1677", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_formatbeapinboxdberror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L161", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_gethandshakepartyemails", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L437", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_inboxrowfallback", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_isoutboundqbeapecho", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L634", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_p2pinboxplaceholderparams", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L705", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_p2pinboxwriteparams", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L677", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_p2pinlineresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L771", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_p2pquarantinewriteparams", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L1353", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_processbeappackageinline", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L977", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_processbeappackageinlineinternal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L1688", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_processpendingp2pbeapemails", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L1381", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_processsandboxquarantinereceive", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L893", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_processsandboxquarantinereceiveinternal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_reportqbeapdecryptfailure", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L1567", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_retrypendinginboxplaceholders", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L1433", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_retrypendingqbeapdecrypt", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L386", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_stripsandboxcloneleadinbodytext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L645", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_writep2pinboxplaceholder", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L726", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_writep2pinboxrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L783", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_writep2pquarantinerow", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_email_beapinboxdashboardnotify", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_email_beapinboxdashboardnotify_notifybeapinboxdashboard", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_email_messagerouter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_buildquarantinecanonicaljson", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_findpairedsandboxhandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_makeinboxattachmentstorageid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_email_sealedcontentupdate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_email_sealedcontentupdate_resealwithdecryptedcontent", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality_gethandshakeclassification", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_handshake_types_ssosession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_p2p_beapdeliveryack", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_p2p_beapdeliveryack_notifybeapdeliveryack", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_p2p_beaprecipientnotify", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_p2p_beaprecipientnotify_notifybeaprecipientpending", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_p2p_peerdeliveryack", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_p2p_peerdeliveryack_postpeerdeliveryacktosender", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_quarantine_blob_storage_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_quarantine_blob_storage_index_quarantineblobfile", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_quarantine_blob_storage_index_writequarantineblob", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_quarantine_encrypt_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_quarantine_encrypt_index_decryptquarantineblob", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_quarantine_encrypt_index_encryptforquarantine", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_computeseal", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_keysource", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_preparesealedinsert", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_preparesealedoperationalupdate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_vault_capabilitybroker", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_vault_capabilitybroker_reasoncode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "target": "apps_electron_vite_project_electron_main_vault_vaultcanon", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapsync", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L270", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relayPull.messageRelay.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_relaypull_messagerelay_test", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L1128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_processbeappackageinlineinternal", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_reportqbeapdecryptfailure", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L922", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_processsandboxquarantinereceiveinternal", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_reportqbeapdecryptfailure", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L1511", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_retrypendingqbeapdecrypt", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_reportqbeapdecryptfailure", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_finalizedirectbeapinboxpersistence", + "target": "apps_electron_vite_project_electron_main_email_beapinboxdashboardnotify_notifybeapinboxdashboard", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_finalizedirectbeapinboxpersistence", + "target": "apps_electron_vite_project_electron_main_p2p_beapdeliveryack_notifybeapdeliveryack", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_finalizedirectbeapinboxpersistence", + "target": "apps_electron_vite_project_electron_main_p2p_beaprecipientnotify_notifybeaprecipientpending", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_finalizedirectbeapinboxpersistence", + "target": "apps_electron_vite_project_electron_main_p2p_peerdeliveryack_postpeerdeliveryacktosender", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L1112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_processbeappackageinlineinternal", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_finalizedirectbeapinboxpersistence", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_isoutboundqbeapecho", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L1076", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_processbeappackageinlineinternal", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_isoutboundqbeapecho", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L1486", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_retrypendingqbeapdecrypt", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_isoutboundqbeapecho", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L1077", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_processbeappackageinlineinternal", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_buildoutboundqbeapdepackagedjson", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L1488", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_retrypendingqbeapdecrypt", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_buildoutboundqbeapdepackagedjson", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L1069", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_processbeappackageinlineinternal", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_gethandshakepartyemails", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L289", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_ensureinboxattachmentsfrombeappackagejson", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_extractattachmentsfrombeappackagejson", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L250", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_extractattachmentsfrombeappackagejson", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L315", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_ensureinboxattachmentsfrombeappackagejson", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_preparesealedoperationalupdate" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L270", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_ensureinboxattachmentsfrombeappackagejson", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L3395", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_ensureinboxattachmentsfrombeappackagejson" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L350", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_extractp2pbeapinboxpreview", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L1073", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_processbeappackageinlineinternal", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_extractp2pbeapinboxpreview", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L405", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_applydecryptedqbeaptoinboxpreview", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_stripsandboxcloneleadinbodytext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L425", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_buildemailstyledepackagedjsonfromdecrypt", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_stripsandboxcloneleadinbodytext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L1141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_processbeappackageinlineinternal", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_applydecryptedqbeaptoinboxpreview", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L1198", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_processbeappackageinlineinternal", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_buildemailstyledepackagedjsonfromdecrypt", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L527", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_beappackagetomainprocessdepackaged", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L640", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_p2pinboxplaceholderparams", + "target": "apps_electron_vite_project_electron_main_vault_capabilitybroker_reasoncode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L1030", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_processbeappackageinlineinternal", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_writep2pinboxplaceholder", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L681", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_p2pinlineresult", + "target": "apps_electron_vite_project_electron_main_vault_capabilitybroker_reasoncode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L1081", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_processbeappackageinlineinternal", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_buildp2pprovenance", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L1489", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_retrypendingqbeapdecrypt", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_buildp2pprovenance", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L838", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_writep2pquarantinerow", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_buildp2pprovenance", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L723", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_p2pinboxwriteparams", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_keysource", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L1094", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_processbeappackageinlineinternal", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_writep2pinboxrow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L728", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_writep2pinboxrow", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_preparesealedinsert", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L777", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_p2pquarantinewriteparams", + "target": "apps_electron_vite_project_electron_main_handshake_types_ssosession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L1321", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_processbeappackageinlineinternal", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_writep2pquarantinerow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L907", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_processsandboxquarantinereceiveinternal", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_writep2pquarantinerow", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L812", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_writep2pquarantinerow", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L830", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_writep2pquarantinerow", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_buildquarantinecanonicaljson", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L804", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_writep2pquarantinerow", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_findpairedsandboxhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L821", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_writep2pquarantinerow", + "target": "apps_electron_vite_project_electron_main_quarantine_blob_storage_index_writequarantineblob", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L813", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_writep2pquarantinerow", + "target": "apps_electron_vite_project_electron_main_quarantine_encrypt_index_encryptforquarantine", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L851", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_writep2pquarantinerow", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_preparesealedinsert", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L1058", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_processbeappackageinlineinternal", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_processsandboxquarantinereceiveinternal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L1399", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_processsandboxquarantinereceive", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_processsandboxquarantinereceiveinternal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L943", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_processsandboxquarantinereceiveinternal", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L950", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_processsandboxquarantinereceiveinternal", + "target": "apps_electron_vite_project_electron_main_quarantine_encrypt_index_decryptquarantineblob", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L1366", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_processbeappackageinline", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_processbeappackageinlineinternal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L1040", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_processbeappackageinlineinternal", + "target": "apps_electron_vite_project_electron_main_email_beapinboxdashboardnotify_notifybeapinboxdashboard", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L1156", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_processbeappackageinlineinternal", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L1023", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_processbeappackageinlineinternal", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality_gethandshakeclassification", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L1209", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_processbeappackageinlineinternal", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_computeseal", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L1020", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_processbeappackageinlineinternal", + "target": "apps_electron_vite_project_electron_main_vault_capabilitybroker", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L1021", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_processbeappackageinlineinternal", + "target": "apps_electron_vite_project_electron_main_vault_capabilitybroker_canperform" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L1617", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_retrypendinginboxplaceholders", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_processbeappackageinline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapsync", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_processbeappackageinline", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L241", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapsync_processemailforbeap", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_processbeappackageinline" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_processbeappackageinline", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L405", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws_processcapsuleinternal", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_processbeappackageinline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_processbeappackageinline", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L230", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull_pullfromrelay", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_processbeappackageinline" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L1492", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_retrypendingqbeapdecrypt", + "target": "apps_electron_vite_project_electron_main_email_sealedcontentupdate_resealwithdecryptedcontent" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L1632", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_retrypendinginboxplaceholders", + "target": "apps_electron_vite_project_electron_main_email_beapinboxdashboardnotify_notifybeapinboxdashboard" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L1633", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_retrypendinginboxplaceholders", + "target": "apps_electron_vite_project_electron_main_p2p_beapdeliveryack_notifybeapdeliveryack" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L1634", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_retrypendinginboxplaceholders", + "target": "apps_electron_vite_project_electron_main_p2p_peerdeliveryack_postpeerdeliveryacktosender" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L1599", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_retrypendinginboxplaceholders", + "target": "apps_electron_vite_project_electron_main_vault_capabilitybroker", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L1604", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_retrypendinginboxplaceholders", + "target": "apps_electron_vite_project_electron_main_vault_capabilitybroker_canperform" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts", + "source_location": "L1669", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapemailingestion_extractpbeapcapsule", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L270", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_formatbeapinboxdberror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L3337", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_formatbeapinboxdberror" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L270", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_processpendingp2pbeapemails", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_processpendingp2pbeapemails", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L1176", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator_startautosync", + "target": "apps_electron_vite_project_electron_main_email_beapemailingestion_processpendingp2pbeapemails" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare", + "target": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_beapinboxcloneerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L350", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare", + "target": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_beapinboxclonenosandboxdetails", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare", + "target": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_beapinboxcloneprepareok", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare", + "target": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_beapinboxcloneprepareoptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L360", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare", + "target": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_beapinboxcloneprepareresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare", + "target": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_clone_prepare_inner_vault_user_message", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare", + "target": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_clone_prepare_seal_gate_user_message", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L256", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare", + "target": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_clone_prepare_vault_unavailable_message", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L364", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare", + "target": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_cloneprepareinboxrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L259", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare", + "target": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_clonepreparesealgateresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L177", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare", + "target": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_cloneprovenanceoriginalinboxsourcetype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare", + "target": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_depackagedformatforclonerow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L282", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare", + "target": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_ensuresealedstoragereadyforsandboxclone", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L700", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare", + "target": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_extractsourcesessionimportartefact", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare", + "target": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_inboxclonerequiresinnervault", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L208", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare", + "target": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_inboxclonevaultrequirementprobe", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L203", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare", + "target": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_inboxsealkeysourcerequiresinnervault", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L489", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare", + "target": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_preparebeapinboxsandboxclone", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L216", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare", + "target": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_probeinboxmessageclonevaultrequirement", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare", + "target": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_probeinboxmessagesealkeysource", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L392", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare", + "target": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_readinboxrowforcloneprepare", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L151", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare", + "target": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_resolvecloneprepareresponsepath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare", + "target": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_rowhasnativebeapsessionforclone", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare", + "target": "apps_electron_vite_project_electron_main_email_beapredirectsource", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare", + "target": "apps_electron_vite_project_electron_main_email_beapredirectsource_extractclonepreparesourcefromrow", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare", + "target": "apps_electron_vite_project_electron_main_email_inboxrowsealpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare", + "target": "apps_electron_vite_project_electron_main_email_inboxrowsealpolicy_inboxrowrequiresinnervault", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare", + "target": "apps_electron_vite_project_electron_main_email_inboxrowsealpolicy_isdepackagedemailinboxsourcetype", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_iseligibleactiveinternalhostsandboxrecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_listavailableinternalsandboxes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_sandboxorchestratoravailabilitystatus", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare", + "target": "apps_electron_vite_project_electron_main_handshake_types_ssosession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_iskeyproviderusable", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedquery", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealverificationerror", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare", + "target": "apps_electron_vite_project_electron_main_vault_capabilitybroker", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare", + "target": "apps_electron_vite_project_electron_main_vault_capabilitybroker_canperform", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_inboxmessageaiclassificationrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_inboxrowisclonedplainemail", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_resolveinboxreplymode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L508", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_preparebeapinboxsandboxclone", + "target": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_probeinboxmessagesealkeysource", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_probeinboxmessagesealkeysource", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_resolvecloneprepareresponsepath", + "target": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_depackagedformatforclonerow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L613", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_preparebeapinboxsandboxclone", + "target": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_resolvecloneprepareresponsepath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L159", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_resolvecloneprepareresponsepath", + "target": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_rowhasnativebeapsessionforclone", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L156", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_resolvecloneprepareresponsepath", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_inboxrowisclonedplainemail" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_resolvecloneprepareresponsepath", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_resolveinboxreplymode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L173", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_rowhasnativebeapsessionforclone", + "target": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_extractsourcesessionimportartefact", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L631", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_preparebeapinboxsandboxclone", + "target": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_cloneprovenanceoriginalinboxsourcetype", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L196", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_inboxclonerequiresinnervault", + "target": "apps_electron_vite_project_electron_main_email_inboxrowsealpolicy_inboxrowrequiresinnervault" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L247", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_probeinboxmessageclonevaultrequirement", + "target": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_inboxclonerequiresinnervault", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L292", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_ensuresealedstoragereadyforsandboxclone", + "target": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_inboxsealkeysourcerequiresinnervault", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L507", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_preparebeapinboxsandboxclone", + "target": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_probeinboxmessageclonevaultrequirement", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L242", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_probeinboxmessageclonevaultrequirement", + "target": "apps_electron_vite_project_electron_main_email_inboxrowsealpolicy_isdepackagedemailinboxsourcetype" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_probeinboxmessageclonevaultrequirement", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L295", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_ensuresealedstoragereadyforsandboxclone", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_iskeyproviderusable" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L301", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_ensuresealedstoragereadyforsandboxclone", + "target": "apps_electron_vite_project_electron_main_vault_capabilitybroker_canperform" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_ensuresealedstoragereadyforsandboxclone", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L531", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_preparebeapinboxsandboxclone", + "target": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_readinboxrowforcloneprepare", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L440", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_readinboxrowforcloneprepare", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_iskeyproviderusable" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L415", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_readinboxrowforcloneprepare", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedquery" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L654", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_preparebeapinboxsandboxclone", + "target": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_extractsourcesessionimportartefact", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L614", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_preparebeapinboxsandboxclone", + "target": "apps_electron_vite_project_electron_main_email_beapredirectsource_extractclonepreparesourcefromrow" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L583", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_preparebeapinboxsandboxclone", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L587", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_preparebeapinboxsandboxclone", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_iseligibleactiveinternalhostsandboxrecord" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L539", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_preparebeapinboxsandboxclone", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_listavailableinternalsandboxes" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts", + "source_location": "L513", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_preparebeapinboxsandboxclone", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_iskeyproviderusable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_beapinboxcloneprepare_preparebeapinboxsandboxclone", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxDashboardNotify.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxdashboardnotify", + "target": "apps_electron_vite_project_electron_main_email_beapinboxdashboardnotify_notifybeapinboxdashboard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapInboxDashboardNotify.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapinboxdashboardnotify", + "target": "apps_electron_vite_project_electron_main_email_beapinboxdashboardnotify_setbeapinboxdashboardnotifier", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L271", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_beapinboxdashboardnotify", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_beapinboxdashboardnotify", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L271", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_beapinboxdashboardnotify_notifybeapinboxdashboard", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_beapinboxdashboardnotify_notifybeapinboxdashboard", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L1177", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator_startautosync", + "target": "apps_electron_vite_project_electron_main_email_beapinboxdashboardnotify_notifybeapinboxdashboard" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapRedirectSource.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapredirectsource", + "target": "apps_electron_vite_project_electron_main_email_beapredirectsource_beapredirectsourceresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapRedirectSource.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapredirectsource", + "target": "apps_electron_vite_project_electron_main_email_beapredirectsource_depackagedformatfrompair", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapRedirectSource.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapredirectsource", + "target": "apps_electron_vite_project_electron_main_email_beapredirectsource_depackformatfromrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapRedirectSource.ts", + "source_location": "L295", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapredirectsource", + "target": "apps_electron_vite_project_electron_main_email_beapredirectsource_extractbeapredirectsourcefromrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapRedirectSource.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapredirectsource", + "target": "apps_electron_vite_project_electron_main_email_beapredirectsource_extractbodyfromdepackaged", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapRedirectSource.ts", + "source_location": "L221", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapredirectsource", + "target": "apps_electron_vite_project_electron_main_email_beapredirectsource_extractclonepreparesourcefromrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapRedirectSource.ts", + "source_location": "L176", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapredirectsource", + "target": "apps_electron_vite_project_electron_main_email_beapredirectsource_extractgenericinboxtext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapRedirectSource.ts", + "source_location": "L247", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapredirectsource", + "target": "apps_electron_vite_project_electron_main_email_beapredirectsource_extractinboxmessageredirectsourcefromrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapRedirectSource.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapredirectsource", + "target": "apps_electron_vite_project_electron_main_email_beapredirectsource_inboxrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapRedirectSource.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapredirectsource", + "target": "apps_electron_vite_project_electron_main_email_beapredirectsource_inboxrowisreceivedbeapforredirectorclone", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapRedirectSource.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapredirectsource", + "target": "apps_electron_vite_project_electron_main_email_beapredirectsource_isreceivedbeapinboxsourcetype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapRedirectSource.ts", + "source_location": "L297", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapredirectsource", + "target": "apps_electron_vite_project_electron_main_email_beapredirectsource_prepareinboxmessageredirectsource", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapRedirectSource.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapredirectsource", + "target": "apps_electron_vite_project_electron_main_email_beapredirectsource_tryextractbeapstructuredtext", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_beapredirectsource", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/regressionMatrix.relayHandshakeSandbox.test.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_regressionmatrix_relayhandshakesandbox_test", + "target": "apps_electron_vite_project_electron_main_email_beapredirectsource", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapRedirectSource.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapredirectsource_depackformatfromrow", + "target": "apps_electron_vite_project_electron_main_email_beapredirectsource_depackagedformatfrompair", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapRedirectSource.ts", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapredirectsource_tryextractbeapstructuredtext", + "target": "apps_electron_vite_project_electron_main_email_beapredirectsource_depackagedformatfrompair", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapRedirectSource.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapredirectsource_inboxrowisreceivedbeapforredirectorclone", + "target": "apps_electron_vite_project_electron_main_email_beapredirectsource_depackformatfromrow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapRedirectSource.ts", + "source_location": "L256", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapredirectsource_extractinboxmessageredirectsourcefromrow", + "target": "apps_electron_vite_project_electron_main_email_beapredirectsource_inboxrowisreceivedbeapforredirectorclone", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapRedirectSource.ts", + "source_location": "L186", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapredirectsource_extractgenericinboxtext", + "target": "apps_electron_vite_project_electron_main_email_beapredirectsource_extractbodyfromdepackaged", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapRedirectSource.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapredirectsource_tryextractbeapstructuredtext", + "target": "apps_electron_vite_project_electron_main_email_beapredirectsource_extractbodyfromdepackaged", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapRedirectSource.ts", + "source_location": "L257", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapredirectsource_extractinboxmessageredirectsourcefromrow", + "target": "apps_electron_vite_project_electron_main_email_beapredirectsource_tryextractbeapstructuredtext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapRedirectSource.ts", + "source_location": "L228", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapredirectsource_extractclonepreparesourcefromrow", + "target": "apps_electron_vite_project_electron_main_email_beapredirectsource_extractgenericinboxtext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapRedirectSource.ts", + "source_location": "L263", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapredirectsource_extractinboxmessageredirectsourcefromrow", + "target": "apps_electron_vite_project_electron_main_email_beapredirectsource_extractgenericinboxtext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapRedirectSource.ts", + "source_location": "L240", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapredirectsource_extractclonepreparesourcefromrow", + "target": "apps_electron_vite_project_electron_main_email_beapredirectsource_extractinboxmessageredirectsourcefromrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_beapredirectsource_extractinboxmessageredirectsourcefromrow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L492", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_extractnativebeapincomingpbeapqbeaptexts", + "target": "apps_electron_vite_project_electron_main_email_beapredirectsource_extractinboxmessageredirectsourcefromrow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L3417", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_beapredirectsource_extractinboxmessageredirectsourcefromrow" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/regressionMatrix.relayHandshakeSandbox.test.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_regressionmatrix_relayhandshakesandbox_test", + "target": "apps_electron_vite_project_electron_main_email_beapredirectsource_extractbeapredirectsourcefromrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapsync", + "target": "apps_electron_vite_project_electron_main_email_beapsync_beapsyncconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapsync", + "target": "apps_electron_vite_project_electron_main_email_beapsync_beapsynchandle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapsync", + "target": "apps_electron_vite_project_electron_main_email_beapsync_detectbeapinbody", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapsync", + "target": "apps_electron_vite_project_electron_main_email_beapsync_detectbeapinparsedjson", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapsync", + "target": "apps_electron_vite_project_electron_main_email_beapsync_detectbeapinsubject", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapsync", + "target": "apps_electron_vite_project_electron_main_email_beapsync_detectbeapmessagepackage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapsync", + "target": "apps_electron_vite_project_electron_main_email_beapsync_emailextractattachmenttextfn", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapsync", + "target": "apps_electron_vite_project_electron_main_email_beapsync_emailgetfn", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapsync", + "target": "apps_electron_vite_project_electron_main_email_beapsync_emaillistattachmentsfn", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapsync", + "target": "apps_electron_vite_project_electron_main_email_beapsync_emaillistfn", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L155", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapsync", + "target": "apps_electron_vite_project_electron_main_email_beapsync_isbeapattachment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L165", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapsync", + "target": "apps_electron_vite_project_electron_main_email_beapsync_isjsonattachment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapsync", + "target": "apps_electron_vite_project_electron_main_email_beapsync_processedmessageids", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L185", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapsync", + "target": "apps_electron_vite_project_electron_main_email_beapsync_processemailforbeap", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapsync", + "target": "apps_electron_vite_project_electron_main_email_beapsync_resetemailfunctions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L433", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapsync", + "target": "apps_electron_vite_project_electron_main_email_beapsync_resetprocessedmessages", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L362", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapsync", + "target": "apps_electron_vite_project_electron_main_email_beapsync_runbeapsynccycle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapsync", + "target": "apps_electron_vite_project_electron_main_email_beapsync_setemailfunctions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L406", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapsync", + "target": "apps_electron_vite_project_electron_main_email_beapsync_startbeapemailsync", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapsync", + "target": "apps_electron_vite_project_electron_main_email_plainemailconverter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapsync", + "target": "apps_electron_vite_project_electron_main_email_plainemailconverter_enrichwithattachments", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapsync", + "target": "apps_electron_vite_project_electron_main_email_plainemailconverter_plainemailtobeapmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapsync", + "target": "apps_electron_vite_project_electron_main_email_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapsync", + "target": "apps_electron_vite_project_electron_main_email_types_attachmentmeta", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapsync", + "target": "apps_electron_vite_project_electron_main_email_types_extractedattachmenttext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapsync", + "target": "apps_electron_vite_project_electron_main_email_types_sanitizedmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapsync", + "target": "apps_electron_vite_project_electron_main_email_types_sanitizedmessagedetail", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapsync", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapsync", + "target": "apps_electron_vite_project_electron_main_handshake_types_ssosession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapsync", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapsync", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc_handleingestionrpc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L197", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapsync_processemailforbeap", + "target": "apps_electron_vite_project_electron_main_email_beapsync_detectbeapinbody", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L230", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapsync_processemailforbeap", + "target": "apps_electron_vite_project_electron_main_email_beapsync_detectbeapmessagepackage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L264", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapsync_processemailforbeap", + "target": "apps_electron_vite_project_electron_main_email_beapsync_isbeapattachment", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L265", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapsync_processemailforbeap", + "target": "apps_electron_vite_project_electron_main_email_beapsync_isjsonattachment", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L278", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapsync_processemailforbeap", + "target": "apps_electron_vite_project_electron_main_email_beapsync_detectbeapinparsedjson", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapsync_processemailforbeap", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc_handleingestionrpc" + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L264", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapsync_processemailforbeap", + "target": "apps_electron_vite_project_src_components_bulkinboxattachmenthydration_test_att" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L388", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapsync_runbeapsynccycle", + "target": "apps_electron_vite_project_electron_main_email_beapsync_processemailforbeap", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/beapSync.ts", + "source_location": "L419", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_beapsync_startbeapemailsync", + "target": "apps_electron_vite_project_electron_main_email_beapsync_runbeapsynccycle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/builtinGoogleOAuthSupplement.ts", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_builtingoogleoauthsupplement", + "target": "apps_electron_vite_project_electron_main_email_builtingoogleoauthsupplement_clearbuiltingoogleoauthsupplement", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/builtinGoogleOAuthSupplement.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_builtingoogleoauthsupplement", + "target": "apps_electron_vite_project_electron_main_email_builtingoogleoauthsupplement_hasbuiltingoogleoauthsupplementforclientid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/builtinGoogleOAuthSupplement.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_builtingoogleoauthsupplement", + "target": "apps_electron_vite_project_electron_main_email_builtingoogleoauthsupplement_loadbuiltingoogleoauthsupplementsecret", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/builtinGoogleOAuthSupplement.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_builtingoogleoauthsupplement", + "target": "apps_electron_vite_project_electron_main_email_builtingoogleoauthsupplement_normalizesupplementdesktopsecret", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/builtinGoogleOAuthSupplement.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_builtingoogleoauthsupplement", + "target": "apps_electron_vite_project_electron_main_email_builtingoogleoauthsupplement_savebuiltingoogleoauthsupplementsecret", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/builtinGoogleOAuthSupplement.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_builtingoogleoauthsupplement", + "target": "apps_electron_vite_project_electron_main_email_builtingoogleoauthsupplement_savebuiltinsupplementresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/builtinGoogleOAuthSupplement.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_builtingoogleoauthsupplement", + "target": "apps_electron_vite_project_electron_main_email_builtingoogleoauthsupplement_supplementpath", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/builtinGoogleOAuthSupplement.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_builtingoogleoauthsupplement", + "target": "apps_electron_vite_project_electron_main_email_secure_storage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/builtinGoogleOAuthSupplement.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_builtingoogleoauthsupplement", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_decryptvalue", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/builtinGoogleOAuthSupplement.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_builtingoogleoauthsupplement", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_encryptvalue", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/builtinGoogleOAuthSupplement.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_builtingoogleoauthsupplement", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_issecurestorageavailable", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/builtinGoogleOAuthSupplement.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_builtingoogleoauthsupplement", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_securestorageunavailableerror", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin", + "target": "apps_electron_vite_project_electron_main_email_builtingoogleoauthsupplement", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L982", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registeremailhandlers", + "target": "apps_electron_vite_project_electron_main_email_builtingoogleoauthsupplement", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/builtinGoogleOAuthSupplement.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_builtingoogleoauthsupplement_clearbuiltingoogleoauthsupplement", + "target": "apps_electron_vite_project_electron_main_email_builtingoogleoauthsupplement_supplementpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/builtinGoogleOAuthSupplement.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_builtingoogleoauthsupplement_loadbuiltingoogleoauthsupplementsecret", + "target": "apps_electron_vite_project_electron_main_email_builtingoogleoauthsupplement_supplementpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/builtinGoogleOAuthSupplement.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_builtingoogleoauthsupplement_savebuiltingoogleoauthsupplementsecret", + "target": "apps_electron_vite_project_electron_main_email_builtingoogleoauthsupplement_supplementpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/builtinGoogleOAuthSupplement.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_builtingoogleoauthsupplement_loadbuiltingoogleoauthsupplementsecret", + "target": "apps_electron_vite_project_electron_main_email_builtingoogleoauthsupplement_normalizesupplementdesktopsecret", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/builtinGoogleOAuthSupplement.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_builtingoogleoauthsupplement_savebuiltingoogleoauthsupplementsecret", + "target": "apps_electron_vite_project_electron_main_email_builtingoogleoauthsupplement_normalizesupplementdesktopsecret", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/builtinGoogleOAuthSupplement.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_builtingoogleoauthsupplement_hasbuiltingoogleoauthsupplementforclientid", + "target": "apps_electron_vite_project_electron_main_email_builtingoogleoauthsupplement_loadbuiltingoogleoauthsupplementsecret", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/builtinGoogleOAuthSupplement.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_builtingoogleoauthsupplement_loadbuiltingoogleoauthsupplementsecret", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_decryptvalue" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin", + "target": "apps_electron_vite_project_electron_main_email_builtingoogleoauthsupplement_loadbuiltingoogleoauthsupplementsecret", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L293", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolvebuiltingoogleoauthclientsecret", + "target": "apps_electron_vite_project_electron_main_email_builtingoogleoauthsupplement_loadbuiltingoogleoauthsupplementsecret" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/builtinGoogleOAuthSupplement.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_builtingoogleoauthsupplement_savebuiltingoogleoauthsupplementsecret", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_encryptvalue" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/builtinGoogleOAuthSupplement.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_builtingoogleoauthsupplement_savebuiltingoogleoauthsupplementsecret", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_issecurestorageavailable" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L340", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials", + "target": "apps_electron_vite_project_electron_main_email_credentials_checkexistingcredentials", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials", + "target": "apps_electron_vite_project_electron_main_email_credentials_checkresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials", + "target": "apps_electron_vite_project_electron_main_email_credentials_credentialsource", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials", + "target": "apps_electron_vite_project_electron_main_email_credentials_credlog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L186", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials", + "target": "apps_electron_vite_project_electron_main_email_credentials_default_tier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L498", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials", + "target": "apps_electron_vite_project_electron_main_email_credentials_deleteallcredentials", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L477", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials", + "target": "apps_electron_vite_project_electron_main_email_credentials_deleteplainfile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials", + "target": "apps_electron_vite_project_electron_main_email_credentials_emailcreds", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials", + "target": "apps_electron_vite_project_electron_main_email_credentials_getbackuppath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L402", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials", + "target": "apps_electron_vite_project_electron_main_email_credentials_getcredentialsforoauth", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials", + "target": "apps_electron_vite_project_electron_main_email_credentials_getgmailconfigpath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials", + "target": "apps_electron_vite_project_electron_main_email_credentials_getoutlookconfigpath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials", + "target": "apps_electron_vite_project_electron_main_email_credentials_getzohoconfigpath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials", + "target": "apps_electron_vite_project_electron_main_email_credentials_gmailcreds", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L321", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials", + "target": "apps_electron_vite_project_electron_main_email_credentials_isvaultunlocked", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L172", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials", + "target": "apps_electron_vite_project_electron_main_email_credentials_loadfromfile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials", + "target": "apps_electron_vite_project_electron_main_email_credentials_loadfromvault", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials", + "target": "apps_electron_vite_project_electron_main_email_credentials_loadzohooauthconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials", + "target": "apps_electron_vite_project_electron_main_email_credentials_outlookcreds", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials", + "target": "apps_electron_vite_project_electron_main_email_credentials_readbackupfile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L435", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials", + "target": "apps_electron_vite_project_electron_main_email_credentials_savecredentials", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L242", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials", + "target": "apps_electron_vite_project_electron_main_email_credentials_savetovault", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L155", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials", + "target": "apps_electron_vite_project_electron_main_email_credentials_savezohooauthconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials", + "target": "apps_electron_vite_project_electron_main_email_credentials_writebackupfile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials", + "target": "apps_electron_vite_project_electron_main_email_credentials_zohocreds", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_isbuiltingmailoauthconfigured", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_loadoauthconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_saveoauthconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_loadoutlookoauthconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_saveoutlookoauthconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials", + "target": "apps_electron_vite_project_electron_main_email_secure_storage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_decryptvalue", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_encryptvalue", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_issecurestorageavailable", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_securestorageunavailableerror", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L337", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials_rationale_337", + "target": "apps_electron_vite_project_electron_main_email_credentials", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_credentials", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gmailCredentialsCheckPayload.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailcredentialscheckpayload", + "target": "apps_electron_vite_project_electron_main_email_credentials", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthResolve.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailoauthresolve", + "target": "apps_electron_vite_project_electron_main_email_credentials", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L202", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_credentials", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho", + "target": "apps_electron_vite_project_electron_main_email_credentials", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxemailfetch", + "target": "apps_electron_vite_project_electron_main_email_credentials", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L362", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials_checkexistingcredentials", + "target": "apps_electron_vite_project_electron_main_email_credentials_credlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L504", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials_deleteallcredentials", + "target": "apps_electron_vite_project_electron_main_email_credentials_credlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L487", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials_deleteplainfile", + "target": "apps_electron_vite_project_electron_main_email_credentials_credlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L413", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials_getcredentialsforoauth", + "target": "apps_electron_vite_project_electron_main_email_credentials_credlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L236", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials_loadfromvault", + "target": "apps_electron_vite_project_electron_main_email_credentials_credlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L150", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials_loadzohooauthconfig", + "target": "apps_electron_vite_project_electron_main_email_credentials_credlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials_readbackupfile", + "target": "apps_electron_vite_project_electron_main_email_credentials_credlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L452", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials_savecredentials", + "target": "apps_electron_vite_project_electron_main_email_credentials_credlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L251", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials_savetovault", + "target": "apps_electron_vite_project_electron_main_email_credentials_credlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials_savezohooauthconfig", + "target": "apps_electron_vite_project_electron_main_email_credentials_credlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gmailCredentialsCheckPayload.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailcredentialscheckpayload", + "target": "apps_electron_vite_project_electron_main_email_credentials_credentialsource", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxemailfetch", + "target": "apps_electron_vite_project_electron_main_email_credentials_gmailcreds", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook", + "target": "apps_electron_vite_project_electron_main_email_credentials_outlookcreds", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho", + "target": "apps_electron_vite_project_electron_main_email_credentials_zohocreds", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L481", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials_deleteplainfile", + "target": "apps_electron_vite_project_electron_main_email_credentials_getgmailconfigpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L484", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials_deleteplainfile", + "target": "apps_electron_vite_project_electron_main_email_credentials_getoutlookconfigpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L483", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials_deleteplainfile", + "target": "apps_electron_vite_project_electron_main_email_credentials_getzohoconfigpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials_loadzohooauthconfig", + "target": "apps_electron_vite_project_electron_main_email_credentials_getzohoconfigpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials_savezohooauthconfig", + "target": "apps_electron_vite_project_electron_main_email_credentials_getzohoconfigpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L501", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials_deleteallcredentials", + "target": "apps_electron_vite_project_electron_main_email_credentials_getbackuppath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials_readbackupfile", + "target": "apps_electron_vite_project_electron_main_email_credentials_getbackuppath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials_writebackupfile", + "target": "apps_electron_vite_project_electron_main_email_credentials_getbackuppath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L358", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials_checkexistingcredentials", + "target": "apps_electron_vite_project_electron_main_email_credentials_writebackupfile", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L444", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials_savecredentials", + "target": "apps_electron_vite_project_electron_main_email_credentials_writebackupfile", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials_writebackupfile", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_encryptvalue", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L355", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials_checkexistingcredentials", + "target": "apps_electron_vite_project_electron_main_email_credentials_readbackupfile", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L411", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials_getcredentialsforoauth", + "target": "apps_electron_vite_project_electron_main_email_credentials_readbackupfile", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials_readbackupfile", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_decryptvalue", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L180", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials_loadfromfile", + "target": "apps_electron_vite_project_electron_main_email_credentials_loadzohooauthconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_credentials_savezohooauthconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2370", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_setzohooauthcredentials", + "target": "apps_electron_vite_project_electron_main_email_credentials_savezohooauthconfig" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L356", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials_checkexistingcredentials", + "target": "apps_electron_vite_project_electron_main_email_credentials_loadfromfile", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L417", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials_getcredentialsforoauth", + "target": "apps_electron_vite_project_electron_main_email_credentials_loadfromfile", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L176", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials_loadfromfile", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_loadoauthconfig" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L182", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials_loadfromfile", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_loadoutlookoauthconfig" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L347", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials_checkexistingcredentials", + "target": "apps_electron_vite_project_electron_main_email_credentials_loadfromvault", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L407", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials_getcredentialsforoauth", + "target": "apps_electron_vite_project_electron_main_email_credentials_loadfromvault", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L195", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials_loadfromvault", + "target": "apps_electron_vite_project_electron_main_vault_rpc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L359", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials_checkexistingcredentials", + "target": "apps_electron_vite_project_electron_main_email_credentials_savetovault", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L457", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials_savecredentials", + "target": "apps_electron_vite_project_electron_main_email_credentials_savetovault", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L247", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials_savetovault", + "target": "apps_electron_vite_project_electron_main_vault_rpc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L343", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials_checkexistingcredentials", + "target": "apps_electron_vite_project_electron_main_email_credentials_isvaultunlocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L406", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials_getcredentialsforoauth", + "target": "apps_electron_vite_project_electron_main_email_credentials_isvaultunlocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L440", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials_savecredentials", + "target": "apps_electron_vite_project_electron_main_email_credentials_isvaultunlocked", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gmailCredentialsCheckPayload.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailcredentialscheckpayload", + "target": "apps_electron_vite_project_electron_main_email_credentials_isvaultunlocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gmailCredentialsCheckPayload.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailcredentialscheckpayload_buildgmailcredentialscheckpayload", + "target": "apps_electron_vite_project_electron_main_email_credentials_isvaultunlocked" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L202", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_credentials_isvaultunlocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L1014", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registeremailhandlers", + "target": "apps_electron_vite_project_electron_main_email_credentials_isvaultunlocked" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L390", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials_checkexistingcredentials", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_isbuiltingmailoauthconfigured" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gmailCredentialsCheckPayload.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailcredentialscheckpayload", + "target": "apps_electron_vite_project_electron_main_email_credentials_checkexistingcredentials", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gmailCredentialsCheckPayload.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailcredentialscheckpayload_buildgmailcredentialscheckpayload", + "target": "apps_electron_vite_project_electron_main_email_credentials_checkexistingcredentials" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L202", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_credentials_checkexistingcredentials", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L1005", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registeremailhandlers", + "target": "apps_electron_vite_project_electron_main_email_credentials_checkexistingcredentials" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthResolve.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailoauthresolve", + "target": "apps_electron_vite_project_electron_main_email_credentials_getcredentialsforoauth", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthResolve.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailoauthresolve_resolvegmailoauthforconnect", + "target": "apps_electron_vite_project_electron_main_email_credentials_getcredentialsforoauth" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail", + "target": "apps_electron_vite_project_electron_main_email_credentials_getcredentialsforoauth", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L1140", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_refreshaccesstoken", + "target": "apps_electron_vite_project_electron_main_email_credentials_getcredentialsforoauth" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook", + "target": "apps_electron_vite_project_electron_main_email_credentials_getcredentialsforoauth", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L967", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_refreshaccesstoken", + "target": "apps_electron_vite_project_electron_main_email_credentials_getcredentialsforoauth" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L765", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_startoauthflow", + "target": "apps_electron_vite_project_electron_main_email_credentials_getcredentialsforoauth" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho", + "target": "apps_electron_vite_project_electron_main_email_credentials_getcredentialsforoauth", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L210", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_refreshaccesstoken", + "target": "apps_electron_vite_project_electron_main_email_credentials_getcredentialsforoauth" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L711", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_startoauthflow", + "target": "apps_electron_vite_project_electron_main_email_credentials_getcredentialsforoauth" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxemailfetch", + "target": "apps_electron_vite_project_electron_main_email_credentials_getcredentialsforoauth", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L150", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_resolveoauthforsandboxreadfetch", + "target": "apps_electron_vite_project_electron_main_email_credentials_getcredentialsforoauth" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L202", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_credentials_savecredentials", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L948", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registeremailhandlers", + "target": "apps_electron_vite_project_electron_main_email_credentials_savecredentials" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L511", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials_deleteallcredentials", + "target": "apps_electron_vite_project_electron_main_email_credentials_deleteplainfile", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/credentials.ts", + "source_location": "L515", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_credentials_deleteallcredentials", + "target": "apps_electron_vite_project_electron_main_vault_rpc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/dashboardSnapshot.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_dashboardsnapshot", + "target": "apps_electron_vite_project_electron_main_email_dashboardsnapshot_collectreadonlydashboardsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/dashboardSnapshot.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_dashboardsnapshot", + "target": "apps_electron_vite_project_electron_main_email_dashboardsnapshot_countinbox", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/dashboardSnapshot.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_dashboardsnapshot", + "target": "apps_electron_vite_project_electron_main_email_dashboardsnapshot_dashboardsnapshotaisummary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/dashboardSnapshot.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_dashboardsnapshot", + "target": "apps_electron_vite_project_electron_main_email_dashboardsnapshot_dashboardsnapshotautosortmessagerow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/dashboardSnapshot.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_dashboardsnapshot", + "target": "apps_electron_vite_project_electron_main_email_dashboardsnapshot_dashboardsnapshotlatestsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/dashboardSnapshot.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_dashboardsnapshot", + "target": "apps_electron_vite_project_electron_main_email_dashboardsnapshot_inboxdashboardsnapshotcollectresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/dashboardSnapshot.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_dashboardsnapshot", + "target": "apps_electron_vite_project_electron_main_email_dashboardsnapshot_parseaisummaryjson", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/dashboardSnapshot.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_dashboardsnapshot", + "target": "apps_electron_vite_project_electron_main_email_inboxwhereclause", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/dashboardSnapshot.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_dashboardsnapshot", + "target": "apps_electron_vite_project_electron_main_email_inboxwhereclause_buildinboxmessageswhereclause", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/dashboardSnapshot.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_dashboardsnapshot", + "target": "apps_electron_vite_project_electron_main_email_inboxwhereclause_inboxlistfilteroptions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L276", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_dashboardsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/dashboardSnapshot.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_dashboardsnapshot_collectreadonlydashboardsnapshot", + "target": "apps_electron_vite_project_electron_main_email_dashboardsnapshot_countinbox", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/dashboardSnapshot.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_dashboardsnapshot_countinbox", + "target": "apps_electron_vite_project_electron_main_email_inboxwhereclause_buildinboxmessageswhereclause", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/dashboardSnapshot.ts", + "source_location": "L222", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_dashboardsnapshot_collectreadonlydashboardsnapshot", + "target": "apps_electron_vite_project_electron_main_email_dashboardsnapshot_parseaisummaryjson", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L276", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_dashboardsnapshot_collectreadonlydashboardsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L3353", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_dashboardsnapshot_collectreadonlydashboardsnapshot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/dedicatedSandboxReadProviderStatus.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_dedicatedsandboxreadproviderstatus", + "target": "apps_electron_vite_project_electron_main_email_dedicatedsandboxreadproviderstatus_hostackindicatesmissingreadprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/dedicatedSandboxReadProviderStatus.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_dedicatedsandboxreadproviderstatus", + "target": "apps_electron_vite_project_electron_main_email_dedicatedsandboxreadproviderstatus_hostackindicatespollunreachable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/dedicatedSandboxReadProviderStatus.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_dedicatedsandboxreadproviderstatus", + "target": "apps_electron_vite_project_electron_main_email_dedicatedsandboxreadproviderstatus_issandboxpollunreachablestatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/dedicatedSandboxReadProviderStatus.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_dedicatedsandboxreadproviderstatus", + "target": "apps_electron_vite_project_electron_main_email_dedicatedsandboxreadproviderstatus_issandboxreadconsentmissingpollstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/dedicatedSandboxReadProviderStatus.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_dedicatedsandboxreadproviderstatus", + "target": "apps_electron_vite_project_electron_main_email_dedicatedsandboxreadproviderstatus_sandboxdedicatedmissingreadprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionStatus.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionstatus", + "target": "apps_electron_vite_project_electron_main_email_dedicatedsandboxreadproviderstatus", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/dedicatedSandboxReadProviderStatus.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_dedicatedsandboxreadproviderstatus_hostackindicatesmissingreadprovider", + "target": "apps_electron_vite_project_electron_main_email_dedicatedsandboxreadproviderstatus_issandboxreadconsentmissingpollstatus", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/dedicatedSandboxReadProviderStatus.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_dedicatedsandboxreadproviderstatus_sandboxdedicatedmissingreadprovider", + "target": "apps_electron_vite_project_electron_main_email_dedicatedsandboxreadproviderstatus_issandboxreadconsentmissingpollstatus", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/dedicatedSandboxReadProviderStatus.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_dedicatedsandboxreadproviderstatus_hostackindicatespollunreachable", + "target": "apps_electron_vite_project_electron_main_email_dedicatedsandboxreadproviderstatus_issandboxpollunreachablestatus", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionStatus.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionstatus", + "target": "apps_electron_vite_project_electron_main_email_dedicatedsandboxreadproviderstatus_hostackindicatesmissingreadprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionStatus.ts", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionstatus_resolveingestionstatus", + "target": "apps_electron_vite_project_electron_main_email_dedicatedsandboxreadproviderstatus_hostackindicatesmissingreadprovider" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionStatus.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionstatus", + "target": "apps_electron_vite_project_electron_main_email_dedicatedsandboxreadproviderstatus_hostackindicatespollunreachable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionStatus.ts", + "source_location": "L165", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionstatus_resolveingestionstatus", + "target": "apps_electron_vite_project_electron_main_email_dedicatedsandboxreadproviderstatus_hostackindicatespollunreachable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionStatus.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionstatus", + "target": "apps_electron_vite_project_electron_main_email_dedicatedsandboxreadproviderstatus_sandboxdedicatedmissingreadprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionStatus.ts", + "source_location": "L173", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionstatus_resolveingestionstatus", + "target": "apps_electron_vite_project_electron_main_email_dedicatedsandboxreadproviderstatus_sandboxdedicatedmissingreadprovider" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/diagnoseImapStandalone.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_diagnoseimapstandalone", + "target": "apps_electron_vite_project_electron_main_email_diagnoseimapstandalone_diagnoseimapparams", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/diagnoseImapStandalone.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_diagnoseimapstandalone", + "target": "apps_electron_vite_project_electron_main_email_diagnoseimapstandalone_diagnoseimapresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/diagnoseImapStandalone.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_diagnoseimapstandalone", + "target": "apps_electron_vite_project_electron_main_email_diagnoseimapstandalone_rundiagnoseimapstandalone", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/diagnoseImapStandalone.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_diagnoseimapstandalone", + "target": "apps_electron_vite_project_electron_main_email_domain_securitymodenormalize", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/diagnoseImapStandalone.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_diagnoseimapstandalone", + "target": "apps_electron_vite_project_electron_main_email_domain_securitymodenormalize_imapusesimplicittls", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/diagnoseImapStandalone.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_diagnoseimapstandalone", + "target": "apps_electron_vite_project_electron_main_email_emaildebug", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/diagnoseImapStandalone.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_diagnoseimapstandalone", + "target": "apps_electron_vite_project_electron_main_email_emaildebug_emaildebuglog", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_diagnoseimapstandalone", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/diagnoseImapStandalone.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_diagnoseimapstandalone_rundiagnoseimapstandalone", + "target": "apps_electron_vite_project_electron_main_email_domain_securitymodenormalize_imapusesimplicittls" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/diagnoseImapStandalone.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_diagnoseimapstandalone_rundiagnoseimapstandalone", + "target": "apps_electron_vite_project_electron_main_email_emaildebug_emaildebuglog" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_diagnoseimapstandalone_rundiagnoseimapstandalone", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L881", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registeremailhandlers", + "target": "apps_electron_vite_project_electron_main_email_diagnoseimapstandalone_rundiagnoseimapstandalone" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/accountAggregate.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_accountaggregate", + "target": "apps_electron_vite_project_electron_main_email_domain_accountaggregate_provideraccountdomainview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/accountAggregate.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_accountaggregate", + "target": "apps_electron_vite_project_electron_main_email_domain_accountaggregate_provideraccountdomainviewfromconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/accountAggregate.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_accountaggregate", + "target": "apps_electron_vite_project_electron_main_email_domain_accountaggregate_provideraccountdomainviewsallslices", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/accountAggregate.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_accountaggregate", + "target": "apps_electron_vite_project_electron_main_email_domain_accountidentity", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/accountAggregate.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_accountaggregate", + "target": "apps_electron_vite_project_electron_main_email_domain_accountidentity_connectedaccountidentity", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/accountAggregate.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_accountaggregate", + "target": "apps_electron_vite_project_electron_main_email_domain_accountidentity_connectedaccountidentityfromconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/accountAggregate.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_accountaggregate", + "target": "apps_electron_vite_project_electron_main_email_domain_capabilitiesregistry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/accountAggregate.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_accountaggregate", + "target": "apps_electron_vite_project_electron_main_email_domain_capabilitiesregistry_getprovideraccountcapabilities", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/accountAggregate.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_accountaggregate", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxresolution", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/accountAggregate.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_accountaggregate", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxresolution_getdefaultmailboxslice", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/accountAggregate.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_accountaggregate", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxresolution_resolvedmailboxslice", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/accountAggregate.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_accountaggregate", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxresolution_resolvemailboxesforaccount", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/accountAggregate.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_accountaggregate", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxsyncplan", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/accountAggregate.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_accountaggregate", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxsyncplan_mailboxsyncplan", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/accountAggregate.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_accountaggregate", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxsyncplan_mailboxsyncplanfromlegacyfolders", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/accountAggregate.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_accountaggregate", + "target": "apps_electron_vite_project_electron_main_email_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/accountAggregate.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_accountaggregate", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/accountAggregate.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_accountaggregate", + "target": "apps_electron_vite_project_electron_main_email_types_provideraccountcapabilities", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/index.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_index", + "target": "apps_electron_vite_project_electron_main_email_domain_accountaggregate", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/accountAggregate.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_accountaggregate_provideraccountdomainview", + "target": "apps_electron_vite_project_electron_main_email_domain_accountidentity_connectedaccountidentity", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/accountAggregate.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_accountaggregate_provideraccountdomainview", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxresolution_resolvedmailboxslice", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/accountAggregate.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_accountaggregate_provideraccountdomainview", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxsyncplan_mailboxsyncplan", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/accountAggregate.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_accountaggregate_provideraccountdomainview", + "target": "apps_electron_vite_project_electron_main_email_types_provideraccountcapabilities", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/domain/accountAggregate.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_accountaggregate_provideraccountdomainviewfromconfig", + "target": "apps_electron_vite_project_electron_main_email_domain_accountidentity_connectedaccountidentityfromconfig" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/domain/accountAggregate.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_accountaggregate_provideraccountdomainviewfromconfig", + "target": "apps_electron_vite_project_electron_main_email_domain_capabilitiesregistry_getprovideraccountcapabilities" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/domain/accountAggregate.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_accountaggregate_provideraccountdomainviewfromconfig", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxresolution_getdefaultmailboxslice" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/domain/accountAggregate.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_accountaggregate_provideraccountdomainviewfromconfig", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxresolution_resolvemailboxesforaccount" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/domain/accountAggregate.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_accountaggregate_provideraccountdomainviewfromconfig", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxsyncplan_mailboxsyncplanfromlegacyfolders" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/domain/accountAggregate.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_accountaggregate_provideraccountdomainviewsallslices", + "target": "apps_electron_vite_project_electron_main_email_domain_accountidentity_connectedaccountidentityfromconfig" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/domain/accountAggregate.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_accountaggregate_provideraccountdomainviewsallslices", + "target": "apps_electron_vite_project_electron_main_email_domain_capabilitiesregistry_getprovideraccountcapabilities" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/domain/accountAggregate.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_accountaggregate_provideraccountdomainviewsallslices", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxresolution_resolvemailboxesforaccount" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/domain/accountAggregate.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_accountaggregate_provideraccountdomainviewsallslices", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxsyncplan_mailboxsyncplanfromlegacyfolders" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/accountIdentity.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_accountidentity", + "target": "apps_electron_vite_project_electron_main_email_domain_accountidentity_connectedaccountidentity", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/accountIdentity.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_accountidentity", + "target": "apps_electron_vite_project_electron_main_email_domain_accountidentity_connectedaccountidentityfromconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/accountIdentity.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_accountidentity", + "target": "apps_electron_vite_project_electron_main_email_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/accountIdentity.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_accountidentity", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/index.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_index", + "target": "apps_electron_vite_project_electron_main_email_domain_accountidentity", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/accountIdentity.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_accountidentity_connectedaccountidentity", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/accountRowPicker.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_accountrowpicker", + "target": "apps_electron_vite_project_electron_main_email_domain_accountrowpicker_pickdefaultemailaccountrowid", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_index", + "target": "apps_electron_vite_project_electron_main_email_domain_accountrowpicker", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L201", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_domain_accountrowpicker", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L201", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_domain_accountrowpicker_pickdefaultemailaccountrowid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L1526", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registeremailhandlers", + "target": "apps_electron_vite_project_electron_main_email_domain_accountrowpicker_pickdefaultemailaccountrowid" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/capabilitiesRegistry.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_capabilitiesregistry", + "target": "apps_electron_vite_project_electron_main_email_domain_capabilitiesregistry_getprovideraccountcapabilities", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/capabilitiesRegistry.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_capabilitiesregistry", + "target": "apps_electron_vite_project_electron_main_email_domain_capabilitiesregistry_provider_implementation_profile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/capabilitiesRegistry.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_capabilitiesregistry", + "target": "apps_electron_vite_project_electron_main_email_domain_capabilitiesregistry_providerimplementationprofile", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/capabilitiesRegistry.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_capabilitiesregistry", + "target": "apps_electron_vite_project_electron_main_email_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/capabilitiesRegistry.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_capabilitiesregistry", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/capabilitiesRegistry.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_capabilitiesregistry", + "target": "apps_electron_vite_project_electron_main_email_types_emailprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/capabilitiesRegistry.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_capabilitiesregistry", + "target": "apps_electron_vite_project_electron_main_email_types_provideraccountcapabilities", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/index.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_index", + "target": "apps_electron_vite_project_electron_main_email_domain_capabilitiesregistry", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_domain_capabilitiesregistry", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/capabilitiesRegistry.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_capabilitiesregistry_providerimplementationprofile", + "target": "apps_electron_vite_project_electron_main_email_types_emailprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_domain_capabilitiesregistry_getprovideraccountcapabilities", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2853", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_toaccountinfo", + "target": "apps_electron_vite_project_electron_main_email_domain_capabilitiesregistry_getprovideraccountcapabilities" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/customImapSmtpPayloadValidation.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_customimapsmtppayloadvalidation_test", + "target": "apps_electron_vite_project_electron_main_email_domain_customimapsmtppayloadvalidation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/customImapSmtpPayloadValidation.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_customimapsmtppayloadvalidation_test", + "target": "apps_electron_vite_project_electron_main_email_domain_customimapsmtppayloadvalidation_test_validbase", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/customImapSmtpPayloadValidation.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_customimapsmtppayloadvalidation_test", + "target": "apps_electron_vite_project_electron_main_email_domain_customimapsmtppayloadvalidation_validatecustomimapsmtppayload", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/customImapSmtpPayloadValidation.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_customimapsmtppayloadvalidation_test", + "target": "apps_electron_vite_project_electron_main_email_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/customImapSmtpPayloadValidation.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_customimapsmtppayloadvalidation_test", + "target": "apps_electron_vite_project_electron_main_email_types_customimapsmtpconnectpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/customImapSmtpPayloadValidation.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_customimapsmtppayloadvalidation", + "target": "apps_electron_vite_project_electron_main_email_domain_customimapsmtppayloadvalidation_assertoptionalimaplifecyclemailbox", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/customImapSmtpPayloadValidation.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_customimapsmtppayloadvalidation", + "target": "apps_electron_vite_project_electron_main_email_domain_customimapsmtppayloadvalidation_assertport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/customImapSmtpPayloadValidation.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_customimapsmtppayloadvalidation", + "target": "apps_electron_vite_project_electron_main_email_domain_customimapsmtppayloadvalidation_validatecustomimapsmtppayload", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/customImapSmtpPayloadValidation.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_customimapsmtppayloadvalidation", + "target": "apps_electron_vite_project_electron_main_email_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/customImapSmtpPayloadValidation.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_customimapsmtppayloadvalidation", + "target": "apps_electron_vite_project_electron_main_email_types_customimapsmtpconnectpayload", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_domain_customimapsmtppayloadvalidation", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/customImapSmtpPayloadValidation.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_customimapsmtppayloadvalidation_validatecustomimapsmtppayload", + "target": "apps_electron_vite_project_electron_main_email_domain_customimapsmtppayloadvalidation_assertport", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/customImapSmtpPayloadValidation.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_customimapsmtppayloadvalidation_validatecustomimapsmtppayload", + "target": "apps_electron_vite_project_electron_main_email_domain_customimapsmtppayloadvalidation_assertoptionalimaplifecyclemailbox", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_domain_customimapsmtppayloadvalidation_validatecustomimapsmtppayload", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2443", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectcustomimapsmtpaccount", + "target": "apps_electron_vite_project_electron_main_email_domain_customimapsmtppayloadvalidation_validatecustomimapsmtppayload" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/imapLegacyFolders.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_imaplegacyfolders", + "target": "apps_electron_vite_project_electron_main_email_domain_imaplegacyfolders_imapfoldersmatchexact", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/imapLegacyFolders.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_imaplegacyfolders", + "target": "apps_electron_vite_project_electron_main_email_domain_imaplegacyfolders_islegacyimapmailboxlabel", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap", + "target": "apps_electron_vite_project_electron_main_email_domain_imaplegacyfolders", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap", + "target": "apps_electron_vite_project_electron_main_email_domain_imaplegacyfolders_imapfoldersmatchexact", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapfolderlisthasexactmailbox", + "target": "apps_electron_vite_project_electron_main_email_domain_imaplegacyfolders_imapfoldersmatchexact", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1498", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_expandpullfolderswithdirectinboxchildren", + "target": "apps_electron_vite_project_electron_main_email_domain_imaplegacyfolders_imapfoldersmatchexact" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1468", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapfindexistingmailboxpathforlabel", + "target": "apps_electron_vite_project_electron_main_email_domain_imaplegacyfolders_imapfoldersmatchexact" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap", + "target": "apps_electron_vite_project_electron_main_email_domain_imaplegacyfolders_islegacyimapmailboxlabel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapfolderlisthasexactmailbox", + "target": "apps_electron_vite_project_electron_main_email_domain_imaplegacyfolders_islegacyimapmailboxlabel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1657", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_debuglistremotemailboxeswithstatus", + "target": "apps_electron_vite_project_electron_main_email_domain_imaplegacyfolders_islegacyimapmailboxlabel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1582", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_expandpullfoldersforsync", + "target": "apps_electron_vite_project_electron_main_email_domain_imaplegacyfolders_islegacyimapmailboxlabel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1520", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_expandpullfolderswithdirectinboxchildren", + "target": "apps_electron_vite_project_electron_main_email_domain_imaplegacyfolders_islegacyimapmailboxlabel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1464", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapfindexistingmailboxpathforlabel", + "target": "apps_electron_vite_project_electron_main_email_domain_imaplegacyfolders_islegacyimapmailboxlabel" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/imapPullFolders.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_imappullfolders", + "target": "apps_electron_vite_project_electron_main_email_domain_imappullfolders_resolveimappullfolders", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/imapPullFolders.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_imappullfolders", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/imapPullFolders.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_imappullfolders", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_resolveorchestratorremotenames", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/imapPullFolders.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_imappullfolders", + "target": "apps_electron_vite_project_electron_main_email_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/imapPullFolders.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_imappullfolders", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_domain_imappullfolders", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/domain/imapPullFolders.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_imappullfolders_resolveimappullfolders", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_resolveorchestratorremotenames" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_domain_imappullfolders_resolveimappullfolders", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L672", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator_syncaccountemailsimpl", + "target": "apps_electron_vite_project_electron_main_email_domain_imappullfolders_resolveimappullfolders", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/index.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_index", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxresolution", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/index.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_index", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxsyncplan", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/index.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_index", + "target": "apps_electron_vite_project_electron_main_email_domain_remotelifecycleabstraction", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/index.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_index", + "target": "apps_electron_vite_project_electron_main_email_domain_index", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxAccountDedupe.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_test", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxAccountDedupe.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_test", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_dedupemailboxconfigsfordisplay", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxAccountDedupe.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_test", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_findduplicatemailboxgroups", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxAccountDedupe.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_test", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_findexistingmailboxaccountinlist", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxAccountDedupe.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_test", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_mailboxidentitykey", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxAccountDedupe.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_test", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_pickmailboxwinnerrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxAccountDedupe.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_test", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_test_probe", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxAccountDedupe.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_test", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_test_row", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxAccountDedupe.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_test", + "target": "apps_electron_vite_project_electron_main_email_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxAccountDedupe.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_test", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxAccountDedupe.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_dedupemailboxconfigsfordisplay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxAccountDedupe.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_dedupemailboxinfosfordisplay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxAccountDedupe.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_findduplicatemailboxgroups", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxAccountDedupe.ts", + "source_location": "L144", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_findexistingmailboxaccountinlist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxAccountDedupe.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_hasbundledoauth", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxAccountDedupe.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_mailboxduplicategroup", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxAccountDedupe.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_mailboxidentitykey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxAccountDedupe.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_mailboxprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxAccountDedupe.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_normalizemailboxemail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxAccountDedupe.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_pickmailboxwinnerrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxAccountDedupe.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_roletokenprobe", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxAccountDedupe.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_scoremailboxrow", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxAccountDedupe.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe", + "target": "apps_electron_vite_project_electron_main_email_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxAccountDedupe.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxAccountDedupe.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountinfo", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L847", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_collapseduplicatemailboxrowsondisk", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L902", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_listaccounts", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxAccountDedupe.ts", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_findexistingmailboxaccountinlist", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_normalizemailboxemail", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxAccountDedupe.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_mailboxidentitykey", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_normalizemailboxemail", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L883", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_collapseduplicatemailboxrowsondisk", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_normalizemailboxemail" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxAccountDedupe.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_dedupemailboxconfigsfordisplay", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_mailboxidentitykey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxAccountDedupe.ts", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_findduplicatemailboxgroups", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_mailboxidentitykey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxAccountDedupe.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_scoremailboxrow", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_hasbundledoauth", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxAccountDedupe.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_pickmailboxwinnerrow", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_scoremailboxrow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxAccountDedupe.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_dedupemailboxconfigsfordisplay", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_pickmailboxwinnerrow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxAccountDedupe.ts", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_findduplicatemailboxgroups", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_pickmailboxwinnerrow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxAccountDedupe.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_dedupemailboxinfosfordisplay", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_dedupemailboxconfigsfordisplay", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L917", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_listaccounts", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_dedupemailboxconfigsfordisplay" + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxAccountDedupe.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_mailboxduplicategroup", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L868", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_collapseduplicatemailboxrowsondisk", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_findduplicatemailboxgroups" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_findexistingmailboxaccountinlist", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L836", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_findexistingmailboxaccount", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxaccountdedupe_findexistingmailboxaccountinlist" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxLifecycleMapping.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_test", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxLifecycleMapping.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_test", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_default_orchestrator_remote_names", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxLifecycleMapping.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_test", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_describeorchestratorremoteoperation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxLifecycleMapping.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_test", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_orchestratorremotefromimaplifecyclefields", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxLifecycleMapping.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_test", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_remote_deletion_targets", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxLifecycleMapping.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_test", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_resolveorchestratorremotenames", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxLifecycleMapping.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_test", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_test_baseaccount", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxLifecycleMapping.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_test", + "target": "apps_electron_vite_project_electron_main_email_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxLifecycleMapping.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_test", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxLifecycleMapping.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_coalescetrim", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxLifecycleMapping.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_default_orchestrator_remote_names", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxLifecycleMapping.ts", + "source_location": "L151", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_describeorchestratorremoteoperation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxLifecycleMapping.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_orchestratorremotefromimaplifecyclefields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxLifecycleMapping.ts", + "source_location": "L170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_remote_deletion_targets", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxLifecycleMapping.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_resolvedorchestratorremotenames", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxLifecycleMapping.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_resolveorchestratorremotenames", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxLifecycleMapping.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxLifecycleMapping.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes_orchestratorremoteoperation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxLifecycleMapping.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping", + "target": "apps_electron_vite_project_electron_main_email_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxLifecycleMapping.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxLifecycleMapping.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping", + "target": "apps_electron_vite_project_electron_main_email_types_orchestratorremotenamesinput", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/remoteLifecycleAbstraction.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_remotelifecycleabstraction", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_resolvedorchestratorremotenames", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxLifecycleMapping.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_resolveorchestratorremotenames", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_coalescetrim", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/remoteLifecycleAbstraction.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_remotelifecycleabstraction", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_resolveorchestratorremotenames", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/domain/remoteLifecycleAbstraction.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_remotelifecycleabstraction_resolveremotelifecyclesnapshot", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_resolveorchestratorremotenames" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_resolveorchestratorremotenames", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1150", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_enqueuefullremotesync", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_resolveorchestratorremotenames" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1018", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_enqueueremoteopsforlocallifecyclestate", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_resolveorchestratorremotenames" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_resolveorchestratorremotenames", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L540", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_applyorchestratorremoteoperation", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_resolveorchestratorremotenames" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_resolveorchestratorremotenames", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1744", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_applyorchestratorremoteoperation", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_resolveorchestratorremotenames" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1268", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_consolidatelifecyclefolders", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_resolveorchestratorremotenames" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1621", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_debuglistremotemailboxeswithstatus", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_resolveorchestratorremotenames" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1246", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_deletemessage", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_resolveorchestratorremotenames" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1502", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_expandpullfolderswithdirectinboxchildren", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_resolveorchestratorremotenames" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_fetchmessage", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_resolveorchestratorremotenames" + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L502", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imaplifecyclemailboxcandidatesresolved", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_resolveorchestratorremotenames", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1970", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imaplocatemessageformove", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_resolveorchestratorremotenames" + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1927", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imaporderedsearchmailboxes", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_resolveorchestratorremotenames", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1902", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imappathmatchescanonicallifecycle", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_resolveorchestratorremotenames", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1699", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_validatelifecycleremoteboxes", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_resolveorchestratorremotenames" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_resolveorchestratorremotenames", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L623", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_applyorchestratorremoteoperation", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_resolveorchestratorremotenames" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_resolveorchestratorremotenames", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L611", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_applyorchestratorremoteoperation", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_resolveorchestratorremotenames" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L590", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_deletemessage", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_resolveorchestratorremotenames" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_orchestratorremotefromimaplifecyclefields", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2466", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectcustomimapsmtpaccount", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_orchestratorremotefromimaplifecyclefields" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_remote_deletion_targets", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxlifecyclemapping_remote_deletion_targets", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxResolution.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxresolution", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxresolution_getdefaultmailboxslice", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxResolution.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxresolution", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxresolution_getfoldersforaccountoperation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxResolution.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxresolution", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxresolution_mergefolders", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxResolution.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxresolution", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxresolution_pickimplicitlabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxResolution.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxresolution", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxresolution_resolvedmailboxslice", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxResolution.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxresolution", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxresolution_resolvemailboxesforaccount", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxResolution.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxresolution", + "target": "apps_electron_vite_project_electron_main_email_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxResolution.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxresolution", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxResolution.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxresolution", + "target": "apps_electron_vite_project_electron_main_email_types_providermailboxslice", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxresolution", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxResolution.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxresolution_resolvedmailboxslice", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxResolution.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxresolution_resolvemailboxesforaccount", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxresolution_mergefolders", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxResolution.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxresolution_resolvemailboxesforaccount", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxresolution_pickimplicitlabel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxResolution.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxresolution_getdefaultmailboxslice", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxresolution_resolvemailboxesforaccount", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxResolution.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxresolution_getfoldersforaccountoperation", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxresolution_resolvemailboxesforaccount", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxresolution_resolvemailboxesforaccount", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2854", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_toaccountinfo", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxresolution_resolvemailboxesforaccount" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxResolution.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxresolution_getfoldersforaccountoperation", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxresolution_getdefaultmailboxslice", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxresolution_getfoldersforaccountoperation", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1412", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_listmessages", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxresolution_getfoldersforaccountoperation" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2838", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_toaccountinfo", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxresolution_getfoldersforaccountoperation" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxSyncPlan.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxsyncplan", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxsyncplan_legacyfoldersfrommailboxsyncplan", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxSyncPlan.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxsyncplan", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxsyncplan_mailboxsyncplan", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxSyncPlan.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxsyncplan", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxsyncplan_mailboxsyncplanfromlegacyfolders", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxSyncPlan.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxsyncplan", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxsyncplan_mailboxsynctarget", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxSyncPlan.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxsyncplan", + "target": "apps_electron_vite_project_electron_main_email_domain_mailboxsyncplan_mailboxsynctargetrole", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxSyncPlan.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxsyncplan", + "target": "apps_electron_vite_project_electron_main_email_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/mailboxSyncPlan.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_mailboxsyncplan", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/orchestratorRemoteTypes.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes_orchestratorremoteapplycontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/orchestratorRemoteTypes.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes_orchestratorremoteapplyresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/orchestratorRemoteTypes.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes_orchestratorremoteoperation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/remoteLifecycleAbstraction.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_remotelifecycleabstraction", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L265", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_base", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/remoteLifecycleAbstraction.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_remotelifecycleabstraction", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes_orchestratorremoteoperation", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/remoteLifecycleAbstraction.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_remotelifecycleabstraction_remotelifecycleadapter_applyremotelifecycleoperation", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes_orchestratorremoteoperation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes_orchestratorremoteoperation", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1544", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_applyorchestratorremoteoperation", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes_orchestratorremoteoperation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes_orchestratorremoteoperation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L265", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes_orchestratorremoteoperation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_base", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes_orchestratorremoteoperation", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider_applyorchestratorremoteoperation", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes_orchestratorremoteoperation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes_orchestratorremoteoperation", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L531", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_applyorchestratorremoteoperation", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes_orchestratorremoteoperation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes_orchestratorremoteoperation", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1736", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_applyorchestratorremoteoperation", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes_orchestratorremoteoperation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes_orchestratorremoteoperation", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L614", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_applyorchestratorremoteoperation", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes_orchestratorremoteoperation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes_orchestratorremoteoperation", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L604", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_applyorchestratorremoteoperation", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes_orchestratorremoteoperation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes_orchestratorremoteapplycontext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1544", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_applyorchestratorremoteoperation", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes_orchestratorremoteapplycontext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1526", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_deletemessage", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes_orchestratorremoteapplycontext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L265", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes_orchestratorremoteapplycontext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_base", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes_orchestratorremoteapplycontext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider_applyorchestratorremoteoperation", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes_orchestratorremoteapplycontext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L209", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider_deletemessage", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes_orchestratorremoteapplycontext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes_orchestratorremoteapplycontext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1736", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_applyorchestratorremoteoperation", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes_orchestratorremoteapplycontext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1244", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_deletemessage", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes_orchestratorremoteapplycontext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes_orchestratorremoteapplycontext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L604", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_applyorchestratorremoteoperation", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes_orchestratorremoteapplycontext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L588", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_deletemessage", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes_orchestratorremoteapplycontext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/remoteLifecycleAbstraction.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_remotelifecycleabstraction", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes_orchestratorremoteapplyresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/remoteLifecycleAbstraction.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_remotelifecycleabstraction_remotelifecycleadapter_applyremotelifecycleoperation", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes_orchestratorremoteapplyresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes_orchestratorremoteapplyresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1544", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_applyorchestratorremoteoperation", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes_orchestratorremoteapplyresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes_orchestratorremoteapplyresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L265", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes_orchestratorremoteapplyresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_base", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes_orchestratorremoteapplyresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider_applyorchestratorremoteoperation", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes_orchestratorremoteapplyresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes_orchestratorremoteapplyresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L531", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_applyorchestratorremoteoperation", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes_orchestratorremoteapplyresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes_orchestratorremoteapplyresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1736", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_applyorchestratorremoteoperation", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes_orchestratorremoteapplyresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes_orchestratorremoteapplyresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L614", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_applyorchestratorremoteoperation", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes_orchestratorremoteapplyresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes_orchestratorremoteapplyresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L604", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_applyorchestratorremoteoperation", + "target": "apps_electron_vite_project_electron_main_email_domain_orchestratorremotetypes_orchestratorremoteapplyresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/remoteLifecycleAbstraction.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_remotelifecycleabstraction_test", + "target": "apps_electron_vite_project_electron_main_email_domain_remotelifecycleabstraction", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/remoteLifecycleAbstraction.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_remotelifecycleabstraction_test", + "target": "apps_electron_vite_project_electron_main_email_domain_remotelifecycleabstraction_canonical_lifecycle_bucket_labels", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/remoteLifecycleAbstraction.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_remotelifecycleabstraction_test", + "target": "apps_electron_vite_project_electron_main_email_domain_remotelifecycleabstraction_remotelifecyclebackendforprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/remoteLifecycleAbstraction.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_remotelifecycleabstraction_test", + "target": "apps_electron_vite_project_electron_main_email_domain_remotelifecycleabstraction_resolveremotelifecyclesnapshot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/remoteLifecycleAbstraction.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_remotelifecycleabstraction_test", + "target": "apps_electron_vite_project_electron_main_email_domain_remotelifecycleabstraction_test_baseaccount", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/remoteLifecycleAbstraction.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_remotelifecycleabstraction_test", + "target": "apps_electron_vite_project_electron_main_email_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/remoteLifecycleAbstraction.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_remotelifecycleabstraction_test", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/remoteLifecycleAbstraction.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_remotelifecycleabstraction", + "target": "apps_electron_vite_project_electron_main_email_domain_remotelifecycleabstraction_canonical_lifecycle_bucket_labels", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/remoteLifecycleAbstraction.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_remotelifecycleabstraction", + "target": "apps_electron_vite_project_electron_main_email_domain_remotelifecycleabstraction_remotelifecycleadapter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/remoteLifecycleAbstraction.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_remotelifecycleabstraction", + "target": "apps_electron_vite_project_electron_main_email_domain_remotelifecycleabstraction_remotelifecyclebackendforprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/remoteLifecycleAbstraction.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_remotelifecycleabstraction", + "target": "apps_electron_vite_project_electron_main_email_domain_remotelifecycleabstraction_remotelifecyclebackendkind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/remoteLifecycleAbstraction.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_remotelifecycleabstraction", + "target": "apps_electron_vite_project_electron_main_email_domain_remotelifecycleabstraction_resolvedremotelifecyclesnapshot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/remoteLifecycleAbstraction.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_remotelifecycleabstraction", + "target": "apps_electron_vite_project_electron_main_email_domain_remotelifecycleabstraction_resolveremotelifecyclesnapshot", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/remoteLifecycleAbstraction.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_remotelifecycleabstraction", + "target": "apps_electron_vite_project_electron_main_email_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/remoteLifecycleAbstraction.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_remotelifecycleabstraction", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/remoteLifecycleAbstraction.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_remotelifecycleabstraction", + "target": "apps_electron_vite_project_electron_main_email_types_emailprovider", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/remoteLifecycleAbstraction.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_remotelifecycleabstraction_resolvedremotelifecyclesnapshot", + "target": "apps_electron_vite_project_electron_main_email_types_emailprovider", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/remoteLifecycleAbstraction.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_remotelifecycleabstraction_remotelifecycleadapter", + "target": "apps_electron_vite_project_electron_main_email_domain_remotelifecycleabstraction_remotelifecycleadapter_applyremotelifecycleoperation", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/remoteLifecycleAbstraction.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_remotelifecycleabstraction_remotelifecycleadapter", + "target": "apps_electron_vite_project_electron_main_email_domain_remotelifecycleabstraction_remotelifecycleadapter_ensureremotelifecycletargets", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/remoteLifecycleAbstraction.ts", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_remotelifecycleabstraction_remotelifecycleadapter", + "target": "apps_electron_vite_project_electron_main_email_domain_remotelifecycleabstraction_remotelifecycleadapter_reconcileremotelifecyclestate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/securityModeNormalize.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_securitymodenormalize_test", + "target": "apps_electron_vite_project_electron_main_email_domain_securitymodenormalize", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/securityModeNormalize.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_securitymodenormalize_test", + "target": "apps_electron_vite_project_electron_main_email_domain_securitymodenormalize_imapusesimplicittls", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/securityModeNormalize.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_securitymodenormalize_test", + "target": "apps_electron_vite_project_electron_main_email_domain_securitymodenormalize_normalizesecuritymode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/securityModeNormalize.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_securitymodenormalize", + "target": "apps_electron_vite_project_electron_main_email_domain_securitymodenormalize_imapusesimplicittls", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/securityModeNormalize.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_securitymodenormalize", + "target": "apps_electron_vite_project_electron_main_email_domain_securitymodenormalize_normalizesecuritymode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/securityModeNormalize.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_securitymodenormalize", + "target": "apps_electron_vite_project_electron_main_email_domain_securitymodenormalize_normkey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/securityModeNormalize.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_securitymodenormalize", + "target": "apps_electron_vite_project_electron_main_email_domain_securitymodenormalize_smtptransporttlsflags", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/securityModeNormalize.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_securitymodenormalize", + "target": "apps_electron_vite_project_electron_main_email_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/securityModeNormalize.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_securitymodenormalize", + "target": "apps_electron_vite_project_electron_main_email_types_securitymode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_domain_securitymodenormalize", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap", + "target": "apps_electron_vite_project_electron_main_email_domain_securitymodenormalize", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imapFetchReliable.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imapfetchreliable", + "target": "apps_electron_vite_project_electron_main_email_domain_securitymodenormalize", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/securityModeNormalize.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_securitymodenormalize_imapusesimplicittls", + "target": "apps_electron_vite_project_electron_main_email_domain_securitymodenormalize_normkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/securityModeNormalize.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_securitymodenormalize_normalizesecuritymode", + "target": "apps_electron_vite_project_electron_main_email_domain_securitymodenormalize_normkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/securityModeNormalize.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_securitymodenormalize_smtptransporttlsflags", + "target": "apps_electron_vite_project_electron_main_email_domain_securitymodenormalize_normkey", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap", + "target": "apps_electron_vite_project_electron_main_email_domain_securitymodenormalize_imapusesimplicittls", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L253", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_connect", + "target": "apps_electron_vite_project_electron_main_email_domain_securitymodenormalize_imapusesimplicittls" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imapFetchReliable.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imapfetchreliable", + "target": "apps_electron_vite_project_electron_main_email_domain_securitymodenormalize_imapusesimplicittls", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/imapFetchReliable.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imapfetchreliable_imapfetchreliable", + "target": "apps_electron_vite_project_electron_main_email_domain_securitymodenormalize_imapusesimplicittls" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap", + "target": "apps_electron_vite_project_electron_main_email_domain_securitymodenormalize_smtptransporttlsflags", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L198", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_createsmtptransport", + "target": "apps_electron_vite_project_electron_main_email_domain_securitymodenormalize_smtptransporttlsflags" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_domain_securitymodenormalize_normalizesecuritymode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2462", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectcustomimapsmtpaccount", + "target": "apps_electron_vite_project_electron_main_email_domain_securitymodenormalize_normalizesecuritymode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2394", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectimapaccount", + "target": "apps_electron_vite_project_electron_main_email_domain_securitymodenormalize_normalizesecuritymode" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/smartSyncPrefs.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_smartsyncprefs", + "target": "apps_electron_vite_project_electron_main_email_domain_smartsyncprefs_geteffectivesyncwindowdays", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/smartSyncPrefs.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_smartsyncprefs", + "target": "apps_electron_vite_project_electron_main_email_domain_smartsyncprefs_getmaxmessagesperpull", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/smartSyncPrefs.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_smartsyncprefs", + "target": "apps_electron_vite_project_electron_main_email_domain_smartsyncprefs_getremotesyncreceivedatlowerboundiso", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/smartSyncPrefs.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_smartsyncprefs", + "target": "apps_electron_vite_project_electron_main_email_emaildebug", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/smartSyncPrefs.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_smartsyncprefs", + "target": "apps_electron_vite_project_electron_main_email_emaildebug_emaildebuglog", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/smartSyncPrefs.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_smartsyncprefs", + "target": "apps_electron_vite_project_electron_main_email_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/smartSyncPrefs.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_smartsyncprefs", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_domain_smartsyncprefs", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_domain_smartsyncprefs", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/domain/smartSyncPrefs.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_smartsyncprefs_geteffectivesyncwindowdays", + "target": "apps_electron_vite_project_electron_main_email_emaildebug_emaildebuglog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/smartSyncPrefs.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_smartsyncprefs_getremotesyncreceivedatlowerboundiso", + "target": "apps_electron_vite_project_electron_main_email_domain_smartsyncprefs_geteffectivesyncwindowdays", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_domain_smartsyncprefs_geteffectivesyncwindowdays", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L552", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator_syncaccountemailsimpl", + "target": "apps_electron_vite_project_electron_main_email_domain_smartsyncprefs_geteffectivesyncwindowdays", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_domain_smartsyncprefs_getmaxmessagesperpull", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L553", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator_syncaccountemailsimpl", + "target": "apps_electron_vite_project_electron_main_email_domain_smartsyncprefs_getmaxmessagesperpull", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_domain_smartsyncprefs_getremotesyncreceivedatlowerboundiso", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1155", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_enqueuefullremotesync", + "target": "apps_electron_vite_project_electron_main_email_domain_smartsyncprefs_getremotesyncreceivedatlowerboundiso" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/syncLastSyncAnchorPolicy.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_synclastsyncanchorpolicy_test", + "target": "apps_electron_vite_project_electron_main_email_domain_synclastsyncanchorpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/syncLastSyncAnchorPolicy.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_synclastsyncanchorpolicy_test", + "target": "apps_electron_vite_project_electron_main_email_domain_synclastsyncanchorpolicy_shouldskipadvancinglastsyncat", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/domain/syncLastSyncAnchorPolicy.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_domain_synclastsyncanchorpolicy", + "target": "apps_electron_vite_project_electron_main_email_domain_synclastsyncanchorpolicy_shouldskipadvancinglastsyncat", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_domain_synclastsyncanchorpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_domain_synclastsyncanchorpolicy_shouldskipadvancinglastsyncat", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L972", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator_syncaccountemailsimpl", + "target": "apps_electron_vite_project_electron_main_email_domain_synclastsyncanchorpolicy_shouldskipadvancinglastsyncat", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/emailAuthErrors.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_emailautherrors", + "target": "apps_electron_vite_project_electron_main_email_emailautherrors_islikelyemailautherror", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_emailautherrors", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L236", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_emailautherrors", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_emailautherrors", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_emailautherrors_islikelyemailautherror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1272", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_testconnection", + "target": "apps_electron_vite_project_electron_main_email_emailautherrors_islikelyemailautherror" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L236", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_emailautherrors_islikelyemailautherror", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_emailautherrors_islikelyemailautherror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L1057", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator_syncaccountemailsimpl", + "target": "apps_electron_vite_project_electron_main_email_emailautherrors_islikelyemailautherror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/emailDebug.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_emaildebug", + "target": "apps_electron_vite_project_electron_main_email_emaildebug_debug_gmail_persistence", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/emailDebug.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_emaildebug", + "target": "apps_electron_vite_project_electron_main_email_emaildebug_diagnose_imap_ipc_dev", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/emailDebug.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_emaildebug", + "target": "apps_electron_vite_project_electron_main_email_emaildebug_email_accounts_debug", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/emailDebug.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_emaildebug", + "target": "apps_electron_vite_project_electron_main_email_emaildebug_email_debug", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/emailDebug.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_emaildebug", + "target": "apps_electron_vite_project_electron_main_email_emaildebug_emailaccountsdebuglog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/emailDebug.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_emaildebug", + "target": "apps_electron_vite_project_electron_main_email_emaildebug_emaildebuglog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/emailDebug.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_emaildebug", + "target": "apps_electron_vite_project_electron_main_email_emaildebug_emaildebugwarn", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/emailDebug.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_emaildebug", + "target": "apps_electron_vite_project_electron_main_email_emaildebug_gmailpersistencedebuglog", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_emaildebug", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_emaildebug", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap", + "target": "apps_electron_vite_project_electron_main_email_emaildebug", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_emaildebug", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_emaildebug_email_debug", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_emaildebug_gmailpersistencedebuglog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L412", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_backupaccountsfileifexists", + "target": "apps_electron_vite_project_electron_main_email_emaildebug_gmailpersistencedebuglog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2231", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectgmailaccount", + "target": "apps_electron_vite_project_electron_main_email_emaildebug_gmailpersistencedebuglog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2283", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectoutlookaccount", + "target": "apps_electron_vite_project_electron_main_email_emaildebug_gmailpersistencedebuglog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2327", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectzohoaccount", + "target": "apps_electron_vite_project_electron_main_email_emaildebug_gmailpersistencedebuglog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L432", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_loadaccounts", + "target": "apps_electron_vite_project_electron_main_email_emaildebug_gmailpersistencedebuglog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L668", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_persistemailaccounts", + "target": "apps_electron_vite_project_electron_main_email_emaildebug_gmailpersistencedebuglog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_emaildebug_gmailpersistencedebuglog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L761", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registeremailhandlers", + "target": "apps_electron_vite_project_electron_main_email_emaildebug_gmailpersistencedebuglog" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_emaildebug_diagnose_imap_ipc_dev", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_emaildebug_emaildebuglog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2788", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getconnectedprovider", + "target": "apps_electron_vite_project_electron_main_email_emaildebug_emaildebuglog" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_emaildebug_emaildebuglog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L757", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registeremailhandlers", + "target": "apps_electron_vite_project_electron_main_email_emaildebug_emaildebuglog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L3023", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_emaildebug_emaildebuglog" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap", + "target": "apps_electron_vite_project_electron_main_email_emaildebug_emaildebuglog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L254", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_connect", + "target": "apps_electron_vite_project_electron_main_email_emaildebug_emaildebuglog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L752", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_fetchmessagesbeforeexclusive", + "target": "apps_electron_vite_project_electron_main_email_emaildebug_emaildebuglog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L600", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_fetchmessagessince", + "target": "apps_electron_vite_project_electron_main_email_emaildebug_emaildebuglog" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_emaildebug_emaildebuglog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L467", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator_syncaccountemailsimpl", + "target": "apps_electron_vite_project_electron_main_email_emaildebug_emaildebuglog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_emaildebug_emaildebugwarn", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L384", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator_notepulloutcomeforstuckdetection", + "target": "apps_electron_vite_project_electron_main_email_emaildebug_emaildebugwarn", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L1005", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator_syncaccountemailsimpl", + "target": "apps_electron_vite_project_electron_main_email_emaildebug_emaildebugwarn", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_emaildebug_emailaccountsdebuglog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1702", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_clearorchestratortransientaccounterror", + "target": "apps_electron_vite_project_electron_main_email_emaildebug_emailaccountsdebuglog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2766", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getconnectedprovider", + "target": "apps_electron_vite_project_electron_main_email_emaildebug_emailaccountsdebuglog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L379", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_getaccountspath", + "target": "apps_electron_vite_project_electron_main_email_emaildebug_emailaccountsdebuglog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L427", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_loadaccounts", + "target": "apps_electron_vite_project_electron_main_email_emaildebug_emailaccountsdebuglog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L632", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_persistemailaccounts", + "target": "apps_electron_vite_project_electron_main_email_emaildebug_emailaccountsdebuglog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/extensionMergeRetryBuffer.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_addpendingmerge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/extensionMergeRetryBuffer.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/extensionMergeRetryBuffer.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_clearpendingmergebuffer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/extensionMergeRetryBuffer.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_getallpendingmerges", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/extensionMergeRetryBuffer.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_getpendingmergecount", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/extensionMergeRetryBuffer.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_max_extension_merge_retry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/extensionMergeRetryBuffer.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_pendingextensionmerge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/extensionMergeRetryBuffer.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_removependingmerge", + "confidence_score": 1.0 + }, + { + "relation": "cites", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/extensionMergeRetryBuffer.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_ts_docref_rfc_3339", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_pendingextensionmerge", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_max_extension_merge_retry", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayCapsuleHandler.test.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relaycapsulehandler_test_makex25519pair", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/sealedRelayHostPollTrigger.test.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_sealedrelayhostpolltrigger_test_makex25519pair", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L1537", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registeremailhandlers", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged_attemptquarantinewrite", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L336", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged_mergeextensiondepackaged", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L608", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_detectandroutemessageinline", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L999", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_routeviadepackageseam", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L939", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_toopaquebuffer", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_base64url", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L1427", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_buildrawgmailmessage", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L1520", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_decodebase64url", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L991", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_exchangecodefortokens", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L483", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_fetchattachment", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L1212", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_refreshaccesstoken", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L663", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_sendemail", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L999", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_fetchmessagefromfolder", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L896", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_fetchmessages", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L711", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_fetchmessagesbeforeexclusive", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L551", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_fetchmessagessince", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L2117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_sendemail", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L913", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_exchangecodefortokens", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L571", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_fetchattachment", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L1067", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_graphsinglerequest", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L998", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_refreshaccesstoken", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L828", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_exchangecodefortokens", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L515", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_fetchattachment", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L237", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_refreshaccesstoken", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L169", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_zohoapirequest", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L287", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_gmailrawresponsetosandboxmessage", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestionProduction.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction_isvalidx25519pubb64", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/secure-storage.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_secure_storage_decryptvalue", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/execution/executeToolRequest.ts", + "source_location": "L195", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_executetoolrequest_auditexecution", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/execution/executeToolRequest.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_executetoolrequest_checkparametersize", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L554", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_canonicalrebuild", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L832", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_rebuildcontextblocks", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBlockIndexer.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsuleblockindexer_indexcapsuleblocks", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/contextHash.ts", + "source_location": "L207", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contexthash_timingsafeequal", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L144", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_embeddings_processembeddingqueue", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L521", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_buildcontextblocksfromparamswithpolicy", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L366", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_ensurekeyagreementkeys", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L3206", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L487", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport_buildoutboundrequestdebugsnapshot", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L702", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport_sendcapsuleviahttpwithauth", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/signatureKeys.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_signaturekeys_rawpubkeytospki", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/signatureKeys.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_signaturekeys_signcapsulehash", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/signatureKeys.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_signaturekeys_verifycapsulesignature", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/b81BeapInboxPagination.test.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_b81beapinboxpagination_test_decodecursor", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/qbeapTransports.rig.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_qbeaptransports_rig_test_makemessagepackage", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/coordinationRelayHarness.ts", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_rig_coordinationrelayharness_startrelayharness", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayWire.ts", + "source_location": "L159", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire_assertinferencepayloadwithincapsulelimit", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelay.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelay_trysendhostaip2psignalviaunifiedrelay", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L379", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_handleinternalinferencerequest", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceExecute.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute_runhostinternalinference", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L237", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_handlep2pdcinferencerequestashost", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L212", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_accountemaildomainhintfrombearer", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_jwtexpmsfrombearer", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L544", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_sendhostaip2psignaloutbound", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiSealedInferenceRelayResultHandler.test.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test_makex25519pair", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiUnifiedServiceRpcRelay.test.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiunifiedservicerpcrelay_test_makex25519pair", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L1466", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_sendhostinferenceresult", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/letter/builtinTemplateRenderer.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer_getimagedimensions", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/letter/builtinTemplateRenderer.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer_parsedataurlimage", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/letter/builtinTemplateRenderer.ts", + "source_location": "L414", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer_renderbuiltintemplate", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/letter/legacyDocumentToHtml.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_legacydocumenttohtml_extracttextfromdoc", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L257", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_registerlettercomposeripchandlers", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanProcessing.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscanprocessing_pngdataurltobuffer", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L461", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_readpdfheadersnippet", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/ggufFileUtils.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_gguffileutils_assertggufmagicheader", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/ggufFileUtils.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_gguffileutils_isggufmagicbuffer", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L291", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs_estimatekvbytespertokenfromgguffile", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs_ggufcursor_i64", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs_ggufcursor_str", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs_ggufcursor_u32", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs_ggufcursor_u64", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerLog.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverlog_rotatinglogwriter_write", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/llamaServerArgs.test.ts", + "source_location": "L263", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_llamaserverargs_test_buildsyntheticgguf", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/llamaServerArgs.test.ts", + "source_location": "L257", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_llamaserverargs_test_ggufkvstring", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/llamaServerArgs.test.ts", + "source_location": "L249", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_llamaserverargs_test_ggufkvu32", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/llamaServerArgs.test.ts", + "source_location": "L242", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_llamaserverargs_test_ggufstring", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/ocr/ocr-service.ts", + "source_location": "L344", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice_prepareinput", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db_applysqlcipherkey", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db_derivelegacydek", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db_generateandpersistdek", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L155", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db_loaddekfromkeyfile", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/relayIdentity.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relayidentity_decodejwtsubforlogs", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/relaySync.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaysync_decodejwtaud", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/relaySync.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaysync_decodejwtsub", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/quarantine-blob-storage/index.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_quarantine_blob_storage_index_writequarantineblob", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/quarantine-encrypt/index.ts", + "source_location": "L142", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_quarantine_encrypt_index_decryptquarantineblob", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/quarantine-encrypt/index.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_quarantine_encrypt_index_encryptforquarantine", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L434", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index_computeseal", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L685", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedquery", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index_sealkeycopy", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L248", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index_verifyhmacwithprovider", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L813", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index_verifysealandcontent", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/sealedQueryDualProvider.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_sealedquerydualprovider_test_bindouteronly", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_buildsealedservicerpcaad", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_decodex25519privb64", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_decodex25519pubb64", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L315", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_openservicerpcpayload", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L221", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_sealservicerpcpayload", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/__tests__/sealedServiceRpc.deviceKeyOpen.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_tests_sealedservicerpc_devicekeyopen_test_makex25519pair", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/__tests__/sealedServiceRpc.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_tests_sealedservicerpc_test_makex25519pair", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/validator-process/index.ts", + "source_location": "L235", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_index_handlecontrolmessage", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/validator-process/index.ts", + "source_location": "L202", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_index_verifyseal", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/validator-process/test-session.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_test_session_derivetestsealkey", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/validator-process/test-session.ts", + "source_location": "L142", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_test_session_testvaultservicemock_deriveapplicationkey", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/validator-process/test-session.ts", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_test_session_testvaultservicemock_testsealkey", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/crypto.ts", + "source_location": "L323", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_crypto_buildaad", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/crypto.ts", + "source_location": "L273", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_crypto_constanttimeequal", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/crypto.ts", + "source_location": "L210", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_crypto_decryptfield", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/crypto.ts", + "source_location": "L160", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_crypto_derivefieldkey", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/crypto.ts", + "source_location": "L178", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_crypto_encryptfield", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/crypto.ts", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_crypto_unwrapdek", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/crypto.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_crypto_wrapdek", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/crypto.ts", + "source_location": "L239", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_crypto_zeroize", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L395", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db_createvaultdb", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L450", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db_openvaultdb", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.ts", + "source_location": "L230", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_documentservice_getdocument", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.ts", + "source_location": "L169", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_documentservice_importdocument", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.ts", + "source_location": "L157", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_envelope_decryptrecord", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.ts", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_envelope_encryptrecord", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_envelope_unwraprecorddek", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_envelope_wraprecorddek", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L550", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_getprofiledocumentcontent", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L372", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_ispdfbuffer", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L453", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_uploadprofiledocument", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L412", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc_handlevaultrpc", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc_setupembeddingserviceref", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/security-regression.test.ts", + "source_location": "L314", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_security_regression_test_mocksession_validatetoken", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/security-regression.test.ts", + "source_location": "L224", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_security_regression_test_validatelaunchsecret", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L915", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getitem", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L2119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_loadsettings", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1995", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_loadvaultmetaraw", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L2143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_savesettings", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L2028", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_savevaultmeta", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L2161", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_validatetoken", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/sessionLock.test.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_sessionlock_test_fakevaultservice_simulateunlock", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/sessionPlanExtraction.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_sessionplanextraction_test_makejwt", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/vaultApiKeyService.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultapikeyservice_getanthropicapikeyasync", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/vaultApiKeyService.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultapikeyservice_settingaad", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/auth/pkce.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_pkce_base64url", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_session_decodejwtpayload", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/beap-pod/src/beapStructuralValidator.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_src_beapstructuralvalidator_validatebeapstructure", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/beap-pod/src/podServer.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_src_podserver_readbody", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L651", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server_createrequesthandler", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server_readbody", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/coordination-service/__tests__/coordination.test.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tests_coordination_test_request", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/coordination-service/__tests__/coordination.test.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tests_coordination_test_sealedservicerpccapsule", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/coordination-service/__tests__/pairing-code.test.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tests_pairing_code_test_request", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/coordination-service/__tests__/sandboxEgressGuard.test.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tests_sandboxegressguard_test_request", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/coordination-service/__tests__/sandboxEgressGuard.test.ts", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tests_sandboxegressguard_test_sealedservicerpccapsule", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/ingestion-core/src/ingestor.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_ingestor_ingestinput", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/ingestion-core/src/provenanceMetadata.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_provenancemetadata_buildtransportmetadata", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L974", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator_runvalidation", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L793", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator_runvalidationmessagepackage", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/ingestion-core/__tests__/sealedServiceRpcCapsuleValidation.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_tests_sealedservicerpccapsulevalidation_test_minimalsealedcapsule", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L284", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server_createrequesthandler", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L186", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server_readbody", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/relay-server/__tests__/relay-server.test.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_tests_relay_server_test_request", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/relay-server/__tests__/sandboxEgressGuard.test.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_tests_sandboxegressguard_test_request", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "scripts/session/configure-coordination-worker.cjs", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_configure_coordination_worker_decodejwtpayload", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "test/harness/sealed-storage.ts", + "source_location": "L169", + "weight": 1.0, + "_origin": "ast", + "source": "test_harness_sealed_storage_buildvalidsealforrowid", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "test/harness/sealed-storage.ts", + "source_location": "L219", + "weight": 1.0, + "_origin": "ast", + "source": "test_harness_sealed_storage_createsealedstoragetestcontext", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_buffer" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_addpendingmerge", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L531", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged_mergeextensiondepackaged", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_addpendingmerge" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_removependingmerge", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L591", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged_drainextensionmergebuffer", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_removependingmerge" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_getallpendingmerges", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L583", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged_drainextensionmergebuffer", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_getallpendingmerges" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_getpendingmergecount", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L628", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged_drainextensionmergebuffer", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_getpendingmergecount" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L542", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged_mergeextensiondepackaged", + "target": "apps_electron_vite_project_electron_main_email_extensionmergeretrybuffer_getpendingmergecount" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L155", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_assertimapcredentialsusableforconnect", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L407", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_backupaccountsfileifexists", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L171", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_decryptimapsmtppasswords", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailaccountscredentialdecryptissue", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailaccountspersistencediagnostics", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2961", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L287", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_encryptimapsmtppasswordsfordisk", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_generateid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L402", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_getaccountsbackuppath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L370", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_getaccountspath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L612", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_isaccountidpresentondisk", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L137", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_isdiskencryptedpasswordflag", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_isimapsmtppasswordstillsealedfordisk", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L421", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_loadaccounts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L386", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_logstartuppersistenceonce", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L282", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_mergeimapsmtpcredentials", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_newaccountsyncblock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_normalizenewaccountsyncwindowdays", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L629", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_persistemailaccounts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L608", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_recordloadcredentialdecryptissue", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthresolve", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthresolve_defaultgmailoauthcredentialsource", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthresolve_gmailoauthcredentialsource", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthresolve_resolvegmailoauthforconnect", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_logoauthdiagnostic", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_inlineparseguard", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_inlineparseguard_assertnoinlineparse", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_pdf_extractor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_pdf_extractor_extractpdftext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_pdf_extractor_ispdffile", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_pdf_extractor_supportstextextraction", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_providers_base", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_providers_base_rawemailmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_saveoauthconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_providers_imap", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_saveoutlookoauthconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_sanitizer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_generatesnippet", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_sanitizedisplayname", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_sanitizeemailaddress", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_sanitizehtmltotext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_sanitizesubject", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_secure_storage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_decryptoauthtokens", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_decryptvalue", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_encryptoauthtokens", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_encryptvalue", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_issecurestorageavailable", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_securestorageunavailableerror", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_types_attachmentmeta", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_types_customimapsmtpconnectpayload", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountinfo", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_types_extractedattachmenttext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_types_iemailgateway", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_types_imaplifecyclevalidationresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_types_imapreconnecthints", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_types_messagesearchoptions", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_types_sanitizedmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_types_sanitizedmessagedetail", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_types_sendemailpayload", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_types_sendresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_main_email_types_syncstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_userdatabootstrapstate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway", + "target": "apps_electron_vite_project_electron_userdatabootstrapstate_isuserdatapathbootstrapped", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_gateway", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/index.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_index", + "target": "apps_electron_vite_project_electron_main_email_gateway", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L189", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_gateway", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_email_gateway", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/originMailboxDelete.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_originmailboxdelete", + "target": "apps_electron_vite_project_electron_main_email_gateway", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/remoteDeletion.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_remotedeletion", + "target": "apps_electron_vite_project_electron_main_email_gateway", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestion", + "target": "apps_electron_vite_project_electron_main_email_gateway", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxOpaqueFetchRouter.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxopaquefetchrouter", + "target": "apps_electron_vite_project_electron_main_email_gateway", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_gateway", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L958", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_addaccount", + "target": "apps_electron_vite_project_electron_main_email_gateway_generateid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2528", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectcustomimapsmtpaccount", + "target": "apps_electron_vite_project_electron_main_email_gateway_generateid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2445", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectcustomimapsmtpaccount", + "target": "apps_electron_vite_project_electron_main_email_gateway_normalizenewaccountsyncwindowdays", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_newaccountsyncblock", + "target": "apps_electron_vite_project_electron_main_email_gateway_normalizenewaccountsyncwindowdays", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2492", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectcustomimapsmtpaccount", + "target": "apps_electron_vite_project_electron_main_email_gateway_newaccountsyncblock", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2257", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectgmailaccount", + "target": "apps_electron_vite_project_electron_main_email_gateway_newaccountsyncblock", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2420", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectimapaccount", + "target": "apps_electron_vite_project_electron_main_email_gateway_newaccountsyncblock", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2308", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectoutlookaccount", + "target": "apps_electron_vite_project_electron_main_email_gateway_newaccountsyncblock", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2351", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectzohoaccount", + "target": "apps_electron_vite_project_electron_main_email_gateway_newaccountsyncblock", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_decryptimapsmtppasswords", + "target": "apps_electron_vite_project_electron_main_email_gateway_isdiskencryptedpasswordflag", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_isimapsmtppasswordstillsealedfordisk", + "target": "apps_electron_vite_project_electron_main_email_gateway_isdiskencryptedpasswordflag", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L160", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_assertimapcredentialsusableforconnect", + "target": "apps_electron_vite_project_electron_main_email_gateway_isimapsmtppasswordstillsealedfordisk", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1325", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getimapreconnecthints", + "target": "apps_electron_vite_project_electron_main_email_gateway_isimapsmtppasswordstillsealedfordisk", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L296", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_encryptimapsmtppasswordsfordisk", + "target": "apps_electron_vite_project_electron_main_email_gateway_isimapsmtppasswordstillsealedfordisk", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1784", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_extractattachmenttext", + "target": "apps_electron_vite_project_electron_main_email_gateway_assertimapcredentialsusableforconnect", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1758", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_fetchattachmentbuffer", + "target": "apps_electron_vite_project_electron_main_email_gateway_assertimapcredentialsusableforconnect", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2734", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getconnectedprovider", + "target": "apps_electron_vite_project_electron_main_email_gateway_assertimapcredentialsusableforconnect", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1486", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getmessage", + "target": "apps_electron_vite_project_electron_main_email_gateway_assertimapcredentialsusableforconnect", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1713", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_listattachments", + "target": "apps_electron_vite_project_electron_main_email_gateway_assertimapcredentialsusableforconnect", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1429", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_listmessages", + "target": "apps_electron_vite_project_electron_main_email_gateway_assertimapcredentialsusableforconnect", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2613", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_resolveimappullfoldersexpanded", + "target": "apps_electron_vite_project_electron_main_email_gateway_assertimapcredentialsusableforconnect", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1250", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_testconnection", + "target": "apps_electron_vite_project_electron_main_email_gateway_assertimapcredentialsusableforconnect", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2582", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_validateimaplifecycleremote", + "target": "apps_electron_vite_project_electron_main_email_gateway_assertimapcredentialsusableforconnect", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L177", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_decryptimapsmtppasswords", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_decryptvalue", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L554", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_loadaccounts", + "target": "apps_electron_vite_project_electron_main_email_gateway_decryptimapsmtppasswords", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1091", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_updateaccount", + "target": "apps_electron_vite_project_electron_main_email_gateway_mergeimapsmtpcredentials", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L312", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_encryptimapsmtppasswordsfordisk", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_encryptvalue", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L675", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_persistemailaccounts", + "target": "apps_electron_vite_project_electron_main_email_gateway_encryptimapsmtppasswordsfordisk", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L408", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_backupaccountsfileifexists", + "target": "apps_electron_vite_project_electron_main_email_gateway_getaccountspath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L925", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getpersistencediagnostics", + "target": "apps_electron_vite_project_electron_main_email_gateway_getaccountspath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L403", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_getaccountsbackuppath", + "target": "apps_electron_vite_project_electron_main_email_gateway_getaccountspath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L371", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_getaccountspath", + "target": "apps_electron_vite_project_electron_userdatabootstrapstate_isuserdatapathbootstrapped", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L614", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_isaccountidpresentondisk", + "target": "apps_electron_vite_project_electron_main_email_gateway_getaccountspath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L422", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_loadaccounts", + "target": "apps_electron_vite_project_electron_main_email_gateway_getaccountspath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L398", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_logstartuppersistenceonce", + "target": "apps_electron_vite_project_electron_main_email_gateway_getaccountspath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L630", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_persistemailaccounts", + "target": "apps_electron_vite_project_electron_main_email_gateway_getaccountspath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L899", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_listaccounts", + "target": "apps_electron_vite_project_electron_main_email_gateway_logstartuppersistenceonce", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L411", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_backupaccountsfileifexists", + "target": "apps_electron_vite_project_electron_main_email_gateway_getaccountsbackuppath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L456", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_loadaccounts", + "target": "apps_electron_vite_project_electron_main_email_gateway_getaccountsbackuppath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L776", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_persistemailaccounts", + "target": "apps_electron_vite_project_electron_main_email_gateway_backupaccountsfileifexists", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L820", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_constructor", + "target": "apps_electron_vite_project_electron_main_email_gateway_loadaccounts", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L559", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_loadaccounts", + "target": "apps_electron_vite_project_electron_main_email_gateway_recordloadcredentialdecryptissue", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L525", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_loadaccounts", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_decryptoauthtokens", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L427", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_loadaccounts", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_issecurestorageavailable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L981", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_addaccount", + "target": "apps_electron_vite_project_electron_main_email_gateway_isaccountidpresentondisk", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1029", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_registerreadonlyaccount", + "target": "apps_electron_vite_project_electron_main_email_gateway_isaccountidpresentondisk", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1067", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_registersendonlyaccount", + "target": "apps_electron_vite_project_electron_main_email_gateway_isaccountidpresentondisk", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L979", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_addaccount", + "target": "apps_electron_vite_project_electron_main_email_gateway_persistemailaccounts", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1697", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_clearorchestratortransientaccounterror", + "target": "apps_electron_vite_project_electron_main_email_gateway_persistemailaccounts", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L891", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_collapseduplicatemailboxrowsondisk", + "target": "apps_electron_vite_project_electron_main_email_gateway_persistemailaccounts", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2541", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectcustomimapsmtpaccount", + "target": "apps_electron_vite_project_electron_main_email_gateway_persistemailaccounts", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1211", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_deleteaccount", + "target": "apps_electron_vite_project_electron_main_email_gateway_persistemailaccounts", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2777", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getconnectedprovider", + "target": "apps_electron_vite_project_electron_main_email_gateway_persistemailaccounts", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1027", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_registerreadonlyaccount", + "target": "apps_electron_vite_project_electron_main_email_gateway_persistemailaccounts", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1065", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_registersendonlyaccount", + "target": "apps_electron_vite_project_electron_main_email_gateway_persistemailaccounts", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1179", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_setdeletefromprovideronlocaldelete", + "target": "apps_electron_vite_project_electron_main_email_gateway_persistemailaccounts", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_setprocessingpaused", + "target": "apps_electron_vite_project_electron_main_email_gateway_persistemailaccounts", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2000", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_syncaccount", + "target": "apps_electron_vite_project_electron_main_email_gateway_persistemailaccounts", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1280", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_testconnection", + "target": "apps_electron_vite_project_electron_main_email_gateway_persistemailaccounts", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_updateaccount", + "target": "apps_electron_vite_project_electron_main_email_gateway_persistemailaccounts", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L656", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_persistemailaccounts", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_encryptoauthtokens", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L632", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_persistemailaccounts", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_issecurestorageavailable", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L954", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_addaccount", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1544", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_applyorchestratorremoteoperation", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2821", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_buildaccountinfo", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1684", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_clearorchestratortransientaccounterror", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L840", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_collapseduplicatemailboxrowsondisk", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2442", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectcustomimapsmtpaccount", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2168", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectgmailaccount", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2377", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectimapaccount", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2267", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectoutlookaccount", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2087", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectrolescopedoauthaccount", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2318", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectzohoaccount", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L819", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_constructor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1192", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_deleteaccount", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1526", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_deletemessage", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1576", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_ensureconnectedfororchestratoroperation", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2641", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_ensureimaplifecyclefoldersfordrain", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1776", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_extractattachmenttext", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1751", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_fetchattachmentbuffer", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2700", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_findaccount", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L832", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_findexistingmailboxaccount", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1520", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_flagmessage", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1633", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_forcereconnect", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2955", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_formatdate", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L931", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getaccount", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L937", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2731", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getconnectedprovider", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1313", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getimapreconnecthints", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1482", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getmessage", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2063", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getoauthurl", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L922", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getpersistencediagnostics", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2708", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getprovider", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L946", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getprovidersync", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2048", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getsyncstatus", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2068", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_handleoauthcallback", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1656", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_isprovidersessionconnected", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L898", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_listaccounts", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1710", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_listattachments", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1410", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_listmessages", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1508", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_markasread", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1514", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_markasunread", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_patchaccountsyncpreferences", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1666", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_pingimapsessionwithlistfolders", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1001", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_registerreadonlyaccount", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1039", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_registersendonlyaccount", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2607", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_resolveimappullfoldersexpanded", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2877", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_sanitizemessage", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2919", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_sanitizemessagedetail", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1907", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_sendemail", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1881", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_sendreply", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_setdeletefromprovideronlocaldelete", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2079", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_setgmailoauthcredentials", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2360", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_setoutlookoauthcredentials", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1134", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_setprocessingpaused", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2365", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_setzohooauthcredentials", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1978", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_syncaccount", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1241", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_testconnection", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2837", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_toaccountinfo", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1073", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_updateaccount", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1350", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_updateimapcredentials", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2569", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_validateimaplifecycleremote", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2667", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_verifyimapremotefolders", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L815", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L816", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L814", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "target": "apps_electron_vite_project_electron_main_email_types_iemailgateway", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/index.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_index", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L189", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/originMailboxDelete.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_originmailboxdelete", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/remoteDeletion.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_remotedeletion", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestion", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxOpaqueFetchRouter.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxopaquefetchrouter", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectrolescopedoauthaccount", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_findexistingmailboxaccount", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L832", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_findexistingmailboxaccount", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L856", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_collapseduplicatemailboxrowsondisk", + "target": "apps_electron_vite_project_electron_main_email_resolveconnectoauthscoperole", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L852", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_collapseduplicatemailboxrowsondisk", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L900", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_listaccounts", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_collapseduplicatemailboxrowsondisk", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L918", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_listaccounts", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_buildaccountinfo", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L907", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_listaccounts", + "target": "apps_electron_vite_project_electron_main_email_resolveconnectoauthscoperole", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L903", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_listaccounts", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L898", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_listaccounts", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountinfo", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L927", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getpersistencediagnostics", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_issecurestorageavailable" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L933", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getaccount", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_buildaccountinfo", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L931", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getaccount", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountinfo", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L937", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getaccountconfig", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L968", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_addaccount", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_testconnection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L988", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_addaccount", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_toaccountinfo", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L954", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_addaccount", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L954", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_addaccount", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountinfo", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2261", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectgmailaccount", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_addaccount", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2425", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectimapaccount", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_addaccount", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2312", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectoutlookaccount", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_addaccount", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2354", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectzohoaccount", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_addaccount", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2157", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectrolescopedoauthaccount", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_registerreadonlyaccount", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1008", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_registerreadonlyaccount", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_toaccountinfo", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1001", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_registerreadonlyaccount", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountinfo", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1046", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_registersendonlyaccount", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_toaccountinfo", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1039", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_registersendonlyaccount", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountinfo", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2232", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectgmailaccount", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_updateaccount", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2284", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectoutlookaccount", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_updateaccount", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectrolescopedoauthaccount", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_updateaccount", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2328", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectzohoaccount", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_updateaccount", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_patchaccountsyncpreferences", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_updateaccount", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_updateaccount", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_toaccountinfo", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1073", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_updateaccount", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1073", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_updateaccount", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountinfo", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1388", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_updateimapcredentials", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_updateaccount", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_patchaccountsyncpreferences", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_patchaccountsyncpreferences", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountinfo", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1158", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_setprocessingpaused", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_toaccountinfo", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1134", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_setprocessingpaused", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountinfo", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1189", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_setdeletefromprovideronlocaldelete", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_buildaccountinfo", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_setdeletefromprovideronlocaldelete", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountinfo", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2431", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectimapaccount", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_deleteaccount", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1219", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_deleteaccount", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2512", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectcustomimapsmtpaccount", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_testconnection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2239", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectgmailaccount", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_testconnection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2428", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectimapaccount", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_testconnection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2291", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectoutlookaccount", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_testconnection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2337", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectzohoaccount", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_testconnection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1984", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_syncaccount", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_testconnection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1259", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_testconnection", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1394", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_updateimapcredentials", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_testconnection", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1313", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getimapreconnecthints", + "target": "apps_electron_vite_project_electron_main_email_types_imapreconnecthints", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1399", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_updateimapcredentials", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_forcereconnect", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1411", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_listmessages", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_findaccount", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1477", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_listmessages", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getconnectedprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1432", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_listmessages", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1459", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_listmessages", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_sanitizemessage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1410", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_listmessages", + "target": "apps_electron_vite_project_electron_main_email_types_messagesearchoptions", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1410", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_listmessages", + "target": "apps_electron_vite_project_electron_main_email_types_sanitizedmessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1483", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getmessage", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_findaccount", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1502", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getmessage", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getconnectedprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1487", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getmessage", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1492", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getmessage", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_sanitizemessagedetail", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1482", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getmessage", + "target": "apps_electron_vite_project_electron_main_email_types_sanitizedmessagedetail", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1509", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_markasread", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_findaccount", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1510", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_markasread", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getconnectedprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1515", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_markasunread", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_findaccount", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1516", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_markasunread", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getconnectedprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1521", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_flagmessage", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_findaccount", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1522", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_flagmessage", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getconnectedprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1531", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_deletemessage", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_findaccount", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1532", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_deletemessage", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getconnectedprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1557", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_applyorchestratorremoteoperation", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getconnectedprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1590", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_ensureconnectedfororchestratoroperation", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getconnectedprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1648", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_forcereconnect", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getconnectedprovider", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1659", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_isprovidersessionconnected", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1671", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_pingimapsessionwithlistfolders", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getconnectedprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1788", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_extractattachmenttext", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_listattachments", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1711", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_listattachments", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_findaccount", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1736", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_listattachments", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getconnectedprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1714", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_listattachments", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1725", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_listattachments", + "target": "apps_electron_vite_project_electron_main_email_pdf_extractor_supportstextextraction" + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1710", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_listattachments", + "target": "apps_electron_vite_project_electron_main_email_types_attachmentmeta", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1756", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_fetchattachmentbuffer", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_findaccount", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1772", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_fetchattachmentbuffer", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getconnectedprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1759", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_fetchattachmentbuffer", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1781", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_extractattachmenttext", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_findaccount", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1835", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_extractattachmenttext", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getconnectedprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1785", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_extractattachmenttext", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1805", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_extractattachmenttext", + "target": "apps_electron_vite_project_electron_main_email_pdf_extractor_extractpdftext" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1804", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_extractattachmenttext", + "target": "apps_electron_vite_project_electron_main_email_pdf_extractor_ispdffile" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1795", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_extractattachmenttext", + "target": "apps_electron_vite_project_electron_main_email_pdf_extractor_supportstextextraction" + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1776", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_extractattachmenttext", + "target": "apps_electron_vite_project_electron_main_email_types_extractedattachmenttext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1886", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_sendreply", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_findaccount", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1887", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_sendreply", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getconnectedprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1904", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_sendreply", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_sendemail", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1881", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_sendreply", + "target": "apps_electron_vite_project_electron_main_email_types_sendemailpayload", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1881", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_sendreply", + "target": "apps_electron_vite_project_electron_main_email_types_sendresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1908", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_sendemail", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_findaccount", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1970", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_sendemail", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getconnectedprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1921", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_sendemail", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1922", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_sendemail", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1918", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_sendemail", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1907", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_sendemail", + "target": "apps_electron_vite_project_electron_main_email_types_sendemailpayload", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1907", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_sendemail", + "target": "apps_electron_vite_project_electron_main_email_types_sendresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1979", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_syncaccount", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_findaccount", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1982", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_syncaccount", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getconnectedprovider", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L1978", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_syncaccount", + "target": "apps_electron_vite_project_electron_main_email_types_syncstatus", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2049", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getsyncstatus", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_findaccount", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2048", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getsyncstatus", + "target": "apps_electron_vite_project_electron_main_email_types_syncstatus", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2068", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_handleoauthcallback", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountinfo", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2080", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_setgmailoauthcredentials", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_saveoauthconfig" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectgmailaccount", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectrolescopedoauthaccount", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2270", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectoutlookaccount", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectrolescopedoauthaccount", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2154", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectrolescopedoauthaccount", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_toaccountinfo", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectrolescopedoauthaccount", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthresolve_defaultgmailoauthcredentialsource" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2087", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectrolescopedoauthaccount", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthresolve_gmailoauthcredentialsource", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectrolescopedoauthaccount", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthresolve_resolvegmailoauthforconnect" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2092", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectrolescopedoauthaccount", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2098", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectrolescopedoauthaccount", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2087", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectrolescopedoauthaccount", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountinfo", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2242", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectgmailaccount", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_toaccountinfo", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2179", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectgmailaccount", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthresolve_defaultgmailoauthcredentialsource" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2168", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectgmailaccount", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthresolve_gmailoauthcredentialsource", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2180", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectgmailaccount", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthresolve_resolvegmailoauthforconnect" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2182", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectgmailaccount", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_logoauthdiagnostic" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2173", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectgmailaccount", + "target": "apps_electron_vite_project_electron_main_email_resolveconnectoauthscoperole", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2168", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectgmailaccount", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountinfo", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2294", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectoutlookaccount", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_toaccountinfo", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2268", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectoutlookaccount", + "target": "apps_electron_vite_project_electron_main_email_resolveconnectoauthscoperole", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2267", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectoutlookaccount", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountinfo", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2340", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectzohoaccount", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_toaccountinfo", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2318", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectzohoaccount", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountinfo", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2361", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_setoutlookoauthcredentials", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_saveoutlookoauthconfig" + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2377", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectimapaccount", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountinfo", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2563", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectcustomimapsmtpaccount", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_toaccountinfo", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2519", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectcustomimapsmtpaccount", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_testsmtpconnection" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2442", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectcustomimapsmtpaccount", + "target": "apps_electron_vite_project_electron_main_email_types_customimapsmtpconnectpayload", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2442", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_connectcustomimapsmtpaccount", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountinfo", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2589", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_validateimaplifecycleremote", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_connect" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2596", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_validateimaplifecycleremote", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_disconnect" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2590", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_validateimaplifecycleremote", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_validatelifecycleremoteboxes" + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2569", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_validateimaplifecycleremote", + "target": "apps_electron_vite_project_electron_main_email_types_imaplifecyclevalidationresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2617", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_resolveimappullfoldersexpanded", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2646", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_ensureimaplifecyclefoldersfordrain", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getconnectedprovider", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2641", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_ensureimaplifecyclefoldersfordrain", + "target": "apps_electron_vite_project_electron_main_email_types_imaplifecyclevalidationresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2684", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_verifyimapremotefolders", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getconnectedprovider", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2667", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_verifyimapremotefolders", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2700", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_findaccount", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2757", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getconnectedprovider", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getprovider", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2708", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2708", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getprovider", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2731", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getconnectedprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2731", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_getconnectedprovider", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2822", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_buildaccountinfo", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_toaccountinfo", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2824", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_buildaccountinfo", + "target": "apps_electron_vite_project_electron_main_email_originmailboxdeletecapability", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2821", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_buildaccountinfo", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2821", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_buildaccountinfo", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountinfo", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2837", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_toaccountinfo", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2837", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_toaccountinfo", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountinfo", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2900", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_sanitizemessage", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_formatdate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2880", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_sanitizemessage", + "target": "apps_electron_vite_project_electron_main_email_inlineparseguard_assertnoinlineparse" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2877", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_sanitizemessage", + "target": "apps_electron_vite_project_electron_main_email_providers_base_rawemailmessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2902", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_sanitizemessage", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_generatesnippet" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2890", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_sanitizemessage", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_sanitizedisplayname" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2889", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_sanitizemessage", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_sanitizeemailaddress" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2881", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_sanitizemessage", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_sanitizehtmltotext" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2887", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_sanitizemessage", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_sanitizesubject" + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2877", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_sanitizemessage", + "target": "apps_electron_vite_project_electron_main_email_types_sanitizedmessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2920", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_sanitizemessagedetail", + "target": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_sanitizemessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2930", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_sanitizemessagedetail", + "target": "apps_electron_vite_project_electron_main_email_inlineparseguard_assertnoinlineparse" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2919", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_sanitizemessagedetail", + "target": "apps_electron_vite_project_electron_main_email_providers_base_rawemailmessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2941", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_sanitizemessagedetail", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_sanitizedisplayname" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2940", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_sanitizemessagedetail", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_sanitizeemailaddress" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2931", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_sanitizemessagedetail", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_sanitizehtmltotext" + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gateway.ts", + "source_location": "L2919", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gateway_emailgateway_sanitizemessagedetail", + "target": "apps_electron_vite_project_electron_main_email_types_sanitizedmessagedetail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gatewayOrphanAccountError.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gatewayorphanaccounterror", + "target": "apps_electron_vite_project_electron_main_email_gatewayorphanaccounterror_isgatewayorphanaccounterror", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/remoteDeletion.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_remotedeletion", + "target": "apps_electron_vite_project_electron_main_email_gatewayorphanaccounterror", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/remoteDeletion.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_remotedeletion", + "target": "apps_electron_vite_project_electron_main_email_gatewayorphanaccounterror_isgatewayorphanaccounterror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/remoteDeletion.ts", + "source_location": "L188", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_remotedeletion_queueremotedeletion", + "target": "apps_electron_vite_project_electron_main_email_gatewayorphanaccounterror_isgatewayorphanaccounterror" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gmailCredentialsCheckPayload.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailcredentialscheckpayload", + "target": "apps_electron_vite_project_electron_main_email_gmailcredentialscheckpayload_buildgmailcredentialscheckpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gmailCredentialsCheckPayload.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailcredentialscheckpayload", + "target": "apps_electron_vite_project_electron_main_email_gmailcredentialscheckpayload_gmailcredentialscheckapipayload", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gmailCredentialsCheckPayload.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailcredentialscheckpayload", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gmailCredentialsCheckPayload.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailcredentialscheckpayload", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_getgmailbuiltinproviderstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gmailCredentialsCheckPayload.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailcredentialscheckpayload", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_getstandardconnectbuiltinclientdiagnostics", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gmailCredentialsCheckPayload.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailcredentialscheckpayload", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_isbuiltinstandardconnectready", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gmailCredentialsCheckPayload.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailcredentialscheckpayload", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_isemaildevelopermodeenabled", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gmailCredentialsCheckPayload.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailcredentialscheckpayload", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_logoauthdiagnostic", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L966", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registeremailhandlers", + "target": "apps_electron_vite_project_electron_main_email_gmailcredentialscheckpayload", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gmailCredentialsCheckPayload.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailcredentialscheckpayload_buildgmailcredentialscheckpayload", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_getgmailbuiltinproviderstatus" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gmailCredentialsCheckPayload.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailcredentialscheckpayload_buildgmailcredentialscheckpayload", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_getstandardconnectbuiltinclientdiagnostics" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gmailCredentialsCheckPayload.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailcredentialscheckpayload_buildgmailcredentialscheckpayload", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_isbuiltinstandardconnectready" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gmailCredentialsCheckPayload.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailcredentialscheckpayload_buildgmailcredentialscheckpayload", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_isemaildevelopermodeenabled" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gmailCredentialsCheckPayload.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailcredentialscheckpayload_buildgmailcredentialscheckpayload", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_logoauthdiagnostic" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthConnectDebug.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailoauthconnectdebug", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthconnectdebug_attachoauthdebug", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthConnectDebug.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailoauthconnectdebug", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthconnectdebug_gmailoauthconnectdebug", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthConnectDebug.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailoauthconnectdebug", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthconnectdebug_gmailoauthconnectdebugstep", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthConnectDebug.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailoauthconnectdebug", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthconnectdebug_oauthdebugfromunknown", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthConnectDebug.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailoauthconnectdebug", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthconnectdebug_pickoauthdebugfromerror", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L198", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthconnectdebug", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthconnectdebug", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthconnectdebug_attachoauthdebug", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L1323", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_apirequest", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthconnectdebug_attachoauthdebug" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L869", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_exchangecodefortokens", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthconnectdebug_attachoauthdebug" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L1236", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_refreshaccesstoken", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthconnectdebug_attachoauthdebug" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L727", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_startoauthflow", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthconnectdebug_attachoauthdebug" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthConnectDebug.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailoauthconnectdebug_pickoauthdebugfromerror", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthconnectdebug_oauthdebugfromunknown", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthconnectdebug_oauthdebugfromunknown", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L957", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_exchangecodefortokens", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthconnectdebug_oauthdebugfromunknown" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L729", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_startoauthflow", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthconnectdebug_oauthdebugfromunknown" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L198", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthconnectdebug_pickoauthdebugfromerror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L1090", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registeremailhandlers", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthconnectdebug_pickoauthdebugfromerror" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthResolve.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailoauthresolve", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthresolve_assertbuiltinmetaconfigured", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthResolve.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailoauthresolve", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthresolve_defaultgmailoauthcredentialsource", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthResolve.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailoauthresolve", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthresolve_gmailauthmode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthResolve.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailoauthresolve", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthresolve_gmailoauthcredentialsource", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthResolve.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailoauthresolve", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthresolve_gmailoauthresolutiontag", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthResolve.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailoauthresolve", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthresolve_isbuiltingmailoauthavailable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthResolve.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailoauthresolve", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthresolve_loggmailoauthresolvedconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthResolve.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailoauthresolve", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthresolve_resolvedgmailoauth", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthResolve.ts", + "source_location": "L213", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailoauthresolve", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthresolve_resolvegmailoauthclientidforrefresh", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthResolve.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailoauthresolve", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthresolve_resolvegmailoauthforconnect", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthResolve.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailoauthresolve", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthResolve.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailoauthresolve", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_assertbuiltinpublicclientmatchesshippedresource", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthResolve.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailoauthresolve", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_builtingoogleoauthclientresolution", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthResolve.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailoauthresolve", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_getgoogleoauthclientidenvvarnamespresent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthResolve.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailoauthresolve", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_getgoogleoauthclientsecretenvvarnamespresent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthResolve.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailoauthresolve", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_isbuiltingmailoauthconfigured", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthResolve.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailoauthresolve", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_ispackagedproductiongmailstandardconnect", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthResolve.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailoauthresolve", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_logoauthdiagnostic", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthResolve.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailoauthresolve", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_oauthclientidfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthResolve.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailoauthresolve", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolvebuiltingoogleoauthclientsecret", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthResolve.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailoauthresolve", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolvebuiltingoogleoauthclientwithmeta", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthResolve.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailoauthresolve", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_warnoncegmailoauthbuiltinsecretmissing", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthresolve", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthResolve.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailoauthresolve_resolvedgmailoauth", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_builtingoogleoauthclientresolution", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthresolve_resolvedgmailoauth", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L822", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_buildauthurl", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthresolve_resolvedgmailoauth", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L848", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_exchangecodefortokens", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthresolve_resolvedgmailoauth", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L702", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_startoauthflow", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthresolve_resolvedgmailoauth", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthResolve.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailoauthresolve_isbuiltingmailoauthavailable", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_isbuiltingmailoauthconfigured" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthResolve.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailoauthresolve_defaultgmailoauthcredentialsource", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_isbuiltingmailoauthconfigured" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthResolve.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailoauthresolve_assertbuiltinmetaconfigured", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolvebuiltingoogleoauthclientwithmeta", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthResolve.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailoauthresolve_resolvegmailoauthforconnect", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthresolve_assertbuiltinmetaconfigured", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthResolve.ts", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailoauthresolve_resolvegmailoauthforconnect", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthresolve_loggmailoauthresolvedconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthResolve.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailoauthresolve_resolvegmailoauthforconnect", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_assertbuiltinpublicclientmatchesshippedresource" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthResolve.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailoauthresolve_resolvegmailoauthforconnect", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_getgoogleoauthclientidenvvarnamespresent" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthResolve.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailoauthresolve_resolvegmailoauthforconnect", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_getgoogleoauthclientsecretenvvarnamespresent" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthResolve.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailoauthresolve_resolvegmailoauthforconnect", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_ispackagedproductiongmailstandardconnect" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthResolve.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailoauthresolve_resolvegmailoauthforconnect", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_logoauthdiagnostic" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthResolve.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailoauthresolve_resolvegmailoauthforconnect", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_oauthclientidfingerprint" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthResolve.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailoauthresolve_resolvegmailoauthforconnect", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolvebuiltingoogleoauthclientsecret" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthResolve.ts", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailoauthresolve_resolvegmailoauthforconnect", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolvebuiltingoogleoauthclientwithmeta" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthResolve.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailoauthresolve_resolvegmailoauthforconnect", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_warnoncegmailoauthbuiltinsecretmissing" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthresolve_resolvegmailoauthforconnect", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L707", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_startoauthflow", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthresolve_resolvegmailoauthforconnect" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthRuntimeProof.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailoauthruntimeproof", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthruntimeproof_clearlastgmailstandardconnectruntimeproof", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthRuntimeProof.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailoauthruntimeproof", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthruntimeproof_getlastgmailstandardconnectruntimeproof", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthRuntimeProof.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailoauthruntimeproof", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthruntimeproof_gmailstandardconnectruntimeproof", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/gmailOAuthRuntimeProof.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_gmailoauthruntimeproof", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthruntimeproof_setlastgmailstandardconnectruntimeproof", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L1101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registeremailhandlers", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthruntimeproof", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthruntimeproof", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthruntimeproof_gmailstandardconnectruntimeproof", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthruntimeproof_setlastgmailstandardconnectruntimeproof", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_emitgmailstandardconnectflowproof", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthruntimeproof_setlastgmailstandardconnectruntimeproof", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthruntimeproof_clearlastgmailstandardconnectruntimeproof", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L710", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_startoauthflow", + "target": "apps_electron_vite_project_electron_main_email_gmailoauthruntimeproof_clearlastgmailstandardconnectruntimeproof" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.packaged.test.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_packaged_test", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.packaged.test.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_packaged_test", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_assertbuiltinpublicclientmatchesshippedresource", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.packaged.test.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_packaged_test", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_builtingoogleoauthclientresolution", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.packaged.test.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_packaged_test", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_getgmailbuiltinproviderstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.packaged.test.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_packaged_test", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_isbuiltinstandardconnectready", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.packaged.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_packaged_test", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_packaged_test_oauthteststate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.packaged.test.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_packaged_test", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolvebuiltingoogleoauthclientsecret", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.packaged.test.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_packaged_test", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolvebuiltingoogleoauthclientwithmeta", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.packaged.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_packaged_test_rationale_5", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_packaged_test", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_test", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_test", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_isplaceholdergoogleoauthclientid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_test", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_normalizegoogleoauthclientid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_test", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_normalizegoogleoauthclientsecret", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_test", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_oauthclientidfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L674", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_assertbuiltinpublicclientmatchesshippedresource", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_attachignoredenvnames", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L551", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_builtin_gmail_oauth_secret_missing_warn", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_builtingoogleoauthclientresolution", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_builtinoauthclientsourcekind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L564", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_bundledsecretresourceisvalid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_env_keys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_env_secret_keys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_getbuildtimegoogleoauthclientid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L198", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_getbuildtimegoogleoauthclientsecret", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L482", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_getbuiltingmailoauthclientid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L503", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_getgmailbuiltinproviderstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L623", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_getgmailoauthpackagedstartupdiagnostics", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_getgoogleoauthclientidenvvarnamespresent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_getgoogleoauthclientsecretenvvarnamespresent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L541", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_getpackagedresourcegoogleoauthclientid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L524", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_getstandardconnectbuiltinclientdiagnostics", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L501", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_gmailbuiltinproviderstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L610", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_gmailoauthpackagedstartupdiagnostics", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L487", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_isbuiltingmailoauthconfigured", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L495", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_isbuiltinstandardconnectready", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L310", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_isemaildevelopermodeenabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_ispackagedproductiongmailstandardconnect", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L160", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_isplaceholdergoogleoauthclientid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L761", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_logoauthdiagnostic", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L139", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_normalizegoogleoauthclientid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L176", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_normalizegoogleoauthclientsecret", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L706", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_oauth_diag_whitelist_keys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L698", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_oauthclientidfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_readfirstnoncommentline", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L343", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolutionfrombuildtime", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L320", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolutionfromenv", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L473", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolvebuiltingoogleoauthclientid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L210", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolvebuiltingoogleoauthclientsecret", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L442", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolvebuiltingoogleoauthclientwithmeta", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L431", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolvebuiltingoogleoauthoptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolvepackagedstandardconnectnoenvfirst", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L377", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_trydevresourcefiles", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L357", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_trypackagedresourcefile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L412", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_trysidecar", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L558", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_warnoncegmailoauthbuiltinsecretmissing", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L578", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_warnonceifbuiltingmailoauthclientsecretmissingorplaceholder", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L981", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registeremailhandlers", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxemailfetch", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_ispackagedproductiongmailstandardconnect", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_isemaildevelopermodeenabled", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L474", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolvebuiltingoogleoauthclientid", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_ispackagedproductiongmailstandardconnect", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L446", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolvebuiltingoogleoauthclientwithmeta", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_ispackagedproductiongmailstandardconnect", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_ispackagedproductiongmailstandardconnect", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L883", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_exchangecodefortokens", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_ispackagedproductiongmailstandardconnect" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_attachignoredenvnames", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_getgoogleoauthclientidenvvarnamespresent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolvepackagedstandardconnectnoenvfirst", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_attachignoredenvnames", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L449", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolvebuiltingoogleoauthclientwithmeta", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolvepackagedstandardconnectnoenvfirst", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolvepackagedstandardconnectnoenvfirst", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolutionfrombuildtime", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolvepackagedstandardconnectnoenvfirst", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_trypackagedresourcefile", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolvepackagedstandardconnectnoenvfirst", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_trysidecar", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L567", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_bundledsecretresourceisvalid", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_readfirstnoncommentline", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L545", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_getpackagedresourcegoogleoauthclientid", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_readfirstnoncommentline", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L254", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolvebuiltingoogleoauthclientsecret", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_readfirstnoncommentline", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L381", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_trydevresourcefiles", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_readfirstnoncommentline", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L361", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_trypackagedresourcefile", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_readfirstnoncommentline", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L415", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_trysidecar", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_readfirstnoncommentline", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L585", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_warnonceifbuiltingmailoauthclientsecretmissingorplaceholder", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_readfirstnoncommentline", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L686", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_assertbuiltinpublicclientmatchesshippedresource", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_normalizegoogleoauthclientid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_getbuildtimegoogleoauthclientid", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_normalizegoogleoauthclientid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L545", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_getpackagedresourcegoogleoauthclientid", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_normalizegoogleoauthclientid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L161", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_isplaceholdergoogleoauthclientid", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_normalizegoogleoauthclientid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L323", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolutionfromenv", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_normalizegoogleoauthclientid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L381", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_trydevresourcefiles", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_normalizegoogleoauthclientid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L361", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_trypackagedresourcefile", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_normalizegoogleoauthclientid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L415", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_trysidecar", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_normalizegoogleoauthclientid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L585", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_warnonceifbuiltingmailoauthclientsecretmissingorplaceholder", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_normalizegoogleoauthclientid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L344", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolutionfrombuildtime", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_getbuildtimegoogleoauthclientid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L284", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolvebuiltingoogleoauthclientsecret", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_getbuildtimegoogleoauthclientid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L568", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_bundledsecretresourceisvalid", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_normalizegoogleoauthclientsecret", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L201", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_getbuildtimegoogleoauthclientsecret", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_normalizegoogleoauthclientsecret", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L263", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolvebuiltingoogleoauthclientsecret", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_normalizegoogleoauthclientsecret", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L285", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolvebuiltingoogleoauthclientsecret", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_getbuildtimegoogleoauthclientsecret", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L512", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_getgmailbuiltinproviderstatus", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolvebuiltingoogleoauthclientsecret", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L498", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_isbuiltinstandardconnectready", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolvebuiltingoogleoauthclientsecret", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolvebuiltingoogleoauthclientsecret", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L1174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_refreshaccesstoken", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolvebuiltingoogleoauthclientsecret" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxemailfetch", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolvebuiltingoogleoauthclientsecret", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_resolvebuiltingmailoauthforsandboxfetch", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolvebuiltingoogleoauthclientsecret", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L649", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_getgmailoauthpackagedstartupdiagnostics", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_isemaildevelopermodeenabled", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L452", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolvebuiltingoogleoauthclientwithmeta", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolutionfromenv", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L458", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolvebuiltingoogleoauthclientwithmeta", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolutionfrombuildtime", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L456", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolvebuiltingoogleoauthclientwithmeta", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_trypackagedresourcefile", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L465", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolvebuiltingoogleoauthclientwithmeta", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_trydevresourcefiles", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L460", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolvebuiltingoogleoauthclientwithmeta", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_trysidecar", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L508", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_getgmailbuiltinproviderstatus", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolvebuiltingoogleoauthclientwithmeta", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L528", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_getstandardconnectbuiltinclientdiagnostics", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolvebuiltingoogleoauthclientwithmeta", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L496", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_isbuiltinstandardconnectready", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolvebuiltingoogleoauthclientwithmeta", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L476", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolvebuiltingoogleoauthclientid", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolvebuiltingoogleoauthclientwithmeta", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolvebuiltingoogleoauthclientwithmeta", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L1169", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_refreshaccesstoken", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolvebuiltingoogleoauthclientwithmeta" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxemailfetch", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolvebuiltingoogleoauthclientwithmeta", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_resolvebuiltingmailoauthforsandboxfetch", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolvebuiltingoogleoauthclientwithmeta", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L483", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_getbuiltingmailoauthclientid", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_resolvebuiltingoogleoauthclientid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L488", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_isbuiltingmailoauthconfigured", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_getbuiltingmailoauthclientid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L533", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_getstandardconnectbuiltinclientdiagnostics", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_oauthclientidfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L684", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_assertbuiltinpublicclientmatchesshippedresource", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_getpackagedresourcegoogleoauthclientid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L633", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_getgmailoauthpackagedstartupdiagnostics", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_getpackagedresourcegoogleoauthclientid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_getpackagedresourcegoogleoauthclientid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_emitgmailstandardconnectflowproof", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_getpackagedresourcegoogleoauthclientid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L884", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_exchangecodefortokens", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_getpackagedresourcegoogleoauthclientid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L589", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_warnonceifbuiltingmailoauthclientsecretmissingorplaceholder", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_warnoncegmailoauthbuiltinsecretmissing", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L638", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_getgmailoauthpackagedstartupdiagnostics", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_bundledsecretresourceisvalid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L588", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_warnonceifbuiltingmailoauthclientsecretmissingorplaceholder", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_bundledsecretresourceisvalid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L644", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_getgmailoauthpackagedstartupdiagnostics", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_oauthclientidfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L689", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_assertbuiltinpublicclientmatchesshippedresource", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_oauthclientidfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L767", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_logoauthdiagnostic", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_oauthclientidfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_oauthclientidfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_emitgmailstandardconnectflowproof", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_oauthclientidfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L855", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_exchangecodefortokens", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_oauthclientidfingerprint" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L748", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_startoauthflow", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_oauthclientidfingerprint" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts", + "source_location": "L764", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_logoauthdiagnostic", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_oauth_diag_whitelist_keys" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_logoauthdiagnostic", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_emitgmailstandardconnectflowproof", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_logoauthdiagnostic", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L912", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_exchangecodefortokens", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_logoauthdiagnostic" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L1225", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_refreshaccesstoken", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_logoauthdiagnostic" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L719", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_startoauthflow", + "target": "apps_electron_vite_project_electron_main_email_googleoauthbuiltin_logoauthdiagnostic" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/imapLifecycleReconcile.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_imaplifecyclereconcile", + "target": "apps_electron_vite_project_electron_main_email_imaplifecyclereconcile_imaplifecyclereconcileresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/imapLifecycleReconcile.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_imaplifecyclereconcile", + "target": "apps_electron_vite_project_electron_main_email_imaplifecyclereconcile_reconcileimaplifecyclefromlocalstate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L264", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_imaplifecyclereconcile", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L264", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_imaplifecyclereconcile_reconcileimaplifecyclefromlocalstate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L6054", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_imaplifecyclereconcile_reconcileimaplifecyclefromlocalstate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/imapSyncTelemetry.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_imapsynctelemetry", + "target": "apps_electron_vite_project_electron_main_email_imapsynctelemetry_clearimapsyncprogress", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/imapSyncTelemetry.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_imapsynctelemetry", + "target": "apps_electron_vite_project_electron_main_email_imapsynctelemetry_formatimapsyncphaseline", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/imapSyncTelemetry.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_imapsynctelemetry", + "target": "apps_electron_vite_project_electron_main_email_imapsynctelemetry_getimapsyncprogresssnapshot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/imapSyncTelemetry.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_imapsynctelemetry", + "target": "apps_electron_vite_project_electron_main_email_imapsynctelemetry_imap_fetch_reliable_ms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/imapSyncTelemetry.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_imapsynctelemetry", + "target": "apps_electron_vite_project_electron_main_email_imapsynctelemetry_imap_provider_fetch_messages_ms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/imapSyncTelemetry.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_imapsynctelemetry", + "target": "apps_electron_vite_project_electron_main_email_imapsynctelemetry_imap_sync_folder_expand_ms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/imapSyncTelemetry.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_imapsynctelemetry", + "target": "apps_electron_vite_project_electron_main_email_imapsynctelemetry_imap_sync_list_messages_ms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/imapSyncTelemetry.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_imapsynctelemetry", + "target": "apps_electron_vite_project_electron_main_email_imapsynctelemetry_imapsyncprogresssnapshot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/imapSyncTelemetry.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_imapsynctelemetry", + "target": "apps_electron_vite_project_electron_main_email_imapsynctelemetry_setimapsyncprogress", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap", + "target": "apps_electron_vite_project_electron_main_email_imapsynctelemetry", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imapFetchReliable.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imapfetchreliable", + "target": "apps_electron_vite_project_electron_main_email_imapsynctelemetry", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_imapsynctelemetry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_imapsynctelemetry_imap_sync_folder_expand_ms", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_imapsynctelemetry_imap_sync_list_messages_ms", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap", + "target": "apps_electron_vite_project_electron_main_email_imapsynctelemetry_imap_provider_fetch_messages_ms", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imapFetchReliable.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imapfetchreliable", + "target": "apps_electron_vite_project_electron_main_email_imapsynctelemetry_imap_fetch_reliable_ms", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_imapsynctelemetry_setimapsyncprogress", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L547", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator_syncaccountemailsimpl", + "target": "apps_electron_vite_project_electron_main_email_imapsynctelemetry_setimapsyncprogress", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_imapsynctelemetry_clearimapsyncprogress", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L1076", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator_syncaccountemailsimpl", + "target": "apps_electron_vite_project_electron_main_email_imapsynctelemetry_clearimapsyncprogress", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_imapsynctelemetry_getimapsyncprogresssnapshot", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L424", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator_syncaccountemails", + "target": "apps_electron_vite_project_electron_main_email_imapsynctelemetry_getimapsyncprogresssnapshot" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L1040", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator_syncaccountemailsimpl", + "target": "apps_electron_vite_project_electron_main_email_imapsynctelemetry_getimapsyncprogresssnapshot", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_imapsynctelemetry_formatimapsyncphaseline", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L683", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator_syncaccountemailsimpl", + "target": "apps_electron_vite_project_electron_main_email_imapsynctelemetry_formatimapsyncphaseline", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaierrormapping", + "target": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_beap_endpoint_codes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L220", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaierrormapping", + "target": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_buildinboxaianalyzeerrorpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L254", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaierrormapping", + "target": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_buildinboxaidraftipcfailure", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaierrormapping", + "target": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_classifyinboxaierror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaierrormapping", + "target": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_errmsg", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaierrormapping", + "target": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_failurecodefrom", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaierrormapping", + "target": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_inbox_context_overflow_user_message", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaierrormapping", + "target": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_inboxaidevdebugenabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaierrormapping", + "target": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_inboxaierrorcode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaierrormapping", + "target": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_inboxaierrordebug", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaierrormapping", + "target": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_inboxaiusermessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaierrormapping", + "target": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_legacyanalyzeerrorfield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaierrormapping", + "target": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_lookslikelocalurl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaierrormapping", + "target": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_remote_ollama_codes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaierrormapping", + "target": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_transportfailuremessage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaierrormapping", + "target": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaierrormapping", + "target": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_isinferenceroutingunavailableerror", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaierrormapping", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaierrormapping", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaierrormapping", + "target": "apps_electron_vite_project_electron_main_internalinference_inferenceroutingipcpayload", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaierrormapping", + "target": "apps_electron_vite_project_electron_main_internalinference_inferenceroutingipcpayload_inferenceroutingunavailableusermessage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaierrormapping", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutiontypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaierrormapping", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutiontypes_aiexecutioncontext", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaierrormapping", + "target": "apps_electron_vite_project_electron_main_llm_llamacontextoverflow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaierrormapping", + "target": "apps_electron_vite_project_electron_main_llm_llamacontextoverflow_contextoverflowdetails", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaierrormapping", + "target": "apps_electron_vite_project_electron_main_llm_llamacontextoverflow_isllamacontextoverflowerror", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaierrormapping", + "target": "apps_electron_vite_project_electron_main_llm_localllmpaths", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaierrormapping", + "target": "apps_electron_vite_project_electron_main_llm_localllmpaths_host_ai_default_local_llamacpp_base", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaierrormapping", + "target": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaierrormapping", + "target": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_no_ai_model_selected", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L302", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxaierrormapping", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L235", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_buildinboxaianalyzeerrorpayload", + "target": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_inboxaidevdebugenabled", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L265", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_buildinboxaidraftipcfailure", + "target": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_inboxaidevdebugenabled", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L173", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_classifyinboxaierror", + "target": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_remote_ollama_codes" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L169", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_classifyinboxaierror", + "target": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_beap_endpoint_codes" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_classifyinboxaierror", + "target": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_errmsg", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_inboxaiusermessage", + "target": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_errmsg", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_classifyinboxaierror", + "target": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_failurecodefrom", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L183", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_classifyinboxaierror", + "target": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_lookslikelocalurl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L190", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_classifyinboxaierror", + "target": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_transportfailuremessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L239", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_buildinboxaianalyzeerrorpayload", + "target": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_legacyanalyzeerrorfield", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L236", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_buildinboxaianalyzeerrorpayload", + "target": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_inboxaiusermessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L266", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_buildinboxaidraftipcfailure", + "target": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_inboxaiusermessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_inboxaiusermessage", + "target": "apps_electron_vite_project_electron_main_internalinference_inferenceroutingipcpayload_inferenceroutingunavailableusermessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L230", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_buildinboxaianalyzeerrorpayload", + "target": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_classifyinboxaierror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L260", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_buildinboxaidraftipcfailure", + "target": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_classifyinboxaierror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_classifyinboxaierror", + "target": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_isinferenceroutingunavailableerror" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L206", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_classifyinboxaierror", + "target": "apps_electron_vite_project_electron_main_llm_llamacontextoverflow_contextoverflowdetails" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L205", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_classifyinboxaierror", + "target": "apps_electron_vite_project_electron_main_llm_llamacontextoverflow_isllamacontextoverflowerror" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L229", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_buildinboxaianalyzeerrorpayload", + "target": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_isinferenceroutingunavailableerror" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L302", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_buildinboxaianalyzeerrorpayload", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L4651", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_buildinboxaianalyzeerrorpayload" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts", + "source_location": "L259", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_buildinboxaidraftipcfailure", + "target": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_isinferenceroutingunavailableerror" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L302", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_buildinboxaidraftipcfailure", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L3999", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_inboxaierrormapping_buildinboxaidraftipcfailure" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_abortanalyzestreamformessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_analysisstreamreplaybytaskkey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_analysisstreamreplaystate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_analyzestreamabortbymessageid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L159", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_appendanalysisstreamreplaychunk", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_buildinboxaitaskkey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_bumpdraftreplysupersedegeneration", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L250", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_classifyterminalstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L144", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_clearanalysisstreamreplayprefix", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_draftreplygenerationbymessageid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L134", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_getdraftreplygeneration", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_inboxaistreaminvokeopts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_inboxaitaskinflight", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_inflightentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L150", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_initanalysisstreamreplay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L264", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_isdraftreplyrunstale", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_localollamablocked", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L257", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_loginboxaitaskterminal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_markanalysisstreamreplaydone", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_markanalysisstreamreplayerror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_recordlocalollamaoutcome", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_removeinflightkeyswithprefix", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L180", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_replayanalysisstreamstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L273", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_runinboxaitaskwithdedup", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_syncinboxaiselectionfortaskkey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L211", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_tryattachmanualinboxanalysistorunningauto", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L232", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_waitforinboxaitask", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup", + "target": "apps_electron_vite_project_electron_main_email_inboxllmchat", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup", + "target": "apps_electron_vite_project_electron_main_email_inboxllmchat_resolveinboxllmsettings", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate_assertgpuinferenceavailable", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate_inferenceunavailableerror", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore_readstoredaiexecutioncontext", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L277", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L277", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_inboxaistreaminvokeopts", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L277", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_buildinboxaitaskkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L3966", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_buildinboxaitaskkey" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_syncinboxaiselectionfortaskkey", + "target": "apps_electron_vite_project_electron_main_email_inboxllmchat_resolveinboxllmsettings" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_syncinboxaiselectionfortaskkey", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore_readstoredaiexecutioncontext" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L277", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_syncinboxaiselectionfortaskkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L3965", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_syncinboxaiselectionfortaskkey" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_localollamablocked", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate_assertgpuinferenceavailable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L337", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_runinboxaitaskwithdedup", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_localollamablocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L355", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_runinboxaitaskwithdedup", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_recordlocalollamaoutcome", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L277", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_analyzestreamabortbymessageid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_abortanalyzestreamformessage", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_loginboxaitaskterminal", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L277", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_bumpdraftreplysupersedegeneration", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L3968", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_bumpdraftreplysupersedegeneration" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L265", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_isdraftreplyrunstale", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_getdraftreplygeneration", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L277", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_getdraftreplygeneration", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L3969", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_getdraftreplygeneration" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L300", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_runinboxaitaskwithdedup", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_removeinflightkeyswithprefix", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L301", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_runinboxaitaskwithdedup", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_clearanalysisstreamreplayprefix", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L277", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_initanalysisstreamreplay", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L4703", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_initanalysisstreamreplay" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L277", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_appendanalysisstreamreplaychunk", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L4876", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_appendanalysisstreamreplaychunk" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L277", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_markanalysisstreamreplaydone", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L4931", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_markanalysisstreamreplaydone" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L277", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_markanalysisstreamreplayerror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L4959", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_markanalysisstreamreplayerror" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L226", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_tryattachmanualinboxanalysistorunningauto", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_replayanalysisstreamstate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L277", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_replayanalysisstreamstate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L4666", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_replayanalysisstreamstate" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L277", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_tryattachmanualinboxanalysistorunningauto", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L4685", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_tryattachmanualinboxanalysistorunningauto" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L277", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_waitforinboxaitask", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L3971", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_waitforinboxaitask" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L358", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_runinboxaitaskwithdedup", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_classifyterminalstate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts", + "source_location": "L291", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_runinboxaitaskwithdedup", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_loginboxaitaskterminal", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L277", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_isdraftreplyrunstale", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L3998", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_isdraftreplyrunstale" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L277", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_runinboxaitaskwithdedup", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L3989", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_inboxaitaskdedup_runinboxaitaskwithdedup" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLifecycleEngine.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxlifecycleengine", + "target": "apps_electron_vite_project_electron_main_email_inboxlifecycleengine_lifecycletickresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLifecycleEngine.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxlifecycleengine", + "target": "apps_electron_vite_project_electron_main_email_inboxlifecycleengine_pending_delete_retention_ms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLifecycleEngine.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxlifecycleengine", + "target": "apps_electron_vite_project_electron_main_email_inboxlifecycleengine_pending_review_retention_ms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLifecycleEngine.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxlifecycleengine", + "target": "apps_electron_vite_project_electron_main_email_inboxlifecycleengine_pendingdeleteexpirycutoffiso", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLifecycleEngine.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxlifecycleengine", + "target": "apps_electron_vite_project_electron_main_email_inboxlifecycleengine_reviewexpirycutoffiso", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLifecycleEngine.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxlifecycleengine", + "target": "apps_electron_vite_project_electron_main_email_inboxlifecycleengine_runinboxlifecycletick", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLifecycleEngine.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxlifecycleengine", + "target": "apps_electron_vite_project_electron_main_email_inboxlifecycleengine_utcnowiso", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLifecycleEngine.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxlifecycleengine", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLifecycleEngine.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxlifecycleengine", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_enqueueorchestratorremotemutations", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLifecycleEngine.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxlifecycleengine", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_scheduleorchestratorremotedrain", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLifecycleEngine.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxlifecycleengine", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLifecycleEngine.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxlifecycleengine", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_thisnodemayperformremoteprovidermutations", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLifecycleEngine.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxlifecycleengine", + "target": "apps_electron_vite_project_electron_main_email_remotedeletion", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLifecycleEngine.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxlifecycleengine", + "target": "apps_electron_vite_project_electron_main_email_remotedeletion_executependingdeletions", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLifecycleEngine.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxlifecycleengine", + "target": "apps_electron_vite_project_electron_main_email_remotedeletion_queueremotedeletion", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLifecycleEngine.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxlifecycleengine", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLifecycleEngine.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxlifecycleengine", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_preparesealedoperationalupdate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L263", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxlifecycleengine", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLifecycleEngine.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxlifecycleengine_runinboxlifecycletick", + "target": "apps_electron_vite_project_electron_main_email_inboxlifecycleengine_utcnowiso", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLifecycleEngine.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxlifecycleengine_runinboxlifecycletick", + "target": "apps_electron_vite_project_electron_main_email_inboxlifecycleengine_reviewexpirycutoffiso", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLifecycleEngine.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxlifecycleengine_runinboxlifecycletick", + "target": "apps_electron_vite_project_electron_main_email_inboxlifecycleengine_pendingdeleteexpirycutoffiso", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/inboxLifecycleEngine.ts", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxlifecycleengine_runinboxlifecycletick", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_enqueueorchestratorremotemutations" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/inboxLifecycleEngine.ts", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxlifecycleengine_runinboxlifecycletick", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_scheduleorchestratorremotedrain" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/inboxLifecycleEngine.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxlifecycleengine_runinboxlifecycletick", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_thisnodemayperformremoteprovidermutations" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/inboxLifecycleEngine.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxlifecycleengine_runinboxlifecycletick", + "target": "apps_electron_vite_project_electron_main_email_remotedeletion_executependingdeletions" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/inboxLifecycleEngine.ts", + "source_location": "L193", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxlifecycleengine_runinboxlifecycletick", + "target": "apps_electron_vite_project_electron_main_email_remotedeletion_queueremotedeletion" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/inboxLifecycleEngine.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxlifecycleengine_runinboxlifecycletick", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_preparesealedoperationalupdate" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L263", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxlifecycleengine_runinboxlifecycletick", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L6273", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_inboxlifecycleengine_runinboxlifecycletick" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_email_inboxllmchat_firstcloudragsettings", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_email_inboxllmchat_inbox_llm_local_timeout_ms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_email_inboxllmchat_inbox_llm_max_output_tokens", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_email_inboxllmchat_inbox_llm_timeout_ms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L228", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_email_inboxllmchat_inboxllmchat", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L204", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_email_inboxllmchat_inboxllmchatparams", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_email_inboxllmchat_inboxllmtimeouterror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_email_inboxllmchat_inboxsupportsollamastream", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_email_inboxllmchat_isaborterror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_email_inboxllmchat_isllmavailable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L183", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_email_inboxllmchat_preresolveinboxllm", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_email_inboxllmchat_resolvedllmcontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_email_inboxllmchat_resolveinboxllmsettings", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_email_inboxllmchat_vision_to_rag", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_email_inboxllmchat_visionforragsettings", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_email_inboxpromptguard", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_email_inboxpromptguard_guardinboxpromptforctxslot", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_getprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_userragsettings", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_internalinference_beapcontentairoute", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_internalinference_beapcontentairoute_beapcontentaitask", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore_debug_active_local_model", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutiontypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutiontypes_aiexecutioncontext", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_llm_llamachatresponsecontent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_llm_llamachatresponsecontent_empty_llm_response_error", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_llm_localllmpaths", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_llm_localllmpaths_host_ai_default_local_llamacpp_base", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_debug_ollama_runtime_trace", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_ollamaruntimelog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_ollamaruntimerequesttrace", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_iseffectivesandboxsideforaiexecution", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_no_ai_model_selected", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_resolveaiexecutioncontextforllm", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_ocr_router", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_ocr_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_ocr_types_visionprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox", + "target": "apps_electron_vite_project_electron_main_email_inboxllmchat", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L314", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxllmchat", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceExecute.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute", + "target": "apps_electron_vite_project_electron_main_email_inboxllmchat", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/internalHostInferenceLocal.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_internalhostinferencelocal", + "target": "apps_electron_vite_project_electron_main_email_inboxllmchat", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox", + "target": "apps_electron_vite_project_electron_main_email_inboxllmchat_inbox_llm_timeout_ms", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox", + "target": "apps_electron_vite_project_electron_main_email_inboxllmchat_inbox_llm_local_timeout_ms", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L314", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxllmchat_inbox_llm_local_timeout_ms", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox", + "target": "apps_electron_vite_project_electron_main_email_inboxllmchat_inbox_llm_max_output_tokens", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L314", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxllmchat_inbox_llm_max_output_tokens", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L392", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_email_inboxllmchat_isaborterror", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat_inboxllmtimeouterror", + "target": "apps_electron_vite_project_electron_main_email_inboxllmchat_inboxllmtimeouterror_constructor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceExecute.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute", + "target": "apps_electron_vite_project_electron_main_email_inboxllmchat_inboxllmtimeouterror", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/internalHostInferenceLocal.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_internalhostinferencelocal", + "target": "apps_electron_vite_project_electron_main_email_inboxllmchat_inboxllmtimeouterror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat_resolveinboxllmsettings", + "target": "apps_electron_vite_project_electron_main_email_inboxllmchat_firstcloudragsettings", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L246", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_email_inboxllmchat_resolveinboxllmsettings", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat_inboxsupportsollamastream", + "target": "apps_electron_vite_project_electron_main_email_inboxllmchat_resolveinboxllmsettings", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat_isllmavailable", + "target": "apps_electron_vite_project_electron_main_email_inboxllmchat_resolveinboxllmsettings", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L184", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat_preresolveinboxllm", + "target": "apps_electron_vite_project_electron_main_email_inboxllmchat_resolveinboxllmsettings", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L314", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxllmchat_resolveinboxllmsettings", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L4024", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_inboxllmchat_resolveinboxllmsettings" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat_isllmavailable", + "target": "apps_electron_vite_project_electron_main_email_inboxllmchat_visionforragsettings", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L197", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat_preresolveinboxllm", + "target": "apps_electron_vite_project_electron_main_email_inboxllmchat_visionforragsettings", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat_isllmavailable", + "target": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_resolveaiexecutioncontextforllm" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L314", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxllmchat_isllmavailable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L3919", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_inboxllmchat_isllmavailable" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat_inboxsupportsollamastream", + "target": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_resolveaiexecutioncontextforllm" + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat_resolvedllmcontext", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutiontypes_aiexecutioncontext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L314", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxllmchat_resolvedllmcontext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L188", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat_preresolveinboxllm", + "target": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_resolveaiexecutioncontextforllm" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L314", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxllmchat_preresolveinboxllm", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L5423", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_inboxllmchat_preresolveinboxllm" + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L222", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat_inboxllmchatparams", + "target": "apps_electron_vite_project_electron_main_internalinference_beapcontentairoute_beapcontentaitask", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L216", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat_inboxllmchatparams", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutiontypes_aiexecutioncontext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L218", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat_inboxllmchatparams", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_ollamaruntimerequesttrace", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L282", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_email_inboxpromptguard_guardinboxpromptforctxslot" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L343", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L248", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_getprovider" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L375", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider_generatechat" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L304", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_internalinference_beapcontentairoute", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L305", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_internalinference_beapcontentairoute_plansandboxhostchatexecution" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L315", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostchat", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L360", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_ollamaruntimelog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L302", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_iseffectivesandboxsideforaiexecution" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts", + "source_location": "L256", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxllmchat_inboxllmchat", + "target": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_resolveaiexecutioncontextforllm" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L314", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxllmchat_inboxllmchat", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L1994", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_inboxllmchat_inboxllmchat" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox", + "target": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox_inboxollamagpuchatgate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox", + "target": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox_inboxollamastreamfetchdiag", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox", + "target": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox_logstreamevent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox", + "target": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox_logstreamfetcherr", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox", + "target": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox_mergeabortsignals", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts", + "source_location": "L327", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox", + "target": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox_streaminboxollamaanalyzewithsandboxrouting", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox", + "target": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox_streamlocalllmchatssefrombaseurl", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate_assertgpuinferenceavailable", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate_assertgpuinferenceavailableforremoteollama", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate_islikelyloopbackorigin", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox", + "target": "apps_electron_vite_project_electron_main_internalinference_beapcontentairoute", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox", + "target": "apps_electron_vite_project_electron_main_internalinference_beapcontentairoute_beapcontentaitask", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox", + "target": "apps_electron_vite_project_electron_main_internalinference_beapcontentairoute_plansandboxhostchatexecution", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox", + "target": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox", + "target": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_inferenceroutingunavailableerror", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox", + "target": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_logsandboxinferencesend", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox", + "target": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox", + "target": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_resolvesandboxinferencetarget", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutiontypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutiontypes_aiexecutioncontext", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox", + "target": "apps_electron_vite_project_electron_main_llm_localllmpaths", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox", + "target": "apps_electron_vite_project_electron_main_llm_localllmpaths_host_ai_default_local_llamacpp_base", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox", + "target": "apps_electron_vite_project_electron_main_llm_openaissechatstream", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox", + "target": "apps_electron_vite_project_electron_main_llm_openaissechatstream_parseopenaichatcompletionssseline", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox", + "target": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox", + "target": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_iseffectivesandboxsideforaiexecution", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_bareollamamodelnameforapi", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L299", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox_streamlocalllmchatssefrombaseurl", + "target": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox_mergeabortsignals", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts", + "source_location": "L288", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox_streamlocalllmchatssefrombaseurl", + "target": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox_logstreamfetcherr", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox_streamlocalllmchatssefrombaseurl", + "target": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox_logstreamevent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts", + "source_location": "L364", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox_streaminboxollamaanalyzewithsandboxrouting", + "target": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox_streamlocalllmchatssefrombaseurl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox_streamlocalllmchatssefrombaseurl", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate_assertgpuinferenceavailable" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox_streamlocalllmchatssefrombaseurl", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate_assertgpuinferenceavailableforremoteollama" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts", + "source_location": "L223", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox_streamlocalllmchatssefrombaseurl", + "target": "apps_electron_vite_project_electron_main_llm_openaissechatstream_parseopenaichatcompletionssseline" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts", + "source_location": "L470", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox_streaminboxollamaanalyzewithsandboxrouting", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate_islikelyloopbackorigin" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts", + "source_location": "L376", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox_streaminboxollamaanalyzewithsandboxrouting", + "target": "apps_electron_vite_project_electron_main_internalinference_beapcontentairoute_plansandboxhostchatexecution" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts", + "source_location": "L467", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox_streaminboxollamaanalyzewithsandboxrouting", + "target": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_logsandboxinferencesend" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts", + "source_location": "L444", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox_streaminboxollamaanalyzewithsandboxrouting", + "target": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_resolvesandboxinferencetarget" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts", + "source_location": "L409", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox_streaminboxollamaanalyzewithsandboxrouting", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostchat", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts", + "source_location": "L336", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox_streaminboxollamaanalyzewithsandboxrouting", + "target": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_iseffectivesandboxsideforaiexecution" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts", + "source_location": "L335", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox_streaminboxollamaanalyzewithsandboxrouting", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_bareollamamodelnameforapi" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L299", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox_streaminboxollamaanalyzewithsandboxrouting", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L4865", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_inboxollamachatstreamsandbox_streaminboxollamaanalyzewithsandboxrouting" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_batch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L204", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_buckettotargetop", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1498", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_cleanupstalefailedremotequeueonreconnect", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1478", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_clearfailedorchestratorremotequeueforaccount", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L234", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_clearstalelifecyclequeueopsexcept", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L212", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_clearstalestmts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1228", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_drainorchestratorremoteboundedoptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1220", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_drainorchestratorremoteboundedresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1242", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_drainorchestratorremotequeuebounded", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1140", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_enqueuefullremotesync", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1196", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_enqueuefullremotesyncforaccountstouchingmessages", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_enqueuefullremotesyncresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L258", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_enqueueorchestratorremotemutations", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L248", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_enqueueorchestratorremoteresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L953", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_enqueueremoteopsforlocallifecyclestate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L794", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_enqueueunmirroredclassifiedlifecyclemessages", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L784", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_enqueueunmirroredclassifiedresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L901", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_ensureorchestratorremotedrainwatchdog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1333", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_forcedrainrestart", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_formatlifecycleskipreason", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1593", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_gatewayaccountinboxdiag", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1556", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_getdistinctorphaninboxaccountids", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1612", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_getinboxaccountmigrationdiagnostics", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_interremoteopdelayms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_ispermanentorchestratorterminalerror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_istransientorchestratorremoteconnectionerror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1765", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_listremoteorchestratorqueuerows", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_localrowtoexpectedbucket", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L840", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_markorphanpendingqueuerowsasfailed", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1664", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_migrateinboxaccountidandclearqueue", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1468", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_normalizeaccountemailforqueuecleanup", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L161", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_observedremotebucketfromimapcolumn", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_orchestratordrainprogresspayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1601", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_orphaninboxdiag", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1571", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_orphaninboxhasrecipienthintforemail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L218", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_prepareclearstalelifecyclequeueops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L396", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_processorchestratorremotebatchresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L407", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_processorchestratorremotequeuebatch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L880", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_purgeimapremotequeuerows", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_remotelifecyclebucket", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1438", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_resetfailedorchestratorremotequeuerows", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1341", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_scheduleorchestratorremotedrain", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_setorchestratordrainprogressreporter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1317", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_setsimpleorchestratorremotedrainprimary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_sleepms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1713", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_tryautomigrateinboxaccountonreconnect", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_sandbox_remote_mutations_host_only", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_thisnodemayperformremoteprovidermutations", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_syncpulllock", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_syncpulllock_ispullactive", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_preparesealedoperationalupdate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L240", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L240", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_setorchestratordrainprogressreporter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L2022", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_setorchestratordrainprogressreporter" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L240", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_batch", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_istransientorchestratorremoteconnectionerror", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_ispermanentorchestratorterminalerror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L688", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_processorchestratorremotequeuebatch", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_ispermanentorchestratorterminalerror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L559", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_processorchestratorremotequeuebatch", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_istransientorchestratorremoteconnectionerror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L759", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_processorchestratorremotequeuebatch", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_interremoteopdelayms", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L682", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_processorchestratorremotequeuebatch", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_sleepms", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1172", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_enqueuefullremotesync", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_localrowtoexpectedbucket", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1026", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_enqueueremoteopsforlocallifecyclestate", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_localrowtoexpectedbucket", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L978", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_enqueueremoteopsforlocallifecyclestate", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_formatlifecycleskipreason", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1173", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_enqueuefullremotesync", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_observedremotebucketfromimapcolumn", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1027", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_enqueueremoteopsforlocallifecyclestate", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_observedremotebucketfromimapcolumn", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1053", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_enqueueremoteopsforlocallifecyclestate", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_buckettotargetop", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L968", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_enqueueremoteopsforlocallifecyclestate", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_prepareclearstalelifecyclequeueops", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1042", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_enqueueremoteopsforlocallifecyclestate", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_clearstalelifecyclequeueopsexcept", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L268", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_enqueueorchestratorremotemutations", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_thisnodemayperformremoteprovidermutations" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_enqueueremoteopsforlocallifecyclestate", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_enqueueorchestratorremotemutations", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L240", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_enqueueorchestratorremotemutations", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1274", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_drainorchestratorremotequeuebounded", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_processorchestratorremotequeuebatch", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L419", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_processorchestratorremotequeuebatch", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_thisnodemayperformremoteprovidermutations" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L519", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_processorchestratorremotequeuebatch", + "target": "apps_electron_vite_project_electron_main_email_syncpulllock_ispullactive" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L465", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_processorchestratorremotequeuebatch", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_preparesealedoperationalupdate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1370", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_scheduleorchestratorremotedrain", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_processorchestratorremotequeuebatch", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L240", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_processorchestratorremotequeuebatch", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L5927", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_processorchestratorremotequeuebatch" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L818", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_enqueueunmirroredclassifiedlifecyclemessages", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_enqueueremoteopsforlocallifecyclestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L240", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_enqueueunmirroredclassifiedlifecyclemessages", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L2386", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_enqueueunmirroredclassifiedlifecyclemessages" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L240", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_markorphanpendingqueuerowsasfailed", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L5857", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_markorphanpendingqueuerowsasfailed" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L240", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_purgeimapremotequeuerows", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L6295", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_purgeimapremotequeuerows" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L936", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_ensureorchestratorremotedrainwatchdog", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_forcedrainrestart", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L937", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_ensureorchestratorremotedrainwatchdog", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_scheduleorchestratorremotedrain", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L240", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_ensureorchestratorremotedrainwatchdog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L2380", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_ensureorchestratorremotedrainwatchdog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1189", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_enqueuefullremotesync", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_enqueueremoteopsforlocallifecyclestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L240", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_enqueueremoteopsforlocallifecyclestate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L3621", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_enqueueremoteopsforlocallifecyclestate" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_enqueueremoteopsforlocallifecyclestate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L1180", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator_startautosync", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_enqueueremoteopsforlocallifecyclestate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1212", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_enqueuefullremotesyncforaccountstouchingmessages", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_enqueuefullremotesync", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L240", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_enqueuefullremotesync", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L5796", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_enqueuefullremotesync" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L240", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_enqueuefullremotesyncforaccountstouchingmessages", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L5820", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_enqueuefullremotesyncforaccountstouchingmessages" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1301", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_drainorchestratorremotequeuebounded", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_scheduleorchestratorremotedrain", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_drainorchestratorremotequeuebounded", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L1182", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator_startautosync", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_drainorchestratorremotequeuebounded" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L240", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_setsimpleorchestratorremotedrainprimary", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L2031", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_setsimpleorchestratorremotedrainprimary" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1345", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_scheduleorchestratorremotedrain", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_thisnodemayperformremoteprovidermutations" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L240", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_scheduleorchestratorremotedrain", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L2389", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_scheduleorchestratorremotedrain" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_scheduleorchestratorremotedrain", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L1186", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator_startautosync", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_scheduleorchestratorremotedrain" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L240", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_resetfailedorchestratorremotequeuerows", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L6009", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_resetfailedorchestratorremotequeuerows" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1508", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_cleanupstalefailedremotequeueonreconnect", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_normalizeaccountemailforqueuecleanup", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1646", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_getinboxaccountmigrationdiagnostics", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_normalizeaccountemailforqueuecleanup", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1577", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_orphaninboxhasrecipienthintforemail", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_normalizeaccountemailforqueuecleanup", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1725", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_tryautomigrateinboxaccountonreconnect", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_normalizeaccountemailforqueuecleanup", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L240", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_clearfailedorchestratorremotequeueforaccount", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L6036", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_clearfailedorchestratorremotequeueforaccount" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L240", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_cleanupstalefailedremotequeueonreconnect", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L703", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_runpostemailconnectfailedqueuecleanup", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_cleanupstalefailedremotequeueonreconnect", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1633", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_getinboxaccountmigrationdiagnostics", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_getdistinctorphaninboxaccountids", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1737", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_tryautomigrateinboxaccountonreconnect", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_getdistinctorphaninboxaccountids", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1646", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_getinboxaccountmigrationdiagnostics", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_orphaninboxhasrecipienthintforemail", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1738", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_tryautomigrateinboxaccountonreconnect", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_orphaninboxhasrecipienthintforemail", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L240", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_getinboxaccountmigrationdiagnostics", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L2677", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_getinboxaccountmigrationdiagnostics" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1692", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_migrateinboxaccountidandclearqueue", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_preparesealedoperationalupdate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts", + "source_location": "L1751", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_tryautomigrateinboxaccountonreconnect", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_migrateinboxaccountidandclearqueue", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L240", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_migrateinboxaccountidandclearqueue", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L2716", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_migrateinboxaccountidandclearqueue" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L240", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_tryautomigrateinboxaccountonreconnect", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L695", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_runpostemailconnectfailedqueuecleanup", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_tryautomigrateinboxaccountonreconnect", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L240", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_listremoteorchestratorqueuerows", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L5990", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_inboxorchestratorremotequeue_listremoteorchestratorqueuerows" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxPromptGuard.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxpromptguard", + "target": "apps_electron_vite_project_electron_main_email_inboxpromptguard_estimatetexttokens", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxPromptGuard.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxpromptguard", + "target": "apps_electron_vite_project_electron_main_email_inboxpromptguard_guardinboxpromptforctxslot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxPromptGuard.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxpromptguard", + "target": "apps_electron_vite_project_electron_main_email_inboxpromptguard_inbox_prompt_template_overhead_tokens", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxPromptGuard.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxpromptguard", + "target": "apps_electron_vite_project_electron_main_email_inboxpromptguard_truncateemaillikecontent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxPromptGuard.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxpromptguard", + "target": "apps_electron_vite_project_electron_main_email_inboxpromptguard_truncatemiddle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxPromptGuard.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxpromptguard_guardinboxpromptforctxslot", + "target": "apps_electron_vite_project_electron_main_email_inboxpromptguard_estimatetexttokens", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxPromptGuard.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxpromptguard_truncateemaillikecontent", + "target": "apps_electron_vite_project_electron_main_email_inboxpromptguard_estimatetexttokens", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxPromptGuard.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxpromptguard_guardinboxpromptforctxslot", + "target": "apps_electron_vite_project_electron_main_email_inboxpromptguard_truncatemiddle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxPromptGuard.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxpromptguard_truncateemaillikecontent", + "target": "apps_electron_vite_project_electron_main_email_inboxpromptguard_truncatemiddle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxPromptGuard.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxpromptguard_guardinboxpromptforctxslot", + "target": "apps_electron_vite_project_electron_main_email_inboxpromptguard_truncateemaillikecontent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxRowSealPolicy.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxrowsealpolicy", + "target": "apps_electron_vite_project_electron_main_email_inboxrowsealpolicy_allowslegacyouterreseal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxRowSealPolicy.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxrowsealpolicy", + "target": "apps_electron_vite_project_electron_main_email_inboxrowsealpolicy_effectiveinboxrowsealkeysource", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxRowSealPolicy.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxrowsealpolicy", + "target": "apps_electron_vite_project_electron_main_email_inboxrowsealpolicy_inboxrowrequiresinnervault", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxRowSealPolicy.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxrowsealpolicy", + "target": "apps_electron_vite_project_electron_main_email_inboxrowsealpolicy_isdepackagedemailinboxsourcetype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxRowSealPolicy.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxrowsealpolicy", + "target": "apps_electron_vite_project_electron_main_email_inboxrowsealpolicy_verificationkeysourcesforinboxrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxRowSealPolicy.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxrowsealpolicy", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality_gethandshakeclassification", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxRowSealPolicy.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxrowsealpolicy", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxRowSealPolicy.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxrowsealpolicy", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_keysource", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxRowSealPolicy.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxrowsealpolicy", + "target": "apps_electron_vite_project_electron_main_vault_vaultcanon", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxsealedread", + "target": "apps_electron_vite_project_electron_main_email_inboxrowsealpolicy", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxRowSealPolicy.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxrowsealpolicy_allowslegacyouterreseal", + "target": "apps_electron_vite_project_electron_main_email_inboxrowsealpolicy_isdepackagedemailinboxsourcetype", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxRowSealPolicy.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxrowsealpolicy_inboxrowrequiresinnervault", + "target": "apps_electron_vite_project_electron_main_email_inboxrowsealpolicy_isdepackagedemailinboxsourcetype", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxRowSealPolicy.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxrowsealpolicy_allowslegacyouterreseal", + "target": "apps_electron_vite_project_electron_main_email_inboxrowsealpolicy_inboxrowrequiresinnervault", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxRowSealPolicy.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxrowsealpolicy_effectiveinboxrowsealkeysource", + "target": "apps_electron_vite_project_electron_main_email_inboxrowsealpolicy_inboxrowrequiresinnervault", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/inboxRowSealPolicy.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxrowsealpolicy_inboxrowrequiresinnervault", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality_gethandshakeclassification" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxRowSealPolicy.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxrowsealpolicy_verificationkeysourcesforinboxrow", + "target": "apps_electron_vite_project_electron_main_email_inboxrowsealpolicy_inboxrowrequiresinnervault", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxsealedread", + "target": "apps_electron_vite_project_electron_main_email_inboxrowsealpolicy_inboxrowrequiresinnervault", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxsealedread_deferredreasonforrow", + "target": "apps_electron_vite_project_electron_main_email_inboxrowsealpolicy_inboxrowrequiresinnervault", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxsealedread_trylegacyouterreseal", + "target": "apps_electron_vite_project_electron_main_email_inboxrowsealpolicy_inboxrowrequiresinnervault", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxsealedread_verifyinboxmessagerowornull", + "target": "apps_electron_vite_project_electron_main_email_inboxrowsealpolicy_inboxrowrequiresinnervault" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxsealedread", + "target": "apps_electron_vite_project_electron_main_email_inboxrowsealpolicy_verificationkeysourcesforinboxrow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L134", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxsealedread_verifyinboxmessagerowornull", + "target": "apps_electron_vite_project_electron_main_email_inboxrowsealpolicy_verificationkeysourcesforinboxrow" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxsealedread", + "target": "apps_electron_vite_project_electron_main_email_inboxrowsealpolicy_allowslegacyouterreseal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxsealedread_trylegacyouterreseal", + "target": "apps_electron_vite_project_electron_main_email_inboxrowsealpolicy_allowslegacyouterreseal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxsealedread", + "target": "apps_electron_vite_project_electron_main_email_inboxsealedread_deferredreasonforrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L188", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxsealedread", + "target": "apps_electron_vite_project_electron_main_email_inboxsealedread_filterinboxrowswithverifiedseals", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxsealedread", + "target": "apps_electron_vite_project_electron_main_email_inboxsealedread_inboxplaceholderrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxsealedread", + "target": "apps_electron_vite_project_electron_main_email_inboxsealedread_isinboxplaceholderrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L177", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxsealedread", + "target": "apps_electron_vite_project_electron_main_email_inboxsealedread_loadverifiedinboxmessagebyid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxsealedread", + "target": "apps_electron_vite_project_electron_main_email_inboxsealedread_resealinboxrowtoledger", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxsealedread", + "target": "apps_electron_vite_project_electron_main_email_inboxsealedread_sensitive_list_fields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxsealedread", + "target": "apps_electron_vite_project_electron_main_email_inboxsealedread_todeferredinboxlistrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxsealedread", + "target": "apps_electron_vite_project_electron_main_email_inboxsealedread_trylegacyouterreseal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxsealedread", + "target": "apps_electron_vite_project_electron_main_email_inboxsealedread_tryverifywithkeysource", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxsealedread", + "target": "apps_electron_vite_project_electron_main_email_inboxsealedread_verifyinboxmessagerowornull", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxsealedread", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxsealedread", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_computeseal", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxsealedread", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_iskeyproviderusable", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxsealedread", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_keysource", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxsealedread", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedquery", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxsealedread", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxsealedread", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealverificationerror", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxsealedread", + "target": "apps_electron_vite_project_electron_main_vault_capabilitybroker", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxsealedread", + "target": "apps_electron_vite_project_electron_main_vault_capabilitybroker_reasoncode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L308", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxsealedread", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxsealedread_verifyinboxmessagerowornull", + "target": "apps_electron_vite_project_electron_main_email_inboxsealedread_isinboxplaceholderrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L308", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxsealedread_isinboxplaceholderrow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxsealedread_deferredreasonforrow", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_iskeyproviderusable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L166", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxsealedread_verifyinboxmessagerowornull", + "target": "apps_electron_vite_project_electron_main_email_inboxsealedread_deferredreasonforrow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxsealedread_verifyinboxmessagerowornull", + "target": "apps_electron_vite_project_electron_main_email_inboxsealedread_todeferredinboxlistrow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxsealedread_trylegacyouterreseal", + "target": "apps_electron_vite_project_electron_main_email_inboxsealedread_tryverifywithkeysource", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxsealedread_tryverifywithkeysource", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedquery", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L139", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxsealedread_verifyinboxmessagerowornull", + "target": "apps_electron_vite_project_electron_main_email_inboxsealedread_tryverifywithkeysource", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxsealedread_resealinboxrowtoledger", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_computeseal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxsealedread_resealinboxrowtoledger", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_iskeyproviderusable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxsealedread_trylegacyouterreseal", + "target": "apps_electron_vite_project_electron_main_email_inboxsealedread_resealinboxrowtoledger", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxsealedread_verifyinboxmessagerowornull", + "target": "apps_electron_vite_project_electron_main_email_inboxsealedread_resealinboxrowtoledger", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxsealedread_trylegacyouterreseal", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_iskeyproviderusable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L158", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxsealedread_verifyinboxmessagerowornull", + "target": "apps_electron_vite_project_electron_main_email_inboxsealedread_trylegacyouterreseal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L194", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxsealedread_filterinboxrowswithverifiedseals", + "target": "apps_electron_vite_project_electron_main_email_inboxsealedread_verifyinboxmessagerowornull", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L185", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxsealedread_loadverifiedinboxmessagebyid", + "target": "apps_electron_vite_project_electron_main_email_inboxsealedread_verifyinboxmessagerowornull", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L137", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxsealedread_verifyinboxmessagerowornull", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_iskeyproviderusable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L308", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxsealedread_loadverifiedinboxmessagebyid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L3387", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_inboxsealedread_loadverifiedinboxmessagebyid" + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts", + "source_location": "L194", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxsealedread_filterinboxrowswithverifiedseals", + "target": "apps_electron_vite_project_src_components_internalhandshakeidentitypanel_row" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L308", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxsealedread_filterinboxrowswithverifiedseals", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L3324", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_inboxsealedread_filterinboxrowswithverifiedseals" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxWhereClause.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxwhereclause", + "target": "apps_electron_vite_project_electron_main_email_inboxwhereclause_buildinboxmessageswhereclause", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxWhereClause.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxwhereclause", + "target": "apps_electron_vite_project_electron_main_email_inboxwhereclause_inboxlistfilteroptions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxWhereClause.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxwhereclause", + "target": "apps_electron_vite_project_electron_main_email_sandboxcloneinboxfilter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxWhereClause.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxwhereclause", + "target": "apps_electron_vite_project_electron_main_email_sandboxcloneinboxfilter_sandboxcloneinboxsqlpredicate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxWhereClause.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxwhereclause", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inboxWhereClause.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxwhereclause", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_issandboxmode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L273", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxwhereclause", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L272", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxwhereclause_inboxlistfilteroptions", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/inboxWhereClause.ts", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxwhereclause_buildinboxmessageswhereclause", + "target": "apps_electron_vite_project_electron_main_email_sandboxcloneinboxfilter_sandboxcloneinboxsqlpredicate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/inboxWhereClause.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inboxwhereclause_buildinboxmessageswhereclause", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_issandboxmode" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L273", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_inboxwhereclause_buildinboxmessageswhereclause", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L3311", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_inboxwhereclause_buildinboxmessageswhereclause" + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/index.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_index", + "target": "apps_electron_vite_project_electron_main_email_ipc", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/index.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_index", + "target": "apps_electron_vite_project_electron_main_email_ipc_registeremailhandlers", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/index.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_index", + "target": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/index.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_index", + "target": "apps_electron_vite_project_electron_main_email_pdf_extractor", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/index.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_index", + "target": "apps_electron_vite_project_electron_main_email_pdf_extractor_extractpdftext", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/index.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_index", + "target": "apps_electron_vite_project_electron_main_email_pdf_extractor_extractpdftextresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/index.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_index", + "target": "apps_electron_vite_project_electron_main_email_pdf_extractor_ispdffile", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/index.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_index", + "target": "apps_electron_vite_project_electron_main_email_pdf_extractor_supportstextextraction", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/index.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_index", + "target": "apps_electron_vite_project_electron_main_email_sanitizer", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/index.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_index", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_generatesnippet", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/index.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_index", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_sanitizedisplayname", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/index.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_index", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_sanitizeemailaddress", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/index.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_index", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_sanitizehtmltotext", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/index.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_index", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_sanitizesubject", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/index.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_index", + "target": "apps_electron_vite_project_electron_main_email_types", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionOwnership.ts", + "source_location": "L183", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionownership", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_asserthostmayreadpoll", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionOwnership.ts", + "source_location": "L165", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionownership", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_hostreadpollforbiddenerror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionOwnership.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionownership", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_ingestion_host_triggered_only_skip", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionOwnership.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionownership", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_ingestionowner", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionOwnership.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionownership", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_ingestionownership", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionOwnership.ts", + "source_location": "L153", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionownership", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_isdedicatedsandboxfetchnode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionOwnership.ts", + "source_location": "L210", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionownership", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_maytriggerremoteprovidermutationatipc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionOwnership.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionownership", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_noderole", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionOwnership.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionownership", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_resolveingestionownership", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionOwnership.ts", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionownership", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_resolveingestionownershipwithledger", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionOwnership.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionownership", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_resolvenoderole", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionOwnership.ts", + "source_location": "L190", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionownership", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_sandbox_remote_mutations_host_only", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionOwnership.ts", + "source_location": "L196", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionownership", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_thisnodemayperformremoteprovidermutations", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionOwnership.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionownership", + "target": "apps_electron_vite_project_electron_main_email_opaqueingestion", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionOwnership.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionownership", + "target": "apps_electron_vite_project_electron_main_email_opaqueingestion_haslinkeddepackagesandbox", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionOwnership.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionownership", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionOwnership.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionownership", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionStatus.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionstatus", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L197", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestion", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_ingestionownership", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestion", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_ingestionownership", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestion_sandboxingestiondeps", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_ingestionownership", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionOwnership.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionownership_resolveingestionownership", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_resolvenoderole", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionOwnership.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionownership_resolvenoderole", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionOwnership.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionownership_resolveingestionownership", + "target": "apps_electron_vite_project_electron_main_email_opaqueingestion_haslinkeddepackagesandbox" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionOwnership.ts", + "source_location": "L142", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionownership_resolveingestionownershipwithledger", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_resolveingestionownership", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionOwnership.ts", + "source_location": "L154", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionownership_isdedicatedsandboxfetchnode", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_resolveingestionownershipwithledger", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionOwnership.ts", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionownership_resolveingestionownershipwithledger", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_resolveingestionownershipwithledger", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L176", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_shouldhosttriggerdedicatedsandboxpoll", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_resolveingestionownershipwithledger" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionStatus.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionstatus", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_resolveingestionownershipwithledger", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionStatus.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionstatus_resolveingestionstatus", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_resolveingestionownershipwithledger" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestion", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_resolveingestionownershipwithledger", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L310", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestion_runsandboxingestionpoll", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_resolveingestionownershipwithledger" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_resolveingestionownershipwithledger", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L1146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator_startautosync", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_resolveingestionownershipwithledger" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L483", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator_syncaccountemailsimpl", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_resolveingestionownershipwithledger", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L197", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_ingestion_host_triggered_only_skip", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_ingestion_host_triggered_only_skip", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator_syncresult", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_ingestion_host_triggered_only_skip", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionOwnership.ts", + "source_location": "L157", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionownership_isdedicatedsandboxfetchnode", + "target": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L197", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_isdedicatedsandboxfetchnode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L613", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_ensureimapbruteforceautosyncintervalregistered", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_isdedicatedsandboxfetchnode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_isdedicatedsandboxfetchnode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L1148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator_startautosync", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_isdedicatedsandboxfetchnode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L529", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator_syncaccountemailsimpl", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_isdedicatedsandboxfetchnode", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionOwnership.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionownership_hostreadpollforbiddenerror", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_hostreadpollforbiddenerror_constructor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_asserthostmayreadpoll", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L671", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator_syncaccountemailsimpl", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_asserthostmayreadpoll", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L197", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_sandbox_remote_mutations_host_only", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionOwnership.ts", + "source_location": "L211", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionownership_maytriggerremoteprovidermutationatipc", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_thisnodemayperformremoteprovidermutations", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L197", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_maytriggerremoteprovidermutationatipc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L808", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registeremailhandlers", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_maytriggerremoteprovidermutationatipc" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L3647", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_ingestionownership_maytriggerremoteprovidermutationatipc" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/crossNetworkPollArchitecture.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_crossnetworkpollarchitecture_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_crossnetworkpollarchitecture_test_readmodule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/crossNetworkPollArchitecture.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_crossnetworkpollarchitecture_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_crossnetworkpollarchitecture_test_trigger_dir", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/dedicatedHostIngestionPollTrigger.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_dedicatedhostingestionpolltrigger_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/dedicatedHostIngestionPollTrigger.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_dedicatedhostingestionpolltrigger_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_senddedicatedsandboxingestionpolltrigger", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/dedicatedHostIngestionPollTrigger.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_dedicatedhostingestionpolltrigger_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_shouldhosttriggerdedicatedsandboxpoll", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/dedicatedHostIngestionPollTrigger.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_dedicatedhostingestionpolltrigger_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_receiver", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/dedicatedHostIngestionPollTrigger.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_dedicatedhostingestionpolltrigger_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_receiver_handleingestionpollrequest", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/dedicatedHostIngestionPollTrigger.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_dedicatedhostingestionpolltrigger_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_receiver_makeingestionpollrequestwire", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/dedicatedHostIngestionPollTrigger.test.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_dedicatedhostingestionpolltrigger_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_dedicatedhostingestionpolltrigger_test_hosttosandboxrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/dedicatedHostIngestionPollTrigger.test.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_dedicatedhostingestionpolltrigger_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_dedicatedhostingestionpolltrigger_test_party", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/dedicatedHostIngestionPollTrigger.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_dedicatedhostingestionpolltrigger_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/dedicatedHostIngestionPollTrigger.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_dedicatedhostingestionpolltrigger_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_ingestion_poll_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/dedicatedHostIngestionPollTrigger.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_dedicatedhostingestionpolltrigger_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_isingestionpollservicerpcshape", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/dedicatedHostIngestionPollTrigger.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_dedicatedhostingestionpolltrigger_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/dedicatedHostIngestionPollTrigger.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_dedicatedhostingestionpolltrigger_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/dedicatedHostIngestionPollTrigger.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_dedicatedhostingestionpolltrigger_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_partyidentity", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/dedicatedHostIngestionPollTrigger.test.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_dedicatedhostingestionpolltrigger_test_hosttosandboxrecord", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_dedicatedhostingestionpolltrigger_test_party", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/hostIngestionPollCompletion.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_hostingestionpollcompletion_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostackstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/hostIngestionPollCompletion.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_hostingestionpollcompletion_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostackstore_hostingestionpollack", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/hostIngestionPollCompletion.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_hostingestionpollcompletion_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostingestionpollcompletion", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/hostIngestionPollCompletion.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_hostingestionpollcompletion_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostingestionpollcompletion_finalizependingingestionpollsyncresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/hostIngestionPollCompletion.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_hostingestionpollcompletion_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostingestionpollcompletion_resethostingestionpollcompletionfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/hostIngestionPollCompletion.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_hostingestionpollcompletion_test", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/hostIngestionPollCompletion.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_hostingestionpollcompletion_test", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_mapingestionpolltriggerhostfeedback", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayCapsuleHandler.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relaycapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_pollidempotencycache", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayCapsuleHandler.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relaycapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_pollidempotencycache_resetpollidempotencycachefortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayCapsuleHandler.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relaycapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_receiver", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayCapsuleHandler.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relaycapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_receiver_makeingestionpollrequestwire", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayCapsuleHandler.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relaycapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayCapsuleHandler.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relaycapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_handleingestionpollrelaycapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayCapsuleHandler.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relaycapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_setingestionpollrelayhandlerdepsfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayCapsuleHandler.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relaycapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_tryhandleingestionpollrelaycapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayCapsuleHandler.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relaycapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayCapsuleHandler.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relaycapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend_buildsealedservicerpcrelaycapsule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayCapsuleHandler.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relaycapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relaycapsulehandler_test_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayCapsuleHandler.test.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relaycapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relaycapsulehandler_test_hostkeys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayCapsuleHandler.test.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relaycapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relaycapsulehandler_test_hostrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayCapsuleHandler.test.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relaycapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relaycapsulehandler_test_makex25519pair", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayCapsuleHandler.test.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relaycapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relaycapsulehandler_test_party", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayCapsuleHandler.test.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relaycapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relaycapsulehandler_test_sandboxkeys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayCapsuleHandler.test.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relaycapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relaycapsulehandler_test_sandboxrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayCapsuleHandler.test.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relaycapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relaycapsulehandler_test_sealhostrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayCapsuleHandler.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relaycapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relaycapsulehandler_test_sendsealedrelay", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayCapsuleHandler.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relaycapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayCapsuleHandler.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relaycapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_ingestion_poll_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayCapsuleHandler.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relaycapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayCapsuleHandler.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relaycapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayCapsuleHandler.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relaycapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayCapsuleHandler.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relaycapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayCapsuleHandler.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relaycapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_openservicerpcpayload", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayCapsuleHandler.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relaycapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_sealservicerpcpayload", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayCapsuleHandler.test.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relaycapsulehandler_test_sealhostrequest", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend_buildsealedservicerpcrelaycapsule", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayCapsuleHandler.test.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relaycapsulehandler_test_sealhostrequest", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_sealservicerpcpayload", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayResultCapsuleHandler.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relayresultcapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostackstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayResultCapsuleHandler.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relayresultcapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostackstore_getlasthostingestionpollack", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayResultCapsuleHandler.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relayresultcapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostackstore_resethostingestionpollacksfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayResultCapsuleHandler.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relayresultcapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostingestionpollcompletion", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayResultCapsuleHandler.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relayresultcapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostingestionpollcompletion_resethostingestionpollcompletionfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayResultCapsuleHandler.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relayresultcapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostingestionpollcompletion_waitforhostingestionpollresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayResultCapsuleHandler.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relayresultcapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostpendingstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayResultCapsuleHandler.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relayresultcapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostpendingstore_registerhostingestionpollpending", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayResultCapsuleHandler.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relayresultcapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostpendingstore_resethostingestionpollpendingfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayResultCapsuleHandler.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relayresultcapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_receiver", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayResultCapsuleHandler.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relayresultcapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_receiver_makeingestionpollrequestwire", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayResultCapsuleHandler.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relayresultcapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayResultCapsuleHandler.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relayresultcapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler_mapingestionpollwiretohostack", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayResultCapsuleHandler.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relayresultcapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler_setingestionpollresultrelayhandlerdepsfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayResultCapsuleHandler.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relayresultcapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler_tryhandleingestionpollresultrelaycapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayResultCapsuleHandler.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relayresultcapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayResultCapsuleHandler.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relayresultcapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend_buildsealedservicerpcrelaycapsule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayResultCapsuleHandler.test.ts", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relayresultcapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relayresultcapsulehandler_test_makeresultwire", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayResultCapsuleHandler.test.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relayresultcapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relayresultcapsulehandler_test_party", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayResultCapsuleHandler.test.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relayresultcapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relayresultcapsulehandler_test_sealsandboxresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayResultCapsuleHandler.test.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relayresultcapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayResultCapsuleHandler.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relayresultcapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_ingestion_poll_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayResultCapsuleHandler.test.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relayresultcapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_ingestionpollerrorwire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayResultCapsuleHandler.test.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relayresultcapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_ingestionpollresultwire", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayResultCapsuleHandler.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relayresultcapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayResultCapsuleHandler.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relayresultcapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayResultCapsuleHandler.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relayresultcapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayResultCapsuleHandler.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relayresultcapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayResultCapsuleHandler.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relayresultcapsulehandler_test", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_sealservicerpcpayload", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayResultCapsuleHandler.test.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relayresultcapsulehandler_test_sealsandboxresult", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend_buildsealedservicerpcrelaycapsule", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayResultCapsuleHandler.test.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relayresultcapsulehandler_test_sealsandboxresult", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_sealservicerpcpayload", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayResultCapsuleHandler.test.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_relayresultcapsulehandler_test_makeresultwire", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_receiver_makeingestionpollrequestwire", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/sealedRelayHostPollTrigger.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_sealedrelayhostpolltrigger_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostackstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/sealedRelayHostPollTrigger.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_sealedrelayhostpolltrigger_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostackstore_getlasthostingestionpollack", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/sealedRelayHostPollTrigger.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_sealedrelayhostpolltrigger_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostackstore_resethostingestionpollacksfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/sealedRelayHostPollTrigger.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_sealedrelayhostpolltrigger_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostpendingstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/sealedRelayHostPollTrigger.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_sealedrelayhostpolltrigger_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostpendingstore_gethostingestionpollpending", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/sealedRelayHostPollTrigger.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_sealedrelayhostpolltrigger_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostpendingstore_resethostingestionpollpendingfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/sealedRelayHostPollTrigger.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_sealedrelayhostpolltrigger_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/sealedRelayHostPollTrigger.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_sealedrelayhostpolltrigger_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_default_ingestion_poll_trigger_timeout_ms", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/sealedRelayHostPollTrigger.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_sealedrelayhostpolltrigger_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_senddedicatedsandboxingestionpolltrigger", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/sealedRelayHostPollTrigger.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_sealedrelayhostpolltrigger_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/sealedRelayHostPollTrigger.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_sealedrelayhostpolltrigger_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend_buildsealedservicerpcrelaycapsule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/sealedRelayHostPollTrigger.test.ts", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_sealedrelayhostpolltrigger_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_sealedrelayhostpolltrigger_test_hosttosandboxrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/sealedRelayHostPollTrigger.test.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_sealedrelayhostpolltrigger_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_sealedrelayhostpolltrigger_test_makex25519pair", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/sealedRelayHostPollTrigger.test.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_sealedrelayhostpolltrigger_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_sealedrelayhostpolltrigger_test_party", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/sealedRelayHostPollTrigger.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_sealedrelayhostpolltrigger_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/sealedRelayHostPollTrigger.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_sealedrelayhostpolltrigger_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/sealedRelayHostPollTrigger.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_sealedrelayhostpolltrigger_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_partyidentity", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/sealedRelayHostPollTrigger.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_sealedrelayhostpolltrigger_test", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/sealedRelayHostPollTrigger.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_sealedrelayhostpolltrigger_test", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_openservicerpcpayload", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/sealedRelayHostPollTrigger.test.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_sealedrelayhostpolltrigger_test_hosttosandboxrecord", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_sealedrelayhostpolltrigger_test_party", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/sealedServiceRpcRelayDispatch.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_sealedservicerpcrelaydispatch_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_sealedservicerpcrelaydispatch", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/sealedServiceRpcRelayDispatch.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_sealedservicerpcrelaydispatch_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_sealedservicerpcrelaydispatch_tryhandlesealedservicerpcrelaycapsule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/sealedServiceRpcRelayDispatch.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_sealedservicerpcrelaydispatch_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_sealedservicerpcrelaydispatch_test_tryhandlerequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/sealedServiceRpcRelayDispatch.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_sealedservicerpcrelaydispatch_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_sealedservicerpcrelaydispatch_test_tryhandleresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/sealedServiceRpcRelayDispatch.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_sealedservicerpcrelaydispatch_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/sealedServiceRpcRelayDispatch.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_sealedservicerpcrelaydispatch_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_ingestion_poll_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/sealedServiceRpcRelayDispatch.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_sealedservicerpcrelaydispatch_test", + "target": "apps_electron_vite_project_electron_main_internalinference_unifiedservicerpcrelayflags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/sealedServiceRpcRelayDispatch.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_tests_sealedservicerpcrelaydispatch_test", + "target": "apps_electron_vite_project_electron_main_internalinference_unifiedservicerpcrelayflags_resetunifiedservicerpcrelayflagsfortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostAckStore.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostackstore", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostackstore_getlasthostingestionpollack", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostAckStore.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostackstore", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostackstore_getlasthostingestionpollacks", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostAckStore.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostackstore", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostackstore_hostingestionpollack", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostAckStore.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostackstore", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostackstore_lastackbyaccount", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostAckStore.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostackstore", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostackstore_recordhostingestionpollack", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostAckStore.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostackstore", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostackstore_recordhostingestionpollunreachable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostAckStore.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostackstore", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostackstore_resethostingestionpollacksfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostIngestionPollCompletion.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostingestionpollcompletion", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostackstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostPendingStore.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostpendingstore", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostackstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostackstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostackstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionStatus.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionstatus", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostackstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostIngestionPollCompletion.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostingestionpollcompletion", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostackstore_hostingestionpollack", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostackstore_hostingestionpollack", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostAckStore.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostackstore_recordhostingestionpollunreachable", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostackstore_recordhostingestionpollack", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostackstore_recordhostingestionpollack", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts", + "source_location": "L211", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler_tryhandleingestionpollresultrelaycapsule", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostackstore_recordhostingestionpollack" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostPendingStore.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostpendingstore", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostackstore_recordhostingestionpollunreachable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostPendingStore.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostpendingstore_registerhostingestionpollpending", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostackstore_recordhostingestionpollunreachable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostackstore_recordhostingestionpollunreachable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L259", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_senddedicatedsandboxingestionpolltrigger", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostackstore_recordhostingestionpollunreachable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionStatus.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionstatus", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostackstore_getlasthostingestionpollacks", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionStatus.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionstatus_resolveingestionstatus", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostackstore_getlasthostingestionpollacks" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostIngestionPollCompletion.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostingestionpollcompletion", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostingestionpollcompletion_completionwaiter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostIngestionPollCompletion.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostingestionpollcompletion", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostingestionpollcompletion_finalizependingingestionpollsyncresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostIngestionPollCompletion.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostingestionpollcompletion", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostingestionpollcompletion_ingestionpolltriggercounts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostIngestionPollCompletion.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostingestionpollcompletion", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostingestionpollcompletion_pendingingestionpollsyncslice", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostIngestionPollCompletion.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostingestionpollcompletion", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostingestionpollcompletion_rejecthostingestionpollcompletion", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostIngestionPollCompletion.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostingestionpollcompletion", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostingestionpollcompletion_resethostingestionpollcompletionfortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostIngestionPollCompletion.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostingestionpollcompletion", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostingestionpollcompletion_resolvehostingestionpollcompletion", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostIngestionPollCompletion.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostingestionpollcompletion", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostingestionpollcompletion_waitersbyrequestid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostIngestionPollCompletion.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostingestionpollcompletion", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostingestionpollcompletion_waitforhostingestionpollresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostIngestionPollCompletion.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostingestionpollcompletion", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostIngestionPollCompletion.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostingestionpollcompletion", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_default_ingestion_poll_trigger_timeout_ms", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostPendingStore.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostpendingstore", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostingestionpollcompletion", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostingestionpollcompletion", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L196", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostingestionpollcompletion", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostingestionpollcompletion_resolvehostingestionpollcompletion", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts", + "source_location": "L212", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler_tryhandleingestionpollresultrelaycapsule", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostingestionpollcompletion_resolvehostingestionpollcompletion" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostPendingStore.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostpendingstore", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostingestionpollcompletion_rejecthostingestionpollcompletion", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostPendingStore.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostpendingstore_registerhostingestionpollpending", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostingestionpollcompletion_rejecthostingestionpollcompletion" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L196", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostingestionpollcompletion_finalizependingingestionpollsyncresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostPendingStore.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostpendingstore", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostpendingstore_cancelhostingestionpollpending", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostPendingStore.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostpendingstore", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostpendingstore_gethostingestionpollpending", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostPendingStore.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostpendingstore", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostpendingstore_hostingestionpollpendingentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostPendingStore.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostpendingstore", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostpendingstore_pendingbyrequestid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostPendingStore.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostpendingstore", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostpendingstore_registerhostingestionpollpending", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostPendingStore.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostpendingstore", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostpendingstore_resethostingestionpollpendingfortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostPendingStore.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostpendingstore", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostpendingstore_resolvehostingestionpollpending", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostPendingStore.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostpendingstore", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostpendingstore_timersbyrequestid", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L275", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostpendingstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostpendingstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostpendingstore_registerhostingestionpollpending", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L243", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_senddedicatedsandboxingestionpolltrigger", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostpendingstore_registerhostingestionpollpending" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostPendingStore.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostpendingstore_resolvehostingestionpollpending", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostpendingstore_cancelhostingestionpollpending", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostpendingstore_cancelhostingestionpollpending", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L252", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_senddedicatedsandboxingestionpolltrigger", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostpendingstore_cancelhostingestionpollpending" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostpendingstore_resolvehostingestionpollpending", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts", + "source_location": "L201", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler_tryhandleingestionpollresultrelaycapsule", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostpendingstore_resolvehostingestionpollpending" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hostpendingstore_gethostingestionpollpending", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_buildingestionpollrequestwire", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_classifysendfailureoutcome", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_default_ingestion_poll_trigger_timeout_ms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_evaluatehostingestionpolltriggerdecision", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_findactivehosttosandboxhandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_ingestionpolltriggercounts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_ingestiontriggerdecision", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_ingestiontriggerdecisioncontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L159", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_logingestiontriggerdecision", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_peercoordinationid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_pendingtriggercounts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_sealedrelaypolltriggerdeps", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L188", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_senddedicatedsandboxingestionpolltrigger", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_senddedicatedsandboxingestionpolltriggerresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L172", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_shouldhosttriggerdedicatedsandboxpoll", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_shouldrecordunreachableonsendfailure", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend_sealedrelaycapsulesender", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend_sealedrelaysendresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend_sealservicerpcforrelay", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend_sendsealedservicerpcviacoordinationrelay", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_ingestion_poll_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_ingestionpollrequestwire", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger", + "target": "apps_electron_vite_project_electron_main_handshake_db_listhandshakerecords", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger", + "target": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger", + "target": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_resolvesandboxtopologykind", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger", + "target": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_sandboxtopologykind", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger", + "target": "apps_electron_vite_project_electron_main_internalinference_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_asserthostsendsresulttosandbox", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_ingestiontriggerdecisioncontext", + "target": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_sandboxtopologykind", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_sealedrelaypolltriggerdeps", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend_sealedrelaycapsulesender", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_sealedrelaypolltriggerdeps", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend_sealedrelaysendresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_sealedrelaypolltriggerdeps", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend_sendsealedservicerpcviacoordinationrelay", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_sealedrelaypolltriggerdeps", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_buildingestionpollrequestwire", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_peercoordinationid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_evaluatehostingestionpolltriggerdecision", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_peercoordinationid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_buildingestionpollrequestwire", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L217", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_senddedicatedsandboxingestionpolltrigger", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_buildingestionpollrequestwire", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L271", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_senddedicatedsandboxingestionpolltrigger", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_pendingtriggercounts", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L253", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_senddedicatedsandboxingestionpolltrigger", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_classifysendfailureoutcome", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L258", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_senddedicatedsandboxingestionpolltrigger", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_shouldrecordunreachableonsendfailure", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_evaluatehostingestionpolltriggerdecision", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_findactivehosttosandboxhandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_findactivehosttosandboxhandshakerecord", + "target": "apps_electron_vite_project_electron_main_handshake_db_listhandshakerecords" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L134", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_findactivehosttosandboxhandshakerecord", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_findactivehosttosandboxhandshakerecord", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_findactivehosttosandboxhandshakerecord", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L206", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_senddedicatedsandboxingestionpolltrigger", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_findactivehosttosandboxhandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_evaluatehostingestionpolltriggerdecision", + "target": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_resolvesandboxtopologykind" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_evaluatehostingestionpolltriggerdecision", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L179", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_shouldhosttriggerdedicatedsandboxpoll", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_evaluatehostingestionpolltriggerdecision", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L180", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_shouldhosttriggerdedicatedsandboxpoll", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_logingestiontriggerdecision", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L202", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_senddedicatedsandboxingestionpolltrigger", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_shouldhosttriggerdedicatedsandboxpoll", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_shouldhosttriggerdedicatedsandboxpoll", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L485", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator_syncaccountemailsimpl", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_shouldhosttriggerdedicatedsandboxpoll", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L229", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_senddedicatedsandboxingestionpolltrigger", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend_sealservicerpcforrelay" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts", + "source_location": "L211", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_senddedicatedsandboxingestionpolltrigger", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_asserthostsendsresulttosandbox" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_senddedicatedsandboxingestionpolltrigger", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L486", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator_syncaccountemailsimpl", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_hosttrigger_senddedicatedsandboxingestionpolltrigger", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/pollIdempotencyCache.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_pollidempotencycache", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_pollidempotencycache_cachebyrequestid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/pollIdempotencyCache.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_pollidempotencycache", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_pollidempotencycache_cachedpolloutcome", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/pollIdempotencyCache.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_pollidempotencycache", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_pollidempotencycache_cacheentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/pollIdempotencyCache.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_pollidempotencycache", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_pollidempotencycache_default_poll_idempotency_ttl_ms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/pollIdempotencyCache.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_pollidempotencycache", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_pollidempotencycache_evictpolloutcomefromidempotencycache", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/pollIdempotencyCache.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_pollidempotencycache", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_pollidempotencycache_getpolloutcomefromidempotencycache", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/pollIdempotencyCache.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_pollidempotencycache", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_pollidempotencycache_resetpollidempotencycachefortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/pollIdempotencyCache.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_pollidempotencycache", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_pollidempotencycache_storepolloutcomeinidempotencycache", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/pollIdempotencyCache.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_pollidempotencycache", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_pollidempotencycache_timersbyrequestid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/pollIdempotencyCache.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_pollidempotencycache", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/pollIdempotencyCache.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_pollidempotencycache", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_ingestionpollerrorwire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/pollIdempotencyCache.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_pollidempotencycache", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_ingestionpollresultwire", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_pollidempotencycache", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_pollidempotencycache_default_poll_idempotency_ttl_ms", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/pollIdempotencyCache.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_pollidempotencycache_getpolloutcomefromidempotencycache", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_pollidempotencycache_evictpolloutcomefromidempotencycache", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_pollidempotencycache_getpolloutcomefromidempotencycache", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L179", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_executepollwithidempotency", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_pollidempotencycache_getpolloutcomefromidempotencycache", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/pollIdempotencyCache.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_pollidempotencycache_storepolloutcomeinidempotencycache", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_pollidempotencycache_evictpolloutcomefromidempotencycache", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_pollidempotencycache_storepolloutcomeinidempotencycache", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L188", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_executepollwithidempotency", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_pollidempotencycache_storepolloutcomeinidempotencycache", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/receiver.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_receiver", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_receiver_errorwire", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/receiver.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_receiver", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_receiver_handleingestionpollrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/receiver.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_receiver", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_receiver_ingestionpollreceiverdeps", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/receiver.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_receiver", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_receiver_makeingestionpollrequestwire", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/receiver.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_receiver", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_receiver_resultwire", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/receiver.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_receiver", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/receiver.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_receiver", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_ingestion_poll_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/receiver.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_receiver", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_ingestionpollerrorwire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/receiver.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_receiver", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_ingestionpollrequestwire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/receiver.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_receiver", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_ingestionpollresultwire", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/receiver.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_receiver", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestion", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/receiver.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_receiver", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestion_runsandboxingestionpoll", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/receiver.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_receiver", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/receiver.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_receiver", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction_buildproductionsandboxingestiondeps", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/receiver.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_receiver", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/receiver.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_receiver", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/receiver.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_receiver", + "target": "apps_electron_vite_project_electron_main_internalinference_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/receiver.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_receiver", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/receiver.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_receiver", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertsandboxreceivesresultfromhost", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/receiver.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_receiver", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/receiver.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_receiver", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_receiver", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/receiver.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_receiver_handleingestionpollrequest", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_receiver_ingestionpollreceiverdeps" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_receiver_ingestionpollreceiverdeps", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/receiver.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_receiver_handleingestionpollrequest", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_receiver_errorwire", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/receiver.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_receiver_handleingestionpollrequest", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_receiver_resultwire", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/receiver.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_receiver_handleingestionpollrequest", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/receiver.ts", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_receiver_handleingestionpollrequest", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertsandboxreceivesresultfromhost" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_receiver_handleingestionpollrequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L187", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_executepollwithidempotency", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_receiver_handleingestionpollrequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/receiver.ts", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_receiver_makeingestionpollrequestwire", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_buildprotocolerrorwire", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L173", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_executepollwithidempotency", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L196", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_handleingestionpollrelaycapsule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_ingestionpollrelaycapsulecontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_ingestionpollrelayhandlerdeps", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_issealedservicerpcrelaycapsule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_parsesealedservicerpcenvelopefromrelaycapsule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_sealandsendpolloutcome", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_setingestionpollrelayhandlerdepsfortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L291", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_tryhandleingestionpollrelaycapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend_buildsealedservicerpcrelaycapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend_sealedrelaycapsulesender", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend_sealedrelaysendresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend_sendsealedservicerpcviacoordinationrelay", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_ingestion_poll_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_ingestionpollerrorwire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_ingestionpollrequestwire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_ingestionpollresultwire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_isvalidingestionpollbaseenvelope", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler", + "target": "apps_electron_vite_project_electron_main_handshake_types_ssosession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_assertsandboxmayreceivesealedservicerpcinnertype", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_assertsandboxmaysealservicerpcinnertype", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_openservicerpcpayloadresolvinglocalkey", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_sealedservicerpcenvelope", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_sealservicerpcpayload", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/sealedServiceRpcRelayDispatch.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_sealedservicerpcrelaydispatch", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayResultHandler.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayresulthandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayHandler.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_parsesealedservicerpcenvelopefromrelaycapsule", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_issealedservicerpcrelaycapsule", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L295", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_tryhandleingestionpollrelaycapsule", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_issealedservicerpcrelaycapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_issealedservicerpcrelaycapsule", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler_tryhandleingestionpollresultrelaycapsule", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_issealedservicerpcrelaycapsule" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/sealedServiceRpcRelayDispatch.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_sealedservicerpcrelaydispatch", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_issealedservicerpcrelaycapsule", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/sealedServiceRpcRelayDispatch.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_sealedservicerpcrelaydispatch_isplaintextingestionpollrelaycapsule", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_issealedservicerpcrelaycapsule" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/sealedServiceRpcRelayDispatch.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_sealedservicerpcrelaydispatch_tryhandlesealedservicerpcrelaycapsule", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_issealedservicerpcrelaycapsule" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_handleingestionpollrelaycapsule", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_parsesealedservicerpcenvelopefromrelaycapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_parsesealedservicerpcenvelopefromrelaycapsule", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler_tryhandleingestionpollresultrelaycapsule", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_parsesealedservicerpcenvelopefromrelaycapsule" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_parsesealedservicerpcenvelopefromrelaycapsule", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler_tryhandlehostaisealedinferencerequestrelaycapsule", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_parsesealedservicerpcenvelopefromrelaycapsule" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayResultHandler.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayresulthandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_parsesealedservicerpcenvelopefromrelaycapsule", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayResultHandler.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayresulthandler_tryhandlehostaisealedinferenceresultrelaycapsule", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_parsesealedservicerpcenvelopefromrelaycapsule" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayHandler.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_parsesealedservicerpcenvelopefromrelaycapsule", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayHandler.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler_tryhandlehostaiunifiedservicerpcrelaycapsule", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_parsesealedservicerpcenvelopefromrelaycapsule" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L203", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_handleingestionpollrelaycapsule", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_ingestionpollrelaycapsulecontext" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_ingestionpollrelaycapsulecontext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler_tryhandleingestionpollresultrelaycapsule", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_ingestionpollrelaycapsulecontext" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/sealedServiceRpcRelayDispatch.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_sealedservicerpcrelaydispatch", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_ingestionpollrelaycapsulecontext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/sealedServiceRpcRelayDispatch.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_sealedservicerpcrelaydispatch_tryhandlesealedservicerpcrelaycapsule", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_ingestionpollrelaycapsulecontext" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_ingestionpollrelaycapsulecontext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler_tryhandlehostaisealedinferencerequestrelaycapsule", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_ingestionpollrelaycapsulecontext" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayResultHandler.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayresulthandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_ingestionpollrelaycapsulecontext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayResultHandler.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayresulthandler_tryhandlehostaisealedinferenceresultrelaycapsule", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_ingestionpollrelaycapsulecontext" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayHandler.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_ingestionpollrelaycapsulecontext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayHandler.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler_tryhandlehostaiunifiedservicerpcrelaycapsule", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_ingestionpollrelaycapsulecontext" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L237", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_handleingestionpollrelaycapsule", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_buildprotocolerrorwire", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L238", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_handleingestionpollrelaycapsule", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_sealandsendpolloutcome", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L151", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_sealandsendpolloutcome", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend_buildsealedservicerpcrelaycapsule", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_sealandsendpolloutcome", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_assertsandboxmaysealservicerpcinnertype", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_sealandsendpolloutcome", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_sealservicerpcpayload", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L286", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_handleingestionpollrelaycapsule", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_executepollwithidempotency", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L265", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_handleingestionpollrelaycapsule", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_isvalidingestionpollbaseenvelope" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L216", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_handleingestionpollrelaycapsule", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L207", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_handleingestionpollrelaycapsule", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L244", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_handleingestionpollrelaycapsule", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_assertsandboxmayreceivesealedservicerpcinnertype" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L224", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_handleingestionpollrelaycapsule", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_openservicerpcpayloadresolvinglocalkey" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts", + "source_location": "L296", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_tryhandleingestionpollrelaycapsule", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_handleingestionpollrelaycapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/sealedServiceRpcRelayDispatch.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_sealedservicerpcrelaydispatch", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_tryhandleingestionpollrelaycapsule", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/sealedServiceRpcRelayDispatch.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_sealedservicerpcrelaydispatch_tryhandlesealedservicerpcrelaycapsule", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaycapsulehandler_tryhandleingestionpollrelaycapsule" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler_ingestionpollresultrelayhandlerdeps", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler_mapingestionpollwiretohostack", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler_notifyhostingestionpollasynccomplete", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler_setingestionpollresultrelayhandlerdepsfortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler_tryhandleingestionpollresultrelaycapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_ingestionpollerrorwire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_ingestionpollresultwire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_isvalidingestionpollbaseenvelope", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire_host_ai_inference_error_inner_type", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire_host_ai_inference_request_inner_type", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire_host_ai_inference_result_inner_type", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_iseffectivesandboxnode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_openservicerpcpayloadresolvinglocalkey", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/sealedServiceRpcRelayDispatch.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_sealedservicerpcrelaydispatch", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts", + "source_location": "L210", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler_tryhandleingestionpollresultrelaycapsule", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler_mapingestionpollwiretohostack", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts", + "source_location": "L213", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler_tryhandleingestionpollresultrelaycapsule", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler_ingestionpollresultrelayhandlerdeps" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler_notifyhostingestionpollasynccomplete", + "target": "test_mocks_electron_browserwindow_getallwindows" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts", + "source_location": "L214", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler_tryhandleingestionpollresultrelaycapsule", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler_notifyhostingestionpollasynccomplete", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts", + "source_location": "L194", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler_tryhandleingestionpollresultrelaycapsule", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_isvalidingestionpollbaseenvelope" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler_tryhandleingestionpollresultrelaycapsule", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler_tryhandleingestionpollresultrelaycapsule", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler_tryhandleingestionpollresultrelaycapsule", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_iseffectivesandboxnode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler_tryhandleingestionpollresultrelaycapsule", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_openservicerpcpayloadresolvinglocalkey" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/sealedServiceRpcRelayDispatch.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_sealedservicerpcrelaydispatch", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler_tryhandleingestionpollresultrelaycapsule", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/sealedServiceRpcRelayDispatch.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_sealedservicerpcrelaydispatch_tryhandlesealedservicerpcrelaycapsule", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relayresultcapsulehandler_tryhandleingestionpollresultrelaycapsule" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relaySend.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend_buildsealedservicerpcrelaycapsule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relaySend.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend_coordinationoidctokenprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relaySend.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend_sealedrelaycapsulesender", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relaySend.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend_sealedrelaysendresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relaySend.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend_sealservicerpcforrelay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relaySend.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend_sendsealedservicerpcviacoordinationrelay", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relaySend.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend", + "target": "apps_electron_vite_project_electron_main_handshake_ipc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relaySend.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_getcoordinationoidctoken", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relaySend.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relaySend.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_sendcapsuleresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relaySend.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_sendcapsuleviacoordination", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relaySend.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relaySend.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relaySend.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relaySend.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_normalizecoordinationurlforlocaldial", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relaySend.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relaySend.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_getp2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relaySend.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relaySend.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_sealedservicerpcenvelope", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relaySend.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_sealservicerpcinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relaySend.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_sealservicerpcpayload", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelaySend.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaysend", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelay.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelay", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiSealedInferenceRelayResultHandler.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelay.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelay", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend_sealedrelaysendresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelay.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelay", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend_sealedrelaycapsulesender", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relaySend.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend_sendsealedservicerpcviacoordinationrelay", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend_buildsealedservicerpcrelaycapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelaySend.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaysend", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend_buildsealedservicerpcrelaycapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiSealedInferenceRelayResultHandler.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend_buildsealedservicerpcrelaycapsule", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiSealedInferenceRelayResultHandler.test.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test_sealhostinferenceresult", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend_buildsealedservicerpcrelaycapsule", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relaySend.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend_sealservicerpcforrelay", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_sealservicerpcpayload" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelay.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelay", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend_sealservicerpcforrelay", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelay.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelay_trysendhostaip2psignalviaunifiedrelay", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend_sealservicerpcforrelay" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relaySend.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend_sendsealedservicerpcviacoordinationrelay", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_normalizecoordinationurlforlocaldial" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relaySend.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend_sendsealedservicerpcviacoordinationrelay", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_getp2pconfig" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend_sendsealedservicerpcviacoordinationrelay", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L225", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler_sealandsendinferenceoutcome", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend_sendsealedservicerpcviacoordinationrelay", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelaySend.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaysend", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend_sendsealedservicerpcviacoordinationrelay", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelaySend.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaysend_sendsealedhostaiinferencerequest", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend_sendsealedservicerpcviacoordinationrelay" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelay.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelay", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_relaysend_sendsealedservicerpcviacoordinationrelay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/sealedServiceRpcRelayDispatch.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_sealedservicerpcrelaydispatch", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_sealedservicerpcrelaydispatch_isplaintextingestionpollrelaycapsule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/sealedServiceRpcRelayDispatch.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_sealedservicerpcrelaydispatch", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_sealedservicerpcrelaydispatch_tryhandlesealedservicerpcrelaycapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/sealedServiceRpcRelayDispatch.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_sealedservicerpcrelaydispatch", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/sealedServiceRpcRelayDispatch.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_sealedservicerpcrelaydispatch", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_isingestionpollservicerpcshape", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_sealedservicerpcrelaydispatch", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/sealedServiceRpcRelayDispatch.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_sealedservicerpcrelaydispatch_isplaintextingestionpollrelaycapsule", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_isingestionpollservicerpcshape" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/sealedServiceRpcRelayDispatch.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_sealedservicerpcrelaydispatch_tryhandlesealedservicerpcrelaycapsule", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_sealedservicerpcrelaydispatch_isplaintextingestionpollrelaycapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/sealedServiceRpcRelayDispatch.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_sealedservicerpcrelaydispatch_tryhandlesealedservicerpcrelaycapsule", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/sealedServiceRpcRelayDispatch.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_sealedservicerpcrelaydispatch_tryhandlesealedservicerpcrelaycapsule", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayresulthandler", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/sealedServiceRpcRelayDispatch.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_sealedservicerpcrelaydispatch_tryhandlesealedservicerpcrelaycapsule", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/sealedServiceRpcRelayDispatch.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_sealedservicerpcrelaydispatch_tryhandlesealedservicerpcrelaycapsule", + "target": "apps_electron_vite_project_electron_main_internalinference_unifiedservicerpcrelayflags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_sealedservicerpcrelaydispatch_tryhandlesealedservicerpcrelaycapsule", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L1034", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws_createcoordinationwsclient", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_sealedservicerpcrelaydispatch_tryhandlesealedservicerpcrelaycapsule" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/wire.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_ingestion_poll_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/wire.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_ingestionpollerrorwire", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/wire.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_ingestionpollrequestwire", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/wire.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_ingestionpollresultwire", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/wire.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_ingestionpollserviceenvelope", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/wire.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_ingestionpollserviceenvelopebase", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/wire.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_ingestionpollservicemessagetype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/wire.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_isingestionpollservicerpcshape", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/wire.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_isingestionpollservicetype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/wire.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_isvalidingestionpollbaseenvelope", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/wire.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_ingestionpollerrorwire", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_ingestionpollserviceenvelopebase", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/wire.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_ingestionpollrequestwire", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_ingestionpollserviceenvelopebase", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/wire.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_ingestionpollresultwire", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_ingestionpollserviceenvelopebase", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/wire.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_isingestionpollservicerpcshape", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_isingestionpollservicetype", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/wire.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_isvalidingestionpollbaseenvelope", + "target": "apps_electron_vite_project_electron_main_email_ingestionpolltrigger_wire_isingestionpollservicetype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionStatus.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionstatus", + "target": "apps_electron_vite_project_electron_main_email_ingestionstatus_ingestionaccountstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionStatus.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionstatus", + "target": "apps_electron_vite_project_electron_main_email_ingestionstatus_ingestionstatuscode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionStatus.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionstatus", + "target": "apps_electron_vite_project_electron_main_email_ingestionstatus_ingestionstatusresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionStatus.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionstatus", + "target": "apps_electron_vite_project_electron_main_email_ingestionstatus_readsandboxtopologykind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionStatus.ts", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionstatus", + "target": "apps_electron_vite_project_electron_main_email_ingestionstatus_resolveingestionstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionStatus.ts", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionstatus", + "target": "apps_electron_vite_project_electron_main_email_ingestionstatus_setingestionstatustopologykindfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionStatus.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionstatus", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionStatus.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionstatus", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_hasrolescopedtokens", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionStatus.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionstatus", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestion", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionStatus.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionstatus", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestion_getlastsandboxpolloutcomes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionStatus.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionstatus", + "target": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionStatus.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionstatus", + "target": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_resolvesandboxtopologykind", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionStatus.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionstatus", + "target": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_sandboxtopologykind", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L190", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_ingestionstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/IngestionStatusBanner.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_ingestionstatusbanner", + "target": "apps_electron_vite_project_electron_main_email_ingestionstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/IngestionStatusBanner.test.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_ingestionstatusbanner_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionstatus", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useIngestionStatus.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useingestionstatus", + "target": "apps_electron_vite_project_electron_main_email_ingestionstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/IngestionStatusBanner.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_ingestionstatusbanner", + "target": "apps_electron_vite_project_electron_main_email_ingestionstatus_ingestionstatuscode", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionStatus.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionstatus_ingestionstatusresult", + "target": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_sandboxtopologykind", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/IngestionStatusBanner.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_ingestionstatusbanner", + "target": "apps_electron_vite_project_electron_main_email_ingestionstatus_ingestionstatusresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/IngestionStatusBanner.test.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_ingestionstatusbanner_test", + "target": "apps_electron_vite_project_electron_main_email_ingestionstatus_ingestionstatusresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useIngestionStatus.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useingestionstatus", + "target": "apps_electron_vite_project_electron_main_email_ingestionstatus_ingestionstatusresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useIngestionStatus.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useingestionstatus_useingestionstatusresult", + "target": "apps_electron_vite_project_electron_main_email_ingestionstatus_ingestionstatusresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionStatus.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionstatus_readsandboxtopologykind", + "target": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_resolvesandboxtopologykind", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ingestionStatus.ts", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionstatus_resolveingestionstatus", + "target": "apps_electron_vite_project_electron_main_email_ingestionstatus_readsandboxtopologykind", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionStatus.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionstatus_resolveingestionstatus", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_hasrolescopedtokens" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ingestionStatus.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ingestionstatus_resolveingestionstatus", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestion_getlastsandboxpolloutcomes" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L190", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_ingestionstatus_resolveingestionstatus", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L1598", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registeremailhandlers", + "target": "apps_electron_vite_project_electron_main_email_ingestionstatus_resolveingestionstatus" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inlineParseGuard.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inlineparseguard", + "target": "apps_electron_vite_project_electron_main_email_inlineparseguard_assertnoinlineparse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inlineParseGuard.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inlineparseguard", + "target": "apps_electron_vite_project_electron_main_email_inlineparseguard_inline_parse_forbidden_code", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inlineParseGuard.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inlineparseguard", + "target": "apps_electron_vite_project_electron_main_email_inlineparseguard_inlineparseforbiddenerror", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inlineParseGuard.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inlineparseguard", + "target": "apps_electron_vite_project_electron_main_email_opaqueingestion", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inlineParseGuard.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inlineparseguard", + "target": "apps_electron_vite_project_electron_main_email_opaqueingestion_isopaqueingestionactive", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_email_inlineparseguard", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail", + "target": "apps_electron_vite_project_electron_main_email_inlineparseguard", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap", + "target": "apps_electron_vite_project_electron_main_email_inlineparseguard", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook", + "target": "apps_electron_vite_project_electron_main_email_inlineparseguard", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/inlineParseGuard.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inlineparseguard_inlineparseforbiddenerror", + "target": "apps_electron_vite_project_electron_main_email_inlineparseguard_inlineparseforbiddenerror_constructor", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/inlineParseGuard.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_inlineparseguard_assertnoinlineparse", + "target": "apps_electron_vite_project_electron_main_email_opaqueingestion_isopaqueingestionactive" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_email_inlineparseguard_assertnoinlineparse", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L371", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_detectandroutemessageinline", + "target": "apps_electron_vite_project_electron_main_email_inlineparseguard_assertnoinlineparse" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail", + "target": "apps_electron_vite_project_electron_main_email_inlineparseguard_assertnoinlineparse", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L1433", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_parsegmailmessage", + "target": "apps_electron_vite_project_electron_main_email_inlineparseguard_assertnoinlineparse" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap", + "target": "apps_electron_vite_project_electron_main_email_inlineparseguard_assertnoinlineparse", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1032", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_fetchmessagefromfolder", + "target": "apps_electron_vite_project_electron_main_email_inlineparseguard_assertnoinlineparse" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook", + "target": "apps_electron_vite_project_electron_main_email_inlineparseguard_assertnoinlineparse", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L1256", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_parseoutlookmessage", + "target": "apps_electron_vite_project_electron_main_email_inlineparseguard_assertnoinlineparse" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L215", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_ipc_assertsandboxemailegress", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L564", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_ipc_broadcastinboxsnapshotaftersync", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L419", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_ipc_buildnativebeapanalyzebody", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L330", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_ipc_callinboxollamachat", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_ipc_default_rules_path", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L603", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_ipc_ensureimapbruteforceautosyncintervalregistered", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L480", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_ipc_extractnativebeapincomingpbeapqbeaptexts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L1610", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_ipc_getanthropicapikey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L158", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_ipc_getinboxairules", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L182", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_ipc_getinboxairulesforprompt", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_ipc_getrulespath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L1618", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_ipc_imap_simple_drain", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L319", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_ipc_inboxpagesfromstoredextractedtext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L363", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_ipc_isollamaavailable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L667", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_ipc_mirrorglobalautosynctonewaccount", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L514", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_ipc_normalizenativebeapdraftreply", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L374", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_ipc_parseaijson", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L722", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_ipc_registeremailhandlers", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L1700", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L156", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_ipc_rulescache", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L687", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_ipc_runpostemailconnectfailedqueuecleanup", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L6312", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_ipc_showgmailsetupdialog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L6582", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_ipc_showoutlooksetupdialog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L1668", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_ipc_simpledrainispermanentorchestratorerror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L1679", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_ipc_simpledrainistransientorchestratorerror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L1634", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_ipc_simpledrainprofile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L1636", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_ipc_simpledrainprofileforprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L1657", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_ipc_simpledrainqueuerow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L643", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_ipc_startstoredautosyncloopifmissing", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_mapingestionpolltriggerhostfeedback", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_mapingestionpolltriggerpendingfeedback", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_mapskipreasontoipcwarning", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L238", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_localinboxdeletion", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L238", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_localinboxdeletion_bulkdeletemessageslocal", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L239", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_originmailboxdelete", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L239", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_originmailboxdelete_trashonoriginafterlocaldelete", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L304", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_pdf_extractor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L304", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_pdf_extractor_extractpdftext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L304", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_pdf_extractor_ispdffile", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L304", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_pdf_extractor_resolveinboxpdfextractionstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L237", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_remotedeletion", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L237", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_remotedeletion_cancelremotedeletion", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L237", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_remotedeletion_deletealldirectbeapmessages", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L274", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_sandboxcloneinboxfilter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L274", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_sandboxcloneinboxfilter_ispersistedinboxrowsandboxclone", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L300", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_scamwatchdog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L300", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_scamwatchdog_appendscamwatchdogtosystemprompt", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L300", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_scamwatchdog_buildscamwatchdogusercontext", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L305", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_sealedcontentupdate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L305", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_sealedcontentupdate_resealwithaianalysis", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L305", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_sealedcontentupdate_resealwithpdfextraction", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L229", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L229", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_syncorchestrator_clearconsecutivezerolistingpulls", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L229", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_syncorchestrator_startautosync", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L229", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_syncorchestrator_syncaccountemails", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L229", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_syncorchestrator_syncresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L229", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_syncorchestrator_updatesyncstate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L262", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_syncpulllock", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L262", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_syncpulllock_clearallpullactivelocks", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L262", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_syncpulllock_markpullinactive", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L223", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L223", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_types_customimapsmtpconnectpayload", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L223", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_types_imap_presets", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L223", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_types_messagesearchoptions", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L223", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_email_types_sendemailpayload", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L315", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_llm_llamachatresponsecontent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L315", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_llm_llamachatresponsecontent_empty_llm_response_error", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L316", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_llm_localllmbulkprewarm", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L316", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_llm_localllmbulkprewarm_localllmbulkprewarmdiag", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L316", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_llm_localllmbulkprewarm_maybeprewarmlocalllmforbulkclassify", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_ollamaclassifybatchchunkdiag", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_ollamaruntimebeginbatch", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_ollamaruntimeendbatch", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L275", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_ishostmode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L275", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_issandboxmode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L203", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L203", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_assertsandboxdataegressallowed", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L203", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_resolveeffectivesandboxnode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L203", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_sandboxegressverdict", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L203", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_sandboxoutboundoperation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L307", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L307", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_preparesealedoperationalupdate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L307", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedquery", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L306", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_validatorreadiness", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L306", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_electron_main_validatorreadiness_ensurevalidatorandsealedstorageready", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L297", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L297", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_resolveinboxreplymode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L298", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_src_lib_inboxclassificationreconcile", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L298", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_src_lib_inboxclassificationreconcile_reconcileanalyzetriage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L298", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_src_lib_inboxclassificationreconcile_reconcileinboxclassification", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L303", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_src_lib_inboxsortsourceweighting", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L303", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_src_lib_inboxsortsourceweighting_formatsourceweightingforprompt", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L303", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_src_lib_inboxsortsourceweighting_sortsourceweightingfrommessagerow", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L301", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_src_utils_parseinboxaijson", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L301", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc", + "target": "apps_electron_vite_project_src_utils_parseinboxaijson_assemblescamwatchdog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L159", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_getinboxairules", + "target": "apps_electron_vite_project_electron_main_email_ipc_getrulespath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L6187", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_ipc_getrulespath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L183", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_getinboxairulesforprompt", + "target": "apps_electron_vite_project_electron_main_email_ipc_getinboxairules", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L6189", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_ipc_getinboxairules", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L219", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_assertsandboxemailegress", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_assertsandboxdataegressallowed", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L218", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_assertsandboxemailegress", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_resolveeffectivesandboxnode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L1485", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registeremailhandlers", + "target": "apps_electron_vite_project_electron_main_email_ipc_assertsandboxemailegress", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L3764", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_ipc_inboxpagesfromstoredextractedtext", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L331", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_callinboxollamachat", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L365", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_isollamaavailable", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L535", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_normalizenativebeapdraftreply", + "target": "apps_electron_vite_project_electron_main_email_ipc_parseaijson", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L1995", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_ipc_parseaijson", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L4383", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_ipc_buildnativebeapanalyzebody", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L4058", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_ipc_extractnativebeapincomingpbeapqbeaptexts", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L4464", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_ipc_normalizenativebeapdraftreply", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L567", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_broadcastinboxsnapshotaftersync", + "target": "test_mocks_electron_browserwindow_getallwindows" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L624", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_ensureimapbruteforceautosyncintervalregistered", + "target": "apps_electron_vite_project_electron_main_email_ipc_broadcastinboxsnapshotaftersync", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L657", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_startstoredautosyncloopifmissing", + "target": "apps_electron_vite_project_electron_main_email_ipc_broadcastinboxsnapshotaftersync", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L623", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_ensureimapbruteforceautosyncintervalregistered", + "target": "apps_electron_vite_project_electron_main_email_syncorchestrator_syncaccountemails", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L1875", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_ipc_ensureimapbruteforceautosyncintervalregistered", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L679", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_mirrorglobalautosynctonewaccount", + "target": "apps_electron_vite_project_electron_main_email_ipc_startstoredautosyncloopifmissing", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L3242", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_ipc_startstoredautosyncloopifmissing", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L653", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_startstoredautosyncloopifmissing", + "target": "apps_electron_vite_project_electron_main_email_syncorchestrator_startautosync", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L678", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_mirrorglobalautosynctonewaccount", + "target": "apps_electron_vite_project_electron_main_email_syncorchestrator_updatesyncstate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L1067", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registeremailhandlers", + "target": "apps_electron_vite_project_electron_main_email_ipc_mirrorglobalautosynctonewaccount", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L1066", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registeremailhandlers", + "target": "apps_electron_vite_project_electron_main_email_ipc_runpostemailconnectfailedqueuecleanup", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L1128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registeremailhandlers", + "target": "apps_electron_vite_project_electron_main_email_ipc_showgmailsetupdialog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L1267", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registeremailhandlers", + "target": "apps_electron_vite_project_electron_main_email_ipc_showoutlooksetupdialog", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L1282", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registeremailhandlers", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L1057", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registeremailhandlers", + "target": "test_mocks_electron_browserwindow_getallwindows" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L2158", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_ipc_simpledrainprofileforprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L2286", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_ipc_simpledrainispermanentorchestratorerror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L1681", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_simpledrainistransientorchestratorerror", + "target": "apps_electron_vite_project_electron_main_email_ipc_simpledrainispermanentorchestratorerror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L2294", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_ipc_simpledrainistransientorchestratorerror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L3645", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_localinboxdeletion_bulkdeletemessageslocal" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L3657", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_originmailboxdelete", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L3649", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_originmailboxdelete_trashonoriginafterlocaldelete" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L3805", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_pdf_extractor_extractpdftext" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L3798", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_pdf_extractor_ispdffile" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L3807", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_pdf_extractor_resolveinboxpdfextractionstatus" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L3692", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_remotedeletion_cancelremotedeletion" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L3721", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_remotedeletion_deletealldirectbeapmessages" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L3389", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_sandboxcloneinboxfilter_ispersistedinboxrowsandboxclone" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L4420", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_scamwatchdog_appendscamwatchdogtosystemprompt" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L4386", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_scamwatchdog_buildscamwatchdogusercontext" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L3947", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_sealedcontentupdate_resealwithaianalysis" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L3815", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_sealedcontentupdate_resealwithpdfextraction" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L3021", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_syncorchestrator_clearconsecutivezerolistingpulls" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L3165", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_syncorchestrator_syncaccountemails" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L3239", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_syncorchestrator_updatesyncstate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L5851", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_syncpulllock_clearallpullactivelocks" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L3046", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_email_syncpulllock_markpullinactive" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L3422", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_handshake_ipc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L3995", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutiontypes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L5434", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_llm_localllmbulkprewarm_maybeprewarmlocalllmforbulkclassify" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L4026", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L3389", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_issandboxmode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L1938", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_preparesealedoperationalupdate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L4204", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_electron_main_validatorreadiness_ensurevalidatorandsealedstorageready" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L4022", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_resolveinboxreplymode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L4447", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_src_lib_inboxclassificationreconcile_reconcileanalyzetriage" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L4386", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_src_lib_inboxsortsourceweighting_formatsourceweightingforprompt" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L4385", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_src_lib_inboxsortsourceweighting_sortsourceweightingfrommessagerow" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L4460", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "apps_electron_vite_project_src_utils_parseinboxaijson_assemblescamwatchdog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L1781", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_registerinboxhandlers", + "target": "test_mocks_electron_browserwindow_getallwindows" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L6331", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_showgmailsetupdialog", + "target": "test_mocks_electron_browserwindow_focus" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L6556", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_showgmailsetupdialog", + "target": "test_mocks_electron_browserwindow_loadurl" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L6569", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_showgmailsetupdialog", + "target": "test_mocks_electron_browserwindow_on" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L6330", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_showgmailsetupdialog", + "target": "test_mocks_electron_browserwindow_show" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L6601", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_showoutlooksetupdialog", + "target": "test_mocks_electron_browserwindow_focus" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L6826", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_showoutlooksetupdialog", + "target": "test_mocks_electron_browserwindow_loadurl" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L6839", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_showoutlooksetupdialog", + "target": "test_mocks_electron_browserwindow_on" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/ipc.ts", + "source_location": "L6600", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipc_showoutlooksetupdialog", + "target": "test_mocks_electron_browserwindow_show" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipcSyncResultShape.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_delegated_hint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipcSyncResultShape.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_formatingestionpolltriggerpullhint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipcSyncResultShape.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_host_triggered_hint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipcSyncResultShape.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_ingestionpolltriggercounts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipcSyncResultShape.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_mapingestionpolltriggerhostfeedback", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipcSyncResultShape.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_mapingestionpolltriggerpendingfeedback", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipcSyncResultShape.ts", + "source_location": "L186", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_mapingestiontriggerfailureskipreason", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipcSyncResultShape.ts", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_mapskipreasontoipcwarning", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipcSyncResultShape.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_paused_hint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipcSyncResultShape.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_skipreasonipcresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipcSyncResultShape.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_trigger_failed_hint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipcSyncResultShape.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_trigger_fetch_failed_hint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipcSyncResultShape.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_trigger_pending_hint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipcSyncResultShape.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_trigger_read_consent_missing_hint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipcSyncResultShape.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_trigger_rejected_hint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipcSyncResultShape.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_trigger_success_hint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipcSyncResultShape.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_trigger_unreachable_hint", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/syncFailureUi.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_syncfailureui", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/syncFailureUi.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_syncfailureui_test", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/syncFailureUi.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_syncfailureui_test", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_delegated_hint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/syncFailureUi.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_syncfailureui", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_trigger_failed_hint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/syncFailureUi.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_syncfailureui_test", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_trigger_failed_hint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/syncFailureUi.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_syncfailureui", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_trigger_rejected_hint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/syncFailureUi.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_syncfailureui_test", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_trigger_rejected_hint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/syncFailureUi.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_syncfailureui", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_trigger_unreachable_hint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/syncFailureUi.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_syncfailureui", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_trigger_read_consent_missing_hint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/syncFailureUi.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_syncfailureui_test", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_trigger_read_consent_missing_hint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/syncFailureUi.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_syncfailureui", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_trigger_fetch_failed_hint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/syncFailureUi.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_syncfailureui_test", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_trigger_fetch_failed_hint", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipcSyncResultShape.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_mapingestionpolltriggerhostfeedback", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_formatingestionpolltriggerpullhint", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/ipcSyncResultShape.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_mapingestionpolltriggerhostfeedback", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_mapingestionpolltriggerpendingfeedback", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_mapingestiontriggerfailureskipreason", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L499", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator_syncaccountemailsimpl", + "target": "apps_electron_vite_project_electron_main_email_ipcsyncresultshape_mapingestiontriggerfailureskipreason", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/localInboxDeletion.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_localinboxdeletion", + "target": "apps_electron_vite_project_electron_main_email_localinboxdeletion_bulkdeletemessageslocal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/localInboxDeletion.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_localinboxdeletion", + "target": "apps_electron_vite_project_electron_main_email_localinboxdeletion_bulklocaldeleteresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/localInboxDeletion.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_localinboxdeletion", + "target": "apps_electron_vite_project_electron_main_email_localinboxdeletion_deletemessagelocal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/localInboxDeletion.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_localinboxdeletion", + "target": "apps_electron_vite_project_electron_main_email_localinboxdeletion_islocallydeletedrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/localInboxDeletion.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_localinboxdeletion", + "target": "apps_electron_vite_project_electron_main_email_localinboxdeletion_local_wrdesk_delete_skip_reason", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/localInboxDeletion.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_localinboxdeletion", + "target": "apps_electron_vite_project_electron_main_email_localinboxdeletion_localdeleteresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/localInboxDeletion.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_localinboxdeletion", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/localInboxDeletion.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_localinboxdeletion", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_preparesealedoperationalupdate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/originMailboxDelete.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_originmailboxdelete", + "target": "apps_electron_vite_project_electron_main_email_localinboxdeletion", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/originMailboxDelete.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_originmailboxdelete", + "target": "apps_electron_vite_project_electron_main_email_localinboxdeletion_local_wrdesk_delete_skip_reason", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/localInboxDeletion.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_localinboxdeletion_bulkdeletemessageslocal", + "target": "apps_electron_vite_project_electron_main_email_localinboxdeletion_deletemessagelocal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/localInboxDeletion.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_localinboxdeletion_deletemessagelocal", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_preparesealedoperationalupdate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged", + "target": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged_attemptquarantinewrite", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L579", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged", + "target": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged_drainextensionmergebuffer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged", + "target": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged_mergedepackagedattachmentinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L242", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged", + "target": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged_mergeextensiondepackaged", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged", + "target": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged_mergeextensiondepackagedinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged", + "target": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged_normalizepackagejson", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L637", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged", + "target": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged_notifyinboxdepackagedmerged", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged", + "target": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged_notifymergependingnosandbox", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged", + "target": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged_user_package_builder_send_source", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged", + "target": "apps_electron_vite_project_electron_main_email_messagerouter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_buildquarantinecanonicaljson", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_findpairedsandboxhandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_makeinboxattachmentstorageid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged", + "target": "apps_electron_vite_project_electron_main_handshake_types_ssosession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged", + "target": "apps_electron_vite_project_electron_main_quarantine_blob_storage_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged", + "target": "apps_electron_vite_project_electron_main_quarantine_blob_storage_index_writequarantineblob", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged", + "target": "apps_electron_vite_project_electron_main_quarantine_encrypt_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged", + "target": "apps_electron_vite_project_electron_main_quarantine_encrypt_index_encryptforquarantine", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_preparesealedinsert", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_preparesealedoperationalupdate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_preparesealedupdate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_runsealedtransaction", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L188", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.sandboxBeapSend.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_sandboxbeapsend_test", + "target": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L188", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged_user_package_builder_send_source", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.sandboxBeapSend.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_sandboxbeapsend_test", + "target": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged_user_package_builder_send_source", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L253", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged_mergeextensiondepackaged", + "target": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged_normalizepackagejson", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L629", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged_drainextensionmergebuffer", + "target": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged_notifymergependingnosandbox", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L543", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged_mergeextensiondepackaged", + "target": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged_notifymergependingnosandbox", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged_notifymergependingnosandbox", + "target": "test_mocks_electron_browserwindow_getallwindows" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged_attemptquarantinewrite", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_buildquarantinecanonicaljson", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L158", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged_attemptquarantinewrite", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_findpairedsandboxhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L169", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged_attemptquarantinewrite", + "target": "apps_electron_vite_project_electron_main_quarantine_blob_storage_index_writequarantineblob", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged_attemptquarantinewrite", + "target": "apps_electron_vite_project_electron_main_quarantine_encrypt_index_encryptforquarantine", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L195", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged_attemptquarantinewrite", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_preparesealedinsert", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L611", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged_drainextensionmergebuffer", + "target": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged_attemptquarantinewrite", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L522", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged_mergeextensiondepackaged", + "target": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged_attemptquarantinewrite", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L327", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged_mergeextensiondepackaged", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_makeinboxattachmentstorageid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L481", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged_mergeextensiondepackaged", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_preparesealedoperationalupdate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L411", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged_mergeextensiondepackaged", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_preparesealedupdate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L488", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged_mergeextensiondepackaged", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_runsealedtransaction" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts", + "source_location": "L640", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_mergeextensiondepackaged_notifyinboxdepackagedmerged", + "target": "test_mocks_electron_browserwindow_getallwindows" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L1161", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_buildplainemailinboxpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L233", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_buildprovenance", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L259", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_buildquarantinecanonicaljson", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_coercereceivedatiso", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L910", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_depackagecutoverhelderror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L342", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_detectandroutemessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L359", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_detectandroutemessageinline", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_detectandrouteresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_detectbeapcapsule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_detectbeapinjson", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_detectbeapmessagepackage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L172", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_extracthandshakeid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L278", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_findpairedsandboxhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L156", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_isbeapattachment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_isjsonattachment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L187", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_makeinboxattachmentstorageid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L918", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_mapdepackagecodetoreason", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L1032", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_quarantinerawbytes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_rawemailmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L216", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_resolvestorageemailmessageid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L950", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_routeviadepackageseam", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L937", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_toopaquebuffer", + "confidence_score": 1.0 + }, + { + "relation": "cites", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_ts_docref_rfc_822", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L1090", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_writeplainseaminbox", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_email_opaqueingestion", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_email_opaqueingestion_isopaqueingestionactive", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_email_pdf_extractor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_email_pdf_extractor_extractpdftext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_email_pdf_extractor_ispdffile", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_email_pdf_extractor_resolveinboxpdfextractionstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_email_plainemailconverter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_email_plainemailconverter_enrichwithattachments", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_email_plainemailconverter_plainemailtobeapmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_email_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_email_types_sanitizedmessagedetail", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_iseligibleactiveinternalhostsandboxrecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_listavailableinternalsandboxes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_handshake_types_ssosession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_quarantine_blob_storage_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_quarantine_blob_storage_index_writequarantineblob", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_quarantine_encrypt_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_quarantine_encrypt_index_encryptforquarantine", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_childattachmentdescriptor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_computeseal", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_preparesealedinsert", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_runsealedtransaction", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_messagerouter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_rawemailmessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L406", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_detectandroutemessageinline", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_detectbeapcapsule", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L412", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_detectandroutemessageinline", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_detectbeapmessagepackage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L445", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_detectandroutemessageinline", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_detectbeapinjson", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L401", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_detectandroutemessageinline", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_isbeapattachment", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L438", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_detectandroutemessageinline", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_isjsonattachment", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L409", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_detectandroutemessageinline", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_extracthandshakeid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L488", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_detectandroutemessageinline", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_makeinboxattachmentstorageid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L376", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_detectandroutemessageinline", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_coercereceivedatiso", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L1041", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_quarantinerawbytes", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_coercereceivedatiso", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L1011", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_routeviadepackageseam", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_coercereceivedatiso", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L1104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_writeplainseaminbox", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_coercereceivedatiso", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L373", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_detectandroutemessageinline", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_resolvestorageemailmessageid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L956", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_routeviadepackageseam", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_resolvestorageemailmessageid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L634", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_detectandroutemessageinline", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_buildprovenance", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L1058", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_quarantinerawbytes", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_buildprovenance", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L709", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_detectandroutemessageinline", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_buildquarantinecanonicaljson", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L1051", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_quarantinerawbytes", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_buildquarantinecanonicaljson", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L686", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_detectandroutemessageinline", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_findpairedsandboxhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L287", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_findpairedsandboxhandshake", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L289", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_findpairedsandboxhandshake", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_iseligibleactiveinternalhostsandboxrecord" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L283", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_findpairedsandboxhandshake", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_listavailableinternalsandboxes" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L974", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_routeviadepackageseam", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_findpairedsandboxhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L351", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_detectandroutemessage", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_detectandroutemessageinline", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L349", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_detectandroutemessage", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_routeviadepackageseam", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L348", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_detectandroutemessage", + "target": "apps_electron_vite_project_electron_main_email_opaqueingestion_isopaqueingestionactive" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_detectandroutemessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L937", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator_syncaccountemailsimpl", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_detectandroutemessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L690", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_detectandroutemessageinline", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_buildplainemailinboxpayload", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L513", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_detectandroutemessageinline", + "target": "apps_electron_vite_project_electron_main_email_pdf_extractor_extractpdftext" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L511", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_detectandroutemessageinline", + "target": "apps_electron_vite_project_electron_main_email_pdf_extractor_ispdffile" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L516", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_detectandroutemessageinline", + "target": "apps_electron_vite_project_electron_main_email_pdf_extractor_resolveinboxpdfextractionstatus" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L707", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_detectandroutemessageinline", + "target": "apps_electron_vite_project_electron_main_quarantine_blob_storage_index_writequarantineblob" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L697", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_detectandroutemessageinline", + "target": "apps_electron_vite_project_electron_main_quarantine_encrypt_index_encryptforquarantine" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L662", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_detectandroutemessageinline", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_computeseal" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L770", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_detectandroutemessageinline", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_preparesealedinsert" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L882", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_detectandroutemessageinline", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_runsealedtransaction" + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L401", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_detectandroutemessageinline", + "target": "apps_electron_vite_project_src_components_bulkinboxattachmenthydration_test_att" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L1019", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_routeviadepackageseam", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_detectandroutemessageinline", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L911", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_depackagecutoverhelderror", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_depackagecutoverhelderror_constructor", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L985", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_routeviadepackageseam", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_mapdepackagecodetoreason", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L963", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_routeviadepackageseam", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_toopaquebuffer", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L985", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_routeviadepackageseam", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_quarantinerawbytes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L1024", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_routeviadepackageseam", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_writeplainseaminbox", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L1049", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_quarantinerawbytes", + "target": "apps_electron_vite_project_electron_main_quarantine_blob_storage_index_writequarantineblob", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L1044", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_quarantinerawbytes", + "target": "apps_electron_vite_project_electron_main_quarantine_encrypt_index_encryptforquarantine", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L1070", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_quarantinerawbytes", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_preparesealedinsert", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L1134", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_writeplainseaminbox", + "target": "apps_electron_vite_project_electron_main_email_messagerouter_buildplainemailinboxpayload", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L1123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_writeplainseaminbox", + "target": "apps_electron_vite_project_electron_main_quarantine_blob_storage_index_writequarantineblob", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L1140", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_writeplainseaminbox", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_preparesealedinsert", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L1150", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_writeplainseaminbox", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_runsealedtransaction", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L1204", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_buildplainemailinboxpayload", + "target": "apps_electron_vite_project_electron_main_email_plainemailconverter_enrichwithattachments", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L1203", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_buildplainemailinboxpayload", + "target": "apps_electron_vite_project_electron_main_email_plainemailconverter_plainemailtobeapmessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/messageRouter.ts", + "source_location": "L1221", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_messagerouter_buildplainemailinboxpayload", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_computeseal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_oauth_server", + "target": "apps_electron_vite_project_electron_main_email_oauth_server_findavailableport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_oauth_server", + "target": "apps_electron_vite_project_electron_main_email_oauth_server_isportavailable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_oauth_server", + "target": "apps_electron_vite_project_electron_main_email_oauth_server_oauthcallbackresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_oauth_server", + "target": "apps_electron_vite_project_electron_main_email_oauth_server_oauthflowsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L433", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_oauth_server", + "target": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_oauth_server", + "target": "apps_electron_vite_project_electron_main_email_oauth_server_oauthstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_oauth_server", + "target": "apps_electron_vite_project_electron_main_email_oauth_server_pendingoauthrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L436", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_oauth_server", + "target": "apps_electron_vite_project_electron_main_email_oauth_server_zoho_oauth_auth_url", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L437", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_oauth_server", + "target": "apps_electron_vite_project_electron_main_email_oauth_server_zoho_oauth_token_url", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail", + "target": "apps_electron_vite_project_electron_main_email_oauth_server", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook", + "target": "apps_electron_vite_project_electron_main_email_oauth_server", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho", + "target": "apps_electron_vite_project_electron_main_email_oauth_server", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_oauth_server_findavailableport", + "target": "apps_electron_vite_project_electron_main_email_oauth_server_isportavailable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L142", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager_beginoauthflow", + "target": "apps_electron_vite_project_electron_main_email_oauth_server_findavailableport", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager", + "target": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager_beginoauthflow", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L357", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager", + "target": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager_cancelflow", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L371", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager", + "target": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager_cleanup", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L327", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager", + "target": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager_completeflow", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager", + "target": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager_getcallbackurl", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L427", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager", + "target": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager_getcurrentport", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager", + "target": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager_getstate", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L216", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager", + "target": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager_handlerequest", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager", + "target": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager_isflowinprogress", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager", + "target": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager_isserverrunning", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L275", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager", + "target": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager_sendhtmlresponse", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L410", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager", + "target": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager_shutdown", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L180", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager", + "target": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager_startoauthflow", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager", + "target": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager_startserver", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail", + "target": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook", + "target": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho", + "target": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager_beginoauthflow", + "target": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager_isflowinprogress", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L263", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager_handlerequest", + "target": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager_isflowinprogress", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager_beginoauthflow", + "target": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager_cleanup", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager_beginoauthflow", + "target": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager_startserver", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L184", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager_startoauthflow", + "target": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager_beginoauthflow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L194", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager_startserver", + "target": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager_handlerequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L232", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager_handlerequest", + "target": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager_completeflow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L229", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager_handlerequest", + "target": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager_sendhtmlresponse", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L348", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager_completeflow", + "target": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager_cleanup", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L364", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager_cancelflow", + "target": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager_cleanup", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/oauth-server.ts", + "source_location": "L420", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager_shutdown", + "target": "apps_electron_vite_project_electron_main_email_oauth_server_oauthservermanager_cleanup", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/oauthScopes.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_oauthscopes", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_gmail_all_scopes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/oauthScopes.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_oauthscopes", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_gmail_read_scopes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/oauthScopes.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_oauthscopes", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_gmail_send_scopes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/oauthScopes.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_oauthscopes", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_imapcredentialfieldforrole", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/oauthScopes.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_oauthscopes", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_oauthscoperole", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/oauthScopes.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_oauthscopes", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_outlook_all_scopes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/oauthScopes.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_oauthscopes", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_outlook_base_scopes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/oauthScopes.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_oauthscopes", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_outlook_read_scopes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/oauthScopes.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_oauthscopes", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_outlook_send_scopes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/oauthScopes.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_oauthscopes", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_resolveoauthscopes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/oauthScopes.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_oauthscopes", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_resolveoauthscopestring", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/oauthScopes.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_oauthscopes", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_scopedprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/oauthScopes.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_oauthscopes", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_scopesetcanmodify", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/oauthScopes.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_oauthscopes", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_scopesetcanread", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/oauthScopes.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_oauthscopes", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_scopesetcansend", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/originMailboxDeleteCapability.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_originmailboxdeletecapability", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/resolveConnectOAuthScopeRole.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_resolveconnectoauthscoperole", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleAwareConsent.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_roleawareconsent", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_oauthscoperole", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L822", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_buildauthurl", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_oauthscoperole", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L702", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_startoauthflow", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_oauthscoperole", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_oauthscoperole", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L860", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_buildauthurl", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_oauthscoperole", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L882", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_exchangecodefortokens", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_oauthscoperole", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L762", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_startoauthflow", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_oauthscoperole", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/resolveConnectOAuthScopeRole.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_resolveconnectoauthscoperole", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_oauthscoperole", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleAwareConsent.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_roleawareconsent", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_oauthscoperole", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleAwareConsent.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_roleawareconsent_consentdeps", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_oauthscoperole", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/oauthScopes.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_oauthscopes_resolveoauthscopestring", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_resolveoauthscopes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleAwareConsent.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_roleawareconsent", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_resolveoauthscopes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/roleAwareConsent.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_roleawareconsent_plannedscopesforrole", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_resolveoauthscopes" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_resolveoauthscopestring", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L834", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_buildauthurl", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_resolveoauthscopestring" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_resolveoauthscopestring", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L872", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_buildauthurl", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_resolveoauthscopestring" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L896", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_exchangecodefortokens", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_resolveoauthscopestring" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleAwareConsent.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_roleawareconsent", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_scopesetcansend", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/roleAwareConsent.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_roleawareconsent_runrolescopedconsent", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_scopesetcansend" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleAwareConsent.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_roleawareconsent", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_scopesetcanread", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/roleAwareConsent.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_roleawareconsent_runrolescopedconsent", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_scopesetcanread" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/originMailboxDeleteCapability.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_originmailboxdeletecapability", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_scopesetcanmodify", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/originMailboxDeleteCapability.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_originmailboxdeletecapability_assessorigindeletecapability", + "target": "apps_electron_vite_project_electron_main_email_oauthscopes_scopesetcanmodify" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/opaqueIngestion.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_opaqueingestion", + "target": "apps_electron_vite_project_electron_main_email_opaqueingestion_haslinkeddepackagesandbox", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/opaqueIngestion.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_opaqueingestion", + "target": "apps_electron_vite_project_electron_main_email_opaqueingestion_isopaqueingestionactive", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/opaqueIngestion.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_opaqueingestion", + "target": "apps_electron_vite_project_electron_main_email_opaqueingestion_resetopaqueingestioncachefortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail", + "target": "apps_electron_vite_project_electron_main_email_opaqueingestion", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap", + "target": "apps_electron_vite_project_electron_main_email_opaqueingestion", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook", + "target": "apps_electron_vite_project_electron_main_email_opaqueingestion", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_opaqueingestion", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L447", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_removelinkedtopologyentry", + "target": "apps_electron_vite_project_electron_main_email_opaqueingestion", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/opaqueIngestion.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_opaqueingestion_isopaqueingestionactive", + "target": "apps_electron_vite_project_electron_main_email_opaqueingestion_haslinkeddepackagesandbox", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail", + "target": "apps_electron_vite_project_electron_main_email_opaqueingestion_isopaqueingestionactive", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L447", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_fetchmessage", + "target": "apps_electron_vite_project_electron_main_email_opaqueingestion_isopaqueingestionactive" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L399", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_fetchmessages", + "target": "apps_electron_vite_project_electron_main_email_opaqueingestion_isopaqueingestionactive" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap", + "target": "apps_electron_vite_project_electron_main_email_opaqueingestion_isopaqueingestionactive", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1003", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_fetchmessagefromfolder", + "target": "apps_electron_vite_project_electron_main_email_opaqueingestion_isopaqueingestionactive" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L706", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_fetchmessagesbeforeexclusive", + "target": "apps_electron_vite_project_electron_main_email_opaqueingestion_isopaqueingestionactive" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L546", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_fetchmessagessince", + "target": "apps_electron_vite_project_electron_main_email_opaqueingestion_isopaqueingestionactive" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook", + "target": "apps_electron_vite_project_electron_main_email_opaqueingestion_isopaqueingestionactive", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L332", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_fetchallmessagestwophase", + "target": "apps_electron_vite_project_electron_main_email_opaqueingestion_isopaqueingestionactive" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L457", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_fetchmessage", + "target": "apps_electron_vite_project_electron_main_email_opaqueingestion_isopaqueingestionactive" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L394", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_fetchmessages", + "target": "apps_electron_vite_project_electron_main_email_opaqueingestion_isopaqueingestionactive" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_opaqueingestion_isopaqueingestionactive", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L861", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator_syncaccountemailsimpl", + "target": "apps_electron_vite_project_electron_main_email_opaqueingestion_isopaqueingestionactive", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/originMailboxDelete.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_originmailboxdelete", + "target": "apps_electron_vite_project_electron_main_email_originmailboxdelete_bulkorigindeleteresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/originMailboxDelete.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_originmailboxdelete", + "target": "apps_electron_vite_project_electron_main_email_originmailboxdelete_inboxrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/originMailboxDelete.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_originmailboxdelete", + "target": "apps_electron_vite_project_electron_main_email_originmailboxdelete_isorigindeletablerow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/originMailboxDelete.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_originmailboxdelete", + "target": "apps_electron_vite_project_electron_main_email_originmailboxdelete_origindeleteattemptresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/originMailboxDelete.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_originmailboxdelete", + "target": "apps_electron_vite_project_electron_main_email_originmailboxdelete_trashonoriginafterlocaldelete", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/originMailboxDelete.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_originmailboxdelete", + "target": "apps_electron_vite_project_electron_main_email_originmailboxdeletecapability", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/originMailboxDelete.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_originmailboxdelete", + "target": "apps_electron_vite_project_electron_main_email_originmailboxdeletecapability_assessorigindeletecapability", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/originMailboxDelete.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_originmailboxdelete", + "target": "apps_electron_vite_project_electron_main_email_originmailboxdeletecapability_origindeletecapability", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/originMailboxDelete.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_originmailboxdelete_trashonoriginafterlocaldelete", + "target": "apps_electron_vite_project_electron_main_email_originmailboxdelete_isorigindeletablerow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/originMailboxDelete.ts", + "source_location": "L137", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_originmailboxdelete_trashonoriginafterlocaldelete", + "target": "apps_electron_vite_project_electron_main_email_originmailboxdeletecapability_assessorigindeletecapability" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/originMailboxDeleteCapability.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_originmailboxdeletecapability", + "target": "apps_electron_vite_project_electron_main_email_originmailboxdeletecapability_assessorigindeletecapability", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/originMailboxDeleteCapability.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_originmailboxdeletecapability", + "target": "apps_electron_vite_project_electron_main_email_originmailboxdeletecapability_oauthtrashmethod", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/originMailboxDeleteCapability.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_originmailboxdeletecapability", + "target": "apps_electron_vite_project_electron_main_email_originmailboxdeletecapability_origindeletecapability", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/originMailboxDeleteCapability.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_originmailboxdeletecapability", + "target": "apps_electron_vite_project_electron_main_email_originmailboxdeletecapability_origindeletetrashmethod", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/originMailboxDeleteCapability.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_originmailboxdeletecapability", + "target": "apps_electron_vite_project_electron_main_email_originmailboxdeletecapability_parsescopes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/originMailboxDeleteCapability.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_originmailboxdeletecapability", + "target": "apps_electron_vite_project_electron_main_email_resolveconnectoauthscoperole", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/originMailboxDeleteCapability.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_originmailboxdeletecapability", + "target": "apps_electron_vite_project_electron_main_email_resolveconnectoauthscoperole_iseffectivesandboxnode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/originMailboxDeleteCapability.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_originmailboxdeletecapability", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/originMailboxDeleteCapability.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_originmailboxdeletecapability", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_loadrolescopedtokens", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/originMailboxDeleteCapability.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_originmailboxdeletecapability", + "target": "apps_electron_vite_project_electron_main_email_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/originMailboxDeleteCapability.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_originmailboxdeletecapability", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/originMailboxDeleteCapability.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_originmailboxdeletecapability_assessorigindeletecapability", + "target": "apps_electron_vite_project_electron_main_email_originmailboxdeletecapability_parsescopes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/originMailboxDeleteCapability.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_originmailboxdeletecapability_assessorigindeletecapability", + "target": "apps_electron_vite_project_electron_main_email_originmailboxdeletecapability_oauthtrashmethod", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/originMailboxDeleteCapability.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_originmailboxdeletecapability_assessorigindeletecapability", + "target": "apps_electron_vite_project_electron_main_email_resolveconnectoauthscoperole_iseffectivesandboxnode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/originMailboxDeleteCapability.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_originmailboxdeletecapability_assessorigindeletecapability", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_loadrolescopedtokens" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/pdf-extractor.ts", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_pdf_extractor", + "target": "apps_electron_vite_project_electron_main_email_pdf_extractor_extractpdftext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/pdf-extractor.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_pdf_extractor", + "target": "apps_electron_vite_project_electron_main_email_pdf_extractor_extractpdftextresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/pdf-extractor.ts", + "source_location": "L198", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_pdf_extractor", + "target": "apps_electron_vite_project_electron_main_email_pdf_extractor_getsupportedextractiontypes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/pdf-extractor.ts", + "source_location": "L183", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_pdf_extractor", + "target": "apps_electron_vite_project_electron_main_email_pdf_extractor_ispdffile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/pdf-extractor.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_pdf_extractor", + "target": "apps_electron_vite_project_electron_main_email_pdf_extractor_loadpdfjs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/pdf-extractor.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_pdf_extractor", + "target": "apps_electron_vite_project_electron_main_email_pdf_extractor_reconstructpagetext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/pdf-extractor.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_pdf_extractor", + "target": "apps_electron_vite_project_electron_main_email_pdf_extractor_resolveinboxpdfextractionstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/pdf-extractor.ts", + "source_location": "L205", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_pdf_extractor", + "target": "apps_electron_vite_project_electron_main_email_pdf_extractor_supportstextextraction", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/pdf-extractor.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_pdf_extractor", + "target": "apps_electron_vite_project_electron_main_email_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/pdf-extractor.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_pdf_extractor", + "target": "apps_electron_vite_project_electron_main_email_types_extractedattachmenttext", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/pdf-extractor.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_pdf_extractor", + "target": "apps_electron_vite_project_electron_main_pdfjsworkersrc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/pdf-extractor.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_pdf_extractor", + "target": "apps_electron_vite_project_electron_main_pdfjsworkersrc_resolvepdfjsdistworkerfileurl", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanProcessing.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscanprocessing", + "target": "apps_electron_vite_project_electron_main_email_pdf_extractor", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/pdf-extractor.ts", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_pdf_extractor_extractpdftext", + "target": "apps_electron_vite_project_electron_main_email_pdf_extractor_loadpdfjs", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/pdf-extractor.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_pdf_extractor_loadpdfjs", + "target": "apps_electron_vite_project_electron_main_pdfjsworkersrc_resolvepdfjsdistworkerfileurl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/pdf-extractor.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_pdf_extractor_extractpdftext", + "target": "apps_electron_vite_project_electron_main_email_pdf_extractor_reconstructpagetext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/pdf-extractor.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_pdf_extractor_reconstructpagetext", + "target": "apps_electron_vite_project_electron_main_email_pdf_extractor_extractpdftextresult" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanProcessing.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscanprocessing", + "target": "apps_electron_vite_project_electron_main_email_pdf_extractor_extractpdftext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanProcessing.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscanprocessing_processpdfforletterviewer", + "target": "apps_electron_vite_project_electron_main_email_pdf_extractor_extractpdftext" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/pdf-extractor.ts", + "source_location": "L206", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_pdf_extractor_supportstextextraction", + "target": "apps_electron_vite_project_electron_main_email_pdf_extractor_getsupportedextractiontypes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/plainEmailConverter.ts", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_plainemailconverter", + "target": "apps_electron_vite_project_electron_main_email_plainemailconverter_convertplaintobeapformat", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/plainEmailConverter.ts", + "source_location": "L328", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_plainemailconverter", + "target": "apps_electron_vite_project_electron_main_email_plainemailconverter_enrichwithattachments", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/plainEmailConverter.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_plainemailconverter", + "target": "apps_electron_vite_project_electron_main_email_plainemailconverter_extractautomationtags", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/plainEmailConverter.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_plainemailconverter", + "target": "apps_electron_vite_project_electron_main_email_plainemailconverter_hashsenderemail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/plainEmailConverter.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_plainemailconverter", + "target": "apps_electron_vite_project_electron_main_email_plainemailconverter_plainemailbeapmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/plainEmailConverter.ts", + "source_location": "L160", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_plainemailconverter", + "target": "apps_electron_vite_project_electron_main_email_plainemailconverter_plainemaildepackagedformat", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/plainEmailConverter.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_plainemailconverter", + "target": "apps_electron_vite_project_electron_main_email_plainemailconverter_plainemailtobeapmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/plainEmailConverter.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_plainemailconverter", + "target": "apps_electron_vite_project_electron_main_email_plainemailconverter_striphtml", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/plainEmailConverter.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_plainemailconverter", + "target": "apps_electron_vite_project_electron_main_email_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/plainEmailConverter.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_plainemailconverter", + "target": "apps_electron_vite_project_electron_main_email_types_sanitizedmessagedetail", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/plainEmailConverter.ts", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_plainemailconverter_plainemailtobeapmessage", + "target": "apps_electron_vite_project_electron_main_email_plainemailconverter_hashsenderemail", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/plainEmailConverter.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_plainemailconverter_plainemailtobeapmessage", + "target": "apps_electron_vite_project_electron_main_email_plainemailconverter_striphtml", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/plainEmailConverter.ts", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_plainemailconverter_plainemailtobeapmessage", + "target": "apps_electron_vite_project_electron_main_email_plainemailconverter_extractautomationtags", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L225", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_base", + "target": "apps_electron_vite_project_electron_main_email_providers_base_baseemailprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_base", + "target": "apps_electron_vite_project_electron_main_email_providers_base_folderinfo", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_base", + "target": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_base", + "target": "apps_electron_vite_project_electron_main_email_providers_base_rawattachment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_base", + "target": "apps_electron_vite_project_electron_main_email_providers_base_rawemailmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L216", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_base", + "target": "apps_electron_vite_project_electron_main_email_providers_base_tokenrefreshcallback", + "confidence_score": 1.0 + }, + { + "relation": "cites", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_base", + "target": "apps_electron_vite_project_electron_main_email_providers_base_ts_docref_rfc_822", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_base", + "target": "apps_electron_vite_project_electron_main_email_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_base", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_base", + "target": "apps_electron_vite_project_electron_main_email_types_messagesearchoptions", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_base", + "target": "apps_electron_vite_project_electron_main_email_types_sendemailpayload", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_base", + "target": "apps_electron_vite_project_electron_main_email_types_sendresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail", + "target": "apps_electron_vite_project_electron_main_email_providers_base", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap", + "target": "apps_electron_vite_project_electron_main_email_providers_base", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imapFetchReliable.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imapfetchreliable", + "target": "apps_electron_vite_project_electron_main_email_providers_base", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook", + "target": "apps_electron_vite_project_electron_main_email_providers_base", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho", + "target": "apps_electron_vite_project_electron_main_email_providers_base", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail", + "target": "apps_electron_vite_project_electron_main_email_providers_base_rawemailmessage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L1402", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_buildrawgmailmessage", + "target": "apps_electron_vite_project_electron_main_email_providers_base_rawemailmessage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L441", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_fetchmessage", + "target": "apps_electron_vite_project_electron_main_email_providers_base_rawemailmessage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L287", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_fetchmessages", + "target": "apps_electron_vite_project_electron_main_email_providers_base_rawemailmessage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L1431", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_parsegmailmessage", + "target": "apps_electron_vite_project_electron_main_email_providers_base_rawemailmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap", + "target": "apps_electron_vite_project_electron_main_email_providers_base_rawemailmessage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L228", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_base_rawemailmessage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_fetchmessage", + "target": "apps_electron_vite_project_electron_main_email_providers_base_rawemailmessage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L960", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_fetchmessagefromfolder", + "target": "apps_electron_vite_project_electron_main_email_providers_base_rawemailmessage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L832", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_fetchmessages", + "target": "apps_electron_vite_project_electron_main_email_providers_base_rawemailmessage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L695", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_fetchmessagesbeforeexclusive", + "target": "apps_electron_vite_project_electron_main_email_providers_base_rawemailmessage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L533", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_fetchmessagessince", + "target": "apps_electron_vite_project_electron_main_email_providers_base_rawemailmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imapFetchReliable.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imapfetchreliable", + "target": "apps_electron_vite_project_electron_main_email_providers_base_rawemailmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook", + "target": "apps_electron_vite_project_electron_main_email_providers_base_rawemailmessage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L274", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_fetchallmessagestwophase", + "target": "apps_electron_vite_project_electron_main_email_providers_base_rawemailmessage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L452", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_fetchmessage", + "target": "apps_electron_vite_project_electron_main_email_providers_base_rawemailmessage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L500", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_fetchmessageopaque", + "target": "apps_electron_vite_project_electron_main_email_providers_base_rawemailmessage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L368", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_fetchmessages", + "target": "apps_electron_vite_project_electron_main_email_providers_base_rawemailmessage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L482", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_outlookliststub", + "target": "apps_electron_vite_project_electron_main_email_providers_base_rawemailmessage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L1252", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_parseoutlookmessage", + "target": "apps_electron_vite_project_electron_main_email_providers_base_rawemailmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho", + "target": "apps_electron_vite_project_electron_main_email_providers_base_rawemailmessage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L446", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_fetchmessage", + "target": "apps_electron_vite_project_electron_main_email_providers_base_rawemailmessage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L378", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_fetchmessages", + "target": "apps_electron_vite_project_electron_main_email_providers_base_rawemailmessage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L312", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_parsezohomessagecontent", + "target": "apps_electron_vite_project_electron_main_email_providers_base_rawemailmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail", + "target": "apps_electron_vite_project_electron_main_email_providers_base_rawattachment", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L1493", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_extractattachments", + "target": "apps_electron_vite_project_electron_main_email_providers_base_rawattachment", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L464", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_listattachments", + "target": "apps_electron_vite_project_electron_main_email_providers_base_rawattachment", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap", + "target": "apps_electron_vite_project_electron_main_email_providers_base_rawattachment", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1176", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_listattachments", + "target": "apps_electron_vite_project_electron_main_email_providers_base_rawattachment", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook", + "target": "apps_electron_vite_project_electron_main_email_providers_base_rawattachment", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L546", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_listattachments", + "target": "apps_electron_vite_project_electron_main_email_providers_base_rawattachment", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho", + "target": "apps_electron_vite_project_electron_main_email_providers_base_rawattachment", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L478", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_listattachments", + "target": "apps_electron_vite_project_electron_main_email_providers_base_rawattachment", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail", + "target": "apps_electron_vite_project_electron_main_email_providers_base_folderinfo", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L273", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_listfolders", + "target": "apps_electron_vite_project_electron_main_email_providers_base_folderinfo", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap", + "target": "apps_electron_vite_project_electron_main_email_providers_base_folderinfo", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1489", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_expandpullfolderswithdirectinboxchildren", + "target": "apps_electron_vite_project_electron_main_email_providers_base_folderinfo", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1459", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapfindexistingmailboxpathforlabel", + "target": "apps_electron_vite_project_electron_main_email_providers_base_folderinfo", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1317", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapfindfoldersmatchinglegacylabel", + "target": "apps_electron_vite_project_electron_main_email_providers_base_folderinfo", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L379", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_listfolders", + "target": "apps_electron_vite_project_electron_main_email_providers_base_folderinfo", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1450", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_lookslikespammailbox", + "target": "apps_electron_vite_project_electron_main_email_providers_base_folderinfo", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook", + "target": "apps_electron_vite_project_electron_main_email_providers_base_folderinfo", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_listfolders", + "target": "apps_electron_vite_project_electron_main_email_providers_base_folderinfo", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho", + "target": "apps_electron_vite_project_electron_main_email_providers_base_folderinfo", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L287", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_listfolders", + "target": "apps_electron_vite_project_electron_main_email_providers_base_folderinfo", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L225", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_base_baseemailprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider_applyorchestratorremoteoperation", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider_connect", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L209", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider_deletemessage", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider_disconnect", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L154", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider_fetchattachment", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider_fetchmessage", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider_fetchmessages", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider_fetchnewmessages", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L184", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider_getsyncstate", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider_isconnected", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider_listattachments", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider_listfolders", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L160", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider_markasread", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L166", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider_markasunread", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L179", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider_sendemail", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L173", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider_setflagged", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider_testconnection", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider_connect", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider_testconnection", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider_fetchmessages", + "target": "apps_electron_vite_project_electron_main_email_types_messagesearchoptions", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L179", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider_sendemail", + "target": "apps_electron_vite_project_electron_main_email_types_sendemailpayload", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L179", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_base_iemailprovider_sendemail", + "target": "apps_electron_vite_project_electron_main_email_types_sendresult", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L306", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_base_baseemailprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_base_baseemailprovider_formatdate", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L250", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_base_baseemailprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_base_baseemailprovider_isconnected", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L257", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_base_baseemailprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_base_baseemailprovider_parseemailaddress", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L275", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_base_baseemailprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_base_baseemailprovider_parseemailaddresses", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L229", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_base_baseemailprovider", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail", + "target": "apps_electron_vite_project_electron_main_email_providers_base_baseemailprovider", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L182", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_base_baseemailprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap", + "target": "apps_electron_vite_project_electron_main_email_providers_base_baseemailprovider", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L223", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_base_baseemailprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook", + "target": "apps_electron_vite_project_electron_main_email_providers_base_baseemailprovider", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_base_baseemailprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho", + "target": "apps_electron_vite_project_electron_main_email_providers_base_baseemailprovider", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_base_baseemailprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/base.ts", + "source_location": "L300", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_base_baseemailprovider_parseemailaddresses", + "target": "apps_electron_vite_project_electron_main_email_providers_base_baseemailprovider_parseemailaddress", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_base64url", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_emitgmailstandardconnectflowproof", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_getoauthconfigpath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailoauthtokenexchangeshape", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L1577", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L156", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_loadoauthconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_oauthrandomstring", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L171", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_saveoauthconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_sha256base64url", + "confidence_score": 1.0 + }, + { + "relation": "cites", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L1399", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_ts_docref_rfc_822", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail", + "target": "apps_electron_vite_project_electron_main_email_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail", + "target": "apps_electron_vite_project_electron_main_email_types_messagesearchoptions", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail", + "target": "apps_electron_vite_project_electron_main_email_types_sendemailpayload", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail", + "target": "apps_electron_vite_project_electron_main_email_types_sendresult", + "confidence_score": 1.0 + }, + { + "relation": "cites", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L1560", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail", + "target": "docref_rfc_2045", + "confidence_score": 1.0 + }, + { + "relation": "cites", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L659", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail", + "target": "docref_rfc_2822", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleAwareConsent.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_roleawareconsent", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxemailfetch", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_emitgmailstandardconnectflowproof", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailoauthtokenexchangeshape", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L920", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_exchangecodefortokens", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailoauthtokenexchangeshape", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L860", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_exchangecodefortokens", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_emitgmailstandardconnectflowproof", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_oauthrandomstring", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_base64url", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L715", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_startoauthflow", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_oauthrandomstring", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L716", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_startoauthflow", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_sha256base64url", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L158", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_loadoauthconfig", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_getoauthconfigpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L173", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_saveoauthconfig", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_getoauthconfigpath", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L1295", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_apirequest", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L531", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_applyorchestratorremoteoperation", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L613", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_batchmodifymessages", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L822", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_buildauthurl", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L1402", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_buildrawgmailmessage", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L1523", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_buildrfc2822message", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L195", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_connect", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L1518", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_decodebase64url", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L517", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_deletemessage", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L213", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_disconnect", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L635", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_ensurewrdeskuserlabel", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L848", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_exchangecodefortokens", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L1493", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_extractattachments", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L1474", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_extractbody", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L473", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_fetchattachment", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L441", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_fetchmessage", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L287", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_fetchmessages", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L226", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_fetchprofileemailaddress", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L596", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_gmailmodifyoridempotent", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L586", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_isgmailidempotentmodifyerror", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L1134", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_istokenexpired", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L464", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_listattachments", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L273", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_listfolders", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L493", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_markasread", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L499", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_markasunread", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L1431", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_parsegmailmessage", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L1138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_refreshaccesstoken", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L657", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_sendemail", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L505", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_setflagged", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L702", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_startoauthflow", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L254", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_testconnection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleAwareConsent.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_roleawareconsent", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxemailfetch", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L206", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_connect", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_istokenexpired", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L207", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_connect", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_refreshaccesstoken", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L195", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_connect", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L240", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_fetchprofileemailaddress", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_connect", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L256", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_testconnection", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_connect", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L333", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_fetchopaqueviagmail", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_connect" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L229", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_fetchopaqueviaoutlook", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_connect" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L250", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_fetchprofileemailaddress", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_disconnect", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L269", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_testconnection", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_disconnect", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L373", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_fetchopaqueviagmail", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_disconnect" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L274", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_fetchopaqueviaoutlook", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_disconnect" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L242", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_fetchprofileemailaddress", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_apirequest", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L226", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_fetchprofileemailaddress", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L259", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_testconnection", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_apirequest", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L254", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_testconnection", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L274", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_listfolders", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_apirequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L367", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_fetchmessages", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_apirequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L424", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_fetchmessages", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_fetchmessage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L287", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_fetchmessages", + "target": "apps_electron_vite_project_electron_main_email_types_messagesearchoptions", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L448", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_fetchmessage", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_apirequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L449", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_fetchmessage", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_buildrawgmailmessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L457", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_fetchmessage", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_parsegmailmessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L245", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_fetchopaqueviaoutlook", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_fetchmessage" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L465", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_listattachments", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_apirequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L470", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_listattachments", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_extractattachments", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L475", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_fetchattachment", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_apirequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L494", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_markasread", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_apirequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L500", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_markasunread", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_apirequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L507", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_setflagged", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_apirequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L518", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_deletemessage", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_apirequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L541", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_applyorchestratorremoteoperation", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_ensurewrdeskuserlabel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L546", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_applyorchestratorremoteoperation", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_gmailmodifyoridempotent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L579", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_applyorchestratorremoteoperation", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_isgmailidempotentmodifyerror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L603", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_gmailmodifyoridempotent", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_isgmailidempotentmodifyerror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L601", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_gmailmodifyoridempotent", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_apirequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L627", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_batchmodifymessages", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_apirequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L639", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_ensurewrdeskuserlabel", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_apirequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L669", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_sendemail", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_apirequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L660", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_sendemail", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_buildrfc2822message", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L657", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_sendemail", + "target": "apps_electron_vite_project_electron_main_email_types_sendemailpayload", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L657", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_sendemail", + "target": "apps_electron_vite_project_electron_main_email_types_sendresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L739", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_startoauthflow", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_buildauthurl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L796", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_startoauthflow", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_exchangecodefortokens", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L702", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_startoauthflow", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L848", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_exchangecodefortokens", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L1296", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_apirequest", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_istokenexpired", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L1297", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_apirequest", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_refreshaccesstoken", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L1441", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_parsegmailmessage", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_extractattachments", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L1453", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_parsegmailmessage", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_extractbody", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L1479", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_extractbody", + "target": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_decodebase64url", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/gmail.ts", + "source_location": "L1523", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_gmail_gmailprovider_buildrfc2822message", + "target": "apps_electron_vite_project_electron_main_email_types_sendemailpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L197", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_createsmtptransport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imap_special_use_anchors", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L215", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapclientwithnamespaces", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapconnection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapfolderbasename", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapfolderlisthasexactmailbox", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapmoveerrwarrantscopydeletefallback", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapnamespaceinfo", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imappathlookslikestandardanchor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L2146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_infermailboxhierarchyfromlist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_normalizeimapprefix", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_syncdebugformatimapsearchcriteria", + "confidence_score": 1.0 + }, + { + "relation": "cites", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L989", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_ts_docref_rfc_822", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap", + "target": "apps_electron_vite_project_electron_main_email_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap", + "target": "apps_electron_vite_project_electron_main_email_types_imaplifecyclevalidationentry", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap", + "target": "apps_electron_vite_project_electron_main_email_types_imaplifecyclevalidationresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap", + "target": "apps_electron_vite_project_electron_main_email_types_messagesearchoptions", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap", + "target": "apps_electron_vite_project_electron_main_email_types_sendemailpayload", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap", + "target": "apps_electron_vite_project_electron_main_email_types_sendresult", + "confidence_score": 1.0 + }, + { + "relation": "cites", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L229", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap", + "target": "docref_rfc_2342", + "confidence_score": 1.0 + }, + { + "relation": "cites", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap", + "target": "docref_rfc_6155", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1177", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_rationale_1177", + "target": "apps_electron_vite_project_electron_main_email_providers_imap", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1182", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_rationale_1182", + "target": "apps_electron_vite_project_electron_main_email_providers_imap", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_providers_imap", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L755", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_fetchmessagesbeforeexclusive", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_syncdebugformatimapsearchcriteria", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L607", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_fetchmessagessince", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_syncdebugformatimapsearchcriteria", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L439", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_getnamespaceinfo", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_normalizeimapprefix", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L2060", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapmovebetweenmailboxes", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapmoveerrwarrantscopydeletefallback", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L159", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_infermailboxhierarchyfromlist", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imap_special_use_anchors" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapfolderlisthasexactmailbox", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapfolderbasename", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imappathlookslikestandardanchor", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapfolderbasename", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1522", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_expandpullfolderswithdirectinboxchildren", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapfolderbasename", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1466", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapfindexistingmailboxpathforlabel", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapfolderbasename", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1452", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_lookslikespammailbox", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapfolderbasename", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L182", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_infermailboxhierarchyfromlist", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapfolderbasename", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1642", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_debuglistremotemailboxeswithstatus", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapfolderlisthasexactmailbox", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1716", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_validatelifecycleremoteboxes", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapfolderlisthasexactmailbox", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1543", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_expandpullfolderswithdirectinboxchildren", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imappathlookslikestandardanchor", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L165", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_infermailboxhierarchyfromlist", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imappathlookslikestandardanchor", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L448", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_getnamespaceinfo", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_infermailboxhierarchyfromlist", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L2112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_sendemail", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_createsmtptransport", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L364", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_testsmtpconnection", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_createsmtptransport", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1736", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_applyorchestratorremoteoperation", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L234", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_connect", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1264", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_consolidatelifecyclefolders", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1599", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_debuglistremotemailboxeswithstatus", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1244", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_deletemessage", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L321", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_disconnect", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1556", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_expandpullfoldersforsync", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1489", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_expandpullfolderswithdirectinboxchildren", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1181", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_fetchattachment", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_fetchmessage", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L960", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_fetchmessagefromfolder", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L832", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_fetchmessages", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L695", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_fetchmessagesbeforeexclusive", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L533", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_fetchmessagessince", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L427", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_getnamespaceinfo", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L2074", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapensuremailbox", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L490", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapexpandmailboxtrypaths", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1459", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapfindexistingmailboxpathforlabel", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1317", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapfindfoldersmatchinglegacylabel", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1876", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapfinduidbyheadermessageid", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1440", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapisdirectchildofmailbox", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L502", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imaplifecyclemailboxcandidatesresolved", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1963", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imaplocatemessageformove", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1412", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapmoveallmessagesfromlegacytocanonical", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L2004", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapmovebetweenmailboxes", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1823", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapopenbox", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1927", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imaporderedsearchmailboxes", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1902", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imappathmatchescanonicallifecycle", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L467", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapresolvemailboxpath", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1807", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imaprfcmessageidsearchvariants", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1347", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapsearchalluidsincurrentmailbox", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1862", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapsearchfirstuid", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1360", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imaptrymoveuidwithfallback", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1888", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapuidpresentinmailbox", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1987", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapverifymessageinmailbox", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1176", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_listattachments", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L379", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_listfolders", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L453", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_logimapnamespacepattern", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1450", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_lookslikespammailbox", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1186", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_markasread", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1203", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_markasunread", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1847", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_normalizesearchcriteriafornodeimap", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L338", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_refreshimapcapabilitiessnapshot", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L2105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_sendemail", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1220", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_setflagged", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L347", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_testconnection", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L360", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_testsmtpconnection", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1695", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_validatelifecycleremoteboxes", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L418", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_warmimapnamespacepattern", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L302", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_connect", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_refreshimapcapabilitiessnapshot", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L304", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_connect", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_warmimapnamespacepattern", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L234", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_connect", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L835", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_fetchmessages", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_connect", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L349", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_testconnection", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_connect", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L251", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator_mayberunimaplegacyfolderconsolidation", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_connect" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L350", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_testconnection", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_disconnect", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L270", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator_mayberunimaplegacyfolderconsolidation", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_disconnect" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L2016", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapmovebetweenmailboxes", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_refreshimapcapabilitiessnapshot", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L347", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_testconnection", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L360", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_testsmtpconnection", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1269", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_consolidatelifecyclefolders", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_listfolders", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1620", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_debuglistremotemailboxeswithstatus", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_listfolders", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1560", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_expandpullfoldersforsync", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_listfolders", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L447", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_getnamespaceinfo", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_listfolders", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1700", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_validatelifecycleremoteboxes", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_listfolders", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L420", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_warmimapnamespacepattern", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_getnamespaceinfo", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1495", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_expandpullfolderswithdirectinboxchildren", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_getnamespaceinfo", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L442", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_getnamespaceinfo", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_logimapnamespacepattern", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L477", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapresolvemailboxpath", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_getnamespaceinfo", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1761", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_applyorchestratorremoteoperation", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapresolvemailboxpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1280", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_consolidatelifecyclefolders", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapresolvemailboxpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1637", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_debuglistremotemailboxeswithstatus", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapresolvemailboxpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1249", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_deletemessage", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapresolvemailboxpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1516", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_expandpullfolderswithdirectinboxchildren", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapresolvemailboxpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L2079", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapensuremailbox", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapresolvemailboxpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L493", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapexpandmailboxtrypaths", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapresolvemailboxpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1462", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapfindexistingmailboxpathforlabel", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapresolvemailboxpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1715", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_validatelifecycleremoteboxes", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapresolvemailboxpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1152", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_fetchmessage", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapexpandmailboxtrypaths", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1323", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapfindfoldersmatchinglegacylabel", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapexpandmailboxtrypaths", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L521", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imaplifecyclemailboxcandidatesresolved", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapexpandmailboxtrypaths", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1942", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imaporderedsearchmailboxes", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapexpandmailboxtrypaths", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1913", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imappathmatchescanonicallifecycle", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapexpandmailboxtrypaths", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1934", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imaporderedsearchmailboxes", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imaplifecyclemailboxcandidatesresolved", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L533", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_fetchmessagessince", + "target": "apps_electron_vite_project_electron_main_email_types_messagesearchoptions", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L695", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_fetchmessagesbeforeexclusive", + "target": "apps_electron_vite_project_electron_main_email_types_messagesearchoptions", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L832", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_fetchmessages", + "target": "apps_electron_vite_project_electron_main_email_types_messagesearchoptions", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_fetchmessage", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_fetchmessagefromfolder", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1248", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_deletemessage", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapensuremailbox", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1252", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_deletemessage", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imaplocatemessageformove", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1256", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_deletemessage", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapmovebetweenmailboxes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1282", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_consolidatelifecyclefolders", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapensuremailbox", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1292", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_consolidatelifecyclefolders", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapfindfoldersmatchinglegacylabel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1303", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_consolidatelifecyclefolders", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapmoveallmessagesfromlegacytocanonical", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L252", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator_mayberunimaplegacyfolderconsolidation", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_consolidatelifecyclefolders" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1417", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapmoveallmessagesfromlegacytocanonical", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapsearchalluidsincurrentmailbox", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1426", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapmoveallmessagesfromlegacytocanonical", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imaptrymoveuidwithfallback", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1416", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapmoveallmessagesfromlegacytocanonical", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapopenbox", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1542", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_expandpullfolderswithdirectinboxchildren", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapisdirectchildofmailbox", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1577", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_expandpullfoldersforsync", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_lookslikespammailbox", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1482", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapfindexistingmailboxpathforlabel", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_lookslikespammailbox", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1572", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_expandpullfoldersforsync", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapfindexistingmailboxpathforlabel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1588", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_expandpullfoldersforsync", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_expandpullfolderswithdirectinboxchildren", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1722", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_validatelifecycleremoteboxes", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapensuremailbox", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1695", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_validatelifecycleremoteboxes", + "target": "apps_electron_vite_project_electron_main_email_types_imaplifecyclevalidationresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1763", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_applyorchestratorremoteoperation", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapensuremailbox", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1792", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_applyorchestratorremoteoperation", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapfinduidbyheadermessageid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1778", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_applyorchestratorremoteoperation", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imaplocatemessageformove", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1787", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_applyorchestratorremoteoperation", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapmovebetweenmailboxes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1791", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_applyorchestratorremoteoperation", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapverifymessageinmailbox", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1877", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapfinduidbyheadermessageid", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imaprfcmessageidsearchvariants", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1879", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapfinduidbyheadermessageid", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapopenbox", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1889", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapuidpresentinmailbox", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapopenbox", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1863", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapsearchfirstuid", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_normalizesearchcriteriafornodeimap", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1882", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapfinduidbyheadermessageid", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapsearchfirstuid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1893", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapuidpresentinmailbox", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapsearchfirstuid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1976", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imaplocatemessageformove", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapfinduidbyheadermessageid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1993", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapverifymessageinmailbox", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapfinduidbyheadermessageid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1980", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imaplocatemessageformove", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapuidpresentinmailbox", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1996", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapverifymessageinmailbox", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imapuidpresentinmailbox", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1950", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imaporderedsearchmailboxes", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imappathmatchescanonicallifecycle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L1972", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imaplocatemessageformove", + "target": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_imaporderedsearchmailboxes", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L2105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_sendemail", + "target": "apps_electron_vite_project_electron_main_email_types_sendemailpayload", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imap.ts", + "source_location": "L2105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imap_imapprovider_sendemail", + "target": "apps_electron_vite_project_electron_main_email_types_sendresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imapFetchReliable.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imapfetchreliable", + "target": "apps_electron_vite_project_electron_main_email_providers_imapfetchreliable_imapfetchreliable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imapFetchReliable.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imapfetchreliable", + "target": "apps_electron_vite_project_electron_main_email_providers_imapfetchreliable_parseemailaddress", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imapFetchReliable.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imapfetchreliable", + "target": "apps_electron_vite_project_electron_main_email_providers_imapfetchreliable_parseemailaddresses", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imapFetchReliable.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imapfetchreliable", + "target": "apps_electron_vite_project_electron_main_email_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imapFetchReliable.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imapfetchreliable", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imapFetchReliable.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imapfetchreliable", + "target": "apps_electron_vite_project_electron_main_email_types_messagesearchoptions", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imapFetchReliable.ts", + "source_location": "L181", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imapfetchreliable_imapfetchreliable", + "target": "apps_electron_vite_project_electron_main_email_providers_imapfetchreliable_parseemailaddress", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imapFetchReliable.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imapfetchreliable_parseemailaddresses", + "target": "apps_electron_vite_project_electron_main_email_providers_imapfetchreliable_parseemailaddress", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/imapFetchReliable.ts", + "source_location": "L182", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_imapfetchreliable_imapfetchreliable", + "target": "apps_electron_vite_project_electron_main_email_providers_imapfetchreliable_parseemailaddresses", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_getoutlookoauthconfigpath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_loadoutlookoauthconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlook_opaque_unproven_code", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlook_scopes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookopaqueunprovenerror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L1315", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_saveoutlookoauthconfig", + "confidence_score": 1.0 + }, + { + "relation": "cites", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L1204", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_ts_docref_rfc_822", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook", + "target": "apps_electron_vite_project_electron_main_email_sanitizer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_sanitizehtmltotext", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook", + "target": "apps_electron_vite_project_electron_main_email_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook", + "target": "apps_electron_vite_project_electron_main_email_types_messagesearchoptions", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook", + "target": "apps_electron_vite_project_electron_main_email_types_sendemailpayload", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook", + "target": "apps_electron_vite_project_electron_main_email_types_sendresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleAwareConsent.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_roleawareconsent", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxemailfetch", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookopaqueunprovenerror", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookopaqueunprovenerror_constructor", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L983", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_refreshaccesstoken", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlook_scopes" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_loadoutlookoauthconfig", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_getoutlookoauthconfigpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_saveoutlookoauthconfig", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_getoutlookoauthconfigpath", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L614", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_applyorchestratorremoteoperation", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L860", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_buildauthurl", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_buildmessagesodataquery", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_connect", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L601", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_deletemessage", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_disconnect", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L666", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_ensureoutlookorchestratorfolder", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L882", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_exchangecodefortokens", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L274", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_fetchallmessagestwophase", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L563", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_fetchattachment", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L452", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_fetchmessage", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L500", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_fetchmessageopaque", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L368", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_fetchmessages", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L220", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_fetchmessageslistresponse", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L1094", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_getretryafterseconds", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L848", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_getuseremail", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L1188", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_graphapirequest", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L1165", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_graphapirequestabsolute", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L1220", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_graphapirequestraw", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L1105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_graphrequestwithretries", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L1044", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_graphsinglerequest", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L962", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_istokenexpired", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L546", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_listattachments", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_listfolders", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L581", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_markasread", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L587", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_markasunread", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_normalizegraphmailfolderid", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L482", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_outlookliststub", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L1216", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_outlookprefersrawvalue", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L1252", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_parseoutlookmessage", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L966", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_refreshaccesstoken", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L710", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_sendemail", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L593", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_setflagged", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L762", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_startoauthflow", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L155", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_testconnection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleAwareConsent.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_roleawareconsent", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxemailfetch", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L139", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_connect", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_istokenexpired", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_connect", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_refreshaccesstoken", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_connect", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L157", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_testconnection", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_connect", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_testconnection", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_disconnect", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L160", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_testconnection", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_graphapirequest", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L155", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_testconnection", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_listfolders", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_graphapirequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L370", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_fetchmessages", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_normalizegraphmailfolderid", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_buildmessagesodataquery", + "target": "apps_electron_vite_project_electron_main_email_types_messagesearchoptions", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L279", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_fetchallmessagestwophase", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_buildmessagesodataquery", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L226", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_fetchmessageslistresponse", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_buildmessagesodataquery", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L417", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_fetchmessages", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_fetchmessageslistresponse", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L234", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_fetchmessageslistresponse", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_graphapirequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L253", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_fetchmessageslistresponse", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_graphapirequestabsolute", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L220", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_fetchmessageslistresponse", + "target": "apps_electron_vite_project_electron_main_email_types_messagesearchoptions", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L343", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_fetchallmessagestwophase", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_fetchmessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L287", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_fetchallmessagestwophase", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_graphapirequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L305", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_fetchallmessagestwophase", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_graphapirequestabsolute", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L333", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_fetchallmessagestwophase", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_outlookliststub", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L274", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_fetchallmessagestwophase", + "target": "apps_electron_vite_project_electron_main_email_types_messagesearchoptions", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L389", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_fetchmessages", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_fetchallmessagestwophase", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L420", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_fetchmessages", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_outlookliststub", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L449", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_fetchmessages", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_parseoutlookmessage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L368", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_fetchmessages", + "target": "apps_electron_vite_project_electron_main_email_types_messagesearchoptions", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L458", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_fetchmessage", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_fetchmessageopaque", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L461", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_fetchmessage", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_graphapirequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L466", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_fetchmessage", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_parseoutlookmessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L508", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_fetchmessageopaque", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_graphapirequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L517", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_fetchmessageopaque", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_graphapirequestraw", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L501", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_fetchmessageopaque", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_outlookprefersrawvalue", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L547", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_listattachments", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_graphapirequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L565", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_fetchattachment", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_graphapirequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L582", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_markasread", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_graphapirequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L588", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_markasunread", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_graphapirequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L594", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_setflagged", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_graphapirequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L602", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_deletemessage", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_graphapirequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L629", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_applyorchestratorremoteoperation", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_ensureoutlookorchestratorfolder", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L626", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_applyorchestratorremoteoperation", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_graphapirequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L674", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_ensureoutlookorchestratorfolder", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_graphapirequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L734", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_sendemail", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_graphapirequest", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L710", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_sendemail", + "target": "apps_electron_vite_project_electron_main_email_types_sendemailpayload", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L710", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_sendemail", + "target": "apps_electron_vite_project_electron_main_email_types_sendresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L787", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_startoauthflow", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_buildauthurl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L815", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_startoauthflow", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_exchangecodefortokens", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L828", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_startoauthflow", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_graphapirequest", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L762", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_startoauthflow", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/roleAwareConsent.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_roleawareconsent_defaultgmailflow", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_startoauthflow" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/roleAwareConsent.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_roleawareconsent_defaultoutlookflow", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_startoauthflow" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L852", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_getuseremail", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_graphapirequest", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L882", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_exchangecodefortokens", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L1224", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_graphapirequestraw", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_istokenexpired", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L1111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_graphrequestwithretries", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_istokenexpired", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L1225", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_graphapirequestraw", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_refreshaccesstoken", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L1113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_graphrequestwithretries", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_refreshaccesstoken", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L1192", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_graphapirequest", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_graphsinglerequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L1178", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_graphapirequestabsolute", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_graphsinglerequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L1227", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_graphapirequestraw", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_graphsinglerequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L1233", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_graphapirequestraw", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_getretryafterseconds", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L1122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_graphrequestwithretries", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_getretryafterseconds", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L1190", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_graphapirequest", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_graphrequestwithretries", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L1176", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_graphapirequestabsolute", + "target": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_graphrequestwithretries", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/providers/outlook.ts", + "source_location": "L1295", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_outlook_outlookprovider_parseoutlookmessage", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_sanitizehtmltotext" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_accountshost", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_buildzohocompositemessageid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_mailhost", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_parsezohocompositemessageid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_unwrapdata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zoho_mail_scopes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L862", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho", + "target": "apps_electron_vite_project_electron_main_email_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho", + "target": "apps_electron_vite_project_electron_main_email_types_messagesearchoptions", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho", + "target": "apps_electron_vite_project_electron_main_email_types_sendemailpayload", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho", + "target": "apps_electron_vite_project_electron_main_email_types_sendresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L802", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_buildauthurl", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_accountshost", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L811", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_exchangecodefortokens", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_accountshost", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L221", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_refreshaccesstoken", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_accountshost", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_mailapibase", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_mailhost", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L438", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_fetchmessages", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_buildzohocompositemessageid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L315", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_parsezohomessagecontent", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_buildzohocompositemessageid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L626", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_applyorchestratorremoteoperation", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_parsezohocompositemessageid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L593", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_deletemessage", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_parsezohocompositemessageid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L507", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_fetchattachment", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_parsezohocompositemessageid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L449", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_fetchmessage", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_parsezohocompositemessageid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L482", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_listattachments", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_parsezohocompositemessageid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L525", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_markasread", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_parsezohocompositemessageid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L540", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_markasunread", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_parsezohocompositemessageid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L555", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_setflagged", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_parsezohocompositemessageid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_ensurezohoaccountid", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_unwrapdata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L685", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_ensurezohoorchestratorfolder", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_unwrapdata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L512", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_fetchattachment", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_unwrapdata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L459", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_fetchmessage", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_unwrapdata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L410", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_fetchmessages", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_unwrapdata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L489", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_listattachments", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_unwrapdata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L290", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_listfolders", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_unwrapdata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L758", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_startoauthflow", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_unwrapdata", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L604", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_applyorchestratorremoteoperation", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L793", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_buildauthurl", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_connect", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L588", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_deletemessage", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_disconnect", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_ensurezohoaccountid", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L650", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_ensurezohoorchestratorfolder", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L805", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_exchangecodefortokens", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L505", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_fetchattachment", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L446", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_fetchmessage", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L378", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_fetchmessages", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_istokenexpired", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L478", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_listattachments", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L287", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_listfolders", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_mailapibase", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L524", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_markasread", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L539", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_markasunread", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L307", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_parsezohoaddress", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L312", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_parsezohomessagecontent", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L209", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_refreshaccesstoken", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L567", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_sendemail", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L554", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_setflagged", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L705", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_startoauthflow", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L275", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_testconnection", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L152", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_zohoapirequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L156", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_zohoapirequest", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_mailapibase", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_connect", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_istokenexpired", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_connect", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_refreshaccesstoken", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_connect", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L277", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_testconnection", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_connect", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L774", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_startoauthflow", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_disconnect", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L283", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_testconnection", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_disconnect", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L630", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_applyorchestratorremoteoperation", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_ensurezohoaccountid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L597", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_deletemessage", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_ensurezohoaccountid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_ensurezohoaccountid", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_zohoapirequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L679", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_ensurezohoorchestratorfolder", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_ensurezohoaccountid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L506", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_fetchattachment", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_ensurezohoaccountid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L448", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_fetchmessage", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_ensurezohoaccountid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L379", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_fetchmessages", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_ensurezohoaccountid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L481", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_listattachments", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_ensurezohoaccountid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L288", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_listfolders", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_ensurezohoaccountid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L527", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_markasread", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_ensurezohoaccountid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L542", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_markasunread", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_ensurezohoaccountid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L569", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_sendemail", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_ensurezohoaccountid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L557", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_setflagged", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_ensurezohoaccountid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L756", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_startoauthflow", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_ensurezohoaccountid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L278", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_testconnection", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_ensurezohoaccountid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L634", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_applyorchestratorremoteoperation", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_zohoapirequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L598", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_deletemessage", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_zohoapirequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L682", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_ensurezohoorchestratorfolder", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_zohoapirequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L511", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_fetchattachment", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_zohoapirequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L455", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_fetchmessage", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_zohoapirequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L409", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_fetchmessages", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_zohoapirequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L485", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_listattachments", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_zohoapirequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L289", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_listfolders", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_zohoapirequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L529", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_markasread", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_zohoapirequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L544", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_markasunread", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_zohoapirequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L574", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_sendemail", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_zohoapirequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L558", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_setflagged", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_zohoapirequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L757", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_startoauthflow", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_zohoapirequest", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L275", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_testconnection", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L660", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_ensurezohoorchestratorfolder", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_listfolders", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L462", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_fetchmessage", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_listfolders", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L384", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_fetchmessages", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_listfolders", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L764", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_startoauthflow", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_listfolders", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L351", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_parsezohomessagecontent", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_parsezohoaddress", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L467", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_fetchmessage", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_parsezohomessagecontent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L438", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_fetchmessages", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_fetchmessage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L378", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_fetchmessages", + "target": "apps_electron_vite_project_electron_main_email_types_messagesearchoptions", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L479", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_listattachments", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_fetchmessage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L567", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_sendemail", + "target": "apps_electron_vite_project_electron_main_email_types_sendemailpayload", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L567", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_sendemail", + "target": "apps_electron_vite_project_electron_main_email_types_sendresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L592", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_deletemessage", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_ensurezohoorchestratorfolder", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L625", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_applyorchestratorremoteoperation", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_ensurezohoorchestratorfolder", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L727", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_startoauthflow", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_buildauthurl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L735", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_startoauthflow", + "target": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_exchangecodefortokens", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L705", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_startoauthflow", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/providers/zoho.ts", + "source_location": "L805", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_providers_zoho_zohoprovider_exchangecodefortokens", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/remoteDeletion.ts", + "source_location": "L328", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_remotedeletion", + "target": "apps_electron_vite_project_electron_main_email_remotedeletion_bulkqueuedeletion", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/remoteDeletion.ts", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_remotedeletion", + "target": "apps_electron_vite_project_electron_main_email_remotedeletion_bulkqueuedeletionresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/remoteDeletion.ts", + "source_location": "L236", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_remotedeletion", + "target": "apps_electron_vite_project_electron_main_email_remotedeletion_cancelremotedeletion", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/remoteDeletion.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_remotedeletion", + "target": "apps_electron_vite_project_electron_main_email_remotedeletion_deletealldirectbeapmessages", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/remoteDeletion.ts", + "source_location": "L261", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_remotedeletion", + "target": "apps_electron_vite_project_electron_main_email_remotedeletion_executependingdeletions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/remoteDeletion.ts", + "source_location": "L137", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_remotedeletion", + "target": "apps_electron_vite_project_electron_main_email_remotedeletion_executependingdeletionsresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/remoteDeletion.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_remotedeletion", + "target": "apps_electron_vite_project_electron_main_email_remotedeletion_getlifecycleremotedeleteskipreason", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/remoteDeletion.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_remotedeletion", + "target": "apps_electron_vite_project_electron_main_email_remotedeletion_isdirectbeaprow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/remoteDeletion.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_remotedeletion", + "target": "apps_electron_vite_project_electron_main_email_remotedeletion_purgedirectbeapmessagelocal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/remoteDeletion.ts", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_remotedeletion", + "target": "apps_electron_vite_project_electron_main_email_remotedeletion_queueremotedeletion", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/remoteDeletion.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_remotedeletion", + "target": "apps_electron_vite_project_electron_main_email_remotedeletion_queueremotedeletionresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/remoteDeletion.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_remotedeletion", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/remoteDeletion.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_remotedeletion", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_preparesealedoperationalupdate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/remoteDeletion.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_remotedeletion_purgedirectbeapmessagelocal", + "target": "apps_electron_vite_project_electron_main_email_remotedeletion_isdirectbeaprow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/remoteDeletion.ts", + "source_location": "L166", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_remotedeletion_queueremotedeletion", + "target": "apps_electron_vite_project_electron_main_email_remotedeletion_isdirectbeaprow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/remoteDeletion.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_remotedeletion_deletealldirectbeapmessages", + "target": "apps_electron_vite_project_electron_main_email_remotedeletion_purgedirectbeapmessagelocal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/remoteDeletion.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_remotedeletion_queueremotedeletion", + "target": "apps_electron_vite_project_electron_main_email_remotedeletion_purgedirectbeapmessagelocal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/remoteDeletion.ts", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_remotedeletion_queueremotedeletion", + "target": "apps_electron_vite_project_electron_main_email_remotedeletion_getlifecycleremotedeleteskipreason", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/remoteDeletion.ts", + "source_location": "L338", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_remotedeletion_bulkqueuedeletion", + "target": "apps_electron_vite_project_electron_main_email_remotedeletion_queueremotedeletion", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/remoteDeletion.ts", + "source_location": "L192", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_remotedeletion_queueremotedeletion", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_preparesealedoperationalupdate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/remoteDeletion.ts", + "source_location": "L246", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_remotedeletion_cancelremotedeletion", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_preparesealedoperationalupdate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/remoteDeletion.ts", + "source_location": "L292", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_remotedeletion_executependingdeletions", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_preparesealedoperationalupdate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/resolveConnectOAuthScopeRole.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_resolveconnectoauthscoperole", + "target": "apps_electron_vite_project_electron_main_email_resolveconnectoauthscoperole_iseffectivesandboxnode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/resolveConnectOAuthScopeRole.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_resolveconnectoauthscoperole", + "target": "apps_electron_vite_project_electron_main_email_resolveconnectoauthscoperole_resolveconnectoauthscoperole", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/resolveConnectOAuthScopeRole.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_resolveconnectoauthscoperole", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/resolveConnectOAuthScopeRole.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_resolveconnectoauthscoperole", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleAwareConsent.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_roleawareconsent", + "target": "apps_electron_vite_project_electron_main_email_resolveconnectoauthscoperole", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/resolveConnectOAuthScopeRole.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_resolveconnectoauthscoperole_iseffectivesandboxnode", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/resolveConnectOAuthScopeRole.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_resolveconnectoauthscoperole_iseffectivesandboxnode", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/resolveConnectOAuthScopeRole.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_resolveconnectoauthscoperole_resolveconnectoauthscoperole", + "target": "apps_electron_vite_project_electron_main_email_resolveconnectoauthscoperole_iseffectivesandboxnode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleAwareConsent.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_roleawareconsent", + "target": "apps_electron_vite_project_electron_main_email_resolveconnectoauthscoperole_iseffectivesandboxnode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/roleAwareConsent.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_roleawareconsent_connectsendclient", + "target": "apps_electron_vite_project_electron_main_email_resolveconnectoauthscoperole_iseffectivesandboxnode" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleAwareConsent.ts", + "source_location": "L158", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_roleawareconsent", + "target": "apps_electron_vite_project_electron_main_email_roleawareconsent_connectreadclient", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleAwareConsent.ts", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_roleawareconsent", + "target": "apps_electron_vite_project_electron_main_email_roleawareconsent_connectsendclient", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleAwareConsent.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_roleawareconsent", + "target": "apps_electron_vite_project_electron_main_email_roleawareconsent_consentdeps", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleAwareConsent.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_roleawareconsent", + "target": "apps_electron_vite_project_electron_main_email_roleawareconsent_consentprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleAwareConsent.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_roleawareconsent", + "target": "apps_electron_vite_project_electron_main_email_roleawareconsent_consentrole", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleAwareConsent.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_roleawareconsent", + "target": "apps_electron_vite_project_electron_main_email_roleawareconsent_defaultgmailflow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleAwareConsent.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_roleawareconsent", + "target": "apps_electron_vite_project_electron_main_email_roleawareconsent_defaultoutlookflow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleAwareConsent.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_roleawareconsent", + "target": "apps_electron_vite_project_electron_main_email_roleawareconsent_flowtokens", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleAwareConsent.ts", + "source_location": "L166", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_roleawareconsent", + "target": "apps_electron_vite_project_electron_main_email_roleawareconsent_plannedscopesforrole", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleAwareConsent.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_roleawareconsent", + "target": "apps_electron_vite_project_electron_main_email_roleawareconsent_roleconsentresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleAwareConsent.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_roleawareconsent", + "target": "apps_electron_vite_project_electron_main_email_roleawareconsent_runrolescopedconsent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleAwareConsent.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_roleawareconsent", + "target": "apps_electron_vite_project_electron_main_email_roleawareconsent_scope_role_for", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleAwareConsent.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_roleawareconsent", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleAwareConsent.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_roleawareconsent", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_saverolescopedtokens", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleAwareConsent.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_roleawareconsent", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_tokenrole", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleAwareConsent.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_roleawareconsent", + "target": "apps_electron_vite_project_electron_main_email_secure_storage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleAwareConsent.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_roleawareconsent", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_oauthtokens", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleAwareConsent.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_roleawareconsent_flowtokens", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_oauthtokens", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleAwareConsent.ts", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_roleawareconsent_connectreadclient", + "target": "apps_electron_vite_project_electron_main_email_roleawareconsent_runrolescopedconsent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleAwareConsent.ts", + "source_location": "L151", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_roleawareconsent_connectsendclient", + "target": "apps_electron_vite_project_electron_main_email_roleawareconsent_runrolescopedconsent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/roleAwareConsent.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_roleawareconsent_runrolescopedconsent", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_saverolescopedtokens" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_basedir", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L152", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_deleterolescopedtokens", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_ensuredir", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_filefor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L144", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_hasrolescopedtokens", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_listreadscopedaccountids", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L182", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_listrolescopedtokenroles", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_loadrolescopedtokens", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_migraterolescopedtokens", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_rolelog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_rolescopedtokenrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_safecomponent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_saverolescopedtokens", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_setroletokenstorebasedirfortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_storedenvelope", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_tokenrole", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L213", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore", + "target": "apps_electron_vite_project_electron_main_email_secure_storage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_decryptoauthtokens", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_encryptoauthtokens", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_oauthtokens", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_securestorageunavailableerror", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_rationale_28", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxemailfetch", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestion", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxOpaqueFetchRouter.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxopaquefetchrouter", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_rolescopedtokenrecord", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_oauthtokens", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxemailfetch", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_rolescopedtokenrecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestion", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_rolescopedtokenrecord", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestion_sandboxingestiondeps", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_rolescopedtokenrecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxOpaqueFetchRouter.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxopaquefetchrouter", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_rolescopedtokenrecord", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_storedenvelope", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_encryptoauthtokens", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_ensuredir", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_basedir", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_filefor", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_basedir", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L192", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_listreadscopedaccountids", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_basedir", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_filefor", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_safecomponent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L153", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_deleterolescopedtokens", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_filefor", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_hasrolescopedtokens", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_filefor", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_loadrolescopedtokens", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_filefor", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_saverolescopedtokens", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_filefor", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_saverolescopedtokens", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_ensuredir", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L156", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_deleterolescopedtokens", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_rolelog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L139", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_loadrolescopedtokens", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_rolelog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L177", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_migraterolescopedtokens", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_rolelog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_saverolescopedtokens", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_rolelog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L172", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_migraterolescopedtokens", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_saverolescopedtokens", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_saverolescopedtokens", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_encryptoauthtokens" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxemailfetch", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_saverolescopedtokens", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_wiresandboxreadprovidertokenrefresh", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_saverolescopedtokens" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_loadrolescopedtokens", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_decryptoauthtokens" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_migraterolescopedtokens", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_loadrolescopedtokens", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxemailfetch", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_loadrolescopedtokens", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_wiresandboxreadprovidertokenrefresh", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_loadrolescopedtokens" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestion", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_loadrolescopedtokens", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L213", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestion_pollonesandboxreadaccount", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_loadrolescopedtokens", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L319", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestion_runsandboxingestionpoll", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_loadrolescopedtokens" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L185", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_listrolescopedtokenroles", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_hasrolescopedtokens", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L166", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_migraterolescopedtokens", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_hasrolescopedtokens", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_migraterolescopedtokens", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_deleterolescopedtokens", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestion", + "target": "apps_electron_vite_project_electron_main_email_rolescopedtokenstore_listreadscopedaccountids", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxCloneInboxFilter.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxcloneinboxfilter", + "target": "apps_electron_vite_project_electron_main_email_sandboxcloneinboxfilter_ispersistedinboxrowsandboxclone", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxCloneInboxFilter.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxcloneinboxfilter", + "target": "apps_electron_vite_project_electron_main_email_sandboxcloneinboxfilter_sandbox_clone_inbox_body_banner", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxCloneInboxFilter.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxcloneinboxfilter", + "target": "apps_electron_vite_project_electron_main_email_sandboxcloneinboxfilter_sandboxcloneinboxsqlpredicate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxCloneInboxFilter.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxcloneinboxfilter", + "target": "apps_electron_vite_project_electron_main_email_sandboxcloneinboxfilter_stringhintssandboxclone", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/sandboxCloneInboxFilter.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxcloneinboxfilter_sandboxcloneinboxsqlpredicate", + "target": "apps_electron_vite_project_electron_main_email_sandboxcloneinboxfilter_sandbox_clone_inbox_body_banner" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxCloneInboxFilter.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxcloneinboxfilter_ispersistedinboxrowsandboxclone", + "target": "apps_electron_vite_project_electron_main_email_sandboxcloneinboxfilter_stringhintssandboxclone", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxemailfetch", + "target": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_fetchlog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L303", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxemailfetch", + "target": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_fetchopaqueviagmail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L193", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxemailfetch", + "target": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_fetchopaqueviaoutlook", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L278", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxemailfetch", + "target": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_gmailrawresponsetosandboxmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxemailfetch", + "target": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_oauthconfigfromrolescopedreadrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxemailfetch", + "target": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_oauthfromlocalgmailcredentials", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxemailfetch", + "target": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_resolvebuiltingmailoauthforsandboxfetch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxemailfetch", + "target": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_resolveoauthforsandboxreadfetch", + "confidence_score": 1.0 + }, + { + "relation": "cites", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxemailfetch", + "target": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_ts_docref_rfc_822", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxemailfetch", + "target": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_wiresandboxreadprovidertokenrefresh", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxemailfetch", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestion", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxemailfetch", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestion_sandboxfetchedmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxemailfetch", + "target": "apps_electron_vite_project_electron_main_email_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxemailfetch", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxOpaqueFetchRouter.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxopaquefetchrouter", + "target": "apps_electron_vite_project_electron_main_email_sandboxemailfetch", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L318", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_fetchopaqueviagmail", + "target": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_fetchlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L214", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_fetchopaqueviaoutlook", + "target": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_fetchlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L154", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_resolveoauthforsandboxreadfetch", + "target": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_fetchlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_wiresandboxreadprovidertokenrefresh", + "target": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_fetchlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_resolveoauthforsandboxreadfetch", + "target": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_oauthconfigfromrolescopedreadrecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L316", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_fetchopaqueviagmail", + "target": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_wiresandboxreadprovidertokenrefresh", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L212", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_fetchopaqueviaoutlook", + "target": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_wiresandboxreadprovidertokenrefresh", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L165", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_resolveoauthforsandboxreadfetch", + "target": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_resolvebuiltingmailoauthforsandboxfetch", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L158", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_resolveoauthforsandboxreadfetch", + "target": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_oauthfromlocalgmailcredentials", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L313", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_fetchopaqueviagmail", + "target": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_resolveoauthforsandboxreadfetch", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L203", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_fetchopaqueviaoutlook", + "target": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_resolveoauthforsandboxreadfetch", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxOpaqueFetchRouter.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxopaquefetchrouter", + "target": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_fetchopaqueviaoutlook", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/sandboxOpaqueFetchRouter.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxopaquefetchrouter_fetchopaqueforprovideraccount", + "target": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_fetchopaqueviaoutlook" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts", + "source_location": "L353", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_fetchopaqueviagmail", + "target": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_gmailrawresponsetosandboxmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxOpaqueFetchRouter.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxopaquefetchrouter", + "target": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_fetchopaqueviagmail", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/sandboxOpaqueFetchRouter.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxopaquefetchrouter_fetchopaqueforprovideraccount", + "target": "apps_electron_vite_project_electron_main_email_sandboxemailfetch_fetchopaqueviagmail" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestion", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestion_defaultdelivertohost", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestion", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestion_defaultfetchopaque", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L142", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestion", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestion_emptyresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L178", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestion", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestion_finalizeaggregatedpollstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L160", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestion", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestion_getlastsandboxpolloutcomes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L157", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestion", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestion_lastpolloutcomes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L152", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestion", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestion_lastpollrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L169", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestion", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestion_mergepollresults", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L207", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestion", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestion_pollonesandboxreadaccount", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L165", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestion", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestion_resetlastsandboxpolloutcomesfortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L189", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestion", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestion_resolvepollablesandboxreadaccountids", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L305", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestion", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestion_runsandboxingestionpoll", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestion", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestion_sandboxdeliveryresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestion", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestion_sandboxfetchedmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestion", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestion_sandboxingestiondeps", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestion", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestion_sandboxingestionoptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestion", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestion_sandboxingestionresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestion", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestion_sandboxingestionstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestion", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestion_sandboxlog", + "confidence_score": 1.0 + }, + { + "relation": "cites", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestion", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestion_ts_docref_rfc_822", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestion", + "target": "apps_electron_vite_project_electron_main_email_sandboxopaquefetchrouter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestion", + "target": "apps_electron_vite_project_electron_main_email_sandboxopaquefetchrouter_classifysandboxfetchfailure", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestionProduction.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestion", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L1156", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator_startautosync", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestion", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxOpaqueFetchRouter.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxopaquefetchrouter", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestion_sandboxfetchedmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestionProduction.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestion_sandboxingestiondeps", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L216", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestion_pollonesandboxreadaccount", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestion_sandboxlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L198", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestion_resolvepollablesandboxreadaccountids", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestion_sandboxlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L313", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestion_runsandboxingestionpoll", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestion_sandboxlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L219", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestion_pollonesandboxreadaccount", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestion_emptyresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L316", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestion_runsandboxingestionpoll", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestion_emptyresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L362", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestion_runsandboxingestionpoll", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestion_mergepollresults", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L359", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestion_runsandboxingestionpoll", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestion_finalizeaggregatedpollstatus", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L323", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestion_runsandboxingestionpoll", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestion_resolvepollablesandboxreadaccountids", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L233", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestion_pollonesandboxreadaccount", + "target": "apps_electron_vite_project_electron_main_email_sandboxopaquefetchrouter_classifysandboxfetchfailure", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts", + "source_location": "L354", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestion_runsandboxingestionpoll", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestion_pollonesandboxreadaccount", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestionProduction.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction_buildproductionsandboxingestiondeps", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestionProduction.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction_findactivesandboxtohosthandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestionProduction.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction_isvalidx25519pubb64", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestionProduction.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction_resolvesandboxcustodypubkeyb64", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestionProduction.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction_resolvesandboxhostdeliverycontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestionProduction.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction_sandboxhostdeliverycontext", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestionProduction.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction", + "target": "apps_electron_vite_project_electron_main_email_sandboxopaquefetchrouter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestionProduction.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction", + "target": "apps_electron_vite_project_electron_main_email_sandboxopaquefetchrouter_fetchopaqueforprovideraccount", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestionProduction.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestionProduction.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction", + "target": "apps_electron_vite_project_electron_main_handshake_db_listhandshakerecords", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestionProduction.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestionProduction.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestionProduction.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestionProduction.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestionProduction.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_resolvesandboxtohosthttpdirectingest", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestionProduction.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction", + "target": "apps_electron_vite_project_electron_main_internalinference_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestionProduction.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestionProduction.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestionProduction.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_outboundp2pbearertocounterpartyingest", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestionProduction.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestionProduction.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L1157", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator_startautosync", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestionProduction.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction_resolvesandboxcustodypubkeyb64", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction_isvalidx25519pubb64", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestionProduction.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction_findactivesandboxtohosthandshakerecord", + "target": "apps_electron_vite_project_electron_main_handshake_db_listhandshakerecords" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestionProduction.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction_findactivesandboxtohosthandshakerecord", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestionProduction.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction_findactivesandboxtohosthandshakerecord", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestionProduction.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction_findactivesandboxtohosthandshakerecord", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestionProduction.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction_resolvesandboxcustodypubkeyb64", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction_findactivesandboxtohosthandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestionProduction.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction_resolvesandboxhostdeliverycontext", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction_findactivesandboxtohosthandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestionProduction.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction_buildproductionsandboxingestiondeps", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction_resolvesandboxcustodypubkeyb64", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestionProduction.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction_buildproductionsandboxingestiondeps", + "target": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction_resolvesandboxhostdeliverycontext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestionProduction.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction_resolvesandboxhostdeliverycontext", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_resolvesandboxtohosthttpdirectingest" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestionProduction.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction_resolvesandboxhostdeliverycontext", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_outboundp2pbearertocounterpartyingest" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/sandboxIngestionProduction.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxingestionproduction_buildproductionsandboxingestiondeps", + "target": "apps_electron_vite_project_electron_main_email_sandboxopaquefetchrouter_fetchopaqueforprovideraccount" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxOpaqueFetchRouter.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxopaquefetchrouter", + "target": "apps_electron_vite_project_electron_main_email_sandboxopaquefetchrouter_classifysandboxfetchfailure", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxOpaqueFetchRouter.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxopaquefetchrouter", + "target": "apps_electron_vite_project_electron_main_email_sandboxopaquefetchrouter_fetchopaqueforprovideraccount", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxOpaqueFetchRouter.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxopaquefetchrouter", + "target": "apps_electron_vite_project_electron_main_email_sandboxopaquefetchrouter_sandboxfetchfailurekind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxOpaqueFetchRouter.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxopaquefetchrouter", + "target": "apps_electron_vite_project_electron_main_email_sandboxopaquefetchrouter_sandboxfetchunsupportedprovidererror", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sandboxOpaqueFetchRouter.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sandboxopaquefetchrouter_sandboxfetchunsupportedprovidererror", + "target": "apps_electron_vite_project_electron_main_email_sandboxopaquefetchrouter_sandboxfetchunsupportedprovidererror_constructor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L285", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sanitizer", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_cleanwhitespace", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L252", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sanitizer", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_convertblockstobreaks", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L217", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sanitizer", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_convertlinkstotext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sanitizer", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_decodehtmlentities", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L427", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sanitizer", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_extractplaintext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L400", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sanitizer", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_generatesnippet", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sanitizer", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_html_entities", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sanitizer", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_istrackingpixel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sanitizer", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_remove_tags", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sanitizer", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_removedangerouscss", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sanitizer", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_removedangeroustags", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sanitizer", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_removeeventhandlers", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L161", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sanitizer", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_removetrackingpixels", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L383", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sanitizer", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_sanitizedisplayname", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L360", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sanitizer", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_sanitizeemailaddress", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L305", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sanitizer", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_sanitizehtmltotext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L346", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sanitizer", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_sanitizesubject", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L208", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sanitizer", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_shouldskiplink", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L179", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sanitizer", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_skip_link_patterns", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L278", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sanitizer", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_stripalltags", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sanitizer", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_tracking_patterns", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L334", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sanitizer_sanitizehtmltotext", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_decodehtmlentities", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sanitizer_removetrackingpixels", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_istrackingpixel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L313", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sanitizer_sanitizehtmltotext", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_removedangeroustags", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L316", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sanitizer_sanitizehtmltotext", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_removeeventhandlers", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L319", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sanitizer_sanitizehtmltotext", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_removedangerouscss", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L322", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sanitizer_sanitizehtmltotext", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_removetrackingpixels", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L229", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sanitizer_convertlinkstotext", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_shouldskiplink", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L325", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sanitizer_sanitizehtmltotext", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_convertlinkstotext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L328", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sanitizer_sanitizehtmltotext", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_convertblockstobreaks", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L388", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sanitizer_sanitizedisplayname", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_stripalltags", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L331", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sanitizer_sanitizehtmltotext", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_stripalltags", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L351", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sanitizer_sanitizesubject", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_stripalltags", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L431", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sanitizer_extractplaintext", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_cleanwhitespace", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L337", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sanitizer_sanitizehtmltotext", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_cleanwhitespace", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sanitizer.ts", + "source_location": "L437", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sanitizer_extractplaintext", + "target": "apps_electron_vite_project_electron_main_email_sanitizer_sanitizehtmltotext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/scamWatchdog.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_scamwatchdog", + "target": "apps_electron_vite_project_electron_main_email_scamwatchdog_appendscamwatchdogtosystemprompt", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/scamWatchdog.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_scamwatchdog", + "target": "apps_electron_vite_project_electron_main_email_scamwatchdog_buildscamwatchdogusercontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/scamWatchdog.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_scamwatchdog", + "target": "apps_electron_vite_project_electron_main_email_scamwatchdog_clamp", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/scamWatchdog.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_scamwatchdog", + "target": "apps_electron_vite_project_electron_main_email_scamwatchdog_extractscamwatchdoglinkstrings", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/scamWatchdog.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_scamwatchdog", + "target": "apps_electron_vite_project_electron_main_email_scamwatchdog_scam_watchdog_json_keys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/scamWatchdog.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_scamwatchdog", + "target": "apps_electron_vite_project_electron_main_email_scamwatchdog_scam_watchdog_prompt_section", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/scamWatchdog.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_scamwatchdog", + "target": "apps_electron_vite_project_electron_main_email_scamwatchdog_striphtmltags", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/scamWatchdog.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_scamwatchdog_extractscamwatchdoglinkstrings", + "target": "apps_electron_vite_project_electron_main_email_scamwatchdog_striphtmltags", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/scamWatchdog.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_scamwatchdog_extractscamwatchdoglinkstrings", + "target": "apps_electron_vite_project_electron_main_email_scamwatchdog_clamp", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/scamWatchdog.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_scamwatchdog_buildscamwatchdogusercontext", + "target": "apps_electron_vite_project_electron_main_email_scamwatchdog_extractscamwatchdoglinkstrings", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sealedContentUpdate.ts", + "source_location": "L214", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sealedcontentupdate", + "target": "apps_electron_vite_project_electron_main_email_sealedcontentupdate_buildprovenance", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sealedContentUpdate.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sealedcontentupdate", + "target": "apps_electron_vite_project_electron_main_email_sealedcontentupdate_decryptedqbeapresealparams", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sealedContentUpdate.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sealedcontentupdate", + "target": "apps_electron_vite_project_electron_main_email_sealedcontentupdate_inboxsealedrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sealedContentUpdate.ts", + "source_location": "L205", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sealedcontentupdate", + "target": "apps_electron_vite_project_electron_main_email_sealedcontentupdate_parsecanonical", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sealedContentUpdate.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sealedcontentupdate", + "target": "apps_electron_vite_project_electron_main_email_sealedcontentupdate_pdfextractiondata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sealedContentUpdate.ts", + "source_location": "L166", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sealedcontentupdate", + "target": "apps_electron_vite_project_electron_main_email_sealedcontentupdate_readcanonicalforreseal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sealedContentUpdate.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sealedcontentupdate", + "target": "apps_electron_vite_project_electron_main_email_sealedcontentupdate_resealresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sealedContentUpdate.ts", + "source_location": "L244", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sealedcontentupdate", + "target": "apps_electron_vite_project_electron_main_email_sealedcontentupdate_resealwithaianalysis", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sealedContentUpdate.ts", + "source_location": "L469", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sealedcontentupdate", + "target": "apps_electron_vite_project_electron_main_email_sealedcontentupdate_resealwithdecryptedcontent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sealedContentUpdate.ts", + "source_location": "L335", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sealedcontentupdate", + "target": "apps_electron_vite_project_electron_main_email_sealedcontentupdate_resealwithpdfextraction", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sealedContentUpdate.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sealedcontentupdate", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sealedContentUpdate.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sealedcontentupdate", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_preparesealedupdate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sealedContentUpdate.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sealedcontentupdate", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_runsealedtransaction", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sealedContentUpdate.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sealedcontentupdate", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedquery", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sealedContentUpdate.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sealedcontentupdate", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedrow", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sealedContentUpdate.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sealedcontentupdate", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sealedContentUpdate.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sealedcontentupdate", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_email_sealedcontentupdate", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sealedContentUpdate.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sealedcontentupdate_inboxsealedrow", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedrow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sealedContentUpdate.ts", + "source_location": "L180", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sealedcontentupdate_readcanonicalforreseal", + "target": "apps_electron_vite_project_electron_main_email_sealedcontentupdate_parsecanonical", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sealedContentUpdate.ts", + "source_location": "L170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sealedcontentupdate_readcanonicalforreseal", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedquery", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sealedContentUpdate.ts", + "source_location": "L250", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sealedcontentupdate_resealwithaianalysis", + "target": "apps_electron_vite_project_electron_main_email_sealedcontentupdate_readcanonicalforreseal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sealedContentUpdate.ts", + "source_location": "L350", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sealedcontentupdate_resealwithpdfextraction", + "target": "apps_electron_vite_project_electron_main_email_sealedcontentupdate_readcanonicalforreseal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sealedContentUpdate.ts", + "source_location": "L270", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sealedcontentupdate_resealwithaianalysis", + "target": "apps_electron_vite_project_electron_main_email_sealedcontentupdate_buildprovenance", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/sealedContentUpdate.ts", + "source_location": "L380", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sealedcontentupdate_resealwithpdfextraction", + "target": "apps_electron_vite_project_electron_main_email_sealedcontentupdate_buildprovenance", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/sealedContentUpdate.ts", + "source_location": "L283", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sealedcontentupdate_resealwithaianalysis", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_preparesealedupdate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/sealedContentUpdate.ts", + "source_location": "L285", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sealedcontentupdate_resealwithaianalysis", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_runsealedtransaction" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_email_sealedcontentupdate_resealwithaianalysis", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L3441", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_email_sealedcontentupdate_resealwithaianalysis" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/sealedContentUpdate.ts", + "source_location": "L393", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sealedcontentupdate_resealwithpdfextraction", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_preparesealedupdate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/sealedContentUpdate.ts", + "source_location": "L409", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sealedcontentupdate_resealwithpdfextraction", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_runsealedtransaction" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/sealedContentUpdate.ts", + "source_location": "L520", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sealedcontentupdate_resealwithdecryptedcontent", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_preparesealedupdate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/sealedContentUpdate.ts", + "source_location": "L522", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_sealedcontentupdate_resealwithdecryptedcontent", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_runsealedtransaction" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/secure-storage.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_secure_storage", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_debug_email_secure_storage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/secure-storage.ts", + "source_location": "L157", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_secure_storage", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_decryptoauthtokens", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/secure-storage.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_secure_storage", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_decryptvalue", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/secure-storage.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_secure_storage", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_encryptoauthtokens", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/secure-storage.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_secure_storage", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_encryptvalue", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/secure-storage.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_secure_storage", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_issecurestorageavailable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/secure-storage.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_secure_storage", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_isunencryptedtoken", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/secure-storage.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_secure_storage", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_logsecurestorageprobe", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/secure-storage.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_secure_storage", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_oauthtokens", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/secure-storage.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_secure_storage", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_securestoragedebug", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/secure-storage.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_secure_storage", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_securestorageunavailableerror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/secure-storage.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_secure_storage_decryptvalue", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_securestoragedebug", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/secure-storage.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_secure_storage_encryptvalue", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_securestoragedebug", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/secure-storage.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_secure_storage_issecurestorageavailable", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_securestoragedebug", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/secure-storage.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_secure_storage_logsecurestorageprobe", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_securestoragedebug", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/secure-storage.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_secure_storage_securestorageunavailableerror", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_securestorageunavailableerror_constructor", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/secure-storage.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_secure_storage_decryptvalue", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_issecurestorageavailable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/secure-storage.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_secure_storage_encryptvalue", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_issecurestorageavailable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/secure-storage.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_secure_storage_logsecurestorageprobe", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_issecurestorageavailable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/secure-storage.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_secure_storage_encryptoauthtokens", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_encryptvalue", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/secure-storage.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_secure_storage_decryptvalue", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_isunencryptedtoken", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/secure-storage.ts", + "source_location": "L169", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_secure_storage_decryptoauthtokens", + "target": "apps_electron_vite_project_electron_main_email_secure_storage_decryptvalue", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_syncorchestrator_broadcastimapcredentialerror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L355", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_syncorchestrator_clearconsecutivezerolistingpulls", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L343", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_syncorchestrator_consecutivezerolistingpulls", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_syncorchestrator_emailsyncstateupdates", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_syncorchestrator_getexistingemailmessageids", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L213", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_syncorchestrator_getoldestinboxreceivedatiso", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L277", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_syncorchestrator_maptorawemailmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L234", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_syncorchestrator_mayberunimaplegacyfolderconsolidation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L361", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_syncorchestrator_notepulloutcomeforstuckdetection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L1115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_syncorchestrator_startautosync", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L400", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_syncorchestrator_syncaccountemails", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L450", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_syncorchestrator_syncaccountemailsimpl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_syncorchestrator_syncaccountoptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L339", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_syncorchestrator_syncchains", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L340", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_syncorchestrator_syncchaintimestamps", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_syncorchestrator_syncresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L154", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_syncorchestrator_updatesyncstate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_syncpulllock", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_syncpulllock_clearallpullactivelocks", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_syncpulllock_ispullactive", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_syncpulllock_markpullactive", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_syncpulllock_markpullinactive", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_types_messagesearchoptions", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_types_sanitizedmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_email_types_sanitizedmessagedetail", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator", + "target": "apps_electron_vite_project_electron_main_handshake_types_ssosession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator_broadcastimapcredentialerror", + "target": "test_mocks_electron_browserwindow_getallwindows" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L1069", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator_syncaccountemailsimpl", + "target": "apps_electron_vite_project_electron_main_email_syncorchestrator_broadcastimapcredentialerror", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator_syncaccountoptions", + "target": "apps_electron_vite_project_electron_main_handshake_types_ssosession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L1028", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator_syncaccountemailsimpl", + "target": "apps_electron_vite_project_electron_main_email_syncorchestrator_updatesyncstate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L836", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator_syncaccountemailsimpl", + "target": "apps_electron_vite_project_electron_main_email_syncorchestrator_getexistingemailmessageids", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L586", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator_syncaccountemailsimpl", + "target": "apps_electron_vite_project_electron_main_email_syncorchestrator_getoldestinboxreceivedatiso", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L544", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator_syncaccountemailsimpl", + "target": "apps_electron_vite_project_electron_main_email_syncorchestrator_mayberunimaplegacyfolderconsolidation", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L936", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator_syncaccountemailsimpl", + "target": "apps_electron_vite_project_electron_main_email_syncorchestrator_maptorawemailmessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L1030", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator_syncaccountemailsimpl", + "target": "apps_electron_vite_project_electron_main_email_syncorchestrator_notepulloutcomeforstuckdetection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L1175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator_startautosync", + "target": "apps_electron_vite_project_electron_main_email_syncorchestrator_syncaccountemails", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L416", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator_syncaccountemails", + "target": "apps_electron_vite_project_electron_main_email_syncorchestrator_syncaccountemailsimpl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L663", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator_syncaccountemailsimpl", + "target": "apps_electron_vite_project_electron_main_email_syncpulllock_ispullactive", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L666", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator_syncaccountemailsimpl", + "target": "apps_electron_vite_project_electron_main_email_syncpulllock_markpullactive", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L957", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator_syncaccountemailsimpl", + "target": "apps_electron_vite_project_electron_main_email_syncpulllock_markpullinactive", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts", + "source_location": "L865", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncorchestrator_syncaccountemailsimpl", + "target": "apps_electron_vite_project_electron_main_handshake_ipc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncPullLock.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncpulllock", + "target": "apps_electron_vite_project_electron_main_email_syncpulllock_clearallpullactivelocks", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncPullLock.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncpulllock", + "target": "apps_electron_vite_project_electron_main_email_syncpulllock_ispullactive", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncPullLock.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncpulllock", + "target": "apps_electron_vite_project_electron_main_email_syncpulllock_markpullactive", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncPullLock.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncpulllock", + "target": "apps_electron_vite_project_electron_main_email_syncpulllock_markpullinactive", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/syncPullLock.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_syncpulllock", + "target": "apps_electron_vite_project_electron_main_email_syncpulllock_pullactivesince", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L604", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types", + "target": "apps_electron_vite_project_electron_main_email_types_attachmentmeta", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types", + "target": "apps_electron_vite_project_electron_main_email_types_authtype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types", + "target": "apps_electron_vite_project_electron_main_email_types_customimapsmtpconnectpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L274", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L424", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountinfo", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L413", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types", + "target": "apps_electron_vite_project_electron_main_email_types_emailaccountmailboxsummary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L704", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types", + "target": "apps_electron_vite_project_electron_main_email_types_emailattachment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L788", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types", + "target": "apps_electron_vite_project_electron_main_email_types_emailerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L493", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types", + "target": "apps_electron_vite_project_electron_main_email_types_emailflags", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L804", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types", + "target": "apps_electron_vite_project_electron_main_email_types_emailgatewayerror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types", + "target": "apps_electron_vite_project_electron_main_email_types_emailprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L630", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types", + "target": "apps_electron_vite_project_electron_main_email_types_extractedattachmenttext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L819", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types", + "target": "apps_electron_vite_project_electron_main_email_types_iemailgateway", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types", + "target": "apps_electron_vite_project_electron_main_email_types_imap_presets", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types", + "target": "apps_electron_vite_project_electron_main_email_types_imaplifecyclevalidationentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types", + "target": "apps_electron_vite_project_electron_main_email_types_imaplifecyclevalidationresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types", + "target": "apps_electron_vite_project_electron_main_email_types_imappreset", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L466", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types", + "target": "apps_electron_vite_project_electron_main_email_types_imapreconnecthints", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L651", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types", + "target": "apps_electron_vite_project_electron_main_email_types_messagesearchoptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L774", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types", + "target": "apps_electron_vite_project_electron_main_email_types_newemailevent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types", + "target": "apps_electron_vite_project_electron_main_email_types_orchestratorremotenamesinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L220", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types", + "target": "apps_electron_vite_project_electron_main_email_types_provideraccountcapabilities", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L254", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types", + "target": "apps_electron_vite_project_electron_main_email_types_providermailboxslice", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L507", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types", + "target": "apps_electron_vite_project_electron_main_email_types_sanitizedmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L564", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types", + "target": "apps_electron_vite_project_electron_main_email_types_sanitizedmessagedetail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types", + "target": "apps_electron_vite_project_electron_main_email_types_securitymode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L716", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types", + "target": "apps_electron_vite_project_electron_main_email_types_sendemailpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L745", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types", + "target": "apps_electron_vite_project_electron_main_email_types_sendresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L758", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types", + "target": "apps_electron_vite_project_electron_main_email_types_syncstatus", + "confidence_score": 1.0 + }, + { + "relation": "cites", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L585", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types", + "target": "apps_electron_vite_project_electron_main_email_types_ts_docref_rfc_822", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/emailTransport.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_emailtransport", + "target": "apps_electron_vite_project_electron_main_email_types", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L564", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types_sanitizedmessagedetail", + "target": "apps_electron_vite_project_electron_main_email_types_sanitizedmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/emailTransport.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_emailtransport", + "target": "apps_electron_vite_project_electron_main_email_types_sendemailpayload", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L823", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types_iemailgateway", + "target": "apps_electron_vite_project_electron_main_email_types_iemailgateway_addaccount", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L832", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types_iemailgateway", + "target": "apps_electron_vite_project_electron_main_email_types_iemailgateway_deleteaccount", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L849", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types_iemailgateway", + "target": "apps_electron_vite_project_electron_main_email_types_iemailgateway_extractattachmenttext", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L845", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types_iemailgateway", + "target": "apps_electron_vite_project_electron_main_email_types_iemailgateway_flagmessage", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L822", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types_iemailgateway", + "target": "apps_electron_vite_project_electron_main_email_types_iemailgateway_getaccount", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L834", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types_iemailgateway", + "target": "apps_electron_vite_project_electron_main_email_types_iemailgateway_getimapreconnecthints", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L842", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types_iemailgateway", + "target": "apps_electron_vite_project_electron_main_email_types_iemailgateway_getmessage", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L860", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types_iemailgateway", + "target": "apps_electron_vite_project_electron_main_email_types_iemailgateway_getoauthurl", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L857", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types_iemailgateway", + "target": "apps_electron_vite_project_electron_main_email_types_iemailgateway_getsyncstatus", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L861", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types_iemailgateway", + "target": "apps_electron_vite_project_electron_main_email_types_iemailgateway_handleoauthcallback", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L821", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types_iemailgateway", + "target": "apps_electron_vite_project_electron_main_email_types_iemailgateway_listaccounts", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L848", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types_iemailgateway", + "target": "apps_electron_vite_project_electron_main_email_types_iemailgateway_listattachments", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L841", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types_iemailgateway", + "target": "apps_electron_vite_project_electron_main_email_types_iemailgateway_listmessages", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L843", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types_iemailgateway", + "target": "apps_electron_vite_project_electron_main_email_types_iemailgateway_markasread", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L844", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types_iemailgateway", + "target": "apps_electron_vite_project_electron_main_email_types_iemailgateway_markasunread", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L825", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types_iemailgateway", + "target": "apps_electron_vite_project_electron_main_email_types_iemailgateway_patchaccountsyncpreferences", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L853", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types_iemailgateway", + "target": "apps_electron_vite_project_electron_main_email_types_iemailgateway_sendemail", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L852", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types_iemailgateway", + "target": "apps_electron_vite_project_electron_main_email_types_iemailgateway_sendreply", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L831", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types_iemailgateway", + "target": "apps_electron_vite_project_electron_main_email_types_iemailgateway_setdeletefromprovideronlocaldelete", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L830", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types_iemailgateway", + "target": "apps_electron_vite_project_electron_main_email_types_iemailgateway_setprocessingpaused", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L856", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types_iemailgateway", + "target": "apps_electron_vite_project_electron_main_email_types_iemailgateway_syncaccount", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L833", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types_iemailgateway", + "target": "apps_electron_vite_project_electron_main_email_types_iemailgateway_testconnection", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L824", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types_iemailgateway", + "target": "apps_electron_vite_project_electron_main_email_types_iemailgateway_updateaccount", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L835", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types_iemailgateway", + "target": "apps_electron_vite_project_electron_main_email_types_iemailgateway_updateimapcredentials", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/email/types.ts", + "source_location": "L864", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_email_types_iemailgateway", + "target": "apps_electron_vite_project_electron_main_email_types_iemailgateway_validateimaplifecycleremote", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/enforcement/authorizeToolInvocation.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_enforcement_authorizetoolinvocation", + "target": "apps_electron_vite_project_electron_main_enforcement_authorizetoolinvocation_authorizationdenialreason", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/enforcement/authorizeToolInvocation.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_enforcement_authorizetoolinvocation", + "target": "apps_electron_vite_project_electron_main_enforcement_authorizetoolinvocation_authorizetoolinvocation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/enforcement/authorizeToolInvocation.ts", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_enforcement_authorizetoolinvocation", + "target": "apps_electron_vite_project_electron_main_enforcement_authorizetoolinvocation_deny", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/enforcement/authorizeToolInvocation.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_enforcement_authorizetoolinvocation", + "target": "apps_electron_vite_project_electron_main_enforcement_authorizetoolinvocation_granted_tools", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/enforcement/authorizeToolInvocation.ts", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_enforcement_authorizetoolinvocation", + "target": "apps_electron_vite_project_electron_main_enforcement_authorizetoolinvocation_runauthorization", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/enforcement/authorizeToolInvocation.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_enforcement_authorizetoolinvocation", + "target": "apps_electron_vite_project_electron_main_enforcement_authorizetoolinvocation_toolauthorizationresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/enforcement/authorizeToolInvocation.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_enforcement_authorizetoolinvocation", + "target": "apps_electron_vite_project_electron_main_enforcement_authorizetoolinvocation_toolinvocationrequest", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/enforcement/authorizeToolInvocation.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_enforcement_authorizetoolinvocation", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/enforcement/authorizeToolInvocation.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_enforcement_authorizetoolinvocation", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/enforcement/authorizeToolInvocation.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_enforcement_authorizetoolinvocation", + "target": "apps_electron_vite_project_electron_main_handshake_db_insertauditlogentry", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/enforcement/authorizeToolInvocation.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_enforcement_authorizetoolinvocation", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/enforcement/authorizeToolInvocation.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_enforcement_authorizetoolinvocation", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement_diagnosehandshakeinactive", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/enforcement/authorizeToolInvocation.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_enforcement_authorizetoolinvocation", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/enforcement/authorizeToolInvocation.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_enforcement_authorizetoolinvocation", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/executeToolRequest.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_executetoolrequest", + "target": "apps_electron_vite_project_electron_main_enforcement_authorizetoolinvocation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/authorization.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_authorization_test", + "target": "apps_electron_vite_project_electron_main_enforcement_authorizetoolinvocation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/authorization.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_authorization_test", + "target": "apps_electron_vite_project_electron_main_enforcement_authorizetoolinvocation_toolinvocationrequest", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/enforcement/authorizeToolInvocation.ts", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_enforcement_authorizetoolinvocation_runauthorization", + "target": "apps_electron_vite_project_electron_main_enforcement_authorizetoolinvocation_granted_tools" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/enforcement/authorizeToolInvocation.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_enforcement_authorizetoolinvocation_authorizetoolinvocation", + "target": "apps_electron_vite_project_electron_main_enforcement_authorizetoolinvocation_runauthorization", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/enforcement/authorizeToolInvocation.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_enforcement_authorizetoolinvocation_authorizetoolinvocation", + "target": "apps_electron_vite_project_electron_main_handshake_db_insertauditlogentry" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/executeToolRequest.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_executetoolrequest", + "target": "apps_electron_vite_project_electron_main_enforcement_authorizetoolinvocation_authorizetoolinvocation", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/execution/executeToolRequest.ts", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_executetoolrequest_executetoolrequest", + "target": "apps_electron_vite_project_electron_main_enforcement_authorizetoolinvocation_authorizetoolinvocation" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/authorization.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_authorization_test", + "target": "apps_electron_vite_project_electron_main_enforcement_authorizetoolinvocation_authorizetoolinvocation", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/enforcement/authorizeToolInvocation.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_enforcement_authorizetoolinvocation_runauthorization", + "target": "apps_electron_vite_project_electron_main_enforcement_authorizetoolinvocation_deny", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/enforcement/authorizeToolInvocation.ts", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_enforcement_authorizetoolinvocation_runauthorization", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/enforcement/authorizeToolInvocation.ts", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_enforcement_authorizetoolinvocation_runauthorization", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement_diagnosehandshakeinactive", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/__tests__/executeToolRequest.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_tests_executetoolrequest_test", + "target": "apps_electron_vite_project_electron_main_execution_executetoolrequest", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/__tests__/executeToolRequest.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_tests_executetoolrequest_test", + "target": "apps_electron_vite_project_electron_main_execution_executetoolrequest_executetoolrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/__tests__/executeToolRequest.test.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_tests_executetoolrequest_test", + "target": "apps_electron_vite_project_electron_main_execution_tests_executetoolrequest_test_makehandshakerow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/__tests__/executeToolRequest.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_tests_executetoolrequest_test", + "target": "apps_electron_vite_project_electron_main_execution_tests_executetoolrequest_test_makemockdb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/__tests__/executeToolRequest.test.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_tests_executetoolrequest_test", + "target": "apps_electron_vite_project_electron_main_execution_tests_executetoolrequest_test_maketoolrequest", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/__tests__/executeToolRequest.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_tests_executetoolrequest_test", + "target": "apps_electron_vite_project_electron_main_execution_toolregistry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/__tests__/executeToolRequest.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_tests_executetoolrequest_test", + "target": "apps_electron_vite_project_electron_main_execution_toolregistry_registertool", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/__tests__/executeToolRequest.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_tests_executetoolrequest_test", + "target": "apps_electron_vite_project_electron_main_execution_toolregistry_resetregistryfortesting", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/__tests__/noBypass.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_tests_nobypass_test", + "target": "apps_electron_vite_project_electron_main_execution_tests_nobypass_test_collectproductionfiles", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/__tests__/noBypass.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_tests_nobypass_test", + "target": "apps_electron_vite_project_electron_main_execution_tests_nobypass_test_electron_main_dir", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/executeToolRequest.ts", + "source_location": "L176", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_executetoolrequest", + "target": "apps_electron_vite_project_electron_main_execution_executetoolrequest_auditexecution", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/executeToolRequest.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_executetoolrequest", + "target": "apps_electron_vite_project_electron_main_execution_executetoolrequest_checkparametersize", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/executeToolRequest.ts", + "source_location": "L155", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_executetoolrequest", + "target": "apps_electron_vite_project_electron_main_execution_executetoolrequest_containspoisonedkeys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/executeToolRequest.ts", + "source_location": "L151", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_executetoolrequest", + "target": "apps_electron_vite_project_electron_main_execution_executetoolrequest_elapsed", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/executeToolRequest.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_executetoolrequest", + "target": "apps_electron_vite_project_electron_main_execution_executetoolrequest_executetoolrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/executeToolRequest.ts", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_executetoolrequest", + "target": "apps_electron_vite_project_electron_main_execution_executetoolrequest_fail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/executeToolRequest.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_executetoolrequest", + "target": "apps_electron_vite_project_electron_main_execution_executetoolrequest_poisoned_keys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/executeToolRequest.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_executetoolrequest", + "target": "apps_electron_vite_project_electron_main_execution_executetoolrequest_sanitizeparameters", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/executeToolRequest.ts", + "source_location": "L166", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_executetoolrequest", + "target": "apps_electron_vite_project_electron_main_execution_executetoolrequest_serializeresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/executeToolRequest.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_executetoolrequest", + "target": "apps_electron_vite_project_electron_main_execution_executetoolrequest_validaterequestshape", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/executeToolRequest.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_executetoolrequest", + "target": "apps_electron_vite_project_electron_main_execution_executetoolrequest_withtimeout", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/executeToolRequest.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_executetoolrequest", + "target": "apps_electron_vite_project_electron_main_execution_toolregistry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/executeToolRequest.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_executetoolrequest", + "target": "apps_electron_vite_project_electron_main_execution_toolregistry_gettoolhandler", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/executeToolRequest.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_executetoolrequest", + "target": "apps_electron_vite_project_electron_main_execution_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/executeToolRequest.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_executetoolrequest", + "target": "apps_electron_vite_project_electron_main_execution_types_execution_constants", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/executeToolRequest.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_executetoolrequest", + "target": "apps_electron_vite_project_electron_main_execution_types_toolexecutionresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/executeToolRequest.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_executetoolrequest", + "target": "apps_electron_vite_project_electron_main_execution_types_toolrequest", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/executeToolRequest.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_executetoolrequest", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/executeToolRequest.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_executetoolrequest", + "target": "apps_electron_vite_project_electron_main_handshake_db_insertauditlogentry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/executeToolRequest.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_executetoolrequest_executetoolrequest", + "target": "apps_electron_vite_project_electron_main_execution_executetoolrequest_validaterequestshape", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/executeToolRequest.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_executetoolrequest_executetoolrequest", + "target": "apps_electron_vite_project_electron_main_execution_executetoolrequest_checkparametersize", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/executeToolRequest.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_executetoolrequest_executetoolrequest", + "target": "apps_electron_vite_project_electron_main_execution_executetoolrequest_sanitizeparameters", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/executeToolRequest.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_executetoolrequest_executetoolrequest", + "target": "apps_electron_vite_project_electron_main_execution_executetoolrequest_withtimeout", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/executeToolRequest.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_executetoolrequest_executetoolrequest", + "target": "apps_electron_vite_project_electron_main_execution_executetoolrequest_auditexecution", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/executeToolRequest.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_executetoolrequest_executetoolrequest", + "target": "apps_electron_vite_project_electron_main_execution_executetoolrequest_containspoisonedkeys", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/executeToolRequest.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_executetoolrequest_executetoolrequest", + "target": "apps_electron_vite_project_electron_main_execution_executetoolrequest_elapsed", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/executeToolRequest.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_executetoolrequest_executetoolrequest", + "target": "apps_electron_vite_project_electron_main_execution_executetoolrequest_fail", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/executeToolRequest.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_executetoolrequest_executetoolrequest", + "target": "apps_electron_vite_project_electron_main_execution_executetoolrequest_serializeresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/execution/executeToolRequest.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_executetoolrequest_executetoolrequest", + "target": "apps_electron_vite_project_electron_main_execution_toolregistry_gettoolhandler" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/executeToolRequest.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_executetoolrequest_fail", + "target": "apps_electron_vite_project_electron_main_execution_executetoolrequest_elapsed", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/executeToolRequest.ts", + "source_location": "L193", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_executetoolrequest_auditexecution", + "target": "apps_electron_vite_project_electron_main_execution_executetoolrequest_elapsed", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/executeToolRequest.ts", + "source_location": "L184", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_executetoolrequest_auditexecution", + "target": "apps_electron_vite_project_electron_main_handshake_db_insertauditlogentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/toolRegistry.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_toolregistry", + "target": "apps_electron_vite_project_electron_main_execution_toolregistry_gettoolhandler", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/toolRegistry.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_toolregistry", + "target": "apps_electron_vite_project_electron_main_execution_toolregistry_hastoolhandler", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/toolRegistry.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_toolregistry", + "target": "apps_electron_vite_project_electron_main_execution_toolregistry_listregisteredtools", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/toolRegistry.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_toolregistry", + "target": "apps_electron_vite_project_electron_main_execution_toolregistry_registertool", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/toolRegistry.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_toolregistry", + "target": "apps_electron_vite_project_electron_main_execution_toolregistry_registry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/toolRegistry.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_toolregistry", + "target": "apps_electron_vite_project_electron_main_execution_toolregistry_resetregistryfortesting", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/toolRegistry.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_toolregistry", + "target": "apps_electron_vite_project_electron_main_execution_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/toolRegistry.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_toolregistry", + "target": "apps_electron_vite_project_electron_main_execution_types_toolhandler", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/types.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_types", + "target": "apps_electron_vite_project_electron_main_execution_types_execution_constants", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/types.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_types", + "target": "apps_electron_vite_project_electron_main_execution_types_toolexecutionresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/types.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_types", + "target": "apps_electron_vite_project_electron_main_execution_types_toolhandler", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/types.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_types", + "target": "apps_electron_vite_project_electron_main_execution_types_toolrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/execution/types.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_execution_types", + "target": "apps_electron_vite_project_electron_main_execution_types_toolrequestorigin", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.internal.regression.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_internal_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.internal.regression.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_internal_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_db_inserthandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.internal.regression.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_internal_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_ipc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.internal.regression.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_internal_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.internal.regression.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_internal_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_resetssosessionprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.internal.regression.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_internal_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_setssosessionprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.internal.regression.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_internal_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.internal.regression.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_internal_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.internal.regression.test.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_internal_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_internal_regression_test_internalpendingrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.internal.regression.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_internal_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_internal_regression_test_minimaltier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.internal.regression.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_internal_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_internal_regression_test_mockgetinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.internal.regression.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_internal_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_handshaketestdb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.internal.regression.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_internal_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_handshaketestdb_createhandshaketestdb", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.internal.regression.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_internal_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.internal.regression.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_internal_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.internal.regression.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_internal_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.internal.regression.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_internal_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_tierdecision", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.internal.regression.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_internal_regression_test", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.internal.regression.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_internal_regression_test", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_migrateingestiontables", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.internal.regression.test.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_internal_regression_test_internalpendingrecord", + "target": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_internal_regression_test_minimaltier", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.regression.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.regression.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildinitiatecapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.regression.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.regression.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.regression.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_emailtransport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.regression.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_emailtransport_resetemailsendfn", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.regression.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_emailtransport_setemailsendfn", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.regression.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_ipc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.regression.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.regression.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_resetssosessionprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.regression.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_setssosessionprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.regression.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.regression.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.regression.test.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_regression_test_creatependinghandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.regression.test.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_regression_test_receiversession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.regression.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_regression_test_sendersession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.regression.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_handshaketestdb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.regression.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_handshaketestdb_createhandshaketestdb", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.regression.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_mockkeypair", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.regression.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_mockkeypair_mock_extension_x25519_public_b64", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.regression.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.regression.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_ssosession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.regression.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_regression_test", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.regression.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_regression_test", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc_handleingestionrpc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.regression.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_regression_test", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.regression.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_regression_test", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_migrateingestiontables", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.regression.test.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_regression_test_creatependinghandshake", + "target": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_regression_test_sendersession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.regression.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_regression_test_sendersession", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.regression.test.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_regression_test_creatependinghandshake", + "target": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_regression_test_receiversession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.regression.test.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_regression_test_receiversession", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.regression.test.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_regression_test_creatependinghandshake", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildinitiatecapsule" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.regression.test.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_acceptx25519binding_regression_test_creatependinghandshake", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc_handleingestionrpc" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/b81BeapInboxPagination.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_b81beapinboxpagination_test", + "target": "apps_electron_vite_project_electron_main_handshake_ipc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/b81BeapInboxPagination.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_b81beapinboxpagination_test", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/b81BeapInboxPagination.test.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_b81beapinboxpagination_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_b81beapinboxpagination_test_decodecursor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/b81BeapInboxPagination.test.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_b81beapinboxpagination_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_b81beapinboxpagination_test_makedb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/b81BeapInboxPagination.test.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_b81beapinboxpagination_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_b81beapinboxpagination_test_makeinboxrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/b81BeapInboxPagination.test.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_b81beapinboxpagination_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_b81beapinboxpagination_test_sealedquerymock", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/b81BeapInboxPagination.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_b81beapinboxpagination_test", + "target": "test_harness_sealed_storage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/b81BeapInboxPagination.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_b81beapinboxpagination_test", + "target": "test_harness_sealed_storage_createsealedstoragetestcontext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/b81BeapInboxPagination.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_b81beapinboxpagination_test", + "target": "test_harness_sealed_storage_sealedstoragetestcontext", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/b8BeapInboxIpc.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_b8beapinboxipc_test", + "target": "apps_electron_vite_project_electron_main_handshake_ipc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/b8BeapInboxIpc.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_b8beapinboxipc_test", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/b8BeapInboxIpc.test.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_b8beapinboxipc_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_b8beapinboxipc_test_makedb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/b8BeapInboxIpc.test.ts", + "source_location": "L372", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_b8beapinboxipc_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_b8beapinboxipc_test_pushrow", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/b8BeapInboxIpc.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_b8beapinboxipc_test", + "target": "test_harness_sealed_storage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/b8BeapInboxIpc.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_b8beapinboxipc_test", + "target": "test_harness_sealed_storage_createsealedstoragetestcontext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/b8BeapInboxIpc.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_b8beapinboxipc_test", + "target": "test_harness_sealed_storage_sealedstoragetestcontext", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/blockExtraction.customFields.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_blockextraction_customfields_test", + "target": "apps_electron_vite_project_electron_main_handshake_blockextraction", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/blockExtraction.customFields.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_blockextraction_customfields_test", + "target": "apps_electron_vite_project_electron_main_handshake_blockextraction_extractblocks", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/canonicalRebuild.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_canonicalrebuild_test", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/canonicalRebuild.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_canonicalrebuild_test", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_canonicalrebuild", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/canonicalRebuild.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_canonicalrebuild_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_canonicalrebuild_test_buildvalidcapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/capsuleBuilder.internalRelay.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_capsulebuilder_internalrelay_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/capsuleBuilder.internalRelay.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_capsulebuilder_internalrelay_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildacceptcapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/capsuleBuilder.internalRelay.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_capsulebuilder_internalrelay_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildcontextsynccapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/capsuleBuilder.internalRelay.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_capsulebuilder_internalrelay_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_internalcapsulerelayidentityerror", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/capsuleBuilder.internalRelay.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_capsulebuilder_internalrelay_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/capsuleBuilder.internalRelay.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_capsulebuilder_internalrelay_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/capsuleBuilder.internalRelay.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_capsulebuilder_internalrelay_test", + "target": "apps_electron_vite_project_electron_main_handshake_signaturekeys", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/capsuleBuilder.internalRelay.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_capsulebuilder_internalrelay_test", + "target": "apps_electron_vite_project_electron_main_handshake_signaturekeys_generatesigningkeypair", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/capsuleBuilder.internalRelay.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_capsulebuilder_internalrelay_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_capsulebuilder_internalrelay_test_prevhash", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/capsuleBuilder.internalRelay.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_capsulebuilder_internalrelay_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_capsulebuilder_internalrelay_test_session", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/capsuleBuilder.internalRelay.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_capsulebuilder_internalrelay_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_capsulebuilder_internalrelay_test_signing", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/chainIntegrity.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_chainintegrity_test", + "target": "apps_electron_vite_project_electron_main_handshake_steps_chainintegrity", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/chainIntegrity.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_chainintegrity_test", + "target": "apps_electron_vite_project_electron_main_handshake_steps_chainintegrity_verifychainintegrity", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/chainIntegrity.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_chainintegrity_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/chainIntegrity.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_chainintegrity_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildactivehandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/chainIntegrity.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_chainintegrity_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildctx", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/chainIntegrity.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_chainintegrity_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildverifiedcapsuleinput", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/chainIntegrity.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_chainintegrity_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/chainIntegrity.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_chainintegrity_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_reasoncode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/cloudSnippet.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_cloudsnippet_test", + "target": "apps_electron_vite_project_electron_main_handshake_cloudsnippet", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/cloudSnippet.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_cloudsnippet_test", + "target": "apps_electron_vite_project_electron_main_handshake_cloudsnippet_buildcloudsnippet", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextBlocks.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_contextblocks_test", + "target": "apps_electron_vite_project_electron_main_handshake_steps_contextbinding", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextBlocks.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_contextblocks_test", + "target": "apps_electron_vite_project_electron_main_handshake_steps_contextbinding_verifycontextbinding", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextBlocks.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_contextblocks_test", + "target": "apps_electron_vite_project_electron_main_handshake_steps_contextversions", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextBlocks.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_contextblocks_test", + "target": "apps_electron_vite_project_electron_main_handshake_steps_contextversions_verifycontextversions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextBlocks.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_contextblocks_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextBlocks.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_contextblocks_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildcontextblock", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextBlocks.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_contextblocks_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildctx", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextBlocks.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_contextblocks_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildreceiverpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextBlocks.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_contextblocks_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildverifiedcapsuleinput", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextBlocks.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_contextblocks_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextBlocks.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_contextblocks_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_reasoncode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextGovernance.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_contextgovernance_test", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextGovernance.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_contextgovernance_test", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_baselinefromhandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextGovernance.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_contextgovernance_test", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_baselinefrompolicyselections", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextGovernance.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_contextgovernance_test", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_filterblocksforcloudai", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextGovernance.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_contextgovernance_test", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_filterblocksforsearch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextGovernance.test.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_contextgovernance_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_contextgovernance_test_mockrecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextGovernance.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_contextgovernance_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextGovernance.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_contextgovernance_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextHash.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_contexthash_test", + "target": "apps_electron_vite_project_electron_main_handshake_contexthash", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextHash.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_contexthash_test", + "target": "apps_electron_vite_project_electron_main_handshake_contexthash_buildcanonicalcontextpayload", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextHash.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_contexthash_test", + "target": "apps_electron_vite_project_electron_main_handshake_contexthash_computecontexthash", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextHash.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_contexthash_test", + "target": "apps_electron_vite_project_electron_main_handshake_contexthash_contexthashinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextHash.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_contexthash_test", + "target": "apps_electron_vite_project_electron_main_handshake_contexthash_generatenonce", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextHash.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_contexthash_test", + "target": "apps_electron_vite_project_electron_main_handshake_contexthash_validatenonce", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextHash.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_contexthash_test", + "target": "apps_electron_vite_project_electron_main_handshake_contexthash_validatetimestamp", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextHash.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_contexthash_test", + "target": "apps_electron_vite_project_electron_main_handshake_contexthash_verifycontexthash", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextHash.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_contexthash_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_contexthash_test_buildtestinput", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextIngestion.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_contextingestion_test", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextIngestion.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_contextingestion_test", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment_computeblockhash", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextIngestion.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_contextingestion_test", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment_computecontextcommitment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextIngestion.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_contextingestion_test", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextIngestion.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_contextingestion_test", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_filterblocksforcloudai", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextIngestion.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_contextingestion_test", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_filterblocksforsearch", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextIngestion.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_contextingestion_test", + "target": "apps_electron_vite_project_electron_main_handshake_contextingestion", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextIngestion.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_contextingestion_test", + "target": "apps_electron_vite_project_electron_main_handshake_contextingestion_ingestcontextblocks", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextIngestion.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_contextingestion_test", + "target": "apps_electron_vite_project_electron_main_handshake_contextingestion_parsevaultprofilesensitive", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextIngestion.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_contextingestion_test", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextIngestion.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_contextingestion_test", + "target": "apps_electron_vite_project_electron_main_handshake_db_inserthandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextIngestion.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_contextingestion_test", + "target": "apps_electron_vite_project_electron_main_handshake_db_migratehandshaketables", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextIngestion.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_contextingestion_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_contextingestion_test_db_available", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextIngestion.test.ts", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_contextingestion_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_contextingestion_test_makevaultprofileblock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextIngestion.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_contextingestion_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_contextingestion_test_require", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextIngestion.test.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_contextingestion_test_makevaultprofileblock", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment_computeblockhash", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextSyncEnqueue.uxShape.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_contextsyncenqueue_uxshape_test", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextSyncEnqueue.uxShape.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_contextsyncenqueue_uxshape_test", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_tryenqueuecontextsync", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextSyncEnqueue.uxShape.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_contextsyncenqueue_uxshape_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextSyncEnqueue.uxShape.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_contextsyncenqueue_uxshape_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextSyncEnqueue.uxShape.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_contextsyncenqueue_uxshape_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_contextsyncenqueue_uxshape_test_getallwindows", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextSyncEnqueue.uxShape.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_contextsyncenqueue_uxshape_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_handshaketestdb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/contextSyncEnqueue.uxShape.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_contextsyncenqueue_uxshape_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_handshaketestdb_createhandshaketestdb", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyKeyBinding.regression.test.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_counterpartykeybinding_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyKeyBinding.regression.test.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_counterpartykeybinding_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildacceptcapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyKeyBinding.regression.test.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_counterpartykeybinding_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildcontextsynccapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyKeyBinding.regression.test.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_counterpartykeybinding_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildinitiatecapsulewithkeypair", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyKeyBinding.regression.test.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_counterpartykeybinding_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyKeyBinding.regression.test.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_counterpartykeybinding_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakecounterpartykey", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyKeyBinding.regression.test.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_counterpartykeybinding_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakesigningkeys", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyKeyBinding.regression.test.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_counterpartykeybinding_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_emailtransport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyKeyBinding.regression.test.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_counterpartykeybinding_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_emailtransport_resetemailsendfn", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyKeyBinding.regression.test.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_counterpartykeybinding_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_emailtransport_setemailsendfn", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyKeyBinding.regression.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_counterpartykeybinding_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_ipc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyKeyBinding.regression.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_counterpartykeybinding_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_resetssosessionprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyKeyBinding.regression.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_counterpartykeybinding_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyKeyBinding.regression.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_counterpartykeybinding_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyKeyBinding.regression.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_counterpartykeybinding_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_signaturekeys", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyKeyBinding.regression.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_counterpartykeybinding_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_signaturekeys_generatesigningkeypair", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyKeyBinding.regression.test.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_counterpartykeybinding_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_counterpartykeybinding_regression_test_alicesession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyKeyBinding.regression.test.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_counterpartykeybinding_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_counterpartykeybinding_regression_test_bobsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyKeyBinding.regression.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_counterpartykeybinding_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_counterpartykeybinding_regression_test_getallwindows", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyKeyBinding.regression.test.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_counterpartykeybinding_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_counterpartykeybinding_regression_test_submitcapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyKeyBinding.regression.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_counterpartykeybinding_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_handshaketestdb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyKeyBinding.regression.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_counterpartykeybinding_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_handshaketestdb_createhandshaketestdb", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyKeyBinding.regression.test.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_counterpartykeybinding_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyKeyBinding.regression.test.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_counterpartykeybinding_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyKeyBinding.regression.test.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_counterpartykeybinding_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_reasoncode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyKeyBinding.regression.test.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_counterpartykeybinding_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_ssosession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyKeyBinding.regression.test.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_counterpartykeybinding_regression_test", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyKeyBinding.regression.test.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_counterpartykeybinding_regression_test", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc_handleingestionrpc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyKeyBinding.regression.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_counterpartykeybinding_regression_test", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyKeyBinding.regression.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_counterpartykeybinding_regression_test", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_migrateingestiontables", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyKeyBinding.regression.test.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_counterpartykeybinding_regression_test_alicesession", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyKeyBinding.regression.test.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_counterpartykeybinding_regression_test_bobsession", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyKeyBinding.regression.test.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_counterpartykeybinding_regression_test_submitcapsule", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc_handleingestionrpc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyRepair.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_counterpartyrepair_test", + "target": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyRepair.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_counterpartyrepair_test", + "target": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair_collectsenderkeysforcapsuletype", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyRepair.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_counterpartyrepair_test", + "target": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair_isvalided25519hex64", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyRepair.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_counterpartyrepair_test", + "target": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair_plancounterpartyrepair", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyRepair.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_counterpartyrepair_test", + "target": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair_tryresolveremotefromp2ppackages", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyRepair.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_counterpartyrepair_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_counterpartyrepair_test_a", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyRepair.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_counterpartyrepair_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_counterpartyrepair_test_b", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyRepair.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_counterpartyrepair_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_counterpartyrepair_test_base", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyRepair.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_counterpartyrepair_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_counterpartyrepair_test_i", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyRepair.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_counterpartyrepair_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyRepair.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_counterpartyrepair_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyRepair.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_counterpartyrepair_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.pipeline.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_pipeline_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.pipeline.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_pipeline_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildacceptcapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.pipeline.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_pipeline_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildinitiatecapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.pipeline.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_pipeline_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildrefreshcapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.pipeline.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_pipeline_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildrevokecapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.pipeline.test.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_pipeline_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulehash", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.pipeline.test.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_pipeline_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulehash_computecapsulehash", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.pipeline.test.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_pipeline_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsuletransport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.pipeline.test.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_pipeline_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsuletransport_submitcapsuleviarpc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.pipeline.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_pipeline_test", + "target": "apps_electron_vite_project_electron_main_handshake_policyhash", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.pipeline.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_pipeline_test", + "target": "apps_electron_vite_project_electron_main_handshake_policyhash_computepolicyhash", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.pipeline.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_pipeline_test", + "target": "apps_electron_vite_project_electron_main_handshake_policyhash_default_policy_descriptor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.pipeline.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_pipeline_test", + "target": "apps_electron_vite_project_electron_main_handshake_policyhash_default_policy_hash", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.pipeline.test.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_pipeline_test", + "target": "apps_electron_vite_project_electron_main_handshake_relationshipid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.pipeline.test.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_pipeline_test", + "target": "apps_electron_vite_project_electron_main_handshake_relationshipid_deriverelationshipid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.pipeline.test.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_pipeline_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.pipeline.test.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_pipeline_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.pipeline.test.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_pipeline_test", + "target": "apps_electron_vite_project_electron_main_handshake_signaturekeys", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.pipeline.test.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_pipeline_test", + "target": "apps_electron_vite_project_electron_main_handshake_signaturekeys_generatesigningkeypair", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.pipeline.test.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_pipeline_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_e2e_pipeline_test_receiversession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.pipeline.test.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_pipeline_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_e2e_pipeline_test_sendersession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.pipeline.test.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_pipeline_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_e2e_pipeline_test_submitcapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.pipeline.test.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_pipeline_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_handshaketestdb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.pipeline.test.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_pipeline_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_handshaketestdb_createhandshaketestdb", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.pipeline.test.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_pipeline_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.pipeline.test.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_pipeline_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_builddefaultreceiverpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.pipeline.test.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_pipeline_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.pipeline.test.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_pipeline_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_ssosession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.pipeline.test.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_pipeline_test", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.pipeline.test.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_pipeline_test", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc_handleingestionrpc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.pipeline.test.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_pipeline_test", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.pipeline.test.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_pipeline_test", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_migrateingestiontables", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.pipeline.test.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_pipeline_test_sendersession", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.pipeline.test.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_pipeline_test_receiversession", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.pipeline.test.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_pipeline_test_submitcapsule", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc_handleingestionrpc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.roundtrip.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.roundtrip.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildacceptcapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.roundtrip.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildcontextsynccapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.roundtrip.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildinitiatecapsulewithkeypair", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.roundtrip.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildrefreshcapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.roundtrip.test.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.roundtrip.test.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakecontextsyncenqueued", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.roundtrip.test.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakecounterpartykey", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.roundtrip.test.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakesigningkeys", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.roundtrip.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_handshake_emailtransport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.roundtrip.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_handshake_emailtransport_resetemailsendfn", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.roundtrip.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_handshake_emailtransport_setemailsendfn", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.roundtrip.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_handshake_ipc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.roundtrip.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.roundtrip.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_resetssosessionprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.roundtrip.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_setssosessionprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.roundtrip.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.roundtrip.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.roundtrip.test.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_e2e_roundtrip_test_alicesession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.roundtrip.test.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_e2e_roundtrip_test_bobsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.roundtrip.test.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_e2e_roundtrip_test_submitcapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.roundtrip.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_handshaketestdb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.roundtrip.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_handshaketestdb_createhandshaketestdb", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.roundtrip.test.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_mockkeypair", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.roundtrip.test.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_mockkeypair_mockkeypairfields", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.roundtrip.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.roundtrip.test.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.roundtrip.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_ssosession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.roundtrip.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.roundtrip.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc_handleingestionrpc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.roundtrip.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.roundtrip.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_roundtrip_test", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_migrateingestiontables", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.roundtrip.test.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_roundtrip_test_alicesession", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.roundtrip.test.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_roundtrip_test_bobsession", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.roundtrip.test.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_e2e_roundtrip_test_submitcapsule", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc_handleingestionrpc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/emailTransport.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_emailtransport_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/emailTransport.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_emailtransport_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildacceptcapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/emailTransport.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_emailtransport_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildinitiatecapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/emailTransport.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_emailtransport_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildrefreshcapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/emailTransport.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_emailtransport_test", + "target": "apps_electron_vite_project_electron_main_handshake_emailtransport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/emailTransport.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_emailtransport_test", + "target": "apps_electron_vite_project_electron_main_handshake_emailtransport_emailsendfn", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/emailTransport.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_emailtransport_test", + "target": "apps_electron_vite_project_electron_main_handshake_emailtransport_resetemailsendfn", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/emailTransport.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_emailtransport_test", + "target": "apps_electron_vite_project_electron_main_handshake_emailtransport_sendcapsuleviaemail", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/emailTransport.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_emailtransport_test", + "target": "apps_electron_vite_project_electron_main_handshake_emailtransport_setemailsendfn", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/emailTransport.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_emailtransport_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/emailTransport.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_emailtransport_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/emailTransport.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_emailtransport_test", + "target": "apps_electron_vite_project_electron_main_handshake_signaturekeys", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/emailTransport.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_emailtransport_test", + "target": "apps_electron_vite_project_electron_main_handshake_signaturekeys_generatesigningkeypair", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/emailTransport.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_emailtransport_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_emailtransport_test_sender", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/emailTransport.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_emailtransport_test_sender", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L229", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_validatecondition", + "target": "apps_electron_vite_project_electron_main_handshake_tests_emailtransport_test_sender" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.remoteRevoke.test.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_remoterevoke_test", + "target": "apps_electron_vite_project_electron_main_handshake_remoterevokecallbackregistry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.remoteRevoke.test.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_remoterevoke_test", + "target": "apps_electron_vite_project_electron_main_handshake_remoterevokecallbackregistry_getremoterevokecallback", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.remoteRevoke.test.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_remoterevoke_test", + "target": "apps_electron_vite_project_electron_main_handshake_remoterevokecallbackregistry_setremoterevokecallback", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.remoteRevoke.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_remoterevoke_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_remoterevoke_test_linked", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.remoteRevoke.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_remoterevoke_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_remoterevoke_test_removelinkedtopologyentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.remoteRevoke.test.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_remoterevoke_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_remoterevoke_test_seedlinked", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.remoteRevoke.test.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_remoterevoke_test", + "target": "apps_electron_vite_project_electron_main_handshake_topologyautowire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.remoteRevoke.test.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_remoterevoke_test", + "target": "apps_electron_vite_project_electron_main_handshake_topologyautowire_removetopologyforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulehash", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulehash_computecapsulehash", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_test", + "target": "apps_electron_vite_project_electron_main_handshake_steps_dedup", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_test", + "target": "apps_electron_vite_project_electron_main_handshake_steps_dedup_checkduplicatecapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_test", + "target": "apps_electron_vite_project_electron_main_handshake_steps_domain", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_test", + "target": "apps_electron_vite_project_electron_main_handshake_steps_domain_verifysenderdomain", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_test", + "target": "apps_electron_vite_project_electron_main_handshake_steps_expiry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_test", + "target": "apps_electron_vite_project_electron_main_handshake_steps_expiry_checkexpiry", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_test", + "target": "apps_electron_vite_project_electron_main_handshake_steps_inputlimits", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_test", + "target": "apps_electron_vite_project_electron_main_handshake_steps_inputlimits_verifyinputlimits", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_test", + "target": "apps_electron_vite_project_electron_main_handshake_steps_ownership", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_test", + "target": "apps_electron_vite_project_electron_main_handshake_steps_ownership_verifyhandshakeownership", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_test", + "target": "apps_electron_vite_project_electron_main_handshake_steps_policyanchor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_test", + "target": "apps_electron_vite_project_electron_main_handshake_steps_policyanchor_verifywrdeskpolicyanchor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_test", + "target": "apps_electron_vite_project_electron_main_handshake_steps_receiverbinding", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_test", + "target": "apps_electron_vite_project_electron_main_handshake_steps_receiverbinding_verifyreceiverbinding", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_test", + "target": "apps_electron_vite_project_electron_main_handshake_steps_schemacheck", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_test", + "target": "apps_electron_vite_project_electron_main_handshake_steps_schemacheck_checkschemaversion", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_test", + "target": "apps_electron_vite_project_electron_main_handshake_steps_statetransition", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_test", + "target": "apps_electron_vite_project_electron_main_handshake_steps_statetransition_checkstatetransition", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_test", + "target": "apps_electron_vite_project_electron_main_handshake_steps_tiersteps", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_test", + "target": "apps_electron_vite_project_electron_main_handshake_steps_tiersteps_enforceminimumtier", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_test", + "target": "apps_electron_vite_project_electron_main_handshake_steps_tiersteps_runtierspecificchecks", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_test", + "target": "apps_electron_vite_project_electron_main_handshake_steps_timestamp", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_test", + "target": "apps_electron_vite_project_electron_main_handshake_steps_timestamp_verifytimestamp", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_test", + "target": "apps_electron_vite_project_electron_main_handshake_steps_verifycapsulehash", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_test", + "target": "apps_electron_vite_project_electron_main_handshake_steps_verifycapsulehash_verifycapsulehashintegrity", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildactivehandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildcontextblock", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildctx", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildhandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildreceiverpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildtierdecision", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildtiersignals", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildverifiedcapsuleinput", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_input_limits", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_enforcement_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_reasoncode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/externalProcessing.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_externalprocessing_test", + "target": "apps_electron_vite_project_electron_main_handshake_steps_externalprocessing", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/externalProcessing.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_externalprocessing_test", + "target": "apps_electron_vite_project_electron_main_handshake_steps_externalprocessing_verifyexternalprocessing", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/externalProcessing.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_externalprocessing_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/externalProcessing.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_externalprocessing_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildctx", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/externalProcessing.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_externalprocessing_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildreceiverpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/externalProcessing.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_externalprocessing_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildverifiedcapsuleinput", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/externalProcessing.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_externalprocessing_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/externalProcessing.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_externalprocessing_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_reasoncode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshake-e2e-hardened.test.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshake_e2e_hardened_test", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshake-e2e-hardened.test.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshake_e2e_hardened_test", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_canonicalrebuild", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshake-e2e-hardened.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshake_e2e_hardened_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshake-e2e-hardened.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshake_e2e_hardened_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildacceptcapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshake-e2e-hardened.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshake_e2e_hardened_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildinitiatecapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshake-e2e-hardened.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshake_e2e_hardened_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildinitiatecapsulewithkeypair", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshake-e2e-hardened.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshake_e2e_hardened_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildrefreshcapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshake-e2e-hardened.test.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshake_e2e_hardened_test", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshake-e2e-hardened.test.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshake_e2e_hardened_test", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakesigningkeys", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshake-e2e-hardened.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshake_e2e_hardened_test", + "target": "apps_electron_vite_project_electron_main_handshake_emailtransport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshake-e2e-hardened.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshake_e2e_hardened_test", + "target": "apps_electron_vite_project_electron_main_handshake_emailtransport_resetemailsendfn", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshake-e2e-hardened.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshake_e2e_hardened_test", + "target": "apps_electron_vite_project_electron_main_handshake_emailtransport_setemailsendfn", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshake-e2e-hardened.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshake_e2e_hardened_test", + "target": "apps_electron_vite_project_electron_main_handshake_ipc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshake-e2e-hardened.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshake_e2e_hardened_test", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshake-e2e-hardened.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshake_e2e_hardened_test", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_resetssosessionprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshake-e2e-hardened.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshake_e2e_hardened_test", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_setssosessionprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshake-e2e-hardened.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshake_e2e_hardened_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshake-e2e-hardened.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshake_e2e_hardened_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshake-e2e-hardened.test.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshake_e2e_hardened_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_handshake_e2e_hardened_test_alicesession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshake-e2e-hardened.test.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshake_e2e_hardened_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_handshake_e2e_hardened_test_bobsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshake-e2e-hardened.test.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshake_e2e_hardened_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_handshake_e2e_hardened_test_submitcapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshake-e2e-hardened.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshake_e2e_hardened_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_handshaketestdb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshake-e2e-hardened.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshake_e2e_hardened_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_handshaketestdb_createhandshaketestdb", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshake-e2e-hardened.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshake_e2e_hardened_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_mockkeypair", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshake-e2e-hardened.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshake_e2e_hardened_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_mockkeypair_mock_extension_x25519_public_b64", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshake-e2e-hardened.test.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshake_e2e_hardened_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshake-e2e-hardened.test.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshake_e2e_hardened_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshake-e2e-hardened.test.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshake_e2e_hardened_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_ssosession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshake-e2e-hardened.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshake_e2e_hardened_test", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshake-e2e-hardened.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshake_e2e_hardened_test", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc_handleingestionrpc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshake-e2e-hardened.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshake_e2e_hardened_test", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshake-e2e-hardened.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshake_e2e_hardened_test", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_migrateingestiontables", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshake-e2e-hardened.test.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshake_e2e_hardened_test_alicesession", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshake-e2e-hardened.test.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshake_e2e_hardened_test_bobsession", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshake-e2e-hardened.test.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshake_e2e_hardened_test_submitcapsule", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc_handleingestionrpc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshakeAccountIsolation.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshakeaccountisolation_test", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshakeAccountIsolation.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshakeaccountisolation_test", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation_filterhandshakerecordsforcurrentsession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshakeAccountIsolation.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshakeaccountisolation_test", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation_handshakerowvisibilityforsession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshakeAccountIsolation.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshakeaccountisolation_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshakeAccountIsolation.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshakeaccountisolation_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshakeAccountIsolation.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshakeaccountisolation_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_handshakeaccountisolation_test_minimalrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshakeAccountIsolation.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshakeaccountisolation_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_handshakeaccountisolation_test_party", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshakeAccountIsolation.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshakeaccountisolation_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshakeAccountIsolation.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshakeaccountisolation_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshakeAccountIsolation.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshakeaccountisolation_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshakeAccountIsolation.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshakeaccountisolation_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_partyidentity", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshakeRefactorRegression.matrix.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshakerefactorregression_matrix_test", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncactivegate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshakeRefactorRegression.matrix.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshakerefactorregression_matrix_test", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncactivegate_getnextstateafterinboundcontextsync", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshakeRefactorRegression.matrix.test.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshakerefactorregression_matrix_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_handshakerefactorregression_matrix_test_preflightlikehandlehandshakeaccept", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshakeRefactorRegression.matrix.test.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshakerefactorregression_matrix_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_handshakerefactorregression_matrix_test_wirex25519fromacceptparams", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshakeRefactorRegression.matrix.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshakerefactorregression_matrix_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshakeRefactorRegression.matrix.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshakerefactorregression_matrix_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshakeRefactorRegression.matrix.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshakerefactorregression_matrix_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshakeRefactorRegression.matrix.test.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshakerefactorregression_matrix_test_preflightlikehandlehandshakeaccept", + "target": "apps_electron_vite_project_electron_main_handshake_tests_handshakerefactorregression_matrix_test_wirex25519fromacceptparams", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshakeTestDb.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshaketestdb", + "target": "apps_electron_vite_project_electron_main_handshake_tests_handshaketestdb_createhandshaketestdb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshakeTestDb.ts", + "source_location": "L346", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshaketestdb", + "target": "apps_electron_vite_project_electron_main_handshake_tests_handshaketestdb_handshaketestdb", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_handshaketestdb", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.handshake.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_handshaketestdb", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.accept.validation.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_accept_validation_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_handshaketestdb", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.deviceId.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_deviceid_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_handshaketestdb", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.sandboxBeapSend.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_sandboxbeapsend_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_handshaketestdb", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.sandboxEgress.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_sandboxegress_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_handshaketestdb", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/postAcceptContextSync.ingestPaths.regression.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_postacceptcontextsync_ingestpaths_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_handshaketestdb", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "collection", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshakeTestDb.ts", + "source_location": "L330", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshaketestdb_createhandshaketestdb", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testdb_testdb_prepare" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_handshaketestdb_createhandshaketestdb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.handshake.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_handshaketestdb_createhandshaketestdb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.accept.validation.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_accept_validation_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_handshaketestdb_createhandshaketestdb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.deviceId.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_deviceid_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_handshaketestdb_createhandshaketestdb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.sandboxBeapSend.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_sandboxbeapsend_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_handshaketestdb_createhandshaketestdb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.sandboxEgress.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_sandboxegress_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_handshaketestdb_createhandshaketestdb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/postAcceptContextSync.ingestPaths.regression.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_postacceptcontextsync_ingestpaths_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_handshaketestdb_createhandshaketestdb", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshakeVerification.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshakeverification_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulehash", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshakeVerification.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshakeverification_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulehash_capsulehashinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshakeVerification.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshakeverification_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulehash_computecapsulehash", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshakeVerification.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshakeverification_test", + "target": "apps_electron_vite_project_electron_main_handshake_contexthash", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshakeVerification.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshakeverification_test", + "target": "apps_electron_vite_project_electron_main_handshake_contexthash_computecontexthash", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshakeVerification.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshakeverification_test", + "target": "apps_electron_vite_project_electron_main_handshake_contexthash_contexthashinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshakeVerification.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshakeverification_test", + "target": "apps_electron_vite_project_electron_main_handshake_contexthash_generatenonce", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshakeVerification.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshakeverification_test", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeverification", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshakeVerification.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshakeverification_test", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeverification_handshakecapsulefields", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshakeVerification.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshakeverification_test", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeverification_verifyhandshakecapsule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshakeVerification.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshakeverification_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_handshakeverification_test_buildvalidcapsule", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshakeVerification.test.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshakeverification_test_buildvalidcapsule", + "target": "apps_electron_vite_project_electron_main_handshake_capsulehash_computecapsulehash", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/handshakeVerification.test.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_handshakeverification_test_buildvalidcapsule", + "target": "apps_electron_vite_project_electron_main_handshake_contexthash_computecontexthash", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_canonicalrebuild", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildacceptcapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildcontextsynccapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildinitiatecapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildinitiatecapsulewithkeypair", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildrefreshcapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulehash", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulehash_computecapsulehash", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment_computeblockhash", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment_computecontextcommitment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test", + "target": "apps_electron_vite_project_electron_main_handshake_contexthash", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test", + "target": "apps_electron_vite_project_electron_main_handshake_contexthash_computecontexthash", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakecontextsyncenqueued", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakecounterpartykey", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakesigningkeys", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test", + "target": "apps_electron_vite_project_electron_main_handshake_emailtransport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test", + "target": "apps_electron_vite_project_electron_main_handshake_emailtransport_resetemailsendfn", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test", + "target": "apps_electron_vite_project_electron_main_handshake_emailtransport_setemailsendfn", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test", + "target": "apps_electron_vite_project_electron_main_handshake_ipc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_resetssosessionprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_setssosessionprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test_alicesession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test_bobsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test_getallwindows", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test_setuphandshakewithkeypairs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test_submitcapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_mockkeypair", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_mockkeypair_mock_extension_x25519_public_b64", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_ssosession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc_handleingestionrpc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_migrateingestiontables", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test_alicesession", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test_bobsession", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test_setuphandshakewithkeypairs", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildacceptcapsule", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test_setuphandshakewithkeypairs", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildinitiatecapsulewithkeypair", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test_setuphandshakewithkeypairs", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakecounterpartykey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test_setuphandshakewithkeypairs", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakesigningkeys", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test_setuphandshakewithkeypairs", + "target": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test_submitcapsule", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_hardening_verification_test_submitcapsule", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc_handleingestionrpc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/helpers.ts", + "source_location": "L178", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_helpers", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildactivehandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/helpers.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_helpers", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildcontextblock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/helpers.ts", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_helpers", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildctx", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/helpers.ts", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_helpers", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildeffectivepolicy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/helpers.ts", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_helpers", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildhandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/helpers.ts", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_helpers", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildreceiverpolicy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/helpers.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_helpers", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildssosession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/helpers.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_helpers", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildtierdecision", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/helpers.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_helpers", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildtiersignals", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/helpers.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_helpers", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildverifiedcapsuleinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/helpers.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_helpers", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_nextid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/helpers.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_helpers", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/helpers.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_helpers", + "target": "apps_electron_vite_project_electron_main_handshake_types_builddefaultreceiverpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/helpers.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_helpers", + "target": "apps_electron_vite_project_electron_main_handshake_types_capsulepolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/helpers.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_helpers", + "target": "apps_electron_vite_project_electron_main_handshake_types_capsuletype", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/helpers.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_helpers", + "target": "apps_electron_vite_project_electron_main_handshake_types_cloudpayloadmode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/helpers.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_helpers", + "target": "apps_electron_vite_project_electron_main_handshake_types_contextblockinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/helpers.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_helpers", + "target": "apps_electron_vite_project_electron_main_handshake_types_effectivepolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/helpers.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_helpers", + "target": "apps_electron_vite_project_electron_main_handshake_types_externalprocessing", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/helpers.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_helpers", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/helpers.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_helpers", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/helpers.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_helpers", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshaketier", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/helpers.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_helpers", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakeverificationcontext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/helpers.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_helpers", + "target": "apps_electron_vite_project_electron_main_handshake_types_receiverpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/helpers.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_helpers", + "target": "apps_electron_vite_project_electron_main_handshake_types_sharingmode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/helpers.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_helpers", + "target": "apps_electron_vite_project_electron_main_handshake_types_ssosession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/helpers.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_helpers", + "target": "apps_electron_vite_project_electron_main_handshake_types_tierdecision", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/helpers.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_helpers", + "target": "apps_electron_vite_project_electron_main_handshake_types_tiersignals", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/helpers.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_helpers", + "target": "apps_electron_vite_project_electron_main_handshake_types_verifiedcapsuleinput", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/internalDeviceIdentity.flow.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_internaldeviceidentity_flow_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pipeline.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pipeline_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/policyResolution.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_policyresolution_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revoke.outboundSeq.regression.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_revoke_outboundseq_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/sharingMode.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_sharingmode_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/stateMachine.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_statemachine_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/tierClassification.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_tierclassification_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/helpers.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildcontextblock", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_nextid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/helpers.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildverifiedcapsuleinput", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_nextid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/helpers.ts", + "source_location": "L205", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildctx", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildssosession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pipeline.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pipeline_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildssosession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/helpers.ts", + "source_location": "L158", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildhandshakerecord", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildtiersignals", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/helpers.ts", + "source_location": "L134", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildtierdecision", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildtiersignals", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/helpers.ts", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildverifiedcapsuleinput", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildtiersignals", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/tierClassification.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_tierclassification_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildtiersignals", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/helpers.ts", + "source_location": "L203", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildctx", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildverifiedcapsuleinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/internalDeviceIdentity.flow.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_internaldeviceidentity_flow_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildverifiedcapsuleinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pipeline.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pipeline_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildverifiedcapsuleinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revoke.outboundSeq.regression.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_revoke_outboundseq_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildverifiedcapsuleinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/sharingMode.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_sharingmode_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildverifiedcapsuleinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/stateMachine.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_statemachine_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildverifiedcapsuleinput", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/helpers.ts", + "source_location": "L204", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildctx", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildreceiverpolicy", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/helpers.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildreceiverpolicy", + "target": "apps_electron_vite_project_electron_main_handshake_types_builddefaultreceiverpolicy" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pipeline.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pipeline_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildreceiverpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/policyResolution.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_policyresolution_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildreceiverpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/sharingMode.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_sharingmode_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildreceiverpolicy", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/helpers.ts", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildhandshakerecord", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildeffectivepolicy", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/helpers.ts", + "source_location": "L157", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildhandshakerecord", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildtierdecision", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/helpers.ts", + "source_location": "L181", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildactivehandshakerecord", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildhandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/internalDeviceIdentity.flow.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_internaldeviceidentity_flow_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildhandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/sharingMode.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_sharingmode_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildhandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/stateMachine.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_statemachine_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildhandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revoke.outboundSeq.regression.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_revoke_outboundseq_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildactivehandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/sharingMode.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_sharingmode_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildactivehandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/internalDeviceIdentity.flow.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_internaldeviceidentity_flow_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildctx", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revoke.outboundSeq.regression.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_revoke_outboundseq_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildctx", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/sharingMode.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_sharingmode_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildctx", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/stateMachine.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_statemachine_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_helpers_buildctx", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/intentClassifier.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_intentclassifier_test", + "target": "apps_electron_vite_project_electron_main_handshake_intentclassifier", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/intentClassifier.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_intentclassifier_test", + "target": "apps_electron_vite_project_electron_main_handshake_intentclassifier_classifyintent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/intentClassifier.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_intentclassifier_test", + "target": "apps_electron_vite_project_electron_main_handshake_intentclassifier_queryrequiresattachmentselection", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/internalCoordinationWire.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_internalcoordinationwire_test", + "target": "apps_electron_vite_project_electron_main_handshake_internalcoordinationwire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/internalCoordinationWire.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_internalcoordinationwire_test", + "target": "apps_electron_vite_project_electron_main_handshake_internalcoordinationwire_coordinationdevicepairforinternalrecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/internalCoordinationWire.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_internalcoordinationwire_test", + "target": "apps_electron_vite_project_electron_main_handshake_internalcoordinationwire_internalrelaycapsulewireoptsfromrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/internalCoordinationWire.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_internalcoordinationwire_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_internalcoordinationwire_test_completeinternal", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/internalDeviceIdentity.flow.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_internaldeviceidentity_flow_test", + "target": "apps_electron_vite_project_electron_main_handshake_internalcoordinationwire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/internalDeviceIdentity.flow.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_internaldeviceidentity_flow_test", + "target": "apps_electron_vite_project_electron_main_handshake_internalcoordinationwire_internalrelaycapsulewireoptsfromrecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/internalDeviceIdentity.flow.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_internaldeviceidentity_flow_test", + "target": "apps_electron_vite_project_electron_main_handshake_steps_internalroutingcapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/internalDeviceIdentity.flow.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_internaldeviceidentity_flow_test", + "target": "apps_electron_vite_project_electron_main_handshake_steps_internalroutingcapsule_verifyinternalcapsulerouting", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/internalDeviceIdentity.flow.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_internaldeviceidentity_flow_test", + "target": "apps_electron_vite_project_electron_main_handshake_steps_ownership", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/internalDeviceIdentity.flow.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_internaldeviceidentity_flow_test", + "target": "apps_electron_vite_project_electron_main_handshake_steps_ownership_verifyhandshakeownership", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/internalDeviceIdentity.flow.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_internaldeviceidentity_flow_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/internalDeviceIdentity.flow.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_internaldeviceidentity_flow_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/internalDeviceIdentity.flow.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_internaldeviceidentity_flow_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_reasoncode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/internalPersistence.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_internalpersistence_test", + "target": "apps_electron_vite_project_electron_main_handshake_internalpersistence", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/internalPersistence.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_internalpersistence_test", + "target": "apps_electron_vite_project_electron_main_handshake_internalpersistence_computeinternalroutingkey", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/internalPersistence.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_internalpersistence_test", + "target": "apps_electron_vite_project_electron_main_handshake_internalpersistence_finalizeinternalhandshakepersistence", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/internalPersistence.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_internalpersistence_test", + "target": "apps_electron_vite_project_electron_main_handshake_internalpersistence_isinternalcoordinationidentitycomplete", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/internalPersistence.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_internalpersistence_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_internalpersistence_test_baserecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/internalPersistence.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_internalpersistence_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/internalPersistence.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_internalpersistence_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/internalRelayOutboundGuards.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_internalrelayoutboundguards_test", + "target": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/internalRelayOutboundGuards.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_internalrelayoutboundguards_test", + "target": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_collectinternalrelaywiregaps", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/internalRelayOutboundGuards.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_internalrelayoutboundguards_test", + "target": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_formatlocalinternalrelayvalidationjson", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/internalRelayOutboundGuards.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_internalrelayoutboundguards_test", + "target": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_isinternalrelaycapsuleenvelope", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/internalRelayOutboundGuards.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_internalrelayoutboundguards_test", + "target": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_local_internal_relay_validation_failed", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/internalRelayOutboundGuards.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_internalrelayoutboundguards_test", + "target": "packages_shared_src_handshake_internalendpointvalidation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/internalRelayOutboundGuards.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_internalrelayoutboundguards_test", + "target": "packages_shared_src_handshake_internalendpointvalidation_internal_endpoint_error_codes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/internalSamePrincipal.contextSync.regression.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_internalsameprincipal_contextsync_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncactivegate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/internalSamePrincipal.contextSync.regression.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_internalsameprincipal_contextsync_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncactivegate_getnextstateafterinboundcontextsync", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/internalSamePrincipal.contextSync.regression.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_internalsameprincipal_contextsync_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_internalcoordinationwire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/internalSamePrincipal.contextSync.regression.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_internalsameprincipal_contextsync_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_internalcoordinationwire_internalrelaycapsulewireoptsfromrecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/internalSamePrincipal.contextSync.regression.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_internalsameprincipal_contextsync_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_internalpersistence", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/internalSamePrincipal.contextSync.regression.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_internalsameprincipal_contextsync_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_internalpersistence_isinternalcoordinationidentitycomplete", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/internalSamePrincipal.contextSync.regression.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_internalsameprincipal_contextsync_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_internalsameprincipal_contextsync_regression_test_internalinitiatorrow", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/internalSamePrincipal.contextSync.regression.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_internalsameprincipal_contextsync_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/internalSamePrincipal.contextSync.regression.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_internalsameprincipal_contextsync_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/internalSamePrincipal.contextSync.regression.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_internalsameprincipal_contextsync_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.handshake.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.handshake.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildacceptcapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.handshake.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildinitiatecapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.handshake.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.handshake.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.handshake.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.handshake.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakesigningkeys", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.handshake.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test", + "target": "apps_electron_vite_project_electron_main_handshake_emailtransport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.handshake.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test", + "target": "apps_electron_vite_project_electron_main_handshake_emailtransport_resetemailsendfn", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.handshake.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test", + "target": "apps_electron_vite_project_electron_main_handshake_emailtransport_setemailsendfn", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.handshake.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test", + "target": "apps_electron_vite_project_electron_main_handshake_ipc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.handshake.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.handshake.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_resetssosessionprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.handshake.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_setssosessionprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.handshake.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.handshake.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.handshake.test.ts", + "source_location": "L388", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test_createactivehandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.handshake.test.ts", + "source_location": "L207", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test_creatependinghandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.handshake.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test_receiversession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.handshake.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test_sendersession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.handshake.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_mockkeypair", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.handshake.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_mockkeypair_mock_extension_x25519_public_b64", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.handshake.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_mockkeypair_mockkeypairfields", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.handshake.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.handshake.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.handshake.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_ssosession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.handshake.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.handshake.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc_handleingestionrpc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.handshake.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.handshake.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_migrateingestiontables", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.handshake.test.ts", + "source_location": "L389", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test_createactivehandshake", + "target": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test_sendersession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.handshake.test.ts", + "source_location": "L208", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test_creatependinghandshake", + "target": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test_sendersession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.handshake.test.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test_sendersession", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.handshake.test.ts", + "source_location": "L390", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test_createactivehandshake", + "target": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test_receiversession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.handshake.test.ts", + "source_location": "L209", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test_creatependinghandshake", + "target": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test_receiversession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.handshake.test.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test_receiversession", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.handshake.test.ts", + "source_location": "L210", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test_creatependinghandshake", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildinitiatecapsule" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.handshake.test.ts", + "source_location": "L211", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test_creatependinghandshake", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc_handleingestionrpc" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.handshake.test.ts", + "source_location": "L408", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test_createactivehandshake", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildacceptcapsule" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.handshake.test.ts", + "source_location": "L392", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test_createactivehandshake", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildinitiatecapsule" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.handshake.test.ts", + "source_location": "L428", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test_createactivehandshake", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.handshake.test.ts", + "source_location": "L430", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test_createactivehandshake", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakerecord" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.handshake.test.ts", + "source_location": "L397", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_handshake_test_createactivehandshake", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc_handleingestionrpc" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.accept.validation.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_accept_validation_test", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.accept.validation.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_accept_validation_test", + "target": "apps_electron_vite_project_electron_main_handshake_db_inserthandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.accept.validation.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_accept_validation_test", + "target": "apps_electron_vite_project_electron_main_handshake_ipc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.accept.validation.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_accept_validation_test", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.accept.validation.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_accept_validation_test", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_resetssosessionprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.accept.validation.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_accept_validation_test", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_setssosessionprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.accept.validation.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_accept_validation_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.accept.validation.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_accept_validation_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.accept.validation.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_accept_validation_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_accept_validation_test_internalpendingrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.accept.validation.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_accept_validation_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_accept_validation_test_minimaltier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.accept.validation.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_accept_validation_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_accept_validation_test_mockgetinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.accept.validation.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_accept_validation_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.accept.validation.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_accept_validation_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.accept.validation.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_accept_validation_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.accept.validation.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_accept_validation_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_tierdecision", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.accept.validation.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_accept_validation_test", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.accept.validation.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_accept_validation_test", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_migrateingestiontables", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.accept.validation.test.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_accept_validation_test_internalpendingrecord", + "target": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_accept_validation_test_minimaltier", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.deviceId.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_deviceid_test", + "target": "apps_electron_vite_project_electron_main_handshake_ipc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.deviceId.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_deviceid_test", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.deviceId.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_deviceid_test", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_resetssosessionprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.deviceId.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_deviceid_test", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_setssosessionprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.deviceId.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_deviceid_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.deviceId.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_deviceid_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.deviceId.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_deviceid_test", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.deviceId.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_deviceid_test", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_migrateingestiontables", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.relayPush.test.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_relaypush_test", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.relayPush.test.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_relaypush_test", + "target": "apps_electron_vite_project_electron_main_handshake_db_migratehandshaketables", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.relayPush.test.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_relaypush_test", + "target": "apps_electron_vite_project_electron_main_handshake_ipc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.relayPush.test.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_relaypush_test", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.relayPush.test.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_relaypush_test", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_resetssosessionprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.relayPush.test.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_relaypush_test", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_setoidctokenprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.relayPush.test.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_relaypush_test", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_setssosessionprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.relayPush.test.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_relaypush_test", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.relayPush.test.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_relaypush_test", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_clearoutboundautodraintimer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.relayPush.test.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_relaypush_test", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_setoutboundqueueauthrefresh", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.relayPush.test.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_relaypush_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.relayPush.test.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_relaypush_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.relayPush.test.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_relaypush_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_relaypush_test_createrealtestdb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.relayPush.test.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_relaypush_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_relaypush_test_getallwindows", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.relayPush.test.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_relaypush_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_relaypush_test_registerhandshakemock", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.relayPush.test.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_relaypush_test", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.relayPush.test.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_relaypush_test", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_migrateingestiontables", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.relayPush.test.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_relaypush_test", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.relayPush.test.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_relaypush_test", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_upsertp2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.relayPush.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_relaypush_test", + "target": "ref_better_sqlite3", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.relayPush.test.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_relaypush_test_createrealtestdb", + "target": "apps_electron_vite_project_electron_main_handshake_db_migratehandshaketables", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.relayPush.test.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_internal_relaypush_test_createrealtestdb", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_migrateingestiontables", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.sandboxBeapSend.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_sandboxbeapsend_test", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.sandboxBeapSend.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_sandboxbeapsend_test", + "target": "apps_electron_vite_project_electron_main_handshake_db_inserthandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.sandboxBeapSend.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_sandboxbeapsend_test", + "target": "apps_electron_vite_project_electron_main_handshake_ipc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.sandboxBeapSend.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_sandboxbeapsend_test", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.sandboxBeapSend.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_sandboxbeapsend_test", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_resetssosessionprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.sandboxBeapSend.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_sandboxbeapsend_test", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_setssosessionprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.sandboxBeapSend.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_sandboxbeapsend_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.sandboxBeapSend.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_sandboxbeapsend_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.sandboxBeapSend.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_sandboxbeapsend_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_ipc_sandboxbeapsend_test_activehandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.sandboxBeapSend.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_sandboxbeapsend_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_ipc_sandboxbeapsend_test_iseffectivesandbox", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.sandboxBeapSend.test.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_sandboxbeapsend_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_ipc_sandboxbeapsend_test_packagejson", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.sandboxBeapSend.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_sandboxbeapsend_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_mockkeypair", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.sandboxBeapSend.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_sandboxbeapsend_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_mockkeypair_mockkeypairfields", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.sandboxBeapSend.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_sandboxbeapsend_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.sandboxBeapSend.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_sandboxbeapsend_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.sandboxBeapSend.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_sandboxbeapsend_test", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.sandboxBeapSend.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_sandboxbeapsend_test", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_migrateingestiontables", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.sandboxBeapSend.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_sandboxbeapsend_test", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.sandboxBeapSend.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_sandboxbeapsend_test", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_sandbox_data_egress_forbidden", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.sandboxBeapSend.test.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_ipc_sandboxbeapsend_test_activehandshake", + "target": "apps_electron_vite_project_electron_main_handshake_tests_mockkeypair_mockkeypairfields", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/mockKeypair.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_mockkeypair", + "target": "apps_electron_vite_project_electron_main_handshake_signaturekeys", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/mockKeypair.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_mockkeypair", + "target": "apps_electron_vite_project_electron_main_handshake_signaturekeys_generatesigningkeypair", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/mockKeypair.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_mockkeypair", + "target": "apps_electron_vite_project_electron_main_handshake_tests_mockkeypair_mock_extension_x25519_public_b64", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/mockKeypair.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_mockkeypair", + "target": "apps_electron_vite_project_electron_main_handshake_tests_mockkeypair_mockcounterpartykeypairfields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/mockKeypair.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_mockkeypair", + "target": "apps_electron_vite_project_electron_main_handshake_tests_mockkeypair_mockkeypairfields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/mockKeypair.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_mockkeypair", + "target": "apps_electron_vite_project_electron_main_handshake_tests_mockkeypair_test_counterparty_keypair", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/mockKeypair.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_mockkeypair", + "target": "apps_electron_vite_project_electron_main_handshake_tests_mockkeypair_test_keypair", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.backoff.test.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_backoff_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_mockkeypair", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.sandboxEgress.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_sandboxegress_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_mockkeypair", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.backoff.test.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_backoff_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_mockkeypair_mockkeypairfields", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.backoff.test.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_backoff_test_relaydirecthandshake", + "target": "apps_electron_vite_project_electron_main_handshake_tests_mockkeypair_mockkeypairfields", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.sandboxEgress.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_sandboxegress_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_mockkeypair_mockkeypairfields", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.sandboxEgress.test.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_sandboxegress_test_activehandshake", + "target": "apps_electron_vite_project_electron_main_handshake_tests_mockkeypair_mockkeypairfields", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.backoff.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_backoff_test", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.backoff.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_backoff_test", + "target": "apps_electron_vite_project_electron_main_handshake_db_inserthandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.backoff.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_backoff_test", + "target": "apps_electron_vite_project_electron_main_handshake_db_migratehandshaketables", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.backoff.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_backoff_test", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.backoff.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_backoff_test", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_clearoutboundautodraintimer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.backoff.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_backoff_test", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_enqueueoutboundcapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.backoff.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_backoff_test", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_processoutboundqueue", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.backoff.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_backoff_test", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_setoutboundqueueauthrefresh", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.backoff.test.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_backoff_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_backoff_test_createtestdb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.backoff.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_backoff_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_backoff_test_getallwindows", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.backoff.test.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_backoff_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_backoff_test_minimalcapsule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.backoff.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_backoff_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_backoff_test_registerhandshakemock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.backoff.test.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_backoff_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_backoff_test_relaydirecthandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.backoff.test.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_backoff_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_backoff_test_require", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.backoff.test.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_backoff_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.backoff.test.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_backoff_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.backoff.test.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_backoff_test", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.backoff.test.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_backoff_test", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_migrateingestiontables", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.backoff.test.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_backoff_test", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.backoff.test.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_backoff_test", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_upsertp2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.backoff.test.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_backoff_test_createtestdb", + "target": "apps_electron_vite_project_electron_main_handshake_db_migratehandshaketables", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.backoff.test.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_backoff_test_createtestdb", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_migrateingestiontables", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.sandboxEgress.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_sandboxegress_test", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.sandboxEgress.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_sandboxegress_test", + "target": "apps_electron_vite_project_electron_main_handshake_db_inserthandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.sandboxEgress.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_sandboxegress_test", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.sandboxEgress.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_sandboxegress_test", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_clearoutboundautodraintimer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.sandboxEgress.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_sandboxegress_test", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_enqueueoutboundcapsule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.sandboxEgress.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_sandboxegress_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_sandboxegress_test_activehandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.sandboxEgress.test.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_sandboxegress_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_sandboxegress_test_contextsynccapsule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.sandboxEgress.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_sandboxegress_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_sandboxegress_test_iseffectivesandbox", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.sandboxEgress.test.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_sandboxegress_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_sandboxegress_test_nativebeappackage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.sandboxEgress.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_sandboxegress_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.sandboxEgress.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_sandboxegress_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.sandboxEgress.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_sandboxegress_test", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.sandboxEgress.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_outboundqueue_sandboxegress_test", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_sandbox_data_egress_forbidden", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/p2pTransport.coordination.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_p2ptransport_coordination_test", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/p2pTransport.coordination.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_p2ptransport_coordination_test", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/p2pTransport.coordination.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_p2ptransport_coordination_test", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_sendcapsuleviacoordination", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/p2pTransport.coordination.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_p2ptransport_coordination_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/p2pTransport.coordination.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_p2ptransport_coordination_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/p2pTransport.diagnostics.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_p2ptransport_diagnostics_test", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/p2pTransport.diagnostics.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_p2ptransport_diagnostics_test", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_analyzecoordinationroutingcompliance", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/p2pTransport.diagnostics.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_p2ptransport_diagnostics_test", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_analyzeserializedcoordinationcontract", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/p2pTransport.diagnostics.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_p2ptransport_diagnostics_test", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_buildcoordinationcapsulepostbody", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/p2pTransport.diagnostics.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_p2ptransport_diagnostics_test", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_buildoutboundrequestdebugsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/p2pTransport.diagnostics.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_p2ptransport_diagnostics_test", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_coordinationrelaycontractsatisfied", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/p2pTransport.diagnostics.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_p2ptransport_diagnostics_test", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_describecoordinationrelaynormalization", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/p2pTransport.diagnostics.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_p2ptransport_diagnostics_test", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_describeoutboundpayloadforlogs", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/p2pTransport.diagnostics.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_p2ptransport_diagnostics_test", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_detectbodylooksdoubleencoded", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/p2pTransport.diagnostics.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_p2ptransport_diagnostics_test", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_extracttoplevelkeysfromjsonbody", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/p2pTransport.diagnostics.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_p2ptransport_diagnostics_test", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_parserelaycapsuletypenotallowedhint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/p2pTransport.diagnostics.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_p2ptransport_diagnostics_test", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_summarizecanonchunkingforoutbounddebug", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingActivation.rig.test.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingactivation_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingActivation.rig.test.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingactivation_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildacceptcapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingActivation.rig.test.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingactivation_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildcontextsynccapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingActivation.rig.test.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingactivation_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildinitiatecapsulewithkeypair", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingActivation.rig.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingactivation_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingActivation.rig.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingactivation_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_db_migratehandshaketables", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingActivation.rig.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingactivation_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakecontextsyncenqueued", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingActivation.rig.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingactivation_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakecounterpartykey", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingActivation.rig.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingactivation_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakesigningkeys", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingActivation.rig.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingactivation_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_emailtransport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingActivation.rig.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingactivation_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_emailtransport_resetemailsendfn", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingActivation.rig.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingactivation_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_emailtransport_setemailsendfn", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingActivation.rig.test.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingactivation_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingActivation.rig.test.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingactivation_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingActivation.rig.test.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingactivation_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_pairingactivation_rig_test_ingest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingActivation.rig.test.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingactivation_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_pairingactivation_rig_test_makedb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingActivation.rig.test.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingactivation_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_pairingactivation_rig_test_pullfromrelaystore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingActivation.rig.test.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingactivation_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_pairingactivation_rig_test_relaypost", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingActivation.rig.test.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingactivation_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_pairingactivation_rig_test_session", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingActivation.rig.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingactivation_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_rig_coordinationrelayharness", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingActivation.rig.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingactivation_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_rig_coordinationrelayharness_relayharness", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingActivation.rig.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingactivation_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_rig_coordinationrelayharness_startrelayharness", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingActivation.rig.test.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingactivation_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingActivation.rig.test.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingactivation_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingActivation.rig.test.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingactivation_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_ssosession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingActivation.rig.test.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingactivation_rig_test", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingActivation.rig.test.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingactivation_rig_test", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc_handleingestionrpc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingActivation.rig.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingactivation_rig_test", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingActivation.rig.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingactivation_rig_test", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_migrateingestiontables", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingActivation.rig.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingactivation_rig_test", + "target": "ref_better_sqlite3", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingActivation.rig.test.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingactivation_rig_test_session", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingActivation.rig.test.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingactivation_rig_test_makedb", + "target": "apps_electron_vite_project_electron_main_handshake_db_migratehandshaketables", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingActivation.rig.test.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingactivation_rig_test_makedb", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_migrateingestiontables", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingActivation.rig.test.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingactivation_rig_test_ingest", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc_handleingestionrpc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingCodeRelayGap.rig.test.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingcoderelaygap_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingCodeRelayGap.rig.test.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingcoderelaygap_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildinitiatecapsulewithcontent", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingCodeRelayGap.rig.test.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingcoderelaygap_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingCodeRelayGap.rig.test.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingcoderelaygap_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_db_migratehandshaketables", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingCodeRelayGap.rig.test.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingcoderelaygap_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_resolvepairingcode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingCodeRelayGap.rig.test.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingcoderelaygap_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_resolvepairingcode_resolvepairingcodeviacoordination", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingCodeRelayGap.rig.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingcoderelaygap_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingCodeRelayGap.rig.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingcoderelaygap_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingCodeRelayGap.rig.test.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingcoderelaygap_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_pairingcoderelaygap_rig_test_buildinternalinitiate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingCodeRelayGap.rig.test.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingcoderelaygap_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_pairingcoderelaygap_rig_test_makeinitiatordb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingCodeRelayGap.rig.test.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingcoderelaygap_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_pairingcoderelaygap_rig_test_registerhandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingCodeRelayGap.rig.test.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingcoderelaygap_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_rig_coordinationrelayharness", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingCodeRelayGap.rig.test.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingcoderelaygap_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_rig_coordinationrelayharness_relayharness", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingCodeRelayGap.rig.test.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingcoderelaygap_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_rig_coordinationrelayharness_startrelayharness", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingCodeRelayGap.rig.test.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingcoderelaygap_rig_test", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingCodeRelayGap.rig.test.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingcoderelaygap_rig_test", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_setorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingCodeRelayGap.rig.test.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingcoderelaygap_rig_test", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingCodeRelayGap.rig.test.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingcoderelaygap_rig_test", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_upsertp2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingCodeRelayGap.rig.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingcoderelaygap_rig_test", + "target": "ref_better_sqlite3", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingCodeRelayGap.rig.test.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingcoderelaygap_rig_test_makeinitiatordb", + "target": "apps_electron_vite_project_electron_main_handshake_db_migratehandshaketables", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingCodeRelayGap.rig.test.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingcoderelaygap_rig_test_makeinitiatordb", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_upsertp2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingCodeRelayGap.rig.test.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingcoderelaygap_rig_test_buildinternalinitiate", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildinitiatecapsulewithcontent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingCodeRelayGap.rig.test.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingcoderelaygap_rig_test_buildinternalinitiate", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pairingCodeRelayGap.rig.test.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pairingcoderelaygap_rig_test_registerhandshake", + "target": "apps_electron_vite_project_electron_main_handshake_tests_rig_coordinationrelayharness_relayharness" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/parseDirectIngestHttpAck.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_parsedirectingesthttpack_test", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/parseDirectIngestHttpAck.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_parsedirectingesthttpack_test", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_parsedirectingesthttpack", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pipeline.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pipeline_test", + "target": "apps_electron_vite_project_electron_main_handshake_pipeline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pipeline.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pipeline_test", + "target": "apps_electron_vite_project_electron_main_handshake_pipeline_runhandshakeverification", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pipeline.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pipeline_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pipeline.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pipeline_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_pipelinestep", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/pipeline.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_pipeline_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_reasoncode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/policyResolution.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_policyresolution_test", + "target": "apps_electron_vite_project_electron_main_handshake_steps_policyresolution", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/policyResolution.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_policyresolution_test", + "target": "apps_electron_vite_project_electron_main_handshake_steps_policyresolution_resolveeffectivepolicyfn", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/policyResolution.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_policyresolution_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/policyResolution.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_policyresolution_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_capsulepolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/postAcceptContextSync.ingestPaths.regression.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_postacceptcontextsync_ingestpaths_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/postAcceptContextSync.ingestPaths.regression.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_postacceptcontextsync_ingestpaths_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildacceptcapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/postAcceptContextSync.ingestPaths.regression.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_postacceptcontextsync_ingestpaths_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildinitiatecapsulewithkeypair", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/postAcceptContextSync.ingestPaths.regression.test.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_postacceptcontextsync_ingestpaths_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncactivegate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/postAcceptContextSync.ingestPaths.regression.test.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_postacceptcontextsync_ingestpaths_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncactivegate_getnextstateafterinboundcontextsync", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/postAcceptContextSync.ingestPaths.regression.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_postacceptcontextsync_ingestpaths_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/postAcceptContextSync.ingestPaths.regression.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_postacceptcontextsync_ingestpaths_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/postAcceptContextSync.ingestPaths.regression.test.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_postacceptcontextsync_ingestpaths_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_initiatorpersist", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/postAcceptContextSync.ingestPaths.regression.test.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_postacceptcontextsync_ingestpaths_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_initiatorpersist_persistinitiatorhandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/postAcceptContextSync.ingestPaths.regression.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_postacceptcontextsync_ingestpaths_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/postAcceptContextSync.ingestPaths.regression.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_postacceptcontextsync_ingestpaths_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/postAcceptContextSync.ingestPaths.regression.test.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_postacceptcontextsync_ingestpaths_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_postacceptcontextsync_ingestpaths_regression_test_assertdurableinitialcontextsyncenqueued", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/postAcceptContextSync.ingestPaths.regression.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_postacceptcontextsync_ingestpaths_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_postacceptcontextsync_ingestpaths_regression_test_getallwindows", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/postAcceptContextSync.ingestPaths.regression.test.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_postacceptcontextsync_ingestpaths_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_postacceptcontextsync_ingestpaths_regression_test_receiversession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/postAcceptContextSync.ingestPaths.regression.test.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_postacceptcontextsync_ingestpaths_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_postacceptcontextsync_ingestpaths_regression_test_seedcrossprincipalinitiate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/postAcceptContextSync.ingestPaths.regression.test.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_postacceptcontextsync_ingestpaths_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_postacceptcontextsync_ingestpaths_regression_test_sendersession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/postAcceptContextSync.ingestPaths.regression.test.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_postacceptcontextsync_ingestpaths_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_postacceptcontextsync_ingestpaths_regression_test_submitcapsulejson", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/postAcceptContextSync.ingestPaths.regression.test.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_postacceptcontextsync_ingestpaths_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/postAcceptContextSync.ingestPaths.regression.test.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_postacceptcontextsync_ingestpaths_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/postAcceptContextSync.ingestPaths.regression.test.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_postacceptcontextsync_ingestpaths_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/postAcceptContextSync.ingestPaths.regression.test.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_postacceptcontextsync_ingestpaths_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_ssosession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/postAcceptContextSync.ingestPaths.regression.test.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_postacceptcontextsync_ingestpaths_regression_test", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/postAcceptContextSync.ingestPaths.regression.test.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_postacceptcontextsync_ingestpaths_regression_test", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc_handleingestionrpc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/postAcceptContextSync.ingestPaths.regression.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_postacceptcontextsync_ingestpaths_regression_test", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/postAcceptContextSync.ingestPaths.regression.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_postacceptcontextsync_ingestpaths_regression_test", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_migrateingestiontables", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/postAcceptContextSync.ingestPaths.regression.test.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_postacceptcontextsync_ingestpaths_regression_test", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/postAcceptContextSync.ingestPaths.regression.test.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_postacceptcontextsync_ingestpaths_regression_test", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationws_processcoordinationinboundcapsulefortest", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/postAcceptContextSync.ingestPaths.regression.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_postacceptcontextsync_ingestpaths_regression_test", + "target": "apps_electron_vite_project_electron_main_vault_rpc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/postAcceptContextSync.ingestPaths.regression.test.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_postacceptcontextsync_ingestpaths_regression_test_sendersession", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/postAcceptContextSync.ingestPaths.regression.test.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_postacceptcontextsync_ingestpaths_regression_test_receiversession", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/postAcceptContextSync.ingestPaths.regression.test.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_postacceptcontextsync_ingestpaths_regression_test_seedcrossprincipalinitiate", + "target": "apps_electron_vite_project_electron_main_handshake_tests_postacceptcontextsync_ingestpaths_regression_test_submitcapsulejson", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/postAcceptContextSync.ingestPaths.regression.test.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_postacceptcontextsync_ingestpaths_regression_test_submitcapsulejson", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc_handleingestionrpc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/postAcceptContextSync.ingestPaths.regression.test.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_postacceptcontextsync_ingestpaths_regression_test_seedcrossprincipalinitiate", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildinitiatecapsulewithkeypair" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/postAcceptContextSync.ingestPaths.regression.test.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_postacceptcontextsync_ingestpaths_regression_test_seedcrossprincipalinitiate", + "target": "apps_electron_vite_project_electron_main_handshake_initiatorpersist_persistinitiatorhandshakerecord" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/postAcceptContextSync.ingestPaths.regression.test.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_postacceptcontextsync_ingestpaths_regression_test_assertdurableinitialcontextsyncenqueued", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/qbeapTransports.rig.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_qbeaptransports_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_emailtransport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/qbeapTransports.rig.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_qbeaptransports_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_emailtransport_resetemailsendfn", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/qbeapTransports.rig.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_qbeaptransports_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_emailtransport_setemailsendfn", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/qbeapTransports.rig.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_qbeaptransports_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/qbeapTransports.rig.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_qbeaptransports_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/qbeapTransports.rig.test.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_qbeaptransports_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_qbeaptransports_rig_test_makemessagepackage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/qbeapTransports.rig.test.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_qbeaptransports_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_qbeaptransports_rig_test_registerhs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/qbeapTransports.rig.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_qbeaptransports_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_qbeaptransports_rig_test_session", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/qbeapTransports.rig.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_qbeaptransports_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_rig_coordinationrelayharness", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/qbeapTransports.rig.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_qbeaptransports_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_rig_coordinationrelayharness_relayharness", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/qbeapTransports.rig.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_qbeaptransports_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_rig_coordinationrelayharness_startrelayharness", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/qbeapTransports.rig.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_qbeaptransports_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/qbeapTransports.rig.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_qbeaptransports_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_ssosession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/qbeapTransports.rig.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_qbeaptransports_rig_test_session", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/qbeapTransports.rig.test.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_qbeaptransports_rig_test_registerhs", + "target": "apps_electron_vite_project_electron_main_handshake_tests_rig_coordinationrelayharness_relayharness" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/regressionMatrix.relayHandshakeSandbox.test.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_regressionmatrix_relayhandshakesandbox_test", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncactivegate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/regressionMatrix.relayHandshakeSandbox.test.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_regressionmatrix_relayhandshakesandbox_test", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncactivegate_getnextstateafterinboundcontextsync", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/regressionMatrix.relayHandshakeSandbox.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_regressionmatrix_relayhandshakesandbox_test", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/regressionMatrix.relayHandshakeSandbox.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_regressionmatrix_relayhandshakesandbox_test", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_iseligibleactiveinternalhostsandboxrecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/regressionMatrix.relayHandshakeSandbox.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_regressionmatrix_relayhandshakesandbox_test", + "target": "apps_electron_vite_project_electron_main_handshake_relayqueuetransportoutcome", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/regressionMatrix.relayHandshakeSandbox.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_regressionmatrix_relayhandshakesandbox_test", + "target": "apps_electron_vite_project_electron_main_handshake_relayqueuetransportoutcome_mapsendresulttoqueueoutcome", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/regressionMatrix.relayHandshakeSandbox.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_regressionmatrix_relayhandshakesandbox_test", + "target": "apps_electron_vite_project_electron_main_handshake_relayqueuetransportoutcome_sendcapsulesuccessshape", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/regressionMatrix.relayHandshakeSandbox.test.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_regressionmatrix_relayhandshakesandbox_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_regressionmatrix_relayhandshakesandbox_test_baseinternalhostsandboxrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/regressionMatrix.relayHandshakeSandbox.test.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_regressionmatrix_relayhandshakesandbox_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_regressionmatrix_relayhandshakesandbox_test_sessionusera", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/regressionMatrix.relayHandshakeSandbox.test.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_regressionmatrix_relayhandshakesandbox_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_regressionmatrix_relayhandshakesandbox_test_sessionuserb", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/regressionMatrix.relayHandshakeSandbox.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_regressionmatrix_relayhandshakesandbox_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/regressionMatrix.relayHandshakeSandbox.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_regressionmatrix_relayhandshakesandbox_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/regressionMatrix.relayHandshakeSandbox.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_regressionmatrix_relayhandshakesandbox_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/regressionMatrix.relayHandshakeSandbox.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_regressionmatrix_relayhandshakesandbox_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_ssosession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/regressionMatrix.relayHandshakeSandbox.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_regressionmatrix_relayhandshakesandbox_test", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationsameprincipalinbound", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/regressionMatrix.relayHandshakeSandbox.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_regressionmatrix_relayhandshakesandbox_test", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationsameprincipalinbound_computesameprincipalcoordinationskipown", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/regressionMatrix.relayHandshakeSandbox.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_regressionmatrix_relayhandshakesandbox_test", + "target": "apps_electron_vite_project_electron_main_vault_vaultowneridentity", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/regressionMatrix.relayHandshakeSandbox.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_regressionmatrix_relayhandshakesandbox_test", + "target": "apps_electron_vite_project_electron_main_vault_vaultowneridentity_assertvaultownermatchessession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/regressionMatrix.relayHandshakeSandbox.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_regressionmatrix_relayhandshakesandbox_test", + "target": "apps_electron_vite_project_electron_main_vault_vaultowneridentity_vault_account_error", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/relayAllowlistSealedServiceRpc.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_relayallowlistsealedservicerpc_test", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/relayAllowlistSealedServiceRpc.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_relayallowlistsealedservicerpc_test", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_coordination_relay_allowed_capsule_types", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/relayAllowlistSealedServiceRpc.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_relayallowlistsealedservicerpc_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_relayallowlistsealedservicerpc_test_coordinationserver", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/relayAllowlistSealedServiceRpc.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_relayallowlistsealedservicerpc_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_relayallowlistsealedservicerpc_test_electronmain", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/relayFailureMode.rig.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_relayfailuremode_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/relayFailureMode.rig.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_relayfailuremode_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildcontextsynccapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/relayFailureMode.rig.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_relayfailuremode_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildinitiatecapsulewithkeypair", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/relayFailureMode.rig.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_relayfailuremode_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/relayFailureMode.rig.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_relayfailuremode_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_db_migratehandshaketables", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/relayFailureMode.rig.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_relayfailuremode_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/relayFailureMode.rig.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_relayfailuremode_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_enqueueoutboundcapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/relayFailureMode.rig.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_relayfailuremode_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_processoutboundqueue", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/relayFailureMode.rig.test.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_relayfailuremode_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/relayFailureMode.rig.test.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_relayfailuremode_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/relayFailureMode.rig.test.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_relayfailuremode_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_relayfailuremode_rig_test_registerhs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/relayFailureMode.rig.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_relayfailuremode_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_relayfailuremode_rig_test_session", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/relayFailureMode.rig.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_relayfailuremode_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_rig_coordinationrelayharness", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/relayFailureMode.rig.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_relayfailuremode_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_rig_coordinationrelayharness_relayharness", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/relayFailureMode.rig.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_relayfailuremode_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_rig_coordinationrelayharness_startrelayharness", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/relayFailureMode.rig.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_relayfailuremode_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/relayFailureMode.rig.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_relayfailuremode_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_ssosession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/relayFailureMode.rig.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_relayfailuremode_rig_test", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/relayFailureMode.rig.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_relayfailuremode_rig_test", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_migrateingestiontables", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/relayFailureMode.rig.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_relayfailuremode_rig_test", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/relayFailureMode.rig.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_relayfailuremode_rig_test", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_upsertp2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/relayFailureMode.rig.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_relayfailuremode_rig_test", + "target": "ref_better_sqlite3", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/relayFailureMode.rig.test.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_relayfailuremode_rig_test_session", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/relayFailureMode.rig.test.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_relayfailuremode_rig_test_registerhs", + "target": "apps_electron_vite_project_electron_main_handshake_tests_rig_coordinationrelayharness_relayharness" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/relayOutboundClassification.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_relayoutboundclassification_test", + "target": "apps_electron_vite_project_electron_main_handshake_relayoutboundclassification", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/relayOutboundClassification.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_relayoutboundclassification_test", + "target": "apps_electron_vite_project_electron_main_handshake_relayoutboundclassification_iscoordinationstaleregistry403", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/relayOutboundClassification.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_relayoutboundclassification_test", + "target": "apps_electron_vite_project_electron_main_handshake_relayoutboundclassification_parsecoordinationrelayerrorsnippet", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/relayOutboundClassification.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_relayoutboundclassification_test", + "target": "apps_electron_vite_project_electron_main_handshake_relayoutboundclassification_terminalrelayidentityinvariant", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/relayQueueTransportOutcome.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_relayqueuetransportoutcome_test", + "target": "apps_electron_vite_project_electron_main_handshake_relayqueuetransportoutcome", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/relayQueueTransportOutcome.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_relayqueuetransportoutcome_test", + "target": "apps_electron_vite_project_electron_main_handshake_relayqueuetransportoutcome_mapsendresulttoqueueoutcome", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/relayQueueTransportOutcome.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_relayqueuetransportoutcome_test", + "target": "apps_electron_vite_project_electron_main_handshake_relayqueuetransportoutcome_sendcapsulesuccessshape", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/resilience.chaos.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_resilience_chaos_test", + "target": "apps_electron_vite_project_electron_main_handshake_blockretrieval", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/resilience.chaos.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_resilience_chaos_test", + "target": "apps_electron_vite_project_electron_main_handshake_blockretrieval_buildragprompt", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/resilience.chaos.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_resilience_chaos_test", + "target": "apps_electron_vite_project_electron_main_handshake_blockretrieval_scoredblockstoretrieved", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/resilience.chaos.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_resilience_chaos_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/resilience.chaos.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_resilience_chaos_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_scoredcontextblock", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revocation.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_revocation_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revocation.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_revocation_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_reasoncode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revoke.outboundSeq.regression.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_revoke_outboundseq_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revoke.outboundSeq.regression.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_revoke_outboundseq_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildrevokecapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revoke.outboundSeq.regression.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_revoke_outboundseq_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revoke.outboundSeq.regression.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_revoke_outboundseq_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revoke.outboundSeq.regression.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_revoke_outboundseq_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_signaturekeys", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revoke.outboundSeq.regression.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_revoke_outboundseq_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_signaturekeys_generatesigningkeypair", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revoke.outboundSeq.regression.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_revoke_outboundseq_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_steps_chainintegrity", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revoke.outboundSeq.regression.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_revoke_outboundseq_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_steps_chainintegrity_verifychainintegrity", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revokeRepair.rig.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_revokerepair_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revokeRepair.rig.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_revokerepair_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildrevokecapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revokeRepair.rig.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_revokerepair_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revokeRepair.rig.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_revokerepair_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_db_deletehandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revokeRepair.rig.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_revokerepair_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_db_migratehandshaketables", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revokeRepair.rig.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_revokerepair_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_emailtransport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revokeRepair.rig.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_revokerepair_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_emailtransport_resetemailsendfn", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revokeRepair.rig.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_revokerepair_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_emailtransport_setemailsendfn", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revokeRepair.rig.test.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_revokerepair_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revokeRepair.rig.test.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_revokerepair_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement_diagnosehandshakeinactive", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revokeRepair.rig.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_revokerepair_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_revocation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revokeRepair.rig.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_revokerepair_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_revocation_revokehandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revokeRepair.rig.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_revokerepair_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revokeRepair.rig.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_revokerepair_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revokeRepair.rig.test.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_revokerepair_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_revokerepair_rig_test_ingest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revokeRepair.rig.test.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_revokerepair_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_revokerepair_rig_test_makedb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revokeRepair.rig.test.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_revokerepair_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_revokerepair_rig_test_pullfromrelaystore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revokeRepair.rig.test.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_revokerepair_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_revokerepair_rig_test_relaypost", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revokeRepair.rig.test.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_revokerepair_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_revokerepair_rig_test_session", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revokeRepair.rig.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_revokerepair_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_rig_coordinationrelayharness", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revokeRepair.rig.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_revokerepair_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_rig_coordinationrelayharness_relayharness", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revokeRepair.rig.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_revokerepair_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_rig_coordinationrelayharness_startrelayharness", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revokeRepair.rig.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_revokerepair_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revokeRepair.rig.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_revokerepair_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow_drivecrossprincipaltoactive", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revokeRepair.rig.test.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_revokerepair_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revokeRepair.rig.test.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_revokerepair_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revokeRepair.rig.test.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_revokerepair_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_ssosession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revokeRepair.rig.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_revokerepair_rig_test", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revokeRepair.rig.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_revokerepair_rig_test", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc_handleingestionrpc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revokeRepair.rig.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_revokerepair_rig_test", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revokeRepair.rig.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_revokerepair_rig_test", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_migrateingestiontables", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revokeRepair.rig.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_revokerepair_rig_test", + "target": "ref_better_sqlite3", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revokeRepair.rig.test.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_revokerepair_rig_test_session", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revokeRepair.rig.test.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_revokerepair_rig_test_makedb", + "target": "apps_electron_vite_project_electron_main_handshake_db_migratehandshaketables", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revokeRepair.rig.test.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_revokerepair_rig_test_makedb", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_migrateingestiontables", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/revokeRepair.rig.test.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_revokerepair_rig_test_ingest", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc_handleingestionrpc" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/coordinationRelayHarness.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_rig_coordinationrelayharness", + "target": "apps_electron_vite_project_electron_main_handshake_tests_rig_coordinationrelayharness_createserverresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/coordinationRelayHarness.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_rig_coordinationrelayharness", + "target": "apps_electron_vite_project_electron_main_handshake_tests_rig_coordinationrelayharness_listen", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/coordinationRelayHarness.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_rig_coordinationrelayharness", + "target": "apps_electron_vite_project_electron_main_handshake_tests_rig_coordinationrelayharness_makeconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/coordinationRelayHarness.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_rig_coordinationrelayharness", + "target": "apps_electron_vite_project_electron_main_handshake_tests_rig_coordinationrelayharness_relayharness", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/coordinationRelayHarness.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_rig_coordinationrelayharness", + "target": "apps_electron_vite_project_electron_main_handshake_tests_rig_coordinationrelayharness_startrelayharness", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/coordinationRelayHarness.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_rig_coordinationrelayharness", + "target": "packages_coordination_service_src_config", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/coordinationRelayHarness.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_rig_coordinationrelayharness", + "target": "packages_coordination_service_src_config_coordinationconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/coordinationRelayHarness.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_rig_coordinationrelayharness", + "target": "packages_coordination_service_src_server", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/coordinationRelayHarness.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_rig_coordinationrelayharness", + "target": "packages_coordination_service_src_server_createserver", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/pairingFlow.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow", + "target": "apps_electron_vite_project_electron_main_handshake_tests_rig_coordinationrelayharness", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/pairingFlow.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow", + "target": "apps_electron_vite_project_electron_main_handshake_tests_rig_coordinationrelayharness_relayharness", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/pairingFlow.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow_drivecrossprincipaltoactive", + "target": "apps_electron_vite_project_electron_main_handshake_tests_rig_coordinationrelayharness_relayharness" + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/pairingFlow.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow_pairtoactiveargs", + "target": "apps_electron_vite_project_electron_main_handshake_tests_rig_coordinationrelayharness_relayharness", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/pairingFlow.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow_pullfromrelaystore", + "target": "apps_electron_vite_project_electron_main_handshake_tests_rig_coordinationrelayharness_relayharness" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/pairingFlow.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow_relaypost", + "target": "apps_electron_vite_project_electron_main_handshake_tests_rig_coordinationrelayharness_relayharness" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/coordinationRelayHarness.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_rig_coordinationrelayharness_startrelayharness", + "target": "apps_electron_vite_project_electron_main_handshake_tests_rig_coordinationrelayharness_makeconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/coordinationRelayHarness.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_rig_coordinationrelayharness_startrelayharness", + "target": "apps_electron_vite_project_electron_main_handshake_tests_rig_coordinationrelayharness_listen", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/coordinationRelayHarness.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_rig_coordinationrelayharness_startrelayharness", + "target": "packages_coordination_service_src_server_createserver" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/pairingFlow.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/pairingFlow.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildacceptcapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/pairingFlow.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildcontextsynccapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/pairingFlow.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildinitiatecapsulewithkeypair", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/pairingFlow.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/pairingFlow.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakecontextsyncenqueued", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/pairingFlow.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakecounterpartykey", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/pairingFlow.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakesigningkeys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/pairingFlow.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow", + "target": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow_drivecrossprincipaltoactive", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/pairingFlow.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow", + "target": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow_ingest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/pairingFlow.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow", + "target": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow_pairtoactiveargs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/pairingFlow.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow", + "target": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow_pairtoactiveresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/pairingFlow.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow", + "target": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow_pullfromrelaystore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/pairingFlow.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow", + "target": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow_relaypost", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/pairingFlow.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow", + "target": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow_rigkeypair", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/pairingFlow.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/pairingFlow.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/pairingFlow.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow", + "target": "apps_electron_vite_project_electron_main_handshake_types_ssosession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/pairingFlow.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/pairingFlow.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc_handleingestionrpc", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/pairingFlow.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow_pairtoactiveargs", + "target": "apps_electron_vite_project_electron_main_handshake_types_ssosession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/pairingFlow.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow_drivecrossprincipaltoactive", + "target": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow_ingest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/pairingFlow.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow_ingest", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc_handleingestionrpc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/pairingFlow.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow_drivecrossprincipaltoactive", + "target": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow_relaypost", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/pairingFlow.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow_drivecrossprincipaltoactive", + "target": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow_pullfromrelaystore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/pairingFlow.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow_drivecrossprincipaltoactive", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildacceptcapsule" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/pairingFlow.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow_drivecrossprincipaltoactive", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildcontextsynccapsule" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/pairingFlow.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow_drivecrossprincipaltoactive", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildinitiatecapsulewithkeypair" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/pairingFlow.ts", + "source_location": "L151", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow_drivecrossprincipaltoactive", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakecontextsyncenqueued" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/pairingFlow.ts", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow_drivecrossprincipaltoactive", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakecounterpartykey" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/rig/pairingFlow.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_rig_pairingflow_drivecrossprincipaltoactive", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakesigningkeys" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/sandboxTopologyKind.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_sandboxtopologykind_test", + "target": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/sandboxTopologyKind.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_sandboxtopologykind_test", + "target": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_infersandboxpairingkindfromhandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/sandboxTopologyKind.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_sandboxtopologykind_test", + "target": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_ishostlocalp2ptarget", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/sandboxTopologyKind.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_sandboxtopologykind_test", + "target": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_resolvesandboxtopologykind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/sandboxTopologyKind.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_sandboxtopologykind_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_sandboxtopologykind_test_getorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/sandboxTopologyKind.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_sandboxtopologykind_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_sandboxtopologykind_test_listactiveinternalhandshakesforhostai", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/sandboxTopologyKind.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_sandboxtopologykind_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_sandboxtopologykind_test_makeinternalpair", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/sandboxTopologyKind.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_sandboxtopologykind_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/sandboxTopologyKind.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_sandboxtopologykind_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/sandboxTopologyKind.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_sandboxtopologykind_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/semanticSearch.embedFailure.fallback.regression.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_semanticsearch_embedfailure_fallback_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_contextretrievaltypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/semanticSearch.embedFailure.fallback.regression.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_semanticsearch_embedfailure_fallback_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_contextretrievaltypes_semantic_search_log_tag", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/sharingMode.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_sharingmode_test", + "target": "apps_electron_vite_project_electron_main_handshake_steps_sharingmode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/sharingMode.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_sharingmode_test", + "target": "apps_electron_vite_project_electron_main_handshake_steps_sharingmode_verifysharingmode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/sharingMode.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_sharingmode_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/sharingMode.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_sharingmode_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_reasoncode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/signatureKeys.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_signaturekeys_test", + "target": "apps_electron_vite_project_electron_main_handshake_signaturekeys", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/signatureKeys.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_signaturekeys_test", + "target": "apps_electron_vite_project_electron_main_handshake_signaturekeys_generatesigningkeypair", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/signatureKeys.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_signaturekeys_test", + "target": "apps_electron_vite_project_electron_main_handshake_signaturekeys_signcapsulehash", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/signatureKeys.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_signaturekeys_test", + "target": "apps_electron_vite_project_electron_main_handshake_signaturekeys_verifycapsulesignature", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/stateMachine.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_statemachine_test", + "target": "apps_electron_vite_project_electron_main_handshake_steps_statetransition", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/stateMachine.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_statemachine_test", + "target": "apps_electron_vite_project_electron_main_handshake_steps_statetransition_checkstatetransition", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/stateMachine.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_statemachine_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/stateMachine.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_statemachine_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/stateMachine.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_statemachine_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_reasoncode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/structuredQuery.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_structuredquery_test", + "target": "apps_electron_vite_project_electron_main_handshake_structuredquery", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/structuredQuery.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_structuredquery_test", + "target": "apps_electron_vite_project_electron_main_handshake_structuredquery_queryclassifier", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/structuredQuery.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_structuredquery_test", + "target": "apps_electron_vite_project_electron_main_handshake_structuredquery_structuredlookup", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/structuredQuery.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_structuredquery_test", + "target": "apps_electron_vite_project_electron_main_handshake_structuredquery_structuredlookupmulti", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/tierClassification.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_tierclassification_test", + "target": "apps_electron_vite_project_electron_main_handshake_tierclassification", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/tierClassification.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_tierclassification_test", + "target": "apps_electron_vite_project_electron_main_handshake_tierclassification_classifyhandshaketier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/topologyAutoWire.delegationCallback.test.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_topologyautowire_delegationcallback_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_topologyautowire_delegationcallback_test_activeinternalrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/topologyAutoWire.delegationCallback.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_topologyautowire_delegationcallback_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_topologyautowire_delegationcallback_test_addlinkedtopologyentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/topologyAutoWire.delegationCallback.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_topologyautowire_delegationcallback_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_topologyautowire_delegationcallback_test_getlinkedtopologyentries", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/topologyAutoWire.delegationCallback.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_topologyautowire_delegationcallback_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_topologyautowire_delegationcallback_test_getorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/topologyAutoWire.delegationCallback.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_topologyautowire_delegationcallback_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_topologyautowire_delegationcallback_test_removelinkedtopologyentry", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/topologyAutoWire.delegationCallback.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_topologyautowire_delegationcallback_test", + "target": "apps_electron_vite_project_electron_main_handshake_topologyautowire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/topologyAutoWire.delegationCallback.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_topologyautowire_delegationcallback_test", + "target": "apps_electron_vite_project_electron_main_handshake_topologyautowire_autowiretopologyforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/topologyAutoWire.delegationCallback.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_topologyautowire_delegationcallback_test", + "target": "apps_electron_vite_project_electron_main_handshake_topologyautowire_settopologydelegationcallback", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/topologyAutoWire.delegationCallback.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_topologyautowire_delegationcallback_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/topologyAutoWire.delegationCallback.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_topologyautowire_delegationcallback_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/topologyAutoWire.delegationCallback.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_topologyautowire_delegationcallback_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/topologyAutoWire.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_topologyautowire_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_topologyautowire_test_linked", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/topologyAutoWire.test.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_topologyautowire_test", + "target": "apps_electron_vite_project_electron_main_handshake_tests_topologyautowire_test_makerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/topologyAutoWire.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_topologyautowire_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/topologyAutoWire.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_topologyautowire_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/vaultGating.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_vaultgating_test", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/vaultGating.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_vaultgating_test", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement_authorizeaction", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/vaultGating.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_vaultgating_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/vaultGating.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_vaultgating_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/__tests__/vaultGating.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tests_vaultgating_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_reasoncode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/activeHandshakeHealth.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth", + "target": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth_classifyactivehandshakehealth", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/activeHandshakeHealth.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth", + "target": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth_coordinationcompleteforlog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/activeHandshakeHealth.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth", + "target": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth_counterpartyp2ptokensetforlog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/activeHandshakeHealth.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth", + "target": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth_handshakehealthclassification", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/activeHandshakeHealth.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth", + "target": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth_hasp2ptokenforlog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/activeHandshakeHealth.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth", + "target": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth_listactivehandshakehealthissues", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/activeHandshakeHealth.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth", + "target": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth_pairingdigits6", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/activeHandshakeHealth.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth", + "target": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth_peerdisplaynameforhealth", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/activeHandshakeHealth.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/activeHandshakeHealth.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth", + "target": "apps_electron_vite_project_electron_main_handshake_db_listhandshakerecords", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/activeHandshakeHealth.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/activeHandshakeHealth.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/activeHandshakeHealth.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/activeHandshakeHealth.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/activeHandshakeHealth.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_peekhostadvertisedmvpdirectp2pendpoint", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/activeHandshakeHealth.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth", + "target": "apps_electron_vite_project_electron_main_internalinference_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/activeHandshakeHealth.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertledgerrolessandboxtohost", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/activeHandshakeHealth.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/activeHandshakeHealth.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointkind", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/activeHandshakeHealth.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointmvpclass", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/activeHandshakeHealth.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/activeHandshakeHealth.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/activeHandshakeHealth.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth", + "target": "packages_shared_src_handshake_activehandshakehealthissue", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/activeHandshakeHealth.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth", + "target": "packages_shared_src_handshake_activehandshakehealthissue_activehandshakehealthissue", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/activeHandshakeHealth.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth", + "target": "packages_shared_src_handshake_activehandshakehealthissue_handshakehealthreason", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/activeHandshakeHealth.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth", + "target": "packages_shared_src_handshake_activehandshakehealthissue_handshakehealthtier", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthRemoteCheck.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthremotecheck", + "target": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthStartupLog.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthstartuplog", + "target": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/activeHandshakeHealth.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth_classifyactivehandshakehealth", + "target": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth_hasp2ptokenforlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthStartupLog.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthstartuplog", + "target": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth_hasp2ptokenforlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthStartupLog.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthstartuplog_loghandshakehealthstartuplines", + "target": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth_hasp2ptokenforlog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/activeHandshakeHealth.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth_classifyactivehandshakehealth", + "target": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth_coordinationcompleteforlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthStartupLog.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthstartuplog", + "target": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth_coordinationcompleteforlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthStartupLog.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthstartuplog_loghandshakehealthstartuplines", + "target": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth_coordinationcompleteforlog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/activeHandshakeHealth.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth_classifyactivehandshakehealth", + "target": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth_counterpartyp2ptokensetforlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthStartupLog.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthstartuplog", + "target": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth_counterpartyp2ptokensetforlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthStartupLog.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthstartuplog_loghandshakehealthstartuplines", + "target": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth_counterpartyp2ptokensetforlog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/activeHandshakeHealth.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth_listactivehandshakehealthissues", + "target": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth_peerdisplaynameforhealth", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthStartupLog.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthstartuplog", + "target": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth_peerdisplaynameforhealth", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthStartupLog.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthstartuplog_loghandshakehealthstartuplines", + "target": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth_peerdisplaynameforhealth" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/activeHandshakeHealth.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth_listactivehandshakehealthissues", + "target": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth_pairingdigits6", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/activeHandshakeHealth.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth_classifyactivehandshakehealth", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_peekhostadvertisedmvpdirectp2pendpoint" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/activeHandshakeHealth.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth_classifyactivehandshakehealth", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertledgerrolessandboxtohost" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/activeHandshakeHealth.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth_classifyactivehandshakehealth", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/activeHandshakeHealth.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth_classifyactivehandshakehealth", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointkind" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/activeHandshakeHealth.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth_classifyactivehandshakehealth", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointmvpclass" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/activeHandshakeHealth.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth_listactivehandshakehealthissues", + "target": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth_classifyactivehandshakehealth", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthRemoteCheck.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthremotecheck", + "target": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth_classifyactivehandshakehealth", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthRemoteCheck.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthremotecheck_runhandshakehealthremotecheckafterrelayconnect", + "target": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth_classifyactivehandshakehealth" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthStartupLog.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthstartuplog", + "target": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth_classifyactivehandshakehealth", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthStartupLog.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthstartuplog_loghandshakehealthstartuplines", + "target": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth_classifyactivehandshakehealth" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/activeHandshakeHealth.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth_listactivehandshakehealthissues", + "target": "apps_electron_vite_project_electron_main_handshake_db_listhandshakerecords" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/activeHandshakeHealth.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_activehandshakehealth_listactivehandshakehealthissues", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_aiprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L509", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_cloud_model_map", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L519", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_cloudaiprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L507", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_cloudchatprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_formatcausechain", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_generatechatoptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L757", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_getprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_handshakeforlog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_logollamaprovidererror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_logollamaproviderrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_message", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L727", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaoptionsfromuseranddisk", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovideroperation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovideroptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_streamsender", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L784", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_toembeddingservice", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L720", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_userragsettings", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders", + "target": "apps_electron_vite_project_electron_main_handshake_embeddings", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders", + "target": "apps_electron_vite_project_electron_main_handshake_embeddings_localembeddingservice", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate_assertgpuinferenceavailableforchatbase", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_getsandboxollamadirectroutecandidate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore_readstoredaiexecutioncontext", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutiontypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutiontypes_aiexecutionlane", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders", + "target": "apps_electron_vite_project_electron_main_llm_llamachatresponsecontent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders", + "target": "apps_electron_vite_project_electron_main_llm_llamachatresponsecontent_extractllamachatcontent", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders", + "target": "apps_electron_vite_project_electron_main_llm_llamacontextoverflow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders", + "target": "apps_electron_vite_project_electron_main_llm_llamacontextoverflow_parsellamacontextoverflowfrombody", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders", + "target": "apps_electron_vite_project_electron_main_llm_localllmpaths", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders", + "target": "apps_electron_vite_project_electron_main_llm_localllmpaths_host_ai_default_local_llamacpp_base", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_debug_ollama_runtime_trace", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_nstoms", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_ollamaruntimegetinflight", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_ollamaruntimeinflightdelta", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_ollamaruntimelog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_ollamaruntimerecordchattiming", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_ollamaruntimerequesttrace", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_issandboxmode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/orchestratorSandboxEmbedding.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_orchestratorsandboxembedding", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_generatechatoptions", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_ollamaruntimerequesttrace", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_aiprovider", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_aiprovider_generatechat", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_aiprovider", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_aiprovider_generateembedding", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L519", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_cloudaiprovider", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_aiprovider", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_aiprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_aiprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L207", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider_loghandshake", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_handshakeforlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L156", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_logollamaprovidererror", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_formatcausechain", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L265", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider_generatechat", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_logollamaproviderrequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L212", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider_generateembedding", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_logollamaproviderrequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L476", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider_isavailable", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_logollamaproviderrequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L284", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider_generatechat", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_logollamaprovidererror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L239", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider_generateembedding", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_logollamaprovidererror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L491", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider_isavailable", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_logollamaprovidererror", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L196", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider_constructor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L252", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider_generatechat", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L210", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider_generateembedding", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L184", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider_getollamabaseurl", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L176", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider_getollamachatmodel", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L172", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider_getollamaembedmodel", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L192", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider_getollamahandshakeid", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L180", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider_getollamalane", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L188", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider_getollamapeerdeviceid", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L474", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider_isavailable", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L206", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider_loghandshake", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutiontypes_aiexecutionlane", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/orchestratorSandboxEmbedding.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_orchestratorsandboxembedding", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_createollamaproviderforsandboxembedding", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider_getollamaembedmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L258", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_wrapollamaembeddingserviceforsandbox", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider_getollamaembedmodel" + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L180", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider_getollamalane", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutiontypes_aiexecutionlane", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L270", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider_generatechat", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider_loghandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L217", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider_generateembedding", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider_loghandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L481", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider_isavailable", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider_loghandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L213", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_runollamagenerateembeddingwithsandboxrouting", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider_generateembedding" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L273", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider_generatechat", + "target": "apps_electron_vite_project_electron_main_handshake_llmstream", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L258", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider_generatechat", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate_assertgpuinferenceavailableforchatbase" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L404", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider_generatechat", + "target": "apps_electron_vite_project_electron_main_llm_llamachatresponsecontent_extractllamachatcontent" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L364", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider_generatechat", + "target": "apps_electron_vite_project_electron_main_llm_llamacontextoverflow_parsellamacontextoverflowfrombody" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L386", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider_generatechat", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_nstoms" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L326", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider_generatechat", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_ollamaruntimegetinflight" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L327", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider_generatechat", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_ollamaruntimeinflightdelta" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L330", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider_generatechat", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_ollamaruntimelog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L399", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider_generatechat", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_ollamaruntimerecordchattiming" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_runollamageneratechatwithsandboxrouting", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaprovider_generatechat" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L623", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_cloudaiprovider", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_cloudaiprovider_chatanthropic", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L654", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_cloudaiprovider", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_cloudaiprovider_chatgoogle", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L593", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_cloudaiprovider", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_cloudaiprovider_chatopenai", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L687", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_cloudaiprovider", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_cloudaiprovider_chatxai", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L525", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_cloudaiprovider", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_cloudaiprovider_constructor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L563", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_cloudaiprovider", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_cloudaiprovider_generatechat", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L535", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_cloudaiprovider", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_cloudaiprovider_generateembedding", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L713", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_cloudaiprovider", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_cloudaiprovider_hasembeddingsupport", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L582", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_cloudaiprovider_generatechat", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_cloudaiprovider_chatanthropic", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L585", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_cloudaiprovider_generatechat", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_cloudaiprovider_chatgoogle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L579", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_cloudaiprovider_generatechat", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_cloudaiprovider_chatopenai", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L588", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_cloudaiprovider_generatechat", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_cloudaiprovider_chatxai", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L603", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_cloudaiprovider_chatopenai", + "target": "apps_electron_vite_project_electron_main_handshake_llmstream", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L635", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_cloudaiprovider_chatanthropic", + "target": "apps_electron_vite_project_electron_main_handshake_llmstream", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L666", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_cloudaiprovider_chatgoogle", + "target": "apps_electron_vite_project_electron_main_handshake_llmstream", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L696", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_cloudaiprovider_chatxai", + "target": "apps_electron_vite_project_electron_main_handshake_llmstream", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L761", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_getprovider", + "target": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaoptionsfromuseranddisk", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L742", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaoptionsfromuseranddisk", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_getsandboxollamadirectroutecandidate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L736", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaoptionsfromuseranddisk", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore_readstoredaiexecutioncontext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/aiProviders.ts", + "source_location": "L733", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_aiproviders_ollamaoptionsfromuseranddisk", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_issandboxmode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/auditLog.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_auditlog", + "target": "apps_electron_vite_project_electron_main_handshake_auditlog_builddenialauditentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/auditLog.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_auditlog", + "target": "apps_electron_vite_project_electron_main_handshake_auditlog_buildrevocationauditentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/auditLog.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_auditlog", + "target": "apps_electron_vite_project_electron_main_handshake_auditlog_buildsuccessauditentry", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/auditLog.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_auditlog", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/auditLog.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_auditlog", + "target": "apps_electron_vite_project_electron_main_handshake_types_auditlogentry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/auditLog.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_auditlog", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/auditLog.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_auditlog", + "target": "apps_electron_vite_project_electron_main_handshake_types_reasoncode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/auditLog.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_auditlog", + "target": "apps_electron_vite_project_electron_main_handshake_types_verifiedcapsuleinput", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_auditlog", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/revocation.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_revocation", + "target": "apps_electron_vite_project_electron_main_handshake_auditlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_auditlog_buildsuccessauditentry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L583", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement_processhandshakecapsule", + "target": "apps_electron_vite_project_electron_main_handshake_auditlog_buildsuccessauditentry" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_auditlog_builddenialauditentry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L228", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement_processhandshakecapsule", + "target": "apps_electron_vite_project_electron_main_handshake_auditlog_builddenialauditentry" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/revocation.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_revocation", + "target": "apps_electron_vite_project_electron_main_handshake_auditlog_buildrevocationauditentry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/revocation.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_revocation_revokehandshake", + "target": "apps_electron_vite_project_electron_main_handshake_auditlog_buildrevocationauditentry" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockExtraction.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_blockextraction", + "target": "apps_electron_vite_project_electron_main_handshake_blockextraction_chunk_max_tokens", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockExtraction.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_blockextraction", + "target": "apps_electron_vite_project_electron_main_handshake_blockextraction_chunk_min_tokens", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockExtraction.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_blockextraction", + "target": "apps_electron_vite_project_electron_main_handshake_blockextraction_chunk_target_tokens", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockExtraction.ts", + "source_location": "L175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_blockextraction", + "target": "apps_electron_vite_project_electron_main_handshake_blockextraction_chunkdocument", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockExtraction.ts", + "source_location": "L237", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_blockextraction", + "target": "apps_electron_vite_project_electron_main_handshake_blockextraction_computechunkhash", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockExtraction.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_blockextraction", + "target": "apps_electron_vite_project_electron_main_handshake_blockextraction_customfieldentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockExtraction.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_blockextraction", + "target": "apps_electron_vite_project_electron_main_handshake_blockextraction_day_order", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockExtraction.ts", + "source_location": "L247", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_blockextraction", + "target": "apps_electron_vite_project_electron_main_handshake_blockextraction_extractblocks", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockExtraction.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_blockextraction", + "target": "apps_electron_vite_project_electron_main_handshake_blockextraction_extractcustomfieldblocks", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockExtraction.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_blockextraction", + "target": "apps_electron_vite_project_electron_main_handshake_blockextraction_extractedblock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockExtraction.ts", + "source_location": "L328", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_blockextraction", + "target": "apps_electron_vite_project_electron_main_handshake_blockextraction_extracttextfrompayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockExtraction.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_blockextraction", + "target": "apps_electron_vite_project_electron_main_handshake_blockextraction_formatopeninghours", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockExtraction.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_blockextraction", + "target": "apps_electron_vite_project_electron_main_handshake_blockextraction_formatstructuredobject", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockExtraction.ts", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_blockextraction", + "target": "apps_electron_vite_project_electron_main_handshake_blockextraction_isstructuredblock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockExtraction.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_blockextraction", + "target": "apps_electron_vite_project_electron_main_handshake_blockextraction_structured_prefixes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBlockIndexer.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsuleblockindexer", + "target": "apps_electron_vite_project_electron_main_handshake_blockextraction", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/blockExtraction.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_blockextraction_isstructuredblock", + "target": "apps_electron_vite_project_electron_main_handshake_blockextraction_structured_prefixes" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockExtraction.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_blockextraction_formatstructuredobject", + "target": "apps_electron_vite_project_electron_main_handshake_blockextraction_formatopeninghours", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockExtraction.ts", + "source_location": "L280", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_blockextraction_extractblocks", + "target": "apps_electron_vite_project_electron_main_handshake_blockextraction_formatstructuredobject", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockExtraction.ts", + "source_location": "L279", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_blockextraction_extractblocks", + "target": "apps_electron_vite_project_electron_main_handshake_blockextraction_isstructuredblock", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockExtraction.ts", + "source_location": "L320", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_blockextraction_extractblocks", + "target": "apps_electron_vite_project_electron_main_handshake_blockextraction_extractcustomfieldblocks", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockExtraction.ts", + "source_location": "L296", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_blockextraction_extractblocks", + "target": "apps_electron_vite_project_electron_main_handshake_blockextraction_chunkdocument", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockExtraction.ts", + "source_location": "L304", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_blockextraction_extractblocks", + "target": "apps_electron_vite_project_electron_main_handshake_blockextraction_computechunkhash", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockExtraction.ts", + "source_location": "L271", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_blockextraction_extractblocks", + "target": "apps_electron_vite_project_electron_main_handshake_blockextraction_extracttextfrompayload", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBlockIndexer.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsuleblockindexer", + "target": "apps_electron_vite_project_electron_main_handshake_blockextraction_extractblocks", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBlockIndexer.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsuleblockindexer_indexcapsuleblocks", + "target": "apps_electron_vite_project_electron_main_handshake_blockextraction_extractblocks" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockRetrieval.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_blockretrieval", + "target": "apps_electron_vite_project_electron_main_handshake_blockretrieval_blockidtotitle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockRetrieval.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_blockretrieval", + "target": "apps_electron_vite_project_electron_main_handshake_blockretrieval_blockindexentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockRetrieval.ts", + "source_location": "L205", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_blockretrieval", + "target": "apps_electron_vite_project_electron_main_handshake_blockretrieval_buildprompt", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockRetrieval.ts", + "source_location": "L184", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_blockretrieval", + "target": "apps_electron_vite_project_electron_main_handshake_blockretrieval_buildpromptoptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockRetrieval.ts", + "source_location": "L257", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_blockretrieval", + "target": "apps_electron_vite_project_electron_main_handshake_blockretrieval_buildragprompt", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockRetrieval.ts", + "source_location": "L242", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_blockretrieval", + "target": "apps_electron_vite_project_electron_main_handshake_blockretrieval_buildragpromptoptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockRetrieval.ts", + "source_location": "L179", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_blockretrieval", + "target": "apps_electron_vite_project_electron_main_handshake_blockretrieval_conversationcontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockRetrieval.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_blockretrieval", + "target": "apps_electron_vite_project_electron_main_handshake_blockretrieval_default_top_k", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockRetrieval.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_blockretrieval", + "target": "apps_electron_vite_project_electron_main_handshake_blockretrieval_extracttextfrompayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockRetrieval.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_blockretrieval", + "target": "apps_electron_vite_project_electron_main_handshake_blockretrieval_max_context_tokens", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockRetrieval.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_blockretrieval", + "target": "apps_electron_vite_project_electron_main_handshake_blockretrieval_retrieveblocks", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockRetrieval.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_blockretrieval", + "target": "apps_electron_vite_project_electron_main_handshake_blockretrieval_retrieveblocksoptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockRetrieval.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_blockretrieval", + "target": "apps_electron_vite_project_electron_main_handshake_blockretrieval_retrievedblock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockRetrieval.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_blockretrieval", + "target": "apps_electron_vite_project_electron_main_handshake_blockretrieval_scoredblockstoretrieved", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockRetrieval.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_blockretrieval", + "target": "apps_electron_vite_project_electron_main_handshake_contextretrievaltypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockRetrieval.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_blockretrieval", + "target": "apps_electron_vite_project_electron_main_handshake_contextretrievaltypes_contextretrievalresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockRetrieval.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_blockretrieval", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockRetrieval.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_blockretrieval", + "target": "apps_electron_vite_project_electron_main_handshake_types_scoredcontextblock", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockRetrieval.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_blockretrieval_scoredblockstoretrieved", + "target": "apps_electron_vite_project_electron_main_handshake_blockretrieval_extracttextfrompayload", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockRetrieval.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_blockretrieval_scoredblockstoretrieved", + "target": "apps_electron_vite_project_electron_main_handshake_blockretrieval_blockidtotitle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockRetrieval.ts", + "source_location": "L151", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_blockretrieval_retrieveblocks", + "target": "apps_electron_vite_project_electron_main_handshake_blockretrieval_scoredblockstoretrieved", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockRetrieval.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_blockretrieval_retrieveblocks", + "target": "apps_electron_vite_project_electron_main_handshake_contextretrievaltypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockRetrieval.ts", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_blockretrieval_retrieveblocks", + "target": "apps_electron_vite_project_electron_main_handshake_embeddings", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockRetrieval.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_blockretrieval_retrieveblocks", + "target": "apps_electron_vite_project_electron_main_handshake_keywordsearch", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/blockRetrieval.ts", + "source_location": "L279", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_blockretrieval_buildragprompt", + "target": "apps_electron_vite_project_electron_main_handshake_blockretrieval_buildprompt", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_canonicalcontextblock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L545", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_canonicalrebuild", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_canonicalreceiveridentity", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_canonicalsealedcontextblocksenvelope", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_canonicalsenderidentity", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_canonicaltiersignals", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_contextblockproof", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_denied_fields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L193", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_field_rules", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L183", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_fieldrule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_handshakecapsulecanonical", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L384", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_rebuildcontextblockproofs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L791", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_rebuildcontextblocks", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L867", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_rebuildcontextblockssealed", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_rebuildresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L301", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_rebuildsenderidentity", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L323", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_rebuildtiersignals", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L247", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_sanitizestring", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_sealed_service_rpc_envelope_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_sealed_service_rpc_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L233", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_sender_identity_rules", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L243", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_tier_plan_values", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L251", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_validatefield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L444", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_validateinternalhandshakewireifneeded", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild", + "target": "apps_electron_vite_project_electron_main_handshake_sanitize", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild", + "target": "apps_electron_vite_project_electron_main_handshake_sanitize_isvalidemail", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild", + "target": "apps_electron_vite_project_electron_main_handshake_sanitize_normalizenfc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild", + "target": "apps_electron_vite_project_electron_main_handshake_sanitize_stripcontrolchars", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild", + "target": "packages_shared_src_handshake_internalendpointvalidation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild", + "target": "packages_shared_src_handshake_internalendpointvalidation_validateinternalendpointpairdistinct", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L159", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_rationale_159", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_contextblockproof", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L221", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_handshakecapsulewire", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_contextblockproof", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L394", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_refreshoptions", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_contextblockproof", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_contextblockproof", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L330", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_rebuildtiersignals", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_tier_plan_values" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L650", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_canonicalrebuild", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_sanitizestring", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L402", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_rebuildcontextblockproofs", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_sanitizestring", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L825", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_rebuildcontextblocks", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_sanitizestring", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L887", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_rebuildcontextblockssealed", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_sanitizestring", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L339", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_rebuildtiersignals", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_sanitizestring", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L248", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_sanitizestring", + "target": "apps_electron_vite_project_electron_main_handshake_sanitize_normalizenfc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L248", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_sanitizestring", + "target": "apps_electron_vite_project_electron_main_handshake_sanitize_stripcontrolchars", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L261", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_validatefield", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_sanitizestring", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L590", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_canonicalrebuild", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_validatefield", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L313", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_rebuildsenderidentity", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_validatefield", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L269", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_validatefield", + "target": "apps_electron_vite_project_electron_main_handshake_sanitize_isvalidemail", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L613", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_canonicalrebuild", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_rebuildsenderidentity", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L623", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_canonicalrebuild", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_rebuildtiersignals", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L749", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_canonicalrebuild", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_rebuildcontextblockproofs", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L724", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_canonicalrebuild", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_validateinternalhandshakewireifneeded", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L528", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_validateinternalhandshakewireifneeded", + "target": "packages_shared_src_handshake_internalendpointvalidation_validateinternalendpointpairdistinct", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L761", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_canonicalrebuild", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_rebuildcontextblocks", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts", + "source_location": "L773", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_canonicalrebuild", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_rebuildcontextblockssealed", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_canonicalrebuild", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L841", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_canonicalrebuild" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_canonicalrebuild", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc_handleingestionrpc", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_canonicalrebuild" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L289", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc_registeringestionroutes", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_canonicalrebuild" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_canonicalrebuild", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L467", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws_processcapsuleinternal", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_canonicalrebuild", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_canonicalrebuild", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L290", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull_pullfromrelay", + "target": "apps_electron_vite_project_electron_main_handshake_canonicalrebuild_canonicalrebuild" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBlockIndexer.ts", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsuleblockindexer", + "target": "apps_electron_vite_project_electron_main_handshake_capsuleblockindexer_backfillcapsuleblocks", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBlockIndexer.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsuleblockindexer", + "target": "apps_electron_vite_project_electron_main_handshake_capsuleblockindexer_block_type_prefixes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBlockIndexer.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsuleblockindexer", + "target": "apps_electron_vite_project_electron_main_handshake_capsuleblockindexer_blockidtoblocktype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBlockIndexer.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsuleblockindexer", + "target": "apps_electron_vite_project_electron_main_handshake_capsuleblockindexer_blockidtotitle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBlockIndexer.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsuleblockindexer", + "target": "apps_electron_vite_project_electron_main_handshake_capsuleblockindexer_indexcapsuleblocks", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBlockIndexer.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsuleblockindexer", + "target": "apps_electron_vite_project_electron_main_handshake_capsuleblockindexer_indexcapsuleblocksresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBlockIndexer.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsuleblockindexer", + "target": "apps_electron_vite_project_electron_main_handshake_capsuleblockindexer_localembeddingservice", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBlockIndexer.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsuleblockindexer", + "target": "apps_electron_vite_project_electron_main_handshake_capsuleblockindexer_reindexhandshakecapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_capsuleblockindexer", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBlockIndexer.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsuleblockindexer_localembeddingservice", + "target": "apps_electron_vite_project_electron_main_handshake_capsuleblockindexer_localembeddingservice_generateembedding", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBlockIndexer.ts", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsuleblockindexer_indexcapsuleblocks", + "target": "apps_electron_vite_project_electron_main_handshake_capsuleblockindexer_localembeddingservice_generateembedding", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBlockIndexer.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsuleblockindexer_blockidtoblocktype", + "target": "apps_electron_vite_project_electron_main_handshake_capsuleblockindexer_block_type_prefixes" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBlockIndexer.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsuleblockindexer_indexcapsuleblocks", + "target": "apps_electron_vite_project_electron_main_handshake_capsuleblockindexer_blockidtoblocktype", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBlockIndexer.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsuleblockindexer_indexcapsuleblocks", + "target": "apps_electron_vite_project_electron_main_handshake_capsuleblockindexer_blockidtotitle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBlockIndexer.ts", + "source_location": "L150", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsuleblockindexer_backfillcapsuleblocks", + "target": "apps_electron_vite_project_electron_main_handshake_capsuleblockindexer_indexcapsuleblocks", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBlockIndexer.ts", + "source_location": "L173", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsuleblockindexer_reindexhandshakecapsule", + "target": "apps_electron_vite_project_electron_main_handshake_capsuleblockindexer_indexcapsuleblocks", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_capsuleblockindexer_indexcapsuleblocks", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L600", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement_processhandshakecapsule", + "target": "apps_electron_vite_project_electron_main_handshake_capsuleblockindexer_indexcapsuleblocks" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBlockIndexer.ts", + "source_location": "L171", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsuleblockindexer_reindexhandshakecapsule", + "target": "apps_electron_vite_project_electron_main_handshake_querycache", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L784", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_acceptbuildresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L320", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_acceptoptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L639", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildacceptcapsule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L908", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildcontextsynccapsule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L1023", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildcontextsynccapsulewithcontent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L618", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildinitiatecapsule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L500", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildinitiatecapsulecore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L1170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildinitiatecapsulewithcontent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L626", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildinitiatecapsulewithkeypair", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L796", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildrefreshcapsule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L1058", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildrevokecapsule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L1154", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_canonicalizeblockids", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L452", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_contextsyncoptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L190", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_handshakecapsulewire", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L314", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_initiatebuildresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L266", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_initiateoptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_internalcapsulerelayidentityerror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_mergeinternalinitiatepairingwirefields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_mergeinternalrelaywirefields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L371", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_nextoutboundhandshakeseq", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L380", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_refreshoptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L420", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_revokeoptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L1179", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_sessiontotiersignals", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_handshake_capsulehash", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_handshake_capsulehash_capsulehashinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_handshake_capsulehash_computecapsulehash", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment_computecontextcommitment", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment_contextblockforcommitment", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment_contextblockwireproof", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment_stripcontentfromblocks", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_handshake_contexthash", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_handshake_contexthash_computecontexthash", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_handshake_contexthash_contexthashinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_handshake_contexthash_generatenonce", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncseal", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncseal_sealcontextsyncblocks", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_handshake_policyhash", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_handshake_policyhash_computepolicyhash", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_handshake_policyhash_default_policy_descriptor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_handshake_policyhash_policydescriptor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_handshake_relationshipid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_handshake_relationshipid_deriverelationshipid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_handshake_signaturekeys", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_handshake_signaturekeys_generatesigningkeypair", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_handshake_signaturekeys_signcapsulehash", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_handshake_signaturekeys_signingkeypair", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_handshake_types_receiveridentity", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_handshake_types_sharingmode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_handshake_types_ssosession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_handshake_types_tiersignals", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_sealedservicerpcenvelope", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "packages_shared_src_handshake_internalendpointvalidation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "target": "packages_shared_src_handshake_internalendpointvalidation_internal_endpoint_error_codes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleTransport.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsuletransport", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/emailTransport.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_emailtransport", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/initiatorPersist.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_initiatorpersist", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTokenBackfill.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptokenbackfill", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/revocation.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_revocation", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_internalcapsulerelayidentityerror", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_internalcapsulerelayidentityerror_constructor", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L729", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildacceptcapsule", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_mergeinternalrelaywirefields", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L997", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildcontextsynccapsule", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_mergeinternalrelaywirefields", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L888", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildrefreshcapsule", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_mergeinternalrelaywirefields", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L1135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildrevokecapsule", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_mergeinternalrelaywirefields", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L561", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildinitiatecapsulecore", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_mergeinternalinitiatepairingwirefields", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L222", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_handshakecapsulewire", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment_contextblockwireproof", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L207", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_handshakecapsulewire", + "target": "apps_electron_vite_project_electron_main_handshake_types_receiveridentity", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L219", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_handshakecapsulewire", + "target": "apps_electron_vite_project_electron_main_handshake_types_sharingmode", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L216", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_handshakecapsulewire", + "target": "apps_electron_vite_project_electron_main_handshake_types_tiersignals", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L224", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_handshakecapsulewire", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_sealedservicerpcenvelope", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleTransport.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsuletransport", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_handshakecapsulewire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/emailTransport.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_emailtransport", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_handshakecapsulewire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/initiatorPersist.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_initiatorpersist", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_handshakecapsulewire", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L284", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_initiateoptions", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment_contextblockforcommitment", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L276", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_initiateoptions", + "target": "apps_electron_vite_project_electron_main_handshake_policyhash_policydescriptor", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L316", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_initiatebuildresult", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment_contextblockforcommitment", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L317", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_initiatebuildresult", + "target": "apps_electron_vite_project_electron_main_handshake_signaturekeys_signingkeypair", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L340", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_acceptoptions", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment_contextblockforcommitment", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L334", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_acceptoptions", + "target": "apps_electron_vite_project_electron_main_handshake_policyhash_policydescriptor", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L328", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_acceptoptions", + "target": "apps_electron_vite_project_electron_main_handshake_types_sharingmode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L919", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildcontextsynccapsule", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_nextoutboundhandshakeseq", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L807", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildrefreshcapsule", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_nextoutboundhandshakeseq", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L1068", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildrevokecapsule", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_nextoutboundhandshakeseq", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L396", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_refreshoptions", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment_contextblockforcommitment", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L398", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_refreshoptions", + "target": "apps_electron_vite_project_electron_main_handshake_policyhash_policydescriptor", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L466", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_contextsyncoptions", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment_contextblockforcommitment", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L468", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_contextsyncoptions", + "target": "apps_electron_vite_project_electron_main_handshake_policyhash_policydescriptor", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L622", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildinitiatecapsule", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildinitiatecapsulecore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L514", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildinitiatecapsulecore", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_canonicalizeblockids", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L598", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildinitiatecapsulecore", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_sessiontotiersignals", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L548", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildinitiatecapsulecore", + "target": "apps_electron_vite_project_electron_main_handshake_capsulehash_computecapsulehash", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L515", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildinitiatecapsulecore", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment_computecontextcommitment", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L601", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildinitiatecapsulecore", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment_stripcontentfromblocks", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L591", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildinitiatecapsulecore", + "target": "apps_electron_vite_project_electron_main_handshake_contexthash_computecontexthash", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L512", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildinitiatecapsulecore", + "target": "apps_electron_vite_project_electron_main_handshake_contexthash_generatenonce", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L513", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildinitiatecapsulecore", + "target": "apps_electron_vite_project_electron_main_handshake_policyhash_computepolicyhash", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L506", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildinitiatecapsulecore", + "target": "apps_electron_vite_project_electron_main_handshake_relationshipid_deriverelationshipid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L549", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildinitiatecapsulecore", + "target": "apps_electron_vite_project_electron_main_handshake_signaturekeys_generatesigningkeypair", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L550", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildinitiatecapsulecore", + "target": "apps_electron_vite_project_electron_main_handshake_signaturekeys_signcapsulehash", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L554", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildinitiatecapsulecore", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L1174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildinitiatecapsulewithcontent", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildinitiatecapsulecore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L630", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildinitiatecapsulewithkeypair", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildinitiatecapsulecore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildinitiatecapsule", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L767", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildacceptcapsule", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_sessiontotiersignals", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L702", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildacceptcapsule", + "target": "apps_electron_vite_project_electron_main_handshake_capsulehash_computecapsulehash" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L770", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildacceptcapsule", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment_stripcontentfromblocks" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L759", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildacceptcapsule", + "target": "apps_electron_vite_project_electron_main_handshake_contexthash_computecontexthash" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L650", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildacceptcapsule", + "target": "apps_electron_vite_project_electron_main_handshake_contexthash_generatenonce" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L651", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildacceptcapsule", + "target": "apps_electron_vite_project_electron_main_handshake_policyhash_computepolicyhash" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L644", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildacceptcapsule", + "target": "apps_electron_vite_project_electron_main_handshake_relationshipid_deriverelationshipid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L703", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildacceptcapsule", + "target": "apps_electron_vite_project_electron_main_handshake_signaturekeys_generatesigningkeypair" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L704", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildacceptcapsule", + "target": "apps_electron_vite_project_electron_main_handshake_signaturekeys_signcapsulehash" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L724", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildacceptcapsule", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildacceptcapsule", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L2266", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildacceptcapsule" + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L786", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_acceptbuildresult", + "target": "apps_electron_vite_project_electron_main_handshake_signaturekeys_signingkeypair", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L813", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildrefreshcapsule", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_canonicalizeblockids", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L879", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildrefreshcapsule", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_sessiontotiersignals", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L849", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildrefreshcapsule", + "target": "apps_electron_vite_project_electron_main_handshake_capsulehash_computecapsulehash" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L814", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildrefreshcapsule", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment_computecontextcommitment" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L887", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildrefreshcapsule", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment_stripcontentfromblocks" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L871", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildrefreshcapsule", + "target": "apps_electron_vite_project_electron_main_handshake_contexthash_computecontexthash" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L811", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildrefreshcapsule", + "target": "apps_electron_vite_project_electron_main_handshake_contexthash_generatenonce" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L812", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildrefreshcapsule", + "target": "apps_electron_vite_project_electron_main_handshake_policyhash_computepolicyhash" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L801", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildrefreshcapsule", + "target": "apps_electron_vite_project_electron_main_handshake_relationshipid_deriverelationshipid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L850", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildrefreshcapsule", + "target": "apps_electron_vite_project_electron_main_handshake_signaturekeys_signcapsulehash" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildrefreshcapsule", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L2781", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildrefreshcapsule" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTokenBackfill.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptokenbackfill", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildrefreshcapsule", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTokenBackfill.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptokenbackfill_runactivehandshakelocalp2ptokenbackfill", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildrefreshcapsule" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L925", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildcontextsynccapsule", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_canonicalizeblockids", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L991", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildcontextsynccapsule", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_sessiontotiersignals", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L961", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildcontextsynccapsule", + "target": "apps_electron_vite_project_electron_main_handshake_capsulehash_computecapsulehash" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L926", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildcontextsynccapsule", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment_computecontextcommitment" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L996", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildcontextsynccapsule", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment_stripcontentfromblocks" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L983", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildcontextsynccapsule", + "target": "apps_electron_vite_project_electron_main_handshake_contexthash_computecontexthash" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L923", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildcontextsynccapsule", + "target": "apps_electron_vite_project_electron_main_handshake_contexthash_generatenonce" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L924", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildcontextsynccapsule", + "target": "apps_electron_vite_project_electron_main_handshake_policyhash_computepolicyhash" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L913", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildcontextsynccapsule", + "target": "apps_electron_vite_project_electron_main_handshake_relationshipid_deriverelationshipid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L962", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildcontextsynccapsule", + "target": "apps_electron_vite_project_electron_main_handshake_signaturekeys_signcapsulehash" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L1027", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildcontextsynccapsulewithcontent", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildcontextsynccapsule", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L1028", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildcontextsynccapsulewithcontent", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_canonicalizeblockids", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L1036", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildcontextsynccapsulewithcontent", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncseal_sealcontextsyncblocks" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildcontextsynccapsulewithcontent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L213", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_tryenqueuecontextsync", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildcontextsynccapsulewithcontent" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildcontextsynccapsulewithcontent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildcontextsynccapsulewithcontent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L371", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull_pullfromrelay", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildcontextsynccapsulewithcontent" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L1131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildrevokecapsule", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_sessiontotiersignals", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L1085", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildrevokecapsule", + "target": "apps_electron_vite_project_electron_main_handshake_capsulehash_computecapsulehash" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L1124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildrevokecapsule", + "target": "apps_electron_vite_project_electron_main_handshake_contexthash_computecontexthash" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L1072", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildrevokecapsule", + "target": "apps_electron_vite_project_electron_main_handshake_contexthash_generatenonce" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L1063", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildrevokecapsule", + "target": "apps_electron_vite_project_electron_main_handshake_relationshipid_deriverelationshipid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L1086", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildrevokecapsule", + "target": "apps_electron_vite_project_electron_main_handshake_signaturekeys_signcapsulehash" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/revocation.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_revocation", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildrevokecapsule", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/revocation.ts", + "source_location": "L142", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_revocation_revokehandshake", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildrevokecapsule" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts", + "source_location": "L1175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildinitiatecapsulewithcontent", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_canonicalizeblockids", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildinitiatecapsulewithcontent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L1424", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_capsulebuilder_buildinitiatecapsulewithcontent" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleHash.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulehash", + "target": "apps_electron_vite_project_electron_main_handshake_capsulehash_capsulehashinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleHash.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsulehash", + "target": "apps_electron_vite_project_electron_main_handshake_capsulehash_computecapsulehash", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeVerification.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeverification", + "target": "apps_electron_vite_project_electron_main_handshake_capsulehash", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/verifyCapsuleHash.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_verifycapsulehash", + "target": "apps_electron_vite_project_electron_main_handshake_capsulehash", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeVerification.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeverification", + "target": "apps_electron_vite_project_electron_main_handshake_capsulehash_capsulehashinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/verifyCapsuleHash.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_verifycapsulehash", + "target": "apps_electron_vite_project_electron_main_handshake_capsulehash_capsulehashinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeVerification.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeverification", + "target": "apps_electron_vite_project_electron_main_handshake_capsulehash_computecapsulehash", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeVerification.ts", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeverification_verifyhandshakecapsule", + "target": "apps_electron_vite_project_electron_main_handshake_capsulehash_computecapsulehash" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/verifyCapsuleHash.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_verifycapsulehash", + "target": "apps_electron_vite_project_electron_main_handshake_capsulehash_computecapsulehash", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/verifyCapsuleHash.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_verifycapsulehash_verifycapsulehashintegrity", + "target": "apps_electron_vite_project_electron_main_handshake_capsulehash_computecapsulehash" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleTransport.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsuletransport", + "target": "apps_electron_vite_project_electron_main_handshake_capsuletransport_deserializecapsuletorawinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleTransport.ts", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsuletransport", + "target": "apps_electron_vite_project_electron_main_handshake_capsuletransport_serializecapsule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleTransport.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsuletransport", + "target": "apps_electron_vite_project_electron_main_handshake_capsuletransport_submitcapsuleviarpc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleTransport.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsuletransport", + "target": "apps_electron_vite_project_electron_main_handshake_capsuletransport_submitresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleTransport.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsuletransport", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleTransport.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsuletransport", + "target": "apps_electron_vite_project_electron_main_handshake_types_ssosession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleTransport.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsuletransport", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleTransport.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsuletransport", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc_handleingestionrpc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleTransport.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsuletransport", + "target": "apps_electron_vite_project_electron_main_ingestion_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleTransport.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsuletransport", + "target": "apps_electron_vite_project_electron_main_ingestion_types_rawinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleTransport.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsuletransport", + "target": "apps_electron_vite_project_electron_main_ingestion_types_sourcetype", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/emailTransport.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_emailtransport", + "target": "apps_electron_vite_project_electron_main_handshake_capsuletransport", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_capsuletransport", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/capsuleTransport.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_capsuletransport_submitcapsuleviarpc", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc_handleingestionrpc" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_capsuletransport_submitcapsuleviarpc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L2406", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_capsuletransport_submitcapsuleviarpc" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/emailTransport.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_emailtransport", + "target": "apps_electron_vite_project_electron_main_handshake_capsuletransport_serializecapsule", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/emailTransport.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_emailtransport_sendcapsuleviaemail", + "target": "apps_electron_vite_project_electron_main_handshake_capsuletransport_serializecapsule" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/cloudSnippet.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_cloudsnippet", + "target": "apps_electron_vite_project_electron_main_handshake_cloudsnippet_buildcloudsnippet", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/cloudSnippet.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_cloudsnippet", + "target": "apps_electron_vite_project_electron_main_handshake_cloudsnippet_signature_separators", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_index", + "target": "apps_electron_vite_project_electron_main_handshake_cloudsnippet", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_index", + "target": "apps_electron_vite_project_electron_main_handshake_cloudsnippet_buildcloudsnippet", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextBlocks.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextblocks", + "target": "apps_electron_vite_project_electron_main_handshake_contextblocks_getblockcountforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextBlocks.ts", + "source_location": "L155", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextblocks", + "target": "apps_electron_vite_project_electron_main_handshake_contextblocks_getpendingembeddingblocks", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextBlocks.ts", + "source_location": "L181", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextblocks", + "target": "apps_electron_vite_project_electron_main_handshake_contextblocks_markembeddingcomplete", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextBlocks.ts", + "source_location": "L193", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextblocks", + "target": "apps_electron_vite_project_electron_main_handshake_contextblocks_markembeddingfailed", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextBlocks.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextblocks", + "target": "apps_electron_vite_project_electron_main_handshake_contextblocks_persistcontextblocks", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextBlocks.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextblocks", + "target": "apps_electron_vite_project_electron_main_handshake_contextblocks_querycontextblocks", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextBlocks.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextblocks", + "target": "apps_electron_vite_project_electron_main_handshake_contextblocks_querycontextblockswithgovernance", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextBlocks.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextblocks", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextBlocks.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextblocks", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_legacyblockinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextBlocks.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextblocks", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_parsegovernancejson", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextBlocks.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextblocks", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_resolveeffectivegovernance", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextBlocks.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextblocks", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextBlocks.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextblocks", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextBlocks.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextblocks", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextBlocks.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextblocks", + "target": "apps_electron_vite_project_electron_main_handshake_types_contextblock", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextBlocks.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextblocks", + "target": "apps_electron_vite_project_electron_main_handshake_types_contextblockinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextBlocks.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextblocks", + "target": "apps_electron_vite_project_electron_main_handshake_types_persistresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextBlocks.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextblocks", + "target": "apps_electron_vite_project_electron_main_handshake_visibilityfilter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextBlocks.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextblocks", + "target": "apps_electron_vite_project_electron_main_handshake_visibilityfilter_isvaultcurrentlyunlocked", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextBlocks.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextblocks", + "target": "apps_electron_vite_project_electron_main_handshake_visibilityfilter_visibilitywhereclause", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue", + "target": "apps_electron_vite_project_electron_main_handshake_contextblocks", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_embeddings", + "target": "apps_electron_vite_project_electron_main_handshake_contextblocks", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/index.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_index", + "target": "apps_electron_vite_project_electron_main_handshake_contextblocks", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_contextblocks", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue", + "target": "apps_electron_vite_project_electron_main_handshake_contextblocks_persistcontextblocks", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L204", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_tryenqueuecontextsync", + "target": "apps_electron_vite_project_electron_main_handshake_contextblocks_persistcontextblocks" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/index.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_index", + "target": "apps_electron_vite_project_electron_main_handshake_contextblocks_persistcontextblocks", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/contextBlocks.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextblocks_querycontextblocks", + "target": "apps_electron_vite_project_electron_main_handshake_visibilityfilter_isvaultcurrentlyunlocked" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/contextBlocks.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextblocks_querycontextblocks", + "target": "apps_electron_vite_project_electron_main_handshake_visibilityfilter_visibilitywhereclause" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextBlocks.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextblocks_querycontextblockswithgovernance", + "target": "apps_electron_vite_project_electron_main_handshake_contextblocks_querycontextblocks", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/index.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_index", + "target": "apps_electron_vite_project_electron_main_handshake_contextblocks_querycontextblocks", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_contextblocks_querycontextblocks", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L2158", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_contextblocks_querycontextblocks" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/contextBlocks.ts", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextblocks_querycontextblockswithgovernance", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_parsegovernancejson" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/contextBlocks.ts", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextblocks_querycontextblockswithgovernance", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_resolveeffectivegovernance" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/contextBlocks.ts", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextblocks_querycontextblockswithgovernance", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_contextblocks_querycontextblockswithgovernance", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L753", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_contextblocks_querycontextblockswithgovernance" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L3496", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_registerhandshakeroutes", + "target": "apps_electron_vite_project_electron_main_handshake_contextblocks_querycontextblockswithgovernance" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/contextBlocks.ts", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextblocks_getblockcountforhandshake", + "target": "apps_electron_vite_project_electron_main_handshake_visibilityfilter_isvaultcurrentlyunlocked" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/contextBlocks.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextblocks_getblockcountforhandshake", + "target": "apps_electron_vite_project_electron_main_handshake_visibilityfilter_visibilitywhereclause" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_embeddings", + "target": "apps_electron_vite_project_electron_main_handshake_contextblocks_getpendingembeddingblocks", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_embeddings_processembeddingqueue", + "target": "apps_electron_vite_project_electron_main_handshake_contextblocks_getpendingembeddingblocks" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_embeddings", + "target": "apps_electron_vite_project_electron_main_handshake_contextblocks_markembeddingcomplete", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_embeddings_processembeddingqueue", + "target": "apps_electron_vite_project_electron_main_handshake_contextblocks_markembeddingcomplete" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_embeddings", + "target": "apps_electron_vite_project_electron_main_handshake_contextblocks_markembeddingfailed", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_embeddings_processembeddingqueue", + "target": "apps_electron_vite_project_electron_main_handshake_contextblocks_markembeddingfailed" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextCommitment.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextcommitment", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment_computeblockhash", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextCommitment.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextcommitment", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment_computecontextcommitment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextCommitment.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextcommitment", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment_contextblockforcommitment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextCommitment.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextcommitment", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment_contextblockwireproof", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextCommitment.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextcommitment", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment_stripcontentfromblocks", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextCommitment.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextcommitment", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment_verifycontextcommitment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextIngestion.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextingestion", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncSeal.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncseal", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeVerification.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeverification", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/initiatorPersist.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_initiatorpersist", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L2197", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextIngestion.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextingestion", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment_contextblockforcommitment", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextIngestion.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextingestion_contextingestioninput", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment_contextblockforcommitment", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment_contextblockforcommitment", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncSeal.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncseal", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment_contextblockforcommitment", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeVerification.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeverification", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment_contextblockforcommitment", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeVerification.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeverification_handshakecapsulefields", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment_contextblockforcommitment", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/initiatorPersist.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_initiatorpersist", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment_contextblockforcommitment", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment_contextblockforcommitment", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L470", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_buildblocksresult", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment_contextblockforcommitment", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L463", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_rawblockwithpolicy", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment_contextblockforcommitment", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment_contextblockforcommitment", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextIngestion.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextingestion", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment_computeblockhash", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/contextIngestion.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextingestion_ingestcontextblocks", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment_computeblockhash" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment_computeblockhash", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L508", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_buildcontextblocksfromparamswithpolicy", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment_computeblockhash", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L624", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_resolveprofileidstocontextblocks", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment_computeblockhash", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextCommitment.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextcommitment_verifycontextcommitment", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment_computecontextcommitment", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextIngestion.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextingestion", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment_verifycontextcommitment", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/contextIngestion.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextingestion_ingestcontextblocks", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment_verifycontextcommitment" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeVerification.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeverification", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment_verifycontextcommitment", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeVerification.ts", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeverification_verifyhandshakecapsule", + "target": "apps_electron_vite_project_electron_main_handshake_contextcommitment_verifycontextcommitment" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextgovernance", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_baselinefromhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextgovernance", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_baselinefrompolicyselections", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextgovernance", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_block_type_to_content_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L204", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextgovernance", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_blockwithgovernance", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextgovernance", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_data_classification_to_sensitivity", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L285", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextgovernance", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_filterblocksforautoreply", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L250", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextgovernance", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_filterblocksforcloudai", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L259", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextgovernance", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_filterblocksforexport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L242", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextgovernance", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_filterblocksforlocalai", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L276", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextgovernance", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_filterblocksforpeertransmission", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L268", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextgovernance", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_filterblocksforsearch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextgovernance", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_handshakebaselinepolicy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextgovernance", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_infergovernancefromlegacy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L227", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextgovernance", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_itemallowsusage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextgovernance", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_legacyblockinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextgovernance", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_parsegovernancejson", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextgovernance", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_resolveeffectivegovernance", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L214", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextgovernance", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_resolveeffectiveusagepolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextgovernance", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextgovernance", + "target": "apps_electron_vite_project_electron_main_handshake_types_dataclassification", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextgovernance", + "target": "apps_electron_vite_project_electron_main_handshake_types_effectivepolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextgovernance", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextgovernance", + "target": "packages_shared_src_handshake_contextgovernance", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextgovernance", + "target": "packages_shared_src_handshake_contextgovernance_contenttype", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextgovernance", + "target": "packages_shared_src_handshake_contextgovernance_contextitemgovernance", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextgovernance", + "target": "packages_shared_src_handshake_contextgovernance_contextorigin", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextgovernance", + "target": "packages_shared_src_handshake_contextgovernance_contextprovenance", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextgovernance", + "target": "packages_shared_src_handshake_contextgovernance_contextverification", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextgovernance", + "target": "packages_shared_src_handshake_contextgovernance_createdefaultgovernance", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextgovernance", + "target": "packages_shared_src_handshake_contextgovernance_createmessagegovernance", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextgovernance", + "target": "packages_shared_src_handshake_contextgovernance_default_usage_policy", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextgovernance", + "target": "packages_shared_src_handshake_contextgovernance_message_default_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextgovernance", + "target": "packages_shared_src_handshake_contextgovernance_sensitivity", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextgovernance", + "target": "packages_shared_src_handshake_contextgovernance_usagepolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextgovernance", + "target": "packages_shared_src_handshake_policyutils", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextgovernance", + "target": "packages_shared_src_handshake_policyutils_default_ai_processing_mode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextgovernance", + "target": "packages_shared_src_handshake_policyutils_legacypolicyselection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextgovernance", + "target": "packages_shared_src_handshake_policyutils_modetousageflags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextgovernance", + "target": "packages_shared_src_handshake_policyutils_parsepolicytomode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextgovernance", + "target": "packages_shared_src_handshake_types_aiprocessingmode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextIngestion.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextingestion", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_embeddings", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/initiatorPersist.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_initiatorpersist", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L3006", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/keywordSearch.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_keywordsearch", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextgovernance_baselinefromhandshake", + "target": "packages_shared_src_handshake_policyutils_modetousageflags" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextgovernance_baselinefromhandshake", + "target": "packages_shared_src_handshake_policyutils_parsepolicytomode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L158", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextgovernance_infergovernancefromlegacy", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_baselinefromhandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_baselinefromhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L153", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_tryenqueuecontextsync", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_baselinefromhandshake" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_embeddings", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_baselinefromhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_embeddings_processembeddingqueue", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_baselinefromhandshake" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L249", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_embeddings_semanticsearch", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_baselinefromhandshake" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/initiatorPersist.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_initiatorpersist", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_baselinefromhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/initiatorPersist.ts", + "source_location": "L169", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_initiatorpersist_persistinitiatorhandshakerecord", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_baselinefromhandshake" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_baselinefromhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L755", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_baselinefromhandshake" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L3498", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_registerhandshakeroutes", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_baselinefromhandshake" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/keywordSearch.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_keywordsearch", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_baselinefromhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/keywordSearch.ts", + "source_location": "L171", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_keywordsearch_keywordsearch", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_baselinefromhandshake" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextgovernance_baselinefrompolicyselections", + "target": "packages_shared_src_handshake_policyutils_modetousageflags" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextgovernance_baselinefrompolicyselections", + "target": "packages_shared_src_handshake_policyutils_parsepolicytomode" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/initiatorPersist.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_initiatorpersist", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_baselinefrompolicyselections", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/initiatorPersist.ts", + "source_location": "L168", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_initiatorpersist_persistinitiatorhandshakerecord", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_baselinefrompolicyselections" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_baselinefrompolicyselections", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L2323", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_baselinefrompolicyselections" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_parsegovernancejson", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L165", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_tryenqueuecontextsync", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_parsegovernancejson" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_embeddings", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_parsegovernancejson", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_embeddings_processembeddingqueue", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_parsegovernancejson" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L247", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_embeddings_semanticsearch", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_parsegovernancejson" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L3012", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_parsegovernancejson" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/keywordSearch.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_keywordsearch", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_parsegovernancejson", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/keywordSearch.ts", + "source_location": "L169", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_keywordsearch_keywordsearch", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_parsegovernancejson" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextIngestion.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextingestion", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_legacyblockinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_legacyblockinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_embeddings", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_legacyblockinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/keywordSearch.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_keywordsearch", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_legacyblockinput", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L197", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextgovernance_resolveeffectivegovernance", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_infergovernancefromlegacy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextIngestion.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextingestion", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_infergovernancefromlegacy", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/contextIngestion.ts", + "source_location": "L159", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextingestion_ingestcontextblocks", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_infergovernancefromlegacy" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_resolveeffectivegovernance", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L166", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_tryenqueuecontextsync", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_resolveeffectivegovernance" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_embeddings", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_resolveeffectivegovernance", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_embeddings_processembeddingqueue", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_resolveeffectivegovernance" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L248", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_embeddings_semanticsearch", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_resolveeffectivegovernance" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L3022", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_resolveeffectivegovernance" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/keywordSearch.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_keywordsearch", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_resolveeffectivegovernance", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/keywordSearch.ts", + "source_location": "L170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_keywordsearch_keywordsearch", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_resolveeffectivegovernance" + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L205", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextgovernance_blockwithgovernance", + "target": "packages_shared_src_handshake_contextgovernance_contextitemgovernance", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L233", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextgovernance_itemallowsusage", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_resolveeffectiveusagepolicy", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L290", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextgovernance_filterblocksforautoreply", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_itemallowsusage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L255", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextgovernance_filterblocksforcloudai", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_itemallowsusage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L264", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextgovernance_filterblocksforexport", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_itemallowsusage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L246", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextgovernance_filterblocksforlocalai", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_itemallowsusage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L281", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextgovernance_filterblocksforpeertransmission", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_itemallowsusage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts", + "source_location": "L272", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextgovernance_filterblocksforsearch", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_itemallowsusage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_filterblocksforlocalai", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L757", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_filterblocksforlocalai" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L3499", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_registerhandshakeroutes", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_filterblocksforlocalai" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_filterblocksforcloudai", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L759", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_filterblocksforcloudai" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L3500", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_registerhandshakeroutes", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_filterblocksforcloudai" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_filterblocksforexport", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L761", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_filterblocksforexport" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L3501", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_registerhandshakeroutes", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_filterblocksforexport" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_embeddings", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_filterblocksforsearch", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_embeddings_processembeddingqueue", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_filterblocksforsearch" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L250", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_embeddings_semanticsearch", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_filterblocksforsearch" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_filterblocksforsearch", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L763", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_filterblocksforsearch" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L3502", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_registerhandshakeroutes", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_filterblocksforsearch" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/keywordSearch.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_keywordsearch", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_filterblocksforsearch", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/keywordSearch.ts", + "source_location": "L172", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_keywordsearch_keywordsearch", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_filterblocksforsearch" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_filterblocksforpeertransmission", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L154", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_tryenqueuecontextsync", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_filterblocksforpeertransmission" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_filterblocksforpeertransmission", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L765", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_filterblocksforpeertransmission" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L3503", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_registerhandshakeroutes", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_filterblocksforpeertransmission" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_filterblocksforautoreply", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L767", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_filterblocksforautoreply" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L3504", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_registerhandshakeroutes", + "target": "apps_electron_vite_project_electron_main_handshake_contextgovernance_filterblocksforautoreply" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextHash.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contexthash", + "target": "apps_electron_vite_project_electron_main_handshake_contexthash_buildcanonicalcontextpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextHash.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contexthash", + "target": "apps_electron_vite_project_electron_main_handshake_contexthash_computecontexthash", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextHash.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contexthash", + "target": "apps_electron_vite_project_electron_main_handshake_contexthash_contexthashinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextHash.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contexthash", + "target": "apps_electron_vite_project_electron_main_handshake_contexthash_contexthashverificationresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextHash.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contexthash", + "target": "apps_electron_vite_project_electron_main_handshake_contexthash_generatenonce", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextHash.ts", + "source_location": "L205", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contexthash", + "target": "apps_electron_vite_project_electron_main_handshake_contexthash_timingsafeequal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextHash.ts", + "source_location": "L192", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contexthash", + "target": "apps_electron_vite_project_electron_main_handshake_contexthash_validatenonce", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextHash.ts", + "source_location": "L166", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contexthash", + "target": "apps_electron_vite_project_electron_main_handshake_contexthash_validatetimestamp", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextHash.ts", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contexthash", + "target": "apps_electron_vite_project_electron_main_handshake_contexthash_verifycontexthash", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeVerification.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeverification", + "target": "apps_electron_vite_project_electron_main_handshake_contexthash", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/verifyContextHash.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_verifycontexthash", + "target": "apps_electron_vite_project_electron_main_handshake_contexthash", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeVerification.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeverification", + "target": "apps_electron_vite_project_electron_main_handshake_contexthash_contexthashinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/verifyContextHash.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_verifycontexthash", + "target": "apps_electron_vite_project_electron_main_handshake_contexthash_contexthashinput", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextHash.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contexthash_computecontexthash", + "target": "apps_electron_vite_project_electron_main_handshake_contexthash_buildcanonicalcontextpayload", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextHash.ts", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contexthash_verifycontexthash", + "target": "apps_electron_vite_project_electron_main_handshake_contexthash_computecontexthash", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextHash.ts", + "source_location": "L151", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contexthash_verifycontexthash", + "target": "apps_electron_vite_project_electron_main_handshake_contexthash_timingsafeequal", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeVerification.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeverification", + "target": "apps_electron_vite_project_electron_main_handshake_contexthash_verifycontexthash", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeVerification.ts", + "source_location": "L142", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeverification_verifyhandshakecapsule", + "target": "apps_electron_vite_project_electron_main_handshake_contexthash_verifycontexthash" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/verifyContextHash.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_verifycontexthash", + "target": "apps_electron_vite_project_electron_main_handshake_contexthash_verifycontexthash", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeVerification.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeverification", + "target": "apps_electron_vite_project_electron_main_handshake_contexthash_validatetimestamp", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeVerification.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeverification_verifyhandshakecapsule", + "target": "apps_electron_vite_project_electron_main_handshake_contexthash_validatetimestamp" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeVerification.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeverification", + "target": "apps_electron_vite_project_electron_main_handshake_contexthash_validatenonce", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeVerification.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeverification_verifyhandshakecapsule", + "target": "apps_electron_vite_project_electron_main_handshake_contexthash_validatenonce" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextIngestion.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextingestion", + "target": "apps_electron_vite_project_electron_main_handshake_contextingestion_contextingestioninput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextIngestion.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextingestion", + "target": "apps_electron_vite_project_electron_main_handshake_contextingestion_contextingestionresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextIngestion.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextingestion", + "target": "apps_electron_vite_project_electron_main_handshake_contextingestion_ingestcontextblocks", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextIngestion.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextingestion", + "target": "apps_electron_vite_project_electron_main_handshake_contextingestion_parsevaultprofilesensitive", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextIngestion.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextingestion", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextIngestion.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextingestion", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextIngestion.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextingestion", + "target": "apps_electron_vite_project_electron_main_handshake_db_upsertcontextblockversion", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextIngestion.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextingestion", + "target": "apps_electron_vite_project_electron_main_handshake_querycache", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextIngestion.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextingestion", + "target": "apps_electron_vite_project_electron_main_handshake_querycache_invalidatebyhandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextIngestion.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextingestion", + "target": "apps_electron_vite_project_electron_main_handshake_querycache_invalidatebyrelationship", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_contextingestion", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextIngestion.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextingestion_ingestcontextblocks", + "target": "apps_electron_vite_project_electron_main_handshake_contextingestion_parsevaultprofilesensitive", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/contextIngestion.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextingestion_ingestcontextblocks", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/contextIngestion.ts", + "source_location": "L197", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextingestion_ingestcontextblocks", + "target": "apps_electron_vite_project_electron_main_handshake_db_upsertcontextblockversion" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/contextIngestion.ts", + "source_location": "L204", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextingestion_ingestcontextblocks", + "target": "apps_electron_vite_project_electron_main_handshake_querycache_invalidatebyhandshake" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/contextIngestion.ts", + "source_location": "L205", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextingestion_ingestcontextblocks", + "target": "apps_electron_vite_project_electron_main_handshake_querycache_invalidatebyrelationship" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_contextingestion_ingestcontextblocks", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L566", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement_processhandshakecapsule", + "target": "apps_electron_vite_project_electron_main_handshake_contextingestion_ingestcontextblocks" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextRetrievalTypes.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextretrievaltypes", + "target": "apps_electron_vite_project_electron_main_handshake_contextretrievaltypes_contextretrievalmode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextRetrievalTypes.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextretrievaltypes", + "target": "apps_electron_vite_project_electron_main_handshake_contextretrievaltypes_contextretrievalresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextRetrievalTypes.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextretrievaltypes", + "target": "apps_electron_vite_project_electron_main_handshake_contextretrievaltypes_semantic_search_log_tag", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/hybridSearch.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_hybridsearch", + "target": "apps_electron_vite_project_electron_main_handshake_contextretrievaltypes", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/index.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_index", + "target": "apps_electron_vite_project_electron_main_handshake_contextretrievaltypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/intentExecution.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_intentexecution", + "target": "apps_electron_vite_project_electron_main_handshake_contextretrievaltypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_contextretrievaltypes", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/index.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_index", + "target": "apps_electron_vite_project_electron_main_handshake_contextretrievaltypes_contextretrievalmode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/hybridSearch.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_hybridsearch", + "target": "apps_electron_vite_project_electron_main_handshake_contextretrievaltypes_contextretrievalresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/hybridSearch.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_hybridsearch_hybridsearchresult", + "target": "apps_electron_vite_project_electron_main_handshake_contextretrievaltypes_contextretrievalresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/index.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_index", + "target": "apps_electron_vite_project_electron_main_handshake_contextretrievaltypes_contextretrievalresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/intentExecution.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_intentexecution", + "target": "apps_electron_vite_project_electron_main_handshake_contextretrievaltypes_contextretrievalresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/intentExecution.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_intentexecution_structuredexecutionresult", + "target": "apps_electron_vite_project_electron_main_handshake_contextretrievaltypes_contextretrievalresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/hybridSearch.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_hybridsearch", + "target": "apps_electron_vite_project_electron_main_handshake_contextretrievaltypes_semantic_search_log_tag", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/intentExecution.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_intentexecution", + "target": "apps_electron_vite_project_electron_main_handshake_contextretrievaltypes_semantic_search_log_tag", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_contextretrievaltypes_semantic_search_log_tag", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncActiveGate.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncactivegate", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncactivegate_getnextstateafterinboundcontextsync", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncActiveGate.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncactivegate", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncActiveGate.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncactivegate", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncActiveGate.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncactivegate", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncactivegate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncactivegate_getnextstateafterinboundcontextsync", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L1056", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement_buildcontextsyncrecord", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncactivegate_getnextstateafterinboundcontextsync", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L401", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_completependingcontextsyncs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L284", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_maybeenqueueinitialcontextsyncafterinboundaccept", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L371", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_retrydeferredinitialcontextsyncforinternalhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_tryenqueuecontextsync", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_tryenqueuecontextsyncopts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_tryenqueuecontextsyncresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue", + "target": "apps_electron_vite_project_electron_main_handshake_db_getcontextstorebyhandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakecontextsyncenqueued", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakecontextsyncpending", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue", + "target": "apps_electron_vite_project_electron_main_handshake_internalcoordinationwire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue", + "target": "apps_electron_vite_project_electron_main_handshake_internalcoordinationwire_internalrelaycapsulewireoptsfromrecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue", + "target": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue", + "target": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_formatlocalinternalrelayvalidationjson", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_enqueueoutboundcapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_logprocessoutboundqueuefailure", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_processoutboundqueue", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue", + "target": "apps_electron_vite_project_electron_main_handshake_types_contextblockinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakeprocessresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue", + "target": "apps_electron_vite_project_electron_main_handshake_types_ssosession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_geteffectiverelayendpoint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_getp2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue", + "target": "apps_electron_vite_project_electron_main_vault_vaultcanon", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue", + "target": "apps_electron_vite_project_electron_main_vault_vaultcanon_isinnervaultunlocked", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L601", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_handlecoordinationoutbound403", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationHandshakePostIngest.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationhandshakepostingest", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L410", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_completependingcontextsyncs", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_tryenqueuecontextsync", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L339", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_maybeenqueueinitialcontextsyncafterinboundaccept", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_tryenqueuecontextsync", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L383", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_retrydeferredinitialcontextsyncforinternalhandshake", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_tryenqueuecontextsync", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L150", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_tryenqueuecontextsync", + "target": "apps_electron_vite_project_electron_main_handshake_db_getcontextstorebyhandshake" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_tryenqueuecontextsync", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L266", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_tryenqueuecontextsync", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakecontextsyncenqueued" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_tryenqueuecontextsync", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakecontextsyncpending" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_tryenqueuecontextsync", + "target": "apps_electron_vite_project_electron_main_handshake_internalcoordinationwire_internalrelaycapsulewireoptsfromrecord" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L255", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_tryenqueuecontextsync", + "target": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_formatlocalinternalrelayvalidationjson" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L253", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_tryenqueuecontextsync", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_enqueueoutboundcapsule" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_tryenqueuecontextsync", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_tryenqueuecontextsync", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_geteffectiverelayendpoint" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_tryenqueuecontextsync", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_getp2pconfig" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_tryenqueuecontextsync", + "target": "apps_electron_vite_project_electron_main_vault_vaultcanon_isinnervaultunlocked" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_tryenqueuecontextsync", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L2606", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_tryenqueuecontextsync" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L349", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_maybeenqueueinitialcontextsyncafterinboundaccept", + "target": "apps_electron_vite_project_electron_main_handshake_ipc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L351", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_maybeenqueueinitialcontextsyncafterinboundaccept", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_logprocessoutboundqueuefailure" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L350", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_maybeenqueueinitialcontextsyncafterinboundaccept", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_processoutboundqueue" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_maybeenqueueinitialcontextsyncafterinboundaccept", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L168", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc_handleingestionrpc", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_maybeenqueueinitialcontextsyncafterinboundaccept" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L329", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc_registeringestionroutes", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_maybeenqueueinitialcontextsyncafterinboundaccept" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationHandshakePostIngest.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationhandshakepostingest", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_maybeenqueueinitialcontextsyncafterinboundaccept", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_maybeenqueueinitialcontextsyncafterinboundaccept", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L509", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws_processcapsuleinternal", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_maybeenqueueinitialcontextsyncafterinboundaccept", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_maybeenqueueinitialcontextsyncafterinboundaccept", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L324", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull_pullfromrelay", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_maybeenqueueinitialcontextsyncafterinboundaccept" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L378", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_retrydeferredinitialcontextsyncforinternalhandshake", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L390", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_retrydeferredinitialcontextsyncforinternalhandshake", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_logprocessoutboundqueuefailure" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L389", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_retrydeferredinitialcontextsyncforinternalhandshake", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_processoutboundqueue" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_retrydeferredinitialcontextsyncforinternalhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L1000", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement_scheduleinternalinitiatorpostacceptcoordinationrepair", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_retrydeferredinitialcontextsyncforinternalhandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_retrydeferredinitialcontextsyncforinternalhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L1520", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_retrydeferredinitialcontextsyncforinternalhandshake" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_retrydeferredinitialcontextsyncforinternalhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L575", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws_processcapsuleinternal", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_retrydeferredinitialcontextsyncforinternalhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts", + "source_location": "L417", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncenqueue_completependingcontextsyncs", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncSeal.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncseal", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncseal_contextsynclocalrole", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncSeal.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncseal", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncseal_opencontextsyncblocks", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncSeal.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncseal", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncseal_opencontextsyncresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncSeal.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncseal", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncseal_rolelabels", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncSeal.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncseal", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncseal_sealcontextsyncblocks", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncSeal.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncseal", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncseal_sealcontextsyncresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncSeal.ts", + "source_location": "L137", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncseal", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncseal_unsealcontextsynccapsuleifneeded", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncSeal.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncseal", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncSeal.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncseal", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncSeal.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncseal", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncSeal.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncseal", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_openservicerpcpayloadresolvinglocalkey", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncSeal.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncseal", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_sealedservicerpcenvelope", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncSeal.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncseal", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_sealservicerpcpayload", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncseal", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncseal", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncseal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncSeal.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncseal_sealcontextsyncblocks", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncseal_rolelabels", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncSeal.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncseal_sealcontextsyncblocks", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_sealservicerpcpayload" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncSeal.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncseal_opencontextsyncblocks", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_openservicerpcpayloadresolvinglocalkey" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/contextSyncSeal.ts", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_contextsyncseal_unsealcontextsynccapsuleifneeded", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncseal_opencontextsyncblocks", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncseal_unsealcontextsynccapsuleifneeded", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc_handleingestionrpc", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncseal_unsealcontextsynccapsuleifneeded" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L306", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc_registeringestionroutes", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncseal_unsealcontextsynccapsuleifneeded" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncseal_unsealcontextsynccapsuleifneeded", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L482", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws_processcapsuleinternal", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncseal_unsealcontextsynccapsuleifneeded", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncseal_unsealcontextsynccapsuleifneeded", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L305", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull_pullfromrelay", + "target": "apps_electron_vite_project_electron_main_handshake_contextsyncseal_unsealcontextsynccapsuleifneeded" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/counterpartyRepair.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair", + "target": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair_buildinspectrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/counterpartyRepair.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair", + "target": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair_collectsenderkeysforcapsuletype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/counterpartyRepair.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair", + "target": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair_counterpartyinspectrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/counterpartyRepair.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair", + "target": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair_isvalided25519hex64", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/counterpartyRepair.ts", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair", + "target": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair_plancounterpartyrepair", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/counterpartyRepair.ts", + "source_location": "L193", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair", + "target": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair_printinspectline", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/counterpartyRepair.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair", + "target": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair_repairplanresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/counterpartyRepair.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair", + "target": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair_tryresolveremotefromp2ppackages", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/counterpartyRepair.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair", + "target": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair_uniquesorted", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/counterpartyRepair.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair", + "target": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair_visitjson", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/counterpartyRepair.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/counterpartyRepair.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/repair-handshake-counterparty.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_repair_handshake_counterparty", + "target": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/counterpartyRepair.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair_buildinspectrow", + "target": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair_isvalided25519hex64", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/counterpartyRepair.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair_collectsenderkeysforcapsuletype", + "target": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair_isvalided25519hex64", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/counterpartyRepair.ts", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair_plancounterpartyrepair", + "target": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair_isvalided25519hex64", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/counterpartyRepair.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair_tryresolveremotefromp2ppackages", + "target": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair_isvalided25519hex64", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/counterpartyRepair.ts", + "source_location": "L134", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair_plancounterpartyrepair", + "target": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair_buildinspectrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/repair-handshake-counterparty.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_repair_handshake_counterparty", + "target": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair_buildinspectrow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/repair-handshake-counterparty.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_repair_handshake_counterparty_main", + "target": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair_buildinspectrow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/counterpartyRepair.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair_collectsenderkeysforcapsuletype", + "target": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair_visitjson", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/counterpartyRepair.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair_tryresolveremotefromp2ppackages", + "target": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair_collectsenderkeysforcapsuletype", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/counterpartyRepair.ts", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair_tryresolveremotefromp2ppackages", + "target": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair_uniquesorted", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/counterpartyRepair.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair_plancounterpartyrepair", + "target": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair_tryresolveremotefromp2ppackages", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/repair-handshake-counterparty.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_repair_handshake_counterparty", + "target": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair_plancounterpartyrepair", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/repair-handshake-counterparty.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_repair_handshake_counterparty_main", + "target": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair_plancounterpartyrepair", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/repair-handshake-counterparty.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_repair_handshake_counterparty", + "target": "apps_electron_vite_project_electron_main_handshake_counterpartyrepair_printinspectline", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1518", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_db_backfilllocalx25519publickey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2372", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_db_contextstoreentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2320", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_db_deleteblocksbyhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2333", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_db_deleteembeddingsbyhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2346", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_db_deletehandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2260", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_db_deletependingp2pbeap", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1686", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_db_deserializehandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1240", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_db_email_pipeline_column_repairs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1374", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_db_email_pipeline_index_repairs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1417", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_db_ensureemailpipelineschemarepairs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2286", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_db_expireactivehandshakes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2281", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_db_expirependinghandshakes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1405", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_db_getcolumnnames", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2091", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_db_getcontextblockversions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2425", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_db_getcontextstorebyhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2067", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_db_getexistinghandshakesforlookup", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1957", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakeidbycounterpartyp2ptoken", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1951", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2001", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_db_getp2ppendingpackagejsonsforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2227", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_db_getpendingp2pbeapmessages", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2076", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_db_getseencapsulehashes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_db_handshake_migrations", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2125", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_db_insertauditlogentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2388", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_db_insertcontextstoreentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1826", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_db_inserthandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_db_insertpendingp2pbeap", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2083", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_db_insertseencapsulehash", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2042", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_db_listhandshakerecords", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2297", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_db_markcontextblocksinactivebyhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2253", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_db_markp2ppendingbeapprocessed", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1457", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_db_migratehandshaketables", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1976", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_db_needscanonicalrelaydeviceidforcoordination", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1751", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_db_parsepolicyselections", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2220", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_db_pendingp2pbeapentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2032", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_db_refreshinternalhandshakepersistenceflags", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1626", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_db_serializehandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2290", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_db_softdeleteexpiredblocks", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1394", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_db_tableexistsindb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2413", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatecontextblockgovernance", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2401", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatecontextstoregovernance", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2439", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatecontextstorestatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2458", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatecontextstorestatusbulk", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1768", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakecontextsyncenqueued", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1760", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakecontextsyncpending", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1804", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakecounterpartykey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1779", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakepolicyselections", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1876", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1794", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakesigningkeys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1941", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshaketopologypairingkind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_db_upsertcontextblockversion", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_internalpersistence", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_internalpersistence_finalizeinternalhandshakepersistence", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_keybindingdebug", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_keybindingdebug_loghandshakekeybinding", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_keybindingdebug_warnifcounterpartykeysuspiciousoverwrite", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_types_auditlogentry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "packages_shared_src_handshake_policyutils", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "packages_shared_src_handshake_policyutils_parsepolicytomode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "packages_shared_src_handshake_policyutils_serializepolicyfordb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db", + "target": "packages_shared_src_handshake_types_aiprocessingmode", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1306", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db_rationale_1306", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_embeddings", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthRemoteCheck.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthremotecheck", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthStartupLog.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthstartuplog", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/index.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_index", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/initiatorPersist.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_initiatorpersist", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalRelayOutboundGuards.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/keywordSearch.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_keywordsearch", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ledger", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTokenBackfill.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptokenbackfill", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/recipientPersist.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_recipientpersist", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/retentionJob.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_retentionjob", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/revocation.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_revocation", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/topologyAutoWire.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_topologyautowire", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/vaultGating.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_vaultgating", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiEffectiveRole.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiInternalPairingLedger.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectProactiveRefresh.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectproactiverefresh", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementLog.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementlog", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRemoteInferencePolicyResolve.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayResultHandler.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayresulthandler", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelaySend.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaysend", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelay.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelay", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayHandler.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiWebrtcOfferStart.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/internalP2pHandshakeInspect.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pReachabilityGet.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2preachabilityget", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostChat.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostchat", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxOllamaDirectCapsRefresh.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxollamadirectcapsrefresh", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxRequest.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxrequest", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiEffectiveRole.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaieffectiverole_test", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiProviderAdvertisementLog.test.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiprovideradvertisementlog_test", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostInferenceCore.policy.test.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostinferencecore_policy_test", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInference.directHost.regression.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceService.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferenceservice_test", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pEndpointRepair.hostAi.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2pendpointrepair_hostai_test", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.electronMain.transportAndHostPolicy.test.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_electronmain_transportandhostpolicy_test", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/peerDeliveryAck.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_peerdeliveryack", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relaySync.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaysync", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/coordination-client.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_coordination_client_test", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relay-integration.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_relay_integration_test", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relayPull.messageRelay.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_relaypull_messagerelay_test", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L484", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db_openvaultdb", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/repair-handshake-counterparty.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_repair_handshake_counterparty", + "target": "apps_electron_vite_project_electron_main_handshake_db", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1431", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db_ensureemailpipelineschemarepairs", + "target": "apps_electron_vite_project_electron_main_handshake_db_tableexistsindb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1424", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db_ensureemailpipelineschemarepairs", + "target": "apps_electron_vite_project_electron_main_handshake_db_getcolumnnames", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2019", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db_getp2ppendingpackagejsonsforhandshake", + "target": "apps_electron_vite_project_electron_main_handshake_db_getcolumnnames", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2230", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db_getpendingp2pbeapmessages", + "target": "apps_electron_vite_project_electron_main_handshake_db_getcolumnnames", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2155", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db_insertpendingp2pbeap", + "target": "apps_electron_vite_project_electron_main_handshake_db_getcolumnnames", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1501", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db_migratehandshaketables", + "target": "apps_electron_vite_project_electron_main_handshake_db_ensureemailpipelineschemarepairs", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/index.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_index", + "target": "apps_electron_vite_project_electron_main_handshake_db_migratehandshaketables", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ledger", + "target": "apps_electron_vite_project_electron_main_handshake_db_migratehandshaketables", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L226", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ledger_openledger", + "target": "apps_electron_vite_project_electron_main_handshake_db_migratehandshaketables" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_db_migratehandshaketables", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc_ensurehandshakemigration", + "target": "apps_electron_vite_project_electron_main_handshake_db_migratehandshaketables", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull", + "target": "apps_electron_vite_project_electron_main_handshake_db_migratehandshaketables", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull_ensurehandshakemigration", + "target": "apps_electron_vite_project_electron_main_handshake_db_migratehandshaketables", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/coordination-client.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_coordination_client_test", + "target": "apps_electron_vite_project_electron_main_handshake_db_migratehandshaketables", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/coordination-client.test.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_coordination_client_test_createtestdb", + "target": "apps_electron_vite_project_electron_main_handshake_db_migratehandshaketables", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relay-integration.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_relay_integration_test", + "target": "apps_electron_vite_project_electron_main_handshake_db_migratehandshaketables", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relay-integration.test.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_relay_integration_test_createtestdb", + "target": "apps_electron_vite_project_electron_main_handshake_db_migratehandshaketables", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relayPull.messageRelay.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_relaypull_messagerelay_test", + "target": "apps_electron_vite_project_electron_main_handshake_db_migratehandshaketables", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relayPull.messageRelay.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_relaypull_messagerelay_test_createtestdb", + "target": "apps_electron_vite_project_electron_main_handshake_db_migratehandshaketables", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc", + "target": "apps_electron_vite_project_electron_main_handshake_db_migratehandshaketables", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc_setupembeddingserviceref", + "target": "apps_electron_vite_project_electron_main_handshake_db_migratehandshaketables" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/index.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_index", + "target": "apps_electron_vite_project_electron_main_handshake_db_backfilllocalx25519publickey", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc", + "target": "apps_electron_vite_project_electron_main_handshake_db_backfilllocalx25519publickey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc_setupembeddingserviceref", + "target": "apps_electron_vite_project_electron_main_handshake_db_backfilllocalx25519publickey" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1836", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db_inserthandshakerecord", + "target": "apps_electron_vite_project_electron_main_handshake_db_serializehandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1893", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakerecord", + "target": "apps_electron_vite_project_electron_main_handshake_db_serializehandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1729", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db_deserializehandshakerecord", + "target": "apps_electron_vite_project_electron_main_handshake_db_parsepolicyselections", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2071", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db_getexistinghandshakesforlookup", + "target": "apps_electron_vite_project_electron_main_handshake_db_deserializehandshakerecord", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1953", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "target": "apps_electron_vite_project_electron_main_handshake_db_deserializehandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2064", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db_listhandshakerecords", + "target": "apps_electron_vite_project_electron_main_handshake_db_deserializehandshakerecord", + "confidence_score": 0.5 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakecontextsyncpending", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L2530", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakecontextsyncpending" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1785", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakepolicyselections", + "target": "packages_shared_src_handshake_policyutils_parsepolicytomode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1786", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakepolicyselections", + "target": "packages_shared_src_handshake_policyutils_serializepolicyfordb" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/initiatorPersist.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_initiatorpersist", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakepolicyselections", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/initiatorPersist.ts", + "source_location": "L159", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_initiatorpersist_persistinitiatorhandshakerecord", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakepolicyselections" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakepolicyselections", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L2315", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakepolicyselections" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakesigningkeys", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L2290", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakesigningkeys" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1812", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakecounterpartykey", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1813", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakecounterpartykey", + "target": "apps_electron_vite_project_electron_main_handshake_keybindingdebug_loghandshakekeybinding" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/repair-handshake-counterparty.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_repair_handshake_counterparty", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakecounterpartykey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/repair-handshake-counterparty.ts", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_repair_handshake_counterparty_main", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakecounterpartykey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1836", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db_inserthandshakerecord", + "target": "apps_electron_vite_project_electron_main_handshake_internalpersistence_finalizeinternalhandshakepersistence" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1827", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db_inserthandshakerecord", + "target": "apps_electron_vite_project_electron_main_handshake_keybindingdebug_loghandshakekeybinding" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_db_inserthandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L413", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement_processhandshakecapsule", + "target": "apps_electron_vite_project_electron_main_handshake_db_inserthandshakerecord" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/initiatorPersist.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_initiatorpersist", + "target": "apps_electron_vite_project_electron_main_handshake_db_inserthandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/initiatorPersist.ts", + "source_location": "L154", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_initiatorpersist_persistinitiatorhandshakerecord", + "target": "apps_electron_vite_project_electron_main_handshake_db_inserthandshakerecord" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/recipientPersist.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_recipientpersist", + "target": "apps_electron_vite_project_electron_main_handshake_db_inserthandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/recipientPersist.ts", + "source_location": "L172", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_recipientpersist_persistrecipienthandshakerecord", + "target": "apps_electron_vite_project_electron_main_handshake_db_inserthandshakerecord" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/coordination-client.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_coordination_client_test", + "target": "apps_electron_vite_project_electron_main_handshake_db_inserthandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2035", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db_refreshinternalhandshakepersistenceflags", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1877", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakerecord", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1893", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakerecord", + "target": "apps_electron_vite_project_electron_main_handshake_internalpersistence_finalizeinternalhandshakepersistence" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1884", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakerecord", + "target": "apps_electron_vite_project_electron_main_handshake_keybindingdebug_loghandshakekeybinding" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L1878", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakerecord", + "target": "apps_electron_vite_project_electron_main_handshake_keybindingdebug_warnifcounterpartykeysuspiciousoverwrite" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L416", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement_processhandshakecapsule", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakerecord" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L1247", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakerecord" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTokenBackfill.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptokenbackfill", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTokenBackfill.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptokenbackfill_runactivehandshakelocalp2ptokenbackfill", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakerecord" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/revocation.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_revocation", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/revocation.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_revocation_revokehandshake", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakerecord" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L976", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_applyhostaidirectbeapadfromrelaypayload", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakerecord" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L1123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_runp2pendpointrepairpass", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakerecord" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L1067", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_tryrepairp2pendpointfromhostadvertisement", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshakerecord" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/topologyAutoWire.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_topologyautowire", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshaketopologypairingkind", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/topologyAutoWire.ts", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_topologyautowire_autowiretopologyforhandshake", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshaketopologypairingkind" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/topologyAutoWire.ts", + "source_location": "L214", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_topologyautowire_synctopologyfromactivehandshakes", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatehandshaketopologypairingkind" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2347", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db_deletehandshakerecord", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2033", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db_refreshinternalhandshakepersistenceflags", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_embeddings", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_embeddings_processembeddingqueue", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L235", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_embeddings_semanticsearch", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L699", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement_authorizeaction", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L660", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement_diagnosehandshakeinactive", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L681", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement_geteffectivetier", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L645", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement_ishandshakeactive", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L239", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement_processhandshakecapsule", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L958", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement_scheduleinternalinitiatorpostacceptcoordinationrepair", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalRelayOutboundGuards.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/internalRelayOutboundGuards.ts", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_applycontextsyncinternalroutingfromrecord", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/internalRelayOutboundGuards.ts", + "source_location": "L221", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_validatecoordinationinternalpayloadbeforepost", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/internalRelayOutboundGuards.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_validateinternalcapsulebeforeenqueue", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L707", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L3471", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_registerhandshakeroutes", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/keywordSearch.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_keywordsearch", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/keywordSearch.ts", + "source_location": "L156", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_keywordsearch_keywordsearch", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L567", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_handlecoordinationoutbound403", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_loginternalhstraceoutbound", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTokenBackfill.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptokenbackfill", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTokenBackfill.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptokenbackfill_runactivehandshakelocalp2ptokenbackfill", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L633", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport_sendcapsuleviacoordination", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/revocation.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_revocation", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/revocation.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_revocation_revokehandshake", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/vaultGating.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_vaultgating", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/vaultGating.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_vaultgating_gatevaultaccess", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc_handleingestionrpc", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L306", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc_registeringestionroutes", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_resolvecontext", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectProactiveRefresh.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectproactiverefresh", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectProactiveRefresh.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectproactiverefresh_runhostollamadirectproactiverefreshtick", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L282", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_assertsandboxhostpeerlivepresenceforhandshake", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler_tryhandlehostaisealedinferencerequestrelaycapsule", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayResultHandler.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayresulthandler", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayResultHandler.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayresulthandler_tryhandlehostaisealedinferenceresultrelaycapsule", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelaySend.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaysend", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelaySend.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaysend_sendsealedhostaiinferencerequest", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelay.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelay", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayHandler.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiWebrtcOfferStart.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiWebrtcOfferStart.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart_waitforcoordinationwebsocketforrelayifneeded", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_loadservicerecord", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/internalP2pHandshakeInspect.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/internalP2pHandshakeInspect.ts", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect_getinternalhosthandshakep2pinspect", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L1292", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_executehostinferencecapabilitiesdcexchange", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L327", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_handlep2pdcinferencecapabilitiesashost", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L731", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_handlep2pdcinferencecapabilitiesassandbox", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L1154", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_peeksandboxpeerhostdeviceforcapscache", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_validatehostinboundinferencedc", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L881", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_applyhostaidirectbeapadfromrelaypayload", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L1024", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_tryrepairp2pendpointfromhostadvertisement", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget_handlegetinternalinferencepolicy", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pReachabilityGet.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2preachabilityget", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pReachabilityGet.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2preachabilityget_handlegetp2preachability", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L184", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch_tryhandleinternalservicep2p", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1069", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensuresession", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1401", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_getp2pinboundlocalroleforlog", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1442", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_preflightp2prelaysignal", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1296", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_tryattachp2psessionforinboundsignaling", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L484", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_sendhostaip2psignaloutbound", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L159", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_handlehostaidirectbeapadrequestfromrelay", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L180", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_resolvehandshakerecordforrouting", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostChat.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostchat", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostChat.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostchat_runsandboxhostinferencechat", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L814", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboximpl", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxOllamaDirectCapsRefresh.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxollamadirectcapsrefresh", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxOllamaDirectCapsRefresh.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxollamadirectcapsrefresh_refreshsandboxollamadirectfromhostcapabilities", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxRequest.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxrequest", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxRequest.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxrequest_runsandboxpongtestfromhosthandshake", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostInferenceCore.policy.test.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostinferencecore_policy_test", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pEndpointRepair.hostAi.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2pendpointrepair_hostai_test", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.electronMain.transportAndHostPolicy.test.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_electronmain_transportandhostpolicy_test", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L997", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws_createcoordinationwsclient", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L218", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws_processcapsuleinternal", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/peerDeliveryAck.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_peerdeliveryack", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/peerDeliveryAck.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_peerdeliveryack_postpeerdeliveryacktosender", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/peerDeliveryAck.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_peerdeliveryack_resolvesenderdeliveryackendpoint", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L305", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull_pullfromrelay", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relaySync.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaysync", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/relaySync.ts", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaysync_registerhandshakewithrelay", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/relaySync.ts", + "source_location": "L249", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaysync_reregisterinternalhandshakeaftercoordinationp2psignal403", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/repair-handshake-counterparty.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_repair_handshake_counterparty", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/repair-handshake-counterparty.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_repair_handshake_counterparty_main", + "target": "apps_electron_vite_project_electron_main_handshake_db_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_handshake_db_needscanonicalrelaydeviceidforcoordination", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L743", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws_createcoordinationwsclient", + "target": "apps_electron_vite_project_electron_main_handshake_db_needscanonicalrelaydeviceidforcoordination" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/repair-handshake-counterparty.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_repair_handshake_counterparty", + "target": "apps_electron_vite_project_electron_main_handshake_db_getp2ppendingpackagejsonsforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/repair-handshake-counterparty.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_repair_handshake_counterparty_main", + "target": "apps_electron_vite_project_electron_main_handshake_db_getp2ppendingpackagejsonsforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_db_refreshinternalhandshakepersistenceflags", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L860", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_db_refreshinternalhandshakepersistenceflags" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthRemoteCheck.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthremotecheck", + "target": "apps_electron_vite_project_electron_main_handshake_db_listhandshakerecords", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthRemoteCheck.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthremotecheck_runhandshakehealthremotecheckafterrelayconnect", + "target": "apps_electron_vite_project_electron_main_handshake_db_listhandshakerecords" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthStartupLog.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthstartuplog", + "target": "apps_electron_vite_project_electron_main_handshake_db_listhandshakerecords", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthStartupLog.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthstartuplog_loghandshakehealthstartuplines", + "target": "apps_electron_vite_project_electron_main_handshake_db_listhandshakerecords" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi", + "target": "apps_electron_vite_project_electron_main_handshake_db_listhandshakerecords", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_computeauthoritativedeviceinternalrole", + "target": "apps_electron_vite_project_electron_main_handshake_db_listhandshakerecords" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L261", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_listavailableinternalsandboxes", + "target": "apps_electron_vite_project_electron_main_handshake_db_listhandshakerecords" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_db_listhandshakerecords", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L876", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_db_listhandshakerecords" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L3484", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_registerhandshakeroutes", + "target": "apps_electron_vite_project_electron_main_handshake_db_listhandshakerecords" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTokenBackfill.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptokenbackfill", + "target": "apps_electron_vite_project_electron_main_handshake_db_listhandshakerecords", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTokenBackfill.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptokenbackfill_runactivehandshakelocalp2ptokenbackfill", + "target": "apps_electron_vite_project_electron_main_handshake_db_listhandshakerecords" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/topologyAutoWire.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_topologyautowire", + "target": "apps_electron_vite_project_electron_main_handshake_db_listhandshakerecords", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/topologyAutoWire.ts", + "source_location": "L189", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_topologyautowire_synctopologyfromactivehandshakes", + "target": "apps_electron_vite_project_electron_main_handshake_db_listhandshakerecords" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability", + "target": "apps_electron_vite_project_electron_main_handshake_db_listhandshakerecords", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L243", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_listhosttosandboxdirectreachabilityrows", + "target": "apps_electron_vite_project_electron_main_handshake_db_listhandshakerecords" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish", + "target": "apps_electron_vite_project_electron_main_handshake_db_listhandshakerecords", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L287", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish_publishhostaidirectbeapadvertisementsforeligiblehost", + "target": "apps_electron_vite_project_electron_main_handshake_db_listhandshakerecords" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiEffectiveRole.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole", + "target": "apps_electron_vite_project_electron_main_handshake_db_listhandshakerecords", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiEffectiveRole.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole_gethostailedgerrolesummaryfromdb", + "target": "apps_electron_vite_project_electron_main_handshake_db_listhandshakerecords" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiInternalPairingLedger.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger", + "target": "apps_electron_vite_project_electron_main_handshake_db_listhandshakerecords", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiInternalPairingLedger.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_listactiveinternalhandshakesforhostai", + "target": "apps_electron_vite_project_electron_main_handshake_db_listhandshakerecords" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementLog.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementlog", + "target": "apps_electron_vite_project_electron_main_handshake_db_listhandshakerecords", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementLog.ts", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementlog_buildhostaiprovideradvertisementpayload", + "target": "apps_electron_vite_project_electron_main_handshake_db_listhandshakerecords" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRemoteInferencePolicyResolve.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve", + "target": "apps_electron_vite_project_electron_main_handshake_db_listhandshakerecords", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRemoteInferencePolicyResolve.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve_internalhostpairingdiagnosticflags", + "target": "apps_electron_vite_project_electron_main_handshake_db_listhandshakerecords", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/internalP2pHandshakeInspect.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect", + "target": "apps_electron_vite_project_electron_main_handshake_db_listhandshakerecords", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/internalP2pHandshakeInspect.ts", + "source_location": "L137", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect_getinternalhosthandshakep2pinspect", + "target": "apps_electron_vite_project_electron_main_handshake_db_listhandshakerecords" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_handshake_db_listhandshakerecords", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1704", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_handshake_db_listhandshakerecords" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_handshake_db_listhandshakerecords", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L1093", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_runp2pendpointrepairpass", + "target": "apps_electron_vite_project_electron_main_handshake_db_listhandshakerecords" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest", + "target": "apps_electron_vite_project_electron_main_handshake_db_listhandshakerecords", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L166", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest_sandboxmayberequesthostdirectbeapadvertisement", + "target": "apps_electron_vite_project_electron_main_handshake_db_listhandshakerecords" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_handshake_db_listhandshakerecords", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L152", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_listsandboxhostinferencecandidates", + "target": "apps_electron_vite_project_electron_main_handshake_db_listhandshakerecords" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiEffectiveRole.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaieffectiverole_test", + "target": "apps_electron_vite_project_electron_main_handshake_db_listhandshakerecords", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_db_getexistinghandshakesforlookup", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L306", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement_processhandshakecapsule", + "target": "apps_electron_vite_project_electron_main_handshake_db_getexistinghandshakesforlookup" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_db_getseencapsulehashes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L304", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement_processhandshakecapsule", + "target": "apps_electron_vite_project_electron_main_handshake_db_getseencapsulehashes" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_db_insertseencapsulehash", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L580", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement_processhandshakecapsule", + "target": "apps_electron_vite_project_electron_main_handshake_db_insertseencapsulehash" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/initiatorPersist.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_initiatorpersist", + "target": "apps_electron_vite_project_electron_main_handshake_db_insertseencapsulehash", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/initiatorPersist.ts", + "source_location": "L155", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_initiatorpersist_persistinitiatorhandshakerecord", + "target": "apps_electron_vite_project_electron_main_handshake_db_insertseencapsulehash" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/recipientPersist.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_recipientpersist", + "target": "apps_electron_vite_project_electron_main_handshake_db_insertseencapsulehash", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/recipientPersist.ts", + "source_location": "L173", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_recipientpersist_persistrecipienthandshakerecord", + "target": "apps_electron_vite_project_electron_main_handshake_db_insertseencapsulehash" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_db_getcontextblockversions", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L305", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement_processhandshakecapsule", + "target": "apps_electron_vite_project_electron_main_handshake_db_getcontextblockversions" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_db_insertauditlogentry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L202", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement_processhandshakecapsule", + "target": "apps_electron_vite_project_electron_main_handshake_db_insertauditlogentry" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/retentionJob.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_retentionjob", + "target": "apps_electron_vite_project_electron_main_handshake_db_insertauditlogentry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/retentionJob.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_retentionjob_runretentioncycle", + "target": "apps_electron_vite_project_electron_main_handshake_db_insertauditlogentry" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/revocation.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_revocation", + "target": "apps_electron_vite_project_electron_main_handshake_db_insertauditlogentry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/revocation.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_revocation_revokehandshake", + "target": "apps_electron_vite_project_electron_main_handshake_db_insertauditlogentry" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_db_getpendingp2pbeapmessages", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L724", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_db_getpendingp2pbeapmessages" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_db_markp2ppendingbeapprocessed", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L732", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_db_markp2ppendingbeapprocessed" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/retentionJob.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_retentionjob", + "target": "apps_electron_vite_project_electron_main_handshake_db_expirependinghandshakes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/retentionJob.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_retentionjob_runretentioncycle", + "target": "apps_electron_vite_project_electron_main_handshake_db_expirependinghandshakes" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/retentionJob.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_retentionjob", + "target": "apps_electron_vite_project_electron_main_handshake_db_expireactivehandshakes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/retentionJob.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_retentionjob_runretentioncycle", + "target": "apps_electron_vite_project_electron_main_handshake_db_expireactivehandshakes" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/retentionJob.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_retentionjob", + "target": "apps_electron_vite_project_electron_main_handshake_db_softdeleteexpiredblocks", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/retentionJob.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_retentionjob_runretentioncycle", + "target": "apps_electron_vite_project_electron_main_handshake_db_softdeleteexpiredblocks" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2313", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db_markcontextblocksinactivebyhandshake", + "target": "apps_electron_vite_project_electron_main_handshake_querycache", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_db_markcontextblocksinactivebyhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L470", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement_processhandshakecapsule", + "target": "apps_electron_vite_project_electron_main_handshake_db_markcontextblocksinactivebyhandshake" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2326", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db_deleteblocksbyhandshake", + "target": "apps_electron_vite_project_electron_main_handshake_querycache", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2358", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db_deletehandshakerecord", + "target": "apps_electron_vite_project_electron_main_handshake_db_deleteblocksbyhandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/revocation.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_revocation", + "target": "apps_electron_vite_project_electron_main_handshake_db_deleteblocksbyhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/revocation.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_revocation_revokehandshake", + "target": "apps_electron_vite_project_electron_main_handshake_db_deleteblocksbyhandshake" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/db.ts", + "source_location": "L2357", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_db_deletehandshakerecord", + "target": "apps_electron_vite_project_electron_main_handshake_db_deleteembeddingsbyhandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/revocation.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_revocation", + "target": "apps_electron_vite_project_electron_main_handshake_db_deleteembeddingsbyhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/revocation.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_revocation_revokehandshake", + "target": "apps_electron_vite_project_electron_main_handshake_db_deleteembeddingsbyhandshake" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_db_deletehandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L904", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_db_deletehandshakerecord" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/initiatorPersist.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_initiatorpersist", + "target": "apps_electron_vite_project_electron_main_handshake_db_insertcontextstoreentry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/initiatorPersist.ts", + "source_location": "L192", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_initiatorpersist_persistinitiatorhandshakerecord", + "target": "apps_electron_vite_project_electron_main_handshake_db_insertcontextstoreentry" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_db_insertcontextstoreentry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L2366", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_db_insertcontextstoreentry" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_db_getcontextstorebyhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L2833", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_db_getcontextstorebyhandshake" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull", + "target": "apps_electron_vite_project_electron_main_handshake_db_getcontextstorebyhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L334", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull_pullfromrelay", + "target": "apps_electron_vite_project_electron_main_handshake_db_getcontextstorebyhandshake" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatecontextstorestatus", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L2929", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatecontextstorestatus" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatecontextstorestatusbulk", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L2859", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_db_updatecontextstorestatusbulk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/emailTransport.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_emailtransport", + "target": "apps_electron_vite_project_electron_main_handshake_emailtransport_emailsendfn", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/emailTransport.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_emailtransport", + "target": "apps_electron_vite_project_electron_main_handshake_emailtransport_emailtransportresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/emailTransport.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_emailtransport", + "target": "apps_electron_vite_project_electron_main_handshake_emailtransport_resetemailsendfn", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/emailTransport.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_emailtransport", + "target": "apps_electron_vite_project_electron_main_handshake_emailtransport_sendcapsuleviaemail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/emailTransport.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_emailtransport", + "target": "apps_electron_vite_project_electron_main_handshake_emailtransport_setemailsendfn", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_emailtransport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_emailtransport_sendcapsuleviaemail", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L1460", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_emailtransport_sendcapsuleviaemail" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L292", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_embeddings", + "target": "apps_electron_vite_project_electron_main_handshake_embeddings_cosinesimilarity", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_embeddings", + "target": "apps_electron_vite_project_electron_main_handshake_embeddings_getorcreateembeddingservice", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_embeddings", + "target": "apps_electron_vite_project_electron_main_handshake_embeddings_localembeddingservice", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_embeddings", + "target": "apps_electron_vite_project_electron_main_handshake_embeddings_ollamaembeddingservice", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_embeddings", + "target": "apps_electron_vite_project_electron_main_handshake_embeddings_processembeddingqueue", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L165", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_embeddings", + "target": "apps_electron_vite_project_electron_main_handshake_embeddings_semanticsearch", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_embeddings", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_embeddings", + "target": "apps_electron_vite_project_electron_main_handshake_types_scoredcontextblock", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_embeddings", + "target": "apps_electron_vite_project_electron_main_handshake_visibilityfilter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_embeddings", + "target": "apps_electron_vite_project_electron_main_handshake_visibilityfilter_isvaultcurrentlyunlocked", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_embeddings", + "target": "apps_electron_vite_project_electron_main_handshake_visibilityfilter_visibilitywhereclause", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_embeddings", + "target": "apps_electron_vite_project_electron_main_llm_localllmpaths", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_embeddings", + "target": "apps_electron_vite_project_electron_main_llm_localllmpaths_host_ai_default_local_llamacpp_base", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/hybridSearch.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_hybridsearch", + "target": "apps_electron_vite_project_electron_main_handshake_embeddings", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/hybridSearch.ts", + "source_location": "L139", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_hybridsearch_runsemanticpath", + "target": "apps_electron_vite_project_electron_main_handshake_embeddings", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/index.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_index", + "target": "apps_electron_vite_project_electron_main_handshake_embeddings", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/intentExecution.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_intentexecution_executestructuredsearch", + "target": "apps_electron_vite_project_electron_main_handshake_embeddings", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_embeddings", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration", + "target": "apps_electron_vite_project_electron_main_handshake_embeddings", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/orchestratorSandboxEmbedding.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_orchestratorsandboxembedding", + "target": "apps_electron_vite_project_electron_main_handshake_embeddings", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc", + "target": "apps_electron_vite_project_electron_main_handshake_embeddings", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_embeddings_localembeddingservice", + "target": "apps_electron_vite_project_electron_main_handshake_embeddings_localembeddingservice_generateembedding", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_embeddings_ollamaembeddingservice", + "target": "apps_electron_vite_project_electron_main_handshake_embeddings_localembeddingservice", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/hybridSearch.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_hybridsearch", + "target": "apps_electron_vite_project_electron_main_handshake_embeddings_localembeddingservice", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/index.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_index", + "target": "apps_electron_vite_project_electron_main_handshake_embeddings_localembeddingservice", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration", + "target": "apps_electron_vite_project_electron_main_handshake_embeddings_localembeddingservice", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/orchestratorSandboxEmbedding.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_orchestratorsandboxembedding", + "target": "apps_electron_vite_project_electron_main_handshake_embeddings_localembeddingservice", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_embeddings_ollamaembeddingservice", + "target": "apps_electron_vite_project_electron_main_handshake_embeddings_ollamaembeddingservice_constructor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_embeddings_ollamaembeddingservice", + "target": "apps_electron_vite_project_electron_main_handshake_embeddings_ollamaembeddingservice_generateembedding", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_embeddings_ollamaembeddingservice", + "target": "apps_electron_vite_project_electron_main_handshake_embeddings_ollamaembeddingservice_isavailable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_embeddings_processembeddingqueue", + "target": "apps_electron_vite_project_electron_main_handshake_embeddings_ollamaembeddingservice_generateembedding", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L172", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_embeddings_semanticsearch", + "target": "apps_electron_vite_project_electron_main_handshake_embeddings_ollamaembeddingservice_generateembedding", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/orchestratorSandboxEmbedding.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_orchestratorsandboxembedding", + "target": "apps_electron_vite_project_electron_main_handshake_embeddings_getorcreateembeddingservice", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/orchestratorSandboxEmbedding.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_orchestratorsandboxembedding_getorcreateorchestratorembeddingservice", + "target": "apps_electron_vite_project_electron_main_handshake_embeddings_getorcreateembeddingservice" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/index.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_index", + "target": "apps_electron_vite_project_electron_main_handshake_embeddings_processembeddingqueue", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc", + "target": "apps_electron_vite_project_electron_main_handshake_embeddings_processembeddingqueue", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc_setupembeddingserviceref", + "target": "apps_electron_vite_project_electron_main_handshake_embeddings_processembeddingqueue" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L268", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_embeddings_semanticsearch", + "target": "apps_electron_vite_project_electron_main_handshake_embeddings_cosinesimilarity", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_embeddings_semanticsearch", + "target": "apps_electron_vite_project_electron_main_handshake_visibilityfilter_isvaultcurrentlyunlocked" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/embeddings.ts", + "source_location": "L175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_embeddings_semanticsearch", + "target": "apps_electron_vite_project_electron_main_handshake_visibilityfilter_visibilitywhereclause" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/hybridSearch.ts", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_hybridsearch_runsemanticpath", + "target": "apps_electron_vite_project_electron_main_handshake_embeddings_semanticsearch" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/index.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_index", + "target": "apps_electron_vite_project_electron_main_handshake_embeddings_semanticsearch", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_embeddings_semanticsearch", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L3056", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_embeddings_semanticsearch" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L692", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement_authorizeaction", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L832", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement_buildacceptrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L1052", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement_buildcontextsyncrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L745", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement_buildinitiaterecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L1032", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement_buildrefreshrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L1078", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement_buildrevokerecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L655", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement_diagnosehandshakeinactive", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement_extractacceptcapsulesenderkeymaterial", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement_extractverifiedinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement_forcepeerkeysfromacceptcapsule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L676", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement_geteffectivetier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L1009", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement_inboundpeerp2pauthtokenupdate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L644", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement_ishandshakeactive", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement_mapcapsuletypetohandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L184", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement_processhandshakecapsule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L738", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement_resolveexpiresat", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L948", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement_scheduleinternalinitiatorpostacceptcoordinationrepair", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_keybindingdebug", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_keybindingdebug_loghandshakekeybinding", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_pipeline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_pipeline_runhandshakeverification", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_remoterevokecallbackregistry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_remoterevokecallbackregistry_getremoterevokecallback", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_remoterevokecallbackregistry_setremoterevokecallback", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_signaturekeys", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_signaturekeys_verifycapsulesignature", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_steps_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_steps_index_handshake_pipeline", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L733", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_steps_policyresolution", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_steps_policyresolution_resolveeffectivepolicyfn", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_steps_verifycapsulehash", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_steps_verifycapsulehash_verifycapsulehashintegrity", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_tierclassification", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_tierclassification_classifyhandshaketier", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_types_actiontype", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_types_authorizationresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_types_effectivepolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakeprocessresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_types_input_limits", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_types_reasoncode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_types_receiverpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_types_ssosession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_types_tierdecision", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_handshake_types_verifiedcapsuleinput", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_ingestion_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_ingestion_types_validatedcapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_getp2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_p2p_relaysync", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement", + "target": "apps_electron_vite_project_electron_main_p2p_relaysync_registerhandshakewithrelay", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement_rationale_8", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/index.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_index", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/entrypoint.guard.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_entrypoint_guard_test", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement_extractverifiedinput", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement_mapcapsuletypetohandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L389", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement_processhandshakecapsule", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement_extractacceptcapsulesenderkeymaterial", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L420", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement_processhandshakecapsule", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement_forcepeerkeysfromacceptcapsule", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L217", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement_processhandshakecapsule", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement_extractverifiedinput", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L415", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement_processhandshakecapsule", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement_buildacceptrecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L438", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement_processhandshakecapsule", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement_buildcontextsyncrecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L412", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement_processhandshakecapsule", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement_buildinitiaterecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L423", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement_processhandshakecapsule", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement_buildrefreshrecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L468", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement_processhandshakecapsule", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement_buildrevokerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L591", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement_processhandshakecapsule", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement_scheduleinternalinitiatorpostacceptcoordinationrepair", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L271", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement_processhandshakecapsule", + "target": "apps_electron_vite_project_electron_main_handshake_keybindingdebug_loghandshakekeybinding" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L309", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement_processhandshakecapsule", + "target": "apps_electron_vite_project_electron_main_handshake_pipeline_runhandshakeverification" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L491", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement_processhandshakecapsule", + "target": "apps_electron_vite_project_electron_main_handshake_remoterevokecallbackregistry_getremoterevokecallback" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L240", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement_processhandshakecapsule", + "target": "apps_electron_vite_project_electron_main_handshake_signaturekeys_verifycapsulesignature" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L357", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement_processhandshakecapsule", + "target": "apps_electron_vite_project_electron_main_handshake_steps_policyresolution_resolveeffectivepolicyfn" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L225", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement_processhandshakecapsule", + "target": "apps_electron_vite_project_electron_main_handshake_steps_verifycapsulehash_verifycapsulehashintegrity" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L460", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement_processhandshakecapsule", + "target": "apps_electron_vite_project_electron_main_handshake_topologyautowire", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L452", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement_processhandshakecapsule", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/index.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_index", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement_processhandshakecapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement_processhandshakecapsule", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc_handleingestionrpc", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement_processhandshakecapsule" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L319", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc_registeringestionroutes", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement_processhandshakecapsule" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/entrypoint.guard.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_entrypoint_guard_test", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement_processhandshakecapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement_processhandshakecapsule", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L494", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws_processcapsuleinternal", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement_processhandshakecapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement_processhandshakecapsule", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L314", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull_pullfromrelay", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement_processhandshakecapsule" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/index.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_index", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement_ishandshakeactive", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement_ishandshakeactive", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L1270", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement_ishandshakeactive" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/index.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_index", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement_diagnosehandshakeinactive", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement_diagnosehandshakeinactive", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L945", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement_diagnosehandshakeinactive" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L684", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement_geteffectivetier", + "target": "apps_electron_vite_project_electron_main_handshake_tierclassification_classifyhandshaketier" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/index.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_index", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement_geteffectivetier", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/index.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_index", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement_authorizeaction", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement_authorizeaction", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L749", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement_authorizeaction" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L899", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement_buildacceptrecord", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement_resolveexpiresat", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L791", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement_buildinitiaterecord", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement_resolveexpiresat", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L757", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement_buildinitiaterecord", + "target": "apps_electron_vite_project_electron_main_handshake_keybindingdebug_loghandshakekeybinding", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L871", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement_buildacceptrecord", + "target": "apps_electron_vite_project_electron_main_handshake_keybindingdebug_loghandshakekeybinding", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L956", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement_scheduleinternalinitiatorpostacceptcoordinationrepair", + "target": "apps_electron_vite_project_electron_main_handshake_ipc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L967", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement_scheduleinternalinitiatorpostacceptcoordinationrepair", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_getp2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L976", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement_scheduleinternalinitiatorpostacceptcoordinationrepair", + "target": "apps_electron_vite_project_electron_main_p2p_relaysync_registerhandshakewithrelay", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L1067", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement_buildcontextsyncrecord", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement_inboundpeerp2pauthtokenupdate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L1037", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement_buildrefreshrecord", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement_inboundpeerp2pauthtokenupdate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/enforcement.ts", + "source_location": "L1082", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_enforcement_buildrevokerecord", + "target": "apps_electron_vite_project_electron_main_handshake_enforcement_inboundpeerp2pauthtokenupdate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeAccountIsolation.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation_filterhandshakerecordsforcurrentsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeAccountIsolation.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation_handshakerowvisibility", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeAccountIsolation.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation_handshakerowvisibilityforsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeAccountIsolation.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation_ispendingacceptorpartyforsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeAccountIsolation.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation_sameprincipalforinternal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeAccountIsolation.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation_sessionmatchesparty", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeAccountIsolation.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeAccountIsolation.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeAccountIsolation.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeAccountIsolation.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation", + "target": "apps_electron_vite_project_electron_main_handshake_types_partyidentity", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeAccountIsolation.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation", + "target": "apps_electron_vite_project_electron_main_handshake_types_ssosession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeAccountIsolation.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation", + "target": "packages_shared_src_handshake_receiveremailvalidation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeAccountIsolation.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation", + "target": "packages_shared_src_handshake_receiveremailvalidation_issameaccounthandshakeemails", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeAccountIsolation.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation", + "target": "packages_shared_src_handshake_receiveremailvalidation_validatereceiveremail", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeAccountIsolation.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation_handshakerowvisibilityforsession", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation_sessionmatchesparty", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeAccountIsolation.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation_sessionmatchesparty", + "target": "packages_shared_src_handshake_receiveremailvalidation_issameaccounthandshakeemails" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation_sessionmatchesparty", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L203", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_asserthostmachinesessionmatcheshandshakehostparty", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation_sessionmatchesparty" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_partyidentitymatchesexpected", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation_sessionmatchesparty" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeAccountIsolation.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation_handshakerowvisibilityforsession", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation_sameprincipalforinternal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeAccountIsolation.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation_sameprincipalforinternal", + "target": "packages_shared_src_handshake_receiveremailvalidation_issameaccounthandshakeemails" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeAccountIsolation.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation_handshakerowvisibilityforsession", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation_ispendingacceptorpartyforsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeAccountIsolation.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation_ispendingacceptorpartyforsession", + "target": "packages_shared_src_handshake_receiveremailvalidation_validatereceiveremail", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeAccountIsolation.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation_filterhandshakerecordsforcurrentsession", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation_handshakerowvisibilityforsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeAccountIsolation.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation_handshakerowvisibilityforsession", + "target": "packages_shared_src_handshake_receiveremailvalidation_issameaccounthandshakeemails" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation_handshakerowvisibilityforsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_sessionispartyonvisiblehandshakerow", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation_handshakerowvisibilityforsession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation_filterhandshakerecordsforcurrentsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L896", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation_filterhandshakerecordsforcurrentsession" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation_filterhandshakerecordsforcurrentsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1418", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listactiveinternalhandshakesforcurrentsession", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation_filterhandshakerecordsforcurrentsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1703", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation_filterhandshakerecordsforcurrentsession" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation_filterhandshakerecordsforcurrentsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_resolveactivesandboxtohosthandshakeid", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeaccountisolation_filterhandshakerecordsforcurrentsession" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeConfidentiality.ts", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality_attachhandshakeprofilesandsyncscope", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeConfidentiality.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality_classificationtoscope", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeConfidentiality.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality_confidentialityscope", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeConfidentiality.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality_gethandshakeclassification", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeConfidentiality.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality_handshakeclassification", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeConfidentiality.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality_linkhandshakeprofiles", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeConfidentiality.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality_readhandshakeconfidentialityscope", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeConfidentiality.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality_resolveinnervaultdb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeConfidentiality.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality_scopetoclassification", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeConfidentiality.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality_synchandshakeconfidentialityscope", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeConfidentiality.ts", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality_synchandshakesforprofile", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeConfidentiality.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality", + "target": "apps_electron_vite_project_electron_main_handshake_ledger", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeConfidentiality.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_getledgerdb", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeConfidentiality.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeConfidentiality.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_getprofile", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeConfidentiality.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality", + "target": "apps_electron_vite_project_electron_main_vault_service", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeConfidentiality.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultCanon.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultcanon", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeConfidentiality.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality_gethandshakeclassification", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality_scopetoclassification", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeConfidentiality.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality_gethandshakeclassification", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality_readhandshakeconfidentialityscope", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeConfidentiality.ts", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality_attachhandshakeprofilesandsyncscope", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality_linkhandshakeprofiles", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeConfidentiality.ts", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality_attachhandshakeprofilesandsyncscope", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality_synchandshakeconfidentialityscope", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeConfidentiality.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality_synchandshakeconfidentialityscope", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_getprofile" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeConfidentiality.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality_synchandshakesforprofile", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality_synchandshakeconfidentialityscope", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality_synchandshakesforprofile", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1374", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updatehsprofile", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality_synchandshakesforprofile" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeConfidentiality.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality_gethandshakeclassification", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_getledgerdb" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validatorReadiness.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validatorreadiness", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality_gethandshakeclassification", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/validatorReadiness.ts", + "source_location": "L183", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validatorreadiness_ensurevalidatorandsealedstorageready", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality_gethandshakeclassification" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/capabilityBroker.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_capabilitybroker", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality_gethandshakeclassification", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/capabilityBroker.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_capabilitybroker_canperform", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality_gethandshakeclassification" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultCanon.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultcanon", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality_gethandshakeclassification", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeConfidentiality.ts", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality_attachhandshakeprofilesandsyncscope", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality_resolveinnervaultdb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality_attachhandshakeprofilesandsyncscope", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L1489", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeconfidentiality_attachhandshakeprofilesandsyncscope" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthRemoteCheck.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthremotecheck", + "target": "apps_electron_vite_project_electron_main_handshake_handshakehealthremotecheck_classifyremotedivergence", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthRemoteCheck.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthremotecheck", + "target": "apps_electron_vite_project_electron_main_handshake_handshakehealthremotecheck_healthkey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthRemoteCheck.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthremotecheck", + "target": "apps_electron_vite_project_electron_main_handshake_handshakehealthremotecheck_runhandshakehealthremotecheckafterrelayconnect", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthRemoteCheck.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthremotecheck", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthRemoteCheck.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthremotecheck", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthRemoteCheck.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthremotecheck", + "target": "apps_electron_vite_project_electron_main_internalinference_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthRemoteCheck.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthremotecheck", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointkind", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthRemoteCheck.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthremotecheck", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthRemoteCheck.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthremotecheck", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L869", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws_createcoordinationwsclient", + "target": "apps_electron_vite_project_electron_main_handshake_handshakehealthremotecheck", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthRemoteCheck.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthremotecheck_classifyremotedivergence", + "target": "apps_electron_vite_project_electron_main_handshake_handshakehealthremotecheck_healthkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthRemoteCheck.ts", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthremotecheck_runhandshakehealthremotecheckafterrelayconnect", + "target": "apps_electron_vite_project_electron_main_handshake_handshakehealthremotecheck_classifyremotedivergence", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthRemoteCheck.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthremotecheck_runhandshakehealthremotecheckafterrelayconnect", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointkind" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthRemoteCheck.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthremotecheck_runhandshakehealthremotecheckafterrelayconnect", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthStartupLog.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthstartuplog", + "target": "apps_electron_vite_project_electron_main_handshake_handshakehealthstartuplog_loghandshakehealthstartuplines", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthStartupLog.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthstartuplog", + "target": "apps_electron_vite_project_electron_main_handshake_handshakehealthstartuplog_yn", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthStartupLog.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthstartuplog", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthStartupLog.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthstartuplog", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthStartupLog.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthstartuplog", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthStartupLog.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthstartuplog", + "target": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthStartupLog.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthstartuplog", + "target": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact_redactidforlog", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthStartupLog.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthstartuplog", + "target": "apps_electron_vite_project_electron_main_internalinference_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthStartupLog.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthstartuplog", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthStartupLog.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthstartuplog", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_localdevicerole", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthStartupLog.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthstartuplog", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointkind", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthStartupLog.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthstartuplog", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_peercoordinationdeviceid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthStartupLog.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthstartuplog", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_peerdevicerole", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthStartupLog.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthstartuplog", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthStartupLog.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthstartuplog", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthStartupLog.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthstartuplog_loghandshakehealthstartuplines", + "target": "apps_electron_vite_project_electron_main_handshake_handshakehealthstartuplog_yn", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthStartupLog.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthstartuplog_loghandshakehealthstartuplines", + "target": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact_redactidforlog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthStartupLog.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthstartuplog_loghandshakehealthstartuplines", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthStartupLog.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthstartuplog_loghandshakehealthstartuplines", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_localdevicerole" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthStartupLog.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthstartuplog_loghandshakehealthstartuplines", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointkind" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthStartupLog.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthstartuplog_loghandshakehealthstartuplines", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_peercoordinationdeviceid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthStartupLog.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthstartuplog_loghandshakehealthstartuplines", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_peerdevicerole" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeHealthStartupLog.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakehealthstartuplog_loghandshakehealthstartuplines", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeVerification.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeverification", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeverification_handshakecapsulefields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeVerification.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeverification", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeverification_handshakeverifyresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeVerification.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeverification", + "target": "apps_electron_vite_project_electron_main_handshake_handshakeverification_verifyhandshakecapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeVerification.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeverification", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/handshakeVerification.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_handshakeverification", + "target": "apps_electron_vite_project_electron_main_handshake_types_input_limits", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/hybridSearch.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_hybridsearch", + "target": "apps_electron_vite_project_electron_main_handshake_hybridsearch_hybridsearch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/hybridSearch.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_hybridsearch", + "target": "apps_electron_vite_project_electron_main_handshake_hybridsearch_hybridsearchfilter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/hybridSearch.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_hybridsearch", + "target": "apps_electron_vite_project_electron_main_handshake_hybridsearch_hybridsearchmetrics", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/hybridSearch.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_hybridsearch", + "target": "apps_electron_vite_project_electron_main_handshake_hybridsearch_hybridsearchresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/hybridSearch.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_hybridsearch", + "target": "apps_electron_vite_project_electron_main_handshake_hybridsearch_runsemanticpath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/hybridSearch.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_hybridsearch", + "target": "apps_electron_vite_project_electron_main_handshake_hybridsearch_runstructuredpath", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/hybridSearch.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_hybridsearch", + "target": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/hybridSearch.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_hybridsearch", + "target": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation_checkstructuredlatency", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/hybridSearch.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_hybridsearch", + "target": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation_elapsedms", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/hybridSearch.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_hybridsearch", + "target": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation_logstructuredmetrics", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/hybridSearch.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_hybridsearch", + "target": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation_now", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/hybridSearch.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_hybridsearch", + "target": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation_timed", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/hybridSearch.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_hybridsearch", + "target": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation_timedsync", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/hybridSearch.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_hybridsearch", + "target": "apps_electron_vite_project_electron_main_handshake_structuredquery", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/hybridSearch.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_hybridsearch", + "target": "apps_electron_vite_project_electron_main_handshake_structuredquery_fetchblocksforstructuredlookup", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/hybridSearch.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_hybridsearch", + "target": "apps_electron_vite_project_electron_main_handshake_structuredquery_queryclassifier", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/hybridSearch.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_hybridsearch", + "target": "apps_electron_vite_project_electron_main_handshake_structuredquery_structuredlookup", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/hybridSearch.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_hybridsearch", + "target": "apps_electron_vite_project_electron_main_handshake_structuredquery_structuredlookupfilter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/hybridSearch.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_hybridsearch", + "target": "apps_electron_vite_project_electron_main_handshake_structuredquery_structuredlookupmulti", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/hybridSearch.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_hybridsearch", + "target": "apps_electron_vite_project_electron_main_handshake_structuredquery_structuredlookupresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/hybridSearch.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_hybridsearch", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/hybridSearch.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_hybridsearch", + "target": "apps_electron_vite_project_electron_main_handshake_types_scoredcontextblock", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/hybridSearch.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_hybridsearch_hybridsearchresult", + "target": "apps_electron_vite_project_electron_main_handshake_structuredquery_structuredlookupresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/hybridSearch.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_hybridsearch_hybridsearchresult", + "target": "apps_electron_vite_project_electron_main_handshake_types_scoredcontextblock", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/hybridSearch.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_electron_main_handshake_hybridsearch_runsemanticpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/hybridSearch.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_electron_main_handshake_hybridsearch_runstructuredpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/hybridSearch.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation_checkstructuredlatency" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/hybridSearch.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation_elapsedms" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/hybridSearch.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation_logstructuredmetrics" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/hybridSearch.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation_now" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/hybridSearch.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation_timed" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/hybridSearch.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation_timedsync" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/hybridSearch.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_electron_main_handshake_structuredquery_queryclassifier" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/hybridSearch.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_hybridsearch_runstructuredpath", + "target": "apps_electron_vite_project_electron_main_handshake_structuredquery_fetchblocksforstructuredlookup", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/hybridSearch.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_hybridsearch_runstructuredpath", + "target": "apps_electron_vite_project_electron_main_handshake_structuredquery_structuredlookup", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/hybridSearch.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_hybridsearch_runstructuredpath", + "target": "apps_electron_vite_project_electron_main_handshake_structuredquery_structuredlookupmulti", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/hybridSearch.ts", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_hybridsearch_runsemanticpath", + "target": "apps_electron_vite_project_electron_main_handshake_keywordsearch", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/index.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_index", + "target": "apps_electron_vite_project_electron_main_handshake_ipc", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/index.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_index", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/index.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_index", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_registerhandshakeroutes", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/index.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_index", + "target": "apps_electron_vite_project_electron_main_handshake_pipeline", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/index.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_index", + "target": "apps_electron_vite_project_electron_main_handshake_pipeline_runhandshakeverification", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/index.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_index", + "target": "apps_electron_vite_project_electron_main_handshake_retentionjob", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/index.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_index", + "target": "apps_electron_vite_project_electron_main_handshake_retentionjob_startretentionjob", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/index.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_index", + "target": "apps_electron_vite_project_electron_main_handshake_retentionjob_stopretentionjob", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/index.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_index", + "target": "apps_electron_vite_project_electron_main_handshake_revocation", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/index.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_index", + "target": "apps_electron_vite_project_electron_main_handshake_revocation_revokehandshake", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/index.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_index", + "target": "apps_electron_vite_project_electron_main_handshake_steps_index", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/index.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_index", + "target": "apps_electron_vite_project_electron_main_handshake_steps_index_handshake_pipeline", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/index.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_index", + "target": "apps_electron_vite_project_electron_main_handshake_tierclassification", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/index.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_index", + "target": "apps_electron_vite_project_electron_main_handshake_tierclassification_classifyhandshaketier", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/index.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_index", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/index.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_index", + "target": "apps_electron_vite_project_electron_main_handshake_vaultgating", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/index.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_index", + "target": "apps_electron_vite_project_electron_main_handshake_vaultgating_gatevaultaccess", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/initiatorPersist.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_initiatorpersist", + "target": "apps_electron_vite_project_electron_main_handshake_initiatorpersist_persistinitiatorhandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/initiatorPersist.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_initiatorpersist", + "target": "apps_electron_vite_project_electron_main_handshake_initiatorpersist_persistinitiatorresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/initiatorPersist.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_initiatorpersist", + "target": "apps_electron_vite_project_electron_main_handshake_internalpersistence", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/initiatorPersist.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_initiatorpersist", + "target": "apps_electron_vite_project_electron_main_handshake_internalpersistence_validateinternalinitiatecapsulewire", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/initiatorPersist.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_initiatorpersist", + "target": "apps_electron_vite_project_electron_main_handshake_signaturekeys", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/initiatorPersist.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_initiatorpersist", + "target": "apps_electron_vite_project_electron_main_handshake_signaturekeys_signingkeypair", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/initiatorPersist.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_initiatorpersist", + "target": "apps_electron_vite_project_electron_main_handshake_steps_policyresolution", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/initiatorPersist.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_initiatorpersist", + "target": "apps_electron_vite_project_electron_main_handshake_steps_policyresolution_resolveeffectivepolicyfn", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/initiatorPersist.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_initiatorpersist", + "target": "apps_electron_vite_project_electron_main_handshake_tierclassification", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/initiatorPersist.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_initiatorpersist", + "target": "apps_electron_vite_project_electron_main_handshake_tierclassification_classifyhandshaketier", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/initiatorPersist.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_initiatorpersist", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/initiatorPersist.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_initiatorpersist", + "target": "apps_electron_vite_project_electron_main_handshake_types_beapkeyagreementmaterial", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/initiatorPersist.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_initiatorpersist", + "target": "apps_electron_vite_project_electron_main_handshake_types_builddefaultreceiverpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/initiatorPersist.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_initiatorpersist", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/initiatorPersist.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_initiatorpersist", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/initiatorPersist.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_initiatorpersist", + "target": "apps_electron_vite_project_electron_main_handshake_types_input_limits", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/initiatorPersist.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_initiatorpersist", + "target": "apps_electron_vite_project_electron_main_handshake_types_ssosession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/initiatorPersist.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_initiatorpersist", + "target": "packages_shared_src_handshake_contextgovernance_contextitemgovernance", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/initiatorPersist.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_initiatorpersist", + "target": "packages_shared_src_handshake_contextgovernance_createdefaultgovernance", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/initiatorPersist.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_initiatorpersist", + "target": "packages_shared_src_handshake_contextgovernance_createmessagegovernance", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/initiatorPersist.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_initiatorpersist", + "target": "packages_shared_src_handshake_policyutils", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/initiatorPersist.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_initiatorpersist", + "target": "packages_shared_src_handshake_types_aiprocessingmode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_initiatorpersist", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/initiatorPersist.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_initiatorpersist_persistinitiatorhandshakerecord", + "target": "apps_electron_vite_project_electron_main_handshake_internalpersistence_validateinternalinitiatecapsulewire" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/initiatorPersist.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_initiatorpersist_persistinitiatorhandshakerecord", + "target": "apps_electron_vite_project_electron_main_handshake_steps_policyresolution_resolveeffectivepolicyfn" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/initiatorPersist.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_initiatorpersist_persistinitiatorhandshakerecord", + "target": "apps_electron_vite_project_electron_main_handshake_tierclassification_classifyhandshaketier" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/initiatorPersist.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_initiatorpersist_persistinitiatorhandshakerecord", + "target": "apps_electron_vite_project_electron_main_handshake_types_builddefaultreceiverpolicy" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/initiatorPersist.ts", + "source_location": "L183", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_initiatorpersist_persistinitiatorhandshakerecord", + "target": "packages_shared_src_handshake_contextgovernance_createdefaultgovernance" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/initiatorPersist.ts", + "source_location": "L173", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_initiatorpersist_persistinitiatorhandshakerecord", + "target": "packages_shared_src_handshake_contextgovernance_createmessagegovernance" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_initiatorpersist_persistinitiatorhandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L1477", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_initiatorpersist_persistinitiatorhandshakerecord" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/intentClassifier.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_intentclassifier", + "target": "apps_electron_vite_project_electron_main_handshake_intentclassifier_attachment_requires_selection_patterns", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/intentClassifier.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_intentclassifier", + "target": "apps_electron_vite_project_electron_main_handshake_intentclassifier_chatintent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/intentClassifier.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_intentclassifier", + "target": "apps_electron_vite_project_electron_main_handshake_intentclassifier_classifyintent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/intentClassifier.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_intentclassifier", + "target": "apps_electron_vite_project_electron_main_handshake_intentclassifier_document_lookup_patterns", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/intentClassifier.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_intentclassifier", + "target": "apps_electron_vite_project_electron_main_handshake_intentclassifier_general_search_patterns", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/intentClassifier.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_intentclassifier", + "target": "apps_electron_vite_project_electron_main_handshake_intentclassifier_handshake_context_patterns", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/intentClassifier.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_intentclassifier", + "target": "apps_electron_vite_project_electron_main_handshake_intentclassifier_inbox_lookup_patterns", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/intentClassifier.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_intentclassifier", + "target": "apps_electron_vite_project_electron_main_handshake_intentclassifier_intentresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/intentClassifier.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_intentclassifier", + "target": "apps_electron_vite_project_electron_main_handshake_intentclassifier_queryrequiresattachmentselection", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/intentExecution.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_intentexecution", + "target": "apps_electron_vite_project_electron_main_handshake_intentclassifier", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/intentRouter.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_intentrouter", + "target": "apps_electron_vite_project_electron_main_handshake_intentclassifier", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/intentExecution.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_intentexecution", + "target": "apps_electron_vite_project_electron_main_handshake_intentclassifier_chatintent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/intentExecution.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_intentexecution_structuredexecutionresult", + "target": "apps_electron_vite_project_electron_main_handshake_intentclassifier_chatintent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/intentRouter.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_intentrouter", + "target": "apps_electron_vite_project_electron_main_handshake_intentclassifier_chatintent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/intentClassifier.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_intentclassifier_queryrequiresattachmentselection", + "target": "apps_electron_vite_project_electron_main_handshake_intentclassifier_attachment_requires_selection_patterns" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/intentExecution.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_intentexecution", + "target": "apps_electron_vite_project_electron_main_handshake_intentexecution_executestructuredsearch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/intentExecution.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_intentexecution", + "target": "apps_electron_vite_project_electron_main_handshake_intentexecution_friendlytypename", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/intentExecution.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_intentexecution", + "target": "apps_electron_vite_project_electron_main_handshake_intentexecution_structuredexecutionresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/intentExecution.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_intentexecution", + "target": "apps_electron_vite_project_electron_main_handshake_intentexecution_structuredresultitem", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/intentExecution.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_intentexecution", + "target": "apps_electron_vite_project_electron_main_handshake_intentexecution_truncate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/intentExecution.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_intentexecution_executestructuredsearch", + "target": "apps_electron_vite_project_electron_main_handshake_intentexecution_friendlytypename", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/intentExecution.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_intentexecution_executestructuredsearch", + "target": "apps_electron_vite_project_electron_main_handshake_intentexecution_truncate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/intentExecution.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_intentexecution_executestructuredsearch", + "target": "apps_electron_vite_project_electron_main_handshake_keywordsearch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/intentRouter.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_intentrouter", + "target": "apps_electron_vite_project_electron_main_handshake_intentrouter_routebyintent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/intentRouter.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_intentrouter", + "target": "apps_electron_vite_project_electron_main_handshake_intentrouter_routerdomain", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/intentRouter.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_intentrouter", + "target": "apps_electron_vite_project_electron_main_handshake_intentrouter_routerresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalCoordinationWire.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalcoordinationwire", + "target": "apps_electron_vite_project_electron_main_handshake_internalcoordinationwire_coordinationdevicepairforinternalrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalCoordinationWire.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalcoordinationwire", + "target": "apps_electron_vite_project_electron_main_handshake_internalcoordinationwire_internalrelaycapsulewireopts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalCoordinationWire.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalcoordinationwire", + "target": "apps_electron_vite_project_electron_main_handshake_internalcoordinationwire_internalrelaycapsulewireoptsfromrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalCoordinationWire.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalcoordinationwire", + "target": "apps_electron_vite_project_electron_main_handshake_internalcoordinationwire_internalrelayrecordslice", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalCoordinationWire.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalcoordinationwire", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalCoordinationWire.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalcoordinationwire", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalRelayOutboundGuards.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards", + "target": "apps_electron_vite_project_electron_main_handshake_internalcoordinationwire", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_internalcoordinationwire", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTokenBackfill.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptokenbackfill", + "target": "apps_electron_vite_project_electron_main_handshake_internalcoordinationwire", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/revocation.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_revocation", + "target": "apps_electron_vite_project_electron_main_handshake_internalcoordinationwire", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull", + "target": "apps_electron_vite_project_electron_main_handshake_internalcoordinationwire", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalCoordinationWire.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalcoordinationwire_coordinationdevicepairforinternalrecord", + "target": "apps_electron_vite_project_electron_main_handshake_internalcoordinationwire_internalrelaycapsulewireoptsfromrecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalRelayOutboundGuards.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards", + "target": "apps_electron_vite_project_electron_main_handshake_internalcoordinationwire_internalrelaycapsulewireoptsfromrecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/internalRelayOutboundGuards.ts", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_applycontextsyncinternalroutingfromrecord", + "target": "apps_electron_vite_project_electron_main_handshake_internalcoordinationwire_internalrelaycapsulewireoptsfromrecord" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/internalRelayOutboundGuards.ts", + "source_location": "L243", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_validatecoordinationinternalpayloadbeforepost", + "target": "apps_electron_vite_project_electron_main_handshake_internalcoordinationwire_internalrelaycapsulewireoptsfromrecord" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_internalcoordinationwire_internalrelaycapsulewireoptsfromrecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L2773", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_internalcoordinationwire_internalrelaycapsulewireoptsfromrecord" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTokenBackfill.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptokenbackfill", + "target": "apps_electron_vite_project_electron_main_handshake_internalcoordinationwire_internalrelaycapsulewireoptsfromrecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTokenBackfill.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptokenbackfill_runactivehandshakelocalp2ptokenbackfill", + "target": "apps_electron_vite_project_electron_main_handshake_internalcoordinationwire_internalrelaycapsulewireoptsfromrecord" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/revocation.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_revocation", + "target": "apps_electron_vite_project_electron_main_handshake_internalcoordinationwire_internalrelaycapsulewireoptsfromrecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/revocation.ts", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_revocation_revokehandshake", + "target": "apps_electron_vite_project_electron_main_handshake_internalcoordinationwire_internalrelaycapsulewireoptsfromrecord" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull", + "target": "apps_electron_vite_project_electron_main_handshake_internalcoordinationwire_internalrelaycapsulewireoptsfromrecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L363", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull_pullfromrelay", + "target": "apps_electron_vite_project_electron_main_handshake_internalcoordinationwire_internalrelaycapsulewireoptsfromrecord" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_internalcoordinationwire_coordinationdevicepairforinternalrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalPersistence.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalpersistence", + "target": "apps_electron_vite_project_electron_main_handshake_internalpersistence_computeinternalroutingkey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalPersistence.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalpersistence", + "target": "apps_electron_vite_project_electron_main_handshake_internalpersistence_finalizeinternalhandshakepersistence", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalPersistence.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalpersistence", + "target": "apps_electron_vite_project_electron_main_handshake_internalpersistence_isinternalcoordinationidentitycomplete", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalPersistence.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalpersistence", + "target": "apps_electron_vite_project_electron_main_handshake_internalpersistence_validateinternalinitiatecapsulewire", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalPersistence.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalpersistence", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalPersistence.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalpersistence", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalPersistence.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalpersistence", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalPersistence.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalpersistence", + "target": "packages_shared_src_handshake_internalendpointvalidation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalPersistence.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalpersistence", + "target": "packages_shared_src_handshake_internalendpointvalidation_internal_endpoint_error_codes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalPersistence.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalpersistence", + "target": "packages_shared_src_handshake_internalendpointvalidation_isvalidpairingcodeformat", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalPersistence.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalpersistence", + "target": "packages_shared_src_handshake_internalendpointvalidation_validateinternalendpointfields", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalPersistence.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalpersistence", + "target": "packages_shared_src_handshake_internalendpointvalidation_validateinternalendpointpairdistinct", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_internalpersistence", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/recipientPersist.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_recipientpersist", + "target": "apps_electron_vite_project_electron_main_handshake_internalpersistence", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/internalRoutingCapsule.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_internalroutingcapsule", + "target": "apps_electron_vite_project_electron_main_handshake_internalpersistence", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/ownership.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_ownership", + "target": "apps_electron_vite_project_electron_main_handshake_internalpersistence", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalPersistence.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalpersistence_finalizeinternalhandshakepersistence", + "target": "apps_electron_vite_project_electron_main_handshake_internalpersistence_computeinternalroutingkey", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/ownership.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_ownership", + "target": "apps_electron_vite_project_electron_main_handshake_internalpersistence_computeinternalroutingkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalPersistence.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalpersistence_finalizeinternalhandshakepersistence", + "target": "apps_electron_vite_project_electron_main_handshake_internalpersistence_isinternalcoordinationidentitycomplete", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_internalpersistence_isinternalcoordinationidentitycomplete", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L2135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_internalpersistence_isinternalcoordinationidentitycomplete" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/internalPersistence.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalpersistence_validateinternalinitiatecapsulewire", + "target": "packages_shared_src_handshake_internalendpointvalidation_isvalidpairingcodeformat" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/internalPersistence.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalpersistence_validateinternalinitiatecapsulewire", + "target": "packages_shared_src_handshake_internalendpointvalidation_validateinternalendpointfields" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/internalPersistence.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalpersistence_validateinternalinitiatecapsulewire", + "target": "packages_shared_src_handshake_internalendpointvalidation_validateinternalendpointpairdistinct" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/recipientPersist.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_recipientpersist", + "target": "apps_electron_vite_project_electron_main_handshake_internalpersistence_validateinternalinitiatecapsulewire", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/recipientPersist.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_recipientpersist_persistrecipienthandshakerecord", + "target": "apps_electron_vite_project_electron_main_handshake_internalpersistence_validateinternalinitiatecapsulewire" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/internalRoutingCapsule.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_internalroutingcapsule", + "target": "apps_electron_vite_project_electron_main_handshake_internalpersistence_validateinternalinitiatecapsulewire", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalRelayOutboundGuards.ts", + "source_location": "L183", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards", + "target": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_applycontextsyncinternalroutingfromrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalRelayOutboundGuards.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards", + "target": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_collectinternalrelaywiregaps", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalRelayOutboundGuards.ts", + "source_location": "L170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards", + "target": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_coordinationprehttpvalidation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalRelayOutboundGuards.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards", + "target": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_enqueueoutboundcapsuleresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalRelayOutboundGuards.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards", + "target": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_formatlocalinternalrelayvalidationjson", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalRelayOutboundGuards.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards", + "target": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_isinternalrelaycapsuleenvelope", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalRelayOutboundGuards.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards", + "target": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_local_internal_relay_validation_failed", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalRelayOutboundGuards.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards", + "target": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_nz", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalRelayOutboundGuards.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards", + "target": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_relay_envelope_internal_wire_types", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalRelayOutboundGuards.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards", + "target": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_shouldvalidateinternalrelaywire", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalRelayOutboundGuards.ts", + "source_location": "L215", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards", + "target": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_validatecoordinationinternalpayloadbeforepost", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalRelayOutboundGuards.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards", + "target": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_validateinternalcapsulebeforeenqueue", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalRelayOutboundGuards.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalRelayOutboundGuards.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalRelayOutboundGuards.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards", + "target": "packages_ingestion_core_src_beapdetection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalRelayOutboundGuards.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards", + "target": "packages_ingestion_core_src_beapdetection_iscoordinationrelaynativebeap", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalRelayOutboundGuards.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards", + "target": "packages_shared_src_handshake_internalendpointvalidation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalRelayOutboundGuards.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards", + "target": "packages_shared_src_handshake_internalendpointvalidation_internal_endpoint_error_codes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport", + "target": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/internalRelayOutboundGuards.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_isinternalrelaycapsuleenvelope", + "target": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_relay_envelope_internal_wire_types" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalRelayOutboundGuards.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_collectinternalrelaywiregaps", + "target": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_nz", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalRelayOutboundGuards.ts", + "source_location": "L254", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_validatecoordinationinternalpayloadbeforepost", + "target": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_nz", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalRelayOutboundGuards.ts", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_validateinternalcapsulebeforeenqueue", + "target": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_nz", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport_summarizeinternalwireforlogs", + "target": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_nz" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalRelayOutboundGuards.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_shouldvalidateinternalrelaywire", + "target": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_isinternalrelaycapsuleenvelope", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalRelayOutboundGuards.ts", + "source_location": "L264", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_validatecoordinationinternalpayloadbeforepost", + "target": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_collectinternalrelaywiregaps", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalRelayOutboundGuards.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_validateinternalcapsulebeforeenqueue", + "target": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_collectinternalrelaywiregaps", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/internalRelayOutboundGuards.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_shouldvalidateinternalrelaywire", + "target": "packages_ingestion_core_src_beapdetection_iscoordinationrelaynativebeap" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalRelayOutboundGuards.ts", + "source_location": "L222", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_validatecoordinationinternalpayloadbeforepost", + "target": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_shouldvalidateinternalrelaywire", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalRelayOutboundGuards.ts", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_validateinternalcapsulebeforeenqueue", + "target": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_shouldvalidateinternalrelaywire", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_enqueueoutboundcapsuleresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_formatlocalinternalrelayvalidationjson", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L1115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_formatlocalinternalrelayvalidationjson" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport", + "target": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_formatlocalinternalrelayvalidationjson", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L597", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport_sendcapsuleviacoordination", + "target": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_formatlocalinternalrelayvalidationjson" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_validateinternalcapsulebeforeenqueue", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L354", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_enqueueoutboundcapsule", + "target": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_validateinternalcapsulebeforeenqueue" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/internalRelayOutboundGuards.ts", + "source_location": "L196", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_applycontextsyncinternalroutingfromrecord", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport", + "target": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_applycontextsyncinternalroutingfromrecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L594", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport_sendcapsuleviacoordination", + "target": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_applycontextsyncinternalroutingfromrecord" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/internalRelayOutboundGuards.ts", + "source_location": "L236", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_validatecoordinationinternalpayloadbeforepost", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport", + "target": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_validatecoordinationinternalpayloadbeforepost", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L595", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport_sendcapsuleviacoordination", + "target": "apps_electron_vite_project_electron_main_handshake_internalrelayoutboundguards_validatecoordinationinternalpayloadbeforepost" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_authoritativedeviceinternalrole", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_computeauthoritativedeviceinternalrole", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_computesandboxorchestratoravailability", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L155", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_derivedeliverystatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_derivelivestatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_haspeerqbeappublickeymaterial", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_internalsandboxlistentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_internalsandboxlistincompleteentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L192", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_isbeapcloneeligibleforrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L203", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_iseligibleactiveinternalhostsandboxrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L181", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_isinternalhostsandboxkeyingcomplete", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_islocalhostpeersandbox", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_islocalsandboxpeerhost", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L219", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_listavailableinternalsandboxes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_normid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_p2p_beap_inbox_account_id", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L142", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_peercoordinationorlegacyid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_peerdevicename", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_sandboxorchestratoravailability", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_sandboxorchestratoravailabilitystatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_sessionispartyonvisiblehandshakerow", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_getqueuestatus", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi", + "target": "apps_electron_vite_project_electron_main_handshake_types_ssosession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_getp2phealth", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_computeauthoritativedeviceinternalrole", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_islocalhostpeersandbox", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_computeauthoritativedeviceinternalrole", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_islocalsandboxpeerhost", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_computeauthoritativedeviceinternalrole", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_sessionispartyonvisiblehandshakerow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L306", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_listavailableinternalsandboxes", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_computeauthoritativedeviceinternalrole", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_computesandboxorchestratoravailability", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_getp2phealth", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L305", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_listavailableinternalsandboxes", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_computesandboxorchestratoravailability", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L144", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_peercoordinationorlegacyid", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_normid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L209", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_iseligibleactiveinternalhostsandboxrecord", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_sessionispartyonvisiblehandshakerow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L269", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_listavailableinternalsandboxes", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_sessionispartyonvisiblehandshakerow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L210", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_iseligibleactiveinternalhostsandboxrecord", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_islocalhostpeersandbox", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L270", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_listavailableinternalsandboxes", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_islocalhostpeersandbox", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L293", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_listavailableinternalsandboxes", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_peercoordinationorlegacyid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L294", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_listavailableinternalsandboxes", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_peerdevicename", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L156", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_derivedeliverystatus", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_getqueuestatus", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L280", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_listavailableinternalsandboxes", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_derivedeliverystatus", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_derivelivestatus", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_getp2phealth", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L281", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_listavailableinternalsandboxes", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_derivelivestatus", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L184", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_isinternalhostsandboxkeyingcomplete", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_haspeerqbeappublickeymaterial", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L197", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_isbeapcloneeligibleforrecord", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_isinternalhostsandboxkeyingcomplete", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L285", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_listavailableinternalsandboxes", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_isinternalhostsandboxkeyingcomplete", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L286", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_listavailableinternalsandboxes", + "target": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_isbeapcloneeligibleforrecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts", + "source_location": "L231", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_internalsandboxesapi_listavailableinternalsandboxes", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_getp2phealth" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L243", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_acceptorx25519fromhandshakeacceptparams", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L198", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_boundkeyagreementerror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L469", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_buildblocksresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L484", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_buildcontextblocksfromparams", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L492", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_buildcontextblocksfromparamswithpolicy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L435", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_collectstringsfromjson", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_coordinationacceptoruseridforregistration", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L305", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_ensurekeyagreementkeys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L212", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_ensurekeyagreementkeysoptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L445", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_extractsnippetfrompayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_formatinternalendpointvalidationfailure", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L681", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_getcoordinationoidctoken", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L693", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_getcounterpartyemail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L676", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_getcurrentsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_getlocaldeviceidforrelay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_getlocalpairingcode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L648", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_getoidctoken", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L647", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_getsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L700", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L285", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_handshakeacceptmissingx25519result", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L257", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_lognormalacceptx25519bindingfailure", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L645", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_oidctokenprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L413", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_path_to_label", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L430", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_pathtohumanlabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L463", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_rawblockwithpolicy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L3466", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_registerhandshakeroutes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L685", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_requiresession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L667", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_resetssosessionprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L543", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_resolveprofileidstocontextblocks", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L662", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_setoidctokenprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L655", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_setssosessionprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L644", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_ssosessionprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_enqueueoutboundcapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_logprocessoutboundqueuefailure", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_processoutboundqueue", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_processoutboundqueueresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_recipientpersist", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_recipientpersist_persistrecipienthandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_relationshipid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_relationshipid_deriverelationshipid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_resolvepairingcode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_resolvepairingcode_resolvepairingcodeviacoordination", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_revocation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_revocation_revokehandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_types_beapkeyagreementmaterial", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_types_reasoncode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_types_ssosession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_ingestion_ingestionpipeline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_ingestion_ingestionpipeline_processincominginput", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getpairingcode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_p2p_beapdeliveryack", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_p2p_beapdeliveryack_notifybeapdeliveryack", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_p2p_beapdeliveryack_waitforbeapdeliveryack", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_normalizecoordinationurlforlocaldial", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationws_replaybufferedcontextsync", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_geteffectiverelayendpoint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_getp2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_p2p_relaydevicebinding", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_p2p_relaydevicebinding_getcanonicalrelaydeviceid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_p2p_relayidentity", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_p2p_relayidentity_coordinationregistryuseridsforsession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_p2p_relaysync", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_p2p_relaysync_registerhandshakewithrelay", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_assertsandboxdataegressallowed", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_iseffectivesandboxnode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_preparesealedoperationalupdate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedquery", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_security_cryptofingerprint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_security_cryptofingerprint_safefingerprint", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L187", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "apps_electron_vite_project_electron_main_vault_rpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "packages_shared_src_handshake_contextgovernance_contextitemgovernance", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "packages_shared_src_handshake_contextgovernance_createdefaultgovernance", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "packages_shared_src_handshake_contextgovernance_createmessagegovernance", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "packages_shared_src_handshake_contextgovernance_usagepolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "packages_shared_src_handshake_internalendpointvalidation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "packages_shared_src_handshake_internalendpointvalidation_formatpairingcodefordisplay", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "packages_shared_src_handshake_internalendpointvalidation_internal_endpoint_error_codes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "packages_shared_src_handshake_internalendpointvalidation_isvalidpairingcodeformat", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "packages_shared_src_handshake_internalendpointvalidation_normalizepairingcode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "packages_shared_src_handshake_internalendpointvalidation_validateinternalendpointfields", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "packages_shared_src_handshake_internalendpointvalidation_validateinternalendpointpairdistinct", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "packages_shared_src_handshake_internalendpointvalidation_validateinternalinitiatecontract", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "packages_shared_src_handshake_receiveremailvalidation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "packages_shared_src_handshake_receiveremailvalidation_issameaccounthandshakeemails", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc", + "target": "packages_shared_src_handshake_receiveremailvalidation_validatereceiveremail", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L1224", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_rationale_1224", + "target": "apps_electron_vite_project_electron_main_handshake_ipc", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L2656", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_rationale_2656", + "target": "apps_electron_vite_project_electron_main_handshake_ipc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L571", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_handlecoordinationoutbound403", + "target": "apps_electron_vite_project_electron_main_handshake_ipc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.transport.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_transport_test", + "target": "apps_electron_vite_project_electron_main_handshake_ipc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testIpcHarness.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testipcharness", + "target": "apps_electron_vite_project_electron_main_handshake_ipc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testWsClient.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testwsclient", + "target": "apps_electron_vite_project_electron_main_handshake_ipc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/dbAccess.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_dbaccess", + "target": "apps_electron_vite_project_electron_main_handshake_ipc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish", + "target": "apps_electron_vite_project_electron_main_handshake_ipc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence", + "target": "apps_electron_vite_project_electron_main_handshake_ipc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities", + "target": "apps_electron_vite_project_electron_main_handshake_ipc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_handshake_ipc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget", + "target": "apps_electron_vite_project_electron_main_handshake_ipc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget", + "target": "apps_electron_vite_project_electron_main_handshake_ipc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relaySync.ts", + "source_location": "L257", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaysync_reregisterinternalhandshakeaftercoordinationp2psignal403", + "target": "apps_electron_vite_project_electron_main_handshake_ipc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_coordinationacceptoruseridforregistration", + "target": "packages_shared_src_handshake_receiveremailvalidation_issameaccounthandshakeemails", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L1503", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_coordinationacceptoruseridforregistration", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_getlocaldeviceidforrelay", + "target": "apps_electron_vite_project_electron_main_p2p_relaydevicebinding_getcanonicalrelaydeviceid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L1335", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_getlocaldeviceidforrelay", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L150", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_getlocalpairingcode", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getpairingcode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L1336", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_getlocalpairingcode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L1345", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_formatinternalendpointvalidationfailure", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L201", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_boundkeyagreementerror", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_boundkeyagreementerror_constructor", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L1902", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_acceptorx25519fromhandshakeacceptparams", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L348", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_ensurekeyagreementkeys", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_lognormalacceptx25519bindingfailure", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L1922", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_lognormalacceptx25519bindingfailure", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L1929", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_handshakeacceptmissingx25519result", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L1393", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_ensurekeyagreementkeys", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L2981", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_pathtohumanlabel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L453", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_extractsnippetfrompayload", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_collectstringsfromjson", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L3037", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_extractsnippetfrompayload", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L488", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_buildcontextblocksfromparams", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_buildcontextblocksfromparamswithpolicy", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L1356", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_buildcontextblocksfromparamswithpolicy", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L1359", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_resolveprofileidstocontextblocks", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L677", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_getcurrentsession", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_getsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L3515", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_registerhandshakeroutes", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_getsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L686", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_requiresession", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_getsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L682", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_getcoordinationoidctoken", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_getoidctoken", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L785", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_getoidctoken", + "confidence_score": 0.5 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L3516", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_registerhandshakeroutes", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_getoidctoken", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L879", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_getcurrentsession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/dbAccess.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_dbaccess", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_getcurrentsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/dbAccess.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_getcurrentsession" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_getcurrentsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L359", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish_publishhostaidirectbeapadvertisementsforeligiblehost", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_getcurrentsession" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_getcurrentsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L190", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_asserthostmachinesessionmatcheshandshakehostparty", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_getcurrentsession" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_getcurrentsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities_buildinternalinferencecapabilitiesresult", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_getcurrentsession" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_getcurrentsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1420", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listactiveinternalhandshakesforcurrentsession", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_getcurrentsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1692", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_getcurrentsession" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_getcurrentsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L252", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget_handlegetinternalinferencepolicy", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_getcurrentsession" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_getcurrentsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_resolveactivesandboxtohosthandshakeid", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_getcurrentsession" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L782", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_requiresession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L2760", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_getcounterpartyemail", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L3004", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_keywordsearch", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L1113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_enqueueoutboundcapsule" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L2618", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_logprocessoutboundqueuefailure" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L1133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_processoutboundqueue" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L846", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_recipientpersist_persistrecipienthandshakerecord" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L2317", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_relationshipid_deriverelationshipid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L1386", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_resolvepairingcode_resolvepairingcodeviacoordination" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L785", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_revocation_revokehandshake" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L2970", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_structuredquery", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L809", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_ingestion_ingestionpipeline_processincominginput" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L1162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_p2p_beapdeliveryack_notifybeapdeliveryack" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L1132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_p2p_beapdeliveryack_waitforbeapdeliveryack" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L1547", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_normalizecoordinationurlforlocaldial" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L2623", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationws_replaybufferedcontextsync" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L1371", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_geteffectiverelayendpoint" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L1369", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_getp2pconfig" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L2496", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_p2p_relayidentity_coordinationregistryuseridsforsession" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L1501", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_p2p_relaysync_registerhandshakewithrelay" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L939", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_assertsandboxdataegressallowed" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L938", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_iseffectivesandboxnode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L3407", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_preparesealedoperationalupdate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L3271", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedquery" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L1020", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_security_cryptofingerprint_safefingerprint" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L950", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "apps_electron_vite_project_electron_main_vault_capabilitybroker", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L2334", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "packages_shared_src_handshake_contextgovernance_createdefaultgovernance" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L2329", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "packages_shared_src_handshake_contextgovernance_createmessagegovernance" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L2010", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "packages_shared_src_handshake_internalendpointvalidation_formatpairingcodefordisplay" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L2002", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "packages_shared_src_handshake_internalendpointvalidation_isvalidpairingcodeformat" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L1328", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "packages_shared_src_handshake_internalendpointvalidation_normalizepairingcode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L1954", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "packages_shared_src_handshake_internalendpointvalidation_validateinternalendpointfields" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L1972", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "packages_shared_src_handshake_internalendpointvalidation_validateinternalendpointpairdistinct" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L1337", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "packages_shared_src_handshake_internalendpointvalidation_validateinternalinitiatecontract" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L856", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "packages_shared_src_handshake_receiveremailvalidation_issameaccounthandshakeemails" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L827", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "target": "packages_shared_src_handshake_receiveremailvalidation_validatereceiveremail" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.transport.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_transport_test", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testIpcHarness.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testipcharness", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testIpcHarness.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testipcharness_ipcharness_invoke", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testWsClient.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testwsclient", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testWsClient.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testwsclient_sendhandshakerpc", + "target": "apps_electron_vite_project_electron_main_handshake_ipc_handlehandshakerpc" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ipc.ts", + "source_location": "L3516", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ipc_registerhandshakeroutes", + "target": "apps_electron_vite_project_electron_main_handshake_revocation_revokehandshake" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/keyBindingDebug.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_keybindingdebug", + "target": "apps_electron_vite_project_electron_main_handshake_keybindingdebug_f16", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/keyBindingDebug.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_keybindingdebug", + "target": "apps_electron_vite_project_electron_main_handshake_keybindingdebug_keybindingloginput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/keyBindingDebug.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_keybindingdebug", + "target": "apps_electron_vite_project_electron_main_handshake_keybindingdebug_loghandshakekeybinding", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/keyBindingDebug.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_keybindingdebug", + "target": "apps_electron_vite_project_electron_main_handshake_keybindingdebug_peerx25519split", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/keyBindingDebug.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_keybindingdebug", + "target": "apps_electron_vite_project_electron_main_handshake_keybindingdebug_warnifcounterpartykeysuspiciousoverwrite", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/keyBindingDebug.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_keybindingdebug", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/keyBindingDebug.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_keybindingdebug", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relaySync.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaysync", + "target": "apps_electron_vite_project_electron_main_handshake_keybindingdebug", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/keyBindingDebug.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_keybindingdebug_loghandshakekeybinding", + "target": "apps_electron_vite_project_electron_main_handshake_keybindingdebug_f16", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/keyBindingDebug.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_keybindingdebug_peerx25519split", + "target": "apps_electron_vite_project_electron_main_handshake_keybindingdebug_f16", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/keyBindingDebug.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_keybindingdebug_loghandshakekeybinding", + "target": "apps_electron_vite_project_electron_main_handshake_keybindingdebug_peerx25519split", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relaySync.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaysync", + "target": "apps_electron_vite_project_electron_main_handshake_keybindingdebug_loghandshakekeybinding", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/relaySync.ts", + "source_location": "L134", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaysync_registerhandshakewithrelay", + "target": "apps_electron_vite_project_electron_main_handshake_keybindingdebug_loghandshakekeybinding" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/keywordSearch.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_keywordsearch", + "target": "apps_electron_vite_project_electron_main_handshake_keywordsearch_extractsearchabletext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/keywordSearch.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_keywordsearch", + "target": "apps_electron_vite_project_electron_main_handshake_keywordsearch_keywordsearch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/keywordSearch.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_keywordsearch", + "target": "apps_electron_vite_project_electron_main_handshake_keywordsearch_scoreblock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/keywordSearch.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_keywordsearch", + "target": "apps_electron_vite_project_electron_main_handshake_keywordsearch_stopwords", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/keywordSearch.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_keywordsearch", + "target": "apps_electron_vite_project_electron_main_handshake_keywordsearch_tokenize", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/keywordSearch.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_keywordsearch", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/keywordSearch.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_keywordsearch", + "target": "apps_electron_vite_project_electron_main_handshake_types_scoredcontextblock", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/keywordSearch.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_keywordsearch", + "target": "apps_electron_vite_project_electron_main_handshake_visibilityfilter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/keywordSearch.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_keywordsearch", + "target": "apps_electron_vite_project_electron_main_handshake_visibilityfilter_isvaultcurrentlyunlocked", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/keywordSearch.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_keywordsearch", + "target": "apps_electron_vite_project_electron_main_handshake_visibilityfilter_visibilitywhereclause", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/keywordSearch.ts", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_keywordsearch_keywordsearch", + "target": "apps_electron_vite_project_electron_main_handshake_keywordsearch_extractsearchabletext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/keywordSearch.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_keywordsearch_keywordsearch", + "target": "apps_electron_vite_project_electron_main_handshake_keywordsearch_tokenize", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/keywordSearch.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_keywordsearch_scoreblock", + "target": "apps_electron_vite_project_electron_main_handshake_keywordsearch_tokenize", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/keywordSearch.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_keywordsearch_keywordsearch", + "target": "apps_electron_vite_project_electron_main_handshake_keywordsearch_stopwords" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/keywordSearch.ts", + "source_location": "L175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_keywordsearch_keywordsearch", + "target": "apps_electron_vite_project_electron_main_handshake_keywordsearch_scoreblock", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/keywordSearch.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_keywordsearch_keywordsearch", + "target": "apps_electron_vite_project_electron_main_handshake_visibilityfilter_isvaultcurrentlyunlocked" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/keywordSearch.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_keywordsearch_keywordsearch", + "target": "apps_electron_vite_project_electron_main_handshake_visibilityfilter_visibilitywhereclause" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/latencyInstrumentation.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation", + "target": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation_ai_latency_budget_ms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/latencyInstrumentation.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation", + "target": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation_buildlatencydebugpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/latencyInstrumentation.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation", + "target": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation_checkailatency", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/latencyInstrumentation.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation", + "target": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation_checkstructuredlatency", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/latencyInstrumentation.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation", + "target": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation_elapsedms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/latencyInstrumentation.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation", + "target": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation_latencydebugpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/latencyInstrumentation.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation", + "target": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation_logaiquerymetrics", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/latencyInstrumentation.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation", + "target": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation_logcachehitmetrics", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/latencyInstrumentation.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation", + "target": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation_logstructuredmetrics", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/latencyInstrumentation.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation", + "target": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation_now", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/latencyInstrumentation.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation", + "target": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation_querylatencymetrics", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/latencyInstrumentation.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation", + "target": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation_structured_latency_budget_ms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/latencyInstrumentation.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation", + "target": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation_timed", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/latencyInstrumentation.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation", + "target": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation_timedsync", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/latencyInstrumentation.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation_elapsedms", + "target": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation_now", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/latencyInstrumentation.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation_timed", + "target": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation_now", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/latencyInstrumentation.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation_timedsync", + "target": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation_now", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/latencyInstrumentation.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation_timed", + "target": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation_elapsedms", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/latencyInstrumentation.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation_timedsync", + "target": "apps_electron_vite_project_electron_main_handshake_latencyinstrumentation_elapsedms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ledger", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_applyschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L302", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ledger", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_buildledgersessiontoken", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L257", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ledger", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_closeledger", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ledger", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_derivekeyfromsessiontoken", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L407", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ledger", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_getledgercontextblocks", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L294", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ledger", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_getledgerdb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L382", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ledger", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_getledgerhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ledger", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_getledgerpath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L398", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ledger", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_insertledgercontextblock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L341", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ledger", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_insertledgerhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L332", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ledger", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_ledgercontextblock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L310", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ledger", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_ledgerhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L386", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ledger", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_listledgerhandshakes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ledger", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_loadsqlite", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ledger", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_moduledir", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ledger", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_openledger", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ledger", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_require", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L275", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ledger", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_resetledger", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ledger", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_schema_sql", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L361", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ledger", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_updateledgerhandshakestatus", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ledger", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ledger", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_bindkeyprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ledger", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_unbindkeyprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ledger", + "target": "apps_electron_vite_project_electron_main_sealed_storage_ledgersealkey", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ledger", + "target": "apps_electron_vite_project_electron_main_sealed_storage_ledgersealkey_deriveledgersealkey", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/dbAccess.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_dbaccess", + "target": "apps_electron_vite_project_electron_main_handshake_ledger", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRemoteInferencePolicyResolve.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve", + "target": "apps_electron_vite_project_electron_main_handshake_ledger", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_handshake_ledger", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_handshake_ledger", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultCanon.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultcanon", + "target": "apps_electron_vite_project_electron_main_handshake_ledger", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ledger_loadsqlite", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_require", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L188", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ledger_openledger", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_loadsqlite", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L185", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ledger_openledger", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_derivekeyfromsessiontoken", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L184", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ledger_openledger", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_getledgerpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L221", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ledger_openledger", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_applyschema", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L182", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ledger_openledger", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_closeledger", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L245", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ledger_openledger", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_bindkeyprovider" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L245", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ledger_openledger", + "target": "apps_electron_vite_project_electron_main_sealed_storage_ledgersealkey_deriveledgersealkey" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/dbAccess.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_dbaccess", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_openledger", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/dbAccess.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_openledger" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L262", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ledger_closeledger", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_unbindkeyprovider" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/ledger.ts", + "source_location": "L278", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_ledger_resetledger", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_closeledger", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/dbAccess.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_dbaccess", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_getledgerdb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/dbAccess.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_getledgerdb" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRemoteInferencePolicyResolve.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_getledgerdb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRemoteInferencePolicyResolve.ts", + "source_location": "L144", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve_resolvehostairemoteinferencepolicybesteffort", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_getledgerdb" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_getledgerdb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L716", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_handlep2pdcinferencecapabilitiesassandbox", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_getledgerdb" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_getledgerdb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1374", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updatehsprofile", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_getledgerdb" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultCanon.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultcanon", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_getledgerdb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/vaultCanon.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultcanon_getoutervaultdb", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_getledgerdb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/vaultCanon.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultcanon_isoutervaultactive", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_getledgerdb" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/dbAccess.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_dbaccess", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_buildledgersessiontoken", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/dbAccess.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference", + "target": "apps_electron_vite_project_electron_main_handshake_ledger_buildledgersessiontoken" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/llmStream.ts", + "source_location": "L356", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_llmstream", + "target": "apps_electron_vite_project_electron_main_handshake_llmstream_llmprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/llmStream.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_llmstream", + "target": "apps_electron_vite_project_electron_main_handshake_llmstream_ontoken", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/llmStream.ts", + "source_location": "L212", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_llmstream", + "target": "apps_electron_vite_project_electron_main_handshake_llmstream_streamanthropicchat", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/llmStream.ts", + "source_location": "L285", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_llmstream", + "target": "apps_electron_vite_project_electron_main_handshake_llmstream_streamgooglechat", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/llmStream.ts", + "source_location": "L358", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_llmstream", + "target": "apps_electron_vite_project_electron_main_handshake_llmstream_streamllmparams", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/llmStream.ts", + "source_location": "L371", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_llmstream", + "target": "apps_electron_vite_project_electron_main_handshake_llmstream_streamllmresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/llmStream.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_llmstream", + "target": "apps_electron_vite_project_electron_main_handshake_llmstream_streamlocalllmchat", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/llmStream.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_llmstream", + "target": "apps_electron_vite_project_electron_main_handshake_llmstream_streamollamachat", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/llmStream.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_llmstream", + "target": "apps_electron_vite_project_electron_main_handshake_llmstream_streamopenaichat", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/llmStream.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_llmstream", + "target": "apps_electron_vite_project_electron_main_handshake_llmstream_streamsender", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/llmStream.ts", + "source_location": "L158", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_llmstream", + "target": "apps_electron_vite_project_electron_main_handshake_llmstream_streamxaichat", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/llmStream.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_llmstream", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/llmStream.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_llmstream", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate_assertgpuinferenceavailableforchatbase", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/llmStream.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_llmstream", + "target": "apps_electron_vite_project_electron_main_llm_localllmpaths", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/llmStream.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_llmstream", + "target": "apps_electron_vite_project_electron_main_llm_localllmpaths_host_ai_default_local_llamacpp_base", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/llmStream.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_llmstream", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/llmStream.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_llmstream", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_debug_ollama_runtime_trace", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/llmStream.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_llmstream", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_ollamaruntimegetinflight", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/llmStream.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_llmstream", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_ollamaruntimeinflightdelta", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/llmStream.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_llmstream", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_ollamaruntimelog", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/llmStream.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_llmstream", + "target": "apps_electron_vite_project_electron_main_llm_openaissechatstream", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/llmStream.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_llmstream", + "target": "apps_electron_vite_project_electron_main_llm_openaissechatstream_parseopenaichatcompletionssseline", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/llmStream.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_llmstream_streamlocalllmchat", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate_assertgpuinferenceavailableforchatbase" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/llmStream.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_llmstream_streamlocalllmchat", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_ollamaruntimegetinflight" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/llmStream.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_llmstream_streamlocalllmchat", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_ollamaruntimeinflightdelta" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/llmStream.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_llmstream_streamlocalllmchat", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_ollamaruntimelog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/llmStream.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_llmstream_streamlocalllmchat", + "target": "apps_electron_vite_project_electron_main_llm_openaissechatstream_parseopenaichatcompletionssseline" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/llmStream.ts", + "source_location": "L385", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_llmstream_streamllmresponse", + "target": "apps_electron_vite_project_electron_main_handshake_llmstream_streamollamachat", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/llmStream.ts", + "source_location": "L394", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_llmstream_streamllmresponse", + "target": "apps_electron_vite_project_electron_main_handshake_llmstream_streamopenaichat", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/llmStream.ts", + "source_location": "L397", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_llmstream_streamllmresponse", + "target": "apps_electron_vite_project_electron_main_handshake_llmstream_streamxaichat", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/llmStream.ts", + "source_location": "L400", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_llmstream_streamllmresponse", + "target": "apps_electron_vite_project_electron_main_handshake_llmstream_streamanthropicchat", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/llmStream.ts", + "source_location": "L403", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_llmstream_streamllmresponse", + "target": "apps_electron_vite_project_electron_main_handshake_llmstream_streamgooglechat", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_backoffdelay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L215", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_classifysendfailure", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L279", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_clearoutboundautodraintimer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L305", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_drainchain", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L307", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_enqueueoutboundcapsule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_ensuresendercoordinationwsfordeliveryack", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_failureclass", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L272", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_getoutboundqueueauthrefresh", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L390", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_getqueuecountsinternal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L1406", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_getqueueentries", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L1379", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_getqueuestatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L458", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_handlecoordinationoutbound403", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_healingstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L196", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_jitterms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L448", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_logcoordination403policy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_loginternalhstraceoutbound", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L261", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_logprocessoutboundqueuefailure", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_outboundqueuecode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L823", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_processoutboundqueue", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L832", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_processoutboundqueueinner", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L160", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_processoutboundqueueresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L1397", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_queueentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L409", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_recordcoordinationpreflightfailure", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L286", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_scheduleautodrain", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L252", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_setoutboundqueueauthrefresh", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L234", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_shouldautodrainonbackoff", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_coordinationrelaydelivery", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_describeoutboundpayloadforlogs", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_outboundrequestdebugsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_sendcapsuleresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_sendcapsuleviacoordination", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_handshake_relayoutboundclassification", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_handshake_relayoutboundclassification_iscoordinationstaleregistry403", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_handshake_relayoutboundclassification_parsecoordinationrelayerrorsnippet", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_handshake_relayoutboundclassification_terminalrelayidentityinvariant", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_handshake_relayqueuetransportoutcome", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_handshake_relayqueuetransportoutcome_coordinationqueuetransportoutcome", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_handshake_relayqueuetransportoutcome_mapsendresulttoqueueoutcome", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_normalizecoordinationurlforlocaldial", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationwsholder", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationwsholder_getcoordinationwsclient", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_getp2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_formatp2perrorforuser", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthoutboundfailure", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthoutboundsuccess", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthqueuecounts", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_p2p_relaysync", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_p2p_relaysync_registerhandshakewithrelay", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_assertsandboxdataegressallowed", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_deriveoutboundcapsuletype", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_iseffectivesandboxnode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTokenBackfill.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptokenbackfill", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/revocation.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_revocation", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/coordination-client.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_coordination_client_test", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L652", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_handlecoordinationoutbound403", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_loginternalhstraceoutbound", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_loginternalhstraceoutbound", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L961", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_processoutboundqueueinner", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_loginternalhstraceoutbound", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L867", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_processoutboundqueueinner", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_backoffdelay", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L429", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_recordcoordinationpreflightfailure", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_backoffdelay", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L185", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_processoutboundqueueresult", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_coordinationrelaydelivery", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L181", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_processoutboundqueueresult", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_outboundrequestdebugsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L293", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_scheduleautodrain", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_jitterms", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L202", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_ensuresendercoordinationwsfordeliveryack", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationwsholder_getcoordinationwsclient", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L984", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_processoutboundqueueinner", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_ensuresendercoordinationwsfordeliveryack", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L1242", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_processoutboundqueueinner", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_classifysendfailure", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L906", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_processoutboundqueueinner", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_shouldautodrainonbackoff", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L428", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_recordcoordinationpreflightfailure", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_shouldautodrainonbackoff", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L265", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_logprocessoutboundqueuefailure", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthoutboundfailure" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L828", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_processoutboundqueue", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_logprocessoutboundqueuefailure", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L300", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_scheduleautodrain", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_logprocessoutboundqueuefailure", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTokenBackfill.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptokenbackfill", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_logprocessoutboundqueuefailure", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTokenBackfill.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptokenbackfill_runactivehandshakelocalp2ptokenbackfill", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_logprocessoutboundqueuefailure" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_getoutboundqueueauthrefresh", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L423", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_postp2psignaltocoordinationwithoptionalauthretry", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_getoutboundqueueauthrefresh", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L292", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_scheduleautodrain", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_clearoutboundautodraintimer", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L907", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_processoutboundqueueinner", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_scheduleautodrain", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L429", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_recordcoordinationpreflightfailure", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_scheduleautodrain", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L298", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_scheduleautodrain", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_processoutboundqueue", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L330", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_enqueueoutboundcapsule", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_assertsandboxdataegressallowed" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L329", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_enqueueoutboundcapsule", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_deriveoutboundcapsuletype" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L328", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_enqueueoutboundcapsule", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_iseffectivesandboxnode" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTokenBackfill.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptokenbackfill", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_enqueueoutboundcapsule", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTokenBackfill.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptokenbackfill_runactivehandshakelocalp2ptokenbackfill", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_enqueueoutboundcapsule" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/revocation.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_revocation", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_enqueueoutboundcapsule", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/revocation.ts", + "source_location": "L155", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_revocation_revokehandshake", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_enqueueoutboundcapsule" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_enqueueoutboundcapsule", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L384", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull_pullfromrelay", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_enqueueoutboundcapsule" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/coordination-client.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_coordination_client_test", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_enqueueoutboundcapsule", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L489", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_handlecoordinationoutbound403", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_getqueuecountsinternal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L838", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_processoutboundqueueinner", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_getqueuecountsinternal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L425", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_recordcoordinationpreflightfailure", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_getqueuecountsinternal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L964", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_processoutboundqueueinner", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_recordcoordinationpreflightfailure", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L417", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_recordcoordinationpreflightfailure", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthoutboundfailure", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L426", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_recordcoordinationpreflightfailure", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthqueuecounts", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L491", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_handlecoordinationoutbound403", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_logcoordination403policy", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L653", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_handlecoordinationoutbound403", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_sendcapsuleviacoordination", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L528", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_handlecoordinationoutbound403", + "target": "apps_electron_vite_project_electron_main_handshake_relayoutboundclassification_iscoordinationstaleregistry403", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L477", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_handlecoordinationoutbound403", + "target": "apps_electron_vite_project_electron_main_handshake_relayoutboundclassification_parsecoordinationrelayerrorsnippet", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L478", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_handlecoordinationoutbound403", + "target": "apps_electron_vite_project_electron_main_handshake_relayoutboundclassification_terminalrelayidentityinvariant", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L667", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_handlecoordinationoutbound403", + "target": "apps_electron_vite_project_electron_main_handshake_relayqueuetransportoutcome_mapsendresulttoqueueoutcome", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L484", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_handlecoordinationoutbound403", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthoutboundfailure", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L661", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_handlecoordinationoutbound403", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthoutboundsuccess", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L490", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_handlecoordinationoutbound403", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthqueuecounts", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L584", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_handlecoordinationoutbound403", + "target": "apps_electron_vite_project_electron_main_p2p_relaysync_registerhandshakewithrelay", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L1227", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_processoutboundqueueinner", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_handlecoordinationoutbound403", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L827", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_processoutboundqueue", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_processoutboundqueueinner", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTokenBackfill.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptokenbackfill", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_processoutboundqueue", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTokenBackfill.ts", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptokenbackfill_runactivehandshakelocalp2ptokenbackfill", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_processoutboundqueue" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/revocation.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_revocation", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_processoutboundqueue", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/revocation.ts", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_revocation_revokehandshake", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_processoutboundqueue" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/coordination-client.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_coordination_client_test", + "target": "apps_electron_vite_project_electron_main_handshake_outboundqueue_processoutboundqueue", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L1176", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_processoutboundqueueinner", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_describeoutboundpayloadforlogs", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L962", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_processoutboundqueueinner", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_sendcapsuleviacoordination", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L1274", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_processoutboundqueueinner", + "target": "apps_electron_vite_project_electron_main_handshake_relayoutboundclassification_parsecoordinationrelayerrorsnippet", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L1150", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_processoutboundqueueinner", + "target": "apps_electron_vite_project_electron_main_handshake_relayoutboundclassification_terminalrelayidentityinvariant", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L1036", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_processoutboundqueueinner", + "target": "apps_electron_vite_project_electron_main_handshake_relayqueuetransportoutcome_mapsendresulttoqueueoutcome", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L941", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_processoutboundqueueinner", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_normalizecoordinationurlforlocaldial", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L873", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_processoutboundqueueinner", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_getp2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L1236", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_processoutboundqueueinner", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_formatp2perrorforuser", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L1057", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_processoutboundqueueinner", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthoutboundfailure", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L1029", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_processoutboundqueueinner", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthoutboundsuccess", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts", + "source_location": "L1035", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_outboundqueue_processoutboundqueueinner", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthqueuecounts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTokenBackfill.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptokenbackfill", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptokenbackfill_counterpartyemail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTokenBackfill.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptokenbackfill", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptokenbackfill_counterpartyuserid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTokenBackfill.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptokenbackfill", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptokenbackfill_runactivehandshakelocalp2ptokenbackfill", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTokenBackfill.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptokenbackfill", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTokenBackfill.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptokenbackfill", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTokenBackfill.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptokenbackfill", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTokenBackfill.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptokenbackfill", + "target": "apps_electron_vite_project_electron_main_handshake_types_ssosession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTokenBackfill.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptokenbackfill", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTokenBackfill.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptokenbackfill", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTokenBackfill.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptokenbackfill", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTokenBackfill.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptokenbackfill", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_geteffectiverelayendpoint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTokenBackfill.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptokenbackfill", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_getp2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTokenBackfill.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptokenbackfill_runactivehandshakelocalp2ptokenbackfill", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptokenbackfill_counterpartyuserid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTokenBackfill.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptokenbackfill_runactivehandshakelocalp2ptokenbackfill", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptokenbackfill_counterpartyemail", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTokenBackfill.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptokenbackfill_runactivehandshakelocalp2ptokenbackfill", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTokenBackfill.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptokenbackfill_runactivehandshakelocalp2ptokenbackfill", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_geteffectiverelayendpoint" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTokenBackfill.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptokenbackfill_runactivehandshakelocalp2ptokenbackfill", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_getp2pconfig" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L412", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_analyzecoordinationroutingcompliance", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L370", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_analyzeserializedcoordinationcontract", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L316", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_buildcoordinationcapsulepostbody", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L461", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_buildoutboundrequestdebugsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_coordination_relay_allowed_capsule_types", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_coordinationrelaycontractsatisfied", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L221", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_coordinationrelaydelivery", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L327", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_describecoordinationrelaynormalization", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_describeoutboundpayloadforlogs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L299", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_detectbodylooksdoubleencoded", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L224", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_directingesthttpack", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L275", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_extracttoplevelkeysfromjsonbody", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L528", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_logoutboundrequestfailurediagnostics", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_outboundinternalwirelogsummary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_outboundrequestdebugsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L356", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_parsecoordinationwirejsonbody", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L229", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_parsedirectingesthttpack", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L397", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_parserelaycapsuletypenotallowedhint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L552", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_parseretryafterseconds", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_relay_handshake_capsule_types", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L541", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_sanitizehttpresponsebodyforlogs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L243", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_sendcapsuleresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L569", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_sendcapsuleviacoordination", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L670", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_sendcapsuleviahttpwithauth", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L426", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_summarizecanonchunkingforoutbounddebug", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_summarizeinternalwireforlogs", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_normalizecoordinationurlforlocaldial", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport", + "target": "apps_electron_vite_project_electron_main_p2p_relaydevicebinding", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport", + "target": "apps_electron_vite_project_electron_main_p2p_relaydevicebinding_getcanonicalrelaydeviceid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport", + "target": "apps_electron_vite_project_electron_main_p2p_relaydevicebinding_logdeviceidbinding", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport", + "target": "apps_electron_vite_project_electron_main_p2p_relayidentity", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport", + "target": "apps_electron_vite_project_electron_main_p2p_relayidentity_decodejwtsubforlogs", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport", + "target": "packages_ingestion_core_src_beapdetection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport", + "target": "packages_ingestion_core_src_beapdetection_iscoordinationrelaynativebeap", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport", + "target": "packages_ingestion_core_src_sealedservicerpcconstants", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport", + "target": "packages_ingestion_core_src_sealedservicerpcconstants_sealed_service_rpc_capsule_type", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L392", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport_analyzeserializedcoordinationcontract", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_coordinationrelaycontractsatisfied", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport_coordinationrelaycontractsatisfied", + "target": "packages_ingestion_core_src_beapdetection_iscoordinationrelaynativebeap" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L340", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport_describecoordinationrelaynormalization", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_coordinationrelaycontractsatisfied", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L153", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport_describeoutboundpayloadforlogs", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_summarizeinternalwireforlogs", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L417", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport_analyzecoordinationroutingcompliance", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_describeoutboundpayloadforlogs", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L491", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport_buildoutboundrequestdebugsnapshot", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_describeoutboundpayloadforlogs", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport_describeoutboundpayloadforlogs", + "target": "packages_ingestion_core_src_beapdetection_iscoordinationrelaynativebeap" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L489", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport_buildoutboundrequestdebugsnapshot", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_extracttoplevelkeysfromjsonbody", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L490", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport_buildoutboundrequestdebugsnapshot", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_detectbodylooksdoubleencoded", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L578", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport_sendcapsuleviacoordination", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_buildcoordinationcapsulepostbody", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L474", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport_buildoutboundrequestdebugsnapshot", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_describecoordinationrelaynormalization", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L343", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport_describecoordinationrelaynormalization", + "target": "packages_ingestion_core_src_beapdetection_iscoordinationrelaynativebeap" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L376", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport_analyzeserializedcoordinationcontract", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_parsecoordinationwirejsonbody", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L475", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport_buildoutboundrequestdebugsnapshot", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_analyzeserializedcoordinationcontract", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L478", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport_buildoutboundrequestdebugsnapshot", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_parserelaycapsuletypenotallowedhint", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L473", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport_buildoutboundrequestdebugsnapshot", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_analyzecoordinationroutingcompliance", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L493", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport_buildoutboundrequestdebugsnapshot", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_summarizecanonchunkingforoutbounddebug", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L604", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport_sendcapsuleviacoordination", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_buildoutboundrequestdebugsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L738", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport_sendcapsuleviahttpwithauth", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_buildoutboundrequestdebugsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L614", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport_sendcapsuleviacoordination", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_logoutboundrequestfailurediagnostics", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L747", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport_sendcapsuleviahttpwithauth", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_logoutboundrequestfailurediagnostics", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L735", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport_sendcapsuleviahttpwithauth", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_sanitizehttpresponsebodyforlogs", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L731", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport_sendcapsuleviahttpwithauth", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_parseretryafterseconds", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L667", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport_sendcapsuleviacoordination", + "target": "apps_electron_vite_project_electron_main_handshake_p2ptransport_sendcapsuleviahttpwithauth", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L576", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport_sendcapsuleviacoordination", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_normalizecoordinationurlforlocaldial" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L583", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport_sendcapsuleviacoordination", + "target": "apps_electron_vite_project_electron_main_p2p_relaydevicebinding_getcanonicalrelaydeviceid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L590", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport_sendcapsuleviacoordination", + "target": "apps_electron_vite_project_electron_main_p2p_relaydevicebinding_logdeviceidbinding" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts", + "source_location": "L658", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_p2ptransport_sendcapsuleviacoordination", + "target": "apps_electron_vite_project_electron_main_p2p_relayidentity_decodejwtsubforlogs" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/pipeline.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_pipeline", + "target": "apps_electron_vite_project_electron_main_handshake_pipeline_runhandshakeverification", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/pipeline.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_pipeline", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/pipeline.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_pipeline", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/pipeline.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_pipeline", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakeverificationcontext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/pipeline.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_pipeline", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakeverificationresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/pipeline.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_pipeline", + "target": "apps_electron_vite_project_electron_main_handshake_types_pipelinestep", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/pipeline.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_pipeline", + "target": "apps_electron_vite_project_electron_main_handshake_types_reasoncode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/pipeline.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_pipeline", + "target": "apps_electron_vite_project_electron_main_handshake_types_receiverpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/pipeline.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_pipeline", + "target": "apps_electron_vite_project_electron_main_handshake_types_ssosession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/pipeline.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_pipeline", + "target": "apps_electron_vite_project_electron_main_handshake_types_verifiedcapsuleinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/policyHash.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_policyhash", + "target": "apps_electron_vite_project_electron_main_handshake_policyhash_computepolicyhash", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/policyHash.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_policyhash", + "target": "apps_electron_vite_project_electron_main_handshake_policyhash_default_policy_descriptor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/policyHash.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_policyhash", + "target": "apps_electron_vite_project_electron_main_handshake_policyhash_default_policy_hash", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/policyHash.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_policyhash", + "target": "apps_electron_vite_project_electron_main_handshake_policyhash_policydescriptor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/queryCache.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_querycache", + "target": "apps_electron_vite_project_electron_main_handshake_querycache_cachedentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/queryCache.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_querycache", + "target": "apps_electron_vite_project_electron_main_handshake_querycache_cachedsource", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/queryCache.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_querycache", + "target": "apps_electron_vite_project_electron_main_handshake_querycache_getcached", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/queryCache.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_querycache", + "target": "apps_electron_vite_project_electron_main_handshake_querycache_invalidatebycapsule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/queryCache.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_querycache", + "target": "apps_electron_vite_project_electron_main_handshake_querycache_invalidatebyhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/queryCache.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_querycache", + "target": "apps_electron_vite_project_electron_main_handshake_querycache_invalidatebyrelationship", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/queryCache.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_querycache", + "target": "apps_electron_vite_project_electron_main_handshake_querycache_normalizequery", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/queryCache.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_querycache", + "target": "apps_electron_vite_project_electron_main_handshake_querycache_resolvecapsuleid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/queryCache.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_querycache", + "target": "apps_electron_vite_project_electron_main_handshake_querycache_setcached", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/queryCache.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_querycache_invalidatebyhandshake", + "target": "apps_electron_vite_project_electron_main_handshake_querycache_invalidatebycapsule", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/queryCache.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_querycache_invalidatebyrelationship", + "target": "apps_electron_vite_project_electron_main_handshake_querycache_invalidatebycapsule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/recipientPersist.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_recipientpersist", + "target": "apps_electron_vite_project_electron_main_handshake_recipientpersist_persistrecipienthandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/recipientPersist.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_recipientpersist", + "target": "apps_electron_vite_project_electron_main_handshake_recipientpersist_persistrecipientresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/recipientPersist.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_recipientpersist", + "target": "apps_electron_vite_project_electron_main_handshake_recipientpersist_resolveexpiresat", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/recipientPersist.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_recipientpersist", + "target": "apps_electron_vite_project_electron_main_handshake_steps_policyresolution", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/recipientPersist.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_recipientpersist", + "target": "apps_electron_vite_project_electron_main_handshake_steps_policyresolution_resolveeffectivepolicyfn", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/recipientPersist.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_recipientpersist", + "target": "apps_electron_vite_project_electron_main_handshake_tierclassification", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/recipientPersist.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_recipientpersist", + "target": "apps_electron_vite_project_electron_main_handshake_tierclassification_classifyhandshaketier", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/recipientPersist.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_recipientpersist", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/recipientPersist.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_recipientpersist", + "target": "apps_electron_vite_project_electron_main_handshake_types_builddefaultreceiverpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/recipientPersist.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_recipientpersist", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/recipientPersist.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_recipientpersist", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/recipientPersist.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_recipientpersist", + "target": "apps_electron_vite_project_electron_main_handshake_types_input_limits", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/recipientPersist.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_recipientpersist", + "target": "apps_electron_vite_project_electron_main_ingestion_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/recipientPersist.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_recipientpersist", + "target": "apps_electron_vite_project_electron_main_ingestion_types_validatedcapsule", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/recipientPersist.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_recipientpersist_persistrecipienthandshakerecord", + "target": "apps_electron_vite_project_electron_main_handshake_recipientpersist_resolveexpiresat", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/recipientPersist.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_recipientpersist_persistrecipientresult", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/recipientPersist.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_recipientpersist_persistrecipienthandshakerecord", + "target": "apps_electron_vite_project_electron_main_handshake_steps_policyresolution_resolveeffectivepolicyfn" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/recipientPersist.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_recipientpersist_persistrecipienthandshakerecord", + "target": "apps_electron_vite_project_electron_main_handshake_tierclassification_classifyhandshaketier" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/recipientPersist.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_recipientpersist_persistrecipienthandshakerecord", + "target": "apps_electron_vite_project_electron_main_handshake_types_builddefaultreceiverpolicy" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/relationshipId.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_relationshipid", + "target": "apps_electron_vite_project_electron_main_handshake_relationshipid_deriverelationshipid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/relayOutboundClassification.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_relayoutboundclassification", + "target": "apps_electron_vite_project_electron_main_handshake_relayoutboundclassification_iscoordinationstaleregistry403", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/relayOutboundClassification.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_relayoutboundclassification", + "target": "apps_electron_vite_project_electron_main_handshake_relayoutboundclassification_parsecoordinationrelayerrorsnippet", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/relayOutboundClassification.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_relayoutboundclassification", + "target": "apps_electron_vite_project_electron_main_handshake_relayoutboundclassification_parsedcoordinationrelayerror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/relayOutboundClassification.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_relayoutboundclassification", + "target": "apps_electron_vite_project_electron_main_handshake_relayoutboundclassification_terminal_relay_identity_codes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/relayOutboundClassification.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_relayoutboundclassification", + "target": "apps_electron_vite_project_electron_main_handshake_relayoutboundclassification_terminalrelayidentityinvariant", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/relayOutboundClassification.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_relayoutboundclassification_iscoordinationstaleregistry403", + "target": "apps_electron_vite_project_electron_main_handshake_relayoutboundclassification_parsecoordinationrelayerrorsnippet", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/relayOutboundClassification.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_relayoutboundclassification_terminalrelayidentityinvariant", + "target": "apps_electron_vite_project_electron_main_handshake_relayoutboundclassification_parsecoordinationrelayerrorsnippet", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/relayOutboundClassification.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_relayoutboundclassification_terminalrelayidentityinvariant", + "target": "apps_electron_vite_project_electron_main_handshake_relayoutboundclassification_terminal_relay_identity_codes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/relayQueueTransportOutcome.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_relayqueuetransportoutcome", + "target": "apps_electron_vite_project_electron_main_handshake_relayqueuetransportoutcome_coordinationqueuetransportoutcome", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/relayQueueTransportOutcome.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_relayqueuetransportoutcome", + "target": "apps_electron_vite_project_electron_main_handshake_relayqueuetransportoutcome_mapsendresulttoqueueoutcome", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/relayQueueTransportOutcome.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_relayqueuetransportoutcome", + "target": "apps_electron_vite_project_electron_main_handshake_relayqueuetransportoutcome_relaydeliverymode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/relayQueueTransportOutcome.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_relayqueuetransportoutcome", + "target": "apps_electron_vite_project_electron_main_handshake_relayqueuetransportoutcome_sendcapsulesuccessshape", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/remoteRevokeCallbackRegistry.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_remoterevokecallbackregistry", + "target": "apps_electron_vite_project_electron_main_handshake_remoterevokecallbackregistry_getremoterevokecallback", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/remoteRevokeCallbackRegistry.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_remoterevokecallbackregistry", + "target": "apps_electron_vite_project_electron_main_handshake_remoterevokecallbackregistry_remoterevokecb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/remoteRevokeCallbackRegistry.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_remoterevokecallbackregistry", + "target": "apps_electron_vite_project_electron_main_handshake_remoterevokecallbackregistry_setremoterevokecallback", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/resolvePairingCode.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_resolvepairingcode", + "target": "apps_electron_vite_project_electron_main_handshake_resolvepairingcode_resolvedpairingpeer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/resolvePairingCode.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_resolvepairingcode", + "target": "apps_electron_vite_project_electron_main_handshake_resolvepairingcode_resolvepairingcodeviacoordination", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/resolvePairingCode.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_resolvepairingcode", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/resolvePairingCode.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_resolvepairingcode", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_getp2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/resolvePairingCode.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_resolvepairingcode_resolvepairingcodeviacoordination", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_getp2pconfig" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/retentionJob.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_retentionjob", + "target": "apps_electron_vite_project_electron_main_handshake_retentionjob_runretentioncycle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/retentionJob.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_retentionjob", + "target": "apps_electron_vite_project_electron_main_handshake_retentionjob_startretentionjob", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/retentionJob.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_retentionjob", + "target": "apps_electron_vite_project_electron_main_handshake_retentionjob_stopretentionjob", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/retentionJob.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_retentionjob", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/retentionJob.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_retentionjob", + "target": "apps_electron_vite_project_electron_main_handshake_types_input_limits", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/retentionJob.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_retentionjob_startretentionjob", + "target": "apps_electron_vite_project_electron_main_handshake_retentionjob_runretentioncycle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/revocation.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_revocation", + "target": "apps_electron_vite_project_electron_main_handshake_revocation_revokehandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/revocation.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_revocation", + "target": "apps_electron_vite_project_electron_main_handshake_revocation_revokenotifycallback", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/revocation.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_revocation", + "target": "apps_electron_vite_project_electron_main_handshake_revocation_setrevokenotifycallback", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/revocation.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_revocation", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/revocation.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_revocation", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/revocation.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_revocation", + "target": "apps_electron_vite_project_electron_main_handshake_types_ssosession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/revocation.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_revocation", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/revocation.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_revocation", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_closesession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/revocation.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_revocation", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_p2psessionlogreason", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/revocation.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_revocation", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/revocation.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_revocation", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/revocation.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_revocation", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/revocation.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_revocation", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_geteffectiverelayendpoint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/revocation.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_revocation", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_getp2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/revocation.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_revocation_rationale_14", + "target": "apps_electron_vite_project_electron_main_handshake_revocation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/revocation.ts", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_revocation_revokehandshake", + "target": "apps_electron_vite_project_electron_main_handshake_topologyautowire", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/revocation.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_revocation_revokehandshake", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_closesession" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/revocation.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_revocation_revokehandshake", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/revocation.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_revocation_revokehandshake", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_geteffectiverelayendpoint" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/revocation.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_revocation_revokehandshake", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_getp2pconfig" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/sandboxTopologyKind.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind", + "target": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_findactiveinternalhostsandboxhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/sandboxTopologyKind.ts", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind", + "target": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_getlinkedpairingkindforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/sandboxTopologyKind.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind", + "target": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_hostnamefromp2purl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/sandboxTopologyKind.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind", + "target": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_infersandboxpairingkindfromhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/sandboxTopologyKind.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind", + "target": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_ishostlocalp2ptarget", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/sandboxTopologyKind.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind", + "target": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_isloopbackp2phost", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/sandboxTopologyKind.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind", + "target": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_pairingkindtotopologykind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/sandboxTopologyKind.ts", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind", + "target": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_resolvesandboxtopologykind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/sandboxTopologyKind.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind", + "target": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_sandboxpairingkind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/sandboxTopologyKind.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind", + "target": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_sandboxtopologykind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/sandboxTopologyKind.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind", + "target": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_useslocalrelaystack", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/sandboxTopologyKind.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/sandboxTopologyKind.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/sandboxTopologyKind.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/sandboxTopologyKind.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_listactiveinternalhandshakesforhostai", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/sandboxTopologyKind.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind", + "target": "apps_electron_vite_project_electron_main_internalinference_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/sandboxTopologyKind.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/sandboxTopologyKind.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_handshakesameprincipal", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/sandboxTopologyKind.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/sandboxTopologyKind.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/sandboxTopologyKind.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/sandboxTopologyKind.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/sandboxTopologyKind.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_getp2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/topologyAutoWire.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_topologyautowire", + "target": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/ipc.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/ipc.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_ipc_registerorchestratoripc", + "target": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/ipc.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_sandboxtopologykind", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/sandboxTopologyKind.ts", + "source_location": "L157", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_resolvesandboxtopologykind", + "target": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_pairingkindtotopologykind", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/sandboxTopologyKind.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_ishostlocalp2ptarget", + "target": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_isloopbackp2phost", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/sandboxTopologyKind.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_infersandboxpairingkindfromhandshake", + "target": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_hostnamefromp2purl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/sandboxTopologyKind.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_useslocalrelaystack", + "target": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_hostnamefromp2purl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/sandboxTopologyKind.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_infersandboxpairingkindfromhandshake", + "target": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_ishostlocalp2ptarget", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/sandboxTopologyKind.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_useslocalrelaystack", + "target": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_ishostlocalp2ptarget", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/sandboxTopologyKind.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_infersandboxpairingkindfromhandshake", + "target": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_useslocalrelaystack", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/sandboxTopologyKind.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_useslocalrelaystack", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_getp2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/sandboxTopologyKind.ts", + "source_location": "L153", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_resolvesandboxtopologykind", + "target": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_infersandboxpairingkindfromhandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/topologyAutoWire.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_topologyautowire", + "target": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_infersandboxpairingkindfromhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/topologyAutoWire.ts", + "source_location": "L134", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_topologyautowire_autowiretopologyforhandshake", + "target": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_infersandboxpairingkindfromhandshake" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/topologyAutoWire.ts", + "source_location": "L208", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_topologyautowire_synctopologyfromactivehandshakes", + "target": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_infersandboxpairingkindfromhandshake" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/sandboxTopologyKind.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_getlinkedpairingkindforhandshake", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/sandboxTopologyKind.ts", + "source_location": "L152", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_resolvesandboxtopologykind", + "target": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_getlinkedpairingkindforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/sandboxTopologyKind.ts", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_findactiveinternalhostsandboxhandshake", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_listactiveinternalhandshakesforhostai" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/sandboxTopologyKind.ts", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_findactiveinternalhostsandboxhandshake", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/sandboxTopologyKind.ts", + "source_location": "L134", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_findactiveinternalhostsandboxhandshake", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_handshakesameprincipal" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/sandboxTopologyKind.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_findactiveinternalhostsandboxhandshake", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/sandboxTopologyKind.ts", + "source_location": "L150", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_resolvesandboxtopologykind", + "target": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_findactiveinternalhostsandboxhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/orchestrator/ipc.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_ipc_registerorchestratoripc", + "target": "apps_electron_vite_project_electron_main_handshake_sandboxtopologykind_resolvesandboxtopologykind" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/sanitize.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_sanitize", + "target": "apps_electron_vite_project_electron_main_handshake_sanitize_isvalidemail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/sanitize.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_sanitize", + "target": "apps_electron_vite_project_electron_main_handshake_sanitize_normalizenfc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/sanitize.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_sanitize", + "target": "apps_electron_vite_project_electron_main_handshake_sanitize_stripcontrolchars", + "confidence_score": 1.0 + }, + { + "relation": "cites", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/sanitize.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_sanitize", + "target": "apps_electron_vite_project_electron_main_handshake_sanitize_ts_docref_rfc_5322", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/sessionFactory.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_sessionfactory", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_attestationstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/sessionFactory.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_sessionfactory", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/sessionFactory.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_sessionfactory", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_jwtclaims", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/sessionFactory.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_sessionfactory", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_sessionfromclaims", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/sessionFactory.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_sessionfactory", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/sessionFactory.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_sessionfactory", + "target": "apps_electron_vite_project_electron_main_handshake_types_ssosession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiE2eSandboxToHostSuccess.integration.test.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listInferenceTargets.step8.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listinferencetargets_step8_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing.regression.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/coordination-client.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_coordination_client_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relay-integration.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_relay_integration_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relayPull.messageRelay.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_relaypull_messagerelay_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/sessionFactory.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_sessionfromclaims", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiE2eSandboxToHostSuccess.integration.test.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listInferenceTargets.step8.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listinferencetargets_step8_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listInferenceTargets.step8.test.ts", + "source_location": "L243", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listinferencetargets_step8_test_sessionforparty", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing.regression.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/coordination-client.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_coordination_client_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relay-integration.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_relay_integration_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relayPull.messageRelay.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_relaypull_messagerelay_test", + "target": "apps_electron_vite_project_electron_main_handshake_sessionfactory_buildtestsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/signatureKeys.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_signaturekeys", + "target": "apps_electron_vite_project_electron_main_handshake_signaturekeys_generatesigningkeypair", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/signatureKeys.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_signaturekeys", + "target": "apps_electron_vite_project_electron_main_handshake_signaturekeys_rawpubkeytospki", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/signatureKeys.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_signaturekeys", + "target": "apps_electron_vite_project_electron_main_handshake_signaturekeys_signcapsulehash", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/signatureKeys.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_signaturekeys", + "target": "apps_electron_vite_project_electron_main_handshake_signaturekeys_signingkeypair", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/signatureKeys.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_signaturekeys", + "target": "apps_electron_vite_project_electron_main_handshake_signaturekeys_verifycapsulesignature", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/signatureKeys.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_signaturekeys", + "target": "apps_electron_vite_project_electron_main_security_ed25519weakkey", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/signatureKeys.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_signaturekeys", + "target": "apps_electron_vite_project_electron_main_security_ed25519weakkey_isweaked25519publickey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/signatureKeys.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_signaturekeys_verifycapsulesignature", + "target": "apps_electron_vite_project_electron_main_handshake_signaturekeys_rawpubkeytospki", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/signatureKeys.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_signaturekeys_verifycapsulesignature", + "target": "apps_electron_vite_project_electron_main_security_ed25519weakkey_isweaked25519publickey" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/chainIntegrity.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_chainintegrity", + "target": "apps_electron_vite_project_electron_main_handshake_steps_chainintegrity_verifychainintegrity", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/chainIntegrity.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_chainintegrity", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/chainIntegrity.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_chainintegrity", + "target": "apps_electron_vite_project_electron_main_handshake_types_pipelinestep", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/chainIntegrity.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_chainintegrity", + "target": "apps_electron_vite_project_electron_main_handshake_types_reasoncode", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/index.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_index", + "target": "apps_electron_vite_project_electron_main_handshake_steps_chainintegrity", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/index.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_index", + "target": "apps_electron_vite_project_electron_main_handshake_steps_chainintegrity_verifychainintegrity", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/contextBinding.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_contextbinding", + "target": "apps_electron_vite_project_electron_main_handshake_steps_contextbinding_verifycontextbinding", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/contextBinding.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_contextbinding", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/contextBinding.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_contextbinding", + "target": "apps_electron_vite_project_electron_main_handshake_types_pipelinestep", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/contextBinding.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_contextbinding", + "target": "apps_electron_vite_project_electron_main_handshake_types_reasoncode", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/index.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_index", + "target": "apps_electron_vite_project_electron_main_handshake_steps_contextbinding", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/index.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_index", + "target": "apps_electron_vite_project_electron_main_handshake_steps_contextbinding_verifycontextbinding", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/contextVersions.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_contextversions", + "target": "apps_electron_vite_project_electron_main_handshake_steps_contextversions_verifycontextversions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/contextVersions.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_contextversions", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/contextVersions.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_contextversions", + "target": "apps_electron_vite_project_electron_main_handshake_types_pipelinestep", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/index.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_index", + "target": "apps_electron_vite_project_electron_main_handshake_steps_contextversions", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/index.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_index", + "target": "apps_electron_vite_project_electron_main_handshake_steps_contextversions_verifycontextversions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/dedup.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_dedup", + "target": "apps_electron_vite_project_electron_main_handshake_steps_dedup_checkduplicatecapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/dedup.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_dedup", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/dedup.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_dedup", + "target": "apps_electron_vite_project_electron_main_handshake_types_pipelinestep", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/dedup.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_dedup", + "target": "apps_electron_vite_project_electron_main_handshake_types_reasoncode", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/index.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_index", + "target": "apps_electron_vite_project_electron_main_handshake_steps_dedup", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/index.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_index", + "target": "apps_electron_vite_project_electron_main_handshake_steps_dedup_checkduplicatecapsule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/domain.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_domain", + "target": "apps_electron_vite_project_electron_main_handshake_steps_domain_verifysenderdomain", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/domain.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_domain", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/domain.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_domain", + "target": "apps_electron_vite_project_electron_main_handshake_types_pipelinestep", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/domain.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_domain", + "target": "apps_electron_vite_project_electron_main_handshake_types_reasoncode", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/index.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_index", + "target": "apps_electron_vite_project_electron_main_handshake_steps_domain", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/index.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_index", + "target": "apps_electron_vite_project_electron_main_handshake_steps_domain_verifysenderdomain", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/expiry.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_expiry", + "target": "apps_electron_vite_project_electron_main_handshake_steps_expiry_checkexpiry", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/expiry.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_expiry", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/expiry.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_expiry", + "target": "apps_electron_vite_project_electron_main_handshake_types_pipelinestep", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/expiry.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_expiry", + "target": "apps_electron_vite_project_electron_main_handshake_types_reasoncode", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/index.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_index", + "target": "apps_electron_vite_project_electron_main_handshake_steps_expiry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/index.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_index", + "target": "apps_electron_vite_project_electron_main_handshake_steps_expiry_checkexpiry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/externalProcessing.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_externalprocessing", + "target": "apps_electron_vite_project_electron_main_handshake_steps_externalprocessing_verifyexternalprocessing", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/externalProcessing.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_externalprocessing", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/externalProcessing.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_externalprocessing", + "target": "apps_electron_vite_project_electron_main_handshake_types_pipelinestep", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/externalProcessing.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_externalprocessing", + "target": "apps_electron_vite_project_electron_main_handshake_types_reasoncode", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/index.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_index", + "target": "apps_electron_vite_project_electron_main_handshake_steps_externalprocessing", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/index.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_index", + "target": "apps_electron_vite_project_electron_main_handshake_steps_externalprocessing_verifyexternalprocessing", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/index.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_index", + "target": "apps_electron_vite_project_electron_main_handshake_steps_index_handshake_pipeline", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/index.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_index", + "target": "apps_electron_vite_project_electron_main_handshake_steps_inputlimits", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/index.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_index", + "target": "apps_electron_vite_project_electron_main_handshake_steps_inputlimits_verifyinputlimits", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/index.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_index", + "target": "apps_electron_vite_project_electron_main_handshake_steps_internalroutingcapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/index.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_index", + "target": "apps_electron_vite_project_electron_main_handshake_steps_internalroutingcapsule_verifyinternalcapsulerouting", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/index.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_index", + "target": "apps_electron_vite_project_electron_main_handshake_steps_ownership", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_index", + "target": "apps_electron_vite_project_electron_main_handshake_steps_ownership_verifyhandshakeownership", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/index.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_index", + "target": "apps_electron_vite_project_electron_main_handshake_steps_policyanchor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/index.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_index", + "target": "apps_electron_vite_project_electron_main_handshake_steps_policyanchor_verifywrdeskpolicyanchor", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/index.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_index", + "target": "apps_electron_vite_project_electron_main_handshake_steps_policyresolution", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/index.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_index", + "target": "apps_electron_vite_project_electron_main_handshake_steps_policyresolution_resolveeffectivepolicy", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/index.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_index", + "target": "apps_electron_vite_project_electron_main_handshake_steps_receiverbinding", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/index.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_index", + "target": "apps_electron_vite_project_electron_main_handshake_steps_receiverbinding_verifyreceiverbinding", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/index.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_index", + "target": "apps_electron_vite_project_electron_main_handshake_steps_schemacheck", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/index.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_index", + "target": "apps_electron_vite_project_electron_main_handshake_steps_schemacheck_checkschemaversion", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/index.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_index", + "target": "apps_electron_vite_project_electron_main_handshake_steps_scopepurpose", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/index.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_index", + "target": "apps_electron_vite_project_electron_main_handshake_steps_scopepurpose_verifyscopepurpose", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/index.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_index", + "target": "apps_electron_vite_project_electron_main_handshake_steps_sharingmode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/index.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_index", + "target": "apps_electron_vite_project_electron_main_handshake_steps_sharingmode_verifysharingmode", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/index.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_index", + "target": "apps_electron_vite_project_electron_main_handshake_steps_statetransition", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/index.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_index", + "target": "apps_electron_vite_project_electron_main_handshake_steps_statetransition_checkstatetransition", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/index.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_index", + "target": "apps_electron_vite_project_electron_main_handshake_steps_tiersteps", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/index.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_index", + "target": "apps_electron_vite_project_electron_main_handshake_steps_tiersteps_classifytier", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/index.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_index", + "target": "apps_electron_vite_project_electron_main_handshake_steps_tiersteps_collecttiersignals", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/index.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_index", + "target": "apps_electron_vite_project_electron_main_handshake_steps_tiersteps_enforceminimumtier", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/index.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_index", + "target": "apps_electron_vite_project_electron_main_handshake_steps_tiersteps_runtierspecificchecks", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/index.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_index", + "target": "apps_electron_vite_project_electron_main_handshake_steps_timestamp", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/index.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_index", + "target": "apps_electron_vite_project_electron_main_handshake_steps_timestamp_verifytimestamp", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/index.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_index", + "target": "apps_electron_vite_project_electron_main_handshake_steps_verifycapsulehash", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/index.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_index", + "target": "apps_electron_vite_project_electron_main_handshake_steps_verifycapsulehash_verifycapsulehash", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/index.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_index", + "target": "apps_electron_vite_project_electron_main_handshake_steps_verifycontexthash", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/index.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_index", + "target": "apps_electron_vite_project_electron_main_handshake_steps_verifycontexthash_verifycontexthashstep", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/index.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_index", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/index.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_index", + "target": "apps_electron_vite_project_electron_main_handshake_types_pipelinestep", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/inputLimits.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_inputlimits", + "target": "apps_electron_vite_project_electron_main_handshake_steps_inputlimits_verifyinputlimits", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/inputLimits.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_inputlimits", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/inputLimits.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_inputlimits", + "target": "apps_electron_vite_project_electron_main_handshake_types_input_limits", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/inputLimits.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_inputlimits", + "target": "apps_electron_vite_project_electron_main_handshake_types_pipelinestep", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/inputLimits.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_inputlimits", + "target": "apps_electron_vite_project_electron_main_handshake_types_reasoncode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/internalRoutingCapsule.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_internalroutingcapsule", + "target": "apps_electron_vite_project_electron_main_handshake_steps_internalroutingcapsule_verifyinternalcapsulerouting", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/internalRoutingCapsule.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_internalroutingcapsule", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/internalRoutingCapsule.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_internalroutingcapsule", + "target": "apps_electron_vite_project_electron_main_handshake_types_pipelinestep", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/internalRoutingCapsule.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_internalroutingcapsule", + "target": "apps_electron_vite_project_electron_main_handshake_types_reasoncode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/internalRoutingCapsule.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_internalroutingcapsule", + "target": "packages_shared_src_handshake_internalendpointvalidation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/internalRoutingCapsule.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_internalroutingcapsule", + "target": "packages_shared_src_handshake_internalendpointvalidation_validateinternalcapsuledeviceids", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/ownership.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_ownership", + "target": "apps_electron_vite_project_electron_main_handshake_steps_ownership_verifyhandshakeownership", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/ownership.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_ownership", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/ownership.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_ownership", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/ownership.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_ownership", + "target": "apps_electron_vite_project_electron_main_handshake_types_pipelinestep", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/ownership.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_ownership", + "target": "apps_electron_vite_project_electron_main_handshake_types_reasoncode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/ownership.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_ownership", + "target": "packages_shared_src_handshake_receiveremailvalidation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/ownership.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_ownership", + "target": "packages_shared_src_handshake_receiveremailvalidation_issameaccounthandshakeemails", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/policyAnchor.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_policyanchor", + "target": "apps_electron_vite_project_electron_main_handshake_steps_policyanchor_verifywrdeskpolicyanchor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/policyAnchor.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_policyanchor", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/policyAnchor.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_policyanchor", + "target": "apps_electron_vite_project_electron_main_handshake_types_pipelinestep", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/policyAnchor.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_policyanchor", + "target": "apps_electron_vite_project_electron_main_handshake_types_reasoncode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/policyResolution.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_policyresolution", + "target": "apps_electron_vite_project_electron_main_handshake_steps_policyresolution_resolveeffectivepolicy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/policyResolution.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_policyresolution", + "target": "apps_electron_vite_project_electron_main_handshake_steps_policyresolution_resolveeffectivepolicyfn", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/policyResolution.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_policyresolution", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/policyResolution.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_policyresolution", + "target": "apps_electron_vite_project_electron_main_handshake_types_capsulepolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/policyResolution.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_policyresolution", + "target": "apps_electron_vite_project_electron_main_handshake_types_effectivepolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/policyResolution.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_policyresolution", + "target": "apps_electron_vite_project_electron_main_handshake_types_maxtier", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/policyResolution.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_policyresolution", + "target": "apps_electron_vite_project_electron_main_handshake_types_pipelinestep", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/policyResolution.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_policyresolution", + "target": "apps_electron_vite_project_electron_main_handshake_types_reasoncode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/policyResolution.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_policyresolution", + "target": "apps_electron_vite_project_electron_main_handshake_types_receiverpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/policyResolution.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_policyresolution", + "target": "apps_electron_vite_project_electron_main_handshake_types_sharingmode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/scopePurpose.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_scopepurpose", + "target": "apps_electron_vite_project_electron_main_handshake_steps_policyresolution", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/policyResolution.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_policyresolution_resolveeffectivepolicyfn", + "target": "apps_electron_vite_project_electron_main_handshake_types_maxtier" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/scopePurpose.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_scopepurpose", + "target": "apps_electron_vite_project_electron_main_handshake_steps_policyresolution_resolveeffectivepolicyfn", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/receiverBinding.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_receiverbinding", + "target": "apps_electron_vite_project_electron_main_handshake_steps_receiverbinding_verifyreceiverbinding", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/receiverBinding.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_receiverbinding", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/receiverBinding.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_receiverbinding", + "target": "apps_electron_vite_project_electron_main_handshake_types_pipelinestep", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/receiverBinding.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_receiverbinding", + "target": "apps_electron_vite_project_electron_main_handshake_types_reasoncode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/schemaCheck.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_schemacheck", + "target": "apps_electron_vite_project_electron_main_handshake_steps_schemacheck_checkschemaversion", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/schemaCheck.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_schemacheck", + "target": "apps_electron_vite_project_electron_main_handshake_steps_schemacheck_supported_schema_versions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/schemaCheck.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_schemacheck", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/schemaCheck.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_schemacheck", + "target": "apps_electron_vite_project_electron_main_handshake_types_pipelinestep", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/schemaCheck.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_schemacheck", + "target": "apps_electron_vite_project_electron_main_handshake_types_reasoncode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/scopePurpose.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_scopepurpose", + "target": "apps_electron_vite_project_electron_main_handshake_steps_scopepurpose_verifyscopepurpose", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/scopePurpose.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_scopepurpose", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/scopePurpose.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_scopepurpose", + "target": "apps_electron_vite_project_electron_main_handshake_types_pipelinestep", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/scopePurpose.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_scopepurpose", + "target": "apps_electron_vite_project_electron_main_handshake_types_reasoncode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/sharingMode.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_sharingmode", + "target": "apps_electron_vite_project_electron_main_handshake_steps_sharingmode_verifysharingmode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/sharingMode.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_sharingmode", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/sharingMode.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_sharingmode", + "target": "apps_electron_vite_project_electron_main_handshake_types_pipelinestep", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/sharingMode.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_sharingmode", + "target": "apps_electron_vite_project_electron_main_handshake_types_reasoncode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/stateTransition.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_statetransition", + "target": "apps_electron_vite_project_electron_main_handshake_steps_statetransition_checkstatetransition", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/stateTransition.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_statetransition", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/stateTransition.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_statetransition", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/stateTransition.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_statetransition", + "target": "apps_electron_vite_project_electron_main_handshake_types_pipelinestep", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/stateTransition.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_statetransition", + "target": "apps_electron_vite_project_electron_main_handshake_types_reasoncode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/tierSteps.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_tiersteps", + "target": "apps_electron_vite_project_electron_main_handshake_steps_tiersteps_classifytier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/tierSteps.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_tiersteps", + "target": "apps_electron_vite_project_electron_main_handshake_steps_tiersteps_collecttiersignals", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/tierSteps.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_tiersteps", + "target": "apps_electron_vite_project_electron_main_handshake_steps_tiersteps_enforceminimumtier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/tierSteps.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_tiersteps", + "target": "apps_electron_vite_project_electron_main_handshake_steps_tiersteps_runtierspecificchecks", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/tierSteps.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_tiersteps", + "target": "apps_electron_vite_project_electron_main_handshake_tierclassification", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/tierSteps.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_tiersteps", + "target": "apps_electron_vite_project_electron_main_handshake_tierclassification_classifyhandshaketier", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/tierSteps.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_tiersteps", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/tierSteps.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_tiersteps", + "target": "apps_electron_vite_project_electron_main_handshake_types_pipelinestep", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/tierSteps.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_tiersteps", + "target": "apps_electron_vite_project_electron_main_handshake_types_reasoncode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/tierSteps.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_tiersteps", + "target": "apps_electron_vite_project_electron_main_handshake_types_tieratleast", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/tierSteps.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_tiersteps", + "target": "apps_electron_vite_project_electron_main_handshake_types_tiersignals", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/timestamp.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_timestamp", + "target": "apps_electron_vite_project_electron_main_handshake_steps_timestamp_verifytimestamp", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/timestamp.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_timestamp", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/timestamp.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_timestamp", + "target": "apps_electron_vite_project_electron_main_handshake_types_input_limits", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/timestamp.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_timestamp", + "target": "apps_electron_vite_project_electron_main_handshake_types_pipelinestep", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/timestamp.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_timestamp", + "target": "apps_electron_vite_project_electron_main_handshake_types_reasoncode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/verifyCapsuleHash.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_verifycapsulehash", + "target": "apps_electron_vite_project_electron_main_handshake_steps_verifycapsulehash_verifycapsulehash", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/verifyCapsuleHash.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_verifycapsulehash", + "target": "apps_electron_vite_project_electron_main_handshake_steps_verifycapsulehash_verifycapsulehashintegrity", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/verifyCapsuleHash.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_verifycapsulehash", + "target": "apps_electron_vite_project_electron_main_handshake_steps_verifycapsulehash_wiretypetohashtype", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/verifyCapsuleHash.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_verifycapsulehash", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/verifyCapsuleHash.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_verifycapsulehash", + "target": "apps_electron_vite_project_electron_main_handshake_types_pipelinestep", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/verifyCapsuleHash.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_verifycapsulehash", + "target": "apps_electron_vite_project_electron_main_handshake_types_reasoncode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/verifyCapsuleHash.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_verifycapsulehash", + "target": "apps_electron_vite_project_electron_main_handshake_types_verifiedcapsuleinput", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/verifyCapsuleHash.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_verifycapsulehash_rationale_7", + "target": "apps_electron_vite_project_electron_main_handshake_steps_verifycapsulehash", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/verifyCapsuleHash.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_verifycapsulehash_verifycapsulehashintegrity", + "target": "apps_electron_vite_project_electron_main_handshake_steps_verifycapsulehash_wiretypetohashtype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/verifyContextHash.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_verifycontexthash", + "target": "apps_electron_vite_project_electron_main_handshake_steps_verifycontexthash_verifycontexthashstep", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/verifyContextHash.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_verifycontexthash", + "target": "apps_electron_vite_project_electron_main_handshake_steps_verifycontexthash_wiretypetocontexttype", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/verifyContextHash.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_verifycontexthash", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/verifyContextHash.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_verifycontexthash", + "target": "apps_electron_vite_project_electron_main_handshake_types_pipelinestep", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/verifyContextHash.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_verifycontexthash", + "target": "apps_electron_vite_project_electron_main_handshake_types_reasoncode", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/steps/verifyContextHash.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_steps_verifycontexthash_rationale_7", + "target": "apps_electron_vite_project_electron_main_handshake_steps_verifycontexthash", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/structuredQuery.ts", + "source_location": "L311", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_structuredquery", + "target": "apps_electron_vite_project_electron_main_handshake_structuredquery_blocklist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/structuredQuery.ts", + "source_location": "L597", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_structuredquery", + "target": "apps_electron_vite_project_electron_main_handshake_structuredquery_fetchblocksforstructuredlookup", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "confidence": "INFERRED", + "source_file": "apps/electron-vite-project/electron/main/handshake/structuredQuery.ts", + "source_location": "L237", + "weight": 1.0, + "_origin": "ast", + "context": "collection", + "source": "apps_electron_vite_project_electron_main_handshake_structuredquery", + "target": "apps_electron_vite_project_electron_main_handshake_structuredquery_formataddress", + "confidence_score": 0.5 + }, + { + "relation": "indirect_call", + "confidence": "INFERRED", + "source_file": "apps/electron-vite-project/electron/main/handshake/structuredQuery.ts", + "source_location": "L248", + "weight": 1.0, + "_origin": "ast", + "context": "collection", + "source": "apps_electron_vite_project_electron_main_handshake_structuredquery", + "target": "apps_electron_vite_project_electron_main_handshake_structuredquery_formatlinks", + "confidence_score": 0.5 + }, + { + "relation": "indirect_call", + "confidence": "INFERRED", + "source_file": "apps/electron-vite-project/electron/main/handshake/structuredQuery.ts", + "source_location": "L242", + "weight": 1.0, + "_origin": "ast", + "context": "collection", + "source": "apps_electron_vite_project_electron_main_handshake_structuredquery", + "target": "apps_electron_vite_project_electron_main_handshake_structuredquery_formatpaymentmethods", + "confidence_score": 0.5 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/structuredQuery.ts", + "source_location": "L402", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_structuredquery", + "target": "apps_electron_vite_project_electron_main_handshake_structuredquery_formatvalue", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/structuredQuery.ts", + "source_location": "L387", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_structuredquery", + "target": "apps_electron_vite_project_electron_main_handshake_structuredquery_getatpath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/structuredQuery.ts", + "source_location": "L319", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_structuredquery", + "target": "apps_electron_vite_project_electron_main_handshake_structuredquery_isblocked", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/structuredQuery.ts", + "source_location": "L271", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_structuredquery", + "target": "apps_electron_vite_project_electron_main_handshake_structuredquery_multi_field_groups", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/structuredQuery.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_structuredquery", + "target": "apps_electron_vite_project_electron_main_handshake_structuredquery_phrase_to_field", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/structuredQuery.ts", + "source_location": "L323", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_structuredquery", + "target": "apps_electron_vite_project_electron_main_handshake_structuredquery_queryclassifier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/structuredQuery.ts", + "source_location": "L299", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_structuredquery", + "target": "apps_electron_vite_project_electron_main_handshake_structuredquery_queryclassifierresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/structuredQuery.ts", + "source_location": "L374", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_structuredquery", + "target": "apps_electron_vite_project_electron_main_handshake_structuredquery_scoredcontextblock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/structuredQuery.ts", + "source_location": "L433", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_structuredquery", + "target": "apps_electron_vite_project_electron_main_handshake_structuredquery_structuredlookup", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/structuredQuery.ts", + "source_location": "L584", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_structuredquery", + "target": "apps_electron_vite_project_electron_main_handshake_structuredquery_structuredlookupfilter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/structuredQuery.ts", + "source_location": "L518", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_structuredquery", + "target": "apps_electron_vite_project_electron_main_handshake_structuredquery_structuredlookupmulti", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/structuredQuery.ts", + "source_location": "L422", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_structuredquery", + "target": "apps_electron_vite_project_electron_main_handshake_structuredquery_structuredlookupresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/structuredQuery.ts", + "source_location": "L229", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_structuredquery", + "target": "apps_electron_vite_project_electron_main_handshake_structuredquery_vault_profile_path_map", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/structuredQuery.ts", + "source_location": "L581", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_structuredquery", + "target": "apps_electron_vite_project_electron_main_handshake_visibilityfilter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/structuredQuery.ts", + "source_location": "L581", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_structuredquery", + "target": "apps_electron_vite_project_electron_main_handshake_visibilityfilter_isvaultcurrentlyunlocked", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/structuredQuery.ts", + "source_location": "L581", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_structuredquery", + "target": "apps_electron_vite_project_electron_main_handshake_visibilityfilter_visibilitywhereclause", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/structuredQuery.ts", + "source_location": "L320", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_structuredquery_isblocked", + "target": "apps_electron_vite_project_electron_main_handshake_structuredquery_blocklist" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/structuredQuery.ts", + "source_location": "L333", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_structuredquery_queryclassifier", + "target": "apps_electron_vite_project_electron_main_handshake_structuredquery_isblocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/structuredQuery.ts", + "source_location": "L466", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_structuredquery_structuredlookup", + "target": "apps_electron_vite_project_electron_main_handshake_structuredquery_getatpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/structuredQuery.ts", + "source_location": "L546", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_structuredquery_structuredlookupmulti", + "target": "apps_electron_vite_project_electron_main_handshake_structuredquery_getatpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/structuredQuery.ts", + "source_location": "L500", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_structuredquery_structuredlookup", + "target": "apps_electron_vite_project_electron_main_handshake_structuredquery_formatvalue", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/structuredQuery.ts", + "source_location": "L559", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_structuredquery_structuredlookupmulti", + "target": "apps_electron_vite_project_electron_main_handshake_structuredquery_formatvalue", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/structuredQuery.ts", + "source_location": "L605", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_structuredquery_fetchblocksforstructuredlookup", + "target": "apps_electron_vite_project_electron_main_handshake_visibilityfilter_isvaultcurrentlyunlocked" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/structuredQuery.ts", + "source_location": "L606", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_structuredquery_fetchblocksforstructuredlookup", + "target": "apps_electron_vite_project_electron_main_handshake_visibilityfilter_visibilitywhereclause" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/tierClassification.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tierclassification", + "target": "apps_electron_vite_project_electron_main_handshake_tierclassification_classifyhandshaketier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/tierClassification.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tierclassification", + "target": "apps_electron_vite_project_electron_main_handshake_tierclassification_computetierfromsignals", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/tierClassification.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tierclassification", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/tierClassification.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tierclassification", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshaketier", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/tierClassification.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tierclassification", + "target": "apps_electron_vite_project_electron_main_handshake_types_mintier", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/tierClassification.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tierclassification", + "target": "apps_electron_vite_project_electron_main_handshake_types_tieratleast", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/tierClassification.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tierclassification", + "target": "apps_electron_vite_project_electron_main_handshake_types_tierdecision", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/tierClassification.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tierclassification", + "target": "apps_electron_vite_project_electron_main_handshake_types_tiersignals", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/vaultGating.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_vaultgating", + "target": "apps_electron_vite_project_electron_main_handshake_tierclassification", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/tierClassification.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tierclassification_classifyhandshaketier", + "target": "apps_electron_vite_project_electron_main_handshake_tierclassification_computetierfromsignals", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/tierClassification.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tierclassification_classifyhandshaketier", + "target": "apps_electron_vite_project_electron_main_handshake_types_mintier" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/tierClassification.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tierclassification_classifyhandshaketier", + "target": "apps_electron_vite_project_electron_main_handshake_types_tieratleast" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/vaultGating.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_vaultgating", + "target": "apps_electron_vite_project_electron_main_handshake_tierclassification_classifyhandshaketier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/vaultGating.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_vaultgating_gatevaultaccess", + "target": "apps_electron_vite_project_electron_main_handshake_tierclassification_classifyhandshaketier" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/tierClassification.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_tierclassification_computetierfromsignals", + "target": "apps_electron_vite_project_electron_main_handshake_types_tieratleast", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/topologyAutoWire.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_topologyautowire", + "target": "apps_electron_vite_project_electron_main_handshake_topologyautowire_assertroleprecedence", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/topologyAutoWire.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_topologyautowire", + "target": "apps_electron_vite_project_electron_main_handshake_topologyautowire_autowiretopologyforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/topologyAutoWire.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_topologyautowire", + "target": "apps_electron_vite_project_electron_main_handshake_topologyautowire_delegationcallback", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/topologyAutoWire.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_topologyautowire", + "target": "apps_electron_vite_project_electron_main_handshake_topologyautowire_email_depackage_kinds", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/topologyAutoWire.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_topologyautowire", + "target": "apps_electron_vite_project_electron_main_handshake_topologyautowire_localdeviceroleinhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/topologyAutoWire.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_topologyautowire", + "target": "apps_electron_vite_project_electron_main_handshake_topologyautowire_peerdeviceroleinhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/topologyAutoWire.ts", + "source_location": "L169", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_topologyautowire", + "target": "apps_electron_vite_project_electron_main_handshake_topologyautowire_removetopologyforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/topologyAutoWire.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_topologyautowire", + "target": "apps_electron_vite_project_electron_main_handshake_topologyautowire_settopologydelegationcallback", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/topologyAutoWire.ts", + "source_location": "L186", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_topologyautowire", + "target": "apps_electron_vite_project_electron_main_handshake_topologyautowire_synctopologyfromactivehandshakes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/topologyAutoWire.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_topologyautowire", + "target": "apps_electron_vite_project_electron_main_handshake_topologyautowire_topologyroleconflicterror", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/topologyAutoWire.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_topologyautowire", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/topologyAutoWire.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_topologyautowire", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/topologyAutoWire.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_topologyautowire", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/topologyAutoWire.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_topologyautowire", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/topologyAutoWire.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_topologyautowire", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_addlinkedtopologyentry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/topologyAutoWire.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_topologyautowire", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/topologyAutoWire.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_topologyautowire", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_linkedtopologyconfigentry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/topologyAutoWire.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_topologyautowire", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_removelinkedtopologyentry", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/topologyAutoWire.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_topologyautowire_topologyroleconflicterror", + "target": "apps_electron_vite_project_electron_main_handshake_topologyautowire_topologyroleconflicterror_constructor", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/topologyAutoWire.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_topologyautowire_autowiretopologyforhandshake", + "target": "apps_electron_vite_project_electron_main_handshake_topologyautowire_localdeviceroleinhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/topologyAutoWire.ts", + "source_location": "L195", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_topologyautowire_synctopologyfromactivehandshakes", + "target": "apps_electron_vite_project_electron_main_handshake_topologyautowire_localdeviceroleinhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/topologyAutoWire.ts", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_topologyautowire_autowiretopologyforhandshake", + "target": "apps_electron_vite_project_electron_main_handshake_topologyautowire_peerdeviceroleinhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/topologyAutoWire.ts", + "source_location": "L196", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_topologyautowire_synctopologyfromactivehandshakes", + "target": "apps_electron_vite_project_electron_main_handshake_topologyautowire_peerdeviceroleinhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/topologyAutoWire.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_topologyautowire_assertroleprecedence", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/topologyAutoWire.ts", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_topologyautowire_autowiretopologyforhandshake", + "target": "apps_electron_vite_project_electron_main_handshake_topologyautowire_assertroleprecedence", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/topologyAutoWire.ts", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_topologyautowire_synctopologyfromactivehandshakes", + "target": "apps_electron_vite_project_electron_main_handshake_topologyautowire_assertroleprecedence", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/topologyAutoWire.ts", + "source_location": "L155", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_topologyautowire_autowiretopologyforhandshake", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_addlinkedtopologyentry" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/topologyAutoWire.ts", + "source_location": "L170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_topologyautowire_removetopologyforhandshake", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_removelinkedtopologyentry" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/topologyAutoWire.ts", + "source_location": "L228", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_topologyautowire_synctopologyfromactivehandshakes", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_addlinkedtopologyentry" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_types", + "target": "apps_electron_vite_project_electron_main_handshake_types_actiontype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_types", + "target": "apps_electron_vite_project_electron_main_handshake_types_all_data_classifications", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L632", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_types", + "target": "apps_electron_vite_project_electron_main_handshake_types_auditlogentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L604", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_types", + "target": "apps_electron_vite_project_electron_main_handshake_types_authorizationresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L456", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_types", + "target": "apps_electron_vite_project_electron_main_handshake_types_beapkeyagreementmaterial", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_types", + "target": "apps_electron_vite_project_electron_main_handshake_types_builddefaultreceiverpolicy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_types", + "target": "apps_electron_vite_project_electron_main_handshake_types_capsulepolicy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L264", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_types", + "target": "apps_electron_vite_project_electron_main_handshake_types_capsuletype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_types", + "target": "apps_electron_vite_project_electron_main_handshake_types_cloudpayloadmode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L467", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_types", + "target": "apps_electron_vite_project_electron_main_handshake_types_contextblock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L247", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_types", + "target": "apps_electron_vite_project_electron_main_handshake_types_contextblockinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_types", + "target": "apps_electron_vite_project_electron_main_handshake_types_dataclassification", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L187", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_types", + "target": "apps_electron_vite_project_electron_main_handshake_types_effectivepolicy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L222", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_types", + "target": "apps_electron_vite_project_electron_main_handshake_types_executioncapsule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_types", + "target": "apps_electron_vite_project_electron_main_handshake_types_externalprocessing", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L207", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_types", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakepayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L590", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_types", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakeprocessdenial", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L598", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_types", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakeprocessresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L582", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_types", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakeprocesssuccess", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L342", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_types", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_types", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_types", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshaketier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L545", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_types", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakeverificationcontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L569", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_types", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakeverificationdenial", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L576", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_types", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakeverificationresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L564", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_types", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakeverificationsuccess", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_types", + "target": "apps_electron_vite_project_electron_main_handshake_types_identityanchor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L646", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_types", + "target": "apps_electron_vite_project_electron_main_handshake_types_input_limits", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_types", + "target": "apps_electron_vite_project_electron_main_handshake_types_maxtier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_types", + "target": "apps_electron_vite_project_electron_main_handshake_types_mintier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L333", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_types", + "target": "apps_electron_vite_project_electron_main_handshake_types_partyidentity", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L625", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_types", + "target": "apps_electron_vite_project_electron_main_handshake_types_persistresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L540", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_types", + "target": "apps_electron_vite_project_electron_main_handshake_types_pipelinestep", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L489", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_types", + "target": "apps_electron_vite_project_electron_main_handshake_types_reasoncode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L237", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_types", + "target": "apps_electron_vite_project_electron_main_handshake_types_receiveridentity", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_types", + "target": "apps_electron_vite_project_electron_main_handshake_types_receiverpolicy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L453", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_types", + "target": "apps_electron_vite_project_electron_main_handshake_types_sandboxpairingkind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L619", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_types", + "target": "apps_electron_vite_project_electron_main_handshake_types_scoredcontextblock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_types", + "target": "apps_electron_vite_project_electron_main_handshake_types_sharingmode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_types", + "target": "apps_electron_vite_project_electron_main_handshake_types_ssosession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L536", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_types", + "target": "apps_electron_vite_project_electron_main_handshake_types_stepresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_types", + "target": "apps_electron_vite_project_electron_main_handshake_types_tier_order", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_types", + "target": "apps_electron_vite_project_electron_main_handshake_types_tieratleast", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_types", + "target": "apps_electron_vite_project_electron_main_handshake_types_tierdecision", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_types", + "target": "apps_electron_vite_project_electron_main_handshake_types_tiersignals", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L611", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_types", + "target": "apps_electron_vite_project_electron_main_handshake_types_vaultaccessresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L271", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_types", + "target": "apps_electron_vite_project_electron_main_handshake_types_verifiedcapsuleinput", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/vaultGating.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_vaultgating", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/entrypoint.guard.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_entrypoint_guard_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testIpcHarness.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testipcharness", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testWsClient.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testwsclient", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiEffectiveRole.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiInternalPairingLedger.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaNativeDiscovery.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementLog.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementlog", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRemoteInferencePolicyResolve.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelaySend.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaysend", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelay.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelay", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayHandler.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/internalP2pHandshakeInspect.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectSyntheticProbe.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectsyntheticprobe", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/decideInternalInferenceTransport.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_decideinternalinferencetransport_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/directP2pReachability.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_directp2preachability_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiCrossDeviceStateMachine.regression.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaicrossdevicestatemachine_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiDirectBeapAdPublish.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaidirectbeapadpublish_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiE2eSandboxToHostSuccess.integration.test.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiEffectiveRole.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaieffectiverole_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiInternalPairingLedger.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiinternalpairingledger_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiInternalPeerRoles.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiinternalpeerroles_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiLogContracts.validation.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostailogcontracts_validation_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiPeerLivePresence.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaipeerlivepresence_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRouteResolve.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostairouteresolve_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRoutingCorrectness.regression.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutingcorrectness_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiSealedInferenceRelayResultHandler.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiTargetAvailabilityGating.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaitargetavailabilitygating_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiUnifiedServiceRpcRelay.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiunifiedservicerpcrelay_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostInferenceCore.policy.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostinferencecore_policy_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/inferenceHandshakeTrust.test.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_inferencehandshaketrust_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInference.directHost.regression.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceService.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferenceservice_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listHostCapabilities.hostAiRoute.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listhostcapabilities_hostairoute_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listInferenceTargets.step8.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listinferencetargets_step8_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pDcCapabilities.roleGate.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2pdccapabilities_rolegate_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pEndpointRepair.hostAi.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2pendpointrepair_hostai_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.p2pSessionManager.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_p2psessionmanager_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/policy.internalInference.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_policy_internalinference_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/policy.internalInferencePolicyGetRole.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_policy_internalinferencepolicygetrole_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/relayP2pSignalHandler.republishRequest.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_relayp2psignalhandler_republishrequest_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing.regression.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandboxHostAiDirectBeapAdRequest.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_sandboxhostaidirectbeapadrequest_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/serviceRpcGatesAndLifecycle.rig.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_servicerpcgatesandlifecycle_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/inferenceDirectHttpTrust.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_inferencedirecthttptrust", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayIdentity.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relayidentity", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/coordination-client.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_coordination_client_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/__tests__/sealedServiceRpc.deviceKeyOpen.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_tests_sealedservicerpc_devicekeyopen_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/__tests__/sealedServiceRpc.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_tests_sealedservicerpc_test", + "target": "apps_electron_vite_project_electron_main_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/vaultGating.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_vaultgating", + "target": "apps_electron_vite_project_electron_main_handshake_types_tieratleast", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/handshake/vaultGating.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_vaultgating_gatevaultaccess", + "target": "apps_electron_vite_project_electron_main_handshake_types_tieratleast" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/vaultGating.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_vaultgating", + "target": "apps_electron_vite_project_electron_main_handshake_types_actiontype", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/vaultGating.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_vaultgating", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiEffectiveRole.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiInternalPairingLedger.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementLog.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementlog", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRemoteInferencePolicyResolve.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/internalP2pHandshakeInspect.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiCrossDeviceStateMachine.regression.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaicrossdevicestatemachine_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiDirectBeapAdPublish.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaidirectbeapadpublish_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiE2eSandboxToHostSuccess.integration.test.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiEffectiveRole.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaieffectiverole_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiInternalPairingLedger.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiinternalpairingledger_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiInternalPeerRoles.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiinternalpeerroles_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiLogContracts.validation.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostailogcontracts_validation_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiPeerLivePresence.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaipeerlivepresence_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRouteResolve.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostairouteresolve_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRoutingCorrectness.regression.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutingcorrectness_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiSealedInferenceRelayResultHandler.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiUnifiedServiceRpcRelay.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiunifiedservicerpcrelay_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostInferenceCore.policy.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostinferencecore_policy_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/inferenceHandshakeTrust.test.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_inferencehandshaketrust_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listHostCapabilities.hostAiRoute.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listhostcapabilities_hostairoute_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pDcCapabilities.roleGate.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2pdccapabilities_rolegate_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pEndpointRepair.hostAi.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2pendpointrepair_hostai_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.p2pSessionManager.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_p2psessionmanager_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/policy.internalInference.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_policy_internalinference_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/policy.internalInferencePolicyGetRole.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_policy_internalinferencepolicygetrole_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/relayP2pSignalHandler.republishRequest.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_relayp2psignalhandler_republishrequest_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandboxHostAiDirectBeapAdRequest.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_sandboxhostaidirectbeapadrequest_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/inferenceDirectHttpTrust.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_inferencedirecthttptrust", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/__tests__/sealedServiceRpc.deviceKeyOpen.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_tests_sealedservicerpc_devicekeyopen_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/__tests__/sealedServiceRpc.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_tests_sealedservicerpc_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/vaultGating.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_vaultgating", + "target": "apps_electron_vite_project_electron_main_handshake_types_ssosession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_types_ssosession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testIpcHarness.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testipcharness", + "target": "apps_electron_vite_project_electron_main_handshake_types_ssosession", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testIpcHarness.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testipcharness_ipcharness_constructor", + "target": "apps_electron_vite_project_electron_main_handshake_types_ssosession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testWsClient.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testwsclient", + "target": "apps_electron_vite_project_electron_main_handshake_types_ssosession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence", + "target": "apps_electron_vite_project_electron_main_handshake_types_ssosession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiPeerLivePresence.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaipeerlivepresence_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_ssosession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_handshake_types_ssosession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayIdentity.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relayidentity", + "target": "apps_electron_vite_project_electron_main_handshake_types_ssosession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull", + "target": "apps_electron_vite_project_electron_main_handshake_types_ssosession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc", + "target": "apps_electron_vite_project_electron_main_handshake_types_builddefaultreceiverpolicy", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc_handleingestionrpc", + "target": "apps_electron_vite_project_electron_main_handshake_types_builddefaultreceiverpolicy" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L318", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc_registeringestionroutes", + "target": "apps_electron_vite_project_electron_main_handshake_types_builddefaultreceiverpolicy" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/entrypoint.guard.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_entrypoint_guard_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_builddefaultreceiverpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_handshake_types_builddefaultreceiverpolicy", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L497", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws_processcapsuleinternal", + "target": "apps_electron_vite_project_electron_main_handshake_types_builddefaultreceiverpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull", + "target": "apps_electron_vite_project_electron_main_handshake_types_builddefaultreceiverpolicy", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L166", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull_pullfromrelay", + "target": "apps_electron_vite_project_electron_main_handshake_types_builddefaultreceiverpolicy" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence", + "target": "apps_electron_vite_project_electron_main_handshake_types_partyidentity", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/directP2pReachability.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_directp2preachability_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_partyidentity", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiCrossDeviceStateMachine.regression.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaicrossdevicestatemachine_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_partyidentity", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiE2eSandboxToHostSuccess.integration.test.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_partyidentity", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRoutingCorrectness.regression.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutingcorrectness_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_partyidentity", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiTargetAvailabilityGating.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaitargetavailabilitygating_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_partyidentity", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/inferenceHandshakeTrust.test.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_inferencehandshaketrust_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_partyidentity", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInference.directHost.regression.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_partyidentity", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceService.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferenceservice_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_partyidentity", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listHostCapabilities.hostAiRoute.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listhostcapabilities_hostairoute_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_partyidentity", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listInferenceTargets.step8.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listinferencetargets_step8_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_partyidentity", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pDcCapabilities.roleGate.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2pdccapabilities_rolegate_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_partyidentity", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayIdentity.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relayidentity", + "target": "apps_electron_vite_project_electron_main_handshake_types_partyidentity", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiEffectiveRole.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiInternalPairingLedger.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaNativeDiscovery.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelaySend.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaysend", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelay.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelay", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayHandler.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/internalP2pHandshakeInspect.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectSyntheticProbe.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectsyntheticprobe", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/decideInternalInferenceTransport.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_decideinternalinferencetransport_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/directP2pReachability.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_directp2preachability_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiCrossDeviceStateMachine.regression.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaicrossdevicestatemachine_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiDirectBeapAdPublish.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaidirectbeapadpublish_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiE2eSandboxToHostSuccess.integration.test.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiEffectiveRole.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaieffectiverole_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiInternalPairingLedger.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiinternalpairingledger_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiInternalPeerRoles.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiinternalpeerroles_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiLogContracts.validation.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostailogcontracts_validation_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiPeerLivePresence.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaipeerlivepresence_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRouteResolve.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostairouteresolve_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRoutingCorrectness.regression.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutingcorrectness_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiSealedInferenceRelayResultHandler.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiTargetAvailabilityGating.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaitargetavailabilitygating_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiUnifiedServiceRpcRelay.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiunifiedservicerpcrelay_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostInferenceCore.policy.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostinferencecore_policy_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/inferenceHandshakeTrust.test.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_inferencehandshaketrust_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInference.directHost.regression.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceService.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferenceservice_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listHostCapabilities.hostAiRoute.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listhostcapabilities_hostairoute_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listInferenceTargets.step8.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listinferencetargets_step8_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pDcCapabilities.roleGate.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2pdccapabilities_rolegate_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pEndpointRepair.hostAi.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2pendpointrepair_hostai_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.p2pSessionManager.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_p2psessionmanager_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/policy.internalInference.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_policy_internalinference_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/policy.internalInferencePolicyGetRole.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_policy_internalinferencepolicygetrole_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/relayP2pSignalHandler.republishRequest.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_relayp2psignalhandler_republishrequest_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing.regression.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing_regression_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandboxHostAiDirectBeapAdRequest.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_sandboxhostaidirectbeapadrequest_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/serviceRpcGatesAndLifecycle.rig.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_servicerpcgatesandlifecycle_rig_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/inferenceDirectHttpTrust.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_inferencedirecthttptrust", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/coordination-client.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_coordination_client_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/__tests__/sealedServiceRpc.deviceKeyOpen.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_tests_sealedservicerpc_devicekeyopen_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/__tests__/sealedServiceRpc.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_tests_sealedservicerpc_test", + "target": "apps_electron_vite_project_electron_main_handshake_types_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/types.ts", + "source_location": "L619", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_types_scoredcontextblock", + "target": "apps_electron_vite_project_electron_main_handshake_types_contextblock", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/vaultGating.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_vaultgating", + "target": "apps_electron_vite_project_electron_main_handshake_types_reasoncode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/vaultGating.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_vaultgating", + "target": "apps_electron_vite_project_electron_main_handshake_types_vaultaccessresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/vaultGating.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_vaultgating", + "target": "apps_electron_vite_project_electron_main_handshake_vaultgating_gatevaultaccess", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/visibilityFilter.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_visibilityfilter", + "target": "apps_electron_vite_project_electron_main_handshake_visibilityfilter_isvaultcurrentlyunlocked", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/handshake/visibilityFilter.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_handshake_visibilityfilter", + "target": "apps_electron_vite_project_electron_main_handshake_visibilityfilter_visibilitywhereclause", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/__tests__/gpuStatus.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_tests_gpustatus_test", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/__tests__/gpuStatus.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_tests_gpustatus_test", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_cleargpustatuscache", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/__tests__/gpuStatus.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_tests_gpustatus_test", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_getgpuinferencestatusremote", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/__tests__/gpuStatus.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_tests_gpustatus_test", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_getgpustatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/__tests__/gpuStatus.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_tests_gpustatus_test", + "target": "apps_electron_vite_project_electron_main_inference_tests_gpustatus_test_execmock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/__tests__/gpuStatus.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_tests_gpustatus_test", + "target": "apps_electron_vite_project_electron_main_inference_tests_gpustatus_test_mockfetchhandlers", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/__tests__/inferenceCapabilityResolver.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_tests_inferencecapabilityresolver_test", + "target": "apps_electron_vite_project_electron_main_inference_inferencecapabilityresolver", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/__tests__/inferenceCapabilityResolver.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_tests_inferencecapabilityresolver_test", + "target": "apps_electron_vite_project_electron_main_inference_inferencecapabilityresolver_cpu_safe_model_patterns", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/__tests__/inferenceCapabilityResolver.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_tests_inferencecapabilityresolver_test", + "target": "apps_electron_vite_project_electron_main_inference_inferencecapabilityresolver_iscpusafemodel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/__tests__/inferenceCapabilityResolver.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_tests_inferencecapabilityresolver_test", + "target": "apps_electron_vite_project_electron_main_inference_inferencecapabilityresolver_resolveinferencecapabilityfrominput", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/__tests__/inferenceGate.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_tests_inferencegate_test", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/__tests__/inferenceGate.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_tests_inferencegate_test", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate_assertgpuinferenceavailable", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/__tests__/inferenceGate.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_tests_inferencegate_test", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate_assertgpuinferenceavailableforremoteollama", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/__tests__/inferenceGate.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_tests_inferencegate_test", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate_inferenceunavailableerror", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/__tests__/inferenceGate.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_tests_inferencegate_test", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate_isgpuinferenceavailable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/__tests__/inferenceGate.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_tests_inferencegate_test", + "target": "apps_electron_vite_project_electron_main_inference_tests_inferencegate_test_getgpuinferencestatusremotemock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/__tests__/inferenceGate.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_tests_inferencegate_test", + "target": "apps_electron_vite_project_electron_main_inference_tests_inferencegate_test_getgpustatusmock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L186", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_gpustatus", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_buildtechnicalsummary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_gpustatus", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_cacheentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_gpustatus", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_cachekeyremote", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_gpustatus", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_cleargpustatuscache", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_gpustatus", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_detectnvidiasmi", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_gpustatus", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_execasync", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L194", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_gpustatus", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_fetchjsonwithtimeout", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L242", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_gpustatus", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_fetchpsrows", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L219", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_gpustatus", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_fetchv1modelnames", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L205", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_gpustatus", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_firstresponsivellamacppbase", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L475", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_gpustatus", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_getgpuinferencestatusremote", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L458", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_gpustatus", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_getgpustatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_gpustatus", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_gpustatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_gpustatus", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_gpuunavailablereason", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_gpustatus", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_localllmserverlogcandidates", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_gpustatus", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_matchpsmodelrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_gpustatus", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_parsesemverparts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L253", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_gpustatus", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_probegpuinferencestatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L251", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_gpustatus", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_probescope", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_gpustatus", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_readlocalllmlogtail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L153", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_gpustatus", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_refinereasonfromlogs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_gpustatus", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_remotecache", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_gpustatus", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_semveratleast", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_gpustatus", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_stripbaremodelname", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L166", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_gpustatus", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_usermessagesfor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_gpustatus", + "target": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_gpustatus", + "target": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore_debug_active_local_model", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_gpustatus", + "target": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore_getstoredactivelocalmodelid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_gpustatus", + "target": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore_resolveeffectivelocalmodel", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_gpustatus", + "target": "apps_electron_vite_project_electron_main_llm_llamacpphttpbases", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_gpustatus", + "target": "apps_electron_vite_project_electron_main_llm_llamacpphttpbases_collectllamacpphttpbasesfromenv", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/inferenceGate.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_inferencegate", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_gpustatus_detectnvidiasmi", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_execasync", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/inferenceGate.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_inferencegate", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_gpuunavailablereason", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/inferenceGate.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_inferencegate_inferenceunavailableerror", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_gpuunavailablereason", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/inferenceGate.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_inferencegate_inferenceunavailableerror_constructor", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_gpuunavailablereason", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L477", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_gpustatus_getgpuinferencestatusremote", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_cachekeyremote", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_gpustatus_semveratleast", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_parsesemverparts", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L328", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_gpustatus_probegpuinferencestatus", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_semveratleast", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_gpustatus_matchpsmodelrow", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_stripbaremodelname", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L369", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_gpustatus_probegpuinferencestatus", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_matchpsmodelrow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L267", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_gpustatus_probegpuinferencestatus", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_detectnvidiasmi", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_detectnvidiasmi", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_detectrecommendedllamaservervariant", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_detectnvidiasmi" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L139", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_gpustatus_readlocalllmlogtail", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_localllmserverlogcandidates", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L282", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_gpustatus_probegpuinferencestatus", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_readlocalllmlogtail", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L401", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_gpustatus_probegpuinferencestatus", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_refinereasonfromlogs", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L286", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_gpustatus_probegpuinferencestatus", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_usermessagesfor", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L301", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_gpustatus_probegpuinferencestatus", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_buildtechnicalsummary", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L245", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_gpustatus_fetchpsrows", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_fetchjsonwithtimeout", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L220", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_gpustatus_fetchv1modelnames", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_fetchjsonwithtimeout", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L208", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_gpustatus_firstresponsivellamacppbase", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_fetchjsonwithtimeout", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L305", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_gpustatus_probegpuinferencestatus", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_firstresponsivellamacppbase", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L348", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_gpustatus_probegpuinferencestatus", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_fetchv1modelnames", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L368", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_gpustatus_probegpuinferencestatus", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_fetchpsrows", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L481", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_gpustatus_getgpuinferencestatusremote", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_probegpuinferencestatus", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L463", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_gpustatus_getgpustatus", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_probegpuinferencestatus", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L359", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_gpustatus_probegpuinferencestatus", + "target": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore_getstoredactivelocalmodelid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L355", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_gpustatus_probegpuinferencestatus", + "target": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore_resolveeffectivelocalmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/inference/gpuStatus.ts", + "source_location": "L464", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_gpustatus_getgpustatus", + "target": "apps_electron_vite_project_electron_main_llm_llamacpphttpbases_collectllamacpphttpbasesfromenv" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/inferenceGate.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_inferencegate", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_getgpustatus", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/inference/inferenceGate.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_inferencegate_assertgpuinferenceavailable", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_getgpustatus" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/inference/inferenceGate.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_inferencegate_isgpuinferenceavailable", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_getgpustatus" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_getgpustatus", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc_registerllmhandlers", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_getgpustatus" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/inferenceGate.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_inferencegate", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_getgpuinferencestatusremote", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/inference/inferenceGate.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_inferencegate_assertgpuinferenceavailableforremoteollama", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_getgpuinferencestatusremote" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_getgpuinferencestatusremote", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L539", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc_registerllmhandlers", + "target": "apps_electron_vite_project_electron_main_inference_gpustatus_getgpuinferencestatusremote" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/inferenceCapabilityResolver.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_inferencecapabilityresolver", + "target": "apps_electron_vite_project_electron_main_inference_inferencecapabilityresolver_cpu_safe_model_patterns", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/inferenceCapabilityResolver.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_inferencecapabilityresolver", + "target": "apps_electron_vite_project_electron_main_inference_inferencecapabilityresolver_inferencebackend", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/inferenceCapabilityResolver.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_inferencecapabilityresolver", + "target": "apps_electron_vite_project_electron_main_inference_inferencecapabilityresolver_inferencecapabilityinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/inferenceCapabilityResolver.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_inferencecapabilityresolver", + "target": "apps_electron_vite_project_electron_main_inference_inferencecapabilityresolver_inferencecapabilityresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/inferenceCapabilityResolver.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_inferencecapabilityresolver", + "target": "apps_electron_vite_project_electron_main_inference_inferencecapabilityresolver_inferencehardware", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/inferenceCapabilityResolver.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_inferencecapabilityresolver", + "target": "apps_electron_vite_project_electron_main_inference_inferencecapabilityresolver_iscpusafemodel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/inferenceCapabilityResolver.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_inferencecapabilityresolver", + "target": "apps_electron_vite_project_electron_main_inference_inferencecapabilityresolver_resolveinferencecapabilityfrominput", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc", + "target": "apps_electron_vite_project_electron_main_inference_inferencecapabilityresolver", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext", + "target": "apps_electron_vite_project_electron_main_inference_inferencecapabilityresolver", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/GpuInferenceBarBadge.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_gpuinferencebarbadge_test", + "target": "apps_electron_vite_project_electron_main_inference_inferencecapabilityresolver", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/inference/inferenceCapabilityResolver.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_inferencecapabilityresolver_iscpusafemodel", + "target": "apps_electron_vite_project_electron_main_inference_inferencecapabilityresolver_cpu_safe_model_patterns" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/inferenceCapabilityResolver.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_inferencecapabilityresolver_resolveinferencecapabilityfrominput", + "target": "apps_electron_vite_project_electron_main_inference_inferencecapabilityresolver_iscpusafemodel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc", + "target": "apps_electron_vite_project_electron_main_inference_inferencecapabilityresolver_iscpusafemodel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext", + "target": "apps_electron_vite_project_electron_main_inference_inferencecapabilityresolver_iscpusafemodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L249", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_trylocalcontext", + "target": "apps_electron_vite_project_electron_main_inference_inferencecapabilityresolver_iscpusafemodel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc", + "target": "apps_electron_vite_project_electron_main_inference_inferencecapabilityresolver_resolveinferencecapabilityfrominput", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L564", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc_registerllmhandlers", + "target": "apps_electron_vite_project_electron_main_inference_inferencecapabilityresolver_resolveinferencecapabilityfrominput" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/GpuInferenceBarBadge.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_gpuinferencebarbadge_test", + "target": "apps_electron_vite_project_electron_main_inference_inferencecapabilityresolver_resolveinferencecapabilityfrominput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/inferenceGate.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_inferencegate", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate_allowcpuinferencedevoverride", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/inferenceGate.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_inferencegate", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate_assertgpuinferenceavailable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/inferenceGate.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_inferencegate", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate_assertgpuinferenceavailableforchatbase", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/inferenceGate.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_inferencegate", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate_assertgpuinferenceavailableforremoteollama", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/inferenceGate.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_inferencegate", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate_inferenceunavailableerror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/inferenceGate.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_inferencegate", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate_isgpuinferenceavailable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/inferenceGate.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_inferencegate", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate_islikelyloopbackorigin", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/inferenceGate.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_inferencegate", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate_logdevbypass", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L236", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish_publishhostaidirectbeapadvertisementsforeligiblehost", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/internalHostInferenceLocal.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_internalhostinferencelocal", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmBulkPrewarm.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmbulkprewarm", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/warmModel.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_warmmodel", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/inferenceGate.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_inferencegate_inferenceunavailableerror", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate_inferenceunavailableerror_constructor", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/inferenceGate.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_inferencegate_assertgpuinferenceavailable", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate_allowcpuinferencedevoverride", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/inferenceGate.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_inferencegate_assertgpuinferenceavailableforremoteollama", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate_allowcpuinferencedevoverride", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/inferenceGate.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_inferencegate_assertgpuinferenceavailable", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate_logdevbypass", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/inferenceGate.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_inferencegate_assertgpuinferenceavailableforremoteollama", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate_logdevbypass", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/inferenceGate.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_inferencegate_assertgpuinferenceavailableforchatbase", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate_islikelyloopbackorigin", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/inferenceGate.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_inferencegate_assertgpuinferenceavailableforchatbase", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate_assertgpuinferenceavailable", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/internalHostInferenceLocal.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_internalhostinferencelocal", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate_assertgpuinferenceavailable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/internalHostInferenceLocal.ts", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_internalhostinferencelocal_runinternalhostlocalllminference", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate_assertgpuinferenceavailable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate_assertgpuinferenceavailable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L1068", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_chat", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate_assertgpuinferenceavailable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmBulkPrewarm.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmbulkprewarm", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate_assertgpuinferenceavailable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmBulkPrewarm.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmbulkprewarm_maybeprewarmlocalllmforbulkclassify", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate_assertgpuinferenceavailable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/warmModel.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_warmmodel", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate_assertgpuinferenceavailable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/warmModel.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_warmmodel_warmmodel", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate_assertgpuinferenceavailable" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/inference/inferenceGate.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_inference_inferencegate_assertgpuinferenceavailableforchatbase", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate_assertgpuinferenceavailableforremoteollama", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate_isgpuinferenceavailable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L509", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc_registerllmhandlers", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate_isgpuinferenceavailable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate_isgpuinferenceavailable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L240", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_trylocalcontext", + "target": "apps_electron_vite_project_electron_main_inference_inferencegate_isgpuinferenceavailable", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/adversarial.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_adversarial_test", + "target": "apps_electron_vite_project_electron_main_ingestion_ingestionpipeline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/adversarial.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_adversarial_test", + "target": "apps_electron_vite_project_electron_main_ingestion_ingestionpipeline_processincominginput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/adversarial.test.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_adversarial_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_adversarial_test_emptytransport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/adversarial.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_adversarial_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_adversarial_test_makecandidate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/adversarial.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_adversarial_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_adversarial_test_makeprovenance", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/adversarial.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_adversarial_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_adversarial_test_validinitiate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/adversarial.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_adversarial_test", + "target": "apps_electron_vite_project_electron_main_ingestion_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/adversarial.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_adversarial_test", + "target": "apps_electron_vite_project_electron_main_ingestion_types_candidatecapsuleenvelope", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/adversarial.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_adversarial_test", + "target": "apps_electron_vite_project_electron_main_ingestion_types_provenancemetadata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/adversarial.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_adversarial_test", + "target": "apps_electron_vite_project_electron_main_ingestion_types_rawinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/adversarial.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_adversarial_test", + "target": "apps_electron_vite_project_electron_main_ingestion_types_transportmetadata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/adversarial.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_adversarial_test_makecandidate", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_adversarial_test_makeprovenance", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/authorization.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_authorization_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_authorization_test_makehandshakerow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/authorization.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_authorization_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_authorization_test_makemockdb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/authorization.test.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_authorization_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_authorization_test_makerequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/beapDetection.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_beapdetection_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_beapdetection_test_validbeappayload", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/beapDetection.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_beapdetection_test", + "target": "apps_electron_vite_project_electron_main_ingestion_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/beapDetection.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_beapdetection_test", + "target": "apps_electron_vite_project_electron_main_ingestion_types_rawinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/distributionGate.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_distributiongate_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_distributiongate_test_makeprovenance", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/distributionGate.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_distributiongate_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_distributiongate_test_makevalidated", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/distributionGate.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_distributiongate_test", + "target": "apps_electron_vite_project_electron_main_ingestion_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/distributionGate.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_distributiongate_test", + "target": "apps_electron_vite_project_electron_main_ingestion_types_provenancemetadata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/distributionGate.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_distributiongate_test", + "target": "apps_electron_vite_project_electron_main_ingestion_types_validatedcapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/distributionGate.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_distributiongate_test", + "target": "apps_electron_vite_project_electron_main_ingestion_types_validatedcapsulepayload", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/distributionGate.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_distributiongate_test_makevalidated", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_distributiongate_test_makeprovenance", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.http.test.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_http_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_http_test_ingestpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.http.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_http_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_http_test_postingest", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.http.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_http_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_fixtures_capsules", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.http.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_http_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_fixtures_capsules_futuretimestampcapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.http.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_http_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_fixtures_capsules_malformedjsonstring", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.http.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_http_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_fixtures_capsules_oversizedbody", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.http.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_http_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_fixtures_capsules_validbeapcapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.http.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_http_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testserver", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.http.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_http_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testserver_starttestserver", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.http.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_http_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testserver_testservercontext", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.ipc.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_ipc_test", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.ipc.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_ipc_test", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_migrateingestiontables", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.ipc.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_ipc_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_fixtures_capsules", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.ipc.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_ipc_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_fixtures_capsules_malformedjsonstring", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.ipc.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_ipc_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_fixtures_capsules_oversizedbody", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.ipc.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_ipc_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_fixtures_capsules_validbeapcapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.ipc.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_ipc_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testdb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.ipc.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_ipc_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testdb_createtestdb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.ipc.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_ipc_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testdb_testdb", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.ipc.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_ipc_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testipcharness", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.ipc.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_ipc_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testipcharness_ipcharness", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.transport.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_transport_test", + "target": "apps_electron_vite_project_electron_main_ingestion_ingestionpipeline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.transport.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_transport_test", + "target": "apps_electron_vite_project_electron_main_ingestion_ingestionpipeline_processincominginput", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.transport.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_transport_test", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.transport.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_transport_test", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc_handleingestionrpc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.transport.test.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_transport_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_transport_test_emptytransport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.transport.test.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_transport_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_transport_test_futuretimestamppayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.transport.test.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_transport_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_transport_test_malformedjsonbody", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.transport.test.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_transport_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_transport_test_mockexpressapp", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.transport.test.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_transport_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_transport_test_mockres", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.transport.test.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_transport_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_transport_test_oversizedbody", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.transport.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_transport_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_transport_test_validbeappayload", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.transport.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_transport_test", + "target": "apps_electron_vite_project_electron_main_ingestion_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.transport.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_transport_test", + "target": "apps_electron_vite_project_electron_main_ingestion_types_ingestion_constants", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.transport.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_transport_test", + "target": "apps_electron_vite_project_electron_main_ingestion_types_rawinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.transport.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_transport_test", + "target": "apps_electron_vite_project_electron_main_ingestion_types_transportmetadata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.transport.test.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_transport_test_futuretimestamppayload", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_transport_test_validbeappayload", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.websocket.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_websocket_test", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.websocket.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_websocket_test", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_migrateingestiontables", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.websocket.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_websocket_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_fixtures_capsules", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.websocket.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_websocket_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_fixtures_capsules_malformedjsonstring", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.websocket.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_websocket_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_fixtures_capsules_oversizedbody", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.websocket.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_websocket_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_fixtures_capsules_validbeapcapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.websocket.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_websocket_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testdb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.websocket.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_websocket_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testdb_createtestdb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.websocket.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_websocket_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testdb_testdb", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.websocket.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_websocket_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testwsclient", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.websocket.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_websocket_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testwsclient_sendhandshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.websocket.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_e2e_websocket_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testwsclient_sendingestionrpc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/entrypoint.guard.test.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_entrypoint_guard_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_entrypoint_guard_test_allowed_callers", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/entrypoint.guard.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_entrypoint_guard_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_entrypoint_guard_test_collectproductionfiles", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/entrypoint.guard.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_entrypoint_guard_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_entrypoint_guard_test_electron_main_dir", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/entrypoints.guard.e2e.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_entrypoints_guard_e2e_test", + "target": "apps_electron_vite_project_electron_main_ingestion_ingestionpipeline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/entrypoints.guard.e2e.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_entrypoints_guard_e2e_test", + "target": "apps_electron_vite_project_electron_main_ingestion_ingestionpipeline_processincominginput", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/entrypoints.guard.e2e.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_entrypoints_guard_e2e_test", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/entrypoints.guard.e2e.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_entrypoints_guard_e2e_test", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_migrateingestiontables", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/entrypoints.guard.e2e.test.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_entrypoints_guard_e2e_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_entrypoints_guard_e2e_test_collectproductionfiles", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/entrypoints.guard.e2e.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_entrypoints_guard_e2e_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_entrypoints_guard_e2e_test_electron_main_dir", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/entrypoints.guard.e2e.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_entrypoints_guard_e2e_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_fixtures_capsules", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/entrypoints.guard.e2e.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_entrypoints_guard_e2e_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_fixtures_capsules_brandforgerycapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/entrypoints.guard.e2e.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_entrypoints_guard_e2e_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_fixtures_capsules_malformedjsonstring", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/entrypoints.guard.e2e.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_entrypoints_guard_e2e_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_fixtures_capsules_validbeapcapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/entrypoints.guard.e2e.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_entrypoints_guard_e2e_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testdb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/entrypoints.guard.e2e.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_entrypoints_guard_e2e_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testdb_createtestdb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/entrypoints.guard.e2e.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_entrypoints_guard_e2e_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testdb_testdb", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/entrypoints.guard.e2e.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_entrypoints_guard_e2e_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testwsclient", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/entrypoints.guard.e2e.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_entrypoints_guard_e2e_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testwsclient_sendingestionrpc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/fixtures/capsules.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_fixtures_capsules", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_fixtures_capsules_brandforgerycapsule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/fixtures/capsules.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_fixtures_capsules", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_fixtures_capsules_futuretimestampcapsule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/fixtures/capsules.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_fixtures_capsules", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_fixtures_capsules_malformedjsonstring", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/fixtures/capsules.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_fixtures_capsules", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_fixtures_capsules_oversizedbody", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/fixtures/capsules.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_fixtures_capsules", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_fixtures_capsules_unsupportedschemacapsule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/fixtures/capsules.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_fixtures_capsules", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_fixtures_capsules_validbeapcapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/fixtures/capsules.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_fixtures_capsules", + "target": "apps_electron_vite_project_electron_main_ingestion_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/fixtures/capsules.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_fixtures_capsules", + "target": "apps_electron_vite_project_electron_main_ingestion_types_ingestion_constants", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/fixtures/capsules.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_fixtures_capsules_futuretimestampcapsule", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_fixtures_capsules_validbeapcapsule", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/fixtures/capsules.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_fixtures_capsules_unsupportedschemacapsule", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_fixtures_capsules_validbeapcapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/hardening.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_hardening_test", + "target": "apps_electron_vite_project_electron_main_ingestion_ingestionpipeline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/hardening.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_hardening_test", + "target": "apps_electron_vite_project_electron_main_ingestion_ingestionpipeline_processincominginput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/hardening.test.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_hardening_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_hardening_test_emptytransport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/hardening.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_hardening_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_hardening_test_makecandidate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/hardening.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_hardening_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_hardening_test_makeprovenance", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/hardening.test.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_hardening_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_hardening_test_validinitiate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/hardening.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_hardening_test", + "target": "apps_electron_vite_project_electron_main_ingestion_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/hardening.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_hardening_test", + "target": "apps_electron_vite_project_electron_main_ingestion_types_candidatecapsuleenvelope", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/hardening.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_hardening_test", + "target": "apps_electron_vite_project_electron_main_ingestion_types_ingestion_constants", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/hardening.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_hardening_test", + "target": "apps_electron_vite_project_electron_main_ingestion_types_provenancemetadata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/hardening.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_hardening_test", + "target": "apps_electron_vite_project_electron_main_ingestion_types_rawinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/hardening.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_hardening_test", + "target": "apps_electron_vite_project_electron_main_ingestion_types_transportmetadata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/hardening.test.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_hardening_test_makecandidate", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_hardening_test_makeprovenance", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testDb.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testdb", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testdb_createtestdb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testDb.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testdb", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testdb_testdb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testDb.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testdb", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testdb_teststatement", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testServer.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testserver", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testdb", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testDb.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testdb_testdb", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testdb_testdb_getauditrows", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testDb.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testdb_testdb", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testdb_testdb_getquarantinerows", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testDb.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testdb_testdb", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testdb_testdb_getsandboxqueuerows", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testDb.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testdb_testdb", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testdb_testdb_prepare", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testDb.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testdb_testdb", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testdb_testdb_transaction", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testDb.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testdb_teststatement", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testdb_teststatement_all", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testDb.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testdb_teststatement", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testdb_teststatement_get", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testDb.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testdb_teststatement", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testdb_teststatement_run", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testServer.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testserver", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testdb_createtestdb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testServer.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testserver_starttestserver", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testdb_createtestdb" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testIpcHarness.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testipcharness", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testIpcHarness.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testipcharness", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc_handleingestionrpc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testIpcHarness.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testipcharness", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testipcharness_ipcharness", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testIpcHarness.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testipcharness_ipcharness", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testipcharness_ipcharness_constructor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testIpcHarness.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testipcharness_ipcharness", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testipcharness_ipcharness_invoke", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testIpcHarness.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testipcharness_ipcharness_invoke", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc_handleingestionrpc" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testServer.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testserver", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testServer.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testserver", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc_registeringestionroutes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testServer.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testserver", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testserver_starttestserver", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testServer.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testserver", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testserver_testservercontext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testServer.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testserver_starttestserver", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc_registeringestionroutes" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testWsClient.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testwsclient", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testWsClient.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testwsclient", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc_handleingestionrpc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testWsClient.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testwsclient", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testwsclient_sendhandshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testWsClient.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testwsclient", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testwsclient_sendingestionrpc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testWsClient.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testwsclient", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testwsclient_wsrpcresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testWsClient.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_helpers_testwsclient_sendingestionrpc", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc_handleingestionrpc" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/ingestor.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_ingestor_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_ingestor_test_makerawinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/ingestor.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_ingestor_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_ingestor_test_validbeapjson", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/ingestor.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_ingestor_test", + "target": "apps_electron_vite_project_electron_main_ingestion_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/ingestor.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_ingestor_test", + "target": "apps_electron_vite_project_electron_main_ingestion_types_candidatecapsuleenvelope", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/ingestor.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_ingestor_test", + "target": "apps_electron_vite_project_electron_main_ingestion_types_rawinput", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/ingestor.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_ingestor_test_makerawinput", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_ingestor_test_validbeapjson", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/integration.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_integration_test", + "target": "apps_electron_vite_project_electron_main_ingestion_ingestionpipeline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/integration.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_integration_test", + "target": "apps_electron_vite_project_electron_main_ingestion_ingestionpipeline_processincominginput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/integration.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_integration_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_integration_test_emptytransport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/integration.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_integration_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_integration_test_validbeappayload", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/integration.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_integration_test", + "target": "apps_electron_vite_project_electron_main_ingestion_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/integration.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_integration_test", + "target": "apps_electron_vite_project_electron_main_ingestion_types_rawinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/integration.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_integration_test", + "target": "apps_electron_vite_project_electron_main_ingestion_types_transportmetadata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/validator.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_validator_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_validator_test_makecandidate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/validator.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_validator_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_validator_test_makeprovenance", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/validator.test.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_validator_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_validator_test_validaccept", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/validator.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_validator_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_validator_test_validinitiate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/validator.test.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_validator_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_validator_test_validinternaldraft", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/validator.test.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_validator_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_validator_test_validrefresh", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/validator.test.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_validator_test", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_validator_test_validrevoke", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/validator.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_validator_test", + "target": "apps_electron_vite_project_electron_main_ingestion_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/validator.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_validator_test", + "target": "apps_electron_vite_project_electron_main_ingestion_types_candidatecapsuleenvelope", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/validator.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_validator_test", + "target": "apps_electron_vite_project_electron_main_ingestion_types_provenancemetadata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/validator.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_validator_test_makecandidate", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_validator_test_makeprovenance", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/validator.test.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_validator_test_validaccept", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_validator_test_validinitiate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/__tests__/validator.test.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_tests_validator_test_validrefresh", + "target": "apps_electron_vite_project_electron_main_ingestion_tests_validator_test_validinitiate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/index.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_index", + "target": "apps_electron_vite_project_electron_main_ingestion_ingestionpipeline", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/index.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_index", + "target": "apps_electron_vite_project_electron_main_ingestion_ingestionpipeline_processincominginput", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/index.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_index", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/index.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_index", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc_handleingestionrpc", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/index.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_index", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc_registeringestionroutes", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/index.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_index", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/index.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_index", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_insertingestionauditrecord", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/index.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_index", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_insertquarantinerecord", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/index.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_index", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_insertsandboxqueueitem", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/index.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_index", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_listquarantinerecords", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/index.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_index", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_listsandboxqueueitems", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/index.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_index", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_migrateingestiontables", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/index.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_index", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_updatesandboxqueuestatus", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/index.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_index", + "target": "apps_electron_vite_project_electron_main_ingestion_sandboxstub", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/index.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_index", + "target": "apps_electron_vite_project_electron_main_ingestion_sandboxstub_processsandboxqueue", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/index.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_index", + "target": "apps_electron_vite_project_electron_main_ingestion_types", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/index.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_index", + "target": "apps_electron_vite_project_electron_main_ingestion_types_beapdetectionresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/index.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_index", + "target": "apps_electron_vite_project_electron_main_ingestion_types_candidatecapsuleenvelope", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/index.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_index", + "target": "apps_electron_vite_project_electron_main_ingestion_types_capsuletype", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/index.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_index", + "target": "apps_electron_vite_project_electron_main_ingestion_types_detectionmethod", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/index.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_index", + "target": "apps_electron_vite_project_electron_main_ingestion_types_distributiondecision", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/index.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_index", + "target": "apps_electron_vite_project_electron_main_ingestion_types_distributiontarget", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/index.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_index", + "target": "apps_electron_vite_project_electron_main_ingestion_types_ingestion_constants", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/index.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_index", + "target": "apps_electron_vite_project_electron_main_ingestion_types_ingestionauditrecord", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/index.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_index", + "target": "apps_electron_vite_project_electron_main_ingestion_types_ingestionresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/index.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_index", + "target": "apps_electron_vite_project_electron_main_ingestion_types_inputclassification", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/index.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_index", + "target": "apps_electron_vite_project_electron_main_ingestion_types_originclassification", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/index.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_index", + "target": "apps_electron_vite_project_electron_main_ingestion_types_provenancemetadata", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/index.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_index", + "target": "apps_electron_vite_project_electron_main_ingestion_types_rawattachment", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/index.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_index", + "target": "apps_electron_vite_project_electron_main_ingestion_types_rawinput", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/index.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_index", + "target": "apps_electron_vite_project_electron_main_ingestion_types_sandboxqueuestatus", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/index.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_index", + "target": "apps_electron_vite_project_electron_main_ingestion_types_sourcetype", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/index.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_index", + "target": "apps_electron_vite_project_electron_main_ingestion_types_transportmetadata", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/index.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_index", + "target": "apps_electron_vite_project_electron_main_ingestion_types_validatedcapsule", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/index.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_index", + "target": "apps_electron_vite_project_electron_main_ingestion_types_validatedcapsulepayload", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/index.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_index", + "target": "apps_electron_vite_project_electron_main_ingestion_types_validationreasoncode", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/index.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_index", + "target": "apps_electron_vite_project_electron_main_ingestion_types_validationresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ingestionErrors.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ingestionerrors", + "target": "apps_electron_vite_project_electron_main_ingestion_ingestionerrors_formatvalidationerror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ingestionErrors.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ingestionerrors", + "target": "apps_electron_vite_project_electron_main_ingestion_ingestionerrors_ingestionerror", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ingestionErrors.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ingestionerrors", + "target": "apps_electron_vite_project_electron_main_ingestion_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ingestionErrors.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ingestionerrors", + "target": "apps_electron_vite_project_electron_main_ingestion_types_validationreasoncode", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ingestionErrors.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ingestionerrors_ingestionerror", + "target": "apps_electron_vite_project_electron_main_ingestion_ingestionerrors_ingestionerror_constructor", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ingestionErrors.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ingestionerrors_ingestionerror_constructor", + "target": "apps_electron_vite_project_electron_main_ingestion_types_validationreasoncode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ingestionPipeline.ts", + "source_location": "L169", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ingestionpipeline", + "target": "apps_electron_vite_project_electron_main_ingestion_ingestionpipeline_buildauditrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ingestionPipeline.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ingestionpipeline", + "target": "apps_electron_vite_project_electron_main_ingestion_ingestionpipeline_processincominginput", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ingestionPipeline.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ingestionpipeline", + "target": "apps_electron_vite_project_electron_main_ingestion_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ingestionPipeline.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ingestionpipeline", + "target": "apps_electron_vite_project_electron_main_ingestion_types_distributiondecision", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ingestionPipeline.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ingestionpipeline", + "target": "apps_electron_vite_project_electron_main_ingestion_types_ingestion_constants", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ingestionPipeline.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ingestionpipeline", + "target": "apps_electron_vite_project_electron_main_ingestion_types_ingestionauditrecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ingestionPipeline.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ingestionpipeline", + "target": "apps_electron_vite_project_electron_main_ingestion_types_ingestionresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ingestionPipeline.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ingestionpipeline", + "target": "apps_electron_vite_project_electron_main_ingestion_types_rawinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ingestionPipeline.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ingestionpipeline", + "target": "apps_electron_vite_project_electron_main_ingestion_types_sourcetype", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ingestionPipeline.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ingestionpipeline", + "target": "apps_electron_vite_project_electron_main_ingestion_types_transportmetadata", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc", + "target": "apps_electron_vite_project_electron_main_ingestion_ingestionpipeline", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_ingestion_ingestionpipeline", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull", + "target": "apps_electron_vite_project_electron_main_ingestion_ingestionpipeline", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relayPull.messageRelay.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_relaypull_messagerelay_test", + "target": "apps_electron_vite_project_electron_main_ingestion_ingestionpipeline", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ingestionPipeline.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ingestionpipeline_processincominginput", + "target": "apps_electron_vite_project_electron_main_ingestion_ingestionpipeline_buildauditrecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc", + "target": "apps_electron_vite_project_electron_main_ingestion_ingestionpipeline_processincominginput", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc_handleingestionrpc", + "target": "apps_electron_vite_project_electron_main_ingestion_ingestionpipeline_processincominginput" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L259", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc_registeringestionroutes", + "target": "apps_electron_vite_project_electron_main_ingestion_ingestionpipeline_processincominginput" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_ingestion_ingestionpipeline_processincominginput", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L335", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws_processcapsuleinternal", + "target": "apps_electron_vite_project_electron_main_ingestion_ingestionpipeline_processincominginput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull", + "target": "apps_electron_vite_project_electron_main_ingestion_ingestionpipeline_processincominginput", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L178", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull_pullfromrelay", + "target": "apps_electron_vite_project_electron_main_ingestion_ingestionpipeline_processincominginput" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc_ensurehandshakemigration", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc_handleingestionrpc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc_migrateddbs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L253", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc_registeringestionroutes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_insertingestionauditrecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_insertquarantinerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_insertsandboxqueueitem", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_listquarantinerecords", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_listsandboxqueueitems", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc", + "target": "apps_electron_vite_project_electron_main_ingestion_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc", + "target": "apps_electron_vite_project_electron_main_ingestion_types_rawinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc", + "target": "apps_electron_vite_project_electron_main_ingestion_types_sourcetype", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc", + "target": "apps_electron_vite_project_electron_main_ingestion_types_transportmetadata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc_handleingestionrpc", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc_ensurehandshakemigration", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L286", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc_registeringestionroutes", + "target": "apps_electron_vite_project_electron_main_ingestion_ipc_ensurehandshakemigration", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc_handleingestionrpc", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_insertingestionauditrecord" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc_handleingestionrpc", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_insertquarantinerecord" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L196", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc_handleingestionrpc", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_insertsandboxqueueitem" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L236", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc_handleingestionrpc", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_listquarantinerecords" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L244", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc_handleingestionrpc", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_listsandboxqueueitems" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L261", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc_registeringestionroutes", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_insertingestionauditrecord" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L265", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc_registeringestionroutes", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_insertquarantinerecord" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L364", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc_registeringestionroutes", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_listquarantinerecords" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/ingestion/ipc.ts", + "source_location": "L374", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_ipc_registeringestionroutes", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_listsandboxqueueitems" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/persistenceDb.ts", + "source_location": "L158", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_persistencedb", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_getquarantinecount", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/persistenceDb.ts", + "source_location": "L224", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_persistencedb", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_getsandboxqueuecount", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/persistenceDb.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_persistencedb", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_ingestion_migrations", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/persistenceDb.ts", + "source_location": "L239", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_persistencedb", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_insertingestionauditrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/persistenceDb.ts", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_persistencedb", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_insertquarantinerecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/persistenceDb.ts", + "source_location": "L169", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_persistencedb", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_insertsandboxqueueitem", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/persistenceDb.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_persistencedb", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_listquarantinerecords", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/persistenceDb.ts", + "source_location": "L195", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_persistencedb", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_listsandboxqueueitems", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/persistenceDb.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_persistencedb", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_migrateingestiontables", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/persistenceDb.ts", + "source_location": "L214", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_persistencedb", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_updatesandboxqueuestatus", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/persistenceDb.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_persistencedb", + "target": "apps_electron_vite_project_electron_main_ingestion_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/persistenceDb.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_persistencedb", + "target": "apps_electron_vite_project_electron_main_ingestion_types_ingestionauditrecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/persistenceDb.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_persistencedb", + "target": "apps_electron_vite_project_electron_main_ingestion_types_sandboxqueuestatus", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/sandboxStub.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_sandboxstub", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/coordination-client.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_coordination_client_test", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relay-integration.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_relay_integration_test", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relayPull.messageRelay.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_relaypull_messagerelay_test", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxClient.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxclient", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L492", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db_openvaultdb", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/coordination-client.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_coordination_client_test", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_migrateingestiontables", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/coordination-client.test.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_coordination_client_test_createtestdb", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_migrateingestiontables", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relay-integration.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_relay_integration_test", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_migrateingestiontables", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relay-integration.test.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_relay_integration_test_createtestdb", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_migrateingestiontables", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relayPull.messageRelay.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_relaypull_messagerelay_test", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_migrateingestiontables", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relayPull.messageRelay.test.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_relaypull_messagerelay_test_createtestdb", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_migrateingestiontables", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_insertquarantinerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L260", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws_processcapsuleinternal", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_insertquarantinerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_insertquarantinerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L192", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull_pullfromrelay", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_insertquarantinerecord" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxClient.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxclient", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_insertsandboxqueueitem", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxClient.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxclient_enqueuetask", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_insertsandboxqueueitem" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/sandboxStub.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_sandboxstub", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_listsandboxqueueitems", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/ingestion/sandboxStub.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_sandboxstub_processsandboxqueue", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_listsandboxqueueitems" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxClient.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxclient", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_listsandboxqueueitems", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxClient.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxclient_consumeresults", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_listsandboxqueueitems" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/sandboxStub.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_sandboxstub", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_updatesandboxqueuestatus", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/ingestion/sandboxStub.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_sandboxstub_processsandboxqueue", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_updatesandboxqueuestatus" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxClient.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxclient", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_updatesandboxqueuestatus", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxClient.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxclient_consumeresults", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_updatesandboxqueuestatus" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_insertingestionauditrecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L343", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws_processcapsuleinternal", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_insertingestionauditrecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_insertingestionauditrecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L185", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull_pullfromrelay", + "target": "apps_electron_vite_project_electron_main_ingestion_persistencedb_insertingestionauditrecord" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/sandboxStub.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_sandboxstub", + "target": "apps_electron_vite_project_electron_main_ingestion_sandboxstub_processsandboxqueue", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/sandboxStub.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_sandboxstub", + "target": "apps_electron_vite_project_electron_main_ingestion_sandboxstub_sandboxstubresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/types.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_types", + "target": "apps_electron_vite_project_electron_main_ingestion_types_beapdetectionresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/types.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_types", + "target": "apps_electron_vite_project_electron_main_ingestion_types_candidatecapsuleenvelope", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/types.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_types", + "target": "apps_electron_vite_project_electron_main_ingestion_types_capsuletype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/types.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_types", + "target": "apps_electron_vite_project_electron_main_ingestion_types_detectionmethod", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/types.ts", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_types", + "target": "apps_electron_vite_project_electron_main_ingestion_types_distributiondecision", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/types.ts", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_types", + "target": "apps_electron_vite_project_electron_main_ingestion_types_distributiontarget", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/types.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_types", + "target": "apps_electron_vite_project_electron_main_ingestion_types_ingestion_constants", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/types.ts", + "source_location": "L152", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_types", + "target": "apps_electron_vite_project_electron_main_ingestion_types_ingestionauditrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/types.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_types", + "target": "apps_electron_vite_project_electron_main_ingestion_types_ingestionresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/types.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_types", + "target": "apps_electron_vite_project_electron_main_ingestion_types_inputclassification", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/types.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_types", + "target": "apps_electron_vite_project_electron_main_ingestion_types_originclassification", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/types.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_types", + "target": "apps_electron_vite_project_electron_main_ingestion_types_provenancemetadata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/types.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_types", + "target": "apps_electron_vite_project_electron_main_ingestion_types_rawattachment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/types.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_types", + "target": "apps_electron_vite_project_electron_main_ingestion_types_rawinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/types.ts", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_types", + "target": "apps_electron_vite_project_electron_main_ingestion_types_sandboxqueuestatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/types.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_types", + "target": "apps_electron_vite_project_electron_main_ingestion_types_sourcetype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/types.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_types", + "target": "apps_electron_vite_project_electron_main_ingestion_types_transportmetadata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/types.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_types", + "target": "apps_electron_vite_project_electron_main_ingestion_types_validatedcapsule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/types.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_types", + "target": "apps_electron_vite_project_electron_main_ingestion_types_validatedcapsulepayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/types.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_types", + "target": "apps_electron_vite_project_electron_main_ingestion_types_validationreasoncode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ingestion/types.ts", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ingestion_types", + "target": "apps_electron_vite_project_electron_main_ingestion_types_validationresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relayPull.messageRelay.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_relaypull_messagerelay_test", + "target": "apps_electron_vite_project_electron_main_ingestion_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relayPull.messageRelay.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_relaypull_messagerelay_test", + "target": "apps_electron_vite_project_electron_main_ingestion_types_ingestionauditrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/integrity/verifier.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_integrity_verifier", + "target": "apps_electron_vite_project_electron_main_integrity_verifier_checkconfighashes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/integrity/verifier.ts", + "source_location": "L178", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_integrity_verifier", + "target": "apps_electron_vite_project_electron_main_integrity_verifier_checkgitcommit", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/integrity/verifier.ts", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_integrity_verifier", + "target": "apps_electron_vite_project_electron_main_integrity_verifier_checkminisignsignature", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/integrity/verifier.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_integrity_verifier", + "target": "apps_electron_vite_project_electron_main_integrity_verifier_checkselfhash", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/integrity/verifier.ts", + "source_location": "L265", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_integrity_verifier", + "target": "apps_electron_vite_project_electron_main_integrity_verifier_clearintegritycache", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/integrity/verifier.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_integrity_verifier", + "target": "apps_electron_vite_project_electron_main_integrity_verifier_getmanifestpath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/integrity/verifier.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_integrity_verifier", + "target": "apps_electron_vite_project_electron_main_integrity_verifier_getpublickeypath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/integrity/verifier.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_integrity_verifier", + "target": "apps_electron_vite_project_electron_main_integrity_verifier_getresourcespath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/integrity/verifier.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_integrity_verifier", + "target": "apps_electron_vite_project_electron_main_integrity_verifier_integritycheck", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/integrity/verifier.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_integrity_verifier", + "target": "apps_electron_vite_project_electron_main_integrity_verifier_integritystatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/integrity/verifier.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_integrity_verifier", + "target": "apps_electron_vite_project_electron_main_integrity_verifier_mainbundledir", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/integrity/verifier.ts", + "source_location": "L203", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_integrity_verifier", + "target": "apps_electron_vite_project_electron_main_integrity_verifier_verifybuildintegrity", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/integrity/verifier.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_integrity_verifier_getmanifestpath", + "target": "apps_electron_vite_project_electron_main_integrity_verifier_getresourcespath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/integrity/verifier.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_integrity_verifier_getpublickeypath", + "target": "apps_electron_vite_project_electron_main_integrity_verifier_getresourcespath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/integrity/verifier.ts", + "source_location": "L207", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_integrity_verifier_verifybuildintegrity", + "target": "apps_electron_vite_project_electron_main_integrity_verifier_getmanifestpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/integrity/verifier.ts", + "source_location": "L151", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_integrity_verifier_checkminisignsignature", + "target": "apps_electron_vite_project_electron_main_integrity_verifier_getpublickeypath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/integrity/verifier.ts", + "source_location": "L238", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_integrity_verifier_verifybuildintegrity", + "target": "apps_electron_vite_project_electron_main_integrity_verifier_checkselfhash", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/integrity/verifier.ts", + "source_location": "L239", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_integrity_verifier_verifybuildintegrity", + "target": "apps_electron_vite_project_electron_main_integrity_verifier_checkconfighashes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/integrity/verifier.ts", + "source_location": "L240", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_integrity_verifier_verifybuildintegrity", + "target": "apps_electron_vite_project_electron_main_integrity_verifier_checkminisignsignature", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/integrity/verifier.ts", + "source_location": "L241", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_integrity_verifier_verifybuildintegrity", + "target": "apps_electron_vite_project_electron_main_integrity_verifier_checkgitcommit", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/decideInternalInferenceTransport.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_decideinternalinferencetransport_test", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/decideInternalInferenceTransport.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_decideinternalinferencetransport_test", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/decideInternalInferenceTransport.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_decideinternalinferencetransport_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/decideInternalInferenceTransport.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_decideinternalinferencetransport_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_resetp2pinferenceflagsfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/decideInternalInferenceTransport.test.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_decideinternalinferencetransport_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/decideInternalInferenceTransport.test.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_decideinternalinferencetransport_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_p2psessionphase", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/decideInternalInferenceTransport.test.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_decideinternalinferencetransport_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_decideinternalinferencetransport_test_base", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/decideInternalInferenceTransport.test.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_decideinternalinferencetransport_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_decideinternalinferencetransport_test_hr", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/decideInternalInferenceTransport.test.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_decideinternalinferencetransport_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_decideinternalinferencetransport_test_hrinternal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/decideInternalInferenceTransport.test.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_decideinternalinferencetransport_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_decideinternalinferencetransport_test_rolesok", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/decideInternalInferenceTransport.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_decideinternalinferencetransport_test", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/decideInternalInferenceTransport.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_decideinternalinferencetransport_test", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_decideinternalinferencetransport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/decideInternalInferenceTransport.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_decideinternalinferencetransport_test", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_handshakederivedroles", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/decideInternalInferenceTransport.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_decideinternalinferencetransport_test", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_hostaitransportdeciderinput", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/directP2pReachability.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_directp2preachability_test", + "target": "apps_electron_vite_project_electron_main_internalinference_directp2preachability", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/directP2pReachability.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_directp2preachability_test", + "target": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_checkdirectp2preachabilityfromhandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/directP2pReachability.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_directp2preachability_test", + "target": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_classifydirectp2preachabilityerror", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/directP2pReachability.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_directp2preachability_test", + "target": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_direct_p2p_reachability_path", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/directP2pReachability.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_directp2preachability_test", + "target": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_reachabilityurlfromp2pingest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/directP2pReachability.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_directp2preachability_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_directp2preachability_test_gethandshakedbforinternalinferencemock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/directP2pReachability.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_directp2preachability_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_directp2preachability_test_gethandshakerecordmock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/directP2pReachability.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_directp2preachability_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_directp2preachability_test_issandboxmodemock_ishostmodemock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/directP2pReachability.test.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_directp2preachability_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_directp2preachability_test_party", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/directP2pReachability.test.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_directp2preachability_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_directp2preachability_test_sandboxtohostrecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/directP2pReachability.test.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_directp2preachability_test_sandboxtohostrecord", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_directp2preachability_test_party", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiBeapAdOllamaModelCount.regression.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaibeapadollamamodelcount_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaibeapadollamamodelcount_regression_test_gethostinternalinferencepolicymock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiBeapAdOllamaModelCount.regression.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaibeapadollamamodelcount_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaibeapadollamamodelcount_regression_test_getlocalllmproviderstatusmock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiBeapAdOllamaModelCount.regression.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaibeapadollamamodelcount_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaibeapadollamamodelcount_regression_test_resolvemodelforinternalinferencemock", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiCrossDeviceStateMachine.regression.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaicrossdevicestatemachine_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiCrossDeviceStateMachine.regression.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaicrossdevicestatemachine_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiCrossDeviceStateMachine.regression.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaicrossdevicestatemachine_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaitransportmatrix", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiCrossDeviceStateMachine.regression.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaicrossdevicestatemachine_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaitransportmatrix_ishostailisttransportproven", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiCrossDeviceStateMachine.regression.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaicrossdevicestatemachine_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiCrossDeviceStateMachine.regression.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaicrossdevicestatemachine_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_finalizehostinferencerowforregressiontest", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiCrossDeviceStateMachine.regression.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaicrossdevicestatemachine_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostinferencehosttargetdraft", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiCrossDeviceStateMachine.regression.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaicrossdevicestatemachine_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_maphostaiselectorphasetop2puiphase", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiCrossDeviceStateMachine.regression.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaicrossdevicestatemachine_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiCrossDeviceStateMachine.regression.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaicrossdevicestatemachine_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_resethostadvertisedmvpdirectfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiCrossDeviceStateMachine.regression.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaicrossdevicestatemachine_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_sethostadvertisedmvpdirectfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiCrossDeviceStateMachine.regression.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaicrossdevicestatemachine_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiCrossDeviceStateMachine.regression.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaicrossdevicestatemachine_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiCrossDeviceStateMachine.regression.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaicrossdevicestatemachine_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_resetp2pinferenceflagsfortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiCrossDeviceStateMachine.regression.test.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaicrossdevicestatemachine_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaicrossdevicestatemachine_regression_test_buildhostinternalid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiCrossDeviceStateMachine.regression.test.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaicrossdevicestatemachine_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaicrossdevicestatemachine_regression_test_handshakebase", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiCrossDeviceStateMachine.regression.test.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaicrossdevicestatemachine_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaicrossdevicestatemachine_regression_test_party", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiCrossDeviceStateMachine.regression.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaicrossdevicestatemachine_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiCrossDeviceStateMachine.regression.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaicrossdevicestatemachine_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildhostaitransportdeciderinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiCrossDeviceStateMachine.regression.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaicrossdevicestatemachine_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_decideinternalinferencetransport", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiCrossDeviceStateMachine.regression.test.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaicrossdevicestatemachine_regression_test_handshakebase", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaicrossdevicestatemachine_regression_test_party", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiDirectBeapAdPublish.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaidirectbeapadpublish_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaidirectbeapadpublish_test_gethosturl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiDirectBeapAdPublish.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaidirectbeapadpublish_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaidirectbeapadpublish_test_hostaibeapadlocalollamamodelrostermock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiDirectBeapAdPublish.test.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaidirectbeapadpublish_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaidirectbeapadpublish_test_hostrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiDirectBeapAdPublish.test.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaidirectbeapadpublish_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaidirectbeapadpublish_test_postbeapad", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiDirectBeapAdWire.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaidirectbeapadwire_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadwire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiDirectBeapAdWire.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaidirectbeapadwire_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadwire_host_ai_direct_beap_ad_sealed_relay_endpoint_placeholder", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiDirectBeapAdWire.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaidirectbeapadwire_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadwire_hostaidirectbeapadendpointurlisinertplaceholder", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiDirectBeapAdWire.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaidirectbeapadwire_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadwire_wireendpointurlforhostaidirectbeapad", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiE2eSandboxToHostSuccess.integration.test.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiE2eSandboxToHostSuccess.integration.test.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiE2eSandboxToHostSuccess.integration.test.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairelaycapability", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiE2eSandboxToHostSuccess.integration.test.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairelaycapability_resethostairelaycapabilitycachefortests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiE2eSandboxToHostSuccess.integration.test.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairelaycapability_sethostairelaycapabilityfetchfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiE2eSandboxToHostSuccess.integration.test.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiE2eSandboxToHostSuccess.integration.test.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_clearhostailisttransientstatefororchestratorbuildchange", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiE2eSandboxToHostSuccess.integration.test.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiE2eSandboxToHostSuccess.integration.test.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_resetp2pensurethrottlecachefortests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiE2eSandboxToHostSuccess.integration.test.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_resetwebrtclisthostcapscachefortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiE2eSandboxToHostSuccess.integration.test.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiE2eSandboxToHostSuccess.integration.test.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_resethostadvertisedmvpdirectfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiE2eSandboxToHostSuccess.integration.test.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_sethostadvertisedmvpdirectfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiE2eSandboxToHostSuccess.integration.test.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiE2eSandboxToHostSuccess.integration.test.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_resetp2pinferenceflagsfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiE2eSandboxToHostSuccess.integration.test.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiE2eSandboxToHostSuccess.integration.test.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_resetprobehostinferencepolicyinflightfortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiE2eSandboxToHostSuccess.integration.test.ts", + "source_location": "L154", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test_ensuresessione2emock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiE2eSandboxToHostSuccess.integration.test.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test_getcurrentsessionmock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiE2eSandboxToHostSuccess.integration.test.ts", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test_gethandshakedbmock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiE2eSandboxToHostSuccess.integration.test.ts", + "source_location": "L169", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test_getsessionstatee2emock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiE2eSandboxToHostSuccess.integration.test.ts", + "source_location": "L168", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test_isdcupe2emock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiE2eSandboxToHostSuccess.integration.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test_ishostmodemock_issandboxmodemock_getorchestratormodemock_getinstanceidmock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiE2eSandboxToHostSuccess.integration.test.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test_ledgerrows", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiE2eSandboxToHostSuccess.integration.test.ts", + "source_location": "L209", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test_makecapabilitieswire", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiE2eSandboxToHostSuccess.integration.test.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test_makehandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiE2eSandboxToHostSuccess.integration.test.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test_party", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiE2eSandboxToHostSuccess.integration.test.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test_makehandshake", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaie2esandboxtohostsuccess_integration_test_party", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiEffectiveRole.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaieffectiverole_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiEffectiveRole.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaieffectiverole_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole_geteffectivehostairoleforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiEffectiveRole.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaieffectiverole_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole_gethostailedgerrolesummaryfromdb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiEffectiveRole.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaieffectiverole_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaieffectiverole_test_base", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiInternalPairingLedger.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiinternalpairingledger_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiInternalPairingLedger.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiinternalpairingledger_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_hosthasactiveinternalledgerhostpeersandboxfromdb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiInternalPairingLedger.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiinternalpairingledger_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_listactiveinternalhandshakesforhostai", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiInternalPairingLedger.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiinternalpairingledger_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiinternalpairingledger_test_getinstanceidmock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiInternalPairingLedger.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiinternalpairingledger_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiinternalpairingledger_test_listhandshakerecordsmock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiInternalPairingLedger.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiinternalpairingledger_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiinternalpairingledger_test_row", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiInternalPeerRoles.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiinternalpeerroles_test", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiInternalPeerRoles.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiinternalpeerroles_test", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiInternalPeerRoles.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiinternalpeerroles_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiInternalPeerRoles.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiinternalpeerroles_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_resethostinferencepolicyfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiInternalPeerRoles.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiinternalpeerroles_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiInternalPeerRoles.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiinternalpeerroles_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_resetp2pinferenceflagsfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiInternalPeerRoles.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiinternalpeerroles_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiInternalPeerRoles.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiinternalpeerroles_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensuresession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiInternalPeerRoles.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiinternalpeerroles_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_p2psessionphase", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiInternalPeerRoles.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiinternalpeerroles_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_resetp2pinferencesessionsfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiInternalPeerRoles.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiinternalpeerroles_test", + "target": "apps_electron_vite_project_electron_main_internalinference_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiInternalPeerRoles.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiinternalpeerroles_test", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiInternalPeerRoles.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiinternalpeerroles_test", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_hostaisandboxtohostrequestdeviceids", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiInternalPeerRoles.test.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiinternalpeerroles_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiinternalpeerroles_test_base", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiInternalPeerRoles.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiinternalpeerroles_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiinternalpeerroles_test_gethsmock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiInternalPeerRoles.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiinternalpeerroles_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiinternalpeerroles_test_getinstanceidmock_getorchmodemock", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiLogContracts.validation.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostailogcontracts_validation_test", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiLogContracts.validation.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostailogcontracts_validation_test", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiLogContracts.validation.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostailogcontracts_validation_test", + "target": "apps_electron_vite_project_electron_main_internalinference_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiLogContracts.validation.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostailogcontracts_validation_test", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiLogContracts.validation.test.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostailogcontracts_validation_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostailogcontracts_validation_test_baseinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiLogContracts.validation.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostailogcontracts_validation_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostailogcontracts_validation_test_baserecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiLogContracts.validation.test.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostailogcontracts_validation_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostailogcontracts_validation_test_parserouteresolvejsonfromcalls", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiLogContracts.validation.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostailogcontracts_validation_test", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiLogContracts.validation.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostailogcontracts_validation_test", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_hostaicanonicalrouteresolveinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiLogContracts.validation.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostailogcontracts_validation_test", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_resolvehostairoute", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiLogContracts.validation.test.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostailogcontracts_validation_test_baseinput", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostailogcontracts_validation_test_baserecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiLogContracts.validation.test.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostailogcontracts_validation_test_baseinput", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiP2pSessionSingleOwner.test.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaip2psessionsingleowner_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiP2pSessionSingleOwner.test.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaip2psessionsingleowner_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_resetp2pinferenceflagsfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiP2pSessionSingleOwner.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaip2psessionsingleowner_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiP2pSessionSingleOwner.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaip2psessionsingleowner_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensurehostaip2psession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiP2pSessionSingleOwner.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaip2psessionsingleowner_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_resetp2pinferencesessionsfortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiP2pSessionSingleOwner.test.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaip2psessionsingleowner_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaip2psessionsingleowner_test_basehs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiP2pSessionSingleOwner.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaip2psessionsingleowner_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaip2psessionsingleowner_test_getinstanceidmock_gethsmock_getorchmodemock", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiP2pSignalSchemaRejectLog.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaip2psignalschemarejectlog_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaip2psignalschemarejectlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiP2pSignalSchemaRejectLog.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaip2psignalschemarejectlog_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaip2psignalschemarejectlog_loghostaisignalschemarejected", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiP2pSignalSchemaRejectLog.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaip2psignalschemarejectlog_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalwireschemaversion", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiP2pSignalSchemaRejectLog.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaip2psignalschemarejectlog_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalwireschemaversion_p2p_signal_wire_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiP2pStaleSessionNoReuse.test.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaip2pstalesessionnoreuse_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiP2pStaleSessionNoReuse.test.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaip2pstalesessionnoreuse_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_resetp2pinferenceflagsfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiP2pStaleSessionNoReuse.test.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaip2pstalesessionnoreuse_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiP2pStaleSessionNoReuse.test.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaip2pstalesessionnoreuse_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensurehostaip2psession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiP2pStaleSessionNoReuse.test.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaip2pstalesessionnoreuse_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_getsessionstate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiP2pStaleSessionNoReuse.test.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaip2pstalesessionnoreuse_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_p2psessionphase", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiP2pStaleSessionNoReuse.test.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaip2pstalesessionnoreuse_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_p2psessionuiphase", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiP2pStaleSessionNoReuse.test.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaip2pstalesessionnoreuse_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_resetp2pinferencesessionsfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiP2pStaleSessionNoReuse.test.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaip2pstalesessionnoreuse_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_seedhostaip2psessionfortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiP2pStaleSessionNoReuse.test.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaip2pstalesessionnoreuse_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaip2pstalesessionnoreuse_test_basehs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiP2pStaleSessionNoReuse.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaip2pstalesessionnoreuse_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaip2pstalesessionnoreuse_test_getinstanceidmock_gethsmock_getorchmodemock_startoffermock", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiPairingStateStore.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaipairingstatestore_test", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiPairingStateStore.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaipairingstatestore_test", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiPairingStateStore.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaipairingstatestore_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiPairingStateStore.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaipairingstatestore_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_hostaipairinglistblock", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiPairingStateStore.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaipairingstatestore_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_recordhostailedgerasymmetric", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiPairingStateStore.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaipairingstatestore_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_recordhostaireciprocalcapabilitiessuccess", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiPairingStateStore.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaipairingstatestore_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_resethostaipairingstatestorefortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiPeerLivePresence.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaipeerlivepresence_test", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiPeerLivePresence.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaipeerlivepresence_test", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiPeerLivePresence.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaipeerlivepresence_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiPeerLivePresence.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaipeerlivepresence_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_asserthostmachinesessionmatcheshandshakehostparty", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiPeerLivePresence.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaipeerlivepresence_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_hashostpeeridentityboundlivepresence", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiPeerLivePresence.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaipeerlivepresence_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_hostpartyidentityfromrecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiPeerLivePresence.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaipeerlivepresence_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_resethostpeerlivepresencefortests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiPeerLivePresence.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaipeerlivepresence_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_tryrecordhostpeerlivepresencefrompolicyresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiPeerLivePresence.test.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaipeerlivepresence_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaipeerlivepresence_test_getcurrentsessionmock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiPeerLivePresence.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaipeerlivepresence_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaipeerlivepresence_test_internalrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiPeerLivePresence.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaipeerlivepresence_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaipeerlivepresence_test_sessionforid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiProviderAdvertisementBlockedReason.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiprovideradvertisementblockedreason_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementblockedreason", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiProviderAdvertisementBlockedReason.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiprovideradvertisementblockedreason_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementblockedreason_deriveprovideradvertisementblockedreason", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiProviderAdvertisementLog.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiprovideradvertisementlog_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiprovideradvertisementlog_test_gethandshakedbforinternalinference", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRemoteInferencePolicyResolve.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostairemoteinferencepolicyresolve_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostairemoteinferencepolicyresolve_test_getpolicy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRemoteInferencePolicyResolve.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostairemoteinferencepolicyresolve_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostairemoteinferencepolicyresolve_test_ledgerpairing", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRemoteInferencePolicyResolve.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostairemoteinferencepolicyresolve_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostairemoteinferencepolicyresolve_test_ledgersummary", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRouteCandidate.predicates.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutecandidate_predicates_test", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRouteCandidate.predicates.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutecandidate_predicates_test", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRouteCandidate.predicates.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutecandidate_predicates_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutecandidate_predicates_test_basecandidate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRouteCandidate.predicates.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutecandidate_predicates_test", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRouteCandidate.predicates.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutecandidate_predicates_test", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_hostaidccapabilityresultblockshttpfallback", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRouteCandidate.predicates.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutecandidate_predicates_test", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_hostairoutecandidate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRouteCandidate.predicates.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutecandidate_predicates_test", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_hostairoutecandidatebelongstolocaldevice", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRouteCandidate.predicates.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutecandidate_predicates_test", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_hostairoutecandidatebelongstopeerhost", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRouteCandidate.predicates.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutecandidate_predicates_test", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_hostairoutecandidateisdirecthttp", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRouteCandidate.predicates.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutecandidate_predicates_test", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_hostairoutecandidateisterminalidentityprovenancefailure", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRouteCandidate.predicates.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutecandidate_predicates_test", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_hostairoutecandidatemaybedialed", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRouteCandidate.predicates.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutecandidate_predicates_test", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_hostairoutefailurecodeisterminalidentityprovenance", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRouteCandidate.predicates.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutecandidate_predicates_test", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_ishostaiprobeterminalnopolicyfallback", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRouteResolve.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostairouteresolve_test", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRouteResolve.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostairouteresolve_test", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRouteResolve.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostairouteresolve_test", + "target": "apps_electron_vite_project_electron_main_internalinference_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRouteResolve.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostairouteresolve_test", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRouteResolve.test.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostairouteresolve_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostairouteresolve_test_baseinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRouteResolve.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostairouteresolve_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostairouteresolve_test_baserecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRouteResolve.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostairouteresolve_test", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRouteResolve.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostairouteresolve_test", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_hostaicanonicalrouteresolveinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRouteResolve.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostairouteresolve_test", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_resolvehostairoute", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRouteResolve.test.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostairouteresolve_test_baseinput", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostairouteresolve_test_baserecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRouteResolve.test.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostairouteresolve_test_baseinput", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRoutingCorrectness.regression.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutingcorrectness_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRoutingCorrectness.regression.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutingcorrectness_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRoutingCorrectness.regression.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutingcorrectness_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRoutingCorrectness.regression.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutingcorrectness_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_resethostadvertisedmvpdirectfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRoutingCorrectness.regression.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutingcorrectness_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_sethostadvertisedmvpdirectfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRoutingCorrectness.regression.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutingcorrectness_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRoutingCorrectness.regression.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutingcorrectness_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_resetp2pinferenceflagsfortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRoutingCorrectness.regression.test.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutingcorrectness_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutingcorrectness_regression_test_getallwindows", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRoutingCorrectness.regression.test.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutingcorrectness_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutingcorrectness_regression_test_gethandshakedbmock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRoutingCorrectness.regression.test.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutingcorrectness_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutingcorrectness_regression_test_gethandshakerecordmock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRoutingCorrectness.regression.test.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutingcorrectness_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutingcorrectness_regression_test_getinstanceidmock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRoutingCorrectness.regression.test.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutingcorrectness_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutingcorrectness_regression_test_getsessionstatemock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRoutingCorrectness.regression.test.ts", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutingcorrectness_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutingcorrectness_regression_test_isdcupmock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRoutingCorrectness.regression.test.ts", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutingcorrectness_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutingcorrectness_regression_test_party", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRoutingCorrectness.regression.test.ts", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutingcorrectness_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutingcorrectness_regression_test_requestcapsmock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRoutingCorrectness.regression.test.ts", + "source_location": "L137", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutingcorrectness_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutingcorrectness_regression_test_sandboxtohostrecord", + "confidence_score": 1.0 + }, + { + "relation": "cites", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRoutingCorrectness.regression.test.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutingcorrectness_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutingcorrectness_regression_test_ts_docref_rfc_1918", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRoutingCorrectness.regression.test.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutingcorrectness_regression_test_sandboxtohostrecord", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostairoutingcorrectness_regression_test_party", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiSealedInferenceRelayResultHandler.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayresulthandler", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiSealedInferenceRelayResultHandler.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayresulthandler_tryhandlehostaisealedinferenceresultrelaycapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiSealedInferenceRelayResultHandler.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiSealedInferenceRelayResultHandler.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire_host_ai_inference_relay_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiSealedInferenceRelayResultHandler.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test", + "target": "apps_electron_vite_project_electron_main_internalinference_pendingrequests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiSealedInferenceRelayResultHandler.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test", + "target": "apps_electron_vite_project_electron_main_internalinference_pendingrequests_registerinternalinferencerequest", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiSealedInferenceRelayResultHandler.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test", + "target": "apps_electron_vite_project_electron_main_internalinference_pendingrequests_resetpendingfortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiSealedInferenceRelayResultHandler.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test_consolelog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiSealedInferenceRelayResultHandler.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test_consolewarn", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiSealedInferenceRelayResultHandler.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test_gethandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiSealedInferenceRelayResultHandler.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiSealedInferenceRelayResultHandler.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test_getorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiSealedInferenceRelayResultHandler.test.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test_hostkeys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiSealedInferenceRelayResultHandler.test.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test_hostrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiSealedInferenceRelayResultHandler.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test_iseffectivesandboxnode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiSealedInferenceRelayResultHandler.test.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test_makex25519pair", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiSealedInferenceRelayResultHandler.test.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test_party", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiSealedInferenceRelayResultHandler.test.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test_sandboxkeys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiSealedInferenceRelayResultHandler.test.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test_sandboxrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiSealedInferenceRelayResultHandler.test.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test_sealhostinferenceresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiSealedInferenceRelayResultHandler.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiSealedInferenceRelayResultHandler.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_sealservicerpcpayload", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiSealedInferenceRelayResultHandler.test.ts", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaisealedinferencerelayresulthandler_test_sealhostinferenceresult", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_sealservicerpcpayload", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiStageLog.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaistagelog_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaistagelog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiStageLog.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaistagelog_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaistagelog_hostaip2pflagsforlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiStageLog.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaistagelog_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaistagelog_loghostaistage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiStageLog.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaistagelog_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiStageLog.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaistagelog_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiStageLog.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaistagelog_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_resetp2pinferenceflagsfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiStaleDatachannelOpenRecovery.test.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaistaledatachannelopenrecovery_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiStaleDatachannelOpenRecovery.test.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaistaledatachannelopenrecovery_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_resetp2pinferenceflagsfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiStaleDatachannelOpenRecovery.test.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaistaledatachannelopenrecovery_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiStaleDatachannelOpenRecovery.test.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaistaledatachannelopenrecovery_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensurehostaip2psession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiStaleDatachannelOpenRecovery.test.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaistaledatachannelopenrecovery_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_getsessionstate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiStaleDatachannelOpenRecovery.test.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaistaledatachannelopenrecovery_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_markdatachannelopenforp2psession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiStaleDatachannelOpenRecovery.test.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaistaledatachannelopenrecovery_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_notifywebrtctransportterminaliceorconnectionfailed", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiStaleDatachannelOpenRecovery.test.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaistaledatachannelopenrecovery_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_p2psessionphase", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiStaleDatachannelOpenRecovery.test.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaistaledatachannelopenrecovery_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_p2psessionuiphase", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiStaleDatachannelOpenRecovery.test.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaistaledatachannelopenrecovery_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_resethostaip2psessionfortransportloss", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiStaleDatachannelOpenRecovery.test.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaistaledatachannelopenrecovery_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_resetp2pinferencesessionsfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiStaleDatachannelOpenRecovery.test.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaistaledatachannelopenrecovery_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_seedhostaip2psessionfortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiStaleDatachannelOpenRecovery.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaistaledatachannelopenrecovery_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaistaledatachannelopenrecovery_test_getinstanceidmock_gethsmock_getorchmodemock_startoffermock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiStaleDatachannelOpenRecovery.test.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaistaledatachannelopenrecovery_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaistaledatachannelopenrecovery_test_hosths", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiStaleDatachannelOpenRecovery.test.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaistaledatachannelopenrecovery_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaistaledatachannelopenrecovery_test_seedopensession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiStaleDatachannelOpenRecovery.test.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaistaledatachannelopenrecovery_test_seedopensession", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_seedhostaip2psessionfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiTargetAvailabilityGating.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaitargetavailabilitygating_test", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiTargetAvailabilityGating.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaitargetavailabilitygating_test", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiTargetAvailabilityGating.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaitargetavailabilitygating_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiTargetAvailabilityGating.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaitargetavailabilitygating_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_resethostadvertisedmvpdirectfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiTargetAvailabilityGating.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaitargetavailabilitygating_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_sethostadvertisedmvpdirectfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiTargetAvailabilityGating.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaitargetavailabilitygating_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiTargetAvailabilityGating.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaitargetavailabilitygating_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiTargetAvailabilityGating.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaitargetavailabilitygating_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_resetp2pinferenceflagsfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiTargetAvailabilityGating.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaitargetavailabilitygating_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiTargetAvailabilityGating.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaitargetavailabilitygating_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_p2psessionphase", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiTargetAvailabilityGating.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaitargetavailabilitygating_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_p2psessionstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiTargetAvailabilityGating.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaitargetavailabilitygating_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaitargetavailabilitygating_test_baseinternal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiTargetAvailabilityGating.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaitargetavailabilitygating_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaitargetavailabilitygating_test_getinstanceidmock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiTargetAvailabilityGating.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaitargetavailabilitygating_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaitargetavailabilitygating_test_party", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiTargetAvailabilityGating.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaitargetavailabilitygating_test", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiTargetAvailabilityGating.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaitargetavailabilitygating_test", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildhostaitransportdeciderinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiTargetAvailabilityGating.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaitargetavailabilitygating_test", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_decideinternalinferencetransport", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiTargetAvailabilityGating.test.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaitargetavailabilitygating_test_baseinternal", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaitargetavailabilitygating_test_party", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiTransportDecideLog.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaitransportdecidelog_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaitransportdecidelog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiTransportDecideLog.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaitransportdecidelog_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaitransportdecidelog_loghostaitransportdecidelistline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiTransportDecideLog.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaitransportdecidelog_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaitransportdecidelog_resethostaitransportdecidededupefortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiTransportMatrix.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaitransportmatrix_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaitransportmatrix", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiTransportMatrix.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaitransportmatrix_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaitransportmatrix_ishostailisttransportproven", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiTransportMatrix.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaitransportmatrix_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiTransportMatrix.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaitransportmatrix_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait_isp2pdatachannelupforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiTransportMatrix.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaitransportmatrix_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaitransportmatrix_test_base", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiTransportMatrix.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaitransportmatrix_test", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiTransportMatrix.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaitransportmatrix_test", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_hostaitransportdeciderresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiUnifiedRelayRegistration.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiunifiedrelayregistration_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedrelayregistration", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiUnifiedRelayRegistration.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiunifiedrelayregistration_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedrelayregistration_getregisteredhostaiunifiedrelaysend", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiUnifiedRelayRegistration.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiunifiedrelayregistration_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedrelayregistration_registerhostaiunifiedrelaysend", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiUnifiedRelayRegistration.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiunifiedrelayregistration_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedrelayregistration_resethostaiunifiedrelayregistrationfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiUnifiedRelayRegistration.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiunifiedrelayregistration_test", + "target": "apps_electron_vite_project_electron_main_internalinference_unifiedservicerpcrelayflags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiUnifiedRelayRegistration.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiunifiedrelayregistration_test", + "target": "apps_electron_vite_project_electron_main_internalinference_unifiedservicerpcrelayflags_isunifiedservicerpcrelayenabled", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiUnifiedRelayRegistration.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiunifiedrelayregistration_test", + "target": "apps_electron_vite_project_electron_main_internalinference_unifiedservicerpcrelayflags_resetunifiedservicerpcrelayflagsfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiUnifiedServiceRpcRelay.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiunifiedservicerpcrelay_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelay", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiUnifiedServiceRpcRelay.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiunifiedservicerpcrelay_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelay_sethostaiunifiedrelaysenddepsfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiUnifiedServiceRpcRelay.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiunifiedservicerpcrelay_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelay_trysendhostaip2psignalviaunifiedrelay", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiUnifiedServiceRpcRelay.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiunifiedservicerpcrelay_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelaywire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiUnifiedServiceRpcRelay.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiunifiedservicerpcrelay_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelaywire_buildhostaip2psignalunifiedrelaywire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiUnifiedServiceRpcRelay.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiunifiedservicerpcrelay_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelaywire_host_ai_p2p_signal_unified_relay_inner_type", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiUnifiedServiceRpcRelay.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiunifiedservicerpcrelay_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalwireschemaversion", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiUnifiedServiceRpcRelay.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiunifiedservicerpcrelay_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalwireschemaversion_p2p_signal_wire_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiUnifiedServiceRpcRelay.test.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiunifiedservicerpcrelay_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiunifiedservicerpcrelay_test_makerecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiUnifiedServiceRpcRelay.test.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiunifiedservicerpcrelay_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiunifiedservicerpcrelay_test_makex25519pair", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiUnifiedServiceRpcRelay.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiunifiedservicerpcrelay_test", + "target": "apps_electron_vite_project_electron_main_internalinference_unifiedservicerpcrelayflags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiUnifiedServiceRpcRelay.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiunifiedservicerpcrelay_test", + "target": "apps_electron_vite_project_electron_main_internalinference_unifiedservicerpcrelayflags_resetunifiedservicerpcrelayflagsfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiUnifiedServiceRpcRelay.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiunifiedservicerpcrelay_test", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiUnifiedServiceRpcRelay.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiunifiedservicerpcrelay_test", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_openservicerpcpayload", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiUnifiedServiceRpcRelay.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostaiunifiedservicerpcrelay_test", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_sealservicerpcpayload", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostInferenceCore.policy.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostinferencecore_policy_test", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostInferenceCore.policy.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostinferencecore_policy_test", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostInferenceCore.policy.test.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostinferencecore_policy_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostInferenceCore.policy.test.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostinferencecore_policy_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_handleinternalinferencecapabilitiesrequest", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostInferenceCore.policy.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostinferencecore_policy_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_hostinferencecorecontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostInferenceCore.policy.test.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostinferencecore_policy_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostinferencecore_policy_test_baserecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostInferenceCore.policy.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostinferencecore_policy_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostinferencecore_policy_test_orchestratoroms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostInferenceCore.policy.test.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostinferencecore_policy_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostinferencecore_policy_test_sameprincipalparties", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostInferenceCore.policy.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostinferencecore_policy_test", + "target": "apps_electron_vite_project_electron_main_internalinference_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostInferenceCore.policy.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostinferencecore_policy_test", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internal_inference_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostInferenceCore.policy.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostinferencecore_policy_test", + "target": "apps_electron_vite_project_electron_main_llm_localllmpaths", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostInferenceCore.policy.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostinferencecore_policy_test", + "target": "apps_electron_vite_project_electron_main_llm_localllmpaths_host_ai_default_local_llamacpp_base", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostInferenceCore.policy.test.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostinferencecore_policy_test_baserecord", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostinferencecore_policy_test_sameprincipalparties", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostInferenceExecute.modelAlias.test.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostinferenceexecute_modelalias_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostInferenceExecute.modelAlias.test.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostinferenceexecute_modelalias_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute_runhostinternalinference", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostInferenceExecute.modelAlias.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostinferenceexecute_modelalias_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostinferenceexecute_modelalias_test_constructor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostInferenceExecute.modelAlias.test.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostinferenceexecute_modelalias_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostinferenceexecute_modelalias_test_ctxwithmodel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostInferenceExecute.modelAlias.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostinferenceexecute_modelalias_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostinferenceexecute_modelalias_test_geteffectivechatmodelname", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostInferenceExecute.modelAlias.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostinferenceexecute_modelalias_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_hostinferenceexecute_modelalias_test_runinference", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostInferenceRequestRateLimit.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostinferencerequestratelimit_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencerequestratelimit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostInferenceRequestRateLimit.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostinferencerequestratelimit_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencerequestratelimit_resethandshakeratelimitfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/hostInferenceRequestRateLimit.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_hostinferencerequestratelimit_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencerequestratelimit_tryconsumeperhandshakeinferenceslot", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/inferenceHandshakeTrust.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_inferencehandshaketrust_test", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/inferenceHandshakeTrust.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_inferencehandshaketrust_test", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/inferenceHandshakeTrust.test.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_inferencehandshaketrust_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/inferenceHandshakeTrust.test.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_inferencehandshaketrust_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_normalizep2pingesturl", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/inferenceHandshakeTrust.test.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_inferencehandshaketrust_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_resethostadvertisedmvpdirectfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/inferenceHandshakeTrust.test.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_inferencehandshaketrust_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_sethostadvertisedmvpdirectfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/inferenceHandshakeTrust.test.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_inferencehandshaketrust_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/inferenceHandshakeTrust.test.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_inferencehandshaketrust_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/inferenceHandshakeTrust.test.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_inferencehandshaketrust_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_resetp2pinferenceflagsfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/inferenceHandshakeTrust.test.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_inferencehandshaketrust_test", + "target": "apps_electron_vite_project_electron_main_internalinference_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/inferenceHandshakeTrust.test.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_inferencehandshaketrust_test", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerrolesresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/inferenceHandshakeTrust.test.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_inferencehandshaketrust_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_inferencehandshaketrust_test_happyhandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/inferenceHandshakeTrust.test.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_inferencehandshaketrust_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_inferencehandshaketrust_test_happyroles", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/inferenceHandshakeTrust.test.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_inferencehandshaketrust_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_inferencehandshaketrust_test_party", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/inferenceHandshakeTrust.test.ts", + "source_location": "L379", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_inferencehandshaketrust_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_inferencehandshaketrust_test_wiringrecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/inferenceHandshakeTrust.test.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_inferencehandshaketrust_test", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/inferenceHandshakeTrust.test.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_inferencehandshaketrust_test", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildhostaitransportdeciderinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/inferenceHandshakeTrust.test.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_inferencehandshaketrust_test", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_decideinternalinferencetransport", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/inferenceHandshakeTrust.test.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_inferencehandshaketrust_test", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_inferencedirecthttptrust", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/inferenceHandshakeTrust.test.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_inferencehandshaketrust_test", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_inferencedirecthttptrust_inferencedirecthttptrust", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/inferenceHandshakeTrust.test.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_inferencehandshaketrust_test_happyhandshakerecord", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_inferencehandshaketrust_test_party", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/inferenceHandshakeTrust.test.ts", + "source_location": "L380", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_inferencehandshaketrust_test_wiringrecord", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_inferencehandshaketrust_test_happyhandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInference.directHost.regression.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInference.directHost.regression.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInference.directHost.regression.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInference.directHost.regression.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferenceconcurrency", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInference.directHost.regression.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferenceconcurrency_resetconcurrencyfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInference.directHost.regression.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInference.directHost.regression.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInference.directHost.regression.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_resethostinferencepolicyfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInference.directHost.regression.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInference.directHost.regression.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_resetp2pinferenceflagsfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInference.directHost.regression.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInference.directHost.regression.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch_isinternalservicerpcshape", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInference.directHost.regression.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch_tryhandleinternalservicep2p", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInference.directHost.regression.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_pendingrequests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInference.directHost.regression.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_pendingrequests_registerinternalinferencerequest", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInference.directHost.regression.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_pendingrequests_resetpendingfortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInference.directHost.regression.test.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test_defaultpolicy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInference.directHost.regression.test.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test_defaultrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInference.directHost.regression.test.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test_dirname", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInference.directHost.regression.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test_filename", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInference.directHost.regression.test.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test_internalinfdir", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInference.directHost.regression.test.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test_ishostmodemock_issandboxmodemock_getinstanceidmock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInference.directHost.regression.test.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test_party", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInference.directHost.regression.test.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test_requestpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInference.directHost.regression.test.ts", + "source_location": "L144", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test_resultpayload", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInference.directHost.regression.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_p2pinferenceflagstestsetup", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInference.directHost.regression.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_p2pinferenceflagstestsetup_stubp2pinferenceenvlegacyhttponlyfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInference.directHost.regression.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInference.directHost.regression.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internal_inference_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInference.directHost.regression.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internalinferenceresultwire", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInference.directHost.regression.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test", + "target": "apps_electron_vite_project_electron_main_llm_internalhostinferencelocal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInference.directHost.regression.test.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test_defaultrecord", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_internalinference_directhost_regression_test_party", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceLogRedact.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferencelogredact_test", + "target": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceLogRedact.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferencelogredact_test", + "target": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact_isinternalinferenceprodpackagedlogging", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceLogRedact.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferencelogredact_test", + "target": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact_redactidforlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceLogRedact.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferencelogredact_test", + "target": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact_setinternalinferencelogpackagedfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceService.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferenceservice_test", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceService.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferenceservice_test", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceService.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferenceservice_test", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceService.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferenceservice_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferenceconcurrency", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceService.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferenceservice_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferenceconcurrency_resetconcurrencyfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceService.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferenceservice_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceService.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferenceservice_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceService.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferenceservice_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_resethostinferencepolicyfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceService.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferenceservice_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencerequestratelimit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceService.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferenceservice_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencerequestratelimit_resethandshakeratelimitfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceService.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferenceservice_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceService.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferenceservice_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_resetp2pinferenceflagsfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceService.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferenceservice_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceService.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferenceservice_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch_isinternalservicerpcshape", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceService.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferenceservice_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch_tryhandleinternalservicep2p", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceService.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferenceservice_test", + "target": "apps_electron_vite_project_electron_main_internalinference_pendingrequests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceService.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferenceservice_test", + "target": "apps_electron_vite_project_electron_main_internalinference_pendingrequests_registerinternalinferencerequest", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceService.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferenceservice_test", + "target": "apps_electron_vite_project_electron_main_internalinference_pendingrequests_resetpendingfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceService.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferenceservice_test", + "target": "apps_electron_vite_project_electron_main_internalinference_pendingrequests_resolveinternalinferencebyrequestid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceService.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferenceservice_test", + "target": "apps_electron_vite_project_electron_main_internalinference_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceService.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferenceservice_test", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertp2pendpointdirect", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceService.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferenceservice_test", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceService.test.ts", + "source_location": "L180", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferenceservice_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferenceservice_test_defaultpolicy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceService.test.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferenceservice_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferenceservice_test_defaultrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceService.test.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferenceservice_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferenceservice_test_ishostmodemock_issandboxmodemock_getinstanceidmock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceService.test.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferenceservice_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferenceservice_test_party", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceService.test.ts", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferenceservice_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferenceservice_test_requestpayload", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceService.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferenceservice_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_p2pinferenceflagstestsetup", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceService.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferenceservice_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_p2pinferenceflagstestsetup_stubp2pinferenceenvlegacyhttponlyfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceService.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferenceservice_test", + "target": "apps_electron_vite_project_electron_main_internalinference_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceService.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferenceservice_test", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internal_inference_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceService.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferenceservice_test", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internalinferenceerrorwire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceService.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferenceservice_test", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internalinferenceresultwire", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceService.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferenceservice_test", + "target": "apps_electron_vite_project_electron_main_llm_internalhostinferencelocal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceService.test.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferenceservice_test_defaultrecord", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferenceservice_test_party", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceTransport.decide.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferencetransport_decide_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceTransport.decide.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferencetransport_decide_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_resetp2pinferenceflagsfortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceTransport.decide.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferencetransport_decide_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferencetransport_decide_test_mockp2pdcupmap", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceTransport.decide.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferencetransport_decide_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_p2pinferenceflagstestsetup", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceTransport.decide.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferencetransport_decide_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_p2pinferenceflagstestsetup_stubp2pinferenceenvlegacyhttponlyfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceTransport.decide.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferencetransport_decide_test", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_transportdecide", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceTransport.decide.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_internalinferencetransport_decide_test", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_transportdecide_decidehostaiintentroute", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listHostCapabilities.hostAiRoute.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listhostcapabilities_hostairoute_test", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listHostCapabilities.hostAiRoute.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listhostcapabilities_hostairoute_test", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listHostCapabilities.hostAiRoute.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listhostcapabilities_hostairoute_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listHostCapabilities.hostAiRoute.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listhostcapabilities_hostairoute_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_resethostadvertisedmvpdirectfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listHostCapabilities.hostAiRoute.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listhostcapabilities_hostairoute_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listHostCapabilities.hostAiRoute.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listhostcapabilities_hostairoute_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_resetp2pinferenceflagsfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listHostCapabilities.hostAiRoute.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listhostcapabilities_hostairoute_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listHostCapabilities.hostAiRoute.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listhostcapabilities_hostairoute_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_p2psessionphase", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listHostCapabilities.hostAiRoute.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listhostcapabilities_hostairoute_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_p2psessionstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listHostCapabilities.hostAiRoute.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listhostcapabilities_hostairoute_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_listhostcapabilities_hostairoute_test_gethandshakedbmock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listHostCapabilities.hostAiRoute.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listhostcapabilities_hostairoute_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_listhostcapabilities_hostairoute_test_getinstanceidmock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listHostCapabilities.hostAiRoute.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listhostcapabilities_hostairoute_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_listhostcapabilities_hostairoute_test_getsessionstatemock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listHostCapabilities.hostAiRoute.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listhostcapabilities_hostairoute_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_listhostcapabilities_hostairoute_test_isdcupmock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listHostCapabilities.hostAiRoute.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listhostcapabilities_hostairoute_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_listhostcapabilities_hostairoute_test_requestcapsmock", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listHostCapabilities.hostAiRoute.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listhostcapabilities_hostairoute_test", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listHostCapabilities.hostAiRoute.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listhostcapabilities_hostairoute_test", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_listhostcapabilities", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listHostCapabilities.hostAiRoute.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listhostcapabilities_hostairoute_test", + "target": "apps_electron_vite_project_electron_main_internalinference_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listHostCapabilities.hostAiRoute.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listhostcapabilities_hostairoute_test", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internal_inference_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listHostCapabilities.hostAiRoute.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listhostcapabilities_hostairoute_test", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internalinferencecapabilitiesresultwire", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listHostCapabilities.hostAiRoute.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listhostcapabilities_hostairoute_test", + "target": "apps_electron_vite_project_src_lib_hostaiuidiagnostics", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listHostCapabilities.hostAiRoute.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listhostcapabilities_hostairoute_test", + "target": "apps_electron_vite_project_src_lib_hostaiuidiagnostics_hostaiprobecode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listHostCapabilities.hostAiRoute.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listhostcapabilities_hostairoute_test", + "target": "apps_electron_vite_project_src_lib_hostaiuidiagnostics_hostaiuserfacingmessagefromtarget", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listHostCapabilities.hostAiRoute.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listhostcapabilities_hostairoute_test", + "target": "apps_electron_vite_project_src_lib_hostaiuidiagnostics_shouldsuppressollamaunreachablesandboxashostfailure", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listInferenceIpc.modelSelectorLifecycle.test.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listinferenceipc_modelselectorlifecycle_test", + "target": "apps_electron_vite_project_electron_main_internalinference_ipc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listInferenceIpc.modelSelectorLifecycle.test.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listinferenceipc_modelselectorlifecycle_test", + "target": "apps_electron_vite_project_electron_main_internalinference_ipc_dispatchlistinferencetargetsipc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listInferenceIpc.modelSelectorLifecycle.test.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listinferenceipc_modelselectorlifecycle_test", + "target": "apps_electron_vite_project_electron_main_internalinference_ipc_resetlistinferencetargetsipccachefororchestrator", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listInferenceIpc.modelSelectorLifecycle.test.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listinferenceipc_modelselectorlifecycle_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_listinferenceipc_modelselectorlifecycle_test_listsandboxhostinternalinferencetargetsmock", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listInferenceTargets.step8.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listinferencetargets_step8_test", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listInferenceTargets.step8.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listinferencetargets_step8_test", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listInferenceTargets.step8.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listinferencetargets_step8_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listInferenceTargets.step8.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listinferencetargets_step8_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_resethostpeerlivepresencefortests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listInferenceTargets.step8.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listinferencetargets_step8_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_tryrecordhostpeerlivepresencefromrelayad", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listInferenceTargets.step8.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listinferencetargets_step8_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairelaycapability", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listInferenceTargets.step8.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listinferencetargets_step8_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairelaycapability_resethostairelaycapabilitycachefortests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listInferenceTargets.step8.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listinferencetargets_step8_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairelaycapability_sethostairelaycapabilityfetchfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listInferenceTargets.step8.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listinferencetargets_step8_test", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listInferenceTargets.step8.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listinferencetargets_step8_test", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listInferenceTargets.step8.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listinferencetargets_step8_test", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_resetp2pensurethrottlecachefortests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listInferenceTargets.step8.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listinferencetargets_step8_test", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_resetwebrtclisthostcapscachefortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listInferenceTargets.step8.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listinferencetargets_step8_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listInferenceTargets.step8.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listinferencetargets_step8_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_resethostadvertisedmvpdirectfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listInferenceTargets.step8.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listinferencetargets_step8_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_sethostadvertisedmvpdirectfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listInferenceTargets.step8.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listinferencetargets_step8_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listInferenceTargets.step8.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listinferencetargets_step8_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_resetp2pinferenceflagsfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listInferenceTargets.step8.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listinferencetargets_step8_test", + "target": "apps_electron_vite_project_electron_main_internalinference_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listInferenceTargets.step8.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listinferencetargets_step8_test", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertp2pendpointdirect", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listInferenceTargets.step8.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listinferencetargets_step8_test", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointkind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listInferenceTargets.step8.test.ts", + "source_location": "L1145", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listinferencetargets_step8_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_listinferencetargets_step8_test_activeinternallocalishost", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listInferenceTargets.step8.test.ts", + "source_location": "L252", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listinferencetargets_step8_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_listinferencetargets_step8_test_activeinternalsandboxtohost", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listInferenceTargets.step8.test.ts", + "source_location": "L197", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listinferencetargets_step8_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_listinferencetargets_step8_test_party", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listInferenceTargets.step8.test.ts", + "source_location": "L227", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listinferencetargets_step8_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_listinferencetargets_step8_test_readydcsessionmock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listInferenceTargets.step8.test.ts", + "source_location": "L208", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listinferencetargets_step8_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_listinferencetargets_step8_test_seedverifiedpeerdirectbeapforinternalrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listInferenceTargets.step8.test.ts", + "source_location": "L242", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listinferencetargets_step8_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_listinferencetargets_step8_test_sessionforparty", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listInferenceTargets.step8.test.ts", + "source_location": "L257", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listinferencetargets_step8_test_activeinternalsandboxtohost", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_listinferencetargets_step8_test_party", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listInferenceTargets.step8.test.ts", + "source_location": "L217", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listinferencetargets_step8_test_seedverifiedpeerdirectbeapforinternalrow", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_tryrecordhostpeerlivepresencefromrelayad", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listInferenceTargets.step8.test.ts", + "source_location": "L212", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listinferencetargets_step8_test_seedverifiedpeerdirectbeapforinternalrow", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_sethostadvertisedmvpdirectfortests", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/listInferenceTargets.step8.test.ts", + "source_location": "L1146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_listinferencetargets_step8_test_activeinternallocalishost", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_listinferencetargets_step8_test_activeinternalsandboxtohost", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pDcCapabilities.roleGate.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2pdccapabilities_rolegate_test", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pDcCapabilities.roleGate.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2pdccapabilities_rolegate_test", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pDcCapabilities.roleGate.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2pdccapabilities_rolegate_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pDcCapabilities.roleGate.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2pdccapabilities_rolegate_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_clearpendingp2pcapabilitiesfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pDcCapabilities.roleGate.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2pdccapabilities_rolegate_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_requesthostinferencecapabilitiesoverdatachannel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pDcCapabilities.roleGate.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2pdccapabilities_rolegate_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_p2pdccapabilities_rolegate_test_gethandshakedbmock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pDcCapabilities.roleGate.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2pdccapabilities_rolegate_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_p2pdccapabilities_rolegate_test_gethandshakerecordmock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pDcCapabilities.roleGate.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2pdccapabilities_rolegate_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_p2pdccapabilities_rolegate_test_getinstanceidmock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pDcCapabilities.roleGate.test.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2pdccapabilities_rolegate_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_p2pdccapabilities_rolegate_test_party", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pDcCapabilities.roleGate.test.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2pdccapabilities_rolegate_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_p2pdccapabilities_rolegate_test_recordsandboxinitiator", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pDcCapabilities.roleGate.test.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2pdccapabilities_rolegate_test_recordsandboxinitiator", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_p2pdccapabilities_rolegate_test_party", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pEndpointRepair.hostAi.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2pendpointrepair_hostai_test", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pEndpointRepair.hostAi.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2pendpointrepair_hostai_test", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pEndpointRepair.hostAi.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2pendpointrepair_hostai_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadwire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pEndpointRepair.hostAi.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2pendpointrepair_hostai_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadwire_host_ai_direct_beap_ad_sealed_relay_endpoint_placeholder", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pEndpointRepair.hostAi.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2pendpointrepair_hostai_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pEndpointRepair.hostAi.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2pendpointrepair_hostai_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_applyhostaidirectbeapadfromrelaypayload", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pEndpointRepair.hostAi.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2pendpointrepair_hostai_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_peekhostadvertisedmvpdirectentry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pEndpointRepair.hostAi.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2pendpointrepair_hostai_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_peekhostadvertisedmvpdirectp2pendpoint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pEndpointRepair.hostAi.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2pendpointrepair_hostai_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_peekhostgpuinferenceavailablefromrelay", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pEndpointRepair.hostAi.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2pendpointrepair_hostai_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_resethostadvertisedmvpdirectfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pEndpointRepair.hostAi.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2pendpointrepair_hostai_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_resetp2pendpointrepairsessiongates", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pEndpointRepair.hostAi.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2pendpointrepair_hostai_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_resolvesandboxtohosthttpdirectingest", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pEndpointRepair.hostAi.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2pendpointrepair_hostai_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_runp2pendpointrepairpass", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pEndpointRepair.hostAi.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2pendpointrepair_hostai_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_sethostadvertisedmvpdirectfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pEndpointRepair.hostAi.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2pendpointrepair_hostai_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_tryrepairp2pendpointfromhostadvertisement", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pEndpointRepair.hostAi.test.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2pendpointrepair_hostai_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_p2pendpointrepair_hostai_test_listrows", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pEndpointRepair.hostAi.test.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2pendpointrepair_hostai_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_p2pendpointrepair_hostai_test_offerafteradmock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pEndpointRepair.hostAi.test.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2pendpointrepair_hostai_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_p2pendpointrepair_hostai_test_relayrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pEndpointRepair.hostAi.test.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2pendpointrepair_hostai_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_p2pendpointrepair_hostai_test_updatehandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pInferenceFlags.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2pinferenceflags_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pInferenceFlags.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2pinferenceflags_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pInferenceFlags.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2pinferenceflags_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflagssourcetagfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pInferenceFlags.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2pinferenceflags_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_ishostaip2puxenabled", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pInferenceFlags.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2pinferenceflags_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_isp2pinferencefeaturetouched", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pInferenceFlags.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2pinferenceflags_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_iswebrtchostaiarchitectureenabled", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pInferenceFlags.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2pinferenceflags_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_resetp2pinferenceflagsfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pInferenceFlags.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2pinferenceflags_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_shouldrejecthttpinternalinferencerequest", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pInferenceFlagsTestSetup.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2pinferenceflagstestsetup", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pInferenceFlagsTestSetup.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2pinferenceflagstestsetup", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_resetp2pinferenceflagsfortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pInferenceFlagsTestSetup.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2pinferenceflagstestsetup", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_p2pinferenceflagstestsetup_stubp2pinferenceenvlegacyhttponlyfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.electronMain.transportAndHostPolicy.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_electronmain_transportandhostpolicy_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_p2pinferenceflagstestsetup", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pInferenceFlagsTestSetup.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2pinferenceflagstestsetup_stubp2pinferenceenvlegacyhttponlyfortests", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_resetp2pinferenceflagsfortests" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.electronMain.transportAndHostPolicy.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_electronmain_transportandhostpolicy_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_p2pinferenceflagstestsetup_stubp2pinferenceenvlegacyhttponlyfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pSessionWait.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2psessionwait_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pSessionWait.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2psessionwait_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait_p2pcapabilitydcwaitoutcomelogreason", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pSessionWait.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2psessionwait_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait_waitforp2pdatachannelopenorterminal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pSessionWait.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2psessionwait_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_p2psessionwait_test_mockgetsessionstate_mocksubscribe", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pSignalRelayCircuit.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2psignalrelaycircuit_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaycircuit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pSignalRelayCircuit.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2psignalrelaycircuit_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaycircuit_getp2prelaysignalingcircuitopenuntilms", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pSignalRelayCircuit.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2psignalrelaycircuit_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaycircuit_isp2prelaysignalingcircuitopen", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pSignalRelayCircuit.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2psignalrelaycircuit_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaycircuit_recordp2prelaysignaling429storm", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pSignalRelayCircuit.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2psignalrelaycircuit_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaycircuit_resetp2prelaysignalingcircuitfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pSignalRelayPost.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2psignalrelaypost_test", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pSignalRelayPost.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2psignalrelaypost_test", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pSignalRelayPost.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2psignalrelaypost_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadwire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pSignalRelayPost.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2psignalrelaypost_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadwire_host_ai_direct_beap_ad_sealed_relay_endpoint_placeholder", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pSignalRelayPost.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2psignalrelaypost_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pSignalRelayPost.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2psignalrelaypost_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_resetp2pinferenceflagsfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pSignalRelayPost.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2psignalrelaypost_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pSignalRelayPost.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2psignalrelaypost_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_buildhostaidirectbeapadrequestbody", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pSignalRelayPost.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2psignalrelaypost_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_buildhostaidirectbeapadsignalbody", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pSignalRelayPost.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2psignalrelaypost_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_p2psignalrelayposttesthooks", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pSignalRelayPost.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2psignalrelaypost_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_posthostaidirectbeapadrequesttocoordination", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pSignalRelayPost.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2psignalrelaypost_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_resetp2psignalrelayoutboundstatefortests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pSignalRelayPost.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2psignalrelaypost_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_sendhostaip2psignaloutbound", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pSignalRelayPost.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2psignalrelaypost_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalwireschemaversion_p2p_signal_wire_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pSignalRelayPost.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2psignalrelaypost_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_p2psignalrelaypost_test_failmock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pSignalRelayPost.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2psignalrelaypost_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_p2psignalrelaypost_test_getsessionstatemock", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pSignalRelayPost.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_p2psignalrelaypost_test", + "target": "apps_electron_vite_project_src_auth_session", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.electronMain.transportAndHostPolicy.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_electronmain_transportandhostpolicy_test", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.electronMain.transportAndHostPolicy.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_electronmain_transportandhostpolicy_test", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.electronMain.transportAndHostPolicy.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_electronmain_transportandhostpolicy_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferenceconcurrency", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.electronMain.transportAndHostPolicy.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_electronmain_transportandhostpolicy_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferenceconcurrency_resetconcurrencyfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.electronMain.transportAndHostPolicy.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_electronmain_transportandhostpolicy_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.electronMain.transportAndHostPolicy.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_electronmain_transportandhostpolicy_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_resethostinferencepolicyfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.electronMain.transportAndHostPolicy.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_electronmain_transportandhostpolicy_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencerequestratelimit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.electronMain.transportAndHostPolicy.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_electronmain_transportandhostpolicy_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencerequestratelimit_resethandshakeratelimitfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.electronMain.transportAndHostPolicy.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_electronmain_transportandhostpolicy_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.electronMain.transportAndHostPolicy.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_electronmain_transportandhostpolicy_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_resetp2pinferenceflagsfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.electronMain.transportAndHostPolicy.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_electronmain_transportandhostpolicy_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.electronMain.transportAndHostPolicy.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_electronmain_transportandhostpolicy_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch_tryhandleinternalservicep2p", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.electronMain.transportAndHostPolicy.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_electronmain_transportandhostpolicy_test", + "target": "apps_electron_vite_project_electron_main_internalinference_pendingrequests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.electronMain.transportAndHostPolicy.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_electronmain_transportandhostpolicy_test", + "target": "apps_electron_vite_project_electron_main_internalinference_pendingrequests_resetpendingfortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.electronMain.transportAndHostPolicy.test.ts", + "source_location": "L151", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_electronmain_transportandhostpolicy_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_electronmain_transportandhostpolicy_test_defaultrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.electronMain.transportAndHostPolicy.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_electronmain_transportandhostpolicy_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_electronmain_transportandhostpolicy_test_ishostmodemock_issandboxmodemock_getinstanceidmock_gethsmock", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.electronMain.transportAndHostPolicy.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_electronmain_transportandhostpolicy_test", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_transportdecide", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.electronMain.transportAndHostPolicy.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_electronmain_transportandhostpolicy_test", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_transportdecide_decidehostaiintentroute", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.electronMain.transportAndHostPolicy.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_electronmain_transportandhostpolicy_test", + "target": "apps_electron_vite_project_electron_main_internalinference_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.electronMain.transportAndHostPolicy.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_electronmain_transportandhostpolicy_test", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internal_inference_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.electronMain.transportAndHostPolicy.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_electronmain_transportandhostpolicy_test", + "target": "apps_electron_vite_project_electron_main_llm_localllmpaths", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.electronMain.transportAndHostPolicy.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_electronmain_transportandhostpolicy_test", + "target": "apps_electron_vite_project_electron_main_llm_localllmpaths_host_ai_default_local_llamacpp_base", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.p2pDcWire.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_p2pdcwire_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.p2pDcWire.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_p2pdcwire_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_sendhostinferencerequestoverp2pdatachannel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.p2pDcWire.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_p2pdcwire_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_p2pdcwire_test_webrtcsenddata", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.p2pDcWire.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_p2pdcwire_test", + "target": "apps_electron_vite_project_electron_main_internalinference_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.p2pDcWire.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_p2pdcwire_test", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internal_inference_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.p2pDcWire.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_p2pdcwire_test", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internalinferencerequestwire", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.p2pSessionManager.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_p2psessionmanager_test", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.p2pSessionManager.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_p2psessionmanager_test", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.p2pSessionManager.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_p2psessionmanager_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.p2pSessionManager.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_p2psessionmanager_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_resethostinferencepolicyfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.p2pSessionManager.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_p2psessionmanager_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.p2pSessionManager.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_p2psessionmanager_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_resetp2pinferenceflagsfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.p2pSessionManager.test.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_p2psessionmanager_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.p2pSessionManager.test.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_p2psessionmanager_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_closesession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.p2pSessionManager.test.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_p2psessionmanager_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensuresession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.p2pSessionManager.test.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_p2psessionmanager_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_getsessionstate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.p2pSessionManager.test.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_p2psessionmanager_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_handlesignal", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.p2pSessionManager.test.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_p2psessionmanager_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_markdatachannelopenforp2psession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.p2pSessionManager.test.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_p2psessionmanager_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_p2psessionlogreason", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.p2pSessionManager.test.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_p2psessionmanager_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_p2psessionphase", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.p2pSessionManager.test.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_p2psessionmanager_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_p2psessionuiphase", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.p2pSessionManager.test.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_p2psessionmanager_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_preflightp2prelaysignal", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.p2pSessionManager.test.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_p2psessionmanager_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_resetp2pinferencesessionsfortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.p2pSessionManager.test.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_p2psessionmanager_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_p2psessionmanager_test_basehostrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.p2pSessionManager.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_p2psessionmanager_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_phase11_p2psessionmanager_test_gethsmock_getdbmock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/phase3SealedBoundary.regression.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_phase3sealedboundary_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_phase3sealedboundary_regression_test_sendsealedmock", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/policy.internalInference.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_policy_internalinference_test", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/policy.internalInference.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_policy_internalinference_test", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/policy.internalInference.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_policy_internalinference_test", + "target": "apps_electron_vite_project_electron_main_internalinference_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/policy.internalInference.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_policy_internalinference_test", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/policy.internalInference.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_policy_internalinference_test", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_internalinferenceendpointgateok", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/policy.internalInference.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_policy_internalinference_test", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_iscoordinationserviceendpointurl", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/policy.internalInference.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_policy_internalinference_test", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_outboundp2pbearertocounterpartyingest", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/policy.internalInference.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_policy_internalinference_test", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointkind", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/policy.internalInference.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_policy_internalinference_test", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointmvpclass", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/policy.internalInference.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_policy_internalinference_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_policy_internalinference_test_baserecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/policy.internalInference.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_policy_internalinference_test", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/policy.internalInference.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_policy_internalinference_test", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_getp2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/policy.internalInferencePolicyGetRole.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_policy_internalinferencepolicygetrole_test", + "target": "apps_electron_vite_project_electron_main_internalinference_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/policy.internalInferencePolicyGetRole.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_policy_internalinferencepolicygetrole_test", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_asserthostsendsresulttosandbox", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/policy.internalInferencePolicyGetRole.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_policy_internalinferencepolicygetrole_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_policy_internalinferencepolicygetrole_test_base", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/policy.internalInferencePolicyGetRole.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_policy_internalinferencepolicygetrole_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_policy_internalinferencepolicygetrole_test_oms", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/postHostAiDirectBeapAd403Recovery.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_posthostaidirectbeapad403recovery_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/postHostAiDirectBeapAd403Recovery.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_posthostaidirectbeapad403recovery_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_hostaibeapadsignalollamacapabilities", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/postHostAiDirectBeapAd403Recovery.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_posthostaidirectbeapad403recovery_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_p2psignalrelayposttesthooks", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/postHostAiDirectBeapAd403Recovery.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_posthostaidirectbeapad403recovery_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_posthostaidirectbeapadtocoordination", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/postHostAiDirectBeapAd403Recovery.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_posthostaidirectbeapad403recovery_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_resetp2psignalrelayoutboundstatefortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/postHostAiDirectBeapAd403Recovery.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_posthostaidirectbeapad403recovery_test", + "target": "apps_electron_vite_project_src_auth_session", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/relayP2pSignalHandler.republishRequest.test.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_relayp2psignalhandler_republishrequest_test", + "target": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/relayP2pSignalHandler.republishRequest.test.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_relayp2psignalhandler_republishrequest_test", + "target": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_tryhandlecoordinationp2psignal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/relayP2pSignalHandler.republishRequest.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_relayp2psignalhandler_republishrequest_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_relayp2psignalhandler_republishrequest_test_ensurep2pmock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/relayP2pSignalHandler.republishRequest.test.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_relayp2psignalhandler_republishrequest_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_relayp2psignalhandler_republishrequest_test_handshakerows", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/relayP2pSignalHandler.republishRequest.test.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_relayp2psignalhandler_republishrequest_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_relayp2psignalhandler_republishrequest_test_hostsiderow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/relayP2pSignalHandler.republishRequest.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_relayp2psignalhandler_republishrequest_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_relayp2psignalhandler_republishrequest_test_publishmock", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/relayP2pSignalHandler.stale.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_relayp2psignalhandler_stale_test", + "target": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/relayP2pSignalHandler.stale.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_relayp2psignalhandler_stale_test", + "target": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_tryhandlecoordinationp2psignal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/relayP2pSignalHandler.stale.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_relayp2psignalhandler_stale_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_relayp2psignalhandler_stale_test_maybehandle", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/resolveSandboxInferenceTarget.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_resolvesandboxinferencetarget_test", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/resolveSandboxInferenceTarget.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_resolvesandboxinferencetarget_test", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_sandboxollamadirectroutecandidate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/resolveSandboxInferenceTarget.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_resolvesandboxinferencetarget_test", + "target": "apps_electron_vite_project_electron_main_llm_localllmpaths", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/resolveSandboxInferenceTarget.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_resolvesandboxinferencetarget_test", + "target": "apps_electron_vite_project_electron_main_llm_localllmpaths_host_ai_default_local_llamacpp_base", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandboxHostAiDirectBeapAdRequest.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_sandboxhostaidirectbeapadrequest_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandboxHostAiDirectBeapAdRequest.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_sandboxhostaidirectbeapadrequest_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_peekhostadvertisedmvpdirectentry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandboxHostAiDirectBeapAdRequest.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_sandboxhostaidirectbeapadrequest_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_resethostadvertisedmvpdirectfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandboxHostAiDirectBeapAdRequest.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_sandboxhostaidirectbeapadrequest_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_resolvesandboxtohosthttpdirectingest", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandboxHostAiDirectBeapAdRequest.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_sandboxhostaidirectbeapadrequest_test", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandboxHostAiDirectBeapAdRequest.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_sandboxhostaidirectbeapadrequest_test", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest_resetsandboxhostaidirectbeapadrequeststatefortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandboxHostAiDirectBeapAdRequest.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_sandboxhostaidirectbeapadrequest_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_sandboxhostaidirectbeapadrequest_test_listrows", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandboxHostAiDirectBeapAdRequest.test.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_sandboxhostaidirectbeapadrequest_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_sandboxhostaidirectbeapadrequest_test_postreq", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandboxHostAiDirectBeapAdRequest.test.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_sandboxhostaidirectbeapadrequest_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_sandboxhostaidirectbeapadrequest_test_sandboxhostrow", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandboxHostAiOllamaDirectSyntheticProbe.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_sandboxhostaiollamadirectsyntheticprobe_test", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectsyntheticprobe", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandboxHostAiOllamaDirectSyntheticProbe.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_sandboxhostaiollamadirectsyntheticprobe_test", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectsyntheticprobe_buildsyntheticokprobefromollamadirecttags", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandboxHostAiOllamaDirectSyntheticProbe.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_sandboxhostaiollamadirectsyntheticprobe_test", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandboxHostAiOllamaDirectSyntheticProbe.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_sandboxhostaiollamadirectsyntheticprobe_test", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_sandboxollamadirecttagsfetchresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandboxHostAiOllamaDirectSyntheticProbe.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_sandboxhostaiollamadirectsyntheticprobe_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_sandboxhostaiollamadirectsyntheticprobe_test_tagsavailable", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandboxHostRosterSelectionMigration.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_sandboxhostrosterselectionmigration_test", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostrosterselectionmigration", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandboxHostRosterSelectionMigration.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_sandboxhostrosterselectionmigration_test", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostrosterselectionmigration_migratestoredselectionforreceivedhostroster", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandboxHostRosterSelectionMigration.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_sandboxhostrosterselectionmigration_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_sandboxhostrosterselectionmigration_test_readstored", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandboxHostRosterSelectionMigration.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_sandboxhostrosterselectionmigration_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_sandboxhostrosterselectionmigration_test_roster", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandboxHostRosterSelectionMigration.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_sandboxhostrosterselectionmigration_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_sandboxhostrosterselectionmigration_test_writestored", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing.regression.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing.regression.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing.regression.test.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing.regression.test.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_resethostpeerlivepresencefortests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing.regression.test.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_tryrecordhostpeerlivepresencefromrelayad", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing.regression.test.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairelaycapability", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing.regression.test.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairelaycapability_resethostairelaycapabilitycachefortests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing.regression.test.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairelaycapability_sethostairelaycapabilityfetchfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing.regression.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing.regression.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing.regression.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_resetp2pensurethrottlecachefortests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing.regression.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_resetwebrtclisthostcapscachefortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing.regression.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing.regression.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_resethostadvertisedmvpdirectfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing.regression.test.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing.regression.test.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_resetp2pinferenceflagsfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing.regression.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing.regression.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_sandboxollamadirecttagsfetchresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing.regression.test.ts", + "source_location": "L232", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing_regression_test_handshakebeappoisonedsandboxledgernopeerad", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing.regression.test.ts", + "source_location": "L228", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing_regression_test_party", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing.regression.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing.regression.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing_regression_test", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_hostaitransportdeciderresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing.regression.test.ts", + "source_location": "L238", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing_regression_test_handshakebeappoisonedsandboxledgernopeerad", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing_regression_test_party", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/serviceRpcGatesAndLifecycle.rig.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_servicerpcgatesandlifecycle_rig_test", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/serviceRpcGatesAndLifecycle.rig.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_servicerpcgatesandlifecycle_rig_test", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/serviceRpcGatesAndLifecycle.rig.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_servicerpcgatesandlifecycle_rig_test", + "target": "apps_electron_vite_project_electron_main_internalinference_pendingrequests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/serviceRpcGatesAndLifecycle.rig.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_servicerpcgatesandlifecycle_rig_test", + "target": "apps_electron_vite_project_electron_main_internalinference_pendingrequests_pendingresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/serviceRpcGatesAndLifecycle.rig.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_servicerpcgatesandlifecycle_rig_test", + "target": "apps_electron_vite_project_electron_main_internalinference_pendingrequests_registerinternalinferencerequest", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/serviceRpcGatesAndLifecycle.rig.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_servicerpcgatesandlifecycle_rig_test", + "target": "apps_electron_vite_project_electron_main_internalinference_pendingrequests_rejectinternalinferencebyrequestid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/serviceRpcGatesAndLifecycle.rig.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_servicerpcgatesandlifecycle_rig_test", + "target": "apps_electron_vite_project_electron_main_internalinference_pendingrequests_resetpendingfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/serviceRpcGatesAndLifecycle.rig.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_servicerpcgatesandlifecycle_rig_test", + "target": "apps_electron_vite_project_electron_main_internalinference_pendingrequests_resolveinternalinferencebyrequestid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/serviceRpcGatesAndLifecycle.rig.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_servicerpcgatesandlifecycle_rig_test", + "target": "apps_electron_vite_project_electron_main_internalinference_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/serviceRpcGatesAndLifecycle.rig.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_servicerpcgatesandlifecycle_rig_test", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/serviceRpcGatesAndLifecycle.rig.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_servicerpcgatesandlifecycle_rig_test", + "target": "apps_electron_vite_project_electron_main_internalinference_tests_servicerpcgatesandlifecycle_rig_test_record", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/transportDecide.unifiedRelay.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_transportdecide_unifiedrelay_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/transportDecide.unifiedRelay.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_transportdecide_unifiedrelay_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_resetp2pinferenceflagsfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/transportDecide.unifiedRelay.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_transportdecide_unifiedrelay_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_shouldrejecthttpinternalinferencerequest", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/transportDecide.unifiedRelay.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_transportdecide_unifiedrelay_test", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_transportdecide", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/transportDecide.unifiedRelay.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_transportdecide_unifiedrelay_test", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_transportdecide_decidehostaiintentroute", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/transportDecide.unifiedRelay.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_transportdecide_unifiedrelay_test", + "target": "apps_electron_vite_project_electron_main_internalinference_unifiedservicerpcrelayflags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/transportDecide.unifiedRelay.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_transportdecide_unifiedrelay_test", + "target": "apps_electron_vite_project_electron_main_internalinference_unifiedservicerpcrelayflags_resetunifiedservicerpcrelayflagsfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/unifiedServiceRpcRelayFlags.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_unifiedservicerpcrelayflags_test", + "target": "apps_electron_vite_project_electron_main_internalinference_unifiedservicerpcrelayflags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/unifiedServiceRpcRelayFlags.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_unifiedservicerpcrelayflags_test", + "target": "apps_electron_vite_project_electron_main_internalinference_unifiedservicerpcrelayflags_blocksplaintexthttpinferencefallback", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/unifiedServiceRpcRelayFlags.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_unifiedservicerpcrelayflags_test", + "target": "apps_electron_vite_project_electron_main_internalinference_unifiedservicerpcrelayflags_getunifiedservicerpcrelayflagfromenvfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/unifiedServiceRpcRelayFlags.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_unifiedservicerpcrelayflags_test", + "target": "apps_electron_vite_project_electron_main_internalinference_unifiedservicerpcrelayflags_isunifiedservicerpcrelayenabled", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/__tests__/unifiedServiceRpcRelayFlags.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_tests_unifiedservicerpcrelayflags_test", + "target": "apps_electron_vite_project_electron_main_internalinference_unifiedservicerpcrelayflags_resetunifiedservicerpcrelayflagsfortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/beapContentAiRoute.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_beapcontentairoute", + "target": "apps_electron_vite_project_electron_main_internalinference_beapcontentairoute_beapcontentaitask", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/beapContentAiRoute.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_beapcontentairoute", + "target": "apps_electron_vite_project_electron_main_internalinference_beapcontentairoute_beapcontentaitaskkind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/beapContentAiRoute.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_beapcontentairoute", + "target": "apps_electron_vite_project_electron_main_internalinference_beapcontentairoute_logbeapcontentairoute", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/beapContentAiRoute.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_beapcontentairoute", + "target": "apps_electron_vite_project_electron_main_internalinference_beapcontentairoute_plansandboxhostchatexecution", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/beapContentAiRoute.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_beapcontentairoute", + "target": "apps_electron_vite_project_electron_main_internalinference_beapcontentairoute_routetransportlabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/beapContentAiRoute.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_beapcontentairoute", + "target": "apps_electron_vite_project_electron_main_internalinference_beapcontentairoute_sandboxcontenthostexecutionplan", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/beapContentAiRoute.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_beapcontentairoute", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/beapContentAiRoute.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_beapcontentairoute", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/beapContentAiRoute.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_beapcontentairoute", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutiontypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/beapContentAiRoute.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_beapcontentairoute", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutiontypes_aiexecutioncontext", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L196", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration", + "target": "apps_electron_vite_project_electron_main_internalinference_beapcontentairoute", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L196", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration", + "target": "apps_electron_vite_project_electron_main_internalinference_beapcontentairoute_beapcontentaitaskkind", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L196", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration", + "target": "apps_electron_vite_project_electron_main_internalinference_beapcontentairoute_beapcontentaitask", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/beapContentAiRoute.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_beapcontentairoute_logbeapcontentairoute", + "target": "apps_electron_vite_project_electron_main_internalinference_beapcontentairoute_routetransportlabel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/beapContentAiRoute.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_beapcontentairoute_plansandboxhostchatexecution", + "target": "apps_electron_vite_project_electron_main_internalinference_beapcontentairoute_logbeapcontentairoute", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration", + "target": "apps_electron_vite_project_electron_main_internalinference_beapcontentairoute_plansandboxhostchatexecution", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_runollamageneratechatwithsandboxrouting", + "target": "apps_electron_vite_project_electron_main_internalinference_beapcontentairoute_plansandboxhostchatexecution" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration", + "target": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_createollamaproviderforsandboxembedding", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration", + "target": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_generatechatopts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration", + "target": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_handshakehintfromparams", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration", + "target": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_inferenceroutingunavailableerror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L192", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration", + "target": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_isinferenceroutingunavailableerror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration", + "target": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_logsandboxinferencesend", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration", + "target": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_ollamalikeprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration", + "target": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_resolvecrossdeviceafterreconnectingretry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration", + "target": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_runollamageneratechatwithsandboxrouting", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L207", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration", + "target": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_runollamagenerateembeddingwithsandboxrouting", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L198", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration", + "target": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_sandboxembeddingroutingparams", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration", + "target": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_shouldapplysandboxollamainferencerouting", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L253", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration", + "target": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_wrapollamaembeddingserviceforsandbox", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole_gethostailedgerrolesummaryfromdb", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration", + "target": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration", + "target": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_resolvesandboxinferencetarget", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration", + "target": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_sandboxinferencetarget", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_getsandboxollamadirectroutecandidate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore_readstoredaiexecutioncontext", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_issandboxmode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_bareollamamodelnameforapi", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/inferenceRoutingIpcPayload.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_inferenceroutingipcpayload", + "target": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/orchestratorSandboxEmbedding.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_orchestratorsandboxembedding", + "target": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_createollamaproviderforsandboxembedding", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_getsandboxollamadirectroutecandidate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_createollamaproviderforsandboxembedding", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore_readstoredaiexecutioncontext" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L240", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_runollamagenerateembeddingwithsandboxrouting", + "target": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_createollamaproviderforsandboxembedding", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_inferenceroutingunavailableerror", + "target": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_inferenceroutingunavailableerror_constructor", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_inferenceroutingunavailableerror", + "target": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_sandboxinferencetarget", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/inferenceRoutingIpcPayload.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_inferenceroutingipcpayload", + "target": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_inferenceroutingunavailableerror", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_inferenceroutingunavailableerror_constructor", + "target": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_sandboxinferencetarget", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L169", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_runollamageneratechatwithsandboxrouting", + "target": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_logsandboxinferencesend", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L237", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_runollamagenerateembeddingwithsandboxrouting", + "target": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_logsandboxinferencesend", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_resolvecrossdeviceafterreconnectingretry", + "target": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_resolvesandboxinferencetarget", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L156", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_runollamageneratechatwithsandboxrouting", + "target": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_resolvecrossdeviceafterreconnectingretry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L224", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_runollamagenerateembeddingwithsandboxrouting", + "target": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_resolvecrossdeviceafterreconnectingretry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L152", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_runollamageneratechatwithsandboxrouting", + "target": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_handshakehintfromparams", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L220", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_runollamagenerateembeddingwithsandboxrouting", + "target": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_handshakehintfromparams", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_runollamageneratechatwithsandboxrouting", + "target": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_shouldapplysandboxollamainferencerouting", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L215", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_runollamagenerateembeddingwithsandboxrouting", + "target": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_shouldapplysandboxollamainferencerouting", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_shouldapplysandboxollamainferencerouting", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_shouldapplysandboxollamainferencerouting", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole_gethostailedgerrolesummaryfromdb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_shouldapplysandboxollamainferencerouting", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_shouldapplysandboxollamainferencerouting", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_shouldapplysandboxollamainferencerouting", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_issandboxmode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L153", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_runollamageneratechatwithsandboxrouting", + "target": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_resolvesandboxinferencetarget" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_runollamageneratechatwithsandboxrouting", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostchat", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_runollamageneratechatwithsandboxrouting", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore_readstoredaiexecutioncontext" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_runollamageneratechatwithsandboxrouting", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_bareollamamodelnameforapi" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/inferenceRoutingIpcPayload.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_inferenceroutingipcpayload", + "target": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_isinferenceroutingunavailableerror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/inferenceRoutingIpcPayload.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_inferenceroutingipcpayload_mapinferenceroutingerrortoipc", + "target": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_isinferenceroutingunavailableerror" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts", + "source_location": "L221", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_runollamagenerateembeddingwithsandboxrouting", + "target": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_resolvesandboxinferencetarget" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/orchestratorSandboxEmbedding.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_orchestratorsandboxembedding", + "target": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_wrapollamaembeddingserviceforsandbox", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/orchestratorSandboxEmbedding.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_orchestratorsandboxembedding_getorcreateorchestratorembeddingservice", + "target": "apps_electron_vite_project_electron_main_internalinference_chatwithcontextragollamageneration_wrapollamaembeddingserviceforsandbox" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/dbAccess.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_dbaccess", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_getcanonhandshakedbforhostaipolicy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/dbAccess.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_dbaccess", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/dbAccess.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_dbaccess", + "target": "apps_electron_vite_project_src_auth_session", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/dbAccess.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_dbaccess", + "target": "apps_electron_vite_project_src_auth_sessioncache_getcacheduserinfo", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish_publishhostaidirectbeapadvertisementsforeligiblehost", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiHostOrchestratorHealth.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaihostorchestratorhealth", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectProactiveRefresh.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectproactiverefresh", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementLog.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementlog", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelaySend.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaysend", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiWebrtcOfferStart.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceExecute.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/internalP2pHandshakeInspect.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostChat.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostchat", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxOllamaDirectCapsRefresh.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxollamadirectcapsrefresh", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxRequest.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxrequest", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/p2pSignalOutbound.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_p2psignaloutbound", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/handshakeAvailableModelsCompute.ts", + "source_location": "L251", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_handshakeavailablemodelscompute_computehandshakeavailablemodels", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/modeModelWarmupTrigger.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_modemodelwarmuptrigger", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/startupWarmup.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_startupwarmup", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/warmModel.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_warmmodel", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/warmupOnServerHealthy.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_warmuponserverhealthy", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/ipc.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_ipc_registerorchestratoripc", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxOutboundPolicy.ts", + "source_location": "L275", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_resolveeffectivesandboxnode", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/dbAccess.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_dbaccess_getcanonhandshakedbforhostaipolicy", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/dbAccess.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference", + "target": "apps_electron_vite_project_src_auth_sessioncache_getcacheduserinfo" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_checkdirectp2preachabilityfromhandshake", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L239", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_listhosttosandboxdirectreachabilityrows", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiHostOrchestratorHealth.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaihostorchestratorhealth", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiHostOrchestratorHealth.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaihostorchestratorhealth_loghostaiorchestratorhealthline", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectProactiveRefresh.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectproactiverefresh", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectProactiveRefresh.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectproactiverefresh_runhostollamadirectproactiverefreshtick", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L278", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_assertsandboxhostpeerlivepresenceforhandshake", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementLog.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementlog", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementLog.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementlog_buildhostaiprovideradvertisementpayload", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelaySend.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaysend", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelaySend.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaysend_sendsealedhostaiinferencerequest", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiWebrtcOfferStart.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiWebrtcOfferStart.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart_waitforcoordinationwebsocketforrelayifneeded", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities_buildinternalinferencecapabilitiesresult", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceExecute.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceExecute.ts", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute_runhostinternalinference", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/internalP2pHandshakeInspect.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/internalP2pHandshakeInspect.ts", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect_getinternalhosthandshakep2pinspect", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1463", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hasactiveinternalledgerlocalhostpeersandboxforhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1454", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hasactiveinternalledgersandboxtohostforhostai", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1672", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L1288", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_executehostinferencecapabilitiesdcexchange", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L323", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_handlep2pdcinferencecapabilitiesashost", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L1152", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_peeksandboxpeerhostdeviceforcapscache", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_validatehostinboundinferencedc", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1050", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensuresession", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1399", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_getp2pinboundlocalroleforlog", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1437", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_preflightp2prelaysignal", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1294", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_tryattachp2psessionforinboundsignaling", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L220", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_crossdevicerouteforeligiblehandshake", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_resolveactivesandboxtohosthandshakeid", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L176", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_resolvehandshakerecordforrouting", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostChat.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostchat", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostChat.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostchat_runsandboxhostinferencechat", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_listsandboxhostinferencecandidates", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L781", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboximpl", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxOllamaDirectCapsRefresh.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxollamadirectcapsrefresh", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxOllamaDirectCapsRefresh.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxollamadirectcapsrefresh_refreshsandboxollamadirectfromhostcapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxRequest.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxrequest", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxRequest.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxrequest_runsandboxpongtestfromhosthandshake", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L412", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_listhostcapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L1431", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_sendhostinferenceresult", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/p2pSignalOutbound.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_p2psignaloutbound", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/p2pSignalOutbound.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_p2psignaloutbound_recordoutboundp2psignal", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/modeModelWarmupTrigger.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_modemodelwarmuptrigger", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/modeModelWarmupTrigger.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_modemodelwarmuptrigger_runmodemodelwarmontrigger", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L265", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_iseffectivesandboxsideforaiexecution", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/startupWarmup.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_startupwarmup", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/startupWarmup.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_startupwarmup_runstartupwarmup", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/warmModel.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_warmmodel", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/warmModel.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_warmmodel_warmmodel", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/warmupOnServerHealthy.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_warmuponserverhealthy", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/warmupOnServerHealthy.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_warmuponserverhealthy_initwarmuponserverhealthy", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_gethandshakedbforinternalinference" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_getcanonhandshakedbforhostaipolicy", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget_handlegetinternalinferencepolicy", + "target": "apps_electron_vite_project_electron_main_internalinference_dbaccess_getcanonhandshakedbforhostaipolicy" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L139", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability", + "target": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_checkdirectp2preachabilityfromhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability", + "target": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_classifydirectp2preachabilityerror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability", + "target": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_direct_p2p_reachability_path", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability", + "target": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_direct_p2p_reachability_timeout_ms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability", + "target": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_directp2preachabilityresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability", + "target": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_directp2preachabilitystatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L190", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability", + "target": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_directreachabilitylistrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L222", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability", + "target": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_endpointlabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability", + "target": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_errchaintostring", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability", + "target": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_fetchreachability", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L201", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability", + "target": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_formatpairingcode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L235", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability", + "target": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_listhosttosandboxdirectreachabilityrows", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L209", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability", + "target": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_peersandboxnamefromrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability", + "target": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_reachabilityurlfromp2pingest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability", + "target": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_resolvecontext", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability", + "target": "apps_electron_vite_project_electron_main_internalinference_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_asserthostsendsresulttosandbox", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertp2pendpointdirect", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertsandboxrequesttohost", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_outboundp2pbearertocounterpartyingest", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_ishostmode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_issandboxmode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability", + "target": "apps_electron_vite_project_electron_main_p2p_beapingresslog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability", + "target": "apps_electron_vite_project_electron_main_p2p_beapingresslog_beap_correlation_header_out", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L184", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_ipc_registerinternalinferenceipc", + "target": "apps_electron_vite_project_electron_main_internalinference_directp2preachability", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L169", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_checkdirectp2preachabilityfromhandshake", + "target": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_reachabilityurlfromp2pingest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L184", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_checkdirectp2preachabilityfromhandshake", + "target": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_errchaintostring", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_classifydirectp2preachabilityerror", + "target": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_errchaintostring", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L182", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_checkdirectp2preachabilityfromhandshake", + "target": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_classifydirectp2preachabilityerror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_checkdirectp2preachabilityfromhandshake", + "target": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_fetchreachability", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L152", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_checkdirectp2preachabilityfromhandshake", + "target": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_resolvecontext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_resolvecontext", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_asserthostsendsresulttosandbox", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_resolvecontext", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_resolvecontext", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertsandboxrequesttohost", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_resolvecontext", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_resolvecontext", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L157", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_checkdirectp2preachabilityfromhandshake", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertp2pendpointdirect" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L165", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_checkdirectp2preachabilityfromhandshake", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_outboundp2pbearertocounterpartyingest" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_checkdirectp2preachabilityfromhandshake", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_ishostmode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_checkdirectp2preachabilityfromhandshake", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_issandboxmode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L259", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_listhosttosandboxdirectreachabilityrows", + "target": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_formatpairingcode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L257", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_listhosttosandboxdirectreachabilityrows", + "target": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_peersandboxnamefromrecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L261", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_listhosttosandboxdirectreachabilityrows", + "target": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_endpointlabel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L250", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_listhosttosandboxdirectreachabilityrows", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_asserthostsendsresulttosandbox" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L254", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_listhosttosandboxdirectreachabilityrows", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertp2pendpointdirect" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L246", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_listhosttosandboxdirectreachabilityrows", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts", + "source_location": "L236", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_directp2preachability_listhosttosandboxdirectreachabilityrows", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_ishostmode" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/errors.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_errors", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/errors.ts", + "source_location": "L176", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_errors", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcodetype", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectAdvertisement.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectadvertisement", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaNativeDiscovery.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRouteSelectLog.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairouteselectlog", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelaySend.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaysend", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiWebrtcOfferStart.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceConcurrency.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferenceconcurrency", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceExecute.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_ipc", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/pendingRequests.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_pendingrequests", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectSyntheticProbe.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectsyntheticprobe", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostChat.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostchat", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxRequest.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxrequest", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteCandidate.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectAdvertisement.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectadvertisement", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaNativeDiscovery.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRouteSelectLog.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairouteselectlog", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelaySend.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaysend", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiWebrtcOfferStart.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceConcurrency.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferenceconcurrency", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceExecute.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_ipc", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/pendingRequests.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_pendingrequests", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectSyntheticProbe.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectsyntheticprobe", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostChat.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostchat", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxRequest.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxrequest", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteCandidate.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiWebrtcOfferStart.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcodetype", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiWebrtcOfferStart.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart_hostaiwebrtcstarterror_constructor", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcodetype", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcodetype", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcodetype", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcodetype", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteCandidate.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_errors_internalinferenceerrorcodetype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiBeapAdOllamaModelCount.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaibeapadollamamodelcount", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaibeapadollamamodelcount_hostaibeapadlocalollamamodelcount", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiBeapAdOllamaModelCount.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaibeapadollamamodelcount", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaibeapadollamamodelcount_hostaibeapadlocalollamamodelroster", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiBeapAdOllamaModelCount.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaibeapadollamamodelcount", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaibeapadollamamodelcount_hostaibeapadlocalollamamodelrosterresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiBeapAdOllamaModelCount.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaibeapadollamamodelcount", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaibeapadollamamodelcount_hostaibeapadollamamodelwireentry", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaibeapadollamamodelcount", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaibeapadollamamodelcount", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaibeapadollamamodelcount", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostRosterSelectionMigration.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostrosterselectionmigration", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaibeapadollamamodelcount", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaibeapadollamamodelcount_hostaibeapadollamamodelwireentry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaibeapadollamamodelcount_hostaibeapadollamamodelwireentry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostRosterSelectionMigration.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostrosterselectionmigration", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaibeapadollamamodelcount_hostaibeapadollamamodelwireentry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiBeapAdOllamaModelCount.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaibeapadollamamodelcount_hostaibeapadlocalollamamodelcount", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaibeapadollamamodelcount_hostaibeapadlocalollamamodelroster", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiBeapAdOllamaModelCount.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaibeapadollamamodelcount_hostaibeapadlocalollamamodelroster", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiBeapAdOllamaModelCount.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaibeapadollamamodelcount_hostaibeapadlocalollamamodelroster", + "target": "apps_electron_vite_project_electron_main_llm_internalhostinferencelocal", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiBeapAdOllamaModelCount.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaibeapadollamamodelcount_hostaibeapadlocalollamamodelroster", + "target": "apps_electron_vite_project_electron_main_llm_localllmproviderstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiBeapAdOllamaModelCount.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaibeapadollamamodelcount_hostaibeapadlocalollamamodelroster", + "target": "apps_electron_vite_project_electron_main_llm_localmodelidentity", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaibeapadollamamodelcount_hostaibeapadlocalollamamodelroster", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L235", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish_publishhostaidirectbeapadvertisementsforeligiblehost", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaibeapadollamamodelcount_hostaibeapadlocalollamamodelroster" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiCapsRoleGateLog.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaicapsrolegatelog", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaicapsrolegatelog_loghostaicapsrolegate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaicapsrolegatelog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaicapsrolegatelog_loghostaicapsrolegate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L1300", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_executehostinferencecapabilitiesdcexchange", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaicapsrolegatelog_loghostaicapsrolegate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L338", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_handlep2pdcinferencecapabilitiesashost", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaicapsrolegatelog_loghostaicapsrolegate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish_adseqbyhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish_clearhostaibeaprepublishtimer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish_nextadseq", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish_nextrepublishbackoffms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish_publishhostaidirectbeapadvertisementsforeligiblehost", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish_resethostaidirectbeapadpublishstatefortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish_schedulehostaibeapadrepublishretry", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole_gethostailedgerrolesummaryfromdb", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_ishostailedgerasymmetricterminal", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_asserthostmachinesessionmatcheshandshakehostparty", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_partyidentityfromsession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve_hostaibeapadpublishshouldretryafterpolicydenial", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve_loghostairemotepolicydecision", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve_resolvehostairemoteinferencepolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_hostaibeapadsignalollamacapabilities", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_posthostaidirectbeapadtocoordination", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish", + "target": "apps_electron_vite_project_electron_main_internalinference_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_coordinationdeviceidforhandshakedevicerole", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_getp2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L1153", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_runp2pendpointrepairpass", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L233", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_handlehostaidirectbeapadrequestfromrelay", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/handshakeAvailableModelsCompute.ts", + "source_location": "L254", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_handshakeavailablemodelscompute_computehandshakeavailablemodels", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L875", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws_createcoordinationwsclient", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish_schedulehostaibeapadrepublishretry", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish_nextrepublishbackoffms", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L319", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish_publishhostaidirectbeapadvertisementsforeligiblehost", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish_nextadseq", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L422", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish_publishhostaidirectbeapadvertisementsforeligiblehost", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish_clearhostaibeaprepublishtimer", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish_resethostaidirectbeapadpublishstatefortests", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish_clearhostaibeaprepublishtimer", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish_publishhostaidirectbeapadvertisementsforeligiblehost", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish_schedulehostaibeapadrepublishretry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish_publishhostaidirectbeapadvertisementsforeligiblehost", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole_gethostailedgerrolesummaryfromdb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L302", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish_publishhostaidirectbeapadvertisementsforeligiblehost", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_ishostailedgerasymmetricterminal" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L305", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish_publishhostaidirectbeapadvertisementsforeligiblehost", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_asserthostmachinesessionmatcheshandshakehostparty" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L359", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish_publishhostaidirectbeapadvertisementsforeligiblehost", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_partyidentityfromsession" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish_publishhostaidirectbeapadvertisementsforeligiblehost", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve_hostaibeapadpublishshouldretryafterpolicydenial" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish_publishhostaidirectbeapadvertisementsforeligiblehost", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve_loghostairemotepolicydecision" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish_publishhostaidirectbeapadvertisementsforeligiblehost", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve_resolvehostairemoteinferencepolicy" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish_publishhostaidirectbeapadvertisementsforeligiblehost", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L350", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish_publishhostaidirectbeapadvertisementsforeligiblehost", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_posthostaidirectbeapadtocoordination" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L291", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish_publishhostaidirectbeapadvertisementsforeligiblehost", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L300", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish_publishhostaidirectbeapadvertisementsforeligiblehost", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_coordinationdeviceidforhandshakedevicerole" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L295", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish_publishhostaidirectbeapadvertisementsforeligiblehost", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish_publishhostaidirectbeapadvertisementsforeligiblehost", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish_publishhostaidirectbeapadvertisementsforeligiblehost", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadpublish_publishhostaidirectbeapadvertisementsforeligiblehost", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_getp2pconfig" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdWire.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadwire", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadwire_host_ai_direct_beap_ad_sealed_relay_endpoint_placeholder", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdWire.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadwire", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadwire_hostaidirectbeapadendpointurlisinertplaceholder", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdWire.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadwire", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadwire_wireendpointurlforhostaidirectbeapad", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadwire", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadwire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadwire_wireendpointurlforhostaidirectbeapad", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L767", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_buildhostaidirectbeapadsignalbody", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadwire_wireendpointurlforhostaidirectbeapad" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadwire_hostaidirectbeapadendpointurlisinertplaceholder", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L823", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_applyhostaidirectbeapadfromrelaypayload", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaidirectbeapadwire_hostaidirectbeapadendpointurlisinertplaceholder" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiEffectiveRole.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole_geteffectivefromactiveinternalrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiEffectiveRole.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole_geteffectivehostairoleforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiEffectiveRole.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole_gethostailedgerrolesummaryfromdb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiEffectiveRole.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole_hostaieffectiveroleresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiEffectiveRole.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole_hostaieffectiverolesource", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiEffectiveRole.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole", + "target": "apps_electron_vite_project_electron_main_internalinference_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiEffectiveRole.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiEffectiveRole.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementLog.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementlog", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRemoteInferencePolicyResolve.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiEffectiveRole.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole_geteffectivehostairoleforhandshake", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole_geteffectivefromactiveinternalrow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiEffectiveRole.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole_geteffectivehostairoleforhandshake", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiEffectiveRole.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole_gethostailedgerrolesummaryfromdb", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole_geteffectivehostairoleforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementLog.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementlog", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole_geteffectivehostairoleforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementLog.ts", + "source_location": "L201", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementlog_buildhostaiprovideradvertisementpayload", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole_geteffectivehostairoleforhandshake" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiEffectiveRole.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole_geteffectivefromactiveinternalrow", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementLog.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementlog", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole_gethostailedgerrolesummaryfromdb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementLog.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementlog_buildhostaiprovideradvertisementpayload", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole_gethostailedgerrolesummaryfromdb" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRemoteInferencePolicyResolve.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole_gethostailedgerrolesummaryfromdb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRemoteInferencePolicyResolve.ts", + "source_location": "L224", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve_loghostairemotepolicydecision", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole_gethostailedgerrolesummaryfromdb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRemoteInferencePolicyResolve.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve_resolvehostairemoteinferencepolicy", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole_gethostailedgerrolesummaryfromdb" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole_gethostailedgerrolesummaryfromdb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1676", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole_gethostailedgerrolesummaryfromdb" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole_gethostailedgerrolesummaryfromdb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L1091", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_runp2pendpointrepairpass", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole_gethostailedgerrolesummaryfromdb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L323", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_runrequestbeapadrefreshifmapmiss", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole_gethostailedgerrolesummaryfromdb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole_gethostailedgerrolesummaryfromdb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L156", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest_sandboxmayberequesthostdirectbeapadvertisement", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole_gethostailedgerrolesummaryfromdb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest_sandboxrequesthostaip2pofferafterbeapadaccepted", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole_gethostailedgerrolesummaryfromdb" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole_gethostailedgerrolesummaryfromdb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L267", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_iseffectivesandboxsideforaiexecution", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaieffectiverole_gethostailedgerrolesummaryfromdb" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiEndpointCandidate.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiendpointcandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiendpointcandidate_hostaiendpointcandidate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiEndpointCandidate.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiendpointcandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiendpointcandidate_hostaiendpointresolutioncategory", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiEndpointCandidate.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiendpointcandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiendpointcandidate_hostaiendpointsource", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiEndpointCandidate.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiendpointcandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiendpointcandidate_hostaiendpointtrustlevel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiEndpointCandidate.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiendpointcandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiendpointcandidate_hostaiselectedendpointprovenance", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiEndpointSelectLog.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiendpointselectlog", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiendpointcandidate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiendpointcandidate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiendpointcandidate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiendpointcandidate_hostaiendpointcandidate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiendpointcandidate_hostaiendpointresolutioncategory", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiEndpointSelectLog.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiendpointselectlog", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiendpointcandidate_hostaiselectedendpointprovenance", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiendpointcandidate_hostaiselectedendpointprovenance", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiendpointcandidate_hostaiselectedendpointprovenance", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiEndpointSelectLog.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiendpointselectlog", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiendpointselectlog_loghostaiendpointselect", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiEndpointSelectLog.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiendpointselectlog", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiEndpointSelectLog.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiendpointselectlog", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiendpointselectlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiEndpointSelectLog.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiendpointselectlog_loghostaiendpointselect", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiendpointselectlog_loghostaiendpointselect", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L961", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_listhostcapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiendpointselectlog_loghostaiendpointselect" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiHostOrchestratorHealth.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaihostorchestratorhealth", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaihostorchestratorhealth_loghostaihealthstartupline", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiHostOrchestratorHealth.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaihostorchestratorhealth", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaihostorchestratorhealth_loghostaiorchestratorhealthline", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiHostOrchestratorHealth.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaihostorchestratorhealth", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaihostorchestratorhealth_resolvedirectbeapingestforhealth", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiHostOrchestratorHealth.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaihostorchestratorhealth", + "target": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiHostOrchestratorHealth.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaihostorchestratorhealth", + "target": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact_redactidforlog", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiHostOrchestratorHealth.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaihostorchestratorhealth", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalwireschemaversion", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiHostOrchestratorHealth.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaihostorchestratorhealth", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalwireschemaversion_logp2psignalwireschemastartupline", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiHostOrchestratorHealth.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaihostorchestratorhealth", + "target": "apps_electron_vite_project_electron_main_llm_localllmproviderstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiHostOrchestratorHealth.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaihostorchestratorhealth", + "target": "apps_electron_vite_project_electron_main_llm_localllmproviderstatus_getlocalllmproviderstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiHostOrchestratorHealth.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaihostorchestratorhealth", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiHostOrchestratorHealth.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaihostorchestratorhealth", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiHostOrchestratorHealth.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaihostorchestratorhealth", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationwsholder", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiHostOrchestratorHealth.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaihostorchestratorhealth", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationwsholder_getcoordinationwsclient", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiHostOrchestratorHealth.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaihostorchestratorhealth", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiHostOrchestratorHealth.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaihostorchestratorhealth", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_getp2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiHostOrchestratorHealth.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaihostorchestratorhealth", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_p2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiHostOrchestratorHealth.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaihostorchestratorhealth", + "target": "apps_electron_vite_project_src_auth_session", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiHostOrchestratorHealth.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaihostorchestratorhealth", + "target": "apps_electron_vite_project_src_auth_session_getaccesstoken", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiHostOrchestratorHealth.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaihostorchestratorhealth_loghostaiorchestratorhealthline", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaihostorchestratorhealth_resolvedirectbeapingestforhealth", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiHostOrchestratorHealth.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaihostorchestratorhealth_loghostaihealthstartupline", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiHostOrchestratorHealth.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaihostorchestratorhealth_loghostaiorchestratorhealthline", + "target": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact_redactidforlog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiHostOrchestratorHealth.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaihostorchestratorhealth_loghostaiorchestratorhealthline", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalwireschemaversion_logp2psignalwireschemastartupline" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiHostOrchestratorHealth.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaihostorchestratorhealth_loghostaiorchestratorhealthline", + "target": "apps_electron_vite_project_electron_main_llm_localllmproviderstatus_getlocalllmproviderstatus" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiHostOrchestratorHealth.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaihostorchestratorhealth_loghostaiorchestratorhealthline", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiHostOrchestratorHealth.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaihostorchestratorhealth_loghostaiorchestratorhealthline", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationwsholder_getcoordinationwsclient" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiHostOrchestratorHealth.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaihostorchestratorhealth_loghostaiorchestratorhealthline", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_getp2pconfig" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiHostOrchestratorHealth.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaihostorchestratorhealth_loghostaiorchestratorhealthline", + "target": "apps_electron_vite_project_src_auth_session_getaccesstoken" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiInferLog.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiinferlog", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinferlog_loghostaiinfercomplete", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiInferLog.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiinferlog", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinferlog_loghostaiinfererror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiInferLog.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiinferlog", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinferlog_loghostaiinferrequestreceived", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiInferLog.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiinferlog", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinferlog_loghostaiinferrequestsend", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiInferLog.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiinferlog", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinferlog_loghostaiinferresponsereceived", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinferlog", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinferlog", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinferlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinferlog_loghostaiinferrequestsend", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinferlog_loghostaiinferrequestreceived", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_handlep2pdcinferencerequestashost", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinferlog_loghostaiinferrequestreceived" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinferlog_loghostaiinferrequestreceived", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L169", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch_tryhandleinternalservicep2p", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinferlog_loghostaiinferrequestreceived" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinferlog_loghostaiinfercomplete", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L240", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_handlep2pdcinferencerequestashost", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinferlog_loghostaiinfercomplete" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinferlog_loghostaiinfercomplete", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L1462", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_sendhostinferenceresult", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinferlog_loghostaiinfercomplete" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinferlog_loghostaiinfererror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L185", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_handlep2pdcinferencerequestashost", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinferlog_loghostaiinfererror" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinferlog_loghostaiinfererror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L1469", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_sendhostinferenceresult", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinferlog_loghostaiinfererror" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinferlog_loghostaiinferresponsereceived", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L305", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_handlep2pdcinferenceerrorassandbox", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinferlog_loghostaiinferresponsereceived" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L281", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_handlep2pdcinferenceresultassandbox", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinferlog_loghostaiinferresponsereceived" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinferlog_loghostaiinferresponsereceived", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L217", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch_tryhandleinternalservicep2p", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinferlog_loghostaiinferresponsereceived" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiInternalPairingLedger.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_hosthasactiveinternalledgerhostpeersandboxfromdb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiInternalPairingLedger.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_ishostsandboxpaireligible", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiInternalPairingLedger.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_ledgerproveslocalsandboxtohostfromdb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiInternalPairingLedger.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_listactiveinternalhandshakesforhostai", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiInternalPairingLedger.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_rowproveslocalhostpeersandboxforhostai", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiInternalPairingLedger.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_rowproveslocalsandboxtohostforhostai", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiInternalPairingLedger.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger", + "target": "apps_electron_vite_project_electron_main_internalinference_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiInternalPairingLedger.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiInternalPairingLedger.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_handshakesameprincipal", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiInternalPairingLedger.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiInternalPairingLedger.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRemoteInferencePolicyResolve.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxOutboundPolicy.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiInternalPairingLedger.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_ishostsandboxpaireligible", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiInternalPairingLedger.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_ishostsandboxpaireligible", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_handshakesameprincipal" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiInternalPairingLedger.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_ishostsandboxpaireligible", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiInternalPairingLedger.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_rowproveslocalhostpeersandboxforhostai", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_ishostsandboxpaireligible", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiInternalPairingLedger.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_rowproveslocalsandboxtohostforhostai", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_ishostsandboxpaireligible", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_ishostsandboxpaireligible", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L239", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_nudgehostpeerlivepresenceredial", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_ishostsandboxpaireligible" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_ishostsandboxpaireligible", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1955", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_ishostsandboxpaireligible" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1556", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_tryemitollamadirectonlyrowsafterbeapprobefailure", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_ishostsandboxpaireligible", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_ishostsandboxpaireligible", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L298", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_ishostsandboxpaireligible" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_ishostsandboxpaireligible", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L181", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_resolvehandshakerecordforrouting", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_ishostsandboxpaireligible", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_ishostsandboxpaireligible", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L976", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_derivehostaihandshakeroles", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_ishostsandboxpaireligible" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiInternalPairingLedger.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_hosthasactiveinternalledgerhostpeersandboxfromdb", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_rowproveslocalhostpeersandboxforhostai", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiInternalPairingLedger.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_rowproveslocalhostpeersandboxforhostai", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiInternalPairingLedger.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_rowproveslocalhostpeersandboxforhostai", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiInternalPairingLedger.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_ledgerproveslocalsandboxtohostfromdb", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_rowproveslocalsandboxtohostforhostai", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiInternalPairingLedger.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_rowproveslocalsandboxtohostforhostai", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiInternalPairingLedger.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_rowproveslocalsandboxtohostforhostai", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_rowproveslocalsandboxtohostforhostai", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1433", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_anyactiverowproveslocalsandboxtohostfromdb", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_rowproveslocalsandboxtohostforhostai", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1485", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_ensureatleastonehosttargetwhenledgerprovessandboxtohost", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_rowproveslocalsandboxtohostforhostai", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1731", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_rowproveslocalsandboxtohostforhostai" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_rowproveslocalsandboxtohostforhostai", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_resolveactivesandboxtohosthandshakeid", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_rowproveslocalsandboxtohostforhostai" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiInternalPairingLedger.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_hosthasactiveinternalledgerhostpeersandboxfromdb", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_listactiveinternalhandshakesforhostai", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiInternalPairingLedger.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_ledgerproveslocalsandboxtohostfromdb", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_listactiveinternalhandshakesforhostai", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_listactiveinternalhandshakesforhostai", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1432", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_anyactiverowproveslocalsandboxtohostfromdb", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_listactiveinternalhandshakesforhostai", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1419", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listactiveinternalhandshakesforcurrentsession", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_listactiveinternalhandshakesforhostai", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_listactiveinternalhandshakesforhostai", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_resolveactivesandboxtohosthandshakeid", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_listactiveinternalhandshakesforhostai" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRemoteInferencePolicyResolve.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_hosthasactiveinternalledgerhostpeersandboxfromdb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRemoteInferencePolicyResolve.ts", + "source_location": "L225", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve_loghostairemotepolicydecision", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_hosthasactiveinternalledgerhostpeersandboxfromdb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRemoteInferencePolicyResolve.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve_resolvehostairemoteinferencepolicy", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_hosthasactiveinternalledgerhostpeersandboxfromdb" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_hosthasactiveinternalledgerhostpeersandboxfromdb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1467", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hasactiveinternalledgerlocalhostpeersandboxforhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_hosthasactiveinternalledgerhostpeersandboxfromdb" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxOutboundPolicy.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_ledgerproveslocalsandboxtohostfromdb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxOutboundPolicy.ts", + "source_location": "L260", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_iseffectivesandboxnode", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiinternalpairingledger_ledgerproveslocalsandboxtohostfromdb" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirect.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirect", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirect_host_ai_ollama_provider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirect.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirect", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirect_host_ai_route_kind_ollama_direct", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirect.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirect", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirect_hostaiollamadirectwirefields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirect.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirect", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirect_hostairoutekindollamadirect", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirect.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirect", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirect_loghostaiollamadirectcapabilitieswirehint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirect.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirect", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirect_wireincludesollamadirectpreviewfields", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirect.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirect", + "target": "apps_electron_vite_project_electron_main_internalinference_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirect.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirect", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internalinferencecapabilitiesresultwire", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectCandidate.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirect", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirect", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectCandidate.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirect_host_ai_route_kind_ollama_direct", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirect.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirect_loghostaiollamadirectcapabilitieswirehint", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirect_wireincludesollamadirectpreviewfields", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirect_loghostaiollamadirectcapabilitieswirehint", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L674", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_listhostcapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirect_loghostaiollamadirectcapabilitieswirehint" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectAdvertisement.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectadvertisement", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectadvertisement_buildhostollamadirectadvertisement", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectAdvertisement.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectadvertisement", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectadvertisement_hostollamadirectadvertisement", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectAdvertisement.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectadvertisement", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectadvertisement_hostollamadirectadvertisementopts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectAdvertisement.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectadvertisement", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectadvertisement_isonow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectAdvertisement.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectadvertisement", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectadvertisement_loghostaiollamadirectadvertisement", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectAdvertisement.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectadvertisement", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectAdvertisement.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectadvertisement", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_buildhostollamadirectbaseurl", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectAdvertisement.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectadvertisement", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_selecthostlanipforpeer", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectAdvertisement.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectadvertisement", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectAdvertisement.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectadvertisement", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_fetchllamacppmodelsjson", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectAdvertisement.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectadvertisement", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_normalizehostloopbackollamabaseurl", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectAdvertisement.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectadvertisement", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_parsellamacppmodelsbody", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectAdvertisement.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectadvertisement", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectAdvertisement.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectadvertisement", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectAdvertisement.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectadvertisement", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectAdvertisement.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectadvertisement", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectProactiveRefresh.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectproactiverefresh", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectadvertisement", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectadvertisement", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectadvertisement_hostollamadirectadvertisement", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectAdvertisement.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectadvertisement_buildhostollamadirectadvertisement", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectadvertisement_isonow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectAdvertisement.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectadvertisement_buildhostollamadirectadvertisement", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectadvertisement_loghostaiollamadirectadvertisement", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectAdvertisement.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectadvertisement_buildhostollamadirectadvertisement", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_buildhostollamadirectbaseurl" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectAdvertisement.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectadvertisement_buildhostollamadirectadvertisement", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_selecthostlanipforpeer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectAdvertisement.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectadvertisement_buildhostollamadirectadvertisement", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_fetchllamacppmodelsjson" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectAdvertisement.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectadvertisement_buildhostollamadirectadvertisement", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_normalizehostloopbackollamabaseurl" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectAdvertisement.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectadvertisement_buildhostollamadirectadvertisement", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_parsellamacppmodelsbody" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectAdvertisement.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectadvertisement_buildhostollamadirectadvertisement", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectProactiveRefresh.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectproactiverefresh", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectadvertisement_buildhostollamadirectadvertisement", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectProactiveRefresh.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectproactiverefresh_runhostollamadirectproactiverefreshtick", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectadvertisement_buildhostollamadirectadvertisement", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectadvertisement_buildhostollamadirectadvertisement", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L185", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities_buildinternalinferencecapabilitiesresult", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectadvertisement_buildhostollamadirectadvertisement" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L158", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_buildhostollamadirectbaseurl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_compareprivatelancandidates", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_computelanipselection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L166", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_extractpeerlanipv4hintfromhttpurl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_gethostlanipcandidates", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_hostollamalistenport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_interfacenameexcluded", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_ipv4sameslash24", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_isexcludedipv4specialranges", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_isrfc1918privateipv4", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L180", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_loghostaiollamadirectipselect", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_normalizeoptionalipv4", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_parseipv4octets", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_privatelanpreferencescore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L192", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_recordhostaiollamadirectlanprobeline", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L142", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_selecthostlanipforpeer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_sortprivatelancandidates", + "confidence_score": 1.0 + }, + { + "relation": "cites", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_ts_docref_rfc_1918", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip", + "target": "apps_electron_vite_project_electron_main_llm_localllmpaths", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip", + "target": "apps_electron_vite_project_electron_main_llm_localllmpaths_default_llamacpp_port", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectProactiveRefresh.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectproactiverefresh", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectCandidate.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L171", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_extractpeerlanipv4hintfromhttpurl", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_parseipv4octets", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_ipv4sameslash24", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_parseipv4octets", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_isexcludedipv4specialranges", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_parseipv4octets", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_isrfc1918privateipv4", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_parseipv4octets", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_normalizeoptionalipv4", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_parseipv4octets", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_privatelanpreferencescore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_parseipv4octets", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_computelanipselection", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_isrfc1918privateipv4", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L173", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_extractpeerlanipv4hintfromhttpurl", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_isrfc1918privateipv4", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_gethostlanipcandidates", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_isrfc1918privateipv4", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L172", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_extractpeerlanipv4hintfromhttpurl", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_isexcludedipv4specialranges", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_gethostlanipcandidates", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_isexcludedipv4specialranges", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_computelanipselection", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_ipv4sameslash24", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_compareprivatelancandidates", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_privatelanpreferencescore", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_sortprivatelancandidates", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_compareprivatelancandidates", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_computelanipselection", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_sortprivatelancandidates", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_gethostlanipcandidates", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_sortprivatelancandidates", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_gethostlanipcandidates", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_interfacenameexcluded", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_computelanipselection", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_normalizeoptionalipv4", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_computelanipselection", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_gethostlanipcandidates", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectCandidate.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_gethostlanipcandidates", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectCandidate.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_sandboxlanipv4set", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_gethostlanipcandidates", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L197", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_recordhostaiollamadirectlanprobeline", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_computelanipselection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_selecthostlanipforpeer", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_computelanipselection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L159", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_buildhostollamadirectbaseurl", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_selecthostlanipforpeer", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L161", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_buildhostollamadirectbaseurl", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_hostollamalistenport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_buildhostollamadirectbaseurl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L215", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget_handlegetinternalinferencepolicy", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_buildhostollamadirectbaseurl" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectProactiveRefresh.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectproactiverefresh", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_extractpeerlanipv4hintfromhttpurl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectProactiveRefresh.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectproactiverefresh_runhostollamadirectproactiverefreshtick", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_extractpeerlanipv4hintfromhttpurl", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_extractpeerlanipv4hintfromhttpurl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities_buildinternalinferencecapabilitiesresult", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_extractpeerlanipv4hintfromhttpurl" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts", + "source_location": "L198", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_recordhostaiollamadirectlanprobeline", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_loghostaiollamadirectipselect", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_recordhostaiollamadirectlanprobeline", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities_buildinternalinferencecapabilitiesresult", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectlanip_recordhostaiollamadirectlanprobeline" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectProactiveRefresh.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectproactiverefresh", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectproactiverefresh_lastollamadirectfingerprintbyhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectProactiveRefresh.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectproactiverefresh", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectproactiverefresh_proactiveintervalms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectProactiveRefresh.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectproactiverefresh", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectproactiverefresh_runhostollamadirectproactiverefreshtick", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectProactiveRefresh.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectproactiverefresh", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectproactiverefresh_starthostollamadirectproactiverefreshtimer", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectProactiveRefresh.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectproactiverefresh", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectProactiveRefresh.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectproactiverefresh", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities_buildinternalinferencecapabilitiesresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectProactiveRefresh.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectproactiverefresh", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectProactiveRefresh.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectproactiverefresh", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_invalidatehostcapsbuiltcacheforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectProactiveRefresh.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectproactiverefresh", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_sendproactiveinferencecapabilitiesdcresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectProactiveRefresh.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectproactiverefresh", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectProactiveRefresh.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectproactiverefresh", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_getsessionstate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectProactiveRefresh.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectproactiverefresh", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_listhandshakeidswithopenp2pdatachannel", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectProactiveRefresh.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectproactiverefresh", + "target": "apps_electron_vite_project_electron_main_internalinference_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectProactiveRefresh.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectproactiverefresh", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectProactiveRefresh.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectproactiverefresh", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_coordinationdeviceidforhandshakedevicerole", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectProactiveRefresh.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectproactiverefresh", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectProactiveRefresh.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectproactiverefresh", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectProactiveRefresh.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectproactiverefresh", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectProactiveRefresh.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectproactiverefresh", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_issandboxmode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectProactiveRefresh.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectproactiverefresh_starthostollamadirectproactiverefreshtimer", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectproactiverefresh_proactiveintervalms", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectProactiveRefresh.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectproactiverefresh_starthostollamadirectproactiverefreshtimer", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectproactiverefresh_runhostollamadirectproactiverefreshtick", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectProactiveRefresh.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectproactiverefresh_starthostollamadirectproactiverefreshtimer", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_issandboxmode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectProactiveRefresh.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectproactiverefresh_runhostollamadirectproactiverefreshtick", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities_buildinternalinferencecapabilitiesresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectProactiveRefresh.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectproactiverefresh_runhostollamadirectproactiverefreshtick", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_invalidatehostcapsbuiltcacheforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectProactiveRefresh.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectproactiverefresh_runhostollamadirectproactiverefreshtick", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_sendproactiveinferencecapabilitiesdcresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectProactiveRefresh.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectproactiverefresh_runhostollamadirectproactiverefreshtick", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_getsessionstate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectProactiveRefresh.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectproactiverefresh_runhostollamadirectproactiverefreshtick", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_listhandshakeidswithopenp2pdatachannel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectProactiveRefresh.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectproactiverefresh_runhostollamadirectproactiverefreshtick", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectProactiveRefresh.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectproactiverefresh_runhostollamadirectproactiverefreshtick", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_coordinationdeviceidforhandshakedevicerole", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectProactiveRefresh.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectproactiverefresh_runhostollamadirectproactiverefreshtick", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectProactiveRefresh.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectproactiverefresh_runhostollamadirectproactiverefreshtick", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectProactiveRefresh.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamadirectproactiverefresh_runhostollamadirectproactiverefreshtick", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_issandboxmode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaNativeDiscovery.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_fetchllamacppmodelsjson", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaNativeDiscovery.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_fetchollamaapitagsjson", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaNativeDiscovery.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_host_ai_default_local_ollama_base", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaNativeDiscovery.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_hostaimodelsfromollamatagsmodels", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaNativeDiscovery.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_hostaiollamatagsdiscoverylog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaNativeDiscovery.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_loghostaiollamadiscovery", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaNativeDiscovery.ts", + "source_location": "L134", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_logsbxhostaimodelsource", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaNativeDiscovery.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_mergesandboxcapabilitieswirewithpeerlanollamatags", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaNativeDiscovery.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_normalizehostloopbackollamabaseurl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaNativeDiscovery.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_parsellamacppmodelsbody", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaNativeDiscovery.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_parseollamatagsbody", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaNativeDiscovery.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_parseopenaimodels", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaNativeDiscovery.ts", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_peerlanollamabaseurlfromdirectbeapingesturl", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaNativeDiscovery.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaNativeDiscovery.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_ingesturlmatchesthisdevicesmvpdirectbeap", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaNativeDiscovery.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_peekhostadvertisedmvpdirectentry", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaNativeDiscovery.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery", + "target": "apps_electron_vite_project_electron_main_internalinference_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaNativeDiscovery.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaNativeDiscovery.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery", + "target": "apps_electron_vite_project_electron_main_internalinference_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaNativeDiscovery.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internalinferencecapabilitiesmodelentry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaNativeDiscovery.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internalinferencecapabilitiesresultwire", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaNativeDiscovery.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery", + "target": "apps_electron_vite_project_electron_main_llm_localllmpaths", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaNativeDiscovery.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery", + "target": "apps_electron_vite_project_electron_main_llm_localllmpaths_default_llamacpp_port", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaNativeDiscovery.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery", + "target": "apps_electron_vite_project_electron_main_llm_localllmpaths_host_ai_default_local_llamacpp_base", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_normalizehostloopbackollamabaseurl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L177", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities_buildinternalinferencecapabilitiesresult", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_normalizehostloopbackollamabaseurl" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaNativeDiscovery.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_parsellamacppmodelsbody", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_parseopenaimodels", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaNativeDiscovery.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_hostaimodelsfromollamatagsmodels", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internalinferencecapabilitiesresultwire" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaNativeDiscovery.ts", + "source_location": "L237", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_mergesandboxcapabilitieswirewithpeerlanollamatags", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_hostaimodelsfromollamatagsmodels", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_hostaimodelsfromollamatagsmodels", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L225", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities_buildinternalinferencecapabilitiesresult", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_hostaimodelsfromollamatagsmodels" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaNativeDiscovery.ts", + "source_location": "L228", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_mergesandboxcapabilitieswirewithpeerlanollamatags", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_parsellamacppmodelsbody", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_parsellamacppmodelsbody", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L180", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities_buildinternalinferencecapabilitiesresult", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_parsellamacppmodelsbody" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_parsellamacppmodelsbody", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L180", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_fetchtagspayloadoutbound", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_parsellamacppmodelsbody", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaNativeDiscovery.ts", + "source_location": "L219", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_mergesandboxcapabilitieswirewithpeerlanollamatags", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_fetchllamacppmodelsjson", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_fetchllamacppmodelsjson", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L179", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities_buildinternalinferencecapabilitiesresult", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_fetchllamacppmodelsjson" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_fetchllamacppmodelsjson", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_fetchtagspayloadoutbound", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_fetchllamacppmodelsjson", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaNativeDiscovery.ts", + "source_location": "L220", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_mergesandboxcapabilitieswirewithpeerlanollamatags", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_loghostaiollamadiscovery", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_loghostaiollamadiscovery", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L201", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities_buildinternalinferencecapabilitiesresult", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_loghostaiollamadiscovery" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaNativeDiscovery.ts", + "source_location": "L189", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_mergesandboxcapabilitieswirewithpeerlanollamatags", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_logsbxhostaimodelsource", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_logsbxhostaimodelsource", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_logsbxhostaimodelsourceaftersandboxcapswire", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_logsbxhostaimodelsource", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaNativeDiscovery.ts", + "source_location": "L214", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_mergesandboxcapabilitieswirewithpeerlanollamatags", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_peerlanollamabaseurlfromdirectbeapingesturl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaNativeDiscovery.ts", + "source_location": "L210", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_mergesandboxcapabilitieswirewithpeerlanollamatags", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_ingesturlmatchesthisdevicesmvpdirectbeap" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaNativeDiscovery.ts", + "source_location": "L180", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_mergesandboxcapabilitieswirewithpeerlanollamatags", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_peekhostadvertisedmvpdirectentry" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaNativeDiscovery.ts", + "source_location": "L177", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_mergesandboxcapabilitieswirewithpeerlanollamatags", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_mergesandboxcapabilitieswirewithpeerlanollamatags", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L1300", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_listhostcapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiollamanativediscovery_mergesandboxcapabilitieswirewithpeerlanollamatags" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOrchestratorBuildSync.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiorchestratorbuildsync", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiorchestratorbuildsync_runhostaiinvalidationiforchestratorbuildchanged", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOrchestratorBuildSync.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiorchestratorbuildsync", + "target": "apps_electron_vite_project_electron_main_internalinference_ipc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOrchestratorBuildSync.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiorchestratorbuildsync", + "target": "apps_electron_vite_project_electron_main_internalinference_ipc_resetlistinferencetargetsipccachefororchestrator", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOrchestratorBuildSync.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiorchestratorbuildsync", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOrchestratorBuildSync.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiorchestratorbuildsync", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_clearhostailisttransientstatefororchestratorbuildchange", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOrchestratorBuildSync.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiorchestratorbuildsync", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOrchestratorBuildSync.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiorchestratorbuildsync", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_closeallp2pinferencesessions", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOrchestratorBuildSync.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiorchestratorbuildsync", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_p2psessionlogreason", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOrchestratorBuildSync.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiorchestratorbuildsync", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOrchestratorBuildSync.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiorchestratorbuildsync", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOrchestratorBuildSync.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiorchestratorbuildsync_runhostaiinvalidationiforchestratorbuildchanged", + "target": "apps_electron_vite_project_electron_main_internalinference_ipc_resetlistinferencetargetsipccachefororchestrator" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOrchestratorBuildSync.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiorchestratorbuildsync_runhostaiinvalidationiforchestratorbuildchanged", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_clearhostailisttransientstatefororchestratorbuildchange" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiOrchestratorBuildSync.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiorchestratorbuildsync_runhostaiinvalidationiforchestratorbuildchanged", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_closeallp2pinferencesessions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiP2pSignalSchemaRejectLog.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaip2psignalschemarejectlog", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaip2psignalschemarejectlog_hostaip2psignalschemarejectkind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiP2pSignalSchemaRejectLog.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaip2psignalschemarejectlog", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaip2psignalschemarejectlog_loghostaisignalschemarejected", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiP2pSignalSchemaRejectLog.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaip2psignalschemarejectlog", + "target": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiP2pSignalSchemaRejectLog.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaip2psignalschemarejectlog", + "target": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact_redactidforlog", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiP2pSignalSchemaRejectLog.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaip2psignalschemarejectlog", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalwireschemaversion", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiP2pSignalSchemaRejectLog.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaip2psignalschemarejectlog", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalwireschemaversion_p2p_signal_wire_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaip2psignalschemarejectlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiP2pSignalSchemaRejectLog.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaip2psignalschemarejectlog_loghostaisignalschemarejected", + "target": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact_redactidforlog" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaip2psignalschemarejectlog_loghostaisignalschemarejected", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L870", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_posthostaidirectbeapadtocoordination", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaip2psignalschemarejectlog_loghostaisignalschemarejected" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L650", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_sendhostaip2psignaloutbound", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaip2psignalschemarejectlog_loghostaisignalschemarejected" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_clearhostaipairingstateforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_diskv1", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_ensuredisk", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_entryfor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_entryv1", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_host_ai_reciprocity_ttl_ms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L172", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_hostaipairinglistblock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L201", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_ishostailedgerasymmetricterminal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_persist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_reconcilehostaipairingentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_recordhostailedgerasymmetric", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_recordhostaipairingstale", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_recordhostaireciprocalcapabilitiessuccess", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L144", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_refreshhostaipairingstalebyttl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_resethostaipairingstatestorefortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L197", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_shouldskipallhostaiprobesforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_storepath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_terminalkind", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_ensuredisk", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_storepath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_persist", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_storepath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L165", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_clearhostaipairingstateforhandshake", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_ensuredisk", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L179", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_hostaipairinglistblock", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_ensuredisk", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_persist", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_ensuredisk", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_reconcilehostaipairingentry", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_ensuredisk", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_recordhostailedgerasymmetric", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_ensuredisk", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_recordhostaipairingstale", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_ensuredisk", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_recordhostaireciprocalcapabilitiessuccess", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_ensuredisk", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_refreshhostaipairingstalebyttl", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_ensuredisk", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L168", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_clearhostaipairingstateforhandshake", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_persist", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_reconcilehostaipairingentry", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_persist", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_recordhostailedgerasymmetric", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_persist", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_recordhostaipairingstale", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_persist", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_recordhostaireciprocalcapabilitiessuccess", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_persist", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L157", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_refreshhostaipairingstalebyttl", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_persist", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_recordhostailedgerasymmetric", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_entryfor", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_recordhostaipairingstale", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_entryfor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_reconcilehostaipairingentry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1840", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_reconcilehostaipairingentry" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_recordhostaireciprocalcapabilitiessuccess", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L2694", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_recordhostaireciprocalcapabilitiessuccess" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_recordhostaireciprocalcapabilitiessuccess", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L1206", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboximpl", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_recordhostaireciprocalcapabilitiessuccess", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_recordhostailedgerasymmetric", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L2706", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_recordhostailedgerasymmetric" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_recordhostailedgerasymmetric", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L1221", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboximpl", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_recordhostailedgerasymmetric", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_refreshhostaipairingstalebyttl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1841", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_refreshhostaipairingstalebyttl" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L202", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_ishostailedgerasymmetricterminal", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_hostaipairinglistblock", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts", + "source_location": "L198", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_shouldskipallhostaiprobesforhandshake", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_hostaipairinglistblock", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_hostaipairinglistblock", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1843", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_hostaipairinglistblock" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_hostaipairinglistblock", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L966", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboximpl", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_hostaipairinglistblock", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_ishostailedgerasymmetricterminal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L1100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_runp2pendpointrepairpass", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipairingstatestore_ishostailedgerasymmetricterminal" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L187", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_asserthostmachinesessionmatcheshandshakehostparty", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L271", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_assertsandboxhostpeerlivepresenceforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_attestationbyhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_hashostpeeridentityboundlivepresence", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_host_peer_live_presence_ttl_ms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_hostpartyidentityfromrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_hostpeerlivepresenceattestation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_hostpeerlivepresencesource", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L211", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_hostpublisheridentitywirefields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L232", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_nudgehostpeerlivepresenceredial", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_partyidentityfromsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_partyidentitymatchesexpected", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_publisheridentityfromwirefields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_resethostpeerlivepresencefortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_storeattestation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_tryrecordhostpeerlivepresencefromcapabilitieswire", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_tryrecordhostpeerlivepresencefrompolicyresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L161", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_tryrecordhostpeerlivepresencefromrelayad", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence", + "target": "apps_electron_vite_project_electron_main_internalinference_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_handshakesameprincipal", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L183", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_hashostpeeridentityboundlivepresence", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_hostpartyidentityfromrecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_storeattestation", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_hostpartyidentityfromrecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L216", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_hostpublisheridentitywirefields", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_partyidentityfromsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L184", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_hashostpeeridentityboundlivepresence", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_partyidentitymatchesexpected", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_storeattestation", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_partyidentitymatchesexpected", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L156", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_tryrecordhostpeerlivepresencefromcapabilitieswire", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_publisheridentityfromwirefields", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_tryrecordhostpeerlivepresencefrompolicyresponse", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_publisheridentityfromwirefields", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L168", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_tryrecordhostpeerlivepresencefromrelayad", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_publisheridentityfromwirefields", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L158", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_tryrecordhostpeerlivepresencefromcapabilitieswire", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_storeattestation", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_tryrecordhostpeerlivepresencefrompolicyresponse", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_storeattestation", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L172", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_tryrecordhostpeerlivepresencefromrelayad", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_storeattestation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_tryrecordhostpeerlivepresencefrompolicyresponse", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L1355", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboximpl", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_tryrecordhostpeerlivepresencefrompolicyresponse", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_tryrecordhostpeerlivepresencefromcapabilitieswire", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L2696", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_tryrecordhostpeerlivepresencefromcapabilitieswire" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_tryrecordhostpeerlivepresencefromcapabilitieswire", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L1095", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboximpl", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_tryrecordhostpeerlivepresencefromcapabilitieswire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_tryrecordhostpeerlivepresencefromrelayad", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L959", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_applyhostaidirectbeapadfromrelaypayload", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_tryrecordhostpeerlivepresencefromrelayad" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L287", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_assertsandboxhostpeerlivepresenceforhandshake", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_hashostpeeridentityboundlivepresence", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_hashostpeeridentityboundlivepresence", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L3135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_hashostpeeridentityboundlivepresence" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_hashostpeeridentityboundlivepresence", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L192", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_waitforlivepresenceafterredial", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_hashostpeeridentityboundlivepresence", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_asserthostmachinesessionmatcheshandshakehostparty", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_handshakesameprincipal" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_asserthostmachinesessionmatcheshandshakehostparty", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities_buildinternalinferencecapabilitiesresult", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_asserthostmachinesessionmatcheshandshakehostparty" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_asserthostmachinesessionmatcheshandshakehostparty", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget_handlegetinternalinferencepolicy", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_asserthostmachinesessionmatcheshandshakehostparty" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_hostpublisheridentitywirefields", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities_buildinternalinferencecapabilitiesresult", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_hostpublisheridentitywirefields" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_hostpublisheridentitywirefields", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L252", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget_handlegetinternalinferencepolicy", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_hostpublisheridentitywirefields" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L240", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_nudgehostpeerlivepresenceredial", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L243", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_nudgehostpeerlivepresenceredial", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L249", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_nudgehostpeerlivepresenceredial", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_nudgehostpeerlivepresenceredial", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L3138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_nudgehostpeerlivepresenceredial" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_nudgehostpeerlivepresenceredial", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L193", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_waitforlivepresenceafterredial", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_nudgehostpeerlivepresenceredial", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts", + "source_location": "L283", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaipeerlivepresence_assertsandboxhostpeerlivepresenceforhandshake", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProbeRouteLog.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiproberoutelog", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiproberoutelog_hostaiproberoutelogpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProbeRouteLog.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiproberoutelog", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiproberoutelog_loghostaiproberoute", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiproberoutelog", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiproberoutelog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiproberoutelog_loghostaiproberoute", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L882", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboximpl", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiproberoutelog_loghostaiproberoute", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiproberoutelog_loghostaiproberoute", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L540", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_listhostcapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiproberoutelog_loghostaiproberoute" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementBlockedReason.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementblockedreason", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementblockedreason_deriveprovideradvertisementblockedreason", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementBlockedReason.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementblockedreason", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementblockedreason_hostailedgereffectiveroleforad", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementLog.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementlog", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementblockedreason", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementLog.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementlog", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementblockedreason_deriveprovideradvertisementblockedreason", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementLog.ts", + "source_location": "L170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementlog_buildhostaiprovideradvertisementpayload", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementblockedreason_deriveprovideradvertisementblockedreason" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementLog.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementlog", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementlog_buildhostaiprovideradvertisementpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementLog.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementlog", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementlog_hostaiprovideradvertisementpayload", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementLog.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementlog", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementLog.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementlog", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve_loghostairemotepolicydecision", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementLog.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementlog", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve_resolvehostairemoteinferencepolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementLog.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementlog", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementLog.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementlog", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_gethostinternalinferencepolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementLog.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementlog", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementLog.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementlog", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hasactiveinternalledgerlocalhostpeersandboxforhostui", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementLog.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementlog", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementLog.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementlog", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_gethostpublishedmvpdirectp2pingesturl", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementLog.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementlog", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_hostdirectp2padvertisementheaders", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementLog.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementlog", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_p2p_direct_p2p_endpoint_header", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementLog.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementlog", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementLog.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementlog", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementLog.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementlog", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementLog.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementlog", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_issandboxmode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementLog.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementlog", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementLog.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementlog", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_getp2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/handshakeAvailableModelsCompute.ts", + "source_location": "L240", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_handshakeavailablemodelscompute_computehandshakeavailablemodels", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementLog.ts", + "source_location": "L151", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementlog_buildhostaiprovideradvertisementpayload", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve_loghostairemotepolicydecision" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementLog.ts", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementlog_buildhostaiprovideradvertisementpayload", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve_resolvehostairemoteinferencepolicy" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementLog.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementlog_buildhostaiprovideradvertisementpayload", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_gethostinternalinferencepolicy" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementLog.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementlog_buildhostaiprovideradvertisementpayload", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hasactiveinternalledgerlocalhostpeersandboxforhostui" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementLog.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementlog_buildhostaiprovideradvertisementpayload", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_gethostpublishedmvpdirectp2pingesturl" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementLog.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementlog_buildhostaiprovideradvertisementpayload", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_hostdirectp2padvertisementheaders" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementLog.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementlog_buildhostaiprovideradvertisementpayload", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementLog.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementlog_buildhostaiprovideradvertisementpayload", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementLog.ts", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementlog_buildhostaiprovideradvertisementpayload", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_issandboxmode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementLog.ts", + "source_location": "L137", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiprovideradvertisementlog_buildhostaiprovideradvertisementpayload", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_getp2pconfig" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRelayCapability.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairelaycapability", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairelaycapability_cache", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRelayCapability.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairelaycapability", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairelaycapability_dofetch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRelayCapability.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairelaycapability", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairelaycapability_fetchhostaip2psignalingfromcoordinationhealth", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRelayCapability.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairelaycapability", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairelaycapability_host_ai_p2p_signaling_schema_supported", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRelayCapability.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairelaycapability", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairelaycapability_p2pstackenabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRelayCapability.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairelaycapability", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairelaycapability_resethostairelaycapabilitycachefortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRelayCapability.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairelaycapability", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairelaycapability_resolverelayhostaip2psignalingfortransportdecider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRelayCapability.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairelaycapability", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairelaycapability_sethostairelaycapabilityfetchfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRelayCapability.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairelaycapability", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRelayCapability.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairelaycapability", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_p2pinferenceflagsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRelayCapability.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairelaycapability", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRelayCapability.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairelaycapability", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildlegacyendpointinfofordecider", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRelayCapability.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairelaycapability", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRelayCapability.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairelaycapability", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_getp2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L1074", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildhostaitransportdeciderinputasync", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairelaycapability", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRelayCapability.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairelaycapability_resolverelayhostaip2psignalingfortransportdecider", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairelaycapability_p2pstackenabled", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRelayCapability.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairelaycapability_fetchhostaip2psignalingfromcoordinationhealth", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairelaycapability_dofetch", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRelayCapability.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairelaycapability_resolverelayhostaip2psignalingfortransportdecider", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairelaycapability_fetchhostaip2psignalingfromcoordinationhealth", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRelayCapability.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairelaycapability_resolverelayhostaip2psignalingfortransportdecider", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildlegacyendpointinfofordecider" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRelayCapability.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairelaycapability_resolverelayhostaip2psignalingfortransportdecider", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_getp2pconfig" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRemoteInferencePolicyResolve.ts", + "source_location": "L188", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve_hostaibeapadpublishshouldretryafterpolicydenial", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRemoteInferencePolicyResolve.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve_hostairemotepolicyresolution", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRemoteInferencePolicyResolve.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve_internalhostpairingdiagnosticflags", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRemoteInferencePolicyResolve.ts", + "source_location": "L194", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve_loghostairemotepolicydecision", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRemoteInferencePolicyResolve.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve_resolvehostairemoteinferencepolicy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRemoteInferencePolicyResolve.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve_resolvehostairemoteinferencepolicybesteffort", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRemoteInferencePolicyResolve.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRemoteInferencePolicyResolve.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_gethostinternalinferencepolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRemoteInferencePolicyResolve.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_remotehostinferenceuserchoice", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRemoteInferencePolicyResolve.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve", + "target": "apps_electron_vite_project_electron_main_internalinference_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRemoteInferencePolicyResolve.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRemoteInferencePolicyResolve.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_handshakesameprincipal", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRemoteInferencePolicyResolve.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRemoteInferencePolicyResolve.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRemoteInferencePolicyResolve.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRemoteInferencePolicyResolve.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve_rationale_126", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceExecute.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRemoteInferencePolicyResolve.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve_internalhostpairingdiagnosticflags", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRemoteInferencePolicyResolve.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve_internalhostpairingdiagnosticflags", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_handshakesameprincipal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRemoteInferencePolicyResolve.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve_internalhostpairingdiagnosticflags", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRemoteInferencePolicyResolve.ts", + "source_location": "L226", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve_loghostairemotepolicydecision", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve_internalhostpairingdiagnosticflags", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRemoteInferencePolicyResolve.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve_resolvehostairemoteinferencepolicy", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_gethostinternalinferencepolicy" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRemoteInferencePolicyResolve.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve_resolvehostairemoteinferencepolicy", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRemoteInferencePolicyResolve.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve_resolvehostairemoteinferencepolicy", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRemoteInferencePolicyResolve.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve_resolvehostairemoteinferencepolicybesteffort", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve_resolvehostairemoteinferencepolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve_resolvehostairemoteinferencepolicy", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget_handlegetinternalinferencepolicy", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve_resolvehostairemoteinferencepolicy" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRemoteInferencePolicyResolve.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve_resolvehostairemoteinferencepolicybesteffort", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_gethostinternalinferencepolicy" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve_resolvehostairemoteinferencepolicybesteffort", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities_buildinternalinferencecapabilitiesresult", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve_resolvehostairemoteinferencepolicybesteffort" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceExecute.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve_resolvehostairemoteinferencepolicybesteffort", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceExecute.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute_runhostinternalinference", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve_resolvehostairemoteinferencepolicybesteffort" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve_resolvehostairemoteinferencepolicybesteffort", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L829", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_authorizeinternalp2psession", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve_resolvehostairemoteinferencepolicybesteffort", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRemoteInferencePolicyResolve.ts", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve_loghostairemotepolicydecision", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_gethostinternalinferencepolicy" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRemoteInferencePolicyResolve.ts", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve_loghostairemotepolicydecision", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRemoteInferencePolicyResolve.ts", + "source_location": "L201", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairemoteinferencepolicyresolve_loghostairemotepolicydecision", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRoleGateLog.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairolegatelog", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairolegatelog_hostairolegateloginput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRoleGateLog.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairolegatelog", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairolegatelog_loghostairolegate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRoleGateLog.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairolegatelog", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRoleGateLog.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairolegatelog", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairolegatelog", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairolegatelog", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pReachabilityGet.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2preachabilityget", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairolegatelog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRoleGateLog.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairolegatelog_loghostairolegate", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairolegatelog_loghostairolegate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L207", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_asserthostinbound", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairolegatelog_loghostairolegate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairolegatelog_loghostairolegate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget_handlegetinternalinferencepolicy", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairolegatelog_loghostairolegate" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pReachabilityGet.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2preachabilityget", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairolegatelog_loghostairolegate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pReachabilityGet.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2preachabilityget_handlegetp2preachability", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairolegatelog_loghostairolegate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRouteSelectLog.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairouteselectlog", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairouteselectlog_computebeapmissingforhostairouteselect", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRouteSelectLog.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairouteselectlog", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairouteselectlog_hostairouteselectkind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRouteSelectLog.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairouteselectlog", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairouteselectlog_loghostairouteselect", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRouteSelectLog.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairouteselectlog", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiRouteSelectLog.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostairouteselectlog", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_hostaitransportdeciderresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiRouteSelectCaps.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostairouteselectcaps", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairouteselectlog", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairouteselectlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiRouteSelectCaps.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostairouteselectcaps", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairouteselectlog_hostairouteselectkind", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairouteselectlog_hostairouteselectkind", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiRouteSelectCaps.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostairouteselectcaps", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairouteselectlog_loghostairouteselect", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiRouteSelectCaps.ts", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostairouteselectcaps_loghostairouteselectaftersandboxcapabilitieswire", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairouteselectlog_loghostairouteselect" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairouteselectlog_loghostairouteselect", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_loghostairouteselectfromdecider", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairouteselectlog_loghostairouteselect", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiRouteSelectCaps.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostairouteselectcaps", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairouteselectlog_computebeapmissingforhostairouteselect", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiRouteSelectCaps.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostairouteselectcaps_loghostairouteselectaftersandboxcapabilitieswire", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairouteselectlog_computebeapmissingforhostairouteselect" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairouteselectlog_computebeapmissingforhostairouteselect", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_loghostairouteselectfromdecider", + "target": "apps_electron_vite_project_electron_main_internalinference_hostairouteselectlog_computebeapmissingforhostairouteselect", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler_innertypefromplaintext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L206", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler_sealandsendinferenceoutcome", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler_tryhandlehostaisealedinferencerequestrelaycapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire_assertinferencepayloadwithincapsulelimit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire_host_ai_inference_error_inner_type", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire_host_ai_inference_relay_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire_host_ai_inference_request_inner_type", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire_host_ai_inference_result_inner_type", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire_hostaiinferenceerrorrelaywire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire_hostaiinferenceresultrelaywire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire_ishostaiinferencerequestrelayinnertype", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire_parsehostaiinferencerequestfromplaintext", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute_buildhostinferenceerrorwire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute_runhostinternalinference", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler", + "target": "apps_electron_vite_project_electron_main_internalinference_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_ishostmode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_openservicerpcpayloadresolvinglocalkey", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_sealedservicerpcenvelope", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_sealservicerpcpayload", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler_tryhandlehostaisealedinferencerequestrelaycapsule", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler_innertypefromplaintext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler_tryhandlehostaisealedinferencerequestrelaycapsule", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler_sealandsendinferenceoutcome", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L157", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler_tryhandlehostaisealedinferencerequestrelaycapsule", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire_assertinferencepayloadwithincapsulelimit" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler_tryhandlehostaisealedinferencerequestrelaycapsule", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire_ishostaiinferencerequestrelayinnertype" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler_tryhandlehostaisealedinferencerequestrelaycapsule", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire_parsehostaiinferencerequestfromplaintext" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler_tryhandlehostaisealedinferencerequestrelaycapsule", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute_runhostinternalinference" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler_tryhandlehostaisealedinferencerequestrelaycapsule", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler_tryhandlehostaisealedinferencerequestrelaycapsule", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler_tryhandlehostaisealedinferencerequestrelaycapsule", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler_tryhandlehostaisealedinferencerequestrelaycapsule", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_ishostmode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler_tryhandlehostaisealedinferencerequestrelaycapsule", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_openservicerpcpayloadresolvinglocalkey" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts", + "source_location": "L214", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayhandler_sealandsendinferenceoutcome", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_sealservicerpcpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayResultHandler.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayresulthandler", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayresulthandler_innertypefromplaintext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayResultHandler.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayresulthandler", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayresulthandler_tryhandlehostaisealedinferenceresultrelaycapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayResultHandler.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayresulthandler", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayResultHandler.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayresulthandler", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire_host_ai_inference_result_inner_type", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayResultHandler.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayresulthandler", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire_ishostaiinferenceresultorerrorrelayinnertype", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayResultHandler.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayresulthandler", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire_parsehostaiinferenceresultorerrorfromplaintext", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayResultHandler.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayresulthandler", + "target": "apps_electron_vite_project_electron_main_internalinference_pendingrequests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayResultHandler.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayresulthandler", + "target": "apps_electron_vite_project_electron_main_internalinference_pendingrequests_pendingresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayResultHandler.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayresulthandler", + "target": "apps_electron_vite_project_electron_main_internalinference_pendingrequests_resolveinternalinferencebyrequestid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayResultHandler.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayresulthandler", + "target": "apps_electron_vite_project_electron_main_internalinference_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayResultHandler.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayresulthandler", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayResultHandler.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayresulthandler", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayResultHandler.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayresulthandler", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayResultHandler.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayresulthandler", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayResultHandler.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayresulthandler", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_iseffectivesandboxnode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayResultHandler.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayresulthandler", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayResultHandler.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayresulthandler", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_openservicerpcpayloadresolvinglocalkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayResultHandler.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayresulthandler_tryhandlehostaisealedinferenceresultrelaycapsule", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayresulthandler_innertypefromplaintext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayResultHandler.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayresulthandler_tryhandlehostaisealedinferenceresultrelaycapsule", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire_ishostaiinferenceresultorerrorrelayinnertype" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayResultHandler.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayresulthandler_tryhandlehostaisealedinferenceresultrelaycapsule", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire_parsehostaiinferenceresultorerrorfromplaintext" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayResultHandler.ts", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayresulthandler_tryhandlehostaisealedinferenceresultrelaycapsule", + "target": "apps_electron_vite_project_electron_main_internalinference_pendingrequests_resolveinternalinferencebyrequestid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayResultHandler.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayresulthandler_tryhandlehostaisealedinferenceresultrelaycapsule", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayResultHandler.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayresulthandler_tryhandlehostaisealedinferenceresultrelaycapsule", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayResultHandler.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayresulthandler_tryhandlehostaisealedinferenceresultrelaycapsule", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_iseffectivesandboxnode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayResultHandler.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelayresulthandler_tryhandlehostaisealedinferenceresultrelaycapsule", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_openservicerpcpayloadresolvinglocalkey" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelaySend.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaysend", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaysend_sealedinferencesendresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelaySend.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaysend", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaysend_sendsealedhostaiinferencerequest", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelaySend.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaysend", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelaySend.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaysend", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire_assertinferencepayloadwithincapsulelimit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelaySend.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaysend", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire_host_ai_inference_relay_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelaySend.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaysend", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire_host_ai_inference_request_inner_type", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelaySend.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaysend", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire_hostaiinferencerequestrelaywire", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelaySend.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaysend", + "target": "apps_electron_vite_project_electron_main_internalinference_pendingrequests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelaySend.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaysend", + "target": "apps_electron_vite_project_electron_main_internalinference_pendingrequests_pendingresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelaySend.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaysend", + "target": "apps_electron_vite_project_electron_main_internalinference_pendingrequests_registerinternalinferencerequest", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelaySend.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaysend", + "target": "apps_electron_vite_project_electron_main_internalinference_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelaySend.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaysend", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelaySend.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaysend", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelaySend.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaysend", + "target": "apps_electron_vite_project_electron_main_llm_localmodelidentity", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelaySend.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaysend", + "target": "apps_electron_vite_project_electron_main_llm_localmodelidentity_canonicallocalmodelname", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelaySend.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaysend", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelaySend.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaysend", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelaySend.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaysend", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelaySend.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaysend", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_assertsandboxmaysealservicerpcinnertype", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelaySend.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaysend", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelaySend.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaysend", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_sealservicerpcpayload", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostChat.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostchat_runsandboxhostinferencechat", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaysend", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxRequest.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxrequest_runsandboxpongtestfromhosthandshake", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaysend", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelaySend.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaysend_sendsealedhostaiinferencerequest", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire_assertinferencepayloadwithincapsulelimit" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelaySend.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaysend_sendsealedhostaiinferencerequest", + "target": "apps_electron_vite_project_electron_main_internalinference_pendingrequests_registerinternalinferencerequest" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelaySend.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaysend_sendsealedhostaiinferencerequest", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelaySend.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaysend_sendsealedhostaiinferencerequest", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelaySend.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaysend_sendsealedhostaiinferencerequest", + "target": "apps_electron_vite_project_electron_main_llm_localmodelidentity_canonicallocalmodelname" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelaySend.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaysend_sendsealedhostaiinferencerequest", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelaySend.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaysend_sendsealedhostaiinferencerequest", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_assertsandboxmaysealservicerpcinnertype" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelaySend.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaysend_sendsealedhostaiinferencerequest", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_sealservicerpcpayload" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayWire.ts", + "source_location": "L158", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire_assertinferencepayloadwithincapsulelimit", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayWire.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire_host_ai_inference_error_inner_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayWire.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire_host_ai_inference_relay_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayWire.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire_host_ai_inference_request_inner_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayWire.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire_host_ai_inference_result_inner_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayWire.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire_hostaiinferenceerrorrelaywire", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayWire.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire_hostaiinferencerelaywire", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayWire.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire_hostaiinferencerequestrelaywire", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayWire.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire_hostaiinferenceresultrelaywire", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayWire.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire_ishostaiinferencerequestrelayinnertype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayWire.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire_ishostaiinferenceresultorerrorrelayinnertype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayWire.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire_parsehostaiinferencerequestfromplaintext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayWire.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaisealedinferencerelaywire_parsehostaiinferenceresultorerrorfromplaintext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiStageLog.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaistagelog", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaistagelog_gethostaibuildstamp", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiStageLog.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaistagelog", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaistagelog_hostaip2pflagsforlog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiStageLog.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaistagelog", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaistagelog_hostaistagelogargs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiStageLog.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaistagelog", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaistagelog_hostaistagelogname", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiStageLog.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaistagelog", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaistagelog_loghostaistage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiStageLog.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaistagelog", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaistagelog_newhostaicorrelationchain", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiStageLog.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaistagelog", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiStageLog.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaistagelog", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiStageLog.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaistagelog", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_p2pinferenceflagsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaistagelog", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaistagelog", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaistagelog", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaistagelog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaistagelog_gethostaibuildstamp", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L778", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboximpl", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaistagelog_gethostaibuildstamp", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaistagelog_gethostaibuildstamp", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L383", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_listhostcapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaistagelog_gethostaibuildstamp" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiStageLog.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaistagelog_loghostaistage", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaistagelog_hostaip2pflagsforlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiStageLog.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaistagelog_loghostaistage", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaistagelog_loghostaistage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L783", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboximpl", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaistagelog_loghostaistage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaistagelog_loghostaistage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L391", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_listhostcapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaistagelog_loghostaistage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaistagelog_newhostaicorrelationchain", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1934", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaistagelog_newhostaicorrelationchain" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaistagelog_newhostaicorrelationchain", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L904", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_beginhostaiensuresessionchain", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaistagelog_newhostaicorrelationchain", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaistagelog_newhostaicorrelationchain", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L774", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboximpl", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaistagelog_newhostaicorrelationchain", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaistagelog_newhostaicorrelationchain", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L381", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_listhostcapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaistagelog_newhostaicorrelationchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiTargetStatus.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaitargetstatus", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaitargetstatus_hostaitargetstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaitargetstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaitargetstatus_hostaitargetstatus", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1077", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostinternalinferencelistitem", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaitargetstatus_hostaitargetstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiTransportDecideLog.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaitransportdecidelog", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaitransportdecidelog_clearhostaitransportdecidededupecache", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiTransportDecideLog.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaitransportdecidelog", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaitransportdecidelog_fingerprintbyhandshakesecond", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiTransportDecideLog.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaitransportdecidelog", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaitransportdecidelog_loghostaitransportdecidelistline", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiTransportDecideLog.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaitransportdecidelog", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaitransportdecidelog_prunetransportdecidededupe", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiTransportDecideLog.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaitransportdecidelog", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaitransportdecidelog_resethostaitransportdecidededupefortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaitransportdecidelog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiTransportDecideLog.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaitransportdecidelog_loghostaitransportdecidelistline", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaitransportdecidelog_prunetransportdecidededupe", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaitransportdecidelog_clearhostaitransportdecidededupecache", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L385", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_clearhostailisttransientstatefororchestratorbuildchange", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaitransportdecidelog_clearhostaitransportdecidededupecache" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaitransportdecidelog_loghostaitransportdecidelistline", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1977", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaitransportdecidelog_loghostaitransportdecidelistline" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiTransportMatrix.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaitransportmatrix", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaitransportmatrix_ishostailisttransportproven", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiTransportMatrix.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaitransportmatrix", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiTransportMatrix.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaitransportmatrix", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait_isp2pdatachannelupforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiTransportMatrix.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaitransportmatrix", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiTransportMatrix.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaitransportmatrix", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_hostaitransportdeciderresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaitransportmatrix", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiTransportMatrix.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaitransportmatrix_ishostailisttransportproven", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait_isp2pdatachannelupforhandshake" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaitransportmatrix_ishostailisttransportproven", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L3216", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaitransportmatrix_ishostailisttransportproven" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedRelayRegistration.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedrelayregistration", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedrelayregistration_getregisteredhostaiunifiedrelaysend", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedRelayRegistration.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedrelayregistration", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedrelayregistration_hostaiunifiedrelaysendfn", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedRelayRegistration.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedrelayregistration", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedrelayregistration_hostaiunifiedrelaysendresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedRelayRegistration.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedrelayregistration", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedrelayregistration_registerhostaiunifiedrelaysend", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedRelayRegistration.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedrelayregistration", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedrelayregistration_resethostaiunifiedrelayregistrationfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedrelayregistration", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedrelayregistration_getregisteredhostaiunifiedrelaysend", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_sendhostaip2psignalbodyviaunifiedrelaywhenenabled", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedrelayregistration_getregisteredhostaiunifiedrelaysend", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelay.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelay", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelay_hostaiunifiedrelaysenddeps", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelay.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelay", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelay_hostaiunifiedrelaysendresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelay.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelay", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelay_ishostaiunifiedservicerpcrelayactive", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelay.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelay", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelay_sethostaiunifiedrelaysenddepsfortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelay.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelay", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelay_trysendhostaip2psignalviaunifiedrelay", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelay.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelay", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelaywire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelay.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelay", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelaywire_buildhostaip2psignalunifiedrelaywire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelay.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelay", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelaywire_host_ai_p2p_signal_unified_relay_inner_type", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelay.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelay", + "target": "apps_electron_vite_project_electron_main_internalinference_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelay.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelay", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelay.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelay", + "target": "apps_electron_vite_project_electron_main_internalinference_unifiedservicerpcrelayflags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelay.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelay", + "target": "apps_electron_vite_project_electron_main_internalinference_unifiedservicerpcrelayflags_isunifiedservicerpcrelayenabled", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelay.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelay", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelay.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelay", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_assertsandboxmaysealservicerpcinnertype", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelay.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelay", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_iseffectivesandboxnode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelay.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelay_ishostaiunifiedservicerpcrelayactive", + "target": "apps_electron_vite_project_electron_main_internalinference_unifiedservicerpcrelayflags_isunifiedservicerpcrelayenabled" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelay.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelay_trysendhostaip2psignalviaunifiedrelay", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelaywire_buildhostaip2psignalunifiedrelaywire" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelay.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelay_trysendhostaip2psignalviaunifiedrelay", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelay.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelay_trysendhostaip2psignalviaunifiedrelay", + "target": "apps_electron_vite_project_electron_main_internalinference_unifiedservicerpcrelayflags_isunifiedservicerpcrelayenabled" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelay.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelay_trysendhostaip2psignalviaunifiedrelay", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_assertsandboxmaysealservicerpcinnertype" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelay.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelay_trysendhostaip2psignalviaunifiedrelay", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_iseffectivesandboxnode" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayHandler.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler_asserthostmayreceivehostaiunifiedrelayinnertype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayHandler.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler_assertlocalmayreceivehostaiunifiedrelayinner", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayHandler.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler_host_permitted_host_ai_unified_relay_inner_types", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayHandler.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler_hostaiunifiedrelayhandlerdeps", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayHandler.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler_parseinnertypefromplaintext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayHandler.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler_sethostaiunifiedrelayhandlerdepsfortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayHandler.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler_tryhandlehostaiunifiedservicerpcrelaycapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayHandler.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelaywire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayHandler.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelaywire_host_ai_p2p_signal_unified_relay_inner_type", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayHandler.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelaywire_parsehostaip2psignalunifiedrelaywire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayHandler.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelaywire_parsep2psignalpayloadfromunifiedrelaybody", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayHandler.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayHandler.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayHandler.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayHandler.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_assertsandboxmayreceivesealedservicerpcinnertype", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayHandler.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_iseffectivesandboxnode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayHandler.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayHandler.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_openservicerpcpayload", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayHandler.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler_asserthostmayreceivehostaiunifiedrelayinnertype", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler_host_permitted_host_ai_unified_relay_inner_types" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayHandler.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler_assertlocalmayreceivehostaiunifiedrelayinner", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler_asserthostmayreceivehostaiunifiedrelayinnertype", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayHandler.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler_assertlocalmayreceivehostaiunifiedrelayinner", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_assertsandboxmayreceivesealedservicerpcinnertype", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayHandler.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler_assertlocalmayreceivehostaiunifiedrelayinner", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_iseffectivesandboxnode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayHandler.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler_tryhandlehostaiunifiedservicerpcrelaycapsule", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler_assertlocalmayreceivehostaiunifiedrelayinner", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayHandler.ts", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler_tryhandlehostaiunifiedservicerpcrelaycapsule", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler_parseinnertypefromplaintext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayHandler.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler_tryhandlehostaiunifiedservicerpcrelaycapsule", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelaywire_parsehostaip2psignalunifiedrelaywire" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayHandler.ts", + "source_location": "L157", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler_tryhandlehostaiunifiedservicerpcrelaycapsule", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelaywire_parsep2psignalpayloadfromunifiedrelaybody" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayHandler.ts", + "source_location": "L168", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler_tryhandlehostaiunifiedservicerpcrelaycapsule", + "target": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayHandler.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler_tryhandlehostaiunifiedservicerpcrelaycapsule", + "target": "apps_electron_vite_project_electron_main_internalinference_unifiedservicerpcrelayflags", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayHandler.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler_tryhandlehostaiunifiedservicerpcrelaycapsule", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayHandler.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelayhandler_tryhandlehostaiunifiedservicerpcrelaycapsule", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_openservicerpcpayload" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayWire.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelaywire", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelaywire_buildhostaip2psignalunifiedrelaywire", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayWire.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelaywire", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelaywire_host_ai_p2p_signal_unified_relay_inner_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayWire.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelaywire", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelaywire_host_ai_p2p_signal_unified_relay_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayWire.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelaywire", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelaywire_hostaip2psignalunifiedrelaywire", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayWire.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelaywire", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelaywire_parsehostaip2psignalunifiedrelaywire", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayWire.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelaywire", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiunifiedservicerpcrelaywire_parsep2psignalpayloadfromunifiedrelaybody", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiWebrtcOfferStart.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart_hostaiwebrtcofferstarttesthooks", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiWebrtcOfferStart.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart_hostaiwebrtcstarterror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiWebrtcOfferStart.ts", + "source_location": "L176", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart_starthostaip2pwebrtcsessionoffer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiWebrtcOfferStart.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart_startwebrtcanswererforhostaisession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiWebrtcOfferStart.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart_startwebrtcofferforhostaisession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiWebrtcOfferStart.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart_waitforcoordinationwebsocketforrelayifneeded", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiWebrtcOfferStart.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart_webrtcofferstartresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiWebrtcOfferStart.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart", + "target": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiWebrtcOfferStart.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart", + "target": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact_redactidforlog", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiWebrtcOfferStart.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiWebrtcOfferStart.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiWebrtcOfferStart.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiWebrtcOfferStart.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_shouldsendhostaip2psignalviacoordination", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiWebrtcOfferStart.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationwsholder", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiWebrtcOfferStart.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationwsholder_getcoordinationwsclient", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiWebrtcOfferStart.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart_hostaiwebrtcstarterror", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart_hostaiwebrtcstarterror_constructor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart_hostaiwebrtcstarterror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiWebrtcOfferStart.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart_startwebrtcanswererforhostaisession", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart_waitforcoordinationwebsocketforrelayifneeded", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiWebrtcOfferStart.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart_startwebrtcofferforhostaisession", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart_waitforcoordinationwebsocketforrelayifneeded", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiWebrtcOfferStart.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart_waitforcoordinationwebsocketforrelayifneeded", + "target": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact_redactidforlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiWebrtcOfferStart.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart_waitforcoordinationwebsocketforrelayifneeded", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_shouldsendhostaip2psignalviacoordination", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiWebrtcOfferStart.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart_waitforcoordinationwebsocketforrelayifneeded", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationwsholder_getcoordinationwsclient", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiWebrtcOfferStart.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart_startwebrtcofferforhostaisession", + "target": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact_redactidforlog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiWebrtcOfferStart.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart_startwebrtcofferforhostaisession", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiWebrtcOfferStart.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart_startwebrtcofferforhostaisession", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiWebrtcOfferStart.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart_startwebrtcofferforhostaisession", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportwindow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart_startwebrtcofferforhostaisession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1145", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensuresession", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart_startwebrtcofferforhostaisession" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiWebrtcOfferStart.ts", + "source_location": "L144", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart_startwebrtcanswererforhostaisession", + "target": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact_redactidforlog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiWebrtcOfferStart.ts", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart_startwebrtcanswererforhostaisession", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiWebrtcOfferStart.ts", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart_startwebrtcanswererforhostaisession", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostAiWebrtcOfferStart.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart_startwebrtcanswererforhostaisession", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportwindow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart_startwebrtcanswererforhostaisession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1373", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensureanswererwebrtctransportifneeded", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart_startwebrtcanswererforhostaisession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1343", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_tryattachp2psessionforinboundsignaling", + "target": "apps_electron_vite_project_electron_main_internalinference_hostaiwebrtcofferstart_startwebrtcanswererforhostaisession" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities_applyhostollamadirectwirefields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities_buildinternalinferencecapabilitiesresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities_digits6frompairing", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities_enforcepolicycapabilityinvariant", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities_hashmodelnameforlog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities_hostinferencecapabilitiesbuildmeta", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities_loghostaicapsmodelsource", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_gethostinternalinferencepolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_coordinationdeviceidforhandshakedevicerole", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internal_inference_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internalinferencecapabilitiesmodelentry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internalinferencecapabilitiesresultwire", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities_buildinternalinferencecapabilitiesresult", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities_digits6frompairing", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L213", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities_buildinternalinferencecapabilitiesresult", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities_hashmodelnameforlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities_hostinferencecapabilitiesbuildmeta", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L319", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities_buildinternalinferencecapabilitiesresult", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities_enforcepolicycapabilityinvariant", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L189", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities_buildinternalinferencecapabilitiesresult", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities_applyhostollamadirectwirefields", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L268", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities_buildinternalinferencecapabilitiesresult", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities_loghostaicapsmodelsource", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities_buildinternalinferencecapabilitiesresult", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_gethostinternalinferencepolicy" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities_buildinternalinferencecapabilitiesresult", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_coordinationdeviceidforhandshakedevicerole" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities_buildinternalinferencecapabilitiesresult", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities_buildinternalinferencecapabilitiesresult", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities_buildinternalinferencecapabilitiesresult", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities_buildinternalinferencecapabilitiesresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L315", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_handleinternalinferencecapabilitiesrequest", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities_buildinternalinferencecapabilitiesresult" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities_buildinternalinferencecapabilitiesresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L444", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_handlep2pdcinferencecapabilitiesashost", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecapabilities_buildinternalinferencecapabilitiesresult" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceConcurrency.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferenceconcurrency", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferenceconcurrency_getactiveinternalinferencecount", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceConcurrency.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferenceconcurrency", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferenceconcurrency_resetconcurrencyfortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceConcurrency.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferenceconcurrency", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferenceconcurrency_tryacquirehostinferenceslot", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceConcurrency.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferenceconcurrency", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceConcurrency.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferenceconcurrency", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_gethostinternalinferencepolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceExecute.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferenceconcurrency", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceConcurrency.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferenceconcurrency_tryacquirehostinferenceslot", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_gethostinternalinferencepolicy" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceExecute.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferenceconcurrency_tryacquirehostinferenceslot", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceExecute.ts", + "source_location": "L212", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute_runhostinternalinference", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferenceconcurrency_tryacquirehostinferenceslot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L193", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_asserthostinbound", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L160", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_assertnotauthenticated", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_coreinferencehandoff", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_fail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L494", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_handleinternalinferencecancel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L282", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_handleinternalinferencecapabilitiesrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L325", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_handleinternalinferencerequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L155", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_hostinferencecorecancelsuccess", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L153", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_hostinferencecorecapabilitiessuccess", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_hostinferencecorecontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_hostinferencecorefailure", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L154", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_hostinferencecoreinferencesuccess", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_hostinferencetransport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_inferencedeliverymeta", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_isvalidinternalservicebaseenvelope", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_loadservicerecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_retryableforcode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L182", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_roletogate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_tryparseinternalinferencerequest", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_gethostinternalinferencepolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencerequestratelimit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencerequestratelimit_tryconsumeperhandshakeinferenceslot", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore", + "target": "apps_electron_vite_project_electron_main_internalinference_pendingrequests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore", + "target": "apps_electron_vite_project_electron_main_internalinference_pendingrequests_rejectinternalinferencebyrequestid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore", + "target": "apps_electron_vite_project_electron_main_internalinference_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertp2pendpointdirect", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_coordinationdeviceidforhandshakedevicerole", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore", + "target": "apps_electron_vite_project_electron_main_internalinference_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internal_inference_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internalinferencecapabilitiesresultwire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internalinferenceerrorwire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internalinferencerequestwire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internalinferenceresultwire", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore", + "target": "apps_electron_vite_project_electron_main_llm_internalhostinferencelocal", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore", + "target": "apps_electron_vite_project_electron_main_llm_internalhostinferencelocal_internalhostinferencemessage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_hostinferencecorecontext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_hostinferencecorecontext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_hostinferencecorefailure", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_fail", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_retryableforcode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L241", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_asserthostinbound", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_fail", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_assertnotauthenticated", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_fail", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L499", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_handleinternalinferencecancel", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_fail", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L287", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_handleinternalinferencecapabilitiesrequest", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_fail", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L330", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_handleinternalinferencerequest", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_fail", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L177", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_loadservicerecord", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_fail", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L498", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_handleinternalinferencecancel", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_isvalidinternalservicebaseenvelope", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L286", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_handleinternalinferencecapabilitiesrequest", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_isvalidinternalservicebaseenvelope", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L329", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_handleinternalinferencerequest", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_isvalidinternalservicebaseenvelope", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_isvalidinternalservicebaseenvelope", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch_tryhandleinternalservicep2p", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_isvalidinternalservicebaseenvelope" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L359", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_handleinternalinferencerequest", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_tryparseinternalinferencerequest", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_coreinferencehandoff", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L507", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_handleinternalinferencecancel", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_assertnotauthenticated", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L295", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_handleinternalinferencecapabilitiesrequest", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_assertnotauthenticated", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L338", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_handleinternalinferencerequest", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_assertnotauthenticated", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L510", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_handleinternalinferencecancel", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_loadservicerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L298", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_handleinternalinferencecapabilitiesrequest", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_loadservicerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L341", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_handleinternalinferencerequest", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_loadservicerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_loadservicerecord", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L213", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_asserthostinbound", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_roletogate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L203", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_asserthostinbound", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_coordinationdeviceidforhandshakedevicerole", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_asserthostinbound", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_asserthostinbound", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L513", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_handleinternalinferencecancel", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_asserthostinbound", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L301", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_handleinternalinferencecapabilitiesrequest", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_asserthostinbound", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L344", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_handleinternalinferencerequest", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_asserthostinbound", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L309", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_handleinternalinferencecapabilitiesrequest", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertp2pendpointdirect" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_handleinternalinferencecapabilitiesrequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch_tryhandleinternalservicep2p", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_handleinternalinferencecapabilitiesrequest" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L371", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_handleinternalinferencerequest", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_gethostinternalinferencepolicy" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L372", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_handleinternalinferencerequest", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencerequestratelimit_tryconsumeperhandshakeinferenceslot" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L352", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_handleinternalinferencerequest", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertp2pendpointdirect" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L368", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_handleinternalinferencerequest", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_coordinationdeviceidforhandshakedevicerole" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L367", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_handleinternalinferencerequest", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L367", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_handleinternalinferencerequest", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_handleinternalinferencerequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L211", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_handlep2pdcinferencerequestashost", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_handleinternalinferencerequest" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_handleinternalinferencerequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L171", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch_tryhandleinternalservicep2p", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_handleinternalinferencerequest" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L530", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_handleinternalinferencecancel", + "target": "apps_electron_vite_project_electron_main_internalinference_pendingrequests_rejectinternalinferencebyrequestid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts", + "source_location": "L521", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_handleinternalinferencecancel", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertp2pendpointdirect" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_handleinternalinferencecancel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L341", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_handlep2pdcinferencecancelashost", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_handleinternalinferencecancel" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_handleinternalinferencecancel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch_tryhandleinternalservicep2p", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencecore_handleinternalinferencecancel" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceExecute.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute_buildhostinferenceerrorwire", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceExecute.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute_hostinferencecontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceExecute.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute_maplocalllmerror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceExecute.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute_retryableforcode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceExecute.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute_runhostinternalinference", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceExecute.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceExecute.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_gethostinternalinferencepolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceExecute.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute", + "target": "apps_electron_vite_project_electron_main_internalinference_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceExecute.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internal_inference_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceExecute.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internalinferenceerrorwire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceExecute.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internalinferenceresultwire", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceExecute.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute", + "target": "apps_electron_vite_project_electron_main_llm_internalhostinferencelocal", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceExecute.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute", + "target": "apps_electron_vite_project_electron_main_llm_internalhostinferencelocal_internalhostinferencemessage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceExecute.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceExecute.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceExecute.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute", + "target": "apps_electron_vite_project_electron_main_llm_localmodelidentity", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceExecute.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute", + "target": "apps_electron_vite_project_electron_main_llm_localmodelidentity_canonicallocalmodelname", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceExecute.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute", + "target": "apps_electron_vite_project_electron_main_llm_localmodelidentity_localmodelidsmatch", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceExecute.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute_buildhostinferenceerrorwire", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute_retryableforcode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceExecute.ts", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute_runhostinternalinference", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute_buildhostinferenceerrorwire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute_buildhostinferenceerrorwire", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L213", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_handlep2pdcinferencerequestashost", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute_buildhostinferenceerrorwire" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceExecute.ts", + "source_location": "L299", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute_runhostinternalinference", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute_maplocalllmerror", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceExecute.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute_hostinferencecontext", + "target": "apps_electron_vite_project_electron_main_llm_internalhostinferencelocal_internalhostinferencemessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceExecute.ts", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute_runhostinternalinference", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_gethostinternalinferencepolicy" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceExecute.ts", + "source_location": "L183", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute_runhostinternalinference", + "target": "apps_electron_vite_project_electron_main_llm_localmodelidentity_canonicallocalmodelname" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceExecute.ts", + "source_location": "L184", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferenceexecute_runhostinternalinference", + "target": "apps_electron_vite_project_electron_main_llm_localmodelidentity_localmodelidsmatch" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferencePolicyStore.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_default_policy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferencePolicyStore.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_gethostinternalinferencepolicy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferencePolicyStore.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_hostinternalinferencepolicy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferencePolicyStore.ts", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_loadcached", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferencePolicyStore.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_normalizepolicy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferencePolicyStore.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_normalizeremotechoice", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferencePolicyStore.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_readdisk", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferencePolicyStore.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_remotehostinferenceuserchoice", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferencePolicyStore.ts", + "source_location": "L185", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_resethostinferencepolicyfortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferencePolicyStore.ts", + "source_location": "L150", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_sethostinternalinferencepolicy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferencePolicyStore.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_storepath", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_ipc", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_ipc", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_hostinternalinferencepolicy", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferencePolicyStore.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_readdisk", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_storepath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferencePolicyStore.ts", + "source_location": "L176", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_sethostinternalinferencepolicy", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_storepath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferencePolicyStore.ts", + "source_location": "L139", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_loadcached", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_readdisk", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferencePolicyStore.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_readdisk", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_normalizepolicy", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferencePolicyStore.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_normalizepolicy", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_normalizeremotechoice", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferencePolicyStore.ts", + "source_location": "L186", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_resethostinferencepolicyfortests", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_normalizepolicy", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferencePolicyStore.ts", + "source_location": "L173", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_sethostinternalinferencepolicy", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_normalizepolicy", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferencePolicyStore.ts", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_gethostinternalinferencepolicy", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_loadcached", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferencePolicyStore.ts", + "source_location": "L151", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_sethostinternalinferencepolicy", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_loadcached", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_ipc", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_gethostinternalinferencepolicy", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L156", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_ipc_registerinternalinferenceipc", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_gethostinternalinferencepolicy" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_gethostinternalinferencepolicy", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L2663", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_gethostinternalinferencepolicy" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_gethostinternalinferencepolicy", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget_handlegetinternalinferencepolicy", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_gethostinternalinferencepolicy" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_gethostinternalinferencepolicy", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L1006", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboximpl", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_gethostinternalinferencepolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_ipc", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_sethostinternalinferencepolicy", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_ipc_registerinternalinferenceipc", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencepolicystore_sethostinternalinferencepolicy" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceRequestRateLimit.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencerequestratelimit", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencerequestratelimit_buckets", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceRequestRateLimit.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencerequestratelimit", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencerequestratelimit_resethandshakeratelimitfortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/hostInferenceRequestRateLimit.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_hostinferencerequestratelimit", + "target": "apps_electron_vite_project_electron_main_internalinference_hostinferencerequestratelimit_tryconsumeperhandshakeinferenceslot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/inferenceRoutingIpcPayload.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_inferenceroutingipcpayload", + "target": "apps_electron_vite_project_electron_main_internalinference_inferenceroutingipcpayload_inferenceroutingreason", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/inferenceRoutingIpcPayload.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_inferenceroutingipcpayload", + "target": "apps_electron_vite_project_electron_main_internalinference_inferenceroutingipcpayload_inferenceroutingunavailableusermessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/inferenceRoutingIpcPayload.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_inferenceroutingipcpayload", + "target": "apps_electron_vite_project_electron_main_internalinference_inferenceroutingipcpayload_mapinferenceroutingerrortoipc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/inferenceRoutingIpcPayload.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_inferenceroutingipcpayload_mapinferenceroutingerrortoipc", + "target": "apps_electron_vite_project_electron_main_internalinference_inferenceroutingipcpayload_inferenceroutingunavailableusermessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/internalInferenceLogRedact.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact", + "target": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact_isinternalinferenceprodpackagedlogging", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/internalInferenceLogRedact.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact", + "target": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact_redactidforlog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/internalInferenceLogRedact.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact", + "target": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact_setinternalinferencelogpackagedfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler", + "target": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/p2pSignalOutbound.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_p2psignaloutbound", + "target": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc", + "target": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/internalInferenceLogRedact.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact_redactidforlog", + "target": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact_isinternalinferenceprodpackagedlogging", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact_redactidforlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L931", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensurehostaip2psession", + "target": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact_redactidforlog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1235", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensuresession", + "target": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact_redactidforlog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L720", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_failhostaip2psessionforterminalsignalingerror", + "target": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact_redactidforlog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1616", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_logclosed", + "target": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact_redactidforlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1606", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_logconnecting", + "target": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact_redactidforlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1610", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_logfailed", + "target": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact_redactidforlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L768", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_logp2psessionauthfailed", + "target": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact_redactidforlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1518", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_markdatachannelopenforp2psession", + "target": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact_redactidforlog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L280", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_performhostaip2psessioneviction", + "target": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact_redactidforlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L571", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_resethostaip2psessionfortransportloss", + "target": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact_redactidforlog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L494", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_scheduleofferoutbounddeadlineifneeded", + "target": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact_redactidforlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L391", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_scheduleofferstartwatchdogifneeded", + "target": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact_redactidforlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact_redactidforlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_handleicesendfailureafterretries", + "target": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact_redactidforlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L477", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_sendhostaip2psignaloutbound", + "target": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact_redactidforlog" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler", + "target": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact_redactidforlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L387", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_tryhandlecoordinationp2psignal", + "target": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact_redactidforlog" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/p2pSignalOutbound.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_p2psignaloutbound", + "target": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact_redactidforlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/p2pSignalOutbound.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_p2psignaloutbound_recordoutboundp2psignal", + "target": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact_redactidforlog" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc", + "target": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact_redactidforlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_onrenderertomain", + "target": "apps_electron_vite_project_electron_main_internalinference_internalinferencelogredact_redactidforlog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/internalP2pHandshakeInspect.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect", + "target": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect_buildinternalhosthandshakep2psafedump", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/internalP2pHandshakeInspect.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect", + "target": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect_first8", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/internalP2pHandshakeInspect.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect", + "target": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect_getinternalhosthandshakep2pinspect", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/internalP2pHandshakeInspect.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect", + "target": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect_internalhosthandshakep2psafedump", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/internalP2pHandshakeInspect.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect", + "target": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect_loginternalhosthandshakep2pinspect", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/internalP2pHandshakeInspect.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect", + "target": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect_mvpkinddisplay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/internalP2pHandshakeInspect.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect", + "target": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect_recordtointernalrolesource", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/internalP2pHandshakeInspect.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/internalP2pHandshakeInspect.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/internalP2pHandshakeInspect.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect", + "target": "apps_electron_vite_project_electron_main_internalinference_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/internalP2pHandshakeInspect.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/internalP2pHandshakeInspect.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertsandboxrequesttohost", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/internalP2pHandshakeInspect.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointmvpclass", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/internalP2pHandshakeInspect.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect", + "target": "packages_shared_src_handshake_internalidentityui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/internalP2pHandshakeInspect.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect", + "target": "packages_shared_src_handshake_internalidentityui_deriveinternalhandshakeroles", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/internalP2pHandshakeInspect.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect", + "target": "packages_shared_src_handshake_internalidentityui_internalhandshakerolesource", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_ipc_registerinternalinferenceipc", + "target": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/internalP2pHandshakeInspect.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect_buildinternalhosthandshakep2psafedump", + "target": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect_first8", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/internalP2pHandshakeInspect.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect_buildinternalhosthandshakep2psafedump", + "target": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect_mvpkinddisplay", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/internalP2pHandshakeInspect.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect_buildinternalhosthandshakep2psafedump", + "target": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect_recordtointernalrolesource", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/internalP2pHandshakeInspect.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect_buildinternalhosthandshakep2psafedump", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointmvpclass" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/internalP2pHandshakeInspect.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect_buildinternalhosthandshakep2psafedump", + "target": "packages_shared_src_handshake_internalidentityui_deriveinternalhandshakeroles" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/internalP2pHandshakeInspect.ts", + "source_location": "L134", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect_getinternalhosthandshakep2pinspect", + "target": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect_buildinternalhosthandshakep2psafedump", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/internalP2pHandshakeInspect.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect_loginternalhosthandshakep2pinspect", + "target": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect_buildinternalhosthandshakep2psafedump", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/internalP2pHandshakeInspect.ts", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect_loginternalhosthandshakep2pinspect", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect_loginternalhosthandshakep2pinspect", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1835", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect_loginternalhosthandshakep2pinspect" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/internalP2pHandshakeInspect.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect_getinternalhosthandshakep2pinspect", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/internalP2pHandshakeInspect.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_internalp2phandshakeinspect_getinternalhosthandshakep2pinspect", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertsandboxrequesttohost" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_ipc", + "target": "apps_electron_vite_project_electron_main_internalinference_ipc_dispatchlistinferencetargetsipc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_ipc", + "target": "apps_electron_vite_project_electron_main_internalinference_ipc_lastipcprobehostpolicylogbyhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_ipc", + "target": "apps_electron_vite_project_electron_main_internalinference_ipc_listinferencecachebyhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_ipc", + "target": "apps_electron_vite_project_electron_main_internalinference_ipc_listsandboxhostinferenceresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_ipc", + "target": "apps_electron_vite_project_electron_main_internalinference_ipc_notelistinferencetargetsipccache", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_ipc", + "target": "apps_electron_vite_project_electron_main_internalinference_ipc_p2psessionlogreasontype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_ipc", + "target": "apps_electron_vite_project_electron_main_internalinference_ipc_parselistinferencetargetsipcarg", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_ipc", + "target": "apps_electron_vite_project_electron_main_internalinference_ipc_parsep2psessionclosereason", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_ipc", + "target": "apps_electron_vite_project_electron_main_internalinference_ipc_registerinternalinferenceipc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_ipc", + "target": "apps_electron_vite_project_electron_main_internalinference_ipc_resetlistinferencetargetsipccachefororchestrator", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_ipc", + "target": "apps_electron_vite_project_electron_main_internalinference_ipc_trylistinferencetargetsipccache", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_ipc", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_ipc", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_closesession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_ipc", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensurehostaip2psession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_ipc", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_getsessionstate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_ipc", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_p2psessionlogreason", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_ipc", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_p2psessionstate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_ipc", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxrequest", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_ipc", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxrequest_runsandboxpongtestfromhosthandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_ipc", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_ipc", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_registerwebrtctransportipc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_ipc", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_ipc", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_ishostmode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_ipc", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_issandboxmode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_ipc_dispatchlistinferencetargetsipc", + "target": "apps_electron_vite_project_electron_main_internalinference_ipc_parselistinferencetargetsipcarg", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_ipc_dispatchlistinferencetargetsipc", + "target": "apps_electron_vite_project_electron_main_internalinference_ipc_notelistinferencetargetsipccache", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_ipc_dispatchlistinferencetargetsipc", + "target": "apps_electron_vite_project_electron_main_internalinference_ipc_trylistinferencetargetsipccache", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_ipc_dispatchlistinferencetargetsipc", + "target": "apps_electron_vite_project_electron_main_internalinference_ipc_resetlistinferencetargetsipccachefororchestrator", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L312", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_ipc_registerinternalinferenceipc", + "target": "apps_electron_vite_project_electron_main_internalinference_ipc_parsep2psessionclosereason", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_ipc_dispatchlistinferencetargetsipc", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L176", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_ipc_registerinternalinferenceipc", + "target": "apps_electron_vite_project_electron_main_internalinference_ipc_dispatchlistinferencetargetsipc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L313", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_ipc_registerinternalinferenceipc", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_closesession" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L302", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_ipc_registerinternalinferenceipc", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensurehostaip2psession" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L322", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_ipc_registerinternalinferenceipc", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_getsessionstate" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L235", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_ipc_registerinternalinferenceipc", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostchat", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_ipc_registerinternalinferenceipc", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L152", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_ipc_registerinternalinferenceipc", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxrequest_runsandboxpongtestfromhosthandshake" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L325", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_ipc_registerinternalinferenceipc", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_registerwebrtctransportipc" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_ipc_registerinternalinferenceipc", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_ishostmode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/ipc.ts", + "source_location": "L181", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_ipc_registerinternalinferenceipc", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_issandboxmode" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1431", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_anyactiverowproveslocalsandboxtohostfromdb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_basemetafromdec", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1188", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_buildhosttargetid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1183", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_cap_unknown", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L528", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_capabilityprobelogdetailtoken", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L372", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_clearhostailisttransientstatefororchestratorbuildchange", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L269", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_coalescedlisthostcapabilitiesprobe", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L296", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_coalescedprobehostpolicyforlist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L876", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_configuredmodeforlog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L774", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_derivedinternalroles", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L796", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_derivefromrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1202", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_digits6only", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1196", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_displaypairing", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1258", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_draftcheckingplaceholderforhostpair", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L824", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_draftdisabledsandboxhostrolemetadata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1474", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_ensureatleastonehosttargetwhenledgerprovessandboxtohost", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_epkindtolistkind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1319", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_finalizehostinferencerowforregressiontest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1325", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_finalizeitem", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1462", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hasactiveinternalledgerlocalhostpeersandboxforhostui", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1453", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hasactiveinternalledgersandboxtohostforhostai", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L209", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostaidirectprobe429cooldownuntil", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L661", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostaistructuredforendpointprovenanceuiphase", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L701", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostaistructuredreasonforprobecode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L604", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostaistructuredreasonforterminalidentityprobe", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L957", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostaistructuredunavailablereason", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1245", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostaisubtitleforphase", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1099", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostinferencehosttargetdraft", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L942", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostinferencelistavailability", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1003", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostinternalinferencelistitem", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L758", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostinternalinferencerejectreason", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L426", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostlistlegacyendpointkind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L425", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostlisttransportmode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostollamadirectsyntheticprobemeta", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L389", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostp2puiphase", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L637", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostp2puiphaseforhostendpointprovenance", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L668", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostp2puiphaseforprobefailurecode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L577", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostp2puiphaseforterminalidentityprobe", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1304", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostselectorstateforitem", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hosttargetdraft", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L917", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hosttargetunavailablecode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L545", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hosttargetunavailablecodeforterminalidentityprobe", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L242", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_inflightprobes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L245", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_invalidateprobecache", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L535", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_ishostaihttpendpointprovenanceclassfailure", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1298", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_ishostsandboxdeviceroles", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L201", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_lastp2pensurebyhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L205", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_lastrelayp2pnudgebyhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L440", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_legacyhttpstatusfordecidelog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1417", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listactiveinternalhandshakesforcurrentsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L226", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listhostcapresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L264", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listhostcapsprobeinflight", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L265", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listhostcapsprobelast", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1654", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L155", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_loghostailedgerview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_loghostaitargetsummarylines", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L881", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_loginternalcandidate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L457", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_maphostaiselectorphasetop2puiphase", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L814", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_maprolegatefromderived", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1216", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_metafromokprobe", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1207", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_metalocal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L801", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_overlayhostpeerpresenceliveness", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L433", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_p2pensureeligibleforlist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L428", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_p2pstackenabledforlist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L870", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_peerdeviceroleforlogd", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L267", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_policyprobeinflight", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L481", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_primarylabelforp2puiphase", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L241", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_probecache", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L238", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_probehostpolicyresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L776", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_recordtointernalrolesource", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_resethostaipeeradvertisedmaphydrationfortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L366", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_resetp2pensurethrottlecachefortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L354", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_resetwebrtclisthostcapscachefortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L320", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_rundebouncedpolicyprobeforlist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_sandboxollamadirecttagsallowlisttransportbypass", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1235", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_secondarylabelfrommeta", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1443", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_shouldmergehostinternalrowsforgetavailablemodels", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L194", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_stablelistprobechainbyhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1543", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_tryemitollamadirectonlyrowsafterbeapprobefailure", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L236", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_webrtclisthostcapscache", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_invalidatesbxaicapsterminalcache", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_hostaipeeradvertisedollamaroster", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_hydratehostadvertisedmapfromledger", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_peekhostadvertisedmvpdirectentry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_registerp2pensurecacheinvalidator", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_requestbeapadrefreshifmapmiss", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_ishostaip2puxenabled", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_iswebrtchostaiarchitectureenabled", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_loghostaip2pflagsandsource", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_p2pinferenceflagsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensurehostaip2psession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_evicthostaip2psessionforstucklistcache", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_getsessionstate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_p2psessionphase", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait_host_ai_capability_dc_wait_ms", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait_isp2pdatachannelupforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait_p2pcapabilitydcwaitoutcomelogreason", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait_waitforp2pdatachannelopenorterminal", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaycircuit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaycircuit_getp2prelaysignalingcircuitopenuntilms", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_coordinationdeviceidforhandshakedevicerole", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_handshakesameprincipal", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_outboundp2pbearertocounterpartyingest", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointkind", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostailistrefreshdecision", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostailistrefreshdecision_logsbxhostairefreshdecision", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_getsandboxollamadirectroutecandidate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectsyntheticprobe", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectsyntheticprobe_buildsyntheticokprobefromollamadirecttags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectsyntheticprobe_hostcomputernamefromhandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_fetchsandboxollamadirecttags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_sandboxollamadirecttagsfetchresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_mapcapabilitieswiretoprobe", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_p2p_capability_probe", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandbox", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_resetprobehostinferencepolicyinflightfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildhostaitransportdeciderinputasync", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_decidehostaitransport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_decideinternalinferencetransport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_hostaiselectorphase", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_hostaitransportdeciderresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_ishostaiprobeterminalnopolicyfallback", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_listhostcapabilities", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internalinferencecapabilitiesresultwire", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore_readstoredaiexecutioncontext", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_llm_localmodelidentity", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_llm_localmodelidentity_canonicallocalmodelname", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_llm_localmodelidentity_dedupecanonicalmodelnames", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_llm_localmodelidentity_resolvelocalmodelalias", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_issandboxmode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_src_lib_hostaiuidiagnostics", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_src_lib_hostaiuidiagnostics_hostaiendpointdiagnostics", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "apps_electron_vite_project_src_lib_hostaiuidiagnostics_hostaiuserfacingmessagefromtarget", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "packages_shared_src_handshake_internalidentityui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "packages_shared_src_handshake_internalidentityui_deriveinternalhandshakeroles", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "target": "packages_shared_src_handshake_internalidentityui_internalhandshakerolesource", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/handshakeAvailableModelsCompute.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_handshakeavailablemodelscompute_computehandshakeavailablemodels", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/ipc.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_ipc_registerorchestratoripc", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostollamadirectsyntheticprobemeta", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_peekhostadvertisedmvpdirectentry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L2642", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostollamadirectsyntheticprobemeta", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1954", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_sandboxollamadirecttagsallowlisttransportbypass", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1562", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_tryemitollamadirectonlyrowsafterbeapprobefailure", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_sandboxollamadirecttagsallowlisttransportbypass", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1739", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_loghostailedgerview", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_loghostailedgerview", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_derivefromrecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L168", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_loghostailedgerview", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_loghostailedgerview", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L184", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_loghostailedgerview", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_issandboxmode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L246", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_invalidateprobecache", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_invalidatesbxaicapsterminalcache" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L2681", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_coalescedlisthostcapabilitiesprobe", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L307", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_coalescedprobehostpolicyforlist", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandbox", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L339", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_rundebouncedpolicyprobeforlist", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_coalescedprobehostpolicyforlist", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L2807", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_rundebouncedpolicyprobeforlist", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L355", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_resetwebrtclisthostcapscachefortests", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_invalidatesbxaicapsterminalcache" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L373", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_clearhostailisttransientstatefororchestratorbuildchange", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_invalidatesbxaicapsterminalcache" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L384", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_clearhostailisttransientstatefororchestratorbuildchange", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_resetprobehostinferencepolicyinflightfortests" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L3035", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_p2pstackenabledforlist", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L437", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_p2pensureeligibleforlist", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_p2pstackenabledforlist", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L2347", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_p2pensureeligibleforlist", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L437", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_p2pensureeligibleforlist", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_iswebrtchostaiarchitectureenabled", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1975", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_legacyhttpstatusfordecidelog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_basemetafromdec", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_maphostaiselectorphasetop2puiphase", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L863", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_draftdisabledsandboxhostrolemetadata", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_maphostaiselectorphasetop2puiphase", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L2139", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_maphostaiselectorphasetop2puiphase", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1264", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_draftcheckingplaceholderforhostpair", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_primarylabelforp2puiphase", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L835", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_draftdisabledsandboxhostrolemetadata", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_primarylabelforp2puiphase", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1494", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_ensureatleastonehosttargetwhenledgerprovessandboxtohost", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_primarylabelforp2puiphase", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1798", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_primarylabelforp2puiphase", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L3029", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_capabilityprobelogdetailtoken", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L611", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostaistructuredreasonforterminalidentityprobe", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_ishostaihttpendpointprovenanceclassfailure", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L581", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostp2puiphaseforterminalidentityprobe", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_ishostaihttpendpointprovenanceclassfailure", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L3040", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_ishostaihttpendpointprovenanceclassfailure", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L2939", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hosttargetunavailablecodeforterminalidentityprobe", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L582", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostp2puiphaseforterminalidentityprobe", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostp2puiphaseforhostendpointprovenance", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L601", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostp2puiphaseforterminalidentityprobe", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostp2puiphaseforprobefailurecode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L2937", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostp2puiphaseforterminalidentityprobe", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L612", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostaistructuredreasonforterminalidentityprobe", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostaistructuredforendpointprovenanceuiphase", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L613", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostaistructuredreasonforterminalidentityprobe", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostp2puiphaseforhostendpointprovenance", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L2938", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostaistructuredreasonforterminalidentityprobe", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L3059", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostp2puiphaseforprobefailurecode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L3064", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostaistructuredreasonforprobecode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L797", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_derivefromrecord", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_recordtointernalrolesource", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L797", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_derivefromrecord", + "target": "packages_shared_src_handshake_internalidentityui_deriveinternalhandshakeroles", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1767", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_derivefromrecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L3144", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_overlayhostpeerpresenceliveness", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1776", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_maprolegatefromderived", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L834", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_draftdisabledsandboxhostrolemetadata", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_buildhosttargetid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L831", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_draftdisabledsandboxhostrolemetadata", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_epkindtolistkind", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L830", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_draftdisabledsandboxhostrolemetadata", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_metalocal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L838", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_draftdisabledsandboxhostrolemetadata", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_secondarylabelfrommeta", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L843", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_draftdisabledsandboxhostrolemetadata", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_coordinationdeviceidforhandshakedevicerole", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L831", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_draftdisabledsandboxhostrolemetadata", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointkind", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L830", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_draftdisabledsandboxhostrolemetadata", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectsyntheticprobe_hostcomputernamefromhandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1787", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_draftdisabledsandboxhostrolemetadata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L893", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_loginternalcandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_peerdeviceroleforlogd", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1496", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_ensureatleastonehosttargetwhenledgerprovessandboxtohost", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_configuredmodeforlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1662", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_configuredmodeforlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L897", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_loginternalcandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_configuredmodeforlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1768", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_loginternalcandidate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L891", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_loginternalcandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_digits6only", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L887", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_loginternalcandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_handshakesameprincipal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L889", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_loginternalcandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointkind", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L890", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_loginternalcandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectsyntheticprobe_hostcomputernamefromhandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1061", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostinternalinferencelistitem", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_hostaiselectorphase", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1072", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostinternalinferencelistitem", + "target": "apps_electron_vite_project_src_lib_hostaiuidiagnostics_hostaiendpointdiagnostics", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1263", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_draftcheckingplaceholderforhostpair", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_epkindtolistkind", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1493", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_ensureatleastonehosttargetwhenledgerprovessandboxtohost", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_epkindtolistkind", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1797", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_epkindtolistkind", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L3797", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_loghostaitargetsummarylines", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_loghostaitargetsummarylines", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_peekhostadvertisedmvpdirectentry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1974", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_basemetafromdec", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1618", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_tryemitollamadirectonlyrowsafterbeapprobefailure", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_basemetafromdec", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1267", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_draftcheckingplaceholderforhostpair", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_buildhosttargetid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1502", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_ensureatleastonehosttargetwhenledgerprovessandboxtohost", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_buildhosttargetid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1801", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_buildhosttargetid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1596", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_tryemitollamadirectonlyrowsafterbeapprobefailure", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_buildhosttargetid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1228", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_metafromokprobe", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_displaypairing", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1210", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_metalocal", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_displaypairing", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1229", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_metafromokprobe", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_digits6only", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1211", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_metalocal", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_digits6only", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1262", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_draftcheckingplaceholderforhostpair", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_metalocal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1491", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_ensureatleastonehosttargetwhenledgerprovessandboxtohost", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_metalocal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1795", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_metalocal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L3133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_metafromokprobe", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1271", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_draftcheckingplaceholderforhostpair", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_secondarylabelfrommeta", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1492", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_ensureatleastonehosttargetwhenledgerprovessandboxtohost", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_secondarylabelfrommeta", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1255", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostaisubtitleforphase", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_secondarylabelfrommeta", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1796", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_secondarylabelfrommeta", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1573", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_tryemitollamadirectonlyrowsafterbeapprobefailure", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_secondarylabelfrommeta", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L2399", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostaisubtitleforphase", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1276", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_draftcheckingplaceholderforhostpair", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_coordinationdeviceidforhandshakedevicerole", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1263", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_draftcheckingplaceholderforhostpair", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointkind", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1260", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_draftcheckingplaceholderforhostpair", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectsyntheticprobe_hostcomputernamefromhandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1781", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_draftcheckingplaceholderforhostpair", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1777", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_ishostsandboxdeviceroles", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1349", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_finalizeitem", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hostselectorstateforitem", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1322", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_finalizehostinferencerowforregressiontest", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_finalizeitem", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1530", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_ensureatleastonehosttargetwhenledgerprovessandboxtohost", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_finalizeitem", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1781", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_finalizeitem", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1637", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_tryemitollamadirectonlyrowsafterbeapprobefailure", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_finalizeitem", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1725", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listactiveinternalhandshakesforcurrentsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1456", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_hasactiveinternalledgersandboxtohostforhostai", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_anyactiverowproveslocalsandboxtohostfromdb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1511", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_ensureatleastonehosttargetwhenledgerprovessandboxtohost", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_coordinationdeviceidforhandshakedevicerole", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1493", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_ensureatleastonehosttargetwhenledgerprovessandboxtohost", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointkind", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1490", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_ensureatleastonehosttargetwhenledgerprovessandboxtohost", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectsyntheticprobe_hostcomputernamefromhandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L3766", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_ensureatleastonehosttargetwhenledgerprovessandboxtohost", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L2787", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_tryemitollamadirectonlyrowsafterbeapprobefailure", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1576", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_tryemitollamadirectonlyrowsafterbeapprobefailure", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_peekhostadvertisedmvpdirectentry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1557", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_tryemitollamadirectonlyrowsafterbeapprobefailure", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_getsandboxollamadirectroutecandidate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1563", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_tryemitollamadirectonlyrowsafterbeapprobefailure", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_fetchsandboxollamadirecttags", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1565", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_tryemitollamadirectonlyrowsafterbeapprobefailure", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1717", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1700", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_hydratehostadvertisedmapfromledger" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L2199", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_peekhostadvertisedmvpdirectentry" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L2916", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_requestbeapadrefreshifmapmiss" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1713", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1664", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_ishostaip2puxenabled" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L2087", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_iswebrtchostaiarchitectureenabled" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1670", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_loghostaip2pflagsandsource" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1915", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensurehostaip2psession" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L2366", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_evicthostaip2psessionforstucklistcache" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1927", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_getsessionstate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1909", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait_isp2pdatachannelupforhandshake" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L2529", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait_p2pcapabilitydcwaitoutcomelogreason" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L2493", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait_waitforp2pdatachannelopenorterminal" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L2433", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaycircuit_getp2prelaysignalingcircuitopenuntilms" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1792", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1810", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_coordinationdeviceidforhandshakedevicerole" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1773", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1769", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_handshakesameprincipal" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L2664", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_outboundp2pbearertocounterpartyingest" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1797", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointkind" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1719", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L2602", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostailistrefreshdecision_logsbxhostairefreshdecision" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1893", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_getsandboxollamadirectroutecandidate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L2640", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectsyntheticprobe_buildsyntheticokprobefromollamadirecttags" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1795", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectsyntheticprobe_hostcomputernamefromhandshakerecord" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1896", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_fetchsandboxollamadirecttags" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L2702", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_mapcapabilitieswiretoprobe" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1920", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildhostaitransportdeciderinputasync" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1973", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_decidehostaitransport" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1919", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_decideinternalinferencetransport" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L2716", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_ishostaiprobeterminalnopolicyfallback" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L2682", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_listhostcapabilities" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L2196", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore_readstoredaiexecutioncontext" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L2216", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_llm_localmodelidentity_canonicallocalmodelname" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L2201", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_llm_localmodelidentity_dedupecanonicalmodelnames" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L2215", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_llm_localmodelidentity_resolvelocalmodelalias" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1676", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L1660", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L3401", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_issandboxmode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts", + "source_location": "L2044", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "target": "apps_electron_vite_project_src_lib_hostaiuidiagnostics_hostaiuserfacingmessagefromtarget" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_fallbackfromlistsandbox", + "target": "apps_electron_vite_project_electron_main_internalinference_listinferencetargets_listsandboxhostinternalinferencetargets" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/logging.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_logging", + "target": "apps_electron_vite_project_electron_main_internalinference_logging_endpointhostonly", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/logging.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_logging", + "target": "apps_electron_vite_project_electron_main_internalinference_logging_internalinferencelogmeta", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/logging.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_logging", + "target": "apps_electron_vite_project_electron_main_internalinference_logging_loginternalinferenceevent", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/logging.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_logging", + "target": "apps_electron_vite_project_electron_main_internalinference_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/logging.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_logging", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internalservicemessagetype", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch", + "target": "apps_electron_vite_project_electron_main_internalinference_logging", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/logging.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_logging_internalinferencelogmeta", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internalservicemessagetype", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/logging.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_logging_loginternalinferenceevent", + "target": "apps_electron_vite_project_electron_main_internalinference_logging_endpointhostonly", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch", + "target": "apps_electron_vite_project_electron_main_internalinference_logging_endpointhostonly", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L274", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch_finishhostinferencepost", + "target": "apps_electron_vite_project_electron_main_internalinference_logging_endpointhostonly", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch", + "target": "apps_electron_vite_project_electron_main_internalinference_logging_loginternalinferenceevent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L266", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch_finishhostinferencepost", + "target": "apps_electron_vite_project_electron_main_internalinference_logging_loginternalinferenceevent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L241", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch_tryhandleinternalservicep2p", + "target": "apps_electron_vite_project_electron_main_internalinference_logging_loginternalinferenceevent" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/orchestratorSandboxEmbedding.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_orchestratorsandboxembedding", + "target": "apps_electron_vite_project_electron_main_internalinference_orchestratorsandboxembedding_defaultollamaembeddingprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/orchestratorSandboxEmbedding.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_orchestratorsandboxembedding", + "target": "apps_electron_vite_project_electron_main_internalinference_orchestratorsandboxembedding_getorcreateorchestratorembeddingservice", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/orchestratorSandboxEmbedding.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_orchestratorsandboxembedding", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/orchestratorSandboxEmbedding.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_orchestratorsandboxembedding", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_issandboxmode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc", + "target": "apps_electron_vite_project_electron_main_internalinference_orchestratorsandboxembedding", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/orchestratorSandboxEmbedding.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_orchestratorsandboxembedding_getorcreateorchestratorembeddingservice", + "target": "apps_electron_vite_project_electron_main_internalinference_orchestratorsandboxembedding_defaultollamaembeddingprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/orchestratorSandboxEmbedding.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_orchestratorsandboxembedding_getorcreateorchestratorembeddingservice", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_issandboxmode" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc", + "target": "apps_electron_vite_project_electron_main_internalinference_orchestratorsandboxembedding_getorcreateorchestratorembeddingservice", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc_setupembeddingserviceref", + "target": "apps_electron_vite_project_electron_main_internalinference_orchestratorsandboxembedding_getorcreateorchestratorembeddingservice" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_capresolve", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_classifysbxaicapsoutcome", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L221", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_clearpendingp2pcapabilitiesfortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_clonedcoutcomefreshrequestid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_deepclonedcoutcome", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L1281", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_executehostinferencecapabilitiesdcexchange", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_getsbxaicapsterminalcache", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L314", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_handlep2pdcinferencecapabilitiesashost", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L685", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_handlep2pdcinferencecapabilitiesassandbox", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L182", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_hostcapsbuiltcachebyhssender", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L179", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_hostcapsbuiltpack", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L172", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_hostcapshandshakesenderkey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_hostinferencecapabilitiesdcoutcome", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L184", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_inflighthostcapsbuildbyhandshakesender", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L233", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_invalidatehostcapsbuiltcacheforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L152", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_invalidatesbxaicapsterminalcache", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L1164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_logsbxaicapsresponseclassifiedpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L279", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_mapdctointernalwire", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L241", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_ollamadirectwirefieldsfromdcpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L1150", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_peeksandboxpeerhostdeviceforcapscache", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_pending", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_pendingcap", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L1198", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_requesthostinferencecapabilitiesoverdatachannel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_sbxaicapscachekey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_sbxaicapsinflightbycachekey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_sbxaicapspurpose", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_sbxaicapsresponseclassification", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_sbxaicapsterminalcache", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L186", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_sendcapsdcerror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L607", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_sendproactiveinferencecapabilitiesdcresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_setsbxaicapsterminalcache", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L1112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_tryroutep2pdatachanneljsonmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_ttlmsforsbxaicapsoutcome", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_tryroutep2pinferencedatachannelmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_getsessionstate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_coordinationdeviceidforhandshakedevicerole", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_hostaihosttosandboxashost", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_hostaisandboxtohostrequestdeviceids", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_evaluatesandboxhostaiollamadirectfromcapabilitieswire", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_invalidatesandboxollamadirecttagscacheforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internalinferencecapabilitiesresultwire", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxOllamaDirectCapsRefresh.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxollamadirectcapsrefresh", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L1209", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_requesthostinferencecapabilitiesoverdatachannel", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_sbxaicapscachekey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_getsbxaicapsterminalcache", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_deepclonedcoutcome", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L1210", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_requesthostinferencecapabilitiesoverdatachannel", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_getsbxaicapsterminalcache", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L1261", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_requesthostinferencecapabilitiesoverdatachannel", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_setsbxaicapsterminalcache", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_setsbxaicapsterminalcache", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_deepclonedcoutcome", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L1228", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_requesthostinferencecapabilitiesoverdatachannel", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_clonedcoutcomefreshrequestid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L1172", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_logsbxaicapsresponseclassifiedpayload", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_classifysbxaicapsoutcome", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L1223", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_requesthostinferencecapabilitiesoverdatachannel", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_classifysbxaicapsoutcome", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L1171", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_logsbxaicapsresponseclassifiedpayload", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_ttlmsforsbxaicapsoutcome", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L1224", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_requesthostinferencecapabilitiesoverdatachannel", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_ttlmsforsbxaicapsoutcome", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxOllamaDirectCapsRefresh.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxollamadirectcapsrefresh", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_invalidatesbxaicapsterminalcache", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxOllamaDirectCapsRefresh.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxollamadirectcapsrefresh_refreshsandboxollamadirectfromhostcapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_invalidatesbxaicapsterminalcache" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L436", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_handlep2pdcinferencecapabilitiesashost", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_hostcapshandshakesenderkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L352", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_handlep2pdcinferencecapabilitiesashost", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_sendcapsdcerror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L213", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_sendcapsdcerror", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_getsessionstate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L217", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_sendcapsdcerror", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L290", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_mapdctointernalwire", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_ollamadirectwirefieldsfromdcpayload", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L870", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_handlep2pdcinferencecapabilitiesassandbox", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_mapdctointernalwire", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L383", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_handlep2pdcinferencecapabilitiesashost", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_getsessionstate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L328", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_handlep2pdcinferencecapabilitiesashost", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L334", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_handlep2pdcinferencecapabilitiesashost", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L387", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_handlep2pdcinferencecapabilitiesashost", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_hostaihosttosandboxashost" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L600", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_handlep2pdcinferencecapabilitiesashost", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L333", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_handlep2pdcinferencecapabilitiesashost", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L1132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_tryroutep2pdatachanneljsonmessage", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_handlep2pdcinferencecapabilitiesashost", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L660", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_sendproactiveinferencecapabilitiesdcresult", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_getsessionstate" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L677", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_sendproactiveinferencecapabilitiesdcresult", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L712", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_handlep2pdcinferencecapabilitiesassandbox", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_getsessionstate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L909", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_handlep2pdcinferencecapabilitiesassandbox", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_coordinationdeviceidforhandshakedevicerole" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L746", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_handlep2pdcinferencecapabilitiesassandbox", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L953", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_handlep2pdcinferencecapabilitiesassandbox", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_evaluatesandboxhostaiollamadirectfromcapabilitieswire" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L959", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_handlep2pdcinferencecapabilitiesassandbox", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_invalidatesandboxollamadirecttagscacheforhandshake" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L746", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_handlep2pdcinferencecapabilitiesassandbox", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L1136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_tryroutep2pdatachanneljsonmessage", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_handlep2pdcinferencecapabilitiesassandbox", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L1139", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_tryroutep2pdatachanneljsonmessage", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_tryroutep2pinferencedatachannelmessage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_tryroutep2pdatachanneljsonmessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L246", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_onrenderertomain", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_tryroutep2pdatachanneljsonmessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L1155", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_peeksandboxpeerhostdeviceforcapscache", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L1157", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_peeksandboxpeerhostdeviceforcapscache", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L1159", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_peeksandboxpeerhostdeviceforcapscache", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_hostaisandboxtohostrequestdeviceids", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L1151", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_peeksandboxpeerhostdeviceforcapscache", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L1206", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_requesthostinferencecapabilitiesoverdatachannel", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_peeksandboxpeerhostdeviceforcapscache", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L1170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_logsbxaicapsresponseclassifiedpayload", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L1258", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_requesthostinferencecapabilitiesoverdatachannel", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_logsbxaicapsresponseclassifiedpayload", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L1255", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_requesthostinferencecapabilitiesoverdatachannel", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_executehostinferencecapabilitiesdcexchange", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L1205", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_requesthostinferencecapabilitiesoverdatachannel", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_requesthostinferencecapabilitiesoverdatachannel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L641", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_listhostcapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_requesthostinferencecapabilitiesoverdatachannel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L1293", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_executehostinferencecapabilitiesdcexchange", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L1298", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_executehostinferencecapabilitiesdcexchange", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L1344", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_executehostinferencecapabilitiesdcexchange", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_hostaisandboxtohostrequestdeviceids", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L1386", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_executehostinferencecapabilitiesdcexchange", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts", + "source_location": "L1287", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdccapabilities_executehostinferencecapabilitiesdcexchange", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_dc_types", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_dcrequesttointernalenvelope", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L309", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_handlep2pdcinferencecancelashost", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L285", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_handlep2pdcinferenceerrorassandbox", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_handlep2pdcinferencerequestashost", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L251", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_handlep2pdcinferenceresultassandbox", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_sendhostinferencerequestoverp2pdatachannel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_sendinternalinferencewireoverp2pdatachannel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L347", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_tryroutep2pinferencedatachannelmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_validatehostinboundinferencedc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_validateinferencedcsandboxsession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_getsessionstate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference", + "target": "apps_electron_vite_project_electron_main_internalinference_pendingrequests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference", + "target": "apps_electron_vite_project_electron_main_internalinference_pendingrequests_pendingresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference", + "target": "apps_electron_vite_project_electron_main_internalinference_pendingrequests_resolveinternalinferencebyrequestid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference", + "target": "apps_electron_vite_project_electron_main_internalinference_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_asserthostsendsresulttosandbox", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_coordinationdeviceidforhandshakedevicerole", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_hostaihosttosandboxashost", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference", + "target": "apps_electron_vite_project_electron_main_internalinference_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internal_inference_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internalinferenceerrorwire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internalinferencerequestwire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internalinferenceresultwire", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_ishostmode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_issandboxmode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_sendhostinferencerequestoverp2pdatachannel", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L219", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_handlep2pdcinferencerequestashost", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_sendinternalinferencewireoverp2pdatachannel", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_sendinternalinferencewireoverp2pdatachannel", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_sendinternalinferencewireoverp2pdatachannel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L1459", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_sendhostinferenceresult", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_sendinternalinferencewireoverp2pdatachannel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L313", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_handlep2pdcinferencecancelashost", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_validatehostinboundinferencedc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L189", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_handlep2pdcinferencerequestashost", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_validatehostinboundinferencedc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_validatehostinboundinferencedc", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_getsessionstate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_validatehostinboundinferencedc", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_asserthostsendsresulttosandbox", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_validatehostinboundinferencedc", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_validatehostinboundinferencedc", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_hostaihosttosandboxashost", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_validatehostinboundinferencedc", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_validatehostinboundinferencedc", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_ishostmode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L293", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_handlep2pdcinferenceerrorassandbox", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_validateinferencedcsandboxsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L259", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_handlep2pdcinferenceresultassandbox", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_validateinferencedcsandboxsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_validateinferencedcsandboxsession", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_getsessionstate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L142", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_validateinferencedcsandboxsession", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_issandboxmode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L193", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_handlep2pdcinferencerequestashost", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_dcrequesttointernalenvelope", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L198", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_handlep2pdcinferencerequestashost", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_coordinationdeviceidforhandshakedevicerole" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_handlep2pdcinferencerequestashost", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L355", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_tryroutep2pinferencedatachannelmessage", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_handlep2pdcinferencerequestashost", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L278", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_handlep2pdcinferenceresultassandbox", + "target": "apps_electron_vite_project_electron_main_internalinference_pendingrequests_resolveinternalinferencebyrequestid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L366", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_tryroutep2pinferencedatachannelmessage", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_handlep2pdcinferenceresultassandbox", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L302", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_handlep2pdcinferenceerrorassandbox", + "target": "apps_electron_vite_project_electron_main_internalinference_pendingrequests_resolveinternalinferencebyrequestid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L370", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_tryroutep2pinferencedatachannelmessage", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_handlep2pdcinferenceerrorassandbox", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts", + "source_location": "L361", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_tryroutep2pinferencedatachannelmessage", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pdc_p2pdcinference_handlep2pdcinferencecancelashost", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L815", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_applyhostaidirectbeapadfromrelaypayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L416", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_buildendpointcandidate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_clearhostadvertisedmvpdirectforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L367", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_denycode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L263", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_gethostpublishedmvpdirectp2pingesturl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_hostadvertisedmvpdirectbyhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_hostaipeeradvertisedollamaroster", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_hostaipeerbeapadsource", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_hostairelaybeapadlastseq", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L718", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_hostdirectp2padvertisementheaders", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L161", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_hydratehostadvertisedmapfromledger", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L272", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_ingesturlmatchesthisdevicesmvpdirectbeap", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_invalidatep2pensurecachesforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L255", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_kindforlog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_lastbeapadrefreshonmapmissatbyhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L280", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_ledgerrowhasviabledirectbeapformaprefresh", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L412", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_newiso", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L723", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_normalizep2pingesturl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_p2p_direct_p2p_endpoint_header", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_p2pensurecacheinvalidators", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L739", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_parsehostaiollamarosterfromrelayhostairoute", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L137", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_peekhostadvertisedmvpdirectentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L247", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_peekhostadvertisedmvpdirectp2pendpoint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L144", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_peekhostgpuinferenceavailablefromrelay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_peerheaderentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_registerp2pensurecacheinvalidator", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L297", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_requestbeapadrefreshifmapmiss", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_resethostadvertisedmvpdirectfortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L251", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_resetp2pendpointrepairsessiongates", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L449", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_resolvesandboxtohosthttpdirectingest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L1161", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_runp2pendpointrepairafterinternalhandshakeactive", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L1077", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_runp2pendpointrepairpass", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L310", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_runrequestbeapadrefreshifmapmiss", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L373", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_sandboxtohosthttpdirectingestresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_sethostadvertisedmvpdirectfortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L1004", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_tryrepairp2pendpointfromhostadvertisement", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertledgerrolessandboxtohost", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_coordinationdeviceidforhandshakedevicerole", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointkind", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointmvpclass", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pmvpendpointclass", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_getp2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_src_auth_session", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "target": "apps_electron_vite_project_src_auth_session_getaccesstoken", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectSyntheticProbe.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectsyntheticprobe", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L1293", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboximpl", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/inferenceDirectHttpTrust.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_inferencedirecthttptrust", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/peerDeliveryAck.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_peerdeliveryack", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectSyntheticProbe.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectsyntheticprobe", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_hostaipeeradvertisedollamaroster", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L980", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_applyhostaidirectbeapadfromrelaypayload", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_invalidatep2pensurecachesforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L1124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_runp2pendpointrepairpass", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_invalidatep2pensurecachesforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L1068", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_tryrepairp2pendpointfromhostadvertisement", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_invalidatep2pensurecachesforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_sethostadvertisedmvpdirectfortests", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_normalizep2pingesturl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L500", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_resolvesandboxtohosthttpdirectingest", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_clearhostadvertisedmvpdirectforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L1039", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_tryrepairp2pendpointfromhostadvertisement", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_clearhostadvertisedmvpdirectforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_clearhostadvertisedmvpdirectforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L424", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_computehostairoutefieldsfordecider", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_clearhostadvertisedmvpdirectforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L182", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_hydratehostadvertisedmapfromledger", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_peekhostadvertisedmvpdirectentry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L248", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_peekhostadvertisedmvpdirectp2pendpoint", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_peekhostadvertisedmvpdirectentry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_peekhostgpuinferenceavailablefromrelay", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_peekhostadvertisedmvpdirectentry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L459", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_resolvesandboxtohosthttpdirectingest", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_peekhostadvertisedmvpdirectentry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L318", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_runrequestbeapadrefreshifmapmiss", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_peekhostadvertisedmvpdirectentry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_peekhostadvertisedmvpdirectentry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest_sandboxmayberequesthostdirectbeapadvertisement", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_peekhostadvertisedmvpdirectentry" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_peekhostadvertisedmvpdirectentry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L1040", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboximpl", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_peekhostadvertisedmvpdirectentry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_peekhostadvertisedmvpdirectentry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L316", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildhostaicanonicalrouteresolveinputfordecider", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_peekhostadvertisedmvpdirectentry" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L371", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_computehostairoutefieldsfordecider", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_peekhostadvertisedmvpdirectentry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_peekhostadvertisedmvpdirectentry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_preferredmodelfrompeerollamaroster", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_peekhostadvertisedmvpdirectentry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/peerDeliveryAck.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_peerdeliveryack", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_peekhostadvertisedmvpdirectentry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/peerDeliveryAck.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_peerdeliveryack_resolvesenderdeliveryackendpoint", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_peekhostadvertisedmvpdirectentry" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_peekhostgpuinferenceavailablefromrelay", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L543", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc_registerllmhandlers", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_peekhostgpuinferenceavailablefromrelay" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L213", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_hydratehostadvertisedmapfromledger", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_ingesturlmatchesthisdevicesmvpdirectbeap", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L228", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_hydratehostadvertisedmapfromledger", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_normalizep2pingesturl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L190", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_hydratehostadvertisedmapfromledger", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertledgerrolessandboxtohost" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_hydratehostadvertisedmapfromledger", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L217", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_hydratehostadvertisedmapfromledger", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_coordinationdeviceidforhandshakedevicerole" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L194", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_hydratehostadvertisedmapfromledger", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L209", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_hydratehostadvertisedmapfromledger", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointmvpclass" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_hydratehostadvertisedmapfromledger", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_peekhostadvertisedmvpdirectp2pendpoint", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L528", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_listhostcapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_peekhostadvertisedmvpdirectp2pendpoint" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L970", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_applyhostaidirectbeapadfromrelaypayload", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_kindforlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L256", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_kindforlog", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointmvpclass", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L1061", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_tryrepairp2pendpointfromhostadvertisement", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_kindforlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L719", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_hostdirectp2padvertisementheaders", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_gethostpublishedmvpdirectp2pingesturl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L273", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_ingesturlmatchesthisdevicesmvpdirectbeap", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_gethostpublishedmvpdirectp2pingesturl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L457", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_resolvesandboxtohosthttpdirectingest", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_gethostpublishedmvpdirectp2pingesturl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L1089", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_runp2pendpointrepairpass", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_gethostpublishedmvpdirectp2pingesturl", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_gethostpublishedmvpdirectp2pingesturl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L341", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildhostaicanonicalrouteresolveinputfordecider", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_gethostpublishedmvpdirectp2pingesturl" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L409", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_computehostairoutefieldsfordecider", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_gethostpublishedmvpdirectp2pingesturl", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_gethostpublishedmvpdirectp2pingesturl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L950", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_listhostcapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_gethostpublishedmvpdirectp2pingesturl" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L921", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_applyhostaidirectbeapadfromrelaypayload", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_ingesturlmatchesthisdevicesmvpdirectbeap", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L277", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_ingesturlmatchesthisdevicesmvpdirectbeap", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_normalizep2pingesturl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L288", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_ledgerrowhasviabledirectbeapformaprefresh", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_ingesturlmatchesthisdevicesmvpdirectbeap", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L467", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_resolvesandboxtohosthttpdirectingest", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_ingesturlmatchesthisdevicesmvpdirectbeap", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L1038", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_tryrepairp2pendpointfromhostadvertisement", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_ingesturlmatchesthisdevicesmvpdirectbeap", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_ingesturlmatchesthisdevicesmvpdirectbeap", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest_sandboxmayberequesthostdirectbeapadvertisement", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_ingesturlmatchesthisdevicesmvpdirectbeap" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_ingesturlmatchesthisdevicesmvpdirectbeap", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L1292", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboximpl", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_ingesturlmatchesthisdevicesmvpdirectbeap", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_ingesturlmatchesthisdevicesmvpdirectbeap", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L287", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildpeerdirectadvertisement", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_ingesturlmatchesthisdevicesmvpdirectbeap" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L289", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_ledgerrowhasviabledirectbeapformaprefresh", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_coordinationdeviceidforhandshakedevicerole", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L286", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_ledgerrowhasviabledirectbeapformaprefresh", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointkind", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L287", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_ledgerrowhasviabledirectbeapformaprefresh", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointmvpclass", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L319", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_runrequestbeapadrefreshifmapmiss", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_ledgerrowhasviabledirectbeapformaprefresh", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L298", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_requestbeapadrefreshifmapmiss", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_runrequestbeapadrefreshifmapmiss", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_requestbeapadrefreshifmapmiss", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L181", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest_sandboxmayberequesthostdirectbeapadvertisement", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_requestbeapadrefreshifmapmiss" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L352", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_runrequestbeapadrefreshifmapmiss", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L329", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_runrequestbeapadrefreshifmapmiss", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L321", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_runrequestbeapadrefreshifmapmiss", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L322", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_runrequestbeapadrefreshifmapmiss", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L326", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_runrequestbeapadrefreshifmapmiss", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_getp2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L337", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_runrequestbeapadrefreshifmapmiss", + "target": "apps_electron_vite_project_src_auth_session_getaccesstoken", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_sandboxtohosthttpdirectingestresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L436", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_buildendpointcandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_newiso", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L469", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_resolvesandboxtohosthttpdirectingest", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_buildendpointcandidate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L572", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_resolvesandboxtohosthttpdirectingest", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_normalizep2pingesturl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L458", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_resolvesandboxtohosthttpdirectingest", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_coordinationdeviceidforhandshakedevicerole" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L456", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_resolvesandboxtohosthttpdirectingest", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_resolvesandboxtohosthttpdirectingest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L178", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest_sandboxmayberequesthostdirectbeapadvertisement", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_resolvesandboxtohosthttpdirectingest" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_resolvesandboxtohosthttpdirectingest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L434", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_computehostairoutefieldsfordecider", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_resolvesandboxtohosthttpdirectingest", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_hostdirectp2padvertisementheaders", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L232", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget_handlegetinternalinferencepolicy", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_hostdirectp2padvertisementheaders" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_hostdirectp2padvertisementheaders", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L283", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch_finishhostinferencepost", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_hostdirectp2padvertisementheaders", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L152", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch_tryhandleinternalservicep2p", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_hostdirectp2padvertisementheaders" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L954", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_applyhostaidirectbeapadfromrelaypayload", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_normalizep2pingesturl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L1119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_runp2pendpointrepairpass", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_normalizep2pingesturl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L1048", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_tryrepairp2pendpointfromhostadvertisement", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_normalizep2pingesturl", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_normalizep2pingesturl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L272", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildpeerdirectadvertisement", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_normalizep2pingesturl" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L392", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_computehostairoutefieldsfordecider", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_normalizep2pingesturl", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_normalizep2pingesturl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_normurl", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_normalizep2pingesturl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L384", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_resolvehostairoute", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_normalizep2pingesturl" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/inferenceDirectHttpTrust.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_inferencedirecthttptrust", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_normalizep2pingesturl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/inferenceDirectHttpTrust.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_inferencedirecthttptrust_inferencedirecthttptrust", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_normalizep2pingesturl" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/peerDeliveryAck.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_peerdeliveryack", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_normalizep2pingesturl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/peerDeliveryAck.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_peerdeliveryack_deliveryackurlfromingesturl", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_normalizep2pingesturl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L908", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_applyhostaidirectbeapadfromrelaypayload", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_parsehostaiollamarosterfromrelayhostairoute", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L887", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_applyhostaidirectbeapadfromrelaypayload", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertledgerrolessandboxtohost" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L882", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_applyhostaidirectbeapadfromrelaypayload", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L891", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_applyhostaidirectbeapadfromrelaypayload", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_coordinationdeviceidforhandshakedevicerole" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L917", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_applyhostaidirectbeapadfromrelaypayload", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointmvpclass" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L992", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_applyhostaidirectbeapadfromrelaypayload", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L943", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_applyhostaidirectbeapadfromrelaypayload", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostrosterselectionmigration", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_applyhostaidirectbeapadfromrelaypayload", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L353", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_tryhandlecoordinationp2psignal", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_applyhostaidirectbeapadfromrelaypayload" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L1032", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_tryrepairp2pendpointfromhostadvertisement", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertledgerrolessandboxtohost" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L1025", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_tryrepairp2pendpointfromhostadvertisement", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L1045", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_tryrepairp2pendpointfromhostadvertisement", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_coordinationdeviceidforhandshakedevicerole" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L1018", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_tryrepairp2pendpointfromhostadvertisement", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointmvpclass" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L1294", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboximpl", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_tryrepairp2pendpointfromhostadvertisement" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_tryrepairp2pendpointfromhostadvertisement", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L1226", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_listhostcapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_tryrepairp2pendpointfromhostadvertisement" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L1170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_runp2pendpointrepairafterinternalhandshakeactive", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_runp2pendpointrepairpass", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L1097", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_runp2pendpointrepairpass", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertledgerrolessandboxtohost" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L1095", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_runp2pendpointrepairpass", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L1099", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_runp2pendpointrepairpass", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_coordinationdeviceidforhandshakedevicerole" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L1107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_runp2pendpointrepairpass", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointkind" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L1108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_runp2pendpointrepairpass", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointmvpclass" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L1091", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_runp2pendpointrepairpass", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts", + "source_location": "L1090", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pendpointrepair_runp2pendpointrepairpass", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget", + "target": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget_formatinternalidentifier6", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget", + "target": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget_getclientip", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget", + "target": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget_handlegetinternalinferencepolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget", + "target": "apps_electron_vite_project_electron_main_internalinference_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_asserthostsendsresulttosandbox", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_coordinationdeviceidforhandshakedevicerole", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget", + "target": "apps_electron_vite_project_electron_main_p2p_beapingresslog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget", + "target": "apps_electron_vite_project_electron_main_p2p_beapingresslog_logbeapingressreceived", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget", + "target": "apps_electron_vite_project_electron_main_p2p_beapingresslog_logp2pbeaprejection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget", + "target": "apps_electron_vite_project_electron_main_p2p_beapingresslog_readbeapcorrelationidfromincoming", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget", + "target": "apps_electron_vite_project_electron_main_p2p_beapingresslog_readbeaphandshakehintfromincoming", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget", + "target": "apps_electron_vite_project_electron_main_p2p_ratelimiter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget", + "target": "apps_electron_vite_project_electron_main_p2p_ratelimiter_checkauthfaillimit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget", + "target": "apps_electron_vite_project_electron_main_p2p_ratelimiter_checkiplimit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget", + "target": "apps_electron_vite_project_electron_main_p2p_ratelimiter_ip_limit_private_lan", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget", + "target": "apps_electron_vite_project_electron_main_p2p_ratelimiter_ip_limit_public", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget", + "target": "apps_electron_vite_project_electron_main_p2p_ratelimiter_isclientipprivatelan", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget", + "target": "apps_electron_vite_project_electron_main_p2p_ratelimiter_recordauthfailure", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget_handlegetinternalinferencepolicy", + "target": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget_formatinternalidentifier6", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget_handlegetinternalinferencepolicy", + "target": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget_getclientip", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget_handlegetinternalinferencepolicy", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_asserthostsendsresulttosandbox" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget_handlegetinternalinferencepolicy", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget_handlegetinternalinferencepolicy", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_coordinationdeviceidforhandshakedevicerole" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget_handlegetinternalinferencepolicy", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L183", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget_handlegetinternalinferencepolicy", + "target": "apps_electron_vite_project_electron_main_llm_internalhostinferencelocal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget_handlegetinternalinferencepolicy", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget_handlegetinternalinferencepolicy", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget_handlegetinternalinferencepolicy", + "target": "apps_electron_vite_project_electron_main_p2p_beapingresslog_logbeapingressreceived" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget_handlegetinternalinferencepolicy", + "target": "apps_electron_vite_project_electron_main_p2p_beapingresslog_logp2pbeaprejection" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget_handlegetinternalinferencepolicy", + "target": "apps_electron_vite_project_electron_main_p2p_beapingresslog_readbeapcorrelationidfromincoming" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget_handlegetinternalinferencepolicy", + "target": "apps_electron_vite_project_electron_main_p2p_beapingresslog_readbeaphandshakehintfromincoming" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget_handlegetinternalinferencepolicy", + "target": "apps_electron_vite_project_electron_main_p2p_ratelimiter_checkauthfaillimit" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget_handlegetinternalinferencepolicy", + "target": "apps_electron_vite_project_electron_main_p2p_ratelimiter_checkiplimit" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget_handlegetinternalinferencepolicy", + "target": "apps_electron_vite_project_electron_main_p2p_ratelimiter_isclientipprivatelan" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2phostpolicyget_handlegetinternalinferencepolicy", + "target": "apps_electron_vite_project_electron_main_p2p_ratelimiter_recordauthfailure" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_buildallfalsesnapshot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_buildsnapshotwhenmasteroff", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_bundlep2pdefaultsshippedinthisapp", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_envtrue", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L193", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflagssourcetagfortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_ishostaip2puxenabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L240", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_isp2pinferencefeaturetouched", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L189", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_iswebrtchostaiarchitectureenabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L230", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_loghostaip2pflagsandsource", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_loghostaip2pflagssnapshot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L208", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_loghostaip2pflagssourceline", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_orchestratorbuildstampforlog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_p2pinferenceflagsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_readp2pboolwithdefaultonunset", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L180", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_resetp2pinferenceflagsfortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L255", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_shouldrejecthttpinternalinferencerequest", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalwireschemaversion", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalwireschemaversion_logp2psignalwireschemastartupline", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "target": "apps_electron_vite_project_electron_main_internalinference_unifiedservicerpcrelayflags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "target": "apps_electron_vite_project_electron_main_internalinference_unifiedservicerpcrelayflags_blocksplaintexthttpinferencefallback", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceTransportLog.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pinferencetransportlog", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSessionManagerStub.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psessionmanagerstub", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiTransportLog.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransportlog", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/transportDecide.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_transportdecide", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/p2pSignalOutbound.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_p2psignaloutbound", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportWindow.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportwindow", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_envtrue", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_ishostaip2puxenabled", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_envtrue", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_buildsnapshotwhenmasteroff", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_readp2pboolwithdefaultonunset", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_readp2pboolwithdefaultonunset", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_bundlep2pdefaultsshippedinthisapp", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_ishostaip2puxenabled", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_bundlep2pdefaultsshippedinthisapp", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L210", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_loghostaip2pflagssourceline", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_orchestratorbuildstampforlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_p2pinferenceflagsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L231", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_loghostaip2pflagsandsource", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_ishostaip2puxenabled", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L223", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_loghostaip2pflagssourceline", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_ishostaip2puxenabled", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_buildallfalsesnapshot", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_buildsnapshotwhenmasteroff", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L194", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflagssourcetagfortests", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L241", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_isp2pinferencefeaturetouched", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L234", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_loghostaip2pflagsandsource", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L209", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_loghostaip2pflagssourceline", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L257", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_shouldrejecthttpinternalinferencerequest", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceTransportLog.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pinferencetransportlog", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceTransportLog.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pinferencetransportlog_logp2pinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L890", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_beginhostaiensuresessionchain", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L957", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensurehostaip2psession", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1016", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensuresession", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1472", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_handlesignal", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1412", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_preflightp2prelaysignal", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L362", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_scheduleofferstartwatchdogifneeded", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1283", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_tryattachp2psessionforinboundsignaling", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L640", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_withderivedui", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSessionManagerStub.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psessionmanagerstub", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSessionManagerStub.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psessionmanagerstub_maybehandlep2pinferencerelaysignal", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSessionManagerStub.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psessionmanagerstub_maybeinitp2psessionmanagerstub", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L317", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_logp2psignalschemadebug", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest_sandboxrequesthostaip2pofferafterbeapadaccepted", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L779", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboximpl", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L374", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_computehostairoutefieldsfordecider", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiTransportLog.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransportlog", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiTransportLog.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransportlog_shouldloghostaitransport", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L384", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_listhostcapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L1432", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_sendhostinferenceresult", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/transportDecide.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_transportdecide", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/transportDecide.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_transportdecide_decidehostaiintentroute", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/p2pSignalOutbound.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_p2psignaloutbound", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/p2pSignalOutbound.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_p2psignaloutbound_recordoutboundp2psignal", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_onrenderertomain", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L378", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_registerwebrtctransportipc", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L325", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_tryapplyrelaypayloadtowebrtcpod", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportWindow.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportwindow", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportWindow.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportwindow_ensurewebrtctransportwindow", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_getp2pinferenceflags" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_iswebrtchostaiarchitectureenabled", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L552", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_iswebrtchostaiarchitectureenabled" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_iswebrtchostaiarchitectureenabled", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L235", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_loghostaip2pflagsandsource", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_loghostaip2pflagssnapshot", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L236", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_loghostaip2pflagsandsource", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_loghostaip2pflagssourceline", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L232", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_loghostaip2pflagsandsource", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalwireschemaversion_logp2psignalwireschemastartupline" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts", + "source_location": "L256", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_shouldrejecthttpinternalinferencerequest", + "target": "apps_electron_vite_project_electron_main_internalinference_unifiedservicerpcrelayflags_blocksplaintexthttpinferencefallback" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_shouldrejecthttpinternalinferencerequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L158", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch_tryhandleinternalservicep2p", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferenceflags_shouldrejecthttpinternalinferencerequest" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceTransportLog.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pinferencetransportlog", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferencetransportlog_logp2pinferencetransport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pInferenceTransportLog.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pinferencetransportlog", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pinferencetransportlog_p2pinferencetransportkind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pReachabilityGet.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2preachabilityget", + "target": "apps_electron_vite_project_electron_main_internalinference_p2preachabilityget_getclientip", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pReachabilityGet.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2preachabilityget", + "target": "apps_electron_vite_project_electron_main_internalinference_p2preachabilityget_handlegetp2preachability", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pReachabilityGet.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2preachabilityget", + "target": "apps_electron_vite_project_electron_main_internalinference_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pReachabilityGet.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2preachabilityget", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_asserthostsendsresulttosandbox", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pReachabilityGet.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2preachabilityget", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pReachabilityGet.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2preachabilityget", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertsandboxrequesttohost", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pReachabilityGet.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2preachabilityget", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_coordinationdeviceidforhandshakedevicerole", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pReachabilityGet.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2preachabilityget", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pReachabilityGet.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2preachabilityget", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pReachabilityGet.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2preachabilityget", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pReachabilityGet.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2preachabilityget", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_ishostmode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pReachabilityGet.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2preachabilityget", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_issandboxmode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pReachabilityGet.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2preachabilityget", + "target": "apps_electron_vite_project_electron_main_p2p_beapingresslog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pReachabilityGet.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2preachabilityget", + "target": "apps_electron_vite_project_electron_main_p2p_beapingresslog_logbeapingressreceived", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pReachabilityGet.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2preachabilityget", + "target": "apps_electron_vite_project_electron_main_p2p_beapingresslog_logp2pbeaprejection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pReachabilityGet.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2preachabilityget", + "target": "apps_electron_vite_project_electron_main_p2p_beapingresslog_readbeapcorrelationidfromincoming", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pReachabilityGet.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2preachabilityget", + "target": "apps_electron_vite_project_electron_main_p2p_beapingresslog_readbeaphandshakehintfromincoming", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pReachabilityGet.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2preachabilityget", + "target": "apps_electron_vite_project_electron_main_p2p_ratelimiter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pReachabilityGet.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2preachabilityget", + "target": "apps_electron_vite_project_electron_main_p2p_ratelimiter_checkauthfaillimit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pReachabilityGet.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2preachabilityget", + "target": "apps_electron_vite_project_electron_main_p2p_ratelimiter_checkiplimit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pReachabilityGet.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2preachabilityget", + "target": "apps_electron_vite_project_electron_main_p2p_ratelimiter_ip_limit_private_lan", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pReachabilityGet.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2preachabilityget", + "target": "apps_electron_vite_project_electron_main_p2p_ratelimiter_ip_limit_public", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pReachabilityGet.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2preachabilityget", + "target": "apps_electron_vite_project_electron_main_p2p_ratelimiter_isclientipprivatelan", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pReachabilityGet.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2preachabilityget", + "target": "apps_electron_vite_project_electron_main_p2p_ratelimiter_recordauthfailure", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pReachabilityGet.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2preachabilityget_handlegetp2preachability", + "target": "apps_electron_vite_project_electron_main_internalinference_p2preachabilityget_getclientip", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pReachabilityGet.ts", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2preachabilityget_handlegetp2preachability", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_asserthostsendsresulttosandbox" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pReachabilityGet.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2preachabilityget_handlegetp2preachability", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pReachabilityGet.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2preachabilityget_handlegetp2preachability", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertsandboxrequesttohost" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pReachabilityGet.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2preachabilityget_handlegetp2preachability", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_coordinationdeviceidforhandshakedevicerole" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pReachabilityGet.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2preachabilityget_handlegetp2preachability", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pReachabilityGet.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2preachabilityget_handlegetp2preachability", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pReachabilityGet.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2preachabilityget_handlegetp2preachability", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_ishostmode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pReachabilityGet.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2preachabilityget_handlegetp2preachability", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_issandboxmode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pReachabilityGet.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2preachabilityget_handlegetp2preachability", + "target": "apps_electron_vite_project_electron_main_p2p_beapingresslog_logbeapingressreceived" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pReachabilityGet.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2preachabilityget_handlegetp2preachability", + "target": "apps_electron_vite_project_electron_main_p2p_beapingresslog_logp2pbeaprejection" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pReachabilityGet.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2preachabilityget_handlegetp2preachability", + "target": "apps_electron_vite_project_electron_main_p2p_beapingresslog_readbeapcorrelationidfromincoming" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pReachabilityGet.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2preachabilityget_handlegetp2preachability", + "target": "apps_electron_vite_project_electron_main_p2p_beapingresslog_readbeaphandshakehintfromincoming" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pReachabilityGet.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2preachabilityget_handlegetp2preachability", + "target": "apps_electron_vite_project_electron_main_p2p_ratelimiter_checkauthfaillimit" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pReachabilityGet.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2preachabilityget_handlegetp2preachability", + "target": "apps_electron_vite_project_electron_main_p2p_ratelimiter_checkiplimit" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pReachabilityGet.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2preachabilityget_handlegetp2preachability", + "target": "apps_electron_vite_project_electron_main_p2p_ratelimiter_isclientipprivatelan" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pReachabilityGet.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2preachabilityget_handlegetp2preachability", + "target": "apps_electron_vite_project_electron_main_p2p_ratelimiter_recordauthfailure" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L250", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch_finishhostinferencepost", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch_httpstatusforcorefailure", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch_internalservicep2pingestmeta", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L288", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch_isinternalservicerpcshape", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch_isservicetype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch_jsonerror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch_tohttpcontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch_tryhandleinternalservicep2p", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch", + "target": "apps_electron_vite_project_electron_main_internalinference_pendingrequests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch", + "target": "apps_electron_vite_project_electron_main_internalinference_pendingrequests_pendingresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch", + "target": "apps_electron_vite_project_electron_main_internalinference_pendingrequests_resolveinternalinferencebyrequestid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch", + "target": "apps_electron_vite_project_electron_main_internalinference_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertsandboxreceivesresultfromhost", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_localcoordinationdeviceid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_sendhostinferenceresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch", + "target": "apps_electron_vite_project_electron_main_internalinference_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internal_inference_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internalinferencerequestwire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internalinferenceresultwire", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_issandboxmode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L263", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch_finishhostinferencepost", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch_jsonerror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch_tryhandleinternalservicep2p", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch_jsonerror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch_tryhandleinternalservicep2p", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch_httpstatusforcorefailure", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L291", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch_isinternalservicerpcshape", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch_isservicetype", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch_tryhandleinternalservicep2p", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch_isservicetype", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch_tryhandleinternalservicep2p", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch_tohttpcontext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L176", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch_tryhandleinternalservicep2p", + "target": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch_finishhostinferencepost", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L216", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch_tryhandleinternalservicep2p", + "target": "apps_electron_vite_project_electron_main_internalinference_pendingrequests_resolveinternalinferencebyrequestid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L185", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch_tryhandleinternalservicep2p", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch_tryhandleinternalservicep2p", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertsandboxreceivesresultfromhost" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L196", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch_tryhandleinternalservicep2p", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_localcoordinationdeviceid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L180", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch_tryhandleinternalservicep2p", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_issandboxmode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts", + "source_location": "L256", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2pservicedispatch_finishhostinferencepost", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_sendhostinferenceresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L784", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_authorizeinternalp2psession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L884", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_beginhostaiensuresessionchain", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L508", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_capabilitydcwaitlisteners", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_clearhandshaketerminalfailurestreak", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L397", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_clearhostaisignalinggatesforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L347", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_clearofferstartwatchdog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L336", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_clearsignalingofferdeadline", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1561", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_closeallp2pinferencesessions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1533", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_closesession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L255", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_computehostaip2psessionstaleevictiondetail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L420", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_discardrelayoutboundsoftstateforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_disposewebrtcpodsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L510", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_emitp2pcapabilitydcwait", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L625", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_emitsessionstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1367", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensureanswererwebrtctransportifneeded", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L923", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensurehostaip2psession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1010", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensuresession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensuresessioninflight", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1000", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensuresessionsingleflight", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L320", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_evicthostaip2psessionforstucklistcache", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L304", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_evictstalehostaip2psessionbeforereuse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L701", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_failhostaip2psessionforterminalsignalingerror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1396", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_getp2pinboundlocalroleforlog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L741", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_getsessionstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1471", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_handlesignal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_handshakesessionstormopenuntilms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_handshaketerminalfailuretimestamps", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L179", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_hostaisessionstormopenuntilms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L251", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_hostaistaleadrequestrecoverylatched", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L239", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ishostaip2ppostdatachannelcachedphase", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L230", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ishostaip2ppredatachannelphase", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1568", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_listhandshakeidswithopenp2pdatachannel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1615", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_logclosed", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1605", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_logconnecting", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1609", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_logfailed", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L756", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_logp2psessionauthfailed", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1506", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_markdatachannelopenforp2psession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L460", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_markp2pcreateofferbegin", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L442", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_markp2poffersentforsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L450", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_markp2ppeerconnectioncreatebegin", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L216", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_needswebrtcofferpipelinerepair", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_nooffermilestones", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L605", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_notifywebrtctransportterminaliceorconnectionfailed", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L621", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_now", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L198", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_offersentforsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L197", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_offerstartwatchdogtimers", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_p2p_signaling_window_ms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L503", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_p2pcapabilitydcwaitevent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L749", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_p2psessionauthfailurereason", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_p2psessionlogreason", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_p2psessionlogreasontype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_p2psessionphase", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_p2psessionphasetype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_p2psessionstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_p2psessionuiphase", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_p2psessionuiphasetype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L273", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_performhostaip2psessioneviction", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1411", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_preflightp2prelaysignal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L154", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_pruneterminalfailuretimestamps", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L161", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_recordhandshaketerminalfailureforstorm", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L553", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_resethostaip2psessionfortransportloss", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_resethostaisessionstormfortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1588", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_resetp2pinferencesessionsfortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_sandbox_initiated_p2p_session_reasons", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L470", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_scheduleofferoutbounddeadlineifneeded", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L358", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_scheduleofferstartwatchdogifneeded", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L693", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_schedulep2psignalingrelayout", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1580", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_seedhostaip2psessionfortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L500", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_sessionlisteners", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_sessionmodel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L332", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_sessionopkey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_sessions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L675", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_setsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L196", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_signalingofferdeadlinetimers", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L527", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_subscribep2pcapabilitydcwait", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L727", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_subscribesessionstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L846", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_syntheticrelaycircuitcooldownstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L865", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_syntheticsessionstormcooldownstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L429", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_teardownp2ptransportandrelayforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1280", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_tryattachp2psessionforinboundsignaling", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L639", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_withderivedui", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaycircuit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaycircuit_getp2prelaysignalingcircuitopenuntilms", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaycircuit_isp2prelaysignalingcircuitopen", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaycircuit_resetp2prelaysignalingcircuitfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerrolesresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_isinternalhandshakeinitiatordevice", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_localcoordinationdeviceid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_peercoordinationdeviceid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pSessionWait.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSessionManagerStub.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psessionmanagerstub", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L215", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_handlehostaidirectbeapadrequestfromrelay", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest_maysendp2pofferrequest", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest_p2ptransportalreadyadvancing", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/p2pSignalOutbound.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_p2psignaloutbound", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L278", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_setorchestratormode", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWsHolder.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationwsholder", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L814", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_authorizeinternalp2psession", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_sandbox_initiated_p2p_session_reasons" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_disposewebrtcpodsession", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L433", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_teardownp2ptransportandrelayforhandshake", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_disposewebrtcpodsession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pSessionWait.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_p2psessionphase", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_p2psessionphase", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_p2psessionphase", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_p2psessionphase", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWsHolder.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationwsholder", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_p2psessionlogreason", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_p2psessionstate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_recordhandshaketerminalfailureforstorm", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_pruneterminalfailuretimestamps", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_recordhandshaketerminalfailureforstorm", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_now", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L684", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_setsession", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_recordhandshaketerminalfailureforstorm", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L681", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_setsession", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_clearhandshaketerminalfailurestreak", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L891", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_beginhostaiensuresessionchain", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_hostaisessionstormopenuntilms", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L183", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_hostaisessionstormopenuntilms", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_now", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1555", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_closesession", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_nooffermilestones", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1029", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensuresession", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_nooffermilestones", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L299", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_performhostaip2psessioneviction", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_nooffermilestones", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L595", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_resethostaip2psessionfortransportloss", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_nooffermilestones", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L860", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_syntheticrelaycircuitcooldownstate", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_nooffermilestones", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L879", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_syntheticsessionstormcooldownstate", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_nooffermilestones", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1338", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_tryattachp2psessionforinboundsignaling", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_nooffermilestones", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L958", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensurehostaip2psession", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_needswebrtcofferpipelinerepair", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1142", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensuresession", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_needswebrtcofferpipelinerepair", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L259", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_computehostaip2psessionstaleevictiondetail", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ishostaip2ppredatachannelphase", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L326", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_evicthostaip2psessionforstucklistcache", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ishostaip2ppredatachannelphase", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L567", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_resethostaip2psessionfortransportloss", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ishostaip2ppostdatachannelcachedphase", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L310", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_evictstalehostaip2psessionbeforereuse", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_computehostaip2psessionstaleevictiondetail", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L329", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_evicthostaip2psessionforstucklistcache", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_performhostaip2psessioneviction", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L312", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_evictstalehostaip2psessionbeforereuse", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_performhostaip2psessioneviction", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L284", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_performhostaip2psessioneviction", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_emitp2pcapabilitydcwait", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L301", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_performhostaip2psessioneviction", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_emitsessionstate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L287", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_performhostaip2psessioneviction", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_now", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L285", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_performhostaip2psessioneviction", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_teardownp2ptransportandrelayforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L288", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_performhostaip2psessioneviction", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_withderivedui", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L937", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensurehostaip2psession", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_evictstalehostaip2psessionbeforereuse", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensuresession", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_evictstalehostaip2psessionbeforereuse", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L310", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_evictstalehostaip2psessionbeforereuse", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_now", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L350", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_clearofferstartwatchdog", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_sessionopkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L339", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_clearsignalingofferdeadline", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_sessionopkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L443", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_markp2poffersentforsession", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_sessionopkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L579", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_resethostaip2psessionfortransportloss", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_sessionopkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L478", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_scheduleofferoutbounddeadlineifneeded", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_sessionopkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L369", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_scheduleofferstartwatchdogifneeded", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_sessionopkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1496", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_handlesignal", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_clearsignalingofferdeadline", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1512", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_markdatachannelopenforp2psession", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_clearsignalingofferdeadline", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L445", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_markp2poffersentforsession", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_clearsignalingofferdeadline", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L577", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_resethostaip2psessionfortransportloss", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_clearsignalingofferdeadline", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L479", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_scheduleofferoutbounddeadlineifneeded", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_clearsignalingofferdeadline", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1497", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_handlesignal", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_clearofferstartwatchdog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1513", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_markdatachannelopenforp2psession", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_clearofferstartwatchdog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L467", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_markp2pcreateofferbegin", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_clearofferstartwatchdog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L446", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_markp2poffersentforsession", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_clearofferstartwatchdog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L578", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_resethostaip2psessionfortransportloss", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_clearofferstartwatchdog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L370", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_scheduleofferstartwatchdogifneeded", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_clearofferstartwatchdog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1159", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensuresession", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_scheduleofferstartwatchdogifneeded", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L382", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_scheduleofferstartwatchdogifneeded", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_now", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L384", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_scheduleofferstartwatchdogifneeded", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_setsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L383", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_scheduleofferstartwatchdogifneeded", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_teardownp2ptransportandrelayforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L434", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_teardownp2ptransportandrelayforhandshake", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_clearhostaisignalinggatesforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L423", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_discardrelayoutboundsoftstateforhandshake", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L435", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_teardownp2ptransportandrelayforhandshake", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_discardrelayoutboundsoftstateforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1542", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_closesession", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_teardownp2ptransportandrelayforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1377", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensureanswererwebrtctransportifneeded", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_teardownp2ptransportandrelayforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensuresession", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_teardownp2ptransportandrelayforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L710", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_failhostaip2psessionforterminalsignalingerror", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_teardownp2ptransportandrelayforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1491", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_handlesignal", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_teardownp2ptransportandrelayforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L581", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_resethostaip2psessionfortransportloss", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_teardownp2ptransportandrelayforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L486", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_scheduleofferoutbounddeadlineifneeded", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_teardownp2ptransportandrelayforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1322", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_tryattachp2psessionforinboundsignaling", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_teardownp2ptransportandrelayforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/p2pSignalOutbound.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_p2psignaloutbound", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_markp2poffersentforsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/p2pSignalOutbound.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_p2psignaloutbound_recordoutboundp2psignal", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_markp2poffersentforsession" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L456", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_markp2ppeerconnectioncreatebegin", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_now", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L456", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_markp2ppeerconnectioncreatebegin", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_setsession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_markp2ppeerconnectioncreatebegin", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_onrenderertomain", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_markp2ppeerconnectioncreatebegin", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L466", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_markp2pcreateofferbegin", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_now", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L466", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_markp2pcreateofferbegin", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_setsession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_markp2pcreateofferbegin", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L171", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_onrenderertomain", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_markp2pcreateofferbegin", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1158", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensuresession", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_scheduleofferoutbounddeadlineifneeded", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L490", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_scheduleofferoutbounddeadlineifneeded", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_now", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L487", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_scheduleofferoutbounddeadlineifneeded", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_setsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1530", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_markdatachannelopenforp2psession", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_emitp2pcapabilitydcwait", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L617", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_notifywebrtctransportterminaliceorconnectionfailed", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_emitp2pcapabilitydcwait", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L575", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_resethostaip2psessionfortransportloss", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_emitp2pcapabilitydcwait", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L685", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_setsession", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_emitp2pcapabilitydcwait", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pSessionWait.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_subscribep2pcapabilitydcwait", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pSessionWait.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait_waitforp2pdatachannelopenorterminal", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_subscribep2pcapabilitydcwait" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L983", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensurehostaip2psession", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_resethostaip2psessionfortransportloss", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L618", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_notifywebrtctransportterminaliceorconnectionfailed", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_resethostaip2psessionfortransportloss", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L597", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_resethostaip2psessionfortransportloss", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_emitsessionstate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L583", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_resethostaip2psessionfortransportloss", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_now", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L584", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_resethostaip2psessionfortransportloss", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_withderivedui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_resethostaip2psessionfortransportloss", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L272", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_onrenderertomain", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_resethostaip2psessionfortransportloss", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_notifywebrtctransportterminaliceorconnectionfailed", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L310", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_onrenderertomain", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_notifywebrtctransportterminaliceorconnectionfailed", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1540", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_closesession", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_now", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1381", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensureanswererwebrtctransportifneeded", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_now", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L941", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensurehostaip2psession", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_now", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1015", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensuresession", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_now", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L711", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_failhostaip2psessionforterminalsignalingerror", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_now", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1484", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_handlesignal", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_now", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1514", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_markdatachannelopenforp2psession", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_now", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1424", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_preflightp2prelaysignal", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_now", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L677", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_setsession", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_now", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L848", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_syntheticrelaycircuitcooldownstate", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_now", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L867", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_syntheticsessionstormcooldownstate", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_now", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1326", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_tryattachp2psessionforinboundsignaling", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_now", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1557", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_closesession", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_emitsessionstate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L633", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_emitsessionstate", + "target": "test_mocks_electron_browserwindow_getallwindows" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L679", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_setsession", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_emitsessionstate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1544", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_closesession", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_withderivedui", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L948", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensurehostaip2psession", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_withderivedui", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1031", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensuresession", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_withderivedui", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L746", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_getsessionstate", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_withderivedui", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1583", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_seedhostaip2psessionfortests", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_withderivedui", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L677", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_setsession", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_withderivedui", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L862", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_syntheticrelaycircuitcooldownstate", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_withderivedui", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L881", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_syntheticsessionstormcooldownstate", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_withderivedui", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1378", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensureanswererwebrtctransportifneeded", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_setsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1047", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensuresession", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_setsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L712", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_failhostaip2psessionforterminalsignalingerror", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_setsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1492", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_handlesignal", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_setsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1522", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_markdatachannelopenforp2psession", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_setsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1341", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_tryattachp2psessionforinboundsignaling", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_setsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1157", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensuresession", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_schedulep2psignalingrelayout", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_failhostaip2psessionforterminalsignalingerror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_handleicesendfailureafterretries", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_failhostaip2psessionforterminalsignalingerror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L508", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_sendhostaip2psignaloutbound", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_failhostaip2psessionforterminalsignalingerror" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pSessionWait.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_getsessionstate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pSessionWait.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait_isp2pdatachannelupforhandshake", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_getsessionstate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pSessionWait.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait_waitforp2pdatachannelopenorterminal", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_getsessionstate" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSessionManagerStub.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psessionmanagerstub", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_getsessionstate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSessionManagerStub.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psessionmanagerstub_maybehandlep2pinferencerelaysignal", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_getsessionstate" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_getsessionstate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L470", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_sendhostaip2psignaloutbound", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_getsessionstate" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_getsessionstate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L915", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboximpl", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_getsessionstate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_getsessionstate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L965", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildsessionstateforhostaidecider", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_getsessionstate" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_getsessionstate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L455", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_listhostcapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_getsessionstate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L1457", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_sendhostinferenceresult", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_getsessionstate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensuresession", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_logp2psessionauthfailed", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L768", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_logp2psessionauthfailed", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L767", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_logp2psessionauthfailed", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1091", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensuresession", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_authorizeinternalp2psession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L902", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_beginhostaiensuresessionchain", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_syntheticrelaycircuitcooldownstate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L896", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_beginhostaiensuresessionchain", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_syntheticsessionstormcooldownstate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L906", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_beginhostaiensuresessionchain", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensuresession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L900", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_beginhostaiensuresessionchain", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaycircuit_getp2prelaysignalingcircuitopenuntilms", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L898", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_beginhostaiensuresessionchain", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaycircuit_isp2prelaysignalingcircuitopen", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L984", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensurehostaip2psession", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_beginhostaiensuresessionchain", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L926", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensurehostaip2psession", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensuresession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1004", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensuresessionsingleflight", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensurehostaip2psession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1236", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensuresession", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_logconnecting", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1066", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensuresession", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_logfailed", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1070", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensuresession", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1090", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensuresession", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1187", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensuresession", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_isinternalhandshakeinitiatordevice" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1190", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensuresession", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_localcoordinationdeviceid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1191", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensuresession", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_peercoordinationdeviceid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1089", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensuresession", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1304", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_tryattachp2psessionforinboundsignaling", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensureanswererwebrtctransportifneeded", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1361", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_tryattachp2psessionforinboundsignaling", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_logfailed", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1297", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_tryattachp2psessionforinboundsignaling", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1300", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_tryattachp2psessionforinboundsignaling", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_isinternalhandshakeinitiatordevice" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1324", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_tryattachp2psessionforinboundsignaling", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_localcoordinationdeviceid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1325", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_tryattachp2psessionforinboundsignaling", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_peercoordinationdeviceid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1299", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_tryattachp2psessionforinboundsignaling", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSessionManagerStub.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psessionmanagerstub", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_tryattachp2psessionforinboundsignaling", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSessionManagerStub.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psessionmanagerstub_maybehandlep2pinferencerelaysignal", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_tryattachp2psessionforinboundsignaling" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1384", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_ensureanswererwebrtctransportifneeded", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_logfailed", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1402", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_getp2pinboundlocalroleforlog", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1404", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_getp2pinboundlocalroleforlog", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1404", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_getp2pinboundlocalroleforlog", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSessionManagerStub.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psessionmanagerstub", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_getp2pinboundlocalroleforlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSessionManagerStub.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psessionmanagerstub_maybehandlep2pinferencerelaysignal", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_getp2pinboundlocalroleforlog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1434", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_preflightp2prelaysignal", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_closesession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1443", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_preflightp2prelaysignal", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1448", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_preflightp2prelaysignal", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_localcoordinationdeviceid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1449", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_preflightp2prelaysignal", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_peercoordinationdeviceid" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSessionManagerStub.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psessionmanagerstub", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_preflightp2prelaysignal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSessionManagerStub.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psessionmanagerstub_maybehandlep2pinferencerelaysignal", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_preflightp2prelaysignal" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSessionManagerStub.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psessionmanagerstub", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_handlesignal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSessionManagerStub.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psessionmanagerstub_maybehandlep2pinferencerelaysignal", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_handlesignal" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_markdatachannelopenforp2psession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L258", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_onrenderertomain", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_markdatachannelopenforp2psession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1563", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_closeallp2pinferencesessions", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_closesession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1558", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_closesession", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_logclosed", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWsHolder.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationwsholder", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_closeallp2pinferencesessions", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWsHolder.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationwsholder_disconnectcoordinationwsforaccountswitch", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_closeallp2pinferencesessions" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts", + "source_location": "L1602", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2pinferencesessionmanager_resetp2pinferencesessionsfortests", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaycircuit_resetp2prelaysignalingcircuitfortests" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pSessionWait.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait_host_ai_capability_dc_wait_ms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pSessionWait.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait_isp2pdatachannelupforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pSessionWait.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait_p2pcapabilitydcwaitoutcome", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pSessionWait.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait_p2pcapabilitydcwaitoutcomelogreason", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pSessionWait.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait_waitforp2pdatachannelopenorterminal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pSessionWait.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait_waitforp2pdatachannelortimeout", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest_maysendp2pofferrequest", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest_p2ptransportalreadyadvancing", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/transportDecide.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_transportdecide", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait_host_ai_capability_dc_wait_ms", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pSessionWait.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait_waitforp2pdatachannelopenorterminal", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait_isp2pdatachannelupforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait_isp2pdatachannelupforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L1069", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboximpl", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait_isp2pdatachannelupforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait_isp2pdatachannelupforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L966", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildsessionstateforhostaidecider", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait_isp2pdatachannelupforhandshake" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait_isp2pdatachannelupforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L473", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_listhostcapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait_isp2pdatachannelupforhandshake" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/transportDecide.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_transportdecide", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait_isp2pdatachannelupforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/transportDecide.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_transportdecide_iswebrtcp2pdataplaneavailable", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait_isp2pdatachannelupforhandshake" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait_p2pcapabilitydcwaitoutcome", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L165", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_listsandboxhostinferencecandidates", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait_p2pcapabilitydcwaitoutcome" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait_p2pcapabilitydcwaitoutcomelogreason", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L1078", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboximpl", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait_p2pcapabilitydcwaitoutcomelogreason", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pSessionWait.ts", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait_waitforp2pdatachannelortimeout", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait_waitforp2pdatachannelopenorterminal", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait_waitforp2pdatachannelopenorterminal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L1073", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboximpl", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psession_p2psessionwait_waitforp2pdatachannelopenorterminal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSessionManagerStub.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psessionmanagerstub", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psessionmanagerstub_maybehandlep2pinferencerelaysignal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSessionManagerStub.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psessionmanagerstub", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psessionmanagerstub_maybeinitp2psessionmanagerstub", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSessionManagerStub.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psessionmanagerstub", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psessionmanagerstub_signaltypeforlog", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSessionManagerStub.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psessionmanagerstub", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSessionManagerStub.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psessionmanagerstub", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_tryapplyrelaypayloadtowebrtcpod", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psessionmanagerstub", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSessionManagerStub.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psessionmanagerstub_maybehandlep2pinferencerelaysignal", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psessionmanagerstub_signaltypeforlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSessionManagerStub.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psessionmanagerstub_maybehandlep2pinferencerelaysignal", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_tryapplyrelaypayloadtowebrtcpod" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psessionmanagerstub_maybehandlep2pinferencerelaysignal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L389", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_tryhandlecoordinationp2psignal", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psessionmanagerstub_maybehandlep2pinferencerelaysignal" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayCircuit.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaycircuit", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaycircuit_getp2prelaysignalingcircuitopenuntilms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayCircuit.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaycircuit", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaycircuit_isp2prelaysignalingcircuitopen", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayCircuit.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaycircuit", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaycircuit_prunestorms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayCircuit.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaycircuit", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaycircuit_recordp2prelaysignaling429storm", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayCircuit.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaycircuit", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaycircuit_resetp2prelaysignalingcircuitfortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayCircuit.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaycircuit", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaycircuit_stormtimestamps", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaycircuit", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayCircuit.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaycircuit_recordp2prelaysignaling429storm", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaycircuit_prunestorms", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaycircuit_recordp2prelaysignaling429storm", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L677", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_sendhostaip2psignaloutbound", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaycircuit_recordp2prelaysignaling429storm" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaycircuit_resetp2prelaysignalingcircuitfortests", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L151", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_resetp2psignalrelayoutboundstatefortests", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaycircuit_resetp2prelaysignalingcircuitfortests" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L207", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_accountemaildomainhintfrombearer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L906", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_buildhostaidirectbeapadrequestbody", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L731", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_buildhostaidirectbeapadsignalbody", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L284", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_buildp2psignalbody", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_consume429backoffdelayms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L168", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_coordinationbaseurl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_discardp2prelayoutboundsoftstateforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_getrelayoutboundsoft", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_handleicesendfailureafterretries", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L717", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_hostaibeapadsignalollamacapabilities", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_jittered429backoffms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L194", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_jwtexpmsfrombearer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L221", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_loghostairelaypostfailed", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L316", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_logp2psignalschemadebug", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L359", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_mapsignalinghttptoterminalcode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_outboundrelayp2pkind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L381", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_p2psignalrelayposttesthooks", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_parsecoordinationp2psignalposterror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L931", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_posthostaidirectbeapadrequesttocoordination", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L787", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_posthostaidirectbeapadtocoordination", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L392", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_postp2psignaltocoordination", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L413", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_postp2psignaltocoordinationwithoptionalauthretry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_relayoutboundsoftbyhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_relayoutboundsoftstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_relaysendchainbyhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_reset429slotonsuccess", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_resetp2psignalrelayoutboundstatefortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_sendhostaip2psignalbodyviaunifiedrelaywhenenabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L445", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_sendhostaip2psignaloutbound", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L269", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_shouldsendhostaip2psignalviacoordination", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L278", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_signaltypeforkind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_sleep", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L154", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_withrelayoutboundqueue", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalwireschemaversion", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalwireschemaversion_p2p_signal_wire_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointkind", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_unifiedservicerpcrelayflags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_internalinference_unifiedservicerpcrelayflags_isunifiedservicerpcrelayenabled", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_normalizecoordinationurlforlocaldial", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_getp2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_p2p_relaysync", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_p2p_relaysync_coordinationp2psignal403isregistrydrift", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_electron_main_p2p_relaysync_reregisterinternalhandshakeaftercoordinationp2psignal403", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_src_auth_session", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "target": "apps_electron_vite_project_src_auth_session_getaccesstoken", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/p2pSignalOutbound.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_p2psignaloutbound", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L958", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_posthostaidirectbeapadrequesttocoordination", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_sendhostaip2psignalbodyviaunifiedrelaywhenenabled", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L822", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_posthostaidirectbeapadtocoordination", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_sendhostaip2psignalbodyviaunifiedrelaywhenenabled", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_sendhostaip2psignalbodyviaunifiedrelaywhenenabled", + "target": "apps_electron_vite_project_electron_main_internalinference_unifiedservicerpcrelayflags_isunifiedservicerpcrelayenabled", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L547", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_sendhostaip2psignaloutbound", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_sendhostaip2psignalbodyviaunifiedrelaywhenenabled", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_consume429backoffdelayms", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_getrelayoutboundsoft", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_handleicesendfailureafterretries", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_getrelayoutboundsoft", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L558", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_sendhostaip2psignaloutbound", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_getrelayoutboundsoft", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L556", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_sendhostaip2psignaloutbound", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_reset429slotonsuccess", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L632", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_sendhostaip2psignaloutbound", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_sleep", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_consume429backoffdelayms", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_jittered429backoffms", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L628", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_sendhostaip2psignaloutbound", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_consume429backoffdelayms", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L668", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_sendhostaip2psignaloutbound", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_handleicesendfailureafterretries", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L490", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_sendhostaip2psignaloutbound", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_withrelayoutboundqueue", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L171", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_coordinationbaseurl", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_normalizecoordinationurlforlocaldial", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L169", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_coordinationbaseurl", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_getp2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L942", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_posthostaidirectbeapadrequesttocoordination", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_coordinationbaseurl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L802", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_posthostaidirectbeapadtocoordination", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_coordinationbaseurl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L505", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_sendhostaip2psignaloutbound", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_coordinationbaseurl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L976", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_posthostaidirectbeapadrequesttocoordination", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_parsecoordinationp2psignalposterror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L854", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_posthostaidirectbeapadtocoordination", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_jwtexpmsfrombearer", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L855", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_posthostaidirectbeapadtocoordination", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_accountemaildomainhintfrombearer", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L844", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_posthostaidirectbeapadtocoordination", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_loghostairelaypostfailed", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L486", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_sendhostaip2psignaloutbound", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_shouldsendhostaip2psignalviacoordination", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L275", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_shouldsendhostaip2psignalviacoordination", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointkind" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L273", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_shouldsendhostaip2psignalviacoordination", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_getp2pconfig" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L523", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_sendhostaip2psignaloutbound", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_signaltypeforkind", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L524", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_sendhostaip2psignaloutbound", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_buildp2psignalbody", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L639", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_sendhostaip2psignaloutbound", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_logp2psignalschemadebug", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L636", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_sendhostaip2psignaloutbound", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_mapsignalinghttptoterminalcode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L421", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_postp2psignaltocoordinationwithoptionalauthretry", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_postp2psignaltocoordination", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L430", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_postp2psignaltocoordinationwithoptionalauthretry", + "target": "apps_electron_vite_project_src_auth_session_getaccesstoken", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L645", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_sendhostaip2psignaloutbound", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L534", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_sendhostaip2psignaloutbound", + "target": "apps_electron_vite_project_src_auth_session_getaccesstoken" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/p2pSignalOutbound.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_p2psignaloutbound", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_sendhostaip2psignaloutbound", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/p2pSignalOutbound.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_p2psignaloutbound_recordoutboundp2psignal", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_sendhostaip2psignaloutbound" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L812", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_posthostaidirectbeapadtocoordination", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_buildhostaidirectbeapadsignalbody", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L839", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_posthostaidirectbeapadtocoordination", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L882", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_posthostaidirectbeapadtocoordination", + "target": "apps_electron_vite_project_electron_main_p2p_relaysync_coordinationp2psignal403isregistrydrift" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L883", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_posthostaidirectbeapadtocoordination", + "target": "apps_electron_vite_project_electron_main_p2p_relaysync_reregisterinternalhandshakeaftercoordinationp2psignal403" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L806", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_posthostaidirectbeapadtocoordination", + "target": "apps_electron_vite_project_src_auth_session_getaccesstoken" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L952", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_posthostaidirectbeapadrequesttocoordination", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_buildhostaidirectbeapadrequestbody", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts", + "source_location": "L946", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_posthostaidirectbeapadrequesttocoordination", + "target": "apps_electron_vite_project_src_auth_session_getaccesstoken" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_posthostaidirectbeapadrequesttocoordination", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L248", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest_sandboxmayberequesthostdirectbeapadvertisement", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_posthostaidirectbeapadrequesttocoordination" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest_sandboxrequesthostaip2pofferafterbeapadaccepted", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalrelaypost_posthostaidirectbeapadrequesttocoordination" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalWireSchemaVersion.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalwireschemaversion", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalwireschemaversion_logp2psignalwireschemastartupline", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalWireSchemaVersion.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalwireschemaversion", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalwireschemaversion_p2p_signal_wire_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/p2pSignalWireSchemaVersion.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_p2psignalwireschemaversion", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalwireschemaversion_resetp2psignalwireschemalogfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/__tests__/p2pSignalSchemaElectronAlignment.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tests_p2psignalschemaelectronalignment_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalwireschemaversion", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/__tests__/p2pSignalSchemaElectronAlignment.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tests_p2psignalschemaelectronalignment_test", + "target": "apps_electron_vite_project_electron_main_internalinference_p2psignalwireschemaversion_p2p_signal_wire_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/pendingRequests.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_pendingrequests", + "target": "apps_electron_vite_project_electron_main_internalinference_pendingrequests_pending", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/pendingRequests.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_pendingrequests", + "target": "apps_electron_vite_project_electron_main_internalinference_pendingrequests_pendingresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/pendingRequests.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_pendingrequests", + "target": "apps_electron_vite_project_electron_main_internalinference_pendingrequests_registerinternalinferencerequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/pendingRequests.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_pendingrequests", + "target": "apps_electron_vite_project_electron_main_internalinference_pendingrequests_rejectinternalinferencebyrequestid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/pendingRequests.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_pendingrequests", + "target": "apps_electron_vite_project_electron_main_internalinference_pendingrequests_resetpendingfortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/pendingRequests.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_pendingrequests", + "target": "apps_electron_vite_project_electron_main_internalinference_pendingrequests_resolveinternalinferencebyrequestid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L324", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_asserthostreceivesrequestfromsandbox", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L340", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_asserthostsendsresulttosandbox", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L308", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertledgerrolessandboxtohost", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L239", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertp2pendpointdirect", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L289", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L349", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertsandboxreceivesresultfromhost", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L320", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertsandboxrequesttohost", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L282", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_canpostinternalinferencehttptop2pendpointingest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_coordinationdeviceidforhandshakedevicerole", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerrolesresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_handshakesameprincipal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L408", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_hostaihosttosandboxashost", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L385", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_hostaisandboxtohostrequestdeviceids", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_internalhostaipeerrolesfail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_internalhostaipeerrolesok", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L258", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_internalinferenceendpointgateok", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L150", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_iscoordinationserviceendpointurl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_isinternalhandshakeinitiatordevice", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L142", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_localcoordinationdeviceid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_localdevicerole", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_normhostsandboxrole", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L377", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_outboundp2pbearertocounterpartyingest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointkind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L196", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointkindforprobelog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L222", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointmvpclass", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L194", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointprobelogkind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L220", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pmvpendpointclass", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L134", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_peercoordinationdeviceid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_peerdevicerole", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_sameprincipal", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_getp2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler", + "target": "apps_electron_vite_project_electron_main_internalinference_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest", + "target": "apps_electron_vite_project_electron_main_internalinference_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostChat.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostchat", + "target": "apps_electron_vite_project_electron_main_internalinference_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxOllamaDirectCapsRefresh.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxollamadirectcapsrefresh", + "target": "apps_electron_vite_project_electron_main_internalinference_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxRequest.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxrequest", + "target": "apps_electron_vite_project_electron_main_internalinference_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve", + "target": "apps_electron_vite_project_electron_main_internalinference_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/inferenceDirectHttpTrust.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_inferencedirecthttptrust", + "target": "apps_electron_vite_project_electron_main_internalinference_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_policy", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy_handshakesameprincipal", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_sameprincipal", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_handshakesameprincipal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L974", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_derivehostaihandshakeroles", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_handshakesameprincipal" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/inferenceDirectHttpTrust.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_inferencedirecthttptrust", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_handshakesameprincipal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/inferenceDirectHttpTrust.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_inferencedirecthttptrust_inferencedirecthttptrust", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_handshakesameprincipal" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy_coordinationdeviceidforhandshakedevicerole", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_normhostsandboxrole", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_normhostsandboxrole", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_coordinationdeviceidforhandshakedevicerole", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L185", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_handlehostaidirectbeapadrequestfromrelay", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_coordinationdeviceidforhandshakedevicerole", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_coordinationdeviceidforhandshakedevicerole", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L880", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboximpl", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_coordinationdeviceidforhandshakedevicerole", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_coordinationdeviceidforhandshakedevicerole", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L314", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildhostaicanonicalrouteresolveinputfordecider", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_coordinationdeviceidforhandshakedevicerole" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L277", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildpeerdirectadvertisement", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_coordinationdeviceidforhandshakedevicerole" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L413", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_computehostairoutefieldsfordecider", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_coordinationdeviceidforhandshakedevicerole", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_coordinationdeviceidforhandshakedevicerole", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L948", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_listhostcapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_coordinationdeviceidforhandshakedevicerole" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerrolesresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/inferenceDirectHttpTrust.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_inferencedirecthttptrust", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerrolesresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L328", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy_asserthostreceivesrequestfromsandbox", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L341", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy_asserthostsendsresulttosandbox", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L311", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy_assertledgerrolessandboxtohost", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L353", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy_assertsandboxreceivesresultfromhost", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L414", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy_hostaihosttosandboxashost", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L391", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy_hostaisandboxtohostrequestdeviceids", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest_sandboxmayberequesthostdirectbeapadvertisement", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest_sandboxrequesthostaip2pofferafterbeapadaccepted", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L315", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildhostaicanonicalrouteresolveinputfordecider", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L973", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_derivehostaihandshakeroles", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_hostaiverifiedhttpforhostsendresult", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_deriveinternalhostaipeerroles", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostChat.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostchat", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_peercoordinationdeviceid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostChat.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostchat_runsandboxhostinferencechat", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_peercoordinationdeviceid" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_peercoordinationdeviceid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_localcoordinationdeviceid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L879", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboximpl", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_localcoordinationdeviceid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L187", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointkind", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_iscoordinationserviceendpointurl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L241", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy_assertp2pendpointdirect", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointkind", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L274", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy_internalinferenceendpointgateok", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointkind", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L186", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointkind", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_getp2pconfig" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointkindforprobelog", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointkind", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L230", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointmvpclass", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointkind", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointkind", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointkind", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L999", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildlegacyendpointinfofordecider", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointkind" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L285", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildpeerdirectadvertisement", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointkind" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointkind", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L603", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_listhostcapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointkind" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointprobelogkind", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L226", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointmvpclass", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointkindforprobelog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointkindforprobelog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L1140", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboximpl", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointkindforprobelog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pmvpendpointclass", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointmvpclass", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L1008", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildlegacyendpointinfofordecider", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointmvpclass" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L286", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildpeerdirectadvertisement", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointmvpclass" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_p2pendpointmvpclass", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L286", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy_canpostinternalinferencehttptop2pendpointingest", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertp2pendpointdirect", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L267", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy_internalinferenceendpointgateok", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertp2pendpointdirect", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertp2pendpointdirect", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_listsandboxhostinferencecandidates", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertp2pendpointdirect" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertp2pendpointdirect", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_hostaiverifiedhttpforhostsendresult", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertp2pendpointdirect", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_internalinferenceendpointgateok", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L1009", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildlegacyendpointinfofordecider", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_internalinferenceendpointgateok" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_canpostinternalinferencehttptop2pendpointingest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L1004", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildlegacyendpointinfofordecider", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_canpostinternalinferencehttptop2pendpointingest" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L160", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_handlehostaidirectbeapadrequestfromrelay", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostChat.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostchat", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostChat.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostchat_runsandboxhostinferencechat", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L155", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_listsandboxhostinferencecandidates", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L815", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboximpl", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxOllamaDirectCapsRefresh.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxollamadirectcapsrefresh", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxOllamaDirectCapsRefresh.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxollamadirectcapsrefresh_refreshsandboxollamadirectfromhostcapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxRequest.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxrequest", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxRequest.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxrequest_runsandboxpongtestfromhosthandshake", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertrecordforservicerpc" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L311", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy_assertledgerrolessandboxtohost", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L321", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy_assertsandboxrequesttohost", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertledgerrolessandboxtohost", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertledgerrolessandboxtohost", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L908", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboximpl", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertledgerrolessandboxtohost", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostChat.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostchat", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertsandboxrequesttohost", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostChat.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostchat_runsandboxhostinferencechat", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertsandboxrequesttohost" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertsandboxrequesttohost", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L159", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_listsandboxhostinferencecandidates", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertsandboxrequesttohost" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxRequest.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxrequest", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertsandboxrequesttohost", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxRequest.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxrequest_runsandboxpongtestfromhosthandshake", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_assertsandboxrequesttohost" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L328", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy_asserthostreceivesrequestfromsandbox", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_asserthostreceivesrequestfromsandbox", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L172", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_handlehostaidirectbeapadrequestfromrelay", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_asserthostreceivesrequestfromsandbox", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L341", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy_asserthostsendsresulttosandbox", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/policy.ts", + "source_location": "L353", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_policy_assertsandboxreceivesresultfromhost", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_outboundp2pbearertocounterpartyingest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L981", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboximpl", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_outboundp2pbearertocounterpartyingest", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxOllamaDirectCapsRefresh.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxollamadirectcapsrefresh", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_outboundp2pbearertocounterpartyingest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxOllamaDirectCapsRefresh.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxollamadirectcapsrefresh_refreshsandboxollamadirectfromhostcapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_outboundp2pbearertocounterpartyingest" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_outboundp2pbearertocounterpartyingest", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_hostaisandboxtohostrequestdeviceids", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L494", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_listhostcapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_policy_hostaisandboxtohostrequestdeviceids" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler", + "target": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_all_p2p_signal_types", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler", + "target": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_evaluatewebrtcinferencesignallifetime", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L396", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler", + "target": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_extracthandshakeid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler", + "target": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_forbidden_keys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler", + "target": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_handlehostaidirectbeapadrequestfromrelay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler", + "target": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_iswireschemaversionone", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L404", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler", + "target": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_logdropped", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler", + "target": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_loghostaisignalttl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler", + "target": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_p2psignaldrop", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler", + "target": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_parseiso", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler", + "target": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_relaybeapadhashostaicapabilities", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L242", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler", + "target": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_tryhandlecoordinationp2psignal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler", + "target": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_webrtc_signal_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L257", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_tryhandlecoordinationp2psignal", + "target": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_forbidden_keys" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L369", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_tryhandlecoordinationp2psignal", + "target": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_webrtc_signal_types" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L332", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_tryhandlecoordinationp2psignal", + "target": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_relaybeapadhashostaicapabilities", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L268", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_tryhandlecoordinationp2psignal", + "target": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_all_p2p_signal_types" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L262", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_tryhandlecoordinationp2psignal", + "target": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_iswireschemaversionone", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L278", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_tryhandlecoordinationp2psignal", + "target": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_parseiso", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_evaluatewebrtcinferencesignallifetime", + "target": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_loghostaisignalttl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L291", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_tryhandlecoordinationp2psignal", + "target": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_loghostaisignalttl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L313", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_tryhandlecoordinationp2psignal", + "target": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_evaluatewebrtcinferencesignallifetime", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_handlehostaidirectbeapadrequestfromrelay", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L365", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_tryhandlecoordinationp2psignal", + "target": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_handlehostaidirectbeapadrequestfromrelay", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L251", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_tryhandlecoordinationp2psignal", + "target": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_extracthandshakeid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts", + "source_location": "L252", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_tryhandlecoordinationp2psignal", + "target": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_logdropped", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_tryhandlecoordinationp2psignal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L941", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws_createcoordinationwsclient", + "target": "apps_electron_vite_project_electron_main_internalinference_relayp2psignalhandler_tryhandlecoordinationp2psignal" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L202", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget", + "target": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_crossdevicerouteforeligiblehandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L153", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget", + "target": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_crossdevicetargetfromcandidate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget", + "target": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_invalidatelocalsandboxollamaprobecache", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget", + "target": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_logresolvedecision", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget", + "target": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_probelocalsandboxollama", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget", + "target": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_resolveactivesandboxtohosthandshakeid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L169", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget", + "target": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_resolvehandshakerecordforrouting", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L243", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget", + "target": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_resolvesandboxinferencetarget", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L134", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget", + "target": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_resolvesandboxinferencetargetoptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget", + "target": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_sandboxinferencetarget", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L187", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget", + "target": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_waitforlivepresenceafterredial", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_getsandboxollamadirectroutecandidate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget", + "target": "apps_electron_vite_project_electron_main_llm_localllmpaths", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget", + "target": "apps_electron_vite_project_electron_main_llm_localllmpaths_host_ai_default_local_llamacpp_base", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L296", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_resolvesandboxinferencetarget", + "target": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_probelocalsandboxollama", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L312", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_resolvesandboxinferencetarget", + "target": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_resolveactivesandboxtohosthandshakeid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L209", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_crossdevicerouteforeligiblehandshake", + "target": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_logresolvedecision", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L298", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_resolvesandboxinferencetarget", + "target": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_logresolvedecision", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L240", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_crossdevicerouteforeligiblehandshake", + "target": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_crossdevicetargetfromcandidate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L207", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_crossdevicerouteforeligiblehandshake", + "target": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_resolvehandshakerecordforrouting", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L221", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_crossdevicerouteforeligiblehandshake", + "target": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_waitforlivepresenceafterredial", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L288", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_resolvesandboxinferencetarget", + "target": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_crossdevicerouteforeligiblehandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts", + "source_location": "L250", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_resolvesandboxinferencetarget_resolvesandboxinferencetarget", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_getsandboxollamadirectroutecandidate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest_lastp2pofferrequestbyhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest_lastrepublishrequestatbyhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest_maysendp2pofferrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest_p2ptransportalreadyadvancing", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest_resetsandboxhostaidirectbeapadrequeststatefortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest_sandboxmayberequesthostdirectbeapadvertisement", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest_sandboxrequesthostaip2pofferafterbeapadaccepted", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_getp2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest", + "target": "apps_electron_vite_project_src_auth_session", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest", + "target": "apps_electron_vite_project_src_auth_session_getaccesstoken", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest_maysendp2pofferrequest", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest_p2ptransportalreadyadvancing", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest_sandboxrequesthostaip2pofferafterbeapadaccepted", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest_maysendp2pofferrequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest_sandboxrequesthostaip2pofferafterbeapadaccepted", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest_sandboxrequesthostaip2pofferafterbeapadaccepted", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest_sandboxrequesthostaip2pofferafterbeapadaccepted", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_getp2pconfig" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest_sandboxrequesthostaip2pofferafterbeapadaccepted", + "target": "apps_electron_vite_project_src_auth_session_getaccesstoken" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L154", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest_sandboxmayberequesthostdirectbeapadvertisement", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L155", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest_sandboxmayberequesthostdirectbeapadvertisement", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L160", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest_sandboxmayberequesthostdirectbeapadvertisement", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_getp2pconfig" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts", + "source_location": "L212", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaidirectbeapadrequest_sandboxmayberequesthostdirectbeapadvertisement", + "target": "apps_electron_vite_project_src_auth_session_getaccesstoken" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiListRefreshDecision.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostailistrefreshdecision", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostailistrefreshdecision_logsbxhostairefreshdecision", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiListRefreshDecision.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostailistrefreshdecision", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostailistrefreshdecision_sbxhostairefreshdecisionpayload", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostailistrefreshdecision", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostailistrefreshdecision_logsbxhostairefreshdecision", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L1044", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboximpl", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostailistrefreshdecision_logsbxhostairefreshdecision", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectCandidate.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_candidatesbyhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectCandidate.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_clearsandboxollamadirectroutecandidatesfortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectCandidate.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_default_allowed_ports", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectCandidate.ts", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_evaluatesandboxhostaiollamadirectcore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectCandidate.ts", + "source_location": "L213", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_evaluatesandboxhostaiollamadirectfromcapabilitieswire", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectCandidate.ts", + "source_location": "L235", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_evaluatesandboxhostaiollamadirectfrompolicyresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectCandidate.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_getsandboxollamadirectroutecandidate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectCandidate.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_isforbiddenloopbackhostname", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectCandidate.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_logsbxhostaiollamadirectselected", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectCandidate.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_normalizehostname", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectCandidate.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_parseandvalidatedirectbaseurl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectCandidate.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_portexplicitlyallowed", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectCandidate.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_readallowedportsfromenv", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectCandidate.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_sandboxlanipv4set", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectCandidate.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_sandboxollamadirectroutecandidate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectCandidate.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_sbxhostaiollamadirectselectedlogpayload", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectCandidate.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectCandidate.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internalinferencecapabilitiesresultwire", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectCandidate.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate", + "target": "apps_electron_vite_project_electron_main_llm_localllmpaths", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectCandidate.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate", + "target": "apps_electron_vite_project_electron_main_llm_localllmpaths_default_llamacpp_port", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiRouteSelectCaps.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostairouteselectcaps", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectCandidate.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_portexplicitlyallowed", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_readallowedportsfromenv", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectCandidate.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_parseandvalidatedirectbaseurl", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_portexplicitlyallowed", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectCandidate.ts", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_evaluatesandboxhostaiollamadirectcore", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_sandboxlanipv4set", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectCandidate.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_isforbiddenloopbackhostname", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_normalizehostname", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectCandidate.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_parseandvalidatedirectbaseurl", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_normalizehostname", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectCandidate.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_parseandvalidatedirectbaseurl", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_isforbiddenloopbackhostname", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_sandboxollamadirectroutecandidate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_getsandboxollamadirectroutecandidate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L212", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_fetchtagspayloadoutbound", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_getsandboxollamadirectroutecandidate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiRouteSelectCaps.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostairouteselectcaps", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_getsandboxollamadirectroutecandidate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiRouteSelectCaps.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostairouteselectcaps_loghostairouteselectaftersandboxcapabilitieswire", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_getsandboxollamadirectroutecandidate" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_getsandboxollamadirectroutecandidate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L1011", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboximpl", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_getsandboxollamadirectroutecandidate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_getsandboxollamadirectroutecandidate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_logsbxhostaimodelsourceaftersandboxcapswire", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_getsandboxollamadirectroutecandidate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_getsandboxollamadirectroutecandidate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L398", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc_registerllmhandlers", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_getsandboxollamadirectroutecandidate" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_getsandboxollamadirectroutecandidate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_enrichollamadirectbase", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_getsandboxollamadirectroutecandidate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectCandidate.ts", + "source_location": "L154", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_evaluatesandboxhostaiollamadirectcore", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_logsbxhostaiollamadirectselected", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectCandidate.ts", + "source_location": "L192", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_evaluatesandboxhostaiollamadirectcore", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_parseandvalidatedirectbaseurl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectCandidate.ts", + "source_location": "L220", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_evaluatesandboxhostaiollamadirectfromcapabilitieswire", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_evaluatesandboxhostaiollamadirectcore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectCandidate.ts", + "source_location": "L243", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_evaluatesandboxhostaiollamadirectfrompolicyresponse", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_evaluatesandboxhostaiollamadirectcore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_evaluatesandboxhostaiollamadirectfromcapabilitieswire", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L675", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_listhostcapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_evaluatesandboxhostaiollamadirectfromcapabilitieswire" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_evaluatesandboxhostaiollamadirectfrompolicyresponse", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L1404", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboximpl", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectcandidate_evaluatesandboxhostaiollamadirectfrompolicyresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectSyntheticProbe.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectsyntheticprobe", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectsyntheticprobe_buildsyntheticokprobefromollamadirecttags", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectSyntheticProbe.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectsyntheticprobe", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectsyntheticprobe_displaypairingfromdigits6", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectSyntheticProbe.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectsyntheticprobe", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectsyntheticprobe_hostcomputernamefromhandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectSyntheticProbe.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectsyntheticprobe", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectSyntheticProbe.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectsyntheticprobe", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_sandboxollamadirecttagsfetchresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectSyntheticProbe.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectsyntheticprobe", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectSyntheticProbe.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectsyntheticprobe", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostpolicyresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectsyntheticprobe_hostcomputernamefromhandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L1033", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboximpl", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectsyntheticprobe_hostcomputernamefromhandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectSyntheticProbe.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectsyntheticprobe_buildsyntheticokprobefromollamadirecttags", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectsyntheticprobe_displaypairingfromdigits6", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectsyntheticprobe_buildsyntheticokprobefromollamadirecttags", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L1037", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboximpl", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirectsyntheticprobe_buildsyntheticokprobefromollamadirecttags", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_buildollamadirecttagscachekey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_cachebykey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_cachedpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_cacheentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_clearsandboxollamadirecttagscachefortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L298", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_fetchsandboxollamadirecttags", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_fetchtagspayloadoutbound", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_inflightbykey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_invalidatesandboxollamadirecttagscacheforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L278", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_logcachehit", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L291", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_loginflightreuse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L262", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_logoutboundtags", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_maptagstoremotemodels", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_sandboxollamadirectremotemodelentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_sandboxollamadirecttagsclassification", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_sandboxollamadirecttagsfetchresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_ttlmsforclassification", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxollamadirectcapsrefresh", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxollamadirectcapsrefresh_refreshsandboxollamadirectfromhostcapabilities", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxollamadirecttransport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxollamadirecttransport_classifyollamadirectfetchtransportfailure", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiRouteSelectCaps.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostairouteselectcaps", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L307", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_fetchsandboxollamadirecttags", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_buildollamadirecttagscachekey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L349", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_fetchsandboxollamadirecttags", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_ttlmsforclassification", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxOllamaDirectCapsRefresh.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxollamadirectcapsrefresh", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_invalidatesandboxollamadirecttagscacheforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxOllamaDirectCapsRefresh.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxollamadirectcapsrefresh_refreshsandboxollamadirectfromhostcapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_invalidatesandboxollamadirecttagscacheforhandshake" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L181", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_fetchtagspayloadoutbound", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_maptagstoremotemodels", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L339", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_fetchsandboxollamadirecttags", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_fetchtagspayloadoutbound", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_fetchtagspayloadoutbound", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_logoutboundtags", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L211", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_fetchtagspayloadoutbound", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxollamadirectcapsrefresh_refreshsandboxollamadirectfromhostcapabilities", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L208", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_fetchtagspayloadoutbound", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxollamadirecttransport_classifyollamadirectfetchtransportfailure", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L315", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_fetchsandboxollamadirecttags", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_logcachehit", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts", + "source_location": "L330", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_fetchsandboxollamadirecttags", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_loginflightreuse", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiRouteSelectCaps.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostairouteselectcaps", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_fetchsandboxollamadirecttags", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiRouteSelectCaps.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostairouteselectcaps_loghostairouteselectaftersandboxcapabilitieswire", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_fetchsandboxollamadirecttags" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_fetchsandboxollamadirecttags", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L1020", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboximpl", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_fetchsandboxollamadirecttags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_fetchsandboxollamadirecttags", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_logsbxhostaimodelsourceaftersandboxcapswire", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostaiollamadirecttags_fetchsandboxollamadirecttags", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiRouteSelectCaps.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostairouteselectcaps", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostairouteselectcaps_loghostairouteselectaftersandboxcapabilitieswire", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiRouteSelectCaps.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostairouteselectcaps", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiRouteSelectCaps.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostairouteselectcaps", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_hostaitransportdeciderresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiRouteSelectCaps.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostairouteselectcaps", + "target": "apps_electron_vite_project_electron_main_internalinference_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiRouteSelectCaps.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostairouteselectcaps", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internalinferencecapabilitiesresultwire", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostairouteselectcaps", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostairouteselectcaps_loghostairouteselectaftersandboxcapabilitieswire", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L687", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_listhostcapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostairouteselectcaps_loghostairouteselectaftersandboxcapabilitieswire" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostChat.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostchat", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostchat_clamptimeoutms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostChat.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostchat", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostchat_runsandboxhostinferencechat", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostChat.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostchat", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostchat_sandboxhostchatmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostChat.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostchat", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostchat_sandboxhostchatresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostChat.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostchat_runsandboxhostinferencechat", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostchat_clamptimeoutms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostRosterSelectionMigration.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostrosterselectionmigration", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostrosterselectionmigration_migratestoredselectionforreceivedhostroster", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostRosterSelectionMigration.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostrosterselectionmigration", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostRosterSelectionMigration.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostrosterselectionmigration", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore_readstoredaiexecutioncontext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostRosterSelectionMigration.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostrosterselectionmigration", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore_writestoredaiexecutioncontext", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostRosterSelectionMigration.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostrosterselectionmigration", + "target": "apps_electron_vite_project_electron_main_llm_localmodelidentity", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostRosterSelectionMigration.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostrosterselectionmigration", + "target": "apps_electron_vite_project_electron_main_llm_localmodelidentity_canonicallocalmodelname", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostRosterSelectionMigration.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostrosterselectionmigration", + "target": "apps_electron_vite_project_electron_main_llm_localmodelidentity_dedupecanonicalmodelnames", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostRosterSelectionMigration.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostrosterselectionmigration", + "target": "apps_electron_vite_project_electron_main_llm_localmodelidentity_resolvelocalmodelalias", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostRosterSelectionMigration.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostrosterselectionmigration_migratestoredselectionforreceivedhostroster", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore_readstoredaiexecutioncontext" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostRosterSelectionMigration.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostrosterselectionmigration_migratestoredselectionforreceivedhostroster", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore_writestoredaiexecutioncontext" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostRosterSelectionMigration.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostrosterselectionmigration_migratestoredselectionforreceivedhostroster", + "target": "apps_electron_vite_project_electron_main_llm_localmodelidentity_canonicallocalmodelname" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostRosterSelectionMigration.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostrosterselectionmigration_migratestoredselectionforreceivedhostroster", + "target": "apps_electron_vite_project_electron_main_llm_localmodelidentity_dedupecanonicalmodelnames" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostRosterSelectionMigration.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostrosterselectionmigration_migratestoredselectionforreceivedhostroster", + "target": "apps_electron_vite_project_electron_main_llm_localmodelidentity_resolvelocalmodelalias" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L329", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_classifyp2pcapabilityprobefailure", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L545", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_displaypairingfromdigits6", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L134", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_endpointhostlabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_formatpairingcode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_hostaicapabilitiesattemptterminalnopolicyget", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L307", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_hostfromp2purlforprobe", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L425", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_hostinternalinferencepolicypayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L296", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_isprivateipv4host", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_lasthostaiselectortargetstagebyhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_listsandboxhostinferencecandidates", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L564", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_mapcapabilitieswiretoprobe", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L552", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_normalizecapabilitywireinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L197", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_p2p_capability_probe", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L178", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_p2pcapabilityprobeletter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L710", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_p2pprobeletterforokinferencecode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_peerhostcomputername", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_policyprobeurlfromp2pingest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L727", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_postinternalinferencecapabilitiesrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L228", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probefailureinternalinferencecodefromcapabilityattempt", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L745", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandbox", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L767", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboximpl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L497", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboxinflight", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L450", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostpolicyresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L504", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probepolicyfailurefromdcwait", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L500", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_resetprobehostinferencepolicyinflightfortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L317", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_safep2plogmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_sandboxhostinferencecandidate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildhostaicanonicalrouteresolveinputfordecider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildhostaitransportdeciderinputasync", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_decidehostaitransport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_decideinternalinferencetransport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_derivehostaihandshakeroles", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_ishostaiprobeterminalnopolicyfallback", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_resolvehostairoute", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_listhostcapabilities", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_parsebeapingesterrorjsoncode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internalinferencecapabilitiesresultwire", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_listsandboxhostinferencecandidates", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_peerhostcomputername", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L169", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_listsandboxhostinferencecandidates", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_formatpairingcode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_hostaicapabilitiesattemptterminalnopolicyget", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_ishostaiprobeterminalnopolicyfallback", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L1104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboximpl", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_hostaicapabilitiesattemptterminalnopolicyget", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L1272", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboximpl", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_policyprobeurlfromp2pingest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L171", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_listsandboxhostinferencecandidates", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_endpointhostlabel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L1147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboximpl", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probefailureinternalinferencecodefromcapabilityattempt", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L378", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_classifyp2pcapabilityprobefailure", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_isprivateipv4host", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L377", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_classifyp2pcapabilityprobefailure", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_hostfromp2purlforprobe", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L1341", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboximpl", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_safep2plogmessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L1138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboximpl", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_classifyp2pcapabilityprobefailure", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L1083", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboximpl", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probepolicyfailurefromdcwait", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L603", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_mapcapabilitieswiretoprobe", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_displaypairingfromdigits6", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L681", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_mapcapabilitieswiretoprobe", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_normalizecapabilitywireinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L1096", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboximpl", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_mapcapabilitieswiretoprobe", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L1042", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboximpl", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_p2pprobeletterforokinferencecode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L738", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_postinternalinferencecapabilitiesrequest", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_listhostcapabilities" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L1200", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboximpl", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_postinternalinferencecapabilitiesrequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L751", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandbox", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboximpl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L870", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboximpl", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildhostaicanonicalrouteresolveinputfordecider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L862", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboximpl", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildhostaitransportdeciderinputasync", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L907", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboximpl", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_decidehostaitransport", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L869", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboximpl", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_decideinternalinferencetransport", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L837", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboximpl", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_derivehostaihandshakeroles", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L877", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboximpl", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_resolvehostairoute", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L1087", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboximpl", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_listhostcapabilities", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L1301", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboximpl", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_parsebeapingesterrorjsoncode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L1022", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboximpl", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts", + "source_location": "L1118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxhostui_probehostinferencepolicyfromsandboximpl", + "target": "apps_electron_vite_project_src_lib_hostaiuidiagnostics", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxOllamaDirectCapsRefresh.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxollamadirectcapsrefresh", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxollamadirectcapsrefresh_refreshsandboxollamadirectfromhostcapabilities", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxOllamaDirectCapsRefresh.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxollamadirectcapsrefresh", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxOllamaDirectCapsRefresh.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxollamadirectcapsrefresh", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_listhostcapabilities", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxOllamaDirectCapsRefresh.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxollamadirectcapsrefresh_refreshsandboxollamadirectfromhostcapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_listhostcapabilities" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxOllamaDirectTransport.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxollamadirecttransport", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxollamadirecttransport_classifyollamadirectfetchtransportfailure", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxRequest.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxrequest", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxrequest_runsandboxpongtestfromhosthandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxRequest.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxrequest", + "target": "apps_electron_vite_project_electron_main_internalinference_sandboxrequest_sandboxpongtestresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxRequest.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxrequest", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxRequest.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxrequest", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_issandboxmode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/sandboxRequest.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_sandboxrequest_runsandboxpongtestfromhosthandshake", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_issandboxmode" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L296", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildhostaicanonicalrouteresolveinputfordecider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L1017", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildhostaitransportdeciderinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L1056", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildhostaitransportdeciderinputasync", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L994", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildlegacyendpointinfofordecider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L263", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildpeerdirectadvertisement", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L961", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildsessionstateforhostaidecider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L350", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_computehostairoutefieldsfordecider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L190", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_decidehostaitransport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L504", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_decideinternalinferencetransport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L972", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_derivehostaihandshakeroles", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_handshakederivedroles", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L256", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_hostadvertisedpeek", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_hostaioperationcontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_hostaipreferredtransport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L482", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_hostairoutesnap", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_hostaiselectorphase", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_hostaisessionstateinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_hostaitransportauthoritative", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_hostaitransportdeciderinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_hostaitransportdeciderresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_hostpolicystate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L248", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_isinternaltrustedsandboxhost", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L224", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_isprivatelanhttpbeapurl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_legacyendpointinfo", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_maptrustreasontoinferencefailurecode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L215", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_p2pstackenabled", + "confidence_score": 1.0 + }, + { + "relation": "cites", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L220", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_ts_docref_rfc_1918", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_hostaicanonicaldirecthttpviable", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_hostaicanonicalrouteresolveinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_hostaipeerdirectadvertisement", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_resolvehostairoute", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_inferencedirecthttptrust", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_inferencedirecthttptrust_inferencedirecthttptrust", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_inferencedirecthttptrust_inferencedirecthttptrustreason", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L194", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_hostaitransportdeciderresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L564", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_maptrustreasontoinferencefailurecode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L550", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_p2pstackenabled", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L704", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_isprivatelanhttpbeapurl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L524", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_isinternaltrustedsandboxhost", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L320", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildhostaicanonicalrouteresolveinputfordecider", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildpeerdirectadvertisement", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L313", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildhostaicanonicalrouteresolveinputfordecider", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L379", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_computehostairoutefieldsfordecider", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildhostaicanonicalrouteresolveinputfordecider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildhostaicanonicalrouteresolveinputfordecider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L529", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_listhostcapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildhostaicanonicalrouteresolveinputfordecider" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L1033", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildhostaitransportdeciderinput", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_computehostairoutefieldsfordecider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L389", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_computehostairoutefieldsfordecider", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_hostaicanonicaldirecthttpviable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L397", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_computehostairoutefieldsfordecider", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_resolvehostairoute", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L443", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_computehostairoutefieldsfordecider", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_inferencedirecthttptrust_inferencedirecthttptrust", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L412", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_computehostairoutefieldsfordecider", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L569", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_decideinternalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_hostairoutesnap", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L194", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_decideinternalinferencetransport", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L421", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_listhostcapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_decideinternalinferencetransport" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L1434", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_sendhostinferenceresult", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_decideinternalinferencetransport" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L1026", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildhostaitransportdeciderinput", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildsessionstateforhostaidecider", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L194", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildsessionstateforhostaidecider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L1043", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildhostaitransportdeciderinput", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_derivehostaihandshakeroles", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L973", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_derivehostaihandshakeroles", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_derivehostaihandshakeroles", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L385", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_listhostcapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_derivehostaihandshakeroles" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L1028", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildhostaitransportdeciderinput", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildlegacyendpointinfofordecider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L1067", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildhostaitransportdeciderinputasync", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildlegacyendpointinfofordecider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts", + "source_location": "L1065", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildhostaitransportdeciderinputasync", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildhostaitransportdeciderinput", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L194", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildhostaitransportdeciderinput", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L194", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildhostaitransportdeciderinputasync", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L414", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_listhostcapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildhostaitransportdeciderinputasync" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L1435", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_sendhostinferenceresult", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_decideinternalinferencetransport_buildhostaitransportdeciderinputasync" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteCandidate.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_hostaidccapabilityresultblockshttpfallback", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteCandidate.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_hostaiprobeterminalinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteCandidate.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_hostairesolvedroute", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteCandidate.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_hostairoutecandidate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteCandidate.ts", + "source_location": "L144", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_hostairoutecandidatebelongstolocaldevice", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteCandidate.ts", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_hostairoutecandidatebelongstopeerhost", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteCandidate.ts", + "source_location": "L150", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_hostairoutecandidateisdirecthttp", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteCandidate.ts", + "source_location": "L158", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_hostairoutecandidateisterminalidentityprovenancefailure", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteCandidate.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_hostairoutecandidatemaybedialed", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteCandidate.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_hostairoutecandidateprovenance", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteCandidate.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_hostairoutecandidatesource", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteCandidate.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_hostairoutecandidatetransport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteCandidate.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_hostairoutefailurecodeisterminalidentityprovenance", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteCandidate.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_hostairouteresolvediagnostics", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteCandidate.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_hostairouteresolvefailure", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteCandidate.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_hostairouteresolveok", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteCandidate.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_hostairouteresolveresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteCandidate.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_ishostaiprobeterminalnopolicyfallback", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteCandidate.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_terminalidentitycodes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_hostairoutecandidatesource", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_hostairesolvedroute", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_hostairouteresolvefailure", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_hostairouteresolveresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_hostairouteresolveresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteCandidate.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_hostaidccapabilityresultblockshttpfallback", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_hostairoutefailurecodeisterminalidentityprovenance", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteCandidate.ts", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_ishostaiprobeterminalnopolicyfallback", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_hostairoutefailurecodeisterminalidentityprovenance", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_hostaidccapabilityresultblockshttpfallback", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L705", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_listhostcapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_hostaidccapabilityresultblockshttpfallback" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteCandidate.ts", + "source_location": "L173", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_hostairoutecandidatemaybedialed", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairoutecandidate_hostairoutecandidatebelongstopeerhost", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_adsourcetocandidatesource", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_candidatecount", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_directhttpviable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L142", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_emitresolvelog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_fail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_hostaicanonicaldirecthttpviable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_hostaicanonicalrouteresolveinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_hostaipeeradvertisementorigin", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_hostaipeerdirectadvertisement", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_hostairelayroutestate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_hostairouteresolvelogpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_hostairouteresolver", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_hostaiwebrtcroutestate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_normurl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L134", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_relayviable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_resolvehostairoute", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_urlmatcheslocalbeap", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_webrtcviable", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_urlmatcheslocalbeap", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_normurl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_directhttpviable", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_urlmatcheslocalbeap", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L309", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_resolvehostairoute", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_urlmatcheslocalbeap", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_fail", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_candidatecount", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L260", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_resolvehostairoute", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_candidatecount", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_fail", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_webrtcviable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L337", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_resolvehostairoute", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_webrtcviable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_fail", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_directhttpviable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_hostaicanonicaldirecthttpviable", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_directhttpviable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L338", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_resolvehostairoute", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_directhttpviable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_fail", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_relayviable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L339", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_resolvehostairoute", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_relayviable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L385", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_resolvehostairoute", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_adsourcetocandidatesource", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_fail", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_emitresolvelog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L253", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_resolvehostairoute", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_emitresolvelog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts", + "source_location": "L210", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_resolvehostairoute", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_fail", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_resolvehostairoute", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L538", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_listhostcapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostairouteresolve_resolvehostairoute" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiTransportLog.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransportlog", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransportlog_loghostaitransportchoose", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiTransportLog.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransportlog", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransportlog_loghostaitransportfallback", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiTransportLog.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransportlog", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransportlog_loghostaitransportunavailable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiTransportLog.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransportlog", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransportlog_shouldloghostaitransport", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiTransportLog.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransportlog", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransporttypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiTransportLog.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransportlog", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransporttypes_hostaitransport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiTransportLog.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransportlog", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransporttypes_hostaitransportlogreason", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiTransportLog.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransportlog", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransporttypes_hostaitransportpreference", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransportlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiTransportLog.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransportlog_loghostaitransportchoose", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransportlog_shouldloghostaitransport", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiTransportLog.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransportlog_loghostaitransportfallback", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransportlog_shouldloghostaitransport", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiTransportLog.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransportlog_loghostaitransportunavailable", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransportlog_shouldloghostaitransport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransportlog_loghostaitransportchoose", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L217", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_emittransportdiagnostics", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransportlog_loghostaitransportchoose", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransportlog_loghostaitransportfallback", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L223", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_emittransportdiagnostics", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransportlog_loghostaitransportfallback", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L766", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_listhostcapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransportlog_loghostaitransportfallback" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L1482", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_sendhostinferenceresult", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransportlog_loghostaitransportfallback" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransportlog_loghostaitransportunavailable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L210", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_emittransportdiagnostics", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransportlog_loghostaitransportunavailable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L507", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_listhostcapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransportlog_loghostaitransportunavailable" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiTransportTypes.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransporttypes", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransporttypes_hostaitransport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiTransportTypes.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransporttypes", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransporttypes_hostaitransportintent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiTransportTypes.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransporttypes", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransporttypes_hostaitransportlogreason", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/hostAiTransportTypes.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransporttypes", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransporttypes_hostaitransportpreference", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L192", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransporttypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/transportDecide.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_transportdecide", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransporttypes", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L192", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransporttypes_hostaitransport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/transportDecide.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_transportdecide", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransporttypes_hostaitransport", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L192", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransporttypes_hostaitransportpreference", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/transportDecide.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_transportdecide", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransporttypes_hostaitransportpreference", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L192", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransporttypes_hostaitransportlogreason", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/transportDecide.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_transportdecide", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransporttypes_hostaitransportlogreason", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L192", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransporttypes_hostaitransportintent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/transportDecide.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_transportdecide", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_hostaitransporttypes_hostaitransportintent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/inferenceDirectHttpTrust.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_inferencedirecthttptrust", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_inferencedirecthttptrust_inferencedirecthttptrust", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/inferenceDirectHttpTrust.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_inferencedirecthttptrust", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_inferencedirecthttptrust_inferencedirecthttptrustreason", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/inferenceDirectHttpTrust.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_inferencedirecthttptrust", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_inferencedirecthttptrust_isprivatelanhttpbeapurl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/inferenceDirectHttpTrust.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_inferencedirecthttptrust", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_inferencedirecthttptrust_rolessandboxtohost", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/inferenceDirectHttpTrust.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_inferencedirecthttptrust_inferencedirecthttptrust", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_inferencedirecthttptrust_isprivatelanhttpbeapurl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/inferenceDirectHttpTrust.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_inferencedirecthttptrust_inferencedirecthttptrust", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_inferencedirecthttptrust_rolessandboxtohost", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L1393", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_directservicesendresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L201", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_emittransportdiagnostics", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L269", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_gettransportstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L342", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_hostaidiagnosticsfromdirectrowdeny", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L309", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_hostaidiagnosticsfromfailedprov", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L241", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_hostaitransportstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_hostaiverifiedhttpforhostsendresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L375", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_listhostcapabilities", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L362", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_listhostcapabilitiesfailure", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L286", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_listhostcapabilitiesopts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_loghostairouteselectfromdecider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_logsbxhostaimodelsourceaftersandboxcapswire", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L177", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_parsebeapingesterrorjsoncode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L298", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_redactp2plogline", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L273", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_refreshtransportstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L1402", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_requesthostcompletion", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L1381", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_requesthostcompletionopts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L1420", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_sendhostinferenceresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L250", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_state", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L252", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_touchstate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L193", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_transportdecide", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L193", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_transportdecide_decidehostaiintentroute", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L193", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_transportdecide_hostaitransportchoice", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L193", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_transportdecide_iswebrtcp2pdataplaneavailable", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internal_inference_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internalinferencecapabilitiesresultwire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internalinferenceerrorwire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internalinferencerequestwire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internalinferenceresultwire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internalservicemessagetype", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_src_lib_hostaiuidiagnostics", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport", + "target": "apps_electron_vite_project_src_lib_hostaiuidiagnostics_hostaiendpointdiagnostics", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L681", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_listhostcapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_logsbxhostaimodelsourceaftersandboxcapswire", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_hostaiverifiedhttpforhostsendresult", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L595", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_listhostcapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_loghostairouteselectfromdecider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L1164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_listhostcapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_parsebeapingesterrorjsoncode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L450", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_listhostcapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_emittransportdiagnostics", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L1445", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_sendhostinferenceresult", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_emittransportdiagnostics", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L451", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_listhostcapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_touchstate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L1448", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_sendhostinferenceresult", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_touchstate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L511", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_listhostcapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_redactp2plogline", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L996", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_listhostcapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_hostaidiagnosticsfromdirectrowdeny", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L423", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_listhostcapabilities", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_transportdecide_decidehostaiintentroute" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L494", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_listhostcapabilities", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts", + "source_location": "L1444", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_internalinferencetransport_sendhostinferenceresult", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_transportdecide_decidehostaiintentroute" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/transportDecide.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_transportdecide", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_transportdecide_decidehostaiintentroute", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/transportDecide.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_transportdecide", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_transportdecide_hostaitransportchoice", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/transportDecide.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_transportdecide", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_transportdecide_iswebrtcp2pdataplaneavailable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/transportDecide.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_transportdecide", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_transportdecide_p2pprerequisitessatisfied", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/transportDecide.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_transportdecide", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_transportdecide_preferp2pforintent", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/transportDecide.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_transportdecide", + "target": "apps_electron_vite_project_electron_main_internalinference_unifiedservicerpcrelayflags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/transportDecide.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_transportdecide", + "target": "apps_electron_vite_project_electron_main_internalinference_unifiedservicerpcrelayflags_blocksplaintexthttpinferencefallback", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/transportDecide.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_transportdecide_p2pprerequisitessatisfied", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_transportdecide_iswebrtcp2pdataplaneavailable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/transportDecide.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_transportdecide_decidehostaiintentroute", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_transportdecide_preferp2pforintent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/transportDecide.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_transportdecide_decidehostaiintentroute", + "target": "apps_electron_vite_project_electron_main_internalinference_transport_transportdecide_p2pprerequisitessatisfied", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/transport/transportDecide.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_transport_transportdecide_decidehostaiintentroute", + "target": "apps_electron_vite_project_electron_main_internalinference_unifiedservicerpcrelayflags_blocksplaintexthttpinferencefallback" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/types.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_types", + "target": "apps_electron_vite_project_electron_main_internalinference_types_activelocalllmwire", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/types.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_types", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internal_inference_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/types.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_types", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internalinferencecapabilitiesmodelentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/types.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_types", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internalinferencecapabilitiesrequestwire", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/types.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_types", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internalinferencecapabilitiesresulttype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/types.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_types", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internalinferencecapabilitiesresultwire", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/types.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_types", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internalinferenceerrorwire", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/types.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_types", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internalinferencerequestwire", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/types.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_types", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internalinferenceresultwire", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/types.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_types", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internalserviceenvelopebase", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/types.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_types", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internalservicemessagetype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/types.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_types", + "target": "apps_electron_vite_project_electron_main_internalinference_types_serviceenvelope", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/types.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_types_internalinferencecapabilitiesrequestwire", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internalserviceenvelopebase", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/types.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_types_internalinferencerequestwire", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internalserviceenvelopebase", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/types.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_types_internalinferenceresultwire", + "target": "apps_electron_vite_project_electron_main_internalinference_types_internalserviceenvelopebase", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/unifiedServiceRpcRelayFlags.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_unifiedservicerpcrelayflags", + "target": "apps_electron_vite_project_electron_main_internalinference_unifiedservicerpcrelayflags_blocksplaintexthttpinferencefallback", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/unifiedServiceRpcRelayFlags.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_unifiedservicerpcrelayflags", + "target": "apps_electron_vite_project_electron_main_internalinference_unifiedservicerpcrelayflags_envtrue", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/unifiedServiceRpcRelayFlags.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_unifiedservicerpcrelayflags", + "target": "apps_electron_vite_project_electron_main_internalinference_unifiedservicerpcrelayflags_getunifiedservicerpcrelayflagfromenvfortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/unifiedServiceRpcRelayFlags.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_unifiedservicerpcrelayflags", + "target": "apps_electron_vite_project_electron_main_internalinference_unifiedservicerpcrelayflags_isunifiedservicerpcrelayenabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/unifiedServiceRpcRelayFlags.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_unifiedservicerpcrelayflags", + "target": "apps_electron_vite_project_electron_main_internalinference_unifiedservicerpcrelayflags_readunifiedrelaybool", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/unifiedServiceRpcRelayFlags.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_unifiedservicerpcrelayflags", + "target": "apps_electron_vite_project_electron_main_internalinference_unifiedservicerpcrelayflags_resetunifiedservicerpcrelayflagsfortests", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/unifiedServiceRpcRelayFlags.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_unifiedservicerpcrelayflags_isunifiedservicerpcrelayenabled", + "target": "apps_electron_vite_project_electron_main_internalinference_unifiedservicerpcrelayflags_readunifiedrelaybool", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/unifiedServiceRpcRelayFlags.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_unifiedservicerpcrelayflags_blocksplaintexthttpinferencefallback", + "target": "apps_electron_vite_project_electron_main_internalinference_unifiedservicerpcrelayflags_isunifiedservicerpcrelayenabled", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/unifiedServiceRpcRelayFlags.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_unifiedservicerpcrelayflags_getunifiedservicerpcrelayflagfromenvfortests", + "target": "apps_electron_vite_project_electron_main_internalinference_unifiedservicerpcrelayflags_isunifiedservicerpcrelayenabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/p2pSignalOutbound.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_p2psignaloutbound", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_p2psignaloutbound_outboundp2psignalkind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/p2pSignalOutbound.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_p2psignaloutbound", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_p2psignaloutbound_recordoutboundp2psignal", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_p2psignaloutbound", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_p2psignaloutbound_recordoutboundp2psignal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L190", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_onrenderertomain", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_p2psignaloutbound_recordoutboundp2psignal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_assertfromtransportpod", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_createackbysessionid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_iceconnectedlogged", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_icelogkey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L134", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_onrenderertomain", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L366", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_registerwebrtctransportipc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_role", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_sendtopod", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L324", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_tryapplyrelaypayloadtowebrtcpod", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_waitforwebrtcpodcreateack", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_webrtcaddicecandidate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_webrtcapplyremoteanswer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_webrtcapplyremoteoffer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_webrtcclosesession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_webrtccreatepeerconnection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_webrtcsenddata", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportwindow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportwindow_ensurewebrtctransportwindow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportwindow_getwebrtctransportpreloadpath", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportwindow_getwebrtctransportwindowornull", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L302", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_onrenderertomain", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_icelogkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_assertfromtransportpod", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportwindow_getwebrtctransportwindowornull", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L372", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_registerwebrtctransportipc", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_assertfromtransportpod", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_sendtopod", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportwindow_getwebrtctransportwindowornull", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_webrtccreatepeerconnection", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportwindow_ensurewebrtctransportwindow" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L335", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_tryapplyrelaypayloadtowebrtcpod", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_webrtcapplyremoteoffer", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_webrtcapplyremoteoffer", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportwindow_ensurewebrtctransportwindow" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L339", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_tryapplyrelaypayloadtowebrtcpod", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_webrtcapplyremoteanswer", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_webrtcapplyremoteanswer", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportwindow_ensurewebrtctransportwindow" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L346", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_tryapplyrelaypayloadtowebrtcpod", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_webrtcaddicecandidate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_webrtcaddicecandidate", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportwindow_ensurewebrtctransportwindow" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_webrtcclosesession", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportwindow_getwebrtctransportwindowornull" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_webrtcsenddata", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportwindow_ensurewebrtctransportwindow" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L375", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_registerwebrtctransportipc", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_onrenderertomain", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L381", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_registerwebrtctransportipc", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportwindow_ensurewebrtctransportwindow" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts", + "source_location": "L383", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportipc_registerwebrtctransportipc", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportwindow_getwebrtctransportpreloadpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportWindow.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportwindow", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportwindow_ensurewebrtctransportwindow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportWindow.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportwindow", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportwindow_gettransportfilepathforprod", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportWindow.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportwindow", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportwindow_gettransportloadurlorpath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportWindow.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportwindow", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportwindow_getwebrtctransportpreloadpath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportWindow.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportwindow", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportwindow_getwebrtctransportwebcontentsidornull", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportWindow.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportwindow", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportwindow_getwebrtctransportwindowornull", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportWindow.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportwindow", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportwindow_mainoutdir", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportWindow.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportwindow", + "target": "apps_electron_vite_project_electron_main_platform", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportWindow.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportwindow", + "target": "apps_electron_vite_project_electron_main_platform_getp2ptransportpagepath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportWindow.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportwindow_ensurewebrtctransportwindow", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportwindow_getwebrtctransportpreloadpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportWindow.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportwindow_gettransportfilepathforprod", + "target": "apps_electron_vite_project_electron_main_platform_getp2ptransportpagepath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportWindow.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportwindow_gettransportloadurlorpath", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportwindow_gettransportfilepathforprod", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportWindow.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportwindow_ensurewebrtctransportwindow", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportwindow_gettransportloadurlorpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportWindow.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportwindow_ensurewebrtctransportwindow", + "target": "test_mocks_electron_browserwindow_loadfile" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportWindow.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportwindow_ensurewebrtctransportwindow", + "target": "test_mocks_electron_browserwindow_loadurl" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportWindow.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportwindow_ensurewebrtctransportwindow", + "target": "test_mocks_electron_browserwindow_on" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportWindow.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportwindow_getwebrtctransportwebcontentsidornull", + "target": "apps_electron_vite_project_electron_main_internalinference_webrtc_webrtctransportwindow_getwebrtctransportwindowornull", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/builtinTemplateRenderer.ts", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer", + "target": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer_buildbodyparagraphs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/builtinTemplateRenderer.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer", + "target": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer_builddocument", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/builtinTemplateRenderer.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer", + "target": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer_builtinrenderoptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/builtinTemplateRenderer.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer", + "target": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer_getimagedimensions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/builtinTemplateRenderer.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer", + "target": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer_layoutpagemargins", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/builtinTemplateRenderer.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer", + "target": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer_loadlogo", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/builtinTemplateRenderer.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer", + "target": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer_logoalignment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/builtinTemplateRenderer.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer", + "target": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer_logobytes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/builtinTemplateRenderer.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer", + "target": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer_parsedataurlimage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/builtinTemplateRenderer.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer", + "target": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer_recipientspacingbefore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/builtinTemplateRenderer.ts", + "source_location": "L411", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer", + "target": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer_renderbuiltintemplate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/builtinTemplateRenderer.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer", + "target": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer_senderlinealignment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L693", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_registerlettercomposeripchandlers", + "target": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/builtinTemplateRenderer.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer_loadlogo", + "target": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer_parsedataurlimage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/builtinTemplateRenderer.ts", + "source_location": "L412", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer_renderbuiltintemplate", + "target": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer_loadlogo", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/builtinTemplateRenderer.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer_builddocument", + "target": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer_layoutpagemargins", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/builtinTemplateRenderer.ts", + "source_location": "L177", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer_builddocument", + "target": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer_logoalignment", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/builtinTemplateRenderer.ts", + "source_location": "L202", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer_builddocument", + "target": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer_senderlinealignment", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/builtinTemplateRenderer.ts", + "source_location": "L215", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer_builddocument", + "target": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer_recipientspacingbefore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/builtinTemplateRenderer.ts", + "source_location": "L282", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer_builddocument", + "target": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer_buildbodyparagraphs", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/builtinTemplateRenderer.ts", + "source_location": "L152", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer_builddocument", + "target": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer_getimagedimensions", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/builtinTemplateRenderer.ts", + "source_location": "L413", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer_renderbuiltintemplate", + "target": "apps_electron_vite_project_electron_main_letter_builtintemplaterenderer_builddocument", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/fillDocxPlaceholders.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_filldocxplaceholders", + "target": "apps_electron_vite_project_electron_main_letter_filldocxplaceholders_collectwtmatches", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/fillDocxPlaceholders.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_filldocxplaceholders", + "target": "apps_electron_vite_project_electron_main_letter_filldocxplaceholders_effectivesearch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/fillDocxPlaceholders.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_filldocxplaceholders", + "target": "apps_electron_vite_project_electron_main_letter_filldocxplaceholders_escapexmltext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/fillDocxPlaceholders.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_filldocxplaceholders", + "target": "apps_electron_vite_project_electron_main_letter_filldocxplaceholders_filldocxfield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/fillDocxPlaceholders.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_filldocxplaceholders", + "target": "apps_electron_vite_project_electron_main_letter_filldocxplaceholders_filldocxplaceholders", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/fillDocxPlaceholders.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_filldocxplaceholders", + "target": "apps_electron_vite_project_electron_main_letter_filldocxplaceholders_replaceallinxml", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/fillDocxPlaceholders.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_filldocxplaceholders", + "target": "apps_electron_vite_project_electron_main_letter_filldocxplaceholders_replacefirstacrossruns", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/fillDocxPlaceholders.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_filldocxplaceholders", + "target": "apps_electron_vite_project_electron_main_letter_filldocxplaceholders_wtmatch", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L300", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_registerlettercomposeripchandlers", + "target": "apps_electron_vite_project_electron_main_letter_filldocxplaceholders", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/fillDocxPlaceholders.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_filldocxplaceholders_replacefirstacrossruns", + "target": "apps_electron_vite_project_electron_main_letter_filldocxplaceholders_escapexmltext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/fillDocxPlaceholders.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_filldocxplaceholders_filldocxplaceholders", + "target": "apps_electron_vite_project_electron_main_letter_filldocxplaceholders_effectivesearch", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/fillDocxPlaceholders.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_filldocxplaceholders_replaceallinxml", + "target": "apps_electron_vite_project_electron_main_letter_filldocxplaceholders_effectivesearch", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/fillDocxPlaceholders.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_filldocxplaceholders_replacefirstacrossruns", + "target": "apps_electron_vite_project_electron_main_letter_filldocxplaceholders_collectwtmatches", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/fillDocxPlaceholders.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_filldocxplaceholders_replaceallinxml", + "target": "apps_electron_vite_project_electron_main_letter_filldocxplaceholders_replacefirstacrossruns", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/fillDocxPlaceholders.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_filldocxplaceholders_filldocxplaceholders", + "target": "apps_electron_vite_project_electron_main_letter_filldocxplaceholders_replaceallinxml", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/letter/fillDocxPlaceholders.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_filldocxplaceholders_filldocxplaceholders", + "target": "apps_electron_vite_project_package_dependencies_pizzip" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/legacyDocumentToHtml.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_legacydocumenttohtml", + "target": "apps_electron_vite_project_electron_main_letter_legacydocumenttohtml_escapehtml", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/legacyDocumentToHtml.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_legacydocumenttohtml", + "target": "apps_electron_vite_project_electron_main_letter_legacydocumenttohtml_extracttextfromdoc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/legacyDocumentToHtml.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_legacydocumenttohtml", + "target": "apps_electron_vite_project_electron_main_letter_legacydocumenttohtml_plaintextlinestoparagraphhtml", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/legacyDocumentToHtml.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_legacydocumenttohtml", + "target": "apps_electron_vite_project_electron_main_letter_legacydocumenttohtml_striprtfformatting", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L344", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_registerlettercomposeripchandlers", + "target": "apps_electron_vite_project_electron_main_letter_legacydocumenttohtml", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/legacyDocumentToHtml.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_legacydocumenttohtml_plaintextlinestoparagraphhtml", + "target": "apps_electron_vite_project_electron_main_letter_legacydocumenttohtml_escapehtml", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L158", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc", + "target": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_assertalloweddocxpath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc", + "target": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_assertallowedlettercomposerpdfpath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L195", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc", + "target": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_assertallowedletterpath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L139", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc", + "target": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_assertallowedtemplatepath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc", + "target": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_convertedpdfdir", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc", + "target": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_ensurelettercomposerdirs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc", + "target": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_exportstagingdir", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc", + "target": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_fillfieldpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc", + "target": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_ipcpdffailuremessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc", + "target": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_lettercomposerroot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc", + "target": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_lettersdir", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc", + "target": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_normalizebuiltinfieldsrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L211", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc", + "target": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_normalizeextractedfield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc", + "target": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_normalizefillfields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc", + "target": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_normalizelogopathforbuiltin", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc", + "target": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_printpdfwithsystemdialog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L229", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc", + "target": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_registerlettercomposeripchandlers", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc", + "target": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_sanitizeletterfilename", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc", + "target": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_sanitizetemplatebasename", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc", + "target": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_templatesdir", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc", + "target": "apps_electron_vite_project_electron_main_llm_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc", + "target": "apps_electron_vite_project_electron_main_llm_types_chatmessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_assertallowedlettercomposerpdfpath", + "target": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_lettercomposerroot", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_convertedpdfdir", + "target": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_lettercomposerroot", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_exportstagingdir", + "target": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_lettercomposerroot", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_lettersdir", + "target": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_lettercomposerroot", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_templatesdir", + "target": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_lettercomposerroot", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L161", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_assertalloweddocxpath", + "target": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_templatesdir", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L142", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_assertallowedtemplatepath", + "target": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_templatesdir", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_ensurelettercomposerdirs", + "target": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_templatesdir", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L246", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_registerlettercomposeripchandlers", + "target": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_templatesdir", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L198", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_assertallowedletterpath", + "target": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_lettersdir", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_ensurelettercomposerdirs", + "target": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_lettersdir", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L485", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_registerlettercomposeripchandlers", + "target": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_lettersdir", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_ensurelettercomposerdirs", + "target": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_convertedpdfdir", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L375", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_registerlettercomposeripchandlers", + "target": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_convertedpdfdir", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L159", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_assertalloweddocxpath", + "target": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_ensurelettercomposerdirs", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_assertallowedlettercomposerpdfpath", + "target": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_ensurelettercomposerdirs", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L196", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_assertallowedletterpath", + "target": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_ensurelettercomposerdirs", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_assertallowedtemplatepath", + "target": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_ensurelettercomposerdirs", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_exportstagingdir", + "target": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_ensurelettercomposerdirs", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L239", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_registerlettercomposeripchandlers", + "target": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_ensurelettercomposerdirs", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L599", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_registerlettercomposeripchandlers", + "target": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_exportstagingdir", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L690", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_registerlettercomposeripchandlers", + "target": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_normalizebuiltinfieldsrecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L691", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_registerlettercomposeripchandlers", + "target": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_normalizelogopathforbuiltin", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L290", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_registerlettercomposeripchandlers", + "target": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_normalizefillfields", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L619", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_registerlettercomposeripchandlers", + "target": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_ipcpdffailuremessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L894", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_registerlettercomposeripchandlers", + "target": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_printpdfwithsystemdialog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L382", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_registerlettercomposeripchandlers", + "target": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_assertallowedlettercomposerpdfpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L244", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_registerlettercomposeripchandlers", + "target": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_sanitizetemplatebasename", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L327", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_registerlettercomposeripchandlers", + "target": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_assertallowedtemplatepath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L298", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_registerlettercomposeripchandlers", + "target": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_assertalloweddocxpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L483", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_registerlettercomposeripchandlers", + "target": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_sanitizeletterfilename", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L521", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_registerlettercomposeripchandlers", + "target": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_assertallowedletterpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L459", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_registerlettercomposeripchandlers", + "target": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_normalizeextractedfield", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L417", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_registerlettercomposeripchandlers", + "target": "apps_electron_vite_project_electron_main_letter_letterscanextract", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L424", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_registerlettercomposeripchandlers", + "target": "apps_electron_vite_project_electron_main_letter_letterscannormalize", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L525", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_registerlettercomposeripchandlers", + "target": "apps_electron_vite_project_electron_main_letter_letterscanprocessing", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L339", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_registerlettercomposeripchandlers", + "target": "apps_electron_vite_project_electron_main_letter_odttohtml", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L402", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_registerlettercomposeripchandlers", + "target": "apps_electron_vite_project_electron_main_letter_templatefielddetect", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L383", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_registerlettercomposeripchandlers", + "target": "apps_electron_vite_project_electron_main_letter_templatepdfpreviewrender", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L392", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_registerlettercomposeripchandlers", + "target": "apps_electron_vite_project_electron_main_letter_templatepdftextlayer", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L605", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_registerlettercomposeripchandlers", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L434", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_registerlettercomposeripchandlers", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts", + "source_location": "L307", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_lettercomposeripc_registerlettercomposeripchandlers", + "target": "test_mocks_electron_browserwindow_fromwebcontents" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanExtract.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscanextract", + "target": "apps_electron_vite_project_electron_main_letter_letterscanextract_date_patterns", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanExtract.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscanextract", + "target": "apps_electron_vite_project_electron_main_letter_letterscanextract_empty_raw", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanExtract.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscanextract", + "target": "apps_electron_vite_project_electron_main_letter_letterscanextract_extractfirstdate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanExtract.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscanextract", + "target": "apps_electron_vite_project_electron_main_letter_letterscanextract_extractidentificationhints", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanExtract.ts", + "source_location": "L185", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscanextract", + "target": "apps_electron_vite_project_electron_main_letter_letterscanextract_extractrawfromscantext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanExtract.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscanextract", + "target": "apps_electron_vite_project_electron_main_letter_letterscanextract_findreference", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanExtract.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscanextract", + "target": "apps_electron_vite_project_electron_main_letter_letterscanextract_findsalutationline", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanExtract.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscanextract", + "target": "apps_electron_vite_project_electron_main_letter_letterscanextract_findsubjectline", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanExtract.ts", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscanextract", + "target": "apps_electron_vite_project_electron_main_letter_letterscanextract_isnoiseparagraph", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanExtract.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscanextract", + "target": "apps_electron_vite_project_electron_main_letter_letterscanextract_letterscanrawextraction", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanExtract.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscanextract", + "target": "apps_electron_vite_project_electron_main_letter_letterscanextract_salutationparagraphindex", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanExtract.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscanextract", + "target": "apps_electron_vite_project_electron_main_letter_letterscanextract_splitparagraphs", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanNormalize.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscannormalize", + "target": "apps_electron_vite_project_electron_main_letter_letterscanextract", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanNormalize.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscannormalize", + "target": "apps_electron_vite_project_electron_main_letter_letterscanextract_letterscanrawextraction", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanExtract.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscanextract_isnoiseparagraph", + "target": "apps_electron_vite_project_electron_main_letter_letterscanextract_date_patterns" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanExtract.ts", + "source_location": "L197", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscanextract_extractrawfromscantext", + "target": "apps_electron_vite_project_electron_main_letter_letterscanextract_extractfirstdate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanExtract.ts", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscanextract_extractrawfromscantext", + "target": "apps_electron_vite_project_electron_main_letter_letterscanextract_findsubjectline", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanExtract.ts", + "source_location": "L201", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscanextract_extractrawfromscantext", + "target": "apps_electron_vite_project_electron_main_letter_letterscanextract_findreference", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanExtract.ts", + "source_location": "L202", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscanextract_extractrawfromscantext", + "target": "apps_electron_vite_project_electron_main_letter_letterscanextract_findsalutationline", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanExtract.ts", + "source_location": "L203", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscanextract_extractrawfromscantext", + "target": "apps_electron_vite_project_electron_main_letter_letterscanextract_salutationparagraphindex", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanExtract.ts", + "source_location": "L198", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscanextract_extractrawfromscantext", + "target": "apps_electron_vite_project_electron_main_letter_letterscanextract_splitparagraphs", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanExtract.ts", + "source_location": "L198", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscanextract_extractrawfromscantext", + "target": "apps_electron_vite_project_electron_main_letter_letterscanextract_isnoiseparagraph", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanExtract.ts", + "source_location": "L193", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscanextract_extractrawfromscantext", + "target": "apps_electron_vite_project_electron_main_letter_letterscanextract_extractidentificationhints", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanNormalize.ts", + "source_location": "L417", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscannormalize", + "target": "apps_electron_vite_project_electron_main_letter_letterscannormalize_aftersalutationtrim", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanNormalize.ts", + "source_location": "L272", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscannormalize", + "target": "apps_electron_vite_project_electron_main_letter_letterscannormalize_clamp01", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanNormalize.ts", + "source_location": "L286", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscannormalize", + "target": "apps_electron_vite_project_electron_main_letter_letterscannormalize_coerceraw", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanNormalize.ts", + "source_location": "L343", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscannormalize", + "target": "apps_electron_vite_project_electron_main_letter_letterscannormalize_emptyfields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanNormalize.ts", + "source_location": "L351", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscannormalize", + "target": "apps_electron_vite_project_electron_main_letter_letterscannormalize_fallbacknormalizedfromraw", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanNormalize.ts", + "source_location": "L277", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscannormalize", + "target": "apps_electron_vite_project_electron_main_letter_letterscannormalize_isrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanNormalize.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscannormalize", + "target": "apps_electron_vite_project_electron_main_letter_letterscannormalize_letter_extract_output_keys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanNormalize.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscannormalize", + "target": "apps_electron_vite_project_electron_main_letter_letterscannormalize_normalizedletterfields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanNormalize.ts", + "source_location": "L432", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscannormalize", + "target": "apps_electron_vite_project_electron_main_letter_letterscannormalize_normalizeletterscanextraction", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanNormalize.ts", + "source_location": "L281", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscannormalize", + "target": "apps_electron_vite_project_electron_main_letter_letterscannormalize_optstrfield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanNormalize.ts", + "source_location": "L421", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscannormalize", + "target": "apps_electron_vite_project_electron_main_letter_letterscannormalize_parsemodeljson", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanNormalize.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscannormalize", + "target": "apps_electron_vite_project_electron_main_letter_letterscannormalize_prefilterfields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanNormalize.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscannormalize", + "target": "apps_electron_vite_project_electron_main_letter_letterscannormalize_sanitizepostaladdressfield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanNormalize.ts", + "source_location": "L331", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscannormalize", + "target": "apps_electron_vite_project_electron_main_letter_letterscannormalize_trygermanshortdatetoiso", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanNormalize.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscannormalize", + "target": "apps_electron_vite_project_electron_main_llm_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanNormalize.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscannormalize", + "target": "apps_electron_vite_project_electron_main_llm_types_chatmessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanNormalize.ts", + "source_location": "L444", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscannormalize_normalizeletterscanextraction", + "target": "apps_electron_vite_project_electron_main_letter_letterscannormalize_prefilterfields", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanNormalize.ts", + "source_location": "L362", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscannormalize_fallbacknormalizedfromraw", + "target": "apps_electron_vite_project_electron_main_letter_letterscannormalize_sanitizepostaladdressfield", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanNormalize.ts", + "source_location": "L533", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscannormalize_normalizeletterscanextraction", + "target": "apps_electron_vite_project_electron_main_letter_letterscannormalize_sanitizepostaladdressfield", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanNormalize.ts", + "source_location": "L527", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscannormalize_normalizeletterscanextraction", + "target": "apps_electron_vite_project_electron_main_letter_letterscannormalize_clamp01", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanNormalize.ts", + "source_location": "L296", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscannormalize_coerceraw", + "target": "apps_electron_vite_project_electron_main_letter_letterscannormalize_isrecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanNormalize.ts", + "source_location": "L505", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscannormalize_normalizeletterscanextraction", + "target": "apps_electron_vite_project_electron_main_letter_letterscannormalize_isrecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanNormalize.ts", + "source_location": "L320", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscannormalize_coerceraw", + "target": "apps_electron_vite_project_electron_main_letter_letterscannormalize_optstrfield", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanNormalize.ts", + "source_location": "L441", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscannormalize_normalizeletterscanextraction", + "target": "apps_electron_vite_project_electron_main_letter_letterscannormalize_coerceraw", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanNormalize.ts", + "source_location": "L367", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscannormalize_fallbacknormalizedfromraw", + "target": "apps_electron_vite_project_electron_main_letter_letterscannormalize_trygermanshortdatetoiso", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanNormalize.ts", + "source_location": "L380", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscannormalize_fallbacknormalizedfromraw", + "target": "apps_electron_vite_project_electron_main_letter_letterscannormalize_emptyfields", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanNormalize.ts", + "source_location": "L378", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscannormalize_fallbacknormalizedfromraw", + "target": "apps_electron_vite_project_electron_main_letter_letterscannormalize_aftersalutationtrim", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanNormalize.ts", + "source_location": "L442", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscannormalize_normalizeletterscanextraction", + "target": "apps_electron_vite_project_electron_main_letter_letterscannormalize_fallbacknormalizedfromraw", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanNormalize.ts", + "source_location": "L495", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscannormalize_normalizeletterscanextraction", + "target": "apps_electron_vite_project_electron_main_letter_letterscannormalize_parsemodeljson", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanNormalize.ts", + "source_location": "L446", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscannormalize_normalizeletterscanextraction", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanProcessing.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscanprocessing", + "target": "apps_electron_vite_project_electron_main_letter_letterscanprocessing_letterscanpage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanProcessing.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscanprocessing", + "target": "apps_electron_vite_project_electron_main_letter_letterscanprocessing_mimeforimageext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanProcessing.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscanprocessing", + "target": "apps_electron_vite_project_electron_main_letter_letterscanprocessing_pngdataurltobuffer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanProcessing.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscanprocessing", + "target": "apps_electron_vite_project_electron_main_letter_letterscanprocessing_processimagefileforletterviewer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanProcessing.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscanprocessing", + "target": "apps_electron_vite_project_electron_main_letter_letterscanprocessing_processpdfforletterviewer", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanProcessing.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscanprocessing", + "target": "apps_electron_vite_project_electron_main_letter_renderpdfpagesinbrowser", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanProcessing.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscanprocessing", + "target": "apps_electron_vite_project_electron_main_letter_renderpdfpagesinbrowser_renderpdfpagestoimages", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanProcessing.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscanprocessing", + "target": "apps_electron_vite_project_electron_main_ocr_ocr_service", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanProcessing.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscanprocessing", + "target": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanProcessing.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscanprocessing_processimagefileforletterviewer", + "target": "apps_electron_vite_project_electron_main_letter_letterscanprocessing_mimeforimageext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanProcessing.ts", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscanprocessing_processpdfforletterviewer", + "target": "apps_electron_vite_project_electron_main_letter_letterscanprocessing_pngdataurltobuffer", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/letter/letterScanProcessing.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_letterscanprocessing_processpdfforletterviewer", + "target": "apps_electron_vite_project_electron_main_letter_renderpdfpagesinbrowser_renderpdfpagestoimages" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/odtToHtml.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_odttohtml", + "target": "apps_electron_vite_project_electron_main_letter_odttohtml_convertodtbuffertohtml", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/odtToHtml.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_odttohtml", + "target": "apps_electron_vite_project_electron_main_letter_odttohtml_convertodtxmltohtml", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/odtToHtml.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_odttohtml", + "target": "apps_electron_vite_project_electron_main_letter_odttohtml_stripresidualodftags", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/odtToHtml.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_odttohtml_convertodtbuffertohtml", + "target": "apps_electron_vite_project_electron_main_letter_odttohtml_convertodtxmltohtml", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/letter/odtToHtml.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_odttohtml_convertodtbuffertohtml", + "target": "apps_electron_vite_project_package_dependencies_pizzip" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/odtToHtml.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_odttohtml_convertodtxmltohtml", + "target": "apps_electron_vite_project_electron_main_letter_odttohtml_stripresidualodftags", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/renderPdfPagesInBrowser.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_renderpdfpagesinbrowser", + "target": "apps_electron_vite_project_electron_main_letter_renderpdfpagesinbrowser_bootstrapsource", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/renderPdfPagesInBrowser.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_renderpdfpagesinbrowser", + "target": "apps_electron_vite_project_electron_main_letter_renderpdfpagesinbrowser_copydirsync", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/renderPdfPagesInBrowser.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_renderpdfpagesinbrowser", + "target": "apps_electron_vite_project_electron_main_letter_renderpdfpagesinbrowser_pdfjsbuilddir", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/renderPdfPagesInBrowser.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_renderpdfpagesinbrowser", + "target": "apps_electron_vite_project_electron_main_letter_renderpdfpagesinbrowser_renderedpdfpageimage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/renderPdfPagesInBrowser.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_renderpdfpagesinbrowser", + "target": "apps_electron_vite_project_electron_main_letter_renderpdfpagesinbrowser_renderpdfpagestoimages", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/renderPdfPagesInBrowser.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_renderpdfpagesinbrowser", + "target": "apps_electron_vite_project_electron_main_letter_renderpdfpagesinbrowser_require", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/renderPdfPagesInBrowser.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_renderpdfpagesinbrowser", + "target": "apps_electron_vite_project_electron_main_letter_renderpdfpagesinbrowser_waitforpreviewready", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/templatePdfPreviewRender.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_templatepdfpreviewrender", + "target": "apps_electron_vite_project_electron_main_letter_renderpdfpagesinbrowser", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/renderPdfPagesInBrowser.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_renderpdfpagesinbrowser_renderpdfpagestoimages", + "target": "apps_electron_vite_project_electron_main_letter_renderpdfpagesinbrowser_bootstrapsource", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/renderPdfPagesInBrowser.ts", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_renderpdfpagesinbrowser_renderpdfpagestoimages", + "target": "apps_electron_vite_project_electron_main_letter_renderpdfpagesinbrowser_copydirsync", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/renderPdfPagesInBrowser.ts", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_renderpdfpagesinbrowser_renderpdfpagestoimages", + "target": "apps_electron_vite_project_electron_main_letter_renderpdfpagesinbrowser_pdfjsbuilddir", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/renderPdfPagesInBrowser.ts", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_renderpdfpagesinbrowser_renderpdfpagestoimages", + "target": "apps_electron_vite_project_electron_main_letter_renderpdfpagesinbrowser_waitforpreviewready", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/templatePdfPreviewRender.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_templatepdfpreviewrender", + "target": "apps_electron_vite_project_electron_main_letter_renderpdfpagesinbrowser_renderpdfpagestoimages", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/letter/templatePdfPreviewRender.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_templatepdfpreviewrender_renderpdffiletopngdataurls", + "target": "apps_electron_vite_project_electron_main_letter_renderpdfpagesinbrowser_renderpdfpagestoimages" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/templateFieldDetect.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_templatefielddetect", + "target": "apps_electron_vite_project_electron_main_letter_templatefielddetect_clamp01", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/templateFieldDetect.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_templatefielddetect", + "target": "apps_electron_vite_project_electron_main_letter_templatefielddetect_detectedfieldshape", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/templateFieldDetect.ts", + "source_location": "L137", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_templatefielddetect", + "target": "apps_electron_vite_project_electron_main_letter_templatefielddetect_detecttemplatefieldsfrompdfpath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/templateFieldDetect.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_templatefielddetect", + "target": "apps_electron_vite_project_electron_main_letter_templatefielddetect_extractpositioneditemsasync", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/templateFieldDetect.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_templatefielddetect", + "target": "apps_electron_vite_project_electron_main_letter_templatefielddetect_loadpdfjs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/templateFieldDetect.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_templatefielddetect", + "target": "apps_electron_vite_project_electron_main_letter_templatefielddetect_normalizedetected", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/templateFieldDetect.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_templatefielddetect", + "target": "apps_electron_vite_project_electron_main_letter_templatefielddetect_positioneditem", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/templateFieldDetect.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_templatefielddetect", + "target": "apps_electron_vite_project_electron_main_llm_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/templateFieldDetect.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_templatefielddetect", + "target": "apps_electron_vite_project_electron_main_llm_types_chatmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/templateFieldDetect.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_templatefielddetect", + "target": "apps_electron_vite_project_electron_main_pdfjsworkersrc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/templateFieldDetect.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_templatefielddetect", + "target": "apps_electron_vite_project_electron_main_pdfjsworkersrc_resolvepdfjsdistworkerfileurl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/templateFieldDetect.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_templatefielddetect_extractpositioneditemsasync", + "target": "apps_electron_vite_project_electron_main_letter_templatefielddetect_loadpdfjs", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/templateFieldDetect.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_templatefielddetect_loadpdfjs", + "target": "apps_electron_vite_project_electron_main_pdfjsworkersrc_resolvepdfjsdistworkerfileurl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/templateFieldDetect.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_templatefielddetect_extractpositioneditemsasync", + "target": "apps_electron_vite_project_electron_main_letter_templatefielddetect_clamp01", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/templateFieldDetect.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_templatefielddetect_normalizedetected", + "target": "apps_electron_vite_project_electron_main_letter_templatefielddetect_clamp01", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/templateFieldDetect.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_templatefielddetect_detecttemplatefieldsfrompdfpath", + "target": "apps_electron_vite_project_electron_main_letter_templatefielddetect_extractpositioneditemsasync", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/templateFieldDetect.ts", + "source_location": "L211", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_templatefielddetect_detecttemplatefieldsfrompdfpath", + "target": "apps_electron_vite_project_electron_main_letter_templatefielddetect_normalizedetected", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/templateFieldDetect.ts", + "source_location": "L165", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_templatefielddetect_detecttemplatefieldsfrompdfpath", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/templatePdfPreviewRender.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_templatepdfpreviewrender", + "target": "apps_electron_vite_project_electron_main_letter_templatepdfpreviewrender_renderpdffiletopngdataurls", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/templatePdfTextLayer.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_templatepdftextlayer", + "target": "apps_electron_vite_project_electron_main_letter_templatepdftextlayer_clamp01", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/templatePdfTextLayer.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_templatepdftextlayer", + "target": "apps_electron_vite_project_electron_main_letter_templatepdftextlayer_extractpdftextpositionsfrompath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/templatePdfTextLayer.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_templatepdftextlayer", + "target": "apps_electron_vite_project_electron_main_letter_templatepdftextlayer_loadpdfjs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/templatePdfTextLayer.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_templatepdftextlayer", + "target": "apps_electron_vite_project_electron_main_letter_templatepdftextlayer_pdfpagetextitem", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/templatePdfTextLayer.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_templatepdftextlayer", + "target": "apps_electron_vite_project_electron_main_letter_templatepdftextlayer_pdfpagetextpositions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/templatePdfTextLayer.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_templatepdftextlayer", + "target": "apps_electron_vite_project_electron_main_pdfjsworkersrc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/templatePdfTextLayer.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_templatepdftextlayer", + "target": "apps_electron_vite_project_electron_main_pdfjsworkersrc_resolvepdfjsdistworkerfileurl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/templatePdfTextLayer.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_templatepdftextlayer_extractpdftextpositionsfrompath", + "target": "apps_electron_vite_project_electron_main_letter_templatepdftextlayer_loadpdfjs", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/templatePdfTextLayer.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_templatepdftextlayer_loadpdfjs", + "target": "apps_electron_vite_project_electron_main_pdfjsworkersrc_resolvepdfjsdistworkerfileurl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/letter/templatePdfTextLayer.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_letter_templatepdftextlayer_extractpdftextpositionsfrompath", + "target": "apps_electron_vite_project_electron_main_letter_templatepdftextlayer_clamp01", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_clearpersistedmanualpath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_collectwindowsregistrysofficecandidates", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L564", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_converttodocx", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L476", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_converttopdf", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_dedupecandidates", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L190", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_detectlibreoffice", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_execasync", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_execfileasync", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L419", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_execlibreofficeconvert", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_findlibreofficebinary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_getsessionprofiledir", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L381", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_getsofficepath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L404", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_libreoffice_missing_user_message", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_loadpersistedmanualpath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_manualpathstorefile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_persistmanualpath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L363", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_prewarmlibreoffice", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L457", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_readpdfheadersnippet", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L603", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_resetlibreofficedetection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L218", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_rundetectlibreoffice", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L172", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_setmanualsofficepath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L156", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_tryacceptcandidate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L445", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_execlibreofficeconvert", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_execfileasync", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L159", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_tryacceptcandidate", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_execfileasync", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L244", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_rundetectlibreoffice", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_execasync", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L426", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_execlibreofficeconvert", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_getsessionprofiledir", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L367", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_prewarmlibreoffice", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_getsessionprofiledir", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L392", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_getsofficepath", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_findlibreofficebinary", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L231", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_rundetectlibreoffice", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_findlibreofficebinary", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_clearpersistedmanualpath", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_manualpathstorefile", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_loadpersistedmanualpath", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_manualpathstorefile", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_persistmanualpath", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_manualpathstorefile", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L385", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_getsofficepath", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_loadpersistedmanualpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L219", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_rundetectlibreoffice", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_loadpersistedmanualpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L180", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_setmanualsofficepath", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_persistmanualpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L228", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_rundetectlibreoffice", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_clearpersistedmanualpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L153", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_collectwindowsregistrysofficecandidates", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_dedupecandidates", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L334", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_rundetectlibreoffice", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_dedupecandidates", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L298", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_rundetectlibreoffice", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_collectwindowsregistrysofficecandidates", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L221", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_rundetectlibreoffice", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_tryacceptcandidate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L565", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_converttodocx", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_detectlibreoffice", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L481", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_converttopdf", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_detectlibreoffice", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L208", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_detectlibreoffice", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_rundetectlibreoffice", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L365", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_prewarmlibreoffice", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_detectlibreoffice", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L577", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_converttodocx", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_execlibreofficeconvert", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L502", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_converttopdf", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_execlibreofficeconvert", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts", + "source_location": "L549", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_converttopdf", + "target": "apps_electron_vite_project_electron_main_libreoffice_libreofficeservice_readpdfheadersnippet", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/adaptiveWarmupStrategy.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_adaptivewarmupstrategy_test", + "target": "apps_electron_vite_project_electron_main_llm_tests_adaptivewarmupstrategy_test_estimatemaxresidentmodelsmock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/adaptiveWarmupStrategy.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_adaptivewarmupstrategy_test", + "target": "apps_electron_vite_project_electron_main_llm_tests_adaptivewarmupstrategy_test_resolveaimock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/detectVramCapacity.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_detectvramcapacity_test", + "target": "apps_electron_vite_project_electron_main_llm_tests_detectvramcapacity_test_hardwaredetectmock", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/diagnostics.test.ts", + "source_location": "L226", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_diagnostics_test", + "target": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/diagnostics.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_diagnostics_test", + "target": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics_hardwarediagnostics", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/diagnostics.test.ts", + "source_location": "L226", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_diagnostics_test", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/diagnostics.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_diagnostics_test", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/diagnostics.test.ts", + "source_location": "L226", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_diagnostics_test", + "target": "apps_electron_vite_project_electron_main_llm_rotating_logger", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/diagnostics.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_diagnostics_test", + "target": "apps_electron_vite_project_electron_main_llm_rotating_logger_ollamalogger", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/hardware-capability.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_hardware_capability_test", + "target": "apps_electron_vite_project_electron_main_llm_hardware_capability_check", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/hardware-capability.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_hardware_capability_test", + "target": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_cpucapabilities", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/hardware-capability.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_hardware_capability_test", + "target": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_diskinfo", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/hardware-capability.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_hardware_capability_test", + "target": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_hardwarecapabilitychecker", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/internalHostInferenceOllama.resolveModel.test.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_internalhostinferenceollama_resolvemodel_test", + "target": "apps_electron_vite_project_electron_main_llm_internalhostinferencelocal", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/internalHostInferenceOllama.resolveModel.test.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_internalhostinferenceollama_resolvemodel_test", + "target": "apps_electron_vite_project_electron_main_llm_internalhostinferencelocal_resolvemodelforinternalinference", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/internalHostInferenceOllama.resolveModel.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_internalhostinferenceollama_resolvemodel_test", + "target": "apps_electron_vite_project_electron_main_llm_tests_internalhostinferenceollama_resolvemodel_test_constructor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/internalHostInferenceOllama.resolveModel.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_internalhostinferenceollama_resolvemodel_test", + "target": "apps_electron_vite_project_electron_main_llm_tests_internalhostinferenceollama_resolvemodel_test_geteffectivechatmodelname", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/internalHostInferenceOllama.resolveModel.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_internalhostinferenceollama_resolvemodel_test", + "target": "apps_electron_vite_project_electron_main_llm_tests_internalhostinferenceollama_resolvemodel_test_listmodels", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/llamaChatResponseContent.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_llamachatresponsecontent_test", + "target": "apps_electron_vite_project_electron_main_llm_llamachatresponsecontent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/llamaChatResponseContent.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_llamachatresponsecontent_test", + "target": "apps_electron_vite_project_electron_main_llm_llamachatresponsecontent_extractllamachatcontent", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/llamaContextOverflow.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_llamacontextoverflow_test", + "target": "apps_electron_vite_project_electron_main_llm_llamacontextoverflow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/llamaContextOverflow.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_llamacontextoverflow_test", + "target": "apps_electron_vite_project_electron_main_llm_llamacontextoverflow_isllamacontextoverflowerror", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/llamaContextOverflow.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_llamacontextoverflow_test", + "target": "apps_electron_vite_project_electron_main_llm_llamacontextoverflow_llamacontextoverflowerror", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/llamaContextOverflow.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_llamacontextoverflow_test", + "target": "apps_electron_vite_project_electron_main_llm_llamacontextoverflow_parsellamacontextoverflowfrombody", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/llamaServerArgs.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_llamaserverargs_test", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/llamaServerArgs.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_llamaserverargs_test", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_buildllamaserverargs", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/llamaServerArgs.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_llamaserverargs_test", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_computemaxctxforvram", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/llamaServerArgs.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_llamaserverargs_test", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_computemaxctxperslotforvram", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/llamaServerArgs.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_llamaserverargs_test", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_ctx_min_tokens", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/llamaServerArgs.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_llamaserverargs_test", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_estimatekvbytespertokenfromggufbuffer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/llamaServerArgs.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_llamaserverargs_test", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_fallback_kv_bytes_per_token", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/llamaServerArgs.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_llamaserverargs_test", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_flashattntakesvalue", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/llamaServerArgs.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_llamaserverargs_test", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_min_ctx_per_slot", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/llamaServerArgs.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_llamaserverargs_test", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_parsesupportedflagsfromhelp", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/llamaServerArgs.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_llamaserverargs_test", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_resolvespawncontextbudget", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/llamaServerArgs.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_llamaserverargs_test", + "target": "apps_electron_vite_project_electron_main_llm_localllmserverconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/llamaServerArgs.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_llamaserverargs_test", + "target": "apps_electron_vite_project_electron_main_llm_localllmserverconfig_default_local_llm_server_config", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/llamaServerArgs.test.ts", + "source_location": "L262", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_llamaserverargs_test", + "target": "apps_electron_vite_project_electron_main_llm_tests_llamaserverargs_test_buildsyntheticgguf", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/llamaServerArgs.test.ts", + "source_location": "L256", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_llamaserverargs_test", + "target": "apps_electron_vite_project_electron_main_llm_tests_llamaserverargs_test_ggufkvstring", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/llamaServerArgs.test.ts", + "source_location": "L248", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_llamaserverargs_test", + "target": "apps_electron_vite_project_electron_main_llm_tests_llamaserverargs_test_ggufkvu32", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/llamaServerArgs.test.ts", + "source_location": "L241", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_llamaserverargs_test", + "target": "apps_electron_vite_project_electron_main_llm_tests_llamaserverargs_test_ggufstring", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/llamaServerArgs.test.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_llamaserverargs_test", + "target": "apps_electron_vite_project_electron_main_llm_tests_llamaserverargs_test_spawnbudget", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/llamaServerArgs.test.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_llamaserverargs_test_spawnbudget", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_resolvespawncontextbudget", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/llamaServerArgs.test.ts", + "source_location": "L259", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_llamaserverargs_test_ggufkvstring", + "target": "apps_electron_vite_project_electron_main_llm_tests_llamaserverargs_test_ggufstring", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/llamaServerArgs.test.ts", + "source_location": "L253", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_llamaserverargs_test_ggufkvu32", + "target": "apps_electron_vite_project_electron_main_llm_tests_llamaserverargs_test_ggufstring", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/llamaServerBinaryInstall.assets.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_llamaserverbinaryinstall_assets_test", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/llamaServerBinaryInstall.assets.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_llamaserverbinaryinstall_assets_test", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_githubrelease", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/llamaServerBinaryInstall.assets.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_llamaserverbinaryinstall_assets_test", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_pickreleaseassets", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/llamaServerBinaryInstall.assets.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_llamaserverbinaryinstall_assets_test", + "target": "apps_electron_vite_project_electron_main_llm_tests_llamaserverbinaryinstall_assets_test_release", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/localLlmLifecycle.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_localllmlifecycle_test", + "target": "apps_electron_vite_project_electron_main_llm_tests_localllmlifecycle_test_enablesupervisionmock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/localLlmLifecycle.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_localllmlifecycle_test", + "target": "apps_electron_vite_project_electron_main_llm_tests_localllmlifecycle_test_ensuremanagedmock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/localLlmLifecycle.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_localllmlifecycle_test", + "target": "apps_electron_vite_project_electron_main_llm_tests_localllmlifecycle_test_issandboxmodemock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/localLlmLifecycle.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_localllmlifecycle_test", + "target": "apps_electron_vite_project_electron_main_llm_tests_localllmlifecycle_test_shutdownmock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/localLlmModelInstall.download.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_localllmmodelinstall_download_test", + "target": "apps_electron_vite_project_electron_main_llm_tests_localllmmodelinstall_download_test_full", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/localLlmModelInstall.download.test.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_localllmmodelinstall_download_test", + "target": "apps_electron_vite_project_electron_main_llm_tests_localllmmodelinstall_download_test_full_sha256", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/localLlmModelInstall.download.test.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_localllmmodelinstall_download_test", + "target": "apps_electron_vite_project_electron_main_llm_tests_localllmmodelinstall_download_test_hangingstream", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/localLlmModelInstall.download.test.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_localllmmodelinstall_download_test", + "target": "apps_electron_vite_project_electron_main_llm_tests_localllmmodelinstall_download_test_mockresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/localLlmModelInstall.download.test.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_localllmmodelinstall_download_test", + "target": "apps_electron_vite_project_electron_main_llm_tests_localllmmodelinstall_download_test_partpaths", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/localLlmModelInstall.download.test.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_localllmmodelinstall_download_test", + "target": "apps_electron_vite_project_electron_main_llm_tests_localllmmodelinstall_download_test_slowstream", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/localLlmModelInstall.download.test.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_localllmmodelinstall_download_test", + "target": "apps_electron_vite_project_electron_main_llm_tests_localllmmodelinstall_download_test_streamfrom", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/localLlmModelInstall.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_localllmmodelinstall_test", + "target": "apps_electron_vite_project_electron_main_llm_gguffileutils", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/localLlmModelInstall.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_localllmmodelinstall_test", + "target": "apps_electron_vite_project_electron_main_llm_gguffileutils_gguf_magic", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/localLlmModelInstall.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_localllmmodelinstall_test", + "target": "apps_electron_vite_project_electron_main_llm_gguffileutils_isggufmagicbuffer", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/localLlmModelInstall.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_localllmmodelinstall_test", + "target": "apps_electron_vite_project_electron_main_llm_huggingfacemodeldownloadallowlist", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/localLlmModelInstall.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_localllmmodelinstall_test", + "target": "apps_electron_vite_project_electron_main_llm_huggingfacemodeldownloadallowlist_asserthttpshuggingfacedownloadurl", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/localLlmServerConfig.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_localllmserverconfig_test", + "target": "apps_electron_vite_project_electron_main_llm_localllmserverconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/localLlmServerConfig.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_localllmserverconfig_test", + "target": "apps_electron_vite_project_electron_main_llm_localllmserverconfig_default_local_llm_server_config", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/localLlmServerConfig.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_localllmserverconfig_test", + "target": "apps_electron_vite_project_electron_main_llm_localllmserverconfig_getlocalllmserverconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/localLlmServerConfig.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_localllmserverconfig_test", + "target": "apps_electron_vite_project_electron_main_llm_localllmserverconfig_sanitizelocalllmserverconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/localLlmServerConfig.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_localllmserverconfig_test", + "target": "apps_electron_vite_project_electron_main_llm_localllmserverconfig_setlocalllmserverconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/localModelIdentity.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_localmodelidentity_test", + "target": "apps_electron_vite_project_electron_main_llm_localmodelidentity", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/localModelIdentity.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_localmodelidentity_test", + "target": "apps_electron_vite_project_electron_main_llm_localmodelidentity_canonicallocalmodelname", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/localModelIdentity.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_localmodelidentity_test", + "target": "apps_electron_vite_project_electron_main_llm_localmodelidentity_dedupecanonicalmodelnames", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/localModelIdentity.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_localmodelidentity_test", + "target": "apps_electron_vite_project_electron_main_llm_localmodelidentity_localmodelidsmatch", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/localModelIdentity.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_localmodelidentity_test", + "target": "apps_electron_vite_project_electron_main_llm_localmodelidentity_resolvelocalmodelalias", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/modeModelWarmupTrigger.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_modemodelwarmuptrigger_test", + "target": "apps_electron_vite_project_electron_main_llm_tests_modemodelwarmuptrigger_test_gethandshakedbmock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/modeModelWarmupTrigger.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_modemodelwarmuptrigger_test", + "target": "apps_electron_vite_project_electron_main_llm_tests_modemodelwarmuptrigger_test_getmodebyidmock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/modeModelWarmupTrigger.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_modemodelwarmuptrigger_test", + "target": "apps_electron_vite_project_electron_main_llm_tests_modemodelwarmuptrigger_test_iseffectivesandboxnodemock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/modeModelWarmupTrigger.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_modemodelwarmuptrigger_test", + "target": "apps_electron_vite_project_electron_main_llm_tests_modemodelwarmuptrigger_test_resolvedeclaredmodelmock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/modeModelWarmupTrigger.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_modemodelwarmuptrigger_test", + "target": "apps_electron_vite_project_electron_main_llm_tests_modemodelwarmuptrigger_test_resolvestrategymock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/modeModelWarmupTrigger.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_modemodelwarmuptrigger_test", + "target": "apps_electron_vite_project_electron_main_llm_tests_modemodelwarmuptrigger_test_warmmodelmock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/ollamaManager.inferenceGate.contract.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_ollamamanager_inferencegate_contract_test", + "target": "apps_electron_vite_project_electron_main_llm_tests_ollamamanager_inferencegate_contract_test_assertgate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/ollamaManager.inferenceGate.contract.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_ollamamanager_inferencegate_contract_test", + "target": "apps_electron_vite_project_electron_main_llm_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/ollamaManager.inferenceGate.contract.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_ollamamanager_inferencegate_contract_test", + "target": "apps_electron_vite_project_electron_main_llm_types_chatmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/resolveAiExecutionContext.effectiveSandbox.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_resolveaiexecutioncontext_effectivesandbox_test", + "target": "apps_electron_vite_project_electron_main_llm_tests_resolveaiexecutioncontext_effectivesandbox_test_geteffectivechatmodelnamemock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/resolveAiExecutionContext.effectiveSandbox.test.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_resolveaiexecutioncontext_effectivesandbox_test", + "target": "apps_electron_vite_project_electron_main_llm_tests_resolveaiexecutioncontext_effectivesandbox_test_readstoredaiexecutioncontextmock", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/resolveDeclaredModelAvailability.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_resolvedeclaredmodelavailability_test", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/resolveDeclaredModelAvailability.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_resolvedeclaredmodelavailability_test", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/resolveDeclaredModelAvailability.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_resolvedeclaredmodelavailability_test", + "target": "apps_electron_vite_project_electron_main_llm_resolvedeclaredmodelavailability", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/resolveDeclaredModelAvailability.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_resolvedeclaredmodelavailability_test", + "target": "apps_electron_vite_project_electron_main_llm_resolvedeclaredmodelavailability_isollamamodelinstalled", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/resolveDeclaredModelAvailability.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_resolvedeclaredmodelavailability_test", + "target": "apps_electron_vite_project_electron_main_llm_resolvedeclaredmodelavailability_resolvedeclaredlocalollamamodel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/startupWarmup.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_startupwarmup_test", + "target": "apps_electron_vite_project_electron_main_llm_tests_startupwarmup_test_gethandshakedbmock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/startupWarmup.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_startupwarmup_test", + "target": "apps_electron_vite_project_electron_main_llm_tests_startupwarmup_test_iseffectivesandboxnodemock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/startupWarmup.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_startupwarmup_test", + "target": "apps_electron_vite_project_electron_main_llm_tests_startupwarmup_test_resolveaimock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/startupWarmup.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_startupwarmup_test", + "target": "apps_electron_vite_project_electron_main_llm_tests_startupwarmup_test_resolvestrategymock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/startupWarmup.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_startupwarmup_test", + "target": "apps_electron_vite_project_electron_main_llm_tests_startupwarmup_test_waituntilreadymock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/startupWarmup.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_startupwarmup_test", + "target": "apps_electron_vite_project_electron_main_llm_tests_startupwarmup_test_warmmodelmock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/warmupOnServerHealthy.test.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_warmuponserverhealthy_test", + "target": "apps_electron_vite_project_electron_main_llm_tests_warmuponserverhealthy_test_flush", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/warmupOnServerHealthy.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_warmuponserverhealthy_test", + "target": "apps_electron_vite_project_electron_main_llm_tests_warmuponserverhealthy_test_resolvectxmock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/warmupOnServerHealthy.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_warmuponserverhealthy_test", + "target": "apps_electron_vite_project_electron_main_llm_tests_warmuponserverhealthy_test_warmmodelmock", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/warmupOnServerHealthy.test.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_warmuponserverhealthy_test", + "target": "apps_electron_vite_project_electron_main_llm_warmuponserverhealthy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/warmupOnServerHealthy.test.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_warmuponserverhealthy_test", + "target": "apps_electron_vite_project_electron_main_llm_warmuponserverhealthy_initwarmuponserverhealthy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/__tests__/warmupOnServerHealthy.test.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_tests_warmuponserverhealthy_test", + "target": "apps_electron_vite_project_electron_main_llm_warmuponserverhealthy_resetwarmuponserverhealthyfortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/activeLocalModelStore.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore", + "target": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore_dbg", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/activeLocalModelStore.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore", + "target": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore_debug_active_local_model", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/activeLocalModelStore.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore", + "target": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore_getstoredactivelocalmodelid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/activeLocalModelStore.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore", + "target": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore_readraw", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/activeLocalModelStore.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore", + "target": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore_resolveeffectivelocalmodel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/activeLocalModelStore.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore", + "target": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore_setstoredactivelocalmodelid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/activeLocalModelStore.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore", + "target": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore_storefile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/activeLocalModelStore.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore", + "target": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore_storepath", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/activeOllamaModelStore.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_activeollamamodelstore_test", + "target": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/inboxAutosortRuntime.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_inboxautosortruntime", + "target": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc", + "target": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmProviderStatus.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmproviderstatus", + "target": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc", + "target": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore_debug_active_local_model", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore_debug_active_local_model", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/activeLocalModelStore.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore_resolveeffectivelocalmodel", + "target": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore_dbg", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/activeLocalModelStore.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore_setstoredactivelocalmodelid", + "target": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore_dbg", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/activeLocalModelStore.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore_readraw", + "target": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore_storepath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/activeLocalModelStore.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore_setstoredactivelocalmodelid", + "target": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore_storepath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/activeLocalModelStore.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore_getstoredactivelocalmodelid", + "target": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore_readraw", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/activeOllamaModelStore.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_activeollamamodelstore_test", + "target": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore_getstoredactivelocalmodelid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/inboxAutosortRuntime.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_inboxautosortruntime", + "target": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore_getstoredactivelocalmodelid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/inboxAutosortRuntime.ts", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_inboxautosortruntime_resolveinboxautosortruntime", + "target": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore_getstoredactivelocalmodelid" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore_getstoredactivelocalmodelid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L951", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_geteffectivechatmodelname", + "target": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore_getstoredactivelocalmodelid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L844", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_getstatus", + "target": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore_getstoredactivelocalmodelid" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmProviderStatus.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmproviderstatus", + "target": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore_getstoredactivelocalmodelid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmProviderStatus.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmproviderstatus_getlocalllmproviderstatus", + "target": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore_getstoredactivelocalmodelid" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/activeOllamaModelStore.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_activeollamamodelstore_test", + "target": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore_setstoredactivelocalmodelid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore_setstoredactivelocalmodelid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L963", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_geteffectivechatmodelname", + "target": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore_setstoredactivelocalmodelid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L991", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_setactivemodelpreference", + "target": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore_setstoredactivelocalmodelid" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/activeOllamaModelStore.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_activeollamamodelstore_test", + "target": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore_resolveeffectivelocalmodel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore_resolveeffectivelocalmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L954", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_geteffectivechatmodelname", + "target": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore_resolveeffectivelocalmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L846", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_getstatus", + "target": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore_resolveeffectivelocalmodel" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmProviderStatus.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmproviderstatus", + "target": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore_resolveeffectivelocalmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmProviderStatus.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmproviderstatus_getlocalllmproviderstatus", + "target": "apps_electron_vite_project_electron_main_llm_activelocalmodelstore_resolveeffectivelocalmodel" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/activeOllamaModelStore.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_activeollamamodelstore_test", + "target": "apps_electron_vite_project_electron_main_llm_activeollamamodelstore_test_testuserdata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/adaptiveWarmupStrategy.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_adaptivewarmupstrategy", + "target": "apps_electron_vite_project_electron_main_llm_adaptivewarmupstrategy_getadaptivekeepalive", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/adaptiveWarmupStrategy.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_adaptivewarmupstrategy", + "target": "apps_electron_vite_project_electron_main_llm_adaptivewarmupstrategy_getcachedwarmupstrategy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/adaptiveWarmupStrategy.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_adaptivewarmupstrategy", + "target": "apps_electron_vite_project_electron_main_llm_adaptivewarmupstrategy_geteffectivemaxresidentmodels", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/adaptiveWarmupStrategy.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_adaptivewarmupstrategy", + "target": "apps_electron_vite_project_electron_main_llm_adaptivewarmupstrategy_resetadaptivewarmupstrategyfortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/adaptiveWarmupStrategy.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_adaptivewarmupstrategy", + "target": "apps_electron_vite_project_electron_main_llm_adaptivewarmupstrategy_resolveadaptivewarmupstrategy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/adaptiveWarmupStrategy.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_adaptivewarmupstrategy", + "target": "apps_electron_vite_project_electron_main_llm_adaptivewarmupstrategy_warmupstrategy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/adaptiveWarmupStrategy.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_adaptivewarmupstrategy", + "target": "apps_electron_vite_project_electron_main_llm_adaptivewarmupstrategy_warmupstrategykind", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/adaptiveWarmupStrategy.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_adaptivewarmupstrategy", + "target": "apps_electron_vite_project_electron_main_llm_detectvramcapacity", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/adaptiveWarmupStrategy.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_adaptivewarmupstrategy", + "target": "apps_electron_vite_project_electron_main_llm_detectvramcapacity_estimatemaxresidentmodels", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/adaptiveWarmupStrategy.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_adaptivewarmupstrategy", + "target": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/adaptiveWarmupStrategy.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_adaptivewarmupstrategy", + "target": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_resolveaiexecutioncontextforllm", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_adaptivewarmupstrategy", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/modeModelWarmupTrigger.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_modemodelwarmuptrigger", + "target": "apps_electron_vite_project_electron_main_llm_adaptivewarmupstrategy", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/startupWarmup.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_startupwarmup", + "target": "apps_electron_vite_project_electron_main_llm_adaptivewarmupstrategy", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/warmModel.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_warmmodel", + "target": "apps_electron_vite_project_electron_main_llm_adaptivewarmupstrategy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_adaptivewarmupstrategy_getadaptivekeepalive", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L1064", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_chat", + "target": "apps_electron_vite_project_electron_main_llm_adaptivewarmupstrategy_getadaptivekeepalive" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/warmModel.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_warmmodel", + "target": "apps_electron_vite_project_electron_main_llm_adaptivewarmupstrategy_getadaptivekeepalive", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/warmModel.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_warmmodel_warmmodel", + "target": "apps_electron_vite_project_electron_main_llm_adaptivewarmupstrategy_getadaptivekeepalive" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/adaptiveWarmupStrategy.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_adaptivewarmupstrategy_resolveadaptivewarmupstrategy", + "target": "apps_electron_vite_project_electron_main_llm_detectvramcapacity_estimatemaxresidentmodels" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/adaptiveWarmupStrategy.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_adaptivewarmupstrategy_resolveadaptivewarmupstrategy", + "target": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_resolveaiexecutioncontextforllm" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/modeModelWarmupTrigger.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_modemodelwarmuptrigger", + "target": "apps_electron_vite_project_electron_main_llm_adaptivewarmupstrategy_resolveadaptivewarmupstrategy", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/modeModelWarmupTrigger.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_modemodelwarmuptrigger_runmodemodelwarmontrigger", + "target": "apps_electron_vite_project_electron_main_llm_adaptivewarmupstrategy_resolveadaptivewarmupstrategy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/startupWarmup.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_startupwarmup", + "target": "apps_electron_vite_project_electron_main_llm_adaptivewarmupstrategy_resolveadaptivewarmupstrategy", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/startupWarmup.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_startupwarmup_runstartupwarmup", + "target": "apps_electron_vite_project_electron_main_llm_adaptivewarmupstrategy_resolveadaptivewarmupstrategy" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/aiExecutionContextStore.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore_clearstoredaiexecutioncontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/aiExecutionContextStore.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore_islane", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/aiExecutionContextStore.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore_normalizeaiexecutioncontextinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/aiExecutionContextStore.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore_readstoredaiexecutioncontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/aiExecutionContextStore.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore_storepath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/aiExecutionContextStore.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore_writestoredaiexecutioncontext", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/aiExecutionContextStore.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutiontypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/aiExecutionContextStore.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutiontypes_aiexecutioncontext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/aiExecutionContextStore.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutiontypes_aiexecutioncontextinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/aiExecutionContextStore.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutiontypes_aiexecutionlane", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/aiExecutionContextStore.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore_clearstoredaiexecutioncontext", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore_storepath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/aiExecutionContextStore.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore_readstoredaiexecutioncontext", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore_storepath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/aiExecutionContextStore.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore_writestoredaiexecutioncontext", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore_storepath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/aiExecutionContextStore.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore_normalizeaiexecutioncontextinput", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore_islane", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/aiExecutionContextStore.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore_readstoredaiexecutioncontext", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore_normalizeaiexecutioncontextinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore_normalizeaiexecutioncontextinput", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L382", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc_registerllmhandlers", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore_normalizeaiexecutioncontextinput" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore_readstoredaiexecutioncontext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_fallbackfromlistsandbox", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore_readstoredaiexecutioncontext" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L272", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_resolveaiexecutioncontextforllm", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore_readstoredaiexecutioncontext" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore_writestoredaiexecutioncontext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L416", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc_registerllmhandlers", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutioncontextstore_writestoredaiexecutioncontext" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/aiExecutionTypes.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_aiexecutiontypes", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutiontypes_aiexecutioncontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/aiExecutionTypes.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_aiexecutiontypes", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutiontypes_aiexecutioncontextinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/aiExecutionTypes.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_aiexecutiontypes", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutiontypes_aiexecutionlane", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/aiExecutionTypes.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_aiexecutiontypes", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutiontypes_resolveaiexecutioncontextresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ollamaEmbeddingCapability.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ollamaembeddingcapability", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutiontypes", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/aiExecutionTypes.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_aiexecutiontypes", + "target": "apps_electron_vite_project_electron_main_llm_ollamaembeddingcapability_aimodelcapability", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutiontypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutiontypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutiontypes_aiexecutionlane", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ollamaEmbeddingCapability.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ollamaembeddingcapability", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutiontypes_aiexecutionlane", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutiontypes_aiexecutioncontext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext", + "target": "apps_electron_vite_project_electron_main_llm_aiexecutiontypes_resolveaiexecutioncontextresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/broadcastActiveModel.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_broadcastactivemodel", + "target": "apps_electron_vite_project_electron_main_llm_broadcastactivemodel_broadcastactivelocalmodelchanged", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/broadcastActiveModel.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_broadcastactivemodel", + "target": "apps_electron_vite_project_electron_main_llm_broadcastactivemodel_broadcastactiveollamamodelchanged", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc", + "target": "apps_electron_vite_project_electron_main_llm_broadcastactivemodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/broadcastActiveModel.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_broadcastactivemodel_broadcastactivelocalmodelchanged", + "target": "test_mocks_electron_browserwindow_getallwindows" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc", + "target": "apps_electron_vite_project_electron_main_llm_broadcastactivemodel_broadcastactivelocalmodelchanged", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L414", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc_registerllmhandlers", + "target": "apps_electron_vite_project_electron_main_llm_broadcastactivemodel_broadcastactivelocalmodelchanged" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/broadcastModelsChanged.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_broadcastmodelschanged", + "target": "apps_electron_vite_project_electron_main_llm_broadcastmodelschanged_broadcastmodelsinstalledchanged", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc", + "target": "apps_electron_vite_project_electron_main_llm_broadcastmodelschanged", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/broadcastModelsChanged.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_broadcastmodelschanged_broadcastmodelsinstalledchanged", + "target": "test_mocks_electron_browserwindow_getallwindows" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc", + "target": "apps_electron_vite_project_electron_main_llm_broadcastmodelschanged_broadcastmodelsinstalledchanged", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L240", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc_registerllmhandlers", + "target": "apps_electron_vite_project_electron_main_llm_broadcastmodelschanged_broadcastmodelsinstalledchanged" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/config.ts", + "source_location": "L386", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_config", + "target": "apps_electron_vite_project_electron_main_llm_config_default_config", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/config.ts", + "source_location": "L396", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_config", + "target": "apps_electron_vite_project_electron_main_llm_config_getmodelconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/config.ts", + "source_location": "L403", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_config", + "target": "apps_electron_vite_project_electron_main_llm_config_getmodelsbytier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/config.ts", + "source_location": "L410", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_config", + "target": "apps_electron_vite_project_electron_main_llm_config_getmodelsforram", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/config.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_config", + "target": "apps_electron_vite_project_electron_main_llm_config_model_catalog", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/config.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_config", + "target": "apps_electron_vite_project_electron_main_llm_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/config.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_config", + "target": "apps_electron_vite_project_electron_main_llm_types_llmconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/config.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_config", + "target": "apps_electron_vite_project_electron_main_llm_types_llmmodelconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/config.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_config", + "target": "apps_electron_vite_project_electron_main_llm_types_modeltier", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc", + "target": "apps_electron_vite_project_electron_main_llm_config", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/config.ts", + "source_location": "L397", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_config_getmodelconfig", + "target": "apps_electron_vite_project_electron_main_llm_config_model_catalog" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc", + "target": "apps_electron_vite_project_electron_main_llm_config_model_catalog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc", + "target": "apps_electron_vite_project_electron_main_llm_config_getmodelconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L215", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc_registerllmhandlers", + "target": "apps_electron_vite_project_electron_main_llm_config_getmodelconfig" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/create-phi3-low.js", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_create_phi3_low", + "target": "apps_electron_vite_project_electron_main_llm_create_phi3_low_createphi3low", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/create-phi3-low.js", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_create_phi3_low", + "target": "apps_electron_vite_project_electron_main_llm_create_phi3_low_exec", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/create-phi3-low.js", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_create_phi3_low", + "target": "apps_electron_vite_project_electron_main_llm_create_phi3_low_execasync", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/create-phi3-low.js", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_create_phi3_low", + "target": "apps_electron_vite_project_electron_main_llm_create_phi3_low_fs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/create-phi3-low.js", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_create_phi3_low", + "target": "apps_electron_vite_project_electron_main_llm_create_phi3_low_path", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/create-phi3-low.js", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_create_phi3_low", + "target": "apps_electron_vite_project_electron_main_llm_create_phi3_low_promisify", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/create-phi3-low.js", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_create_phi3_low_createphi3low", + "target": "apps_electron_vite_project_electron_main_llm_create_phi3_low_execasync", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/detectVramCapacity.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_detectvramcapacity", + "target": "apps_electron_vite_project_electron_main_llm_detectvramcapacity_estimateavailablemodelmemorygb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/detectVramCapacity.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_detectvramcapacity", + "target": "apps_electron_vite_project_electron_main_llm_detectvramcapacity_estimatemaxresidentmodels", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/detectVramCapacity.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_detectvramcapacity", + "target": "apps_electron_vite_project_electron_main_llm_detectvramcapacity_fetchlocalllmmodelsizebytesbyname", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/detectVramCapacity.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_detectvramcapacity", + "target": "apps_electron_vite_project_electron_main_llm_detectvramcapacity_fetchollamamodelsizebytesbyname", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/detectVramCapacity.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_detectvramcapacity", + "target": "apps_electron_vite_project_electron_main_llm_detectvramcapacity_logvramdetect", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/detectVramCapacity.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_detectvramcapacity", + "target": "apps_electron_vite_project_electron_main_llm_detectvramcapacity_modelsizegb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/detectVramCapacity.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_detectvramcapacity", + "target": "apps_electron_vite_project_electron_main_llm_detectvramcapacity_vramcapacityestimate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/detectVramCapacity.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_detectvramcapacity", + "target": "apps_electron_vite_project_electron_main_llm_hardware", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/detectVramCapacity.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_detectvramcapacity", + "target": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/detectVramCapacity.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_detectvramcapacity", + "target": "apps_electron_vite_project_electron_main_llm_localllmpaths", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/detectVramCapacity.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_detectvramcapacity", + "target": "apps_electron_vite_project_electron_main_llm_localllmpaths_host_ai_default_local_llamacpp_base", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/detectVramCapacity.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_detectvramcapacity_estimateavailablemodelmemorygb", + "target": "apps_electron_vite_project_electron_main_llm_detectvramcapacity_logvramdetect", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/detectVramCapacity.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_detectvramcapacity_estimatemaxresidentmodels", + "target": "apps_electron_vite_project_electron_main_llm_detectvramcapacity_estimateavailablemodelmemorygb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/detectVramCapacity.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_detectvramcapacity_estimatemaxresidentmodels", + "target": "apps_electron_vite_project_electron_main_llm_detectvramcapacity_fetchlocalllmmodelsizebytesbyname", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/detectVramCapacity.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_detectvramcapacity_estimatemaxresidentmodels", + "target": "apps_electron_vite_project_electron_main_llm_detectvramcapacity_modelsizegb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ggufFileUtils.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_gguffileutils", + "target": "apps_electron_vite_project_electron_main_llm_gguffileutils_assertggufmagicheader", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ggufFileUtils.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_gguffileutils", + "target": "apps_electron_vite_project_electron_main_llm_gguffileutils_computefilesha256hex", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ggufFileUtils.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_gguffileutils", + "target": "apps_electron_vite_project_electron_main_llm_gguffileutils_gguf_magic", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ggufFileUtils.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_gguffileutils", + "target": "apps_electron_vite_project_electron_main_llm_gguffileutils_isggufmagicbuffer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ggufFileUtils.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_gguffileutils", + "target": "apps_electron_vite_project_electron_main_llm_gguffileutils_readsha256sidecar", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ggufFileUtils.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_gguffileutils", + "target": "apps_electron_vite_project_electron_main_llm_gguffileutils_removesha256sidecar", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ggufFileUtils.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_gguffileutils", + "target": "apps_electron_vite_project_electron_main_llm_gguffileutils_sha256sidecarpath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ggufFileUtils.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_gguffileutils", + "target": "apps_electron_vite_project_electron_main_llm_gguffileutils_writesha256sidecar", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall", + "target": "apps_electron_vite_project_electron_main_llm_gguffileutils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall", + "target": "apps_electron_vite_project_electron_main_llm_gguffileutils", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ggufFileUtils.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_gguffileutils_assertggufmagicheader", + "target": "apps_electron_vite_project_electron_main_llm_gguffileutils_isggufmagicbuffer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall", + "target": "apps_electron_vite_project_electron_main_llm_gguffileutils_assertggufmagicheader", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L382", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_downloadgguffromallowedurl", + "target": "apps_electron_vite_project_electron_main_llm_gguffileutils_assertggufmagicheader" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_finalizeggufimport", + "target": "apps_electron_vite_project_electron_main_llm_gguffileutils_assertggufmagicheader", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_importgguffromuserpath", + "target": "apps_electron_vite_project_electron_main_llm_gguffileutils_assertggufmagicheader" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ggufFileUtils.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_gguffileutils_readsha256sidecar", + "target": "apps_electron_vite_project_electron_main_llm_gguffileutils_sha256sidecarpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ggufFileUtils.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_gguffileutils_removesha256sidecar", + "target": "apps_electron_vite_project_electron_main_llm_gguffileutils_sha256sidecarpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ggufFileUtils.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_gguffileutils_writesha256sidecar", + "target": "apps_electron_vite_project_electron_main_llm_gguffileutils_sha256sidecarpath", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall", + "target": "apps_electron_vite_project_electron_main_llm_gguffileutils_computefilesha256hex", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L356", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_runinstall", + "target": "apps_electron_vite_project_electron_main_llm_gguffileutils_computefilesha256hex", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall", + "target": "apps_electron_vite_project_electron_main_llm_gguffileutils_computefilesha256hex", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L384", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_downloadgguffromallowedurl", + "target": "apps_electron_vite_project_electron_main_llm_gguffileutils_computefilesha256hex" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_finalizeggufimport", + "target": "apps_electron_vite_project_electron_main_llm_gguffileutils_computefilesha256hex", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall", + "target": "apps_electron_vite_project_electron_main_llm_gguffileutils_writesha256sidecar", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L387", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_downloadgguffromallowedurl", + "target": "apps_electron_vite_project_electron_main_llm_gguffileutils_writesha256sidecar" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_finalizeggufimport", + "target": "apps_electron_vite_project_electron_main_llm_gguffileutils_writesha256sidecar", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall", + "target": "apps_electron_vite_project_electron_main_llm_gguffileutils_readsha256sidecar", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L399", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_readinstalledmodelsha256", + "target": "apps_electron_vite_project_electron_main_llm_gguffileutils_readsha256sidecar" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall", + "target": "apps_electron_vite_project_electron_main_llm_gguffileutils_removesha256sidecar", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L403", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_deleteinstalledgguf", + "target": "apps_electron_vite_project_electron_main_llm_gguffileutils_removesha256sidecar" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/handshakeAvailableModelsCompute.ts", + "source_location": "L320", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_handshakeavailablemodelscompute", + "target": "apps_electron_vite_project_electron_main_llm_handshakeavailablemodelscompute_augmentollamastatuswithwrchatmodels", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/handshakeAvailableModelsCompute.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_handshakeavailablemodelscompute", + "target": "apps_electron_vite_project_electron_main_llm_handshakeavailablemodelscompute_computehandshakeavailablemodels", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/handshakeAvailableModelsCompute.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_handshakeavailablemodelscompute", + "target": "apps_electron_vite_project_electron_main_llm_handshakeavailablemodelscompute_computehandshakeavailablemodelsopts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/handshakeAvailableModelsCompute.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_handshakeavailablemodelscompute", + "target": "apps_electron_vite_project_electron_main_llm_handshakeavailablemodelscompute_computehandshakeavailablemodelsresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/handshakeAvailableModelsCompute.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_handshakeavailablemodelscompute", + "target": "apps_electron_vite_project_electron_main_llm_handshakeavailablemodelscompute_handshakemodelstowrchatrows", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/handshakeAvailableModelsCompute.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_handshakeavailablemodelscompute", + "target": "apps_electron_vite_project_electron_main_llm_handshakeavailablemodelscompute_handshakeuimodelrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/handshakeAvailableModelsCompute.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_handshakeavailablemodelscompute", + "target": "apps_electron_vite_project_electron_main_llm_handshakeavailablemodelscompute_loglocalproviderollamadiscovery", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/handshakeAvailableModelsCompute.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_handshakeavailablemodelscompute", + "target": "apps_electron_vite_project_electron_main_llm_handshakeavailablemodelscompute_wrchatavailablemodelrow", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/handshakeAvailableModelsCompute.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_handshakeavailablemodelscompute", + "target": "apps_electron_vite_project_electron_main_llm_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/handshakeAvailableModelsCompute.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_handshakeavailablemodelscompute", + "target": "apps_electron_vite_project_electron_main_llm_types_localllmstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/handshakeAvailableModelsCompute.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_handshakeavailablemodelscompute", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/handshakeAvailableModelsCompute.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_handshakeavailablemodelscompute", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/handshakeAvailableModelsCompute.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_handshakeavailablemodelscompute", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_issandboxmode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc_registerllmhandlers", + "target": "apps_electron_vite_project_electron_main_llm_handshakeavailablemodelscompute", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/handshakeAvailableModelsCompute.ts", + "source_location": "L208", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_handshakeavailablemodelscompute_computehandshakeavailablemodels", + "target": "apps_electron_vite_project_electron_main_llm_handshakeavailablemodelscompute_loglocalproviderollamadiscovery", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/handshakeAvailableModelsCompute.ts", + "source_location": "L329", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_handshakeavailablemodelscompute_augmentollamastatuswithwrchatmodels", + "target": "apps_electron_vite_project_electron_main_llm_handshakeavailablemodelscompute_handshakemodelstowrchatrows", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/handshakeAvailableModelsCompute.ts", + "source_location": "L324", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_handshakeavailablemodelscompute_augmentollamastatuswithwrchatmodels", + "target": "apps_electron_vite_project_electron_main_llm_handshakeavailablemodelscompute_computehandshakeavailablemodels", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/handshakeAvailableModelsCompute.ts", + "source_location": "L214", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_handshakeavailablemodelscompute_computehandshakeavailablemodels", + "target": "apps_electron_vite_project_electron_main_llm_localllmproviderstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/handshakeAvailableModelsCompute.ts", + "source_location": "L266", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_handshakeavailablemodelscompute_computehandshakeavailablemodels", + "target": "apps_electron_vite_project_electron_main_ocr_router", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/handshakeAvailableModelsCompute.ts", + "source_location": "L283", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_handshakeavailablemodelscompute_computehandshakeavailablemodels", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/handshakeAvailableModelsCompute.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_handshakeavailablemodelscompute_computehandshakeavailablemodels", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/handshakeAvailableModelsCompute.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_handshakeavailablemodelscompute_computehandshakeavailablemodels", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_issandboxmode" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-capability-check.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_capability_check", + "target": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_cpucapabilities", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-capability-check.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_capability_check", + "target": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_diskinfo", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-capability-check.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_capability_check", + "target": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_execasync", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-capability-check.ts", + "source_location": "L426", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_capability_check", + "target": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_hardwarecapabilitychecker", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-capability-check.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_capability_check", + "target": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_hardwarecapabilityresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-capability-check.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_capability_check", + "target": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_hardwareprofile", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-capability-check.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_capability_check", + "target": "apps_electron_vite_project_electron_main_llm_rotating_logger", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-capability-check.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_capability_check", + "target": "apps_electron_vite_project_electron_main_llm_rotating_logger_ollamalogger", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-capability-check.ts", + "source_location": "L300", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_hardwarecapabilitychecker_checkgpuvulkanhealth", + "target": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_execasync", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-capability-check.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_hardwarecapabilitychecker_detectcpucapabilities", + "target": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_execasync", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-capability-check.ts", + "source_location": "L229", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_hardwarecapabilitychecker_detectdisktype", + "target": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_execasync", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-capability-check.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_hardwarecapabilitychecker", + "target": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_hardwarecapabilitychecker_check", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-capability-check.ts", + "source_location": "L297", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_hardwarecapabilitychecker", + "target": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_hardwarecapabilitychecker_checkgpuvulkanhealth", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-capability-check.ts", + "source_location": "L324", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_hardwarecapabilitychecker", + "target": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_hardwarecapabilitychecker_computeprofile", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-capability-check.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_hardwarecapabilitychecker", + "target": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_hardwarecapabilitychecker_detectcpucapabilities", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-capability-check.ts", + "source_location": "L217", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_hardwarecapabilitychecker", + "target": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_hardwarecapabilitychecker_detectdisktype", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-capability-check.ts", + "source_location": "L371", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_hardwarecapabilitychecker", + "target": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_hardwarecapabilitychecker_generaterecommendation", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-capability-check.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_hardwarecapabilitychecker", + "target": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_hardwarecapabilitychecker_getcached", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-capability-check.ts", + "source_location": "L402", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_hardwarecapabilitychecker", + "target": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_hardwarecapabilitychecker_logresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-capability-check.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_hardwarecapabilitychecker_check", + "target": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_hardwarecapabilitychecker_checkgpuvulkanhealth", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-capability-check.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_hardwarecapabilitychecker_check", + "target": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_hardwarecapabilitychecker_computeprofile", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-capability-check.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_hardwarecapabilitychecker_check", + "target": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_hardwarecapabilitychecker_detectcpucapabilities", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-capability-check.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_hardwarecapabilitychecker_check", + "target": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_hardwarecapabilitychecker_detectdisktype", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-capability-check.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_hardwarecapabilitychecker_check", + "target": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_hardwarecapabilitychecker_generaterecommendation", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-capability-check.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_hardwarecapabilitychecker_check", + "target": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_hardwarecapabilitychecker_logresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-capability-check.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_hardwarecapabilitychecker_getcached", + "target": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_hardwarecapabilitychecker_check", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "collection", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/extension-chromium/src/vault/autofill/mutationGuard.ts", + "source_location": "L287", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_mutationguard_attachguard", + "target": "apps_electron_vite_project_electron_main_llm_hardware_capability_check_hardwarecapabilitychecker_check" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-diagnostics.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics", + "target": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics_execasync", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-diagnostics.ts", + "source_location": "L344", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics", + "target": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics_hardwarediagnostics", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-diagnostics.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics", + "target": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics_hardwarediagnosticsservice", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-diagnostics.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics", + "target": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics_resourcerecommendations", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-diagnostics.ts", + "source_location": "L184", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics_hardwarediagnosticsservice_checkvulkanhealth", + "target": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics_execasync", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-diagnostics.ts", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics_hardwarediagnosticsservice_detectgpu", + "target": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics_execasync", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-diagnostics.ts", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics_hardwarediagnosticsservice", + "target": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics_hardwarediagnosticsservice_checkvulkanhealth", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-diagnostics.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics_hardwarediagnosticsservice", + "target": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics_hardwarediagnosticsservice_detectcpu", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-diagnostics.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics_hardwarediagnosticsservice", + "target": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics_hardwarediagnosticsservice_detectgpu", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-diagnostics.ts", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics_hardwarediagnosticsservice", + "target": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics_hardwarediagnosticsservice_detectmemory", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-diagnostics.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics_hardwarediagnosticsservice", + "target": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics_hardwarediagnosticsservice_diagnose", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-diagnostics.ts", + "source_location": "L245", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics_hardwarediagnosticsservice", + "target": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics_hardwarediagnosticsservice_generaterecommendations", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-diagnostics.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics_hardwarediagnosticsservice", + "target": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics_hardwarediagnosticsservice_getcached", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-diagnostics.ts", + "source_location": "L320", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics_hardwarediagnosticsservice", + "target": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics_hardwarediagnosticsservice_logdiagnostics", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-diagnostics.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics_hardwarediagnosticsservice_diagnose", + "target": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics_hardwarediagnosticsservice_checkvulkanhealth", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-diagnostics.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics_hardwarediagnosticsservice_diagnose", + "target": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics_hardwarediagnosticsservice_detectcpu", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-diagnostics.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics_hardwarediagnosticsservice_diagnose", + "target": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics_hardwarediagnosticsservice_detectgpu", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-diagnostics.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics_hardwarediagnosticsservice_diagnose", + "target": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics_hardwarediagnosticsservice_detectmemory", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-diagnostics.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics_hardwarediagnosticsservice_diagnose", + "target": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics_hardwarediagnosticsservice_generaterecommendations", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-diagnostics.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics_hardwarediagnosticsservice_diagnose", + "target": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics_hardwarediagnosticsservice_logdiagnostics", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-diagnostics.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics_hardwarediagnosticsservice_getcached", + "target": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics_hardwarediagnosticsservice_diagnose", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware-diagnostics.ts", + "source_location": "L213", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics_hardwarediagnosticsservice_checkvulkanhealth", + "target": "apps_electron_vite_project_electron_main_llm_hardware_diagnostics_hardwarediagnosticsservice_detectgpu", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware", + "target": "apps_electron_vite_project_electron_main_llm_hardware_execasync", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L451", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware", + "target": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware", + "target": "apps_electron_vite_project_electron_main_llm_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware", + "target": "apps_electron_vite_project_electron_main_llm_types_hardwareinfo", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware", + "target": "apps_electron_vite_project_electron_main_llm_types_llmmodelconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware", + "target": "apps_electron_vite_project_electron_main_llm_types_modelperformanceestimate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware", + "target": "apps_electron_vite_project_electron_main_llm_types_ostype", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware", + "target": "apps_electron_vite_project_electron_main_llm_types_performanceestimate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc", + "target": "apps_electron_vite_project_electron_main_llm_hardware", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_detectcpucapabilities", + "target": "apps_electron_vite_project_electron_main_llm_hardware_execasync", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L285", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_detectgpu", + "target": "apps_electron_vite_project_electron_main_llm_hardware_execasync", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L249", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_detectwindowsgpupresent", + "target": "apps_electron_vite_project_electron_main_llm_hardware_execasync", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L320", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_getdiskfree", + "target": "apps_electron_vite_project_electron_main_llm_hardware_execasync", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L201", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_querynvidiasmivramgb", + "target": "apps_electron_vite_project_electron_main_llm_hardware_execasync", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L234", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_querywindowsregistryqwordvramgb", + "target": "apps_electron_vite_project_electron_main_llm_hardware_execasync", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice", + "target": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_detect", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice", + "target": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_detectcpucapabilities", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L266", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice", + "target": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_detectgpu", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L247", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice", + "target": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_detectwindowsgpupresent", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L414", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice", + "target": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_estimateperformance", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L346", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice", + "target": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_generatewarnings", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L314", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice", + "target": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_getdiskfree", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice", + "target": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_getostype", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L389", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice", + "target": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_getrecommendedmodels", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice", + "target": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_querynvidiasmivramgb", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L221", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice", + "target": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_querywindowsregistryqwordvramgb", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L194", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice", + "target": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_roundvramgbfrombytes", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L190", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice", + "target": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_roundvramgbfrommib", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc", + "target": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_detect", + "target": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_detectcpucapabilities", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_detect", + "target": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_detectgpu", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_detect", + "target": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_generatewarnings", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_detect", + "target": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_getdiskfree", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_detect", + "target": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_getostype", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_detect", + "target": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_getrecommendedmodels", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_detect", + "target": "apps_electron_vite_project_electron_main_llm_types_hardwareinfo", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_getostype", + "target": "apps_electron_vite_project_electron_main_llm_types_ostype", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L211", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_querynvidiasmivramgb", + "target": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_roundvramgbfrommib" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L240", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_querywindowsregistryqwordvramgb", + "target": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_roundvramgbfrombytes" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L270", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_detectgpu", + "target": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_querynvidiasmivramgb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L276", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_detectgpu", + "target": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_querywindowsregistryqwordvramgb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L280", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_detectgpu", + "target": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_detectwindowsgpupresent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L414", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_estimateperformance", + "target": "apps_electron_vite_project_electron_main_llm_types_hardwareinfo", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L414", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_estimateperformance", + "target": "apps_electron_vite_project_electron_main_llm_types_llmmodelconfig", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/hardware.ts", + "source_location": "L414", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_hardware_hardwareservice_estimateperformance", + "target": "apps_electron_vite_project_electron_main_llm_types_modelperformanceestimate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/huggingFaceModelDownloadAllowlist.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_huggingfacemodeldownloadallowlist", + "target": "apps_electron_vite_project_electron_main_llm_huggingfacemodeldownloadallowlist_asserthttpshuggingfacedownloadurl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/huggingFaceModelDownloadAllowlist.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_huggingfacemodeldownloadallowlist", + "target": "apps_electron_vite_project_electron_main_llm_huggingfacemodeldownloadallowlist_huggingface_gguf_download_allowed_hosts", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall", + "target": "apps_electron_vite_project_electron_main_llm_huggingfacemodeldownloadallowlist", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/huggingFaceModelDownloadAllowlist.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_huggingfacemodeldownloadallowlist_asserthttpshuggingfacedownloadurl", + "target": "apps_electron_vite_project_electron_main_llm_huggingfacemodeldownloadallowlist_huggingface_gguf_download_allowed_hosts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall", + "target": "apps_electron_vite_project_electron_main_llm_huggingfacemodeldownloadallowlist_asserthttpshuggingfacedownloadurl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L315", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_downloadgguffromallowedurl", + "target": "apps_electron_vite_project_electron_main_llm_huggingfacemodeldownloadallowlist_asserthttpshuggingfacedownloadurl" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/inboxAutosortRuntime.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_inboxautosortruntime", + "target": "apps_electron_vite_project_electron_main_llm_inboxautosortruntime_autosortblockreason", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/inboxAutosortRuntime.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_inboxautosortruntime", + "target": "apps_electron_vite_project_electron_main_llm_inboxautosortruntime_blocked", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/inboxAutosortRuntime.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_inboxautosortruntime", + "target": "apps_electron_vite_project_electron_main_llm_inboxautosortruntime_resolvedinboxruntime", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/inboxAutosortRuntime.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_inboxautosortruntime", + "target": "apps_electron_vite_project_electron_main_llm_inboxautosortruntime_resolveinboxautosortruntime", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/inboxAutosortRuntime.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_inboxautosortruntime", + "target": "apps_electron_vite_project_electron_main_llm_localllmproviderstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/inboxAutosortRuntime.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_inboxautosortruntime", + "target": "apps_electron_vite_project_electron_main_llm_localllmproviderstatus_getlocalllmproviderstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/inboxAutosortRuntime.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_inboxautosortruntime", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/inboxAutosortRuntime.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_inboxautosortruntime", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus_buildlocalllmruntimeinfo", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/inboxAutosortRuntime.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_inboxautosortruntime", + "target": "apps_electron_vite_project_electron_main_llm_types_localllmruntimeclassification", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/inboxAutosortRuntime.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_inboxautosortruntime", + "target": "apps_electron_vite_project_electron_main_ocr_router", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/inboxAutosortRuntime.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_inboxautosortruntime", + "target": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc", + "target": "apps_electron_vite_project_electron_main_llm_inboxautosortruntime", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/inboxAutosortRuntime.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_inboxautosortruntime_resolvedinboxruntime", + "target": "apps_electron_vite_project_electron_main_llm_types_localllmruntimeclassification", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/inboxAutosortRuntime.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_inboxautosortruntime_resolveinboxautosortruntime", + "target": "apps_electron_vite_project_electron_main_llm_inboxautosortruntime_blocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/inboxAutosortRuntime.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_inboxautosortruntime_resolveinboxautosortruntime", + "target": "apps_electron_vite_project_electron_main_llm_localllmproviderstatus_getlocalllmproviderstatus" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/inboxAutosortRuntime.ts", + "source_location": "L160", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_inboxautosortruntime_resolveinboxautosortruntime", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus_buildlocalllmruntimeinfo" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc", + "target": "apps_electron_vite_project_electron_main_llm_inboxautosortruntime_resolveinboxautosortruntime", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L457", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc_registerllmhandlers", + "target": "apps_electron_vite_project_electron_main_llm_inboxautosortruntime_resolveinboxautosortruntime" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/internalHostInferenceLocal.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_internalhostinferencelocal", + "target": "apps_electron_vite_project_electron_main_llm_internalhostinferencelocal_internalhostinferencemessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/internalHostInferenceLocal.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_internalhostinferencelocal", + "target": "apps_electron_vite_project_electron_main_llm_internalhostinferencelocal_resolvemodelforinternalinference", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/internalHostInferenceLocal.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_internalhostinferencelocal", + "target": "apps_electron_vite_project_electron_main_llm_internalhostinferencelocal_runinternalhostlocalllminference", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/internalHostInferenceLocal.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_internalhostinferencelocal", + "target": "apps_electron_vite_project_electron_main_llm_internalhostinferencelocal_runinternalhostlocalllmparams", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/internalHostInferenceLocal.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_internalhostinferencelocal", + "target": "apps_electron_vite_project_electron_main_llm_internalhostinferencelocal_runinternalhostlocalllmresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/internalHostInferenceLocal.ts", + "source_location": "L201", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_internalhostinferencelocal", + "target": "apps_electron_vite_project_electron_main_llm_internalhostinferencelocal_runinternalhostollamainference", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/internalHostInferenceLocal.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_internalhostinferencelocal", + "target": "apps_electron_vite_project_electron_main_llm_internalhostinferencelocal_runinternalhostollamaparams", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/internalHostInferenceLocal.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_internalhostinferencelocal", + "target": "apps_electron_vite_project_electron_main_llm_internalhostinferencelocal_runinternalhostollamaresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/internalHostInferenceLocal.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_internalhostinferencelocal", + "target": "apps_electron_vite_project_electron_main_llm_llamachatresponsecontent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/internalHostInferenceLocal.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_internalhostinferencelocal", + "target": "apps_electron_vite_project_electron_main_llm_llamachatresponsecontent_extractllamachatcontent", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/internalHostInferenceLocal.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_internalhostinferencelocal", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/internalHostInferenceLocal.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_internalhostinferencelocal", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/internalHostInferenceLocal.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_internalhostinferencelocal", + "target": "apps_electron_vite_project_electron_main_llm_localmodelidentity", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/internalHostInferenceLocal.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_internalhostinferencelocal", + "target": "apps_electron_vite_project_electron_main_llm_localmodelidentity_canonicallocalmodelname", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/internalHostInferenceLocal.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_internalhostinferencelocal", + "target": "apps_electron_vite_project_electron_main_llm_localmodelidentity_localmodelidsmatch", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/internalHostInferenceLocal.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_internalhostinferencelocal", + "target": "apps_electron_vite_project_electron_main_llm_localmodelidentity_resolvelocalmodelalias", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/internalHostInferenceLocal.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_internalhostinferencelocal_resolvemodelforinternalinference", + "target": "apps_electron_vite_project_electron_main_llm_localmodelidentity_canonicallocalmodelname" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/internalHostInferenceLocal.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_internalhostinferencelocal_resolvemodelforinternalinference", + "target": "apps_electron_vite_project_electron_main_llm_localmodelidentity_localmodelidsmatch" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/internalHostInferenceLocal.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_internalhostinferencelocal_resolvemodelforinternalinference", + "target": "apps_electron_vite_project_electron_main_llm_localmodelidentity_resolvelocalmodelalias" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/internalHostInferenceLocal.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_internalhostinferencelocal_runinternalhostlocalllminference", + "target": "apps_electron_vite_project_electron_main_llm_internalhostinferencelocal_resolvemodelforinternalinference", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/internalHostInferenceLocal.ts", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_internalhostinferencelocal_runinternalhostlocalllminference", + "target": "apps_electron_vite_project_electron_main_llm_llamachatresponsecontent_extractllamachatcontent" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc", + "target": "apps_electron_vite_project_electron_main_llm_ipc_registerllmhandlers", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc", + "target": "apps_electron_vite_project_electron_main_llm_localllmlifecycle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc", + "target": "apps_electron_vite_project_electron_main_llm_localllmlifecycle_ensurelocalllmaftermodelinstall", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc", + "target": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc", + "target": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_fallbackfromlistsandbox", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc", + "target": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_iseffectivesandboxsideforaiexecution", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc", + "target": "apps_electron_vite_project_electron_main_llm_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc", + "target": "apps_electron_vite_project_electron_main_llm_types_chatrequest", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_issandboxmode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc_registerllmhandlers", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L273", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc_registerllmhandlers", + "target": "apps_electron_vite_project_electron_main_llm_localllmlifecycle_ensurelocalllmaftermodelinstall" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L156", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc_registerllmhandlers", + "target": "apps_electron_vite_project_electron_main_llm_localllmserverconfigapi", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L591", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc_registerllmhandlers", + "target": "apps_electron_vite_project_electron_main_llm_modemodelwarmuptrigger", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L527", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc_registerllmhandlers", + "target": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_fallbackfromlistsandbox" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L508", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc_registerllmhandlers", + "target": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_iseffectivesandboxsideforaiexecution" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/ipc.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ipc_registerllmhandlers", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_issandboxmode" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaChatResponseContent.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamachatresponsecontent", + "target": "apps_electron_vite_project_electron_main_llm_llamachatresponsecontent_empty_llm_response_error", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaChatResponseContent.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamachatresponsecontent", + "target": "apps_electron_vite_project_electron_main_llm_llamachatresponsecontent_extractedllamachatcontent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaChatResponseContent.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamachatresponsecontent", + "target": "apps_electron_vite_project_electron_main_llm_llamachatresponsecontent_extractllamachatcontent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaChatResponseContent.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamachatresponsecontent", + "target": "apps_electron_vite_project_electron_main_llm_llamachatresponsecontent_llamachatmessagelike", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_llamachatresponsecontent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_llamachatresponsecontent_extractllamachatcontent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L1088", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_chat", + "target": "apps_electron_vite_project_electron_main_llm_llamachatresponsecontent_extractllamachatcontent" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaContextOverflow.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamacontextoverflow", + "target": "apps_electron_vite_project_electron_main_llm_llamacontextoverflow_contextoverflowdetails", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaContextOverflow.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamacontextoverflow", + "target": "apps_electron_vite_project_electron_main_llm_llamacontextoverflow_isllamacontextoverflowerror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaContextOverflow.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamacontextoverflow", + "target": "apps_electron_vite_project_electron_main_llm_llamacontextoverflow_llamacontextoverflowerror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaContextOverflow.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamacontextoverflow", + "target": "apps_electron_vite_project_electron_main_llm_llamacontextoverflow_parsellamacontextoverflowfrombody", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaContextOverflow.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamacontextoverflow_llamacontextoverflowerror", + "target": "apps_electron_vite_project_electron_main_llm_llamacontextoverflow_llamacontextoverflowerror_constructor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L540", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_buildllamaserverargs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L348", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_computemaxctxforvram", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L322", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_computemaxctxperslotforvram", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L306", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_ctx_absolute_max_tokens", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L305", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_ctx_min_tokens", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L253", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_estimatekvbytespertokenfromggufbuffer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L285", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_estimatekvbytespertokenfromgguffile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_execasync", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_fallback_kv_bytes_per_token", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L511", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_flashattntakesvalue", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_ggufcursor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_ggufkvestimate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_gguftype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L309", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_min_ctx_per_slot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L311", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_parallelcandidates", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L195", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_parseggufkvmetadata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L498", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_parsesupportedflagsfromhelp", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L468", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_querynvidiavramusage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L602", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_readllamaserverhelptext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_readscalar", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L519", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_resolvedspawnplan", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L373", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_resolvespawncontextbudget", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L161", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_skipvalue", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L360", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_spawncontextbudget", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L304", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_vram_headroom_bytes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs", + "target": "apps_electron_vite_project_electron_main_llm_localllmserverconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs", + "target": "apps_electron_vite_project_electron_main_llm_localllmserverconfig_local_llm_ctx_long", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs", + "target": "apps_electron_vite_project_electron_main_llm_localllmserverconfig_local_llm_ctx_standard", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs", + "target": "apps_electron_vite_project_electron_main_llm_localllmserverconfig_localllmserverconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L473", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs_querynvidiavramusage", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_execasync", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L604", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs_readllamaserverhelptext", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_execasync", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs_ggufcursor", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_ggufcursor_constructor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs_ggufcursor", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_ggufcursor_i64", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs_ggufcursor", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_ggufcursor_need", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs_ggufcursor", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_ggufcursor_skip", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs_ggufcursor", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_ggufcursor_str", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs_ggufcursor", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_ggufcursor_u32", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs_ggufcursor", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_ggufcursor_u64", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs_ggufcursor_i64", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_ggufcursor_need", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs_ggufcursor_skip", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_ggufcursor_need", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs_ggufcursor_str", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_ggufcursor_need", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs_ggufcursor_u32", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_ggufcursor_need", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs_ggufcursor_u64", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_ggufcursor_need", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs_readscalar", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_ggufcursor_need", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L205", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs_parseggufkvmetadata", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_ggufcursor_u32", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs_readscalar", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_ggufcursor_u32", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs_skipvalue", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_ggufcursor_u32", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs_ggufcursor_str", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_ggufcursor_u64", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L208", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs_parseggufkvmetadata", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_ggufcursor_u64", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs_readscalar", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_ggufcursor_u64", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs_skipvalue", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_ggufcursor_u64", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs_readscalar", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_ggufcursor_i64", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L184", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs_skipvalue", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_ggufcursor_skip", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L219", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs_parseggufkvmetadata", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_readscalar", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L187", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs_skipvalue", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_readscalar", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L227", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs_parseggufkvmetadata", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_skipvalue", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L254", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs_estimatekvbytespertokenfromggufbuffer", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_parseggufkvmetadata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L293", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs_estimatekvbytespertokenfromgguffile", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_estimatekvbytespertokenfromggufbuffer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_estimatekvbytespertokenfromgguffile", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L492", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_computeserverconfiginsight", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_estimatekvbytespertokenfromgguffile" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L383", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_resolvespawnplan", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_estimatekvbytespertokenfromgguffile" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L416", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs_resolvespawncontextbudget", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_parallelcandidates", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L356", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs_computemaxctxforvram", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_computemaxctxperslotforvram", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L389", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs_resolvespawncontextbudget", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_computemaxctxperslotforvram", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_computemaxctxperslotforvram", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L494", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_computeserverconfiginsight", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_computemaxctxperslotforvram" + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L417", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs_resolvespawncontextbudget", + "target": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_parallel" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_resolvespawncontextbudget", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L374", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_resolvespawnplan", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_resolvespawncontextbudget" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_querynvidiavramusage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L485", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_computeserverconfiginsight", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_querynvidiavramusage" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L381", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_resolvespawnplan", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_querynvidiavramusage" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L547", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs_buildllamaserverargs", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_parsesupportedflagsfromhelp", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts", + "source_location": "L574", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverargs_buildllamaserverargs", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_flashattntakesvalue", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_resolvedspawnplan", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_resolvedspawnplan", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L466", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_getlastspawnplan", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_resolvedspawnplan", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L365", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_resolvespawnplan", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_resolvedspawnplan", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_buildllamaserverargs", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L400", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_resolvespawnplan", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_buildllamaserverargs" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_readllamaserverhelptext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L355", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_getserverhelptext", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverargs_readllamaserverhelptext" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryDownloadAllowlist.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverbinarydownloadallowlist", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverbinarydownloadallowlist_asserthttpsgithubreleaseasseturl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryDownloadAllowlist.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverbinarydownloadallowlist", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverbinarydownloadallowlist_llama_cpp_github_owner_repo", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryDownloadAllowlist.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverbinarydownloadallowlist", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverbinarydownloadallowlist_llama_server_release_allowed_hosts", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverbinarydownloadallowlist", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryDownloadAllowlist.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverbinarydownloadallowlist_asserthttpsgithubreleaseasseturl", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverbinarydownloadallowlist_llama_server_release_allowed_hosts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverbinarydownloadallowlist_llama_cpp_github_owner_repo", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverbinarydownloadallowlist_asserthttpsgithubreleaseasseturl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L282", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_downloadassettotemp", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverbinarydownloadallowlist_asserthttpsgithubreleaseasseturl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_assetpatternforvariant", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_cancelllamaserverbinaryinstall", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L249", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_copyallfilesflatintoroot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_detectrecommendedllamaservervariant", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L274", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_downloadassettotemp", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L189", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_extractzipwindows", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_fetchlatestllamacpprelease", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L144", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_fetchrecentllamacppreleases", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L213", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_findextractedserverbinary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L236", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_flattenintoroot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_getllamaserverbinaryinstallprogress", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_githubrelease", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_githubreleaseasset", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_installdir", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L418", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_installllamaserverbinary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_llamaserverbinaryinstallprogress", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_llamaservervariant", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_pickedreleaseassets", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_pickreleaseassets", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_resolveinstallablerelease", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L320", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_runinstall", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L269", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_setprogress", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L359", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_runinstall", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_installdir", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_resolveinstallablerelease", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_fetchlatestllamacpprelease", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_pickreleaseassets", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_assetpatternforvariant", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L168", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_resolveinstallablerelease", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_pickreleaseassets", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L173", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_resolveinstallablerelease", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_fetchrecentllamacppreleases", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L328", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_runinstall", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_resolveinstallablerelease", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L362", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_runinstall", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_extractzipwindows", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L363", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_runinstall", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_findextractedserverbinary", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L366", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_runinstall", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_flattenintoroot", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L373", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_runinstall", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_copyallfilesflatintoroot", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L304", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_downloadassettotemp", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_setprogress", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L325", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_runinstall", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_setprogress", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L331", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_runinstall", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_downloadassettotemp", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L422", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_installllamaserverbinary", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_runinstall", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts", + "source_location": "L391", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverbinaryinstall_runinstall", + "target": "apps_electron_vite_project_electron_main_llm_localllmlifecycle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerLog.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverlog", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverlog_llamaserverlogpath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerLog.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverlog", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverlog_rotatinglogwriter", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverlog_llamaserverlogpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L445", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_spawnownedserver", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverlog_llamaserverlogpath" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerLog.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverlog_rotatinglogwriter", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverlog_rotatinglogwriter_close", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerLog.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverlog_rotatinglogwriter", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverlog_rotatinglogwriter_constructor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerLog.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverlog_rotatinglogwriter", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverlog_rotatinglogwriter_openstream", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerLog.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverlog_rotatinglogwriter", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverlog_rotatinglogwriter_rotate", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerLog.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverlog_rotatinglogwriter", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverlog_rotatinglogwriter_write", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverlog_rotatinglogwriter", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverlog_rotatinglogwriter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerLog.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverlog_rotatinglogwriter_write", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverlog_rotatinglogwriter_openstream", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamaServerLog.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamaserverlog_rotatinglogwriter_write", + "target": "apps_electron_vite_project_electron_main_llm_llamaserverlog_rotatinglogwriter_rotate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamacppHttpBases.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamacpphttpbases", + "target": "apps_electron_vite_project_electron_main_llm_llamacpphttpbases_collectllamacpphttpbasesfromenv", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamacppHttpBases.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamacpphttpbases", + "target": "apps_electron_vite_project_electron_main_llm_localllmpaths", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamacppHttpBases.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamacpphttpbases", + "target": "apps_electron_vite_project_electron_main_llm_localllmpaths_default_llamacpp_port", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/llamacppHttpBases.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_llamacpphttpbases", + "target": "apps_electron_vite_project_electron_main_llm_localllmpaths_host_ai_default_local_llamacpp_base", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_llamacpphttpbases", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmBulkPrewarm.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmbulkprewarm", + "target": "apps_electron_vite_project_electron_main_llm_llamacpphttpbases", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_llamacpphttpbases_collectllamacpphttpbasesfromenv", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L563", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_collecthttpbases", + "target": "apps_electron_vite_project_electron_main_llm_llamacpphttpbases_collectllamacpphttpbasesfromenv" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmBulkPrewarm.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmbulkprewarm", + "target": "apps_electron_vite_project_electron_main_llm_llamacpphttpbases_collectllamacpphttpbasesfromenv", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_execasync", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L1127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_modelidfromgguffilename", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_openaichatcompletionresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_openaimodelsresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_resolveggufpathformodelid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_localllmbulkprewarm", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_localllmbulkprewarm_notelocalllmactivemodelchangedforbulkprewarm", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_deleteinstalledgguf", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_downloadgguffromallowedurl", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_importgguffromuserpath", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_modelinstallresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_readinstalledmodelsha256", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_localllmpaths", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_localllmpaths_default_llamacpp_port", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_localllmpaths_getlocalllmmodelsdirectory", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_debug_local_llm_runtime_trace", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_localllmruntimegetinflight", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_localllmruntimeinflightdelta", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_localllmruntimelog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_localllmruntimerecordchattiming", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus_buildlocalllmruntimeinfo", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_localllmserverconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_localllmserverconfig_getlocalllmserverconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_localllmserverconfig_local_llm_ctx_standard", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_localmodelidentity", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_localmodelidentity_canonicallocalmodelname", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_localmodelidentity_resolvelocalmodelalias", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_types_chatmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_types_chatresponse", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_types_downloadprogress", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_types_installedmodel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "target": "apps_electron_vite_project_electron_main_llm_types_localllmstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmLifecycle.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmlifecycle", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmProviderStatus.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmproviderstatus", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmServerConfigApi.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmserverconfigapi", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveDeclaredModelAvailability.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolvedeclaredmodelavailability", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/startupWarmup.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_startupwarmup_runhostlocaldefaultmodelwarmup", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/warmModel.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_warmmodel", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/warmupOnServerHealthy.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_warmuponserverhealthy", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_resolvewatchdogeffectivemodelid", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L569", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_runscan", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L677", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_runsmartsummary", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L714", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_getversion", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_execasync", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L820", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_stop", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_execasync", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L734", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_scanggufmodelsondisk", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_modelidfromgguffilename", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_resolveggufpathformodelid", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_modelidfromgguffilename", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L490", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_computeserverconfiginsight", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_resolveggufpathformodelid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L1049", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_deletemodel", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_resolveggufpathformodelid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L315", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_ensuremanagedserverrunning", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_resolveggufpathformodelid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_resolveggufpathformodelid", + "target": "apps_electron_vite_project_electron_main_llm_localllmpaths_getlocalllmmodelsdirectory", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L566", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_applyresolvedbaseurl", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L268", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_attachprocessexithandler", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L1005", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_cancelmodeldownload", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L1057", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_chat", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L690", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_checkinstalled", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L234", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_clearrestarttimer", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L562", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_collecthttpbases", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L479", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_computeserverconfiginsight", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_constructor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L1048", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_deletemodel", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L1026", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_downloadmodelfromurl", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L203", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_enablesupervision", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L299", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_ensuremanagedserverrunning", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L868", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_fetchmodelsinstalledfresh", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L873", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_fetchtagsinstalledmodelsfresh", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L471", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_getappliedctxperslot", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L1114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_getbaseurl", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L1106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_getdownloadprogress", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L948", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_geteffectivechatmodelname", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L466", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_getlastspawnplan", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L1122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_getmodelsdirectory", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L1118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_getport", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L513", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_getrestartstate", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L351", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_getserverhelptext", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L214", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_getspawngeneration", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L829", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_getstatus", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L701", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_getversion", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L1010", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_importmodelfromfile", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L152", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_initializeserverbinarypath", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L932", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_invalidatemodelscache", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L684", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_invalidateprobecache", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L185", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_isbinaryavailable", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L796", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_isrunning", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L782", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_isserverresponding", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L902", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_listmodels", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L877", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_listmodelsraw", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L219", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_noteserverreachability", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L208", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_onserverhealthy", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L748", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_parseopenaimodelsresponse", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L649", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_probecached", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L586", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_probehttpmodelswithlogging", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L632", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_probehttptagswithlogging", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L241", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_prunerestartwindow", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L997", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_pullmodel", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L942", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_refreshserverbinarypath", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L365", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_resolvespawnplan", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L522", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_restartmanagedservergraceful", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L723", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_scanggufmodelsondisk", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L246", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_schedulesupervisedrestart", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L977", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_setactivemodelpreference", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L1110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_setdownloadprogress", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L343", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_shutdownmanagedserver", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L409", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_spawnownedserver", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L774", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_start", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L804", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_stop", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L286", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_waituntilready", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_types_downloadprogress", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "target": "apps_electron_vite_project_electron_main_llm_types_installedmodel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmLifecycle.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmlifecycle", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmProviderStatus.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmproviderstatus", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmServerConfigApi.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmserverconfigapi", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveDeclaredModelAvailability.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolvedeclaredmodelavailability", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/warmModel.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_warmmodel", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/warmupOnServerHealthy.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_warmuponserverhealthy", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_constructor", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_initializeserverbinarypath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L943", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_refreshserverbinarypath", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_initializeserverbinarypath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L691", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_checkinstalled", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_isbinaryavailable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L310", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_ensuremanagedserverrunning", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_isbinaryavailable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L775", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_start", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_enablesupervision", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L306", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_ensuremanagedserverrunning", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_noteserverreachability", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L672", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_probecached", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_noteserverreachability", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L258", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_schedulesupervisedrestart", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_clearrestarttimer", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L345", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_shutdownmanagedserver", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_clearrestarttimer", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L805", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_stop", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_clearrestarttimer", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L248", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_schedulesupervisedrestart", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_prunerestartwindow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L282", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_attachprocessexithandler", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_schedulesupervisedrestart", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L264", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_schedulesupervisedrestart", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_ensuremanagedserverrunning", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L462", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_spawnownedserver", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_attachprocessexithandler", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L325", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_ensuremanagedserverrunning", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_waituntilready", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L289", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_waituntilready", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_isserverresponding", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L314", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_ensuremanagedserverrunning", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_geteffectivechatmodelname", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L333", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_ensuremanagedserverrunning", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_invalidateprobecache", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L304", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_ensuremanagedserverrunning", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_isserverresponding", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L324", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_ensuremanagedserverrunning", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_spawnownedserver", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L551", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_restartmanagedservergraceful", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_ensuremanagedserverrunning", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L776", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_start", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_ensuremanagedserverrunning", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L347", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_shutdownmanagedserver", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_stop", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L369", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_resolvespawnplan", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_getserverhelptext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L366", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_resolvespawnplan", + "target": "apps_electron_vite_project_electron_main_llm_localllmserverconfig_getlocalllmserverconfig" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L415", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_spawnownedserver", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_resolvespawnplan", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L489", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_computeserverconfiginsight", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_geteffectivechatmodelname", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L550", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_restartmanagedservergraceful", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_invalidateprobecache", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L543", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_restartmanagedservergraceful", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_stop", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L535", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_restartmanagedservergraceful", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_localllmruntimegetinflight" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L592", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_probehttpmodelswithlogging", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_collecthttpbases", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L608", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_probehttpmodelswithlogging", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_applyresolvedbaseurl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L665", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_probecached", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_probehttpmodelswithlogging", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L602", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_probehttpmodelswithlogging", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_scanggufmodelsondisk", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L638", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_probehttptagswithlogging", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_probehttpmodelswithlogging", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L695", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_checkinstalled", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_probecached", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L834", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_getstatus", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_probecached", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L800", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_isrunning", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_probecached", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L889", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_listmodelsraw", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_probecached", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L938", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_invalidatemodelscache", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_invalidateprobecache", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L944", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_refreshserverbinarypath", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_invalidateprobecache", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L692", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_checkinstalled", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_scanggufmodelsondisk", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L837", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_getstatus", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_getversion", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L891", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_listmodelsraw", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_scanggufmodelsondisk", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L765", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_parseopenaimodelsresponse", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_scanggufmodelsondisk", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L737", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_scanggufmodelsondisk", + "target": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_readinstalledmodelsha256" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L724", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_scanggufmodelsondisk", + "target": "apps_electron_vite_project_electron_main_llm_localllmpaths_getlocalllmmodelsdirectory" + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L723", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_scanggufmodelsondisk", + "target": "apps_electron_vite_project_electron_main_llm_types_installedmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L895", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_listmodelsraw", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_parseopenaimodelsresponse", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L755", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_parseopenaimodelsresponse", + "target": "apps_electron_vite_project_electron_main_llm_localmodelidentity_canonicallocalmodelname" + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L748", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_parseopenaimodelsresponse", + "target": "apps_electron_vite_project_electron_main_llm_types_installedmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L843", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_getstatus", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_listmodels", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L855", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_getstatus", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus_buildlocalllmruntimeinfo" + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L829", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_getstatus", + "target": "apps_electron_vite_project_electron_main_llm_types_localllmstatus", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L869", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_fetchmodelsinstalledfresh", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_invalidatemodelscache", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L870", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_fetchmodelsinstalledfresh", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_listmodelsraw", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L868", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_fetchmodelsinstalledfresh", + "target": "apps_electron_vite_project_electron_main_llm_types_installedmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L874", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_fetchtagsinstalledmodelsfresh", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_fetchmodelsinstalledfresh", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L873", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_fetchtagsinstalledmodelsfresh", + "target": "apps_electron_vite_project_electron_main_llm_types_installedmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L914", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_listmodels", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_listmodelsraw", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L877", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_listmodelsraw", + "target": "apps_electron_vite_project_electron_main_llm_types_installedmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L949", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_geteffectivechatmodelname", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_listmodels", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L902", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_listmodels", + "target": "apps_electron_vite_project_electron_main_llm_types_installedmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L983", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_setactivemodelpreference", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_listmodels", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L1054", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_deletemodel", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_invalidatemodelscache", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L1041", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_downloadmodelfromurl", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_invalidatemodelscache", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L1022", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_importmodelfromfile", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_invalidatemodelscache", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L993", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_setactivemodelpreference", + "target": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_invalidatemodelscache", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L953", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_geteffectivechatmodelname", + "target": "apps_electron_vite_project_electron_main_llm_localmodelidentity_resolvelocalmodelalias" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L992", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_setactivemodelpreference", + "target": "apps_electron_vite_project_electron_main_llm_localllmbulkprewarm_notelocalllmactivemodelchangedforbulkprewarm" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L997", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_pullmodel", + "target": "apps_electron_vite_project_electron_main_llm_types_downloadprogress", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L1015", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_importmodelfromfile", + "target": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_importgguffromuserpath" + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L1010", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_importmodelfromfile", + "target": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_modelinstallresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L1010", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_importmodelfromfile", + "target": "apps_electron_vite_project_electron_main_llm_types_downloadprogress", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L1034", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_downloadmodelfromurl", + "target": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_downloadgguffromallowedurl" + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L1026", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_downloadmodelfromurl", + "target": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_modelinstallresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L1026", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_downloadmodelfromurl", + "target": "apps_electron_vite_project_electron_main_llm_types_downloadprogress", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L1053", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_deletemodel", + "target": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_deleteinstalledgguf" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L1066", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_chat", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_localllmruntimeinflightdelta" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L1096", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_chat", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_localllmruntimerecordchattiming" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L1057", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_chat", + "target": "apps_electron_vite_project_electron_main_llm_types_chatmessage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L1057", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_chat", + "target": "apps_electron_vite_project_electron_main_llm_types_chatresponse", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L1106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_getdownloadprogress", + "target": "apps_electron_vite_project_electron_main_llm_types_downloadprogress", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L1110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_setdownloadprogress", + "target": "apps_electron_vite_project_electron_main_llm_types_downloadprogress", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts", + "source_location": "L1123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_local_llm_manager_localllmmanager_getmodelsdirectory", + "target": "apps_electron_vite_project_electron_main_llm_localllmpaths_getlocalllmmodelsdirectory" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmBulkPrewarm.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmbulkprewarm", + "target": "apps_electron_vite_project_electron_main_llm_localllmbulkprewarm_lastprewarmatbymodel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmBulkPrewarm.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmbulkprewarm", + "target": "apps_electron_vite_project_electron_main_llm_localllmbulkprewarm_localllmbulkprewarmdiag", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmBulkPrewarm.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmbulkprewarm", + "target": "apps_electron_vite_project_electron_main_llm_localllmbulkprewarm_maybeprewarmlocalllmforbulkclassify", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmBulkPrewarm.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmbulkprewarm", + "target": "apps_electron_vite_project_electron_main_llm_localllmbulkprewarm_notelocalllmactivemodelchangedforbulkprewarm", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmBulkPrewarm.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmbulkprewarm", + "target": "apps_electron_vite_project_electron_main_llm_localllmpaths", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmBulkPrewarm.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmbulkprewarm", + "target": "apps_electron_vite_project_electron_main_llm_localllmpaths_default_llamacpp_port", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmLifecycle.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmlifecycle", + "target": "apps_electron_vite_project_electron_main_llm_localllmlifecycle_ensurelocalllmaftermodelinstall", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmLifecycle.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmlifecycle", + "target": "apps_electron_vite_project_electron_main_llm_localllmlifecycle_inithostlocalllmlifecycle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmLifecycle.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmlifecycle", + "target": "apps_electron_vite_project_electron_main_llm_localllmlifecycle_localllmlifecycleinitresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmLifecycle.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmlifecycle", + "target": "apps_electron_vite_project_electron_main_llm_localllmlifecycle_shutdownhostlocalllmlifecycle", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmLifecycle.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmlifecycle", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmLifecycle.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmlifecycle", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_issandboxmode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmLifecycle.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmlifecycle_inithostlocalllmlifecycle", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_issandboxmode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmLifecycle.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmlifecycle_shutdownhostlocalllmlifecycle", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_issandboxmode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmLifecycle.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmlifecycle_ensurelocalllmaftermodelinstall", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_issandboxmode" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L156", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall", + "target": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_abortablesleep", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L186", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall", + "target": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_attemptrangedownload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall", + "target": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_cleanupforeignpartfiles", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L402", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall", + "target": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_deleteinstalledgguf", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall", + "target": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_destpathforfilename", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall", + "target": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_discardpart", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall", + "target": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_download_retry_backoff_ms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L305", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall", + "target": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_downloadgguffromallowedurl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall", + "target": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_downloadstallederror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall", + "target": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_ensuremodelsdir", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall", + "target": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_finalizeggufimport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall", + "target": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_importgguffromuserpath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall", + "target": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_modelidfromgguffilename", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall", + "target": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_modelinstallresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall", + "target": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_partmeta", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall", + "target": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_partmetapathfor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall", + "target": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_partpathfor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L398", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall", + "target": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_readinstalledmodelsha256", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall", + "target": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_readpartmeta", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L151", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall", + "target": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_totalfromcontentrange", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall", + "target": "apps_electron_vite_project_electron_main_llm_localllmpaths", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall", + "target": "apps_electron_vite_project_electron_main_llm_localllmpaths_getlocalllmmodelsdirectory", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall", + "target": "apps_electron_vite_project_electron_main_llm_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall", + "target": "apps_electron_vite_project_electron_main_llm_types_downloadprogress", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L317", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_downloadgguffromallowedurl", + "target": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_modelidfromgguffilename", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_finalizeggufimport", + "target": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_modelidfromgguffilename", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_importgguffromuserpath", + "target": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_modelidfromgguffilename", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_destpathforfilename", + "target": "apps_electron_vite_project_electron_main_llm_localllmpaths_getlocalllmmodelsdirectory", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L319", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_downloadgguffromallowedurl", + "target": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_destpathforfilename", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_importgguffromuserpath", + "target": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_destpathforfilename", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L318", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_downloadgguffromallowedurl", + "target": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_ensuremodelsdir", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_ensuremodelsdir", + "target": "apps_electron_vite_project_electron_main_llm_localllmpaths_getlocalllmmodelsdirectory", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_importgguffromuserpath", + "target": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_ensuremodelsdir", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_importgguffromuserpath", + "target": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_finalizeggufimport", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L328", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_downloadgguffromallowedurl", + "target": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_partpathfor", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_partmetapathfor", + "target": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_partpathfor", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L329", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_downloadgguffromallowedurl", + "target": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_partmetapathfor", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_attemptrangedownload", + "target": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_readpartmeta", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_cleanupforeignpartfiles", + "target": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_readpartmeta", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L202", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_attemptrangedownload", + "target": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_discardpart", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_cleanupforeignpartfiles", + "target": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_discardpart", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L393", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_downloadgguffromallowedurl", + "target": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_discardpart", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L335", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_downloadgguffromallowedurl", + "target": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_cleanupforeignpartfiles", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L238", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_attemptrangedownload", + "target": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_totalfromcontentrange", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L373", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_downloadgguffromallowedurl", + "target": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_abortablesleep", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_downloadstallederror", + "target": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_downloadstallederror_constructor", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts", + "source_location": "L346", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_downloadgguffromallowedurl", + "target": "apps_electron_vite_project_electron_main_llm_localllmmodelinstall_attemptrangedownload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmPaths.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmpaths", + "target": "apps_electron_vite_project_electron_main_llm_localllmpaths_default_llamacpp_port", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmPaths.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmpaths", + "target": "apps_electron_vite_project_electron_main_llm_localllmpaths_getlocalllmmodelsdirectory", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmPaths.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmpaths", + "target": "apps_electron_vite_project_electron_main_llm_localllmpaths_host_ai_default_local_llamacpp_base", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext", + "target": "apps_electron_vite_project_electron_main_llm_localllmpaths", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext", + "target": "apps_electron_vite_project_electron_main_llm_localllmpaths_host_ai_default_local_llamacpp_base", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmProviderStatus.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmproviderstatus", + "target": "apps_electron_vite_project_electron_main_llm_localllmproviderstatus_getlocalllmproviderstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmProviderStatus.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmproviderstatus", + "target": "apps_electron_vite_project_electron_main_llm_localllmproviderstatus_localllmproviderstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmProviderStatus.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmproviderstatus", + "target": "apps_electron_vite_project_electron_main_llm_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmProviderStatus.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmproviderstatus", + "target": "apps_electron_vite_project_electron_main_llm_types_installedmodel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_batchscope", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_debug_local_llm_runtime_trace", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_debug_ollama_runtime_trace", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_localllmclassifybatchchunkdiag", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_localllmruntimebeginbatch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L151", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_localllmruntimeendbatch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_localllmruntimegetbatchscope", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_localllmruntimegetinflight", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_localllmruntimeinflightdelta", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_localllmruntimelog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_localllmruntimeobservedwarmmodel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_localllmruntimerecordchattiming", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_localllmruntimerequesttrace", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_localllmruntimesetbatchscope", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_localllmruntimeshouldtrackbatch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_nstoms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_ollamaclassifybatchchunkdiag", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_ollamaruntimebeginbatch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L176", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_ollamaruntimeendbatch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_ollamaruntimegetbatchscope", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_ollamaruntimegetinflight", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_ollamaruntimeinflightdelta", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_ollamaruntimelog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_ollamaruntimeobservedwarmmodel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_ollamaruntimerecordchattiming", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_ollamaruntimerequesttrace", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_ollamaruntimesetbatchscope", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_ollamaruntimeshouldtrackbatch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_touchbatchmaxinflight", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_trackbatchscope", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeStatus.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeStatus.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_debug_local_llm_runtime_trace", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L137", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_localllmruntimebeginbatch", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_trackbatchscope", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_localllmruntimeshouldtrackbatch", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_trackbatchscope", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_localllmruntimeinflightdelta", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_touchbatchmaxinflight", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L156", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_localllmruntimeendbatch", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_localllmruntimelog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeStatus.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_localllmruntimelog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeStatus.ts", + "source_location": "L219", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus_buildlocalllmruntimeinfo", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_localllmruntimelog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_localllmruntimerecordchattiming", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_nstoms", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeStatus.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_localllmruntimeobservedwarmmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeStatus.ts", + "source_location": "L229", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus_buildlocalllmruntimeinfo", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimediagnostics_localllmruntimeobservedwarmmodel" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeStatus.ts", + "source_location": "L207", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus_buildlocalllmruntimeinfo", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeStatus.ts", + "source_location": "L144", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus_buildsummaryandevidence", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeStatus.ts", + "source_location": "L188", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus_classifylocalllmruntime", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeStatus.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus_detectgpuhintsuncached", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeStatus.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus_execasync", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeStatus.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus_execopts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeStatus.ts", + "source_location": "L137", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus_getgpuaccelerationhintscached", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeStatus.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus_gpuhints", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeStatus.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus_parsepowershellvideocontrollernames", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeStatus.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus_trynvidiasmi", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeStatus.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus", + "target": "apps_electron_vite_project_electron_main_llm_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeStatus.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus", + "target": "apps_electron_vite_project_electron_main_llm_types_localllmruntimeclassification", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeStatus.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus", + "target": "apps_electron_vite_project_electron_main_llm_types_localllmruntimeinfo", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeStatus.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus_detectgpuhintsuncached", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus_execasync", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeStatus.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus_trynvidiasmi", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus_execasync", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeStatus.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus_detectgpuhintsuncached", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus_execopts", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeStatus.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus_trynvidiasmi", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus_execopts", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeStatus.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus_detectgpuhintsuncached", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus_parsepowershellvideocontrollernames", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeStatus.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus_detectgpuhintsuncached", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus_trynvidiasmi", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeStatus.ts", + "source_location": "L139", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus_getgpuaccelerationhintscached", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus_detectgpuhintsuncached", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeStatus.ts", + "source_location": "L228", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus_buildlocalllmruntimeinfo", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus_getgpuaccelerationhintscached", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeStatus.ts", + "source_location": "L232", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus_buildlocalllmruntimeinfo", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus_buildsummaryandevidence", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmRuntimeStatus.ts", + "source_location": "L230", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus_buildlocalllmruntimeinfo", + "target": "apps_electron_vite_project_electron_main_llm_localllmruntimestatus_classifylocalllmruntime", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmServerConfig.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmserverconfig", + "target": "apps_electron_vite_project_electron_main_llm_localllmserverconfig_ctxtokensformode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmServerConfig.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmserverconfig", + "target": "apps_electron_vite_project_electron_main_llm_localllmserverconfig_default_local_llm_server_config", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmServerConfig.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmserverconfig", + "target": "apps_electron_vite_project_electron_main_llm_localllmserverconfig_getlocalllmserverconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmServerConfig.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmserverconfig", + "target": "apps_electron_vite_project_electron_main_llm_localllmserverconfig_local_llm_ctx_long", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmServerConfig.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmserverconfig", + "target": "apps_electron_vite_project_electron_main_llm_localllmserverconfig_local_llm_ctx_standard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmServerConfig.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmserverconfig", + "target": "apps_electron_vite_project_electron_main_llm_localllmserverconfig_localllmctxmode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmServerConfig.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmserverconfig", + "target": "apps_electron_vite_project_electron_main_llm_localllmserverconfig_localllmserverconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmServerConfig.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmserverconfig", + "target": "apps_electron_vite_project_electron_main_llm_localllmserverconfig_sanitizelocalllmserverconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmServerConfig.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmserverconfig", + "target": "apps_electron_vite_project_electron_main_llm_localllmserverconfig_setlocalllmserverconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmServerConfig.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmserverconfig", + "target": "apps_electron_vite_project_electron_main_llm_localllmserverconfig_storepath", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmServerConfigApi.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmserverconfigapi", + "target": "apps_electron_vite_project_electron_main_llm_localllmserverconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmServerConfigApi.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmserverconfigapi", + "target": "apps_electron_vite_project_electron_main_llm_localllmserverconfig_localllmserverconfig", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmServerConfigApi.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmserverconfigapi_localllmserverconfigview", + "target": "apps_electron_vite_project_electron_main_llm_localllmserverconfig_localllmserverconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmServerConfigApi.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmserverconfigapi", + "target": "apps_electron_vite_project_electron_main_llm_localllmserverconfig_local_llm_ctx_standard", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmServerConfigApi.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmserverconfigapi", + "target": "apps_electron_vite_project_electron_main_llm_localllmserverconfig_local_llm_ctx_long", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmServerConfig.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmserverconfig_getlocalllmserverconfig", + "target": "apps_electron_vite_project_electron_main_llm_localllmserverconfig_sanitizelocalllmserverconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmServerConfig.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmserverconfig_setlocalllmserverconfig", + "target": "apps_electron_vite_project_electron_main_llm_localllmserverconfig_sanitizelocalllmserverconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmServerConfig.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmserverconfig_getlocalllmserverconfig", + "target": "apps_electron_vite_project_electron_main_llm_localllmserverconfig_storepath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmServerConfig.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmserverconfig_setlocalllmserverconfig", + "target": "apps_electron_vite_project_electron_main_llm_localllmserverconfig_storepath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmServerConfig.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmserverconfig_setlocalllmserverconfig", + "target": "apps_electron_vite_project_electron_main_llm_localllmserverconfig_getlocalllmserverconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmServerConfigApi.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmserverconfigapi", + "target": "apps_electron_vite_project_electron_main_llm_localllmserverconfig_getlocalllmserverconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmServerConfigApi.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmserverconfigapi_getlocalllmserverconfigview", + "target": "apps_electron_vite_project_electron_main_llm_localllmserverconfig_getlocalllmserverconfig" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmServerConfigApi.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmserverconfigapi", + "target": "apps_electron_vite_project_electron_main_llm_localllmserverconfig_setlocalllmserverconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmServerConfigApi.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmserverconfigapi_applylocalllmserverconfigpatch", + "target": "apps_electron_vite_project_electron_main_llm_localllmserverconfig_setlocalllmserverconfig" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmServerConfigApi.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmserverconfigapi", + "target": "apps_electron_vite_project_electron_main_llm_localllmserverconfigapi_applylocalllmserverconfigpatch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmServerConfigApi.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmserverconfigapi", + "target": "apps_electron_vite_project_electron_main_llm_localllmserverconfigapi_getlocalllmserverconfigview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmServerConfigApi.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmserverconfigapi", + "target": "apps_electron_vite_project_electron_main_llm_localllmserverconfigapi_localllmserverconfigview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localLlmServerConfigApi.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localllmserverconfigapi", + "target": "apps_electron_vite_project_electron_main_llm_localllmserverconfigapi_restartlocalllmserverforsettings", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localModelIdentity.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localmodelidentity", + "target": "apps_electron_vite_project_electron_main_llm_localmodelidentity_canonicallocalmodelname", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localModelIdentity.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localmodelidentity", + "target": "apps_electron_vite_project_electron_main_llm_localmodelidentity_dedupecanonicalmodelnames", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localModelIdentity.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localmodelidentity", + "target": "apps_electron_vite_project_electron_main_llm_localmodelidentity_localmodelidsmatch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localModelIdentity.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localmodelidentity", + "target": "apps_electron_vite_project_electron_main_llm_localmodelidentity_resolvelocalmodelalias", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localModelIdentity.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localmodelidentity_dedupecanonicalmodelnames", + "target": "apps_electron_vite_project_electron_main_llm_localmodelidentity_canonicallocalmodelname", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localModelIdentity.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localmodelidentity_localmodelidsmatch", + "target": "apps_electron_vite_project_electron_main_llm_localmodelidentity_canonicallocalmodelname", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/localModelIdentity.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_localmodelidentity_resolvelocalmodelalias", + "target": "apps_electron_vite_project_electron_main_llm_localmodelidentity_canonicallocalmodelname", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/modeModelWarmupTrigger.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_modemodelwarmuptrigger", + "target": "apps_electron_vite_project_electron_main_llm_modemodelwarmuptrigger_modewarmtrigger", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/modeModelWarmupTrigger.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_modemodelwarmuptrigger", + "target": "apps_electron_vite_project_electron_main_llm_modemodelwarmuptrigger_runmodemodelwarmontrigger", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/modeModelWarmupTrigger.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_modemodelwarmuptrigger", + "target": "apps_electron_vite_project_electron_main_llm_modemodelwarmuptrigger_schedulemodemodelwarmontrigger", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/modeModelWarmupTrigger.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_modemodelwarmuptrigger", + "target": "apps_electron_vite_project_electron_main_llm_resolvedeclaredmodelavailability", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/modeModelWarmupTrigger.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_modemodelwarmuptrigger", + "target": "apps_electron_vite_project_electron_main_llm_resolvedeclaredmodelavailability_resolvedeclaredlocalollamamodel", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/modeModelWarmupTrigger.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_modemodelwarmuptrigger", + "target": "apps_electron_vite_project_electron_main_llm_warmmodel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/modeModelWarmupTrigger.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_modemodelwarmuptrigger", + "target": "apps_electron_vite_project_electron_main_llm_warmmodel_warmmodel", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/modeModelWarmupTrigger.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_modemodelwarmuptrigger", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/modeModelWarmupTrigger.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_modemodelwarmuptrigger", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_iseffectivesandboxnode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/modeModelWarmupTrigger.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_modemodelwarmuptrigger_schedulemodemodelwarmontrigger", + "target": "apps_electron_vite_project_electron_main_llm_modemodelwarmuptrigger_runmodemodelwarmontrigger", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/modeModelWarmupTrigger.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_modemodelwarmuptrigger_runmodemodelwarmontrigger", + "target": "apps_electron_vite_project_electron_main_llm_resolvedeclaredmodelavailability_resolvedeclaredlocalollamamodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/modeModelWarmupTrigger.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_modemodelwarmuptrigger_runmodemodelwarmontrigger", + "target": "apps_electron_vite_project_electron_main_llm_warmmodel_warmmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/modeModelWarmupTrigger.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_modemodelwarmuptrigger_runmodemodelwarmontrigger", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_iseffectivesandboxnode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ollamaEmbeddingCapability.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ollamaembeddingcapability", + "target": "apps_electron_vite_project_electron_main_llm_ollamaembeddingcapability_aimodelcapability", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ollamaEmbeddingCapability.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ollamaembeddingcapability", + "target": "apps_electron_vite_project_electron_main_llm_ollamaembeddingcapability_fetchollamainstalledmodelnames", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ollamaEmbeddingCapability.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ollamaembeddingcapability", + "target": "apps_electron_vite_project_electron_main_llm_ollamaembeddingcapability_findinstalledexact", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ollamaEmbeddingCapability.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ollamaembeddingcapability", + "target": "apps_electron_vite_project_electron_main_llm_ollamaembeddingcapability_islikelyollamaembeddingmodel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ollamaEmbeddingCapability.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ollamaembeddingcapability", + "target": "apps_electron_vite_project_electron_main_llm_ollamaembeddingcapability_normalizeollamamodelbasename", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ollamaEmbeddingCapability.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ollamaembeddingcapability", + "target": "apps_electron_vite_project_electron_main_llm_ollamaembeddingcapability_pickembeddingmodelfortags", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ollamaEmbeddingCapability.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ollamaembeddingcapability", + "target": "apps_electron_vite_project_electron_main_llm_ollamaembeddingcapability_resolveollamaembeddingatbaseurl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ollamaEmbeddingCapability.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ollamaembeddingcapability", + "target": "apps_electron_vite_project_electron_main_llm_ollamaembeddingcapability_resolveollamaembeddinginput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ollamaEmbeddingCapability.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ollamaembeddingcapability", + "target": "apps_electron_vite_project_electron_main_llm_ollamaembeddingcapability_tagsrow", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ollamaEmbeddingCapability.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ollamaembeddingcapability", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ollamaEmbeddingCapability.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ollamaembeddingcapability", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_bareollamamodelnameforapi", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ollamaEmbeddingCapability.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ollamaembeddingcapability_resolveollamaembeddingatbaseurl", + "target": "apps_electron_vite_project_electron_main_llm_ollamaembeddingcapability_fetchollamainstalledmodelnames", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ollamaEmbeddingCapability.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ollamaembeddingcapability_findinstalledexact", + "target": "apps_electron_vite_project_electron_main_llm_ollamaembeddingcapability_normalizeollamamodelbasename", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ollamaEmbeddingCapability.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ollamaembeddingcapability_islikelyollamaembeddingmodel", + "target": "apps_electron_vite_project_electron_main_llm_ollamaembeddingcapability_normalizeollamamodelbasename", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/electron-vite-project/electron/main/llm/ollamaEmbeddingCapability.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ollamaembeddingcapability_pickembeddingmodelfortags", + "target": "apps_electron_vite_project_electron_main_llm_ollamaembeddingcapability_islikelyollamaembeddingmodel", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ollamaEmbeddingCapability.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ollamaembeddingcapability_pickembeddingmodelfortags", + "target": "apps_electron_vite_project_electron_main_llm_ollamaembeddingcapability_findinstalledexact", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ollamaEmbeddingCapability.ts", + "source_location": "L134", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ollamaembeddingcapability_resolveollamaembeddingatbaseurl", + "target": "apps_electron_vite_project_electron_main_llm_ollamaembeddingcapability_findinstalledexact", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/ollamaEmbeddingCapability.ts", + "source_location": "L137", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ollamaembeddingcapability_resolveollamaembeddingatbaseurl", + "target": "apps_electron_vite_project_electron_main_llm_ollamaembeddingcapability_pickembeddingmodelfortags", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/ollamaEmbeddingCapability.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_ollamaembeddingcapability_resolveollamaembeddingatbaseurl", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_bareollamamodelnameforapi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/openAiSseChatStream.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_openaissechatstream", + "target": "apps_electron_vite_project_electron_main_llm_openaissechatstream_openaichatcompletionssseparseresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/openAiSseChatStream.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_openaissechatstream", + "target": "apps_electron_vite_project_electron_main_llm_openaissechatstream_parseopenaichatcompletionssseline", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext", + "target": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_enrichollamadirectbase", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext", + "target": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_fallbackfromlistsandbox", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext", + "target": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_host_sealed_target_unavailable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L263", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext", + "target": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_iseffectivesandboxsideforaiexecution", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext", + "target": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_logmodelselectiondecision", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext", + "target": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_no_ai_model_selected", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext", + "target": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_preferredmodelfrompeerollamaroster", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L271", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext", + "target": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_resolveaiexecutioncontextforllm", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext", + "target": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_rowmodelname", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L234", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext", + "target": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_trylocalcontext", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_issandboxmode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/startupWarmup.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_startupwarmup", + "target": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/warmupOnServerHealthy.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_warmuponserverhealthy", + "target": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_fallbackfromlistsandbox", + "target": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_preferredmodelfrompeerollamaroster", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L156", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_fallbackfromlistsandbox", + "target": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_enrichollamadirectbase", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L277", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_resolveaiexecutioncontextforllm", + "target": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_enrichollamadirectbase", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_fallbackfromlistsandbox", + "target": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_rowmodelname", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_fallbackfromlistsandbox", + "target": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_logmodelselectiondecision", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L300", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_resolveaiexecutioncontextforllm", + "target": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_logmodelselectiondecision", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L291", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_resolveaiexecutioncontextforllm", + "target": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_fallbackfromlistsandbox", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L282", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_resolveaiexecutioncontextforllm", + "target": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_trylocalcontext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L267", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_iseffectivesandboxsideforaiexecution", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L266", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_iseffectivesandboxsideforaiexecution", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L264", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_iseffectivesandboxsideforaiexecution", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_issandboxmode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts", + "source_location": "L280", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_resolveaiexecutioncontextforllm", + "target": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_iseffectivesandboxsideforaiexecution", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/startupWarmup.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_startupwarmup", + "target": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_resolveaiexecutioncontextforllm", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/startupWarmup.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_startupwarmup_runhostlocaldefaultmodelwarmup", + "target": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_resolveaiexecutioncontextforllm", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/warmupOnServerHealthy.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_warmuponserverhealthy", + "target": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_resolveaiexecutioncontextforllm", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/warmupOnServerHealthy.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_warmuponserverhealthy_runwarmupforgeneration", + "target": "apps_electron_vite_project_electron_main_llm_resolveaiexecutioncontext_resolveaiexecutioncontextforllm", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveDeclaredModelAvailability.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolvedeclaredmodelavailability", + "target": "apps_electron_vite_project_electron_main_llm_resolvedeclaredmodelavailability_declaredmodelresolution", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveDeclaredModelAvailability.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolvedeclaredmodelavailability", + "target": "apps_electron_vite_project_electron_main_llm_resolvedeclaredmodelavailability_isollamamodelinstalled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveDeclaredModelAvailability.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolvedeclaredmodelavailability", + "target": "apps_electron_vite_project_electron_main_llm_resolvedeclaredmodelavailability_logmodelfallbackline", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveDeclaredModelAvailability.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolvedeclaredmodelavailability", + "target": "apps_electron_vite_project_electron_main_llm_resolvedeclaredmodelavailability_modelfallbackreason", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveDeclaredModelAvailability.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolvedeclaredmodelavailability", + "target": "apps_electron_vite_project_electron_main_llm_resolvedeclaredmodelavailability_modelfallbackwire", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveDeclaredModelAvailability.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolvedeclaredmodelavailability", + "target": "apps_electron_vite_project_electron_main_llm_resolvedeclaredmodelavailability_resolvedeclaredlocalollamamodel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveDeclaredModelAvailability.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolvedeclaredmodelavailability", + "target": "apps_electron_vite_project_electron_main_llm_resolvedeclaredmodelavailability_tomodelfallbackwire", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveDeclaredModelAvailability.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolvedeclaredmodelavailability_resolvedeclaredlocalollamamodel", + "target": "apps_electron_vite_project_electron_main_llm_resolvedeclaredmodelavailability_isollamamodelinstalled", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/resolveDeclaredModelAvailability.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_resolvedeclaredmodelavailability_resolvedeclaredlocalollamamodel", + "target": "apps_electron_vite_project_electron_main_llm_resolvedeclaredmodelavailability_logmodelfallbackline", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/rotating-logger.ts", + "source_location": "L142", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_rotating_logger", + "target": "apps_electron_vite_project_electron_main_llm_rotating_logger_ollamalogger", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/rotating-logger.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_rotating_logger", + "target": "apps_electron_vite_project_electron_main_llm_rotating_logger_rotatinglogger", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/rotating-logger.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_rotating_logger_rotatinglogger", + "target": "apps_electron_vite_project_electron_main_llm_rotating_logger_rotatinglogger_checkrotation", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/rotating-logger.ts", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_rotating_logger_rotatinglogger", + "target": "apps_electron_vite_project_electron_main_llm_rotating_logger_rotatinglogger_close", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/rotating-logger.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_rotating_logger_rotatinglogger", + "target": "apps_electron_vite_project_electron_main_llm_rotating_logger_rotatinglogger_constructor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/rotating-logger.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_rotating_logger_rotatinglogger", + "target": "apps_electron_vite_project_electron_main_llm_rotating_logger_rotatinglogger_getlogpath", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/rotating-logger.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_rotating_logger_rotatinglogger", + "target": "apps_electron_vite_project_electron_main_llm_rotating_logger_rotatinglogger_initializestream", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/rotating-logger.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_rotating_logger_rotatinglogger", + "target": "apps_electron_vite_project_electron_main_llm_rotating_logger_rotatinglogger_log", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/rotating-logger.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_rotating_logger_rotatinglogger", + "target": "apps_electron_vite_project_electron_main_llm_rotating_logger_rotatinglogger_rotate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/rotating-logger.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_rotating_logger_rotatinglogger_constructor", + "target": "apps_electron_vite_project_electron_main_llm_rotating_logger_rotatinglogger_initializestream", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/rotating-logger.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_rotating_logger_rotatinglogger_rotate", + "target": "apps_electron_vite_project_electron_main_llm_rotating_logger_rotatinglogger_initializestream", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/rotating-logger.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_rotating_logger_rotatinglogger_log", + "target": "apps_electron_vite_project_electron_main_llm_rotating_logger_rotatinglogger_checkrotation", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/rotating-logger.ts", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_rotating_logger_rotatinglogger_rotate", + "target": "apps_electron_vite_project_electron_main_llm_rotating_logger_rotatinglogger_log", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/rotating-logger.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_rotating_logger_rotatinglogger_checkrotation", + "target": "apps_electron_vite_project_electron_main_llm_rotating_logger_rotatinglogger_rotate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/startupWarmup.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_startupwarmup", + "target": "apps_electron_vite_project_electron_main_llm_startupwarmup_resetstartupwarmupschedulefortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/startupWarmup.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_startupwarmup", + "target": "apps_electron_vite_project_electron_main_llm_startupwarmup_runhostlocaldefaultmodelwarmup", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/startupWarmup.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_startupwarmup", + "target": "apps_electron_vite_project_electron_main_llm_startupwarmup_runsandboxsealedstartupwarmupplaceholder", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/startupWarmup.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_startupwarmup", + "target": "apps_electron_vite_project_electron_main_llm_startupwarmup_runstartupwarmup", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/startupWarmup.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_startupwarmup", + "target": "apps_electron_vite_project_electron_main_llm_startupwarmup_schedulestartupwarmup", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/startupWarmup.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_startupwarmup", + "target": "apps_electron_vite_project_electron_main_llm_startupwarmup_startupwarmupcontext", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/startupWarmup.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_startupwarmup", + "target": "apps_electron_vite_project_electron_main_llm_warmmodel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/startupWarmup.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_startupwarmup", + "target": "apps_electron_vite_project_electron_main_llm_warmmodel_warmmodel", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/startupWarmup.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_startupwarmup", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/startupWarmup.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_startupwarmup", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_iseffectivesandboxnode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/startupWarmup.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_startupwarmup_schedulestartupwarmup", + "target": "apps_electron_vite_project_electron_main_llm_startupwarmup_runstartupwarmup", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/startupWarmup.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_startupwarmup_runstartupwarmup", + "target": "apps_electron_vite_project_electron_main_llm_startupwarmup_runhostlocaldefaultmodelwarmup", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/startupWarmup.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_startupwarmup_runstartupwarmup", + "target": "apps_electron_vite_project_electron_main_llm_startupwarmup_runsandboxsealedstartupwarmupplaceholder", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/startupWarmup.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_startupwarmup_runstartupwarmup", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_iseffectivesandboxnode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/startupWarmup.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_startupwarmup_runhostlocaldefaultmodelwarmup", + "target": "apps_electron_vite_project_electron_main_llm_warmmodel_warmmodel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/types.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_types", + "target": "apps_electron_vite_project_electron_main_llm_types_chatmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/types.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_types", + "target": "apps_electron_vite_project_electron_main_llm_types_chatrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/types.ts", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_types", + "target": "apps_electron_vite_project_electron_main_llm_types_chatresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/types.ts", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_types", + "target": "apps_electron_vite_project_electron_main_llm_types_downloadprogress", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/types.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_types", + "target": "apps_electron_vite_project_electron_main_llm_types_hardwareinfo", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/types.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_types", + "target": "apps_electron_vite_project_electron_main_llm_types_installedmodel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/types.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_types", + "target": "apps_electron_vite_project_electron_main_llm_types_llmconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/types.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_types", + "target": "apps_electron_vite_project_electron_main_llm_types_llmmodelconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/types.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_types", + "target": "apps_electron_vite_project_electron_main_llm_types_localllmruntimeclassification", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/types.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_types", + "target": "apps_electron_vite_project_electron_main_llm_types_localllmruntimeinfo", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/types.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_types", + "target": "apps_electron_vite_project_electron_main_llm_types_localllmstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/types.ts", + "source_location": "L151", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_types", + "target": "apps_electron_vite_project_electron_main_llm_types_modelperformanceestimate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/types.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_types", + "target": "apps_electron_vite_project_electron_main_llm_types_modeltier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/types.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_types", + "target": "apps_electron_vite_project_electron_main_llm_types_ostype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/types.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_types", + "target": "apps_electron_vite_project_electron_main_llm_types_performanceestimate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice", + "target": "apps_electron_vite_project_electron_main_llm_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice", + "target": "apps_electron_vite_project_electron_main_llm_types_chatmessage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L442", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_buildsummaryprompt", + "target": "apps_electron_vite_project_electron_main_llm_types_chatmessage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L410", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_buildwatchdogprompt", + "target": "apps_electron_vite_project_electron_main_llm_types_chatmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/warmModel.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_warmmodel", + "target": "apps_electron_vite_project_electron_main_llm_warmmodel_waitforlocalllmrunning", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/warmModel.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_warmmodel", + "target": "apps_electron_vite_project_electron_main_llm_warmmodel_warmmodel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/warmModel.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_warmmodel", + "target": "apps_electron_vite_project_electron_main_llm_warmmodel_warmmodelresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/warmModel.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_warmmodel", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/warmModel.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_warmmodel", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_iseffectivesandboxnode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/warmupOnServerHealthy.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_warmuponserverhealthy", + "target": "apps_electron_vite_project_electron_main_llm_warmmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/warmModel.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_warmmodel_warmmodel", + "target": "apps_electron_vite_project_electron_main_llm_warmmodel_waitforlocalllmrunning", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/warmModel.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_warmmodel_warmmodel", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_iseffectivesandboxnode" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/warmupOnServerHealthy.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_warmuponserverhealthy", + "target": "apps_electron_vite_project_electron_main_llm_warmmodel_warmmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/warmupOnServerHealthy.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_warmuponserverhealthy_runwarmupforgeneration", + "target": "apps_electron_vite_project_electron_main_llm_warmmodel_warmmodel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/warmupOnServerHealthy.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_warmuponserverhealthy", + "target": "apps_electron_vite_project_electron_main_llm_warmuponserverhealthy_initwarmuponserverhealthy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/warmupOnServerHealthy.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_warmuponserverhealthy", + "target": "apps_electron_vite_project_electron_main_llm_warmuponserverhealthy_resetwarmuponserverhealthyfortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/warmupOnServerHealthy.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_warmuponserverhealthy", + "target": "apps_electron_vite_project_electron_main_llm_warmuponserverhealthy_runwarmupforgeneration", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/warmupOnServerHealthy.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_warmuponserverhealthy", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/warmupOnServerHealthy.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_warmuponserverhealthy", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_iseffectivesandboxnode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/llm/warmupOnServerHealthy.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_warmuponserverhealthy_initwarmuponserverhealthy", + "target": "apps_electron_vite_project_electron_main_llm_warmuponserverhealthy_runwarmupforgeneration", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/llm/warmupOnServerHealthy.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_llm_warmuponserverhealthy_initwarmuponserverhealthy", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_iseffectivesandboxnode" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/mainWindowAccessor.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_mainwindowaccessor", + "target": "apps_electron_vite_project_electron_main_mainwindowaccessor_getmainbrowserwindow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/mainWindowAccessor.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_mainwindowaccessor", + "target": "apps_electron_vite_project_electron_main_mainwindowaccessor_registermainwindowaccessor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/projects/optimizerHttpInvoke.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_projects_optimizerhttpinvoke", + "target": "apps_electron_vite_project_electron_main_mainwindowaccessor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/projects/triggerProjectList.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_projects_triggerprojectlist", + "target": "apps_electron_vite_project_electron_main_mainwindowaccessor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/projects/optimizerHttpInvoke.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_projects_optimizerhttpinvoke", + "target": "apps_electron_vite_project_electron_main_mainwindowaccessor_getmainbrowserwindow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/projects/optimizerHttpInvoke.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_projects_optimizerhttpinvoke_invokeoptimizergetstatus", + "target": "apps_electron_vite_project_electron_main_mainwindowaccessor_getmainbrowserwindow" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/projects/optimizerHttpInvoke.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_projects_optimizerhttpinvoke_invokeoptimizersetcontinuous", + "target": "apps_electron_vite_project_electron_main_mainwindowaccessor_getmainbrowserwindow" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/projects/optimizerHttpInvoke.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_projects_optimizerhttpinvoke_invokeoptimizersnapshot", + "target": "apps_electron_vite_project_electron_main_mainwindowaccessor_getmainbrowserwindow" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/projects/triggerProjectList.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_projects_triggerprojectlist", + "target": "apps_electron_vite_project_electron_main_mainwindowaccessor_getmainbrowserwindow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/projects/triggerProjectList.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_projects_triggerprojectlist_readtriggerlistfromrenderer", + "target": "apps_electron_vite_project_electron_main_mainwindowaccessor_getmainbrowserwindow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/cloudConfigFromOptimandoKeys.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_cloudconfigfromoptimandokeys", + "target": "apps_electron_vite_project_electron_main_ocr_cloudconfigfromoptimandokeys_bootstrapocrrouterfromorchestratorkeys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/cloudConfigFromOptimandoKeys.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_cloudconfigfromoptimandokeys", + "target": "apps_electron_vite_project_electron_main_ocr_cloudconfigfromoptimandokeys_cloudconfigfromoptimandoapikeysrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/cloudConfigFromOptimandoKeys.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_cloudconfigfromoptimandokeys", + "target": "apps_electron_vite_project_electron_main_ocr_cloudconfigfromoptimandokeys_vision_key_order", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/cloudConfigFromOptimandoKeys.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_cloudconfigfromoptimandokeys", + "target": "apps_electron_vite_project_electron_main_ocr_router", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/cloudConfigFromOptimandoKeys.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_cloudconfigfromoptimandokeys", + "target": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/cloudConfigFromOptimandoKeys.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_cloudconfigfromoptimandokeys", + "target": "apps_electron_vite_project_electron_main_ocr_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/cloudConfigFromOptimandoKeys.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_cloudconfigfromoptimandokeys", + "target": "apps_electron_vite_project_electron_main_ocr_types_cloudaiconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/cloudConfigFromOptimandoKeys.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_cloudconfigfromoptimandokeys", + "target": "apps_electron_vite_project_electron_main_ocr_types_visionprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/cloudConfigFromOptimandoKeys.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_cloudconfigfromoptimandokeys_bootstrapocrrouterfromorchestratorkeys", + "target": "apps_electron_vite_project_electron_main_ocr_cloudconfigfromoptimandokeys_cloudconfigfromoptimandoapikeysrecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/cloudConfigFromOptimandoKeys.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_cloudconfigfromoptimandokeys_bootstrapocrrouterfromorchestratorkeys", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/index.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_index", + "target": "apps_electron_vite_project_electron_main_ocr_ipc", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/index.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_index", + "target": "apps_electron_vite_project_electron_main_ocr_ipc_registerocrhandlers", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/index.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_index", + "target": "apps_electron_vite_project_electron_main_ocr_ipc_unregisterocrhandlers", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_index", + "target": "apps_electron_vite_project_electron_main_ocr_ocr_service", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_index", + "target": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/index.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_index", + "target": "apps_electron_vite_project_electron_main_ocr_router", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/index.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_index", + "target": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/index.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_index", + "target": "apps_electron_vite_project_electron_main_ocr_types", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/ipc.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_ipc", + "target": "apps_electron_vite_project_electron_main_ocr_ipc_registerocrhandlers", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/ipc.ts", + "source_location": "L187", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_ipc", + "target": "apps_electron_vite_project_electron_main_ocr_ipc_unregisterocrhandlers", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/ipc.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_ipc", + "target": "apps_electron_vite_project_electron_main_ocr_ocr_service", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/ipc.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_ipc", + "target": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/ipc.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_ipc", + "target": "apps_electron_vite_project_electron_main_ocr_router", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/ipc.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_ipc", + "target": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/ipc.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_ipc", + "target": "apps_electron_vite_project_electron_main_ocr_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/ipc.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_ipc", + "target": "apps_electron_vite_project_electron_main_ocr_types_cloudaiconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/ipc.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_ipc", + "target": "apps_electron_vite_project_electron_main_ocr_types_ocrinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/ipc.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_ipc", + "target": "apps_electron_vite_project_electron_main_ocr_types_ocroptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/ocr-service.ts", + "source_location": "L377", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_ocr_service", + "target": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/ocr-service.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_ocr_service", + "target": "apps_electron_vite_project_electron_main_ocr_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/ocr-service.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_ocr_service", + "target": "apps_electron_vite_project_electron_main_ocr_types_ocrinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/ocr-service.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_ocr_service", + "target": "apps_electron_vite_project_electron_main_ocr_types_ocrlanguage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/ocr-service.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_ocr_service", + "target": "apps_electron_vite_project_electron_main_ocr_types_ocroptions", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/ocr-service.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_ocr_service", + "target": "apps_electron_vite_project_electron_main_ocr_types_ocrprogresscallback", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/ocr-service.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_ocr_service", + "target": "apps_electron_vite_project_electron_main_ocr_types_ocrresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/ocr-service.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_ocr_service", + "target": "apps_electron_vite_project_electron_main_ocr_types_ocrstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router", + "target": "apps_electron_vite_project_electron_main_ocr_ocr_service", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob", + "target": "apps_electron_vite_project_electron_main_ocr_ocr_service", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/ocr-service.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice", + "target": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice_constructor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/ocr-service.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice", + "target": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice_doinitialize", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/ocr-service.ts", + "source_location": "L363", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice", + "target": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice_generatewarnings", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/ocr-service.ts", + "source_location": "L276", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice", + "target": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice_getstatus", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/ocr-service.ts", + "source_location": "L296", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice", + "target": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice_getsupportedlanguages", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/ocr-service.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice", + "target": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice_initialize", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/ocr-service.ts", + "source_location": "L331", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice", + "target": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice_prepareinput", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/ocr-service.ts", + "source_location": "L258", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice", + "target": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice_processbase64", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/ocr-service.ts", + "source_location": "L170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice", + "target": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice_processimage", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/ocr-service.ts", + "source_location": "L243", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice", + "target": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice_processscreenshot", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/ocr-service.ts", + "source_location": "L318", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice", + "target": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice_terminate", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/ocr-service.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice", + "target": "apps_electron_vite_project_electron_main_ocr_types_ocrlanguage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router", + "target": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob", + "target": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/ocr-service.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice_initialize", + "target": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice_doinitialize", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/ocr-service.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice_initialize", + "target": "apps_electron_vite_project_electron_main_ocr_types_ocrlanguage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/ocr-service.ts", + "source_location": "L181", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice_processimage", + "target": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice_initialize", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/ocr-service.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice_doinitialize", + "target": "apps_electron_vite_project_electron_main_ocr_types_ocrlanguage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/ocr-service.ts", + "source_location": "L266", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice_processbase64", + "target": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice_processimage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/ocr-service.ts", + "source_location": "L232", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice_processimage", + "target": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice_generatewarnings", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/ocr-service.ts", + "source_location": "L194", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice_processimage", + "target": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice_prepareinput", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/ocr-service.ts", + "source_location": "L170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice_processimage", + "target": "apps_electron_vite_project_electron_main_ocr_types_ocrinput", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/ocr-service.ts", + "source_location": "L170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice_processimage", + "target": "apps_electron_vite_project_electron_main_ocr_types_ocroptions", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/ocr-service.ts", + "source_location": "L170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice_processimage", + "target": "apps_electron_vite_project_electron_main_ocr_types_ocrprogresscallback", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/ocr-service.ts", + "source_location": "L170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice_processimage", + "target": "apps_electron_vite_project_electron_main_ocr_types_ocrresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/ocr-service.ts", + "source_location": "L248", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice_processscreenshot", + "target": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice_processimage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/ocr-service.ts", + "source_location": "L243", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice_processscreenshot", + "target": "apps_electron_vite_project_electron_main_ocr_types_ocroptions", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/ocr-service.ts", + "source_location": "L243", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice_processscreenshot", + "target": "apps_electron_vite_project_electron_main_ocr_types_ocrprogresscallback", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/ocr-service.ts", + "source_location": "L243", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice_processscreenshot", + "target": "apps_electron_vite_project_electron_main_ocr_types_ocrresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/ocr-service.ts", + "source_location": "L258", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice_processbase64", + "target": "apps_electron_vite_project_electron_main_ocr_types_ocroptions", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/ocr-service.ts", + "source_location": "L258", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice_processbase64", + "target": "apps_electron_vite_project_electron_main_ocr_types_ocrprogresscallback", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/ocr-service.ts", + "source_location": "L258", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice_processbase64", + "target": "apps_electron_vite_project_electron_main_ocr_types_ocrresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/ocr-service.ts", + "source_location": "L276", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice_getstatus", + "target": "apps_electron_vite_project_electron_main_ocr_types_ocrstatus", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/ocr-service.ts", + "source_location": "L296", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice_getsupportedlanguages", + "target": "apps_electron_vite_project_electron_main_ocr_types_ocrlanguage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/ocr-service.ts", + "source_location": "L331", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_ocr_service_ocrservice_prepareinput", + "target": "apps_electron_vite_project_electron_main_ocr_types_ocrinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L462", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router", + "target": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router", + "target": "apps_electron_vite_project_electron_main_ocr_router_vision_providers", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router", + "target": "apps_electron_vite_project_electron_main_ocr_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router", + "target": "apps_electron_vite_project_electron_main_ocr_types_cloudaiconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router", + "target": "apps_electron_vite_project_electron_main_ocr_types_ocrinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router", + "target": "apps_electron_vite_project_electron_main_ocr_types_ocroptions", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router", + "target": "apps_electron_vite_project_electron_main_ocr_types_ocrprogresscallback", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router", + "target": "apps_electron_vite_project_electron_main_ocr_types_ocrresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router", + "target": "apps_electron_vite_project_electron_main_ocr_types_visionprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_issandboxmode", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L454", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter", + "target": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_getapikey", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L444", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter", + "target": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_getavailableproviders", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter", + "target": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_getavailablevisionprovider", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter", + "target": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_getcloudconfig", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L238", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter", + "target": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_inputtobase64", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter", + "target": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_isprovideravailable", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L152", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter", + "target": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_processimage", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L310", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter", + "target": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_processwithclaude", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter", + "target": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_processwithcloud", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L358", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter", + "target": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_processwithgemini", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L398", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter", + "target": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_processwithgrok", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L265", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter", + "target": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_processwithopenai", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter", + "target": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_setcloudconfig", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter", + "target": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_shouldusecloud", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter", + "target": "apps_electron_vite_project_electron_main_ocr_types_cloudaiconfig", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_getcloudconfig", + "target": "apps_electron_vite_project_electron_main_ocr_types_cloudaiconfig", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_setcloudconfig", + "target": "apps_electron_vite_project_electron_main_ocr_types_cloudaiconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L157", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_processimage", + "target": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_shouldusecloud", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_shouldusecloud", + "target": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_getavailablevisionprovider", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_shouldusecloud", + "target": "apps_electron_vite_project_electron_main_ocr_types_ocroptions", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_shouldusecloud", + "target": "apps_electron_vite_project_electron_main_ocr_types_visionprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_shouldusecloud", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_issandboxmode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_getavailablevisionprovider", + "target": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_isprovideravailable", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_getavailablevisionprovider", + "target": "apps_electron_vite_project_electron_main_ocr_types_visionprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L448", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_getavailableproviders", + "target": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_isprovideravailable", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_isprovideravailable", + "target": "apps_electron_vite_project_electron_main_ocr_types_visionprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_processimage", + "target": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_processwithcloud", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L152", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_processimage", + "target": "apps_electron_vite_project_electron_main_ocr_types_ocrinput", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L152", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_processimage", + "target": "apps_electron_vite_project_electron_main_ocr_types_ocroptions", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L152", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_processimage", + "target": "apps_electron_vite_project_electron_main_ocr_types_ocrprogresscallback", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L152", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_processimage", + "target": "apps_electron_vite_project_electron_main_ocr_types_ocrresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L186", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_processwithcloud", + "target": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_inputtobase64", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L198", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_processwithcloud", + "target": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_processwithclaude", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L201", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_processwithcloud", + "target": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_processwithgemini", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L204", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_processwithcloud", + "target": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_processwithgrok", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L195", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_processwithcloud", + "target": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_processwithopenai", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_processwithcloud", + "target": "apps_electron_vite_project_electron_main_ocr_types_ocrinput", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_processwithcloud", + "target": "apps_electron_vite_project_electron_main_ocr_types_ocroptions", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_processwithcloud", + "target": "apps_electron_vite_project_electron_main_ocr_types_ocrprogresscallback", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_processwithcloud", + "target": "apps_electron_vite_project_electron_main_ocr_types_ocrresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_processwithcloud", + "target": "apps_electron_vite_project_electron_main_ocr_types_visionprovider", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L238", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_inputtobase64", + "target": "apps_electron_vite_project_electron_main_ocr_types_ocrinput", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L444", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_getavailableproviders", + "target": "apps_electron_vite_project_electron_main_ocr_types_visionprovider", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/router.ts", + "source_location": "L454", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_router_ocrrouter_getapikey", + "target": "apps_electron_vite_project_electron_main_ocr_types_visionprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/types.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_types", + "target": "apps_electron_vite_project_electron_main_ocr_types_cloudaiconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/types.ts", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_types", + "target": "apps_electron_vite_project_electron_main_ocr_types_ocrinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/types.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_types", + "target": "apps_electron_vite_project_electron_main_ocr_types_ocrlanguage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/types.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_types", + "target": "apps_electron_vite_project_electron_main_ocr_types_ocrmethod", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/types.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_types", + "target": "apps_electron_vite_project_electron_main_ocr_types_ocroptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/types.ts", + "source_location": "L154", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_types", + "target": "apps_electron_vite_project_electron_main_ocr_types_ocrprogress", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/types.ts", + "source_location": "L160", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_types", + "target": "apps_electron_vite_project_electron_main_ocr_types_ocrprogresscallback", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/types.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_types", + "target": "apps_electron_vite_project_electron_main_ocr_types_ocrresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/types.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_types", + "target": "apps_electron_vite_project_electron_main_ocr_types_ocrstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/ocr/types.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_ocr_types", + "target": "apps_electron_vite_project_electron_main_ocr_types_visionprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/__tests__/beapSessionImportRun.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_tests_beapsessionimportrun_test", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_beapsessionimportrun", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/__tests__/beapSessionImportRun.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_tests_beapsessionimportrun_test", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_beapsessionimportrun_importandrunbeapsessionfromartefact", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/__tests__/beapSessionImportRun.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_tests_beapsessionimportrun_test", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_tests_beapsessionimportrun_test_validrunartefact", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/__tests__/sessionKeyUtils.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_tests_sessionkeyutils_test", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_sessionkeyutils", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/__tests__/sessionKeyUtils.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_tests_sessionkeyutils_test", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_sessionkeyutils_isorchestratorkvsessionkey", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/__tests__/sessionKeyUtils.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_tests_sessionkeyutils_test", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_sessionkeyutils_kvblobtoorchestratorsession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/__tests__/sessionKeyUtils.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_tests_sessionkeyutils_test", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_sessionkeyutils_resolveorchestratorsessiondisplayname", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/beapRunAutomationWaiter.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_beaprunautomationwaiter", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_beaprunautomationwaiter_beaprunautomationwaitresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/beapRunAutomationWaiter.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_beaprunautomationwaiter", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_beaprunautomationwaiter_completebeaprunautomationwaiter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/beapRunAutomationWaiter.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_beaprunautomationwaiter", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_beaprunautomationwaiter_pending", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/beapRunAutomationWaiter.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_beaprunautomationwaiter", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_beaprunautomationwaiter_registerbeaprunautomationwaiter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/beapSessionImportRun.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_beapsessionimportrun", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_beapsessionimportrun_beap_desktop_run_automation_result_ws_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/beapSessionImportRun.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_beapsessionimportrun", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_beapsessionimportrun_beap_desktop_run_automation_ws_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/beapSessionImportRun.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_beapsessionimportrun", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_beapsessionimportrun_beapsessionimportrundeps", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/beapSessionImportRun.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_beapsessionimportrun", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_beapsessionimportrun_beapsessionimportrunrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/beapSessionImportRun.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_beapsessionimportrun", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_beapsessionimportrun_beapsessionimportrunresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/beapSessionImportRun.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_beapsessionimportrun", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_beapsessionimportrun_importandrunbeapsessionfromartefact", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/beapSessionImportRun.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_beapsessionimportrun", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_beapsessionimportrun_readhandshakeidfrombinding", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/beapSessionImportRun.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_beapsessionimportrun", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/beapSessionImportRun.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_beapsessionimportrun", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/beapSessionImportRun.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_beapsessionimportrun", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_sessionimportartefactunwrap", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/beapSessionImportRun.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_beapsessionimportrun", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_sessionimportartefactunwrap_newbeapimportsessionkey", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/beapSessionImportRun.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_beapsessionimportrun", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_sessionimportartefactunwrap_unwrapsessionimportpayloadfortab", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/beapSessionImportRun.ts", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_beapsessionimportrun_importandrunbeapsessionfromartefact", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_beapsessionimportrun_beapsessionimportrundeps" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/beapSessionImportRun.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_beapsessionimportrun_importandrunbeapsessionfromartefact", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_beapsessionimportrun_readhandshakeidfrombinding", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/beapSessionImportRun.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_beapsessionimportrun_importandrunbeapsessionfromartefact", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_sessionimportartefactunwrap_newbeapimportsessionkey" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/beapSessionImportRun.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_beapsessionimportrun_importandrunbeapsessionfromartefact", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_sessionimportartefactunwrap_unwrapsessionimportpayloadfortab" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L180", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_applysqlcipherconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L173", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_applysqlcipherkey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_assertsafestorageavailable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L347", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_closeorchestratordb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L269", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_createorchestratordb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L359", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_createschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_derivelegacydek", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L161", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_generateandpersistdek", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_getelectrondatadir", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_getorchestratordbpath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_getorchestratorkeypath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_loaddekfromkeyfile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_loadsqlcipher", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L447", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_migrateschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L220", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_migratetosafestoragedek", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L297", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_openorchestratordb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_orchestratordbexists", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_orchestratorsecurestorageunavailableerror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_require", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L193", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_verifydbreadable", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db_loadsqlcipher", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_require", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L271", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db_createorchestratordb", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_loadsqlcipher", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L303", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db_openorchestratordb", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_loadsqlcipher", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db_getorchestratordbpath", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_getelectrondatadir", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db_getorchestratorkeypath", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_getelectrondatadir", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L270", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db_createorchestratordb", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_getorchestratordbpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L221", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db_migratetosafestoragedek", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_getorchestratordbpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L298", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db_openorchestratordb", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_getorchestratordbpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db_orchestratordbexists", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_getorchestratordbpath", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_getorchestratordbpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_constructor", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_getorchestratordbpath" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_getstatus", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_getorchestratordbpath" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L166", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db_generateandpersistdek", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_getorchestratorkeypath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L144", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db_loaddekfromkeyfile", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_getorchestratorkeypath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L222", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db_migratetosafestoragedek", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_getorchestratorkeypath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L307", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db_openorchestratordb", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_getorchestratorkeypath", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_orchestratordbexists", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_connect", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_orchestratordbexists" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_getstatus", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_orchestratordbexists" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db_orchestratorsecurestorageunavailableerror", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_orchestratorsecurestorageunavailableerror_constructor", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db_generateandpersistdek", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_assertsafestorageavailable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db_loaddekfromkeyfile", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_assertsafestorageavailable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L226", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db_migratetosafestoragedek", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_assertsafestorageavailable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L227", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db_migratetosafestoragedek", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_derivelegacydek", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L316", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db_openorchestratordb", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_loaddekfromkeyfile", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L273", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db_createorchestratordb", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_generateandpersistdek", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L277", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db_createorchestratordb", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_applysqlcipherkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L241", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db_migratetosafestoragedek", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_applysqlcipherkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L331", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db_openorchestratordb", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_applysqlcipherkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L278", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db_createorchestratordb", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_applysqlcipherconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L242", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db_migratetosafestoragedek", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_applysqlcipherconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L332", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db_openorchestratordb", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_applysqlcipherconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L279", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db_createorchestratordb", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_verifydbreadable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L243", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db_migratetosafestoragedek", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_verifydbreadable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L333", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db_openorchestratordb", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_verifydbreadable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L321", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db_openorchestratordb", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_migratetosafestoragedek", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L280", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db_createorchestratordb", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_createschema", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_createorchestratordb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_connect", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_createorchestratordb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/db.ts", + "source_location": "L335", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_db_openorchestratordb", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_migrateschema", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_openorchestratordb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_connect", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_openorchestratordb" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_closeorchestratordb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_disconnect", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_db_closeorchestratordb" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L533", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service_getorchestratorservice", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_sessionkeyutils", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_sessionkeyutils_isorchestratorkvsessionkey", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_sessionkeyutils_kvblobtoorchestratorsession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_sessionkeyutils_resolveorchestratorsessiondisplayname", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_types_exportdata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_types_exportoptions", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_types_orchestratorstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_types_session", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L477", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_rationale_477", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L481", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_rationale_481", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L237", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_clear", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_connect", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_constructor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L345", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_deletesession", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_disconnect", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_ensureconnected", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L448", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_exportdata", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_get", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L171", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_getall", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_getrawdb", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L280", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_getsession", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_getstatus", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L495", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_importdata", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L363", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_listallsessionsforui", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L256", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_listsessions", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L425", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_migratefromchromestorage", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L216", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_remove", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L315", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_savesession", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L144", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_set", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L190", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_setall", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_ensureconnected", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_connect", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_getstatus", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_types_orchestratorstatus", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L238", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_clear", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_ensureconnected", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L346", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_deletesession", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_ensureconnected", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L449", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_exportdata", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_ensureconnected", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_get", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_ensureconnected", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L172", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_getall", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_ensureconnected", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_getrawdb", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_ensureconnected", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L281", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_getsession", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_ensureconnected", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L496", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_importdata", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_ensureconnected", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L366", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_listallsessionsforui", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_ensureconnected", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L257", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_listsessions", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_ensureconnected", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L426", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_migratefromchromestorage", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_ensureconnected", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L217", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_remove", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_ensureconnected", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L316", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_savesession", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_ensureconnected", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_set", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_ensureconnected", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_setall", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_ensureconnected", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L284", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_getsession", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_get", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L467", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_exportdata", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_getall", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L371", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_listallsessionsforui", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_getall", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L515", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_importdata", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_setall", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L432", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_migratefromchromestorage", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_setall", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L458", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_exportdata", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_listsessions", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L368", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_listallsessionsforui", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_listsessions", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L256", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_listsessions", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_types_session", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L296", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_getsession", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_sessionkeyutils_isorchestratorkvsessionkey" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L305", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_getsession", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_sessionkeyutils_kvblobtoorchestratorsession" + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L280", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_getsession", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_types_session", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L504", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_importdata", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_savesession", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L315", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_savesession", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_types_session", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L394", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_listallsessionsforui", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_sessionkeyutils_resolveorchestratorsessiondisplayname" + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L448", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_exportdata", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_types_exportdata", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L448", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_exportdata", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_types_exportoptions", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/service.ts", + "source_location": "L495", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_service_orchestratorservice_importdata", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_types_exportdata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/sessionImportArtefactUnwrap.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_sessionimportartefactunwrap", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_sessionimportartefactunwrap_isfullsessionexportcontent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/sessionImportArtefactUnwrap.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_sessionimportartefactunwrap", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_sessionimportartefactunwrap_isorchestratorsessioncontent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/sessionImportArtefactUnwrap.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_sessionimportartefactunwrap", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_sessionimportartefactunwrap_issessionimportartefactwrapper", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/sessionImportArtefactUnwrap.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_sessionimportartefactunwrap", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_sessionimportartefactunwrap_newbeapimportsessionkey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/sessionImportArtefactUnwrap.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_sessionimportartefactunwrap", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_sessionimportartefactunwrap_orchestratorsessioncontenttotabimport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/sessionImportArtefactUnwrap.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_sessionimportartefactunwrap", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_sessionimportartefactunwrap_sessionimportunwrapresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/sessionImportArtefactUnwrap.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_sessionimportartefactunwrap", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_sessionimportartefactunwrap_unwrapsessionimportpayloadfortab", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/sessionImportArtefactUnwrap.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_sessionimportartefactunwrap_unwrapsessionimportpayloadfortab", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_sessionimportartefactunwrap_issessionimportartefactwrapper", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/sessionImportArtefactUnwrap.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_sessionimportartefactunwrap_unwrapsessionimportpayloadfortab", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_sessionimportartefactunwrap_isorchestratorsessioncontent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/sessionImportArtefactUnwrap.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_sessionimportartefactunwrap_unwrapsessionimportpayloadfortab", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_sessionimportartefactunwrap_isfullsessionexportcontent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/sessionImportArtefactUnwrap.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_sessionimportartefactunwrap_unwrapsessionimportpayloadfortab", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_sessionimportartefactunwrap_orchestratorsessioncontenttotabimport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/sessionKeyUtils.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_sessionkeyutils", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_sessionkeyutils_isorchestratorkvsessionkey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/sessionKeyUtils.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_sessionkeyutils", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_sessionkeyutils_kvblobtoorchestratorsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/sessionKeyUtils.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_sessionkeyutils", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_sessionkeyutils_nonemptystring", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/sessionKeyUtils.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_sessionkeyutils", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_sessionkeyutils_parsekvsessiontimestamp", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/sessionKeyUtils.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_sessionkeyutils", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_sessionkeyutils_resolveorchestratorsessiondisplayname", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/sessionKeyUtils.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_sessionkeyutils", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/sessionKeyUtils.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_sessionkeyutils", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_types_session", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/sessionKeyUtils.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_sessionkeyutils_resolveorchestratorsessiondisplayname", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_sessionkeyutils_nonemptystring", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/sessionKeyUtils.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_sessionkeyutils_kvblobtoorchestratorsession", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_sessionkeyutils_resolveorchestratorsessiondisplayname", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/sessionKeyUtils.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_sessionkeyutils_kvblobtoorchestratorsession", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_sessionkeyutils_parsekvsessiontimestamp", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/types.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_types", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_types_exportdata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/types.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_types", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_types_exportformat", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/types.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_types", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_types_exportoptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/types.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_types", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_types_kdfparams", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/types.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_types", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_types_orchestratorsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/types.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_types", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_types_orchestratorstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/types.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_types", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_types_session", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/types.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_types", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_types_sessiontemplate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/types.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_types", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_types_setting", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator-db/types.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_db_types", + "target": "apps_electron_vite_project_electron_main_orchestrator_db_types_uistate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/broadcastModeChange.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_broadcastmodechange", + "target": "apps_electron_vite_project_electron_main_orchestrator_broadcastmodechange_broadcastorchestratormodechanged", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/ipc.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_ipc", + "target": "apps_electron_vite_project_electron_main_orchestrator_broadcastmodechange", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/orchestrator/broadcastModeChange.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_broadcastmodechange_broadcastorchestratormodechanged", + "target": "test_mocks_electron_browserwindow_getallwindows" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/ipc.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_ipc", + "target": "apps_electron_vite_project_electron_main_orchestrator_broadcastmodechange_broadcastorchestratormodechanged", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/orchestrator/ipc.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_ipc_registerorchestratoripc", + "target": "apps_electron_vite_project_electron_main_orchestrator_broadcastmodechange_broadcastorchestratormodechanged" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/ipc.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_ipc", + "target": "apps_electron_vite_project_electron_main_orchestrator_ipc_registerorchestratoripc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/ipc.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_ipc", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/ipc.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_ipc", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/ipc.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_ipc", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_orchestratormodeconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/ipc.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_ipc", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_regeneratepairingcode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/ipc.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_ipc", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_removeconnectedpeer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/ipc.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_ipc", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_setdevicename", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/ipc.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_ipc", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_setorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/orchestrator/ipc.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_ipc_registerorchestratoripc", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/orchestrator/ipc.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_ipc_registerorchestratoripc", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_regeneratepairingcode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/orchestrator/ipc.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_ipc_registerorchestratoripc", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_removeconnectedpeer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/orchestrator/ipc.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_ipc_registerorchestratoripc", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_setdevicename" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/orchestrator/ipc.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_ipc_registerorchestratoripc", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_setorchestratormode" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L396", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_addconnectedpeer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L417", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_addlinkedtopologyentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_buildconfigfromraw", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_connectedpeer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L345", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_ensurepairingcoderegistered", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_generatepairingcode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L298", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getdevicename", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L294", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L206", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L313", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getpairingcode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_isconnectedpeer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L285", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_ishostmode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L165", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_islinkedconfigentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L290", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_issandboxmode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_linkedtopologyconfigentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_orchestratormodeconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_pairingcoderegistrar", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L179", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_persistconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_readrawjson", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L390", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_regeneratepairingcode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L403", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_removeconnectedpeer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L436", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_removelinkedtopologyentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_sandboxpairingkind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L302", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_setdevicename", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L273", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_setorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L318", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_setpairingcodelocal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_setpairingcoderegistrar", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_storepath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L453", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_updatepeerstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L234", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_validateforwrite", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L213", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_validatepeer", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayDeviceBinding.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaydevicebinding", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxOutboundPolicy.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_buildconfigfromraw", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_generatepairingcode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L371", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_ensurepairingcoderegistered", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_generatepairingcode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L391", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_regeneratepairingcode", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_generatepairingcode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L254", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_validateforwrite", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_generatepairingcode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L180", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_persistconfig", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_storepath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_readrawjson", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_storepath", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L150", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_buildconfigfromraw", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_isconnectedpeer", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L207", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_readrawjson", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L156", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_buildconfigfromraw", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_islinkedconfigentry", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L208", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_buildconfigfromraw", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L265", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_validateforwrite", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_islinkedconfigentry", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L427", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_addlinkedtopologyentry", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_persistconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L209", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_persistconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L443", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_removelinkedtopologyentry", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_persistconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L276", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_setorchestratormode", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_persistconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L397", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_addconnectedpeer", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L420", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_addlinkedtopologyentry", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L299", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getdevicename", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L295", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L314", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getpairingcode", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L286", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_ishostmode", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L291", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_issandboxmode", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L406", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_removeconnectedpeer", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L439", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_removelinkedtopologyentry", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L305", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_setdevicename", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L274", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_setorchestratormode", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L322", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_setpairingcodelocal", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L459", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_updatepeerstatus", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L480", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull_registerdevicerolewithrelay", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxOutboundPolicy.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxOutboundPolicy.ts", + "source_location": "L255", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_iseffectivesandboxnode", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxOutboundPolicy.ts", + "source_location": "L270", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_resolveeffectivesandboxnode", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getorchestratormode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L398", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_addconnectedpeer", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_validatepeer", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L261", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_validateforwrite", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_validatepeer", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L275", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_setorchestratormode", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_validateforwrite", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L400", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_addconnectedpeer", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_setorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L407", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_removeconnectedpeer", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_setorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L306", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_setdevicename", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_setorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L324", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_setpairingcodelocal", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_setorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L464", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_updatepeerstatus", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_setorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L1001", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws_createcoordinationwsclient", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L206", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws_processcapsuleinternal", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayDeviceBinding.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaydevicebinding", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/relayDeviceBinding.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaydevicebinding_getcanonicalrelaydeviceid", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull_pullfromrelay", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L466", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull_registerdevicerolewithrelay", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getinstanceid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L346", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_ensurepairingcoderegistered", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_getpairingcode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L372", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_ensurepairingcoderegistered", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_setpairingcodelocal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L392", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_regeneratepairingcode", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_setpairingcodelocal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts", + "source_location": "L393", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_regeneratepairingcode", + "target": "apps_electron_vite_project_electron_main_orchestrator_orchestratormodestore_ensurepairingcoderegistered", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/beapDeliveryAck.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_beapdeliveryack_test", + "target": "apps_electron_vite_project_electron_main_p2p_beapdeliveryack", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/beapDeliveryAck.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_beapdeliveryack_test", + "target": "apps_electron_vite_project_electron_main_p2p_beapdeliveryack_notifybeapdeliveryack", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/beapDeliveryAck.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_beapdeliveryack_test", + "target": "apps_electron_vite_project_electron_main_p2p_beapdeliveryack_resetbeapdeliveryackwaitersfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/beapDeliveryAck.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_beapdeliveryack_test", + "target": "apps_electron_vite_project_electron_main_p2p_beapdeliveryack_waitforbeapdeliveryack", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/coordination-client.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_coordination_client_test", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/coordination-client.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_coordination_client_test", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_getp2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/coordination-client.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_coordination_client_test", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_upsertp2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/coordination-client.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_coordination_client_test", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/coordination-client.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_coordination_client_test", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_getp2phealth", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/coordination-client.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_coordination_client_test", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthcoordinationconnected", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/coordination-client.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_coordination_client_test", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthcoordinationdisconnected", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/coordination-client.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_coordination_client_test", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthcoordinationreconnectattempts", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/coordination-client.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_coordination_client_test", + "target": "apps_electron_vite_project_electron_main_p2p_relaysync", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/coordination-client.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_coordination_client_test", + "target": "apps_electron_vite_project_electron_main_p2p_relaysync_registerhandshakewithrelay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/coordination-client.test.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_coordination_client_test", + "target": "apps_electron_vite_project_electron_main_p2p_tests_coordination_client_test_createtestdb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/coordination-client.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_coordination_client_test", + "target": "apps_electron_vite_project_electron_main_p2p_tests_coordination_client_test_require", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/coordination-client.test.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_coordination_client_test", + "target": "apps_electron_vite_project_electron_main_p2p_tests_coordination_client_test_skipifnosqlite", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/coordinationSamePrincipalInbound.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_coordinationsameprincipalinbound_test", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationsameprincipalinbound", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/coordinationSamePrincipalInbound.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_coordinationsameprincipalinbound_test", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationsameprincipalinbound_computesameprincipalcoordinationskipown", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/coordinationUrlLocalDial.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_coordinationurllocaldial_test", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/coordinationUrlLocalDial.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_coordinationurllocaldial_test", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_iscoordinationrelaycolocated", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/coordinationUrlLocalDial.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_coordinationurllocaldial_test", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_normalizecoordinationurlforlocaldial", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/coordinationUrlLocalDial.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_coordinationurllocaldial_test", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_normalizecoordinationwsurlforlocaldial", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/coordinationUrlLocalDial.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_coordinationurllocaldial_test", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_resetcoordinationlocalhostnamecachefortests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/coordinationUrlLocalDial.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_coordinationurllocaldial_test", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_setcoordinationlocalhostnamesfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relay-integration.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_relay_integration_test", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relay-integration.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_relay_integration_test", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_getp2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relay-integration.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_relay_integration_test", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_upsertp2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relay-integration.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_relay_integration_test", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relay-integration.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_relay_integration_test", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_getp2phealth", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relay-integration.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_relay_integration_test", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthrelaypullfailure", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relay-integration.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_relay_integration_test", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthrelaypullsuccess", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relay-integration.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_relay_integration_test", + "target": "apps_electron_vite_project_electron_main_p2p_relaypull", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relay-integration.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_relay_integration_test", + "target": "apps_electron_vite_project_electron_main_p2p_relaypull_pullfromrelay", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relay-integration.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_relay_integration_test", + "target": "apps_electron_vite_project_electron_main_p2p_relaysync", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relay-integration.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_relay_integration_test", + "target": "apps_electron_vite_project_electron_main_p2p_relaysync_registerhandshakewithrelay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relay-integration.test.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_relay_integration_test", + "target": "apps_electron_vite_project_electron_main_p2p_tests_relay_integration_test_createtestdb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relay-integration.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_relay_integration_test", + "target": "apps_electron_vite_project_electron_main_p2p_tests_relay_integration_test_require", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relay-integration.test.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_relay_integration_test", + "target": "apps_electron_vite_project_electron_main_p2p_tests_relay_integration_test_validbeapcapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relayPull.deviceRegister.test.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_relaypull_deviceregister_test", + "target": "apps_electron_vite_project_electron_main_p2p_relaypull", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relayPull.deviceRegister.test.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_relaypull_deviceregister_test", + "target": "apps_electron_vite_project_electron_main_p2p_relaypull_registerdevicerolewithrelay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relayPull.deviceRegister.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_relaypull_deviceregister_test", + "target": "apps_electron_vite_project_electron_main_p2p_tests_relaypull_deviceregister_test_getinstanceidmock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relayPull.deviceRegister.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_relaypull_deviceregister_test", + "target": "apps_electron_vite_project_electron_main_p2p_tests_relaypull_deviceregister_test_getorchestratormodemock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relayPull.deviceRegister.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_relaypull_deviceregister_test", + "target": "apps_electron_vite_project_electron_main_p2p_tests_relaypull_deviceregister_test_getp2pconfigmock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relayPull.deviceRegister.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_relaypull_deviceregister_test", + "target": "apps_electron_vite_project_electron_main_p2p_tests_relaypull_deviceregister_test_iseffectivesandboxnodemock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relayPull.deviceRegister.test.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_relaypull_deviceregister_test", + "target": "apps_electron_vite_project_electron_main_p2p_tests_relaypull_deviceregister_test_registeredrole", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relayPull.messageRelay.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_relaypull_messagerelay_test", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relayPull.messageRelay.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_relaypull_messagerelay_test", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relayPull.messageRelay.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_relaypull_messagerelay_test", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_upsertp2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relayPull.messageRelay.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_relaypull_messagerelay_test", + "target": "apps_electron_vite_project_electron_main_p2p_peerdeliveryack", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relayPull.messageRelay.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_relaypull_messagerelay_test", + "target": "apps_electron_vite_project_electron_main_p2p_relaypull", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relayPull.messageRelay.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_relaypull_messagerelay_test", + "target": "apps_electron_vite_project_electron_main_p2p_relaypull_pullfromrelay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relayPull.messageRelay.test.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_relaypull_messagerelay_test", + "target": "apps_electron_vite_project_electron_main_p2p_tests_relaypull_messagerelay_test_auditbase", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relayPull.messageRelay.test.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_relaypull_messagerelay_test", + "target": "apps_electron_vite_project_electron_main_p2p_tests_relaypull_messagerelay_test_createtestdb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relayPull.messageRelay.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_relaypull_messagerelay_test", + "target": "apps_electron_vite_project_electron_main_p2p_tests_relaypull_messagerelay_test_require", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relayPull.messageRelay.test.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_relaypull_messagerelay_test", + "target": "apps_electron_vite_project_electron_main_p2p_tests_relaypull_messagerelay_test_skipifnosqlite", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relaySync.coordination403.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_relaysync_coordination403_test", + "target": "apps_electron_vite_project_electron_main_p2p_relaysync", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/__tests__/relaySync.coordination403.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_tests_relaysync_coordination403_test", + "target": "apps_electron_vite_project_electron_main_p2p_relaysync_coordinationp2psignal403isregistrydrift", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/beapDeliveryAck.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_beapdeliveryack", + "target": "apps_electron_vite_project_electron_main_p2p_beapdeliveryack_beapdeliveryackpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/beapDeliveryAck.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_beapdeliveryack", + "target": "apps_electron_vite_project_electron_main_p2p_beapdeliveryack_deliveryackwaiter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/beapDeliveryAck.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_beapdeliveryack", + "target": "apps_electron_vite_project_electron_main_p2p_beapdeliveryack_deliveryackwaiters", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/beapDeliveryAck.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_beapdeliveryack", + "target": "apps_electron_vite_project_electron_main_p2p_beapdeliveryack_notifybeapdeliveryack", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/beapDeliveryAck.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_beapdeliveryack", + "target": "apps_electron_vite_project_electron_main_p2p_beapdeliveryack_recentackbyhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/beapDeliveryAck.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_beapdeliveryack", + "target": "apps_electron_vite_project_electron_main_p2p_beapdeliveryack_removedeliveryackwaiter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/beapDeliveryAck.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_beapdeliveryack", + "target": "apps_electron_vite_project_electron_main_p2p_beapdeliveryack_resetbeapdeliveryackwaitersfortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/beapDeliveryAck.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_beapdeliveryack", + "target": "apps_electron_vite_project_electron_main_p2p_beapdeliveryack_setbeapdeliveryacknotifier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/beapDeliveryAck.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_beapdeliveryack", + "target": "apps_electron_vite_project_electron_main_p2p_beapdeliveryack_takerecentack", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/beapDeliveryAck.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_beapdeliveryack", + "target": "apps_electron_vite_project_electron_main_p2p_beapdeliveryack_waitforbeapdeliveryack", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/beapDeliveryAck.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_beapdeliveryack", + "target": "apps_electron_vite_project_electron_main_vault_capabilitybroker", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/beapDeliveryAck.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_beapdeliveryack", + "target": "apps_electron_vite_project_electron_main_vault_capabilitybroker_reasoncode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_p2p_beapdeliveryack", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/beapDeliveryAck.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_beapdeliveryack_waitforbeapdeliveryack", + "target": "apps_electron_vite_project_electron_main_p2p_beapdeliveryack_removedeliveryackwaiter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/beapDeliveryAck.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_beapdeliveryack_waitforbeapdeliveryack", + "target": "apps_electron_vite_project_electron_main_p2p_beapdeliveryack_takerecentack", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_p2p_beapdeliveryack_notifybeapdeliveryack", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L931", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws_createcoordinationwsclient", + "target": "apps_electron_vite_project_electron_main_p2p_beapdeliveryack_notifybeapdeliveryack" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/beapIngressLog.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_beapingresslog", + "target": "apps_electron_vite_project_electron_main_p2p_beapingresslog_beap_correlation_header", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/beapIngressLog.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_beapingresslog", + "target": "apps_electron_vite_project_electron_main_p2p_beapingresslog_beap_correlation_header_out", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/beapIngressLog.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_beapingresslog", + "target": "apps_electron_vite_project_electron_main_p2p_beapingresslog_logbeapingressreceived", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/beapIngressLog.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_beapingresslog", + "target": "apps_electron_vite_project_electron_main_p2p_beapingresslog_logp2pbeaprejection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/beapIngressLog.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_beapingresslog", + "target": "apps_electron_vite_project_electron_main_p2p_beapingresslog_newoutboundbeapcorrelationid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/beapIngressLog.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_beapingresslog", + "target": "apps_electron_vite_project_electron_main_p2p_beapingresslog_readbeapcorrelationidfromincoming", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/beapIngressLog.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_beapingresslog", + "target": "apps_electron_vite_project_electron_main_p2p_beapingresslog_readbeaphandshakehintfromincoming", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/beapRecipientNotify.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_beaprecipientnotify", + "target": "apps_electron_vite_project_electron_main_p2p_beaprecipientnotify_notifybeaprecipientpending", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/beapRecipientNotify.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_beaprecipientnotify", + "target": "apps_electron_vite_project_electron_main_p2p_beaprecipientnotify_setbeaprecipientpendingnotifier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationFlushQueued.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationflushqueued", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationflushqueued_requestcoordinationflushqueued", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationFlushQueued.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationflushqueued", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationFlushQueued.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationflushqueued", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_normalizecoordinationurlforlocaldial", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationflushqueued", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relaySync.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaysync", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationflushqueued", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationFlushQueued.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationflushqueued_requestcoordinationflushqueued", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_normalizecoordinationurlforlocaldial" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationflushqueued_requestcoordinationflushqueued", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L868", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws_createcoordinationwsclient", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationflushqueued_requestcoordinationflushqueued" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relaySync.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaysync", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationflushqueued_requestcoordinationflushqueued", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/relaySync.ts", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaysync_registerhandshakewithrelay", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationflushqueued_requestcoordinationflushqueued" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationhandshakepostingest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationSamePrincipalInbound.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationsameprincipalinbound", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationsameprincipalinbound_computesameprincipalcoordinationskipown", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationSamePrincipalInbound.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationsameprincipalinbound", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationsameprincipalinbound_sameprincipalskiprecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationsameprincipalinbound", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationsameprincipalinbound_computesameprincipalcoordinationskipown", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L282", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws_processcapsuleinternal", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationsameprincipalinbound_computesameprincipalcoordinationskipown", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationUrlLocalDial.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_collectthismachinehostnames", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationUrlLocalDial.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_iscoordinationrelaycolocated", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationUrlLocalDial.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_known_public_coordination_hosts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationUrlLocalDial.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_localmachinehostnames", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationUrlLocalDial.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_normalizecoordinationurlforlocaldial", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationUrlLocalDial.ts", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_normalizecoordinationwsurlforlocaldial", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationUrlLocalDial.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_normalizehostname", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationUrlLocalDial.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_parseurlhostname", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationUrlLocalDial.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_resetcoordinationlocalhostnamecachefortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationUrlLocalDial.ts", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_rewritehostnametoloopback", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationUrlLocalDial.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_setcoordinationlocalhostnamesfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationUrlLocalDial.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationUrlLocalDial.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_isp2ppublishedhostloopback", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationUrlLocalDial.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_iscoordinationrelaycolocated", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_known_public_coordination_hosts" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationUrlLocalDial.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_parseurlhostname", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_normalizehostname", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationUrlLocalDial.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_iscoordinationrelaycolocated", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_parseurlhostname", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationUrlLocalDial.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_localmachinehostnames", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_collectthismachinehostnames", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationUrlLocalDial.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_iscoordinationrelaycolocated", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_localmachinehostnames", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationUrlLocalDial.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_iscoordinationrelaycolocated", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_isp2ppublishedhostloopback" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationUrlLocalDial.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_normalizecoordinationurlforlocaldial", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_iscoordinationrelaycolocated", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationUrlLocalDial.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_normalizecoordinationurlforlocaldial", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_rewritehostnametoloopback", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationUrlLocalDial.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_normalizecoordinationwsurlforlocaldial", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_normalizecoordinationurlforlocaldial", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_normalizecoordinationurlforlocaldial", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L866", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws_createcoordinationwsclient", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_normalizecoordinationurlforlocaldial" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_normalizecoordinationwsurlforlocaldial", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L724", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws_createcoordinationwsclient", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationurllocaldial_normalizecoordinationwsurlforlocaldial" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L159", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationws_coordinationcapsulemessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L166", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationws_coordinationwsclient", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L633", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationws_createcoordinationwsclient", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L155", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationws_getreconnectdelay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationws_isduplicateprimarykey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationws_maperrortoreasoncode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationws_pendingcontextsyncbuffer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationws_processcapsuleinternal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L620", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationws_processcoordinationinboundcapsulefortest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationws_publishbeapingestackovercoordinationrelay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L153", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationws_reconnect_delays", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L134", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationws_replaybufferedcontextsync", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_p2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthcoordinationconnected", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthcoordinationdisconnected", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthcoordinationerror", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthcoordinationlastpush", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthcoordinationreconnectattempts", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_p2p_peerdeliveryack", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_p2p_peerdeliveryack_postpeerdeliveryacktosender", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_p2p_relaydevicebinding", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_p2p_relaydevicebinding_getcanonicalrelaydeviceid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_p2p_relaydevicebinding_logdeviceidbinding", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_p2p_relayidentity", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_p2p_relayidentity_relayidentitysnapshot", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_vault_capabilitybroker", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "target": "apps_electron_vite_project_electron_main_vault_capabilitybroker_reasoncode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWsHolder.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationwsholder", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationws", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L423", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws_processcapsuleinternal", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationws_publishbeapingestackovercoordinationrelay", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationws_publishbeapingestackovercoordinationrelay", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L238", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull_pullfromrelay", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationws_publishbeapingestackovercoordinationrelay" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L413", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws_processcapsuleinternal", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationws_maperrortoreasoncode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L361", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws_processcapsuleinternal", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationws_isduplicateprimarykey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws_replaybufferedcontextsync", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationws_processcapsuleinternal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L1099", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws_createcoordinationwsclient", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationws_getreconnectdelay", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws_coordinationwsclient", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationws_coordinationwsclient_connect", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L168", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws_coordinationwsclient", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationws_coordinationwsclient_disconnect", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L169", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws_coordinationwsclient", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationws_coordinationwsclient_isconnected", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws_coordinationwsclient", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationws_coordinationwsclient_oncapsule", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L171", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws_coordinationwsclient", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationws_coordinationwsclient_sendack", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L1104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws_createcoordinationwsclient", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationws_coordinationwsclient_connect", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L970", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws_createcoordinationwsclient", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationws_coordinationwsclient_sendack", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L1056", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws_createcoordinationwsclient", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationws_processcapsuleinternal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L421", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws_processcapsuleinternal", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthcoordinationlastpush", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L429", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws_processcapsuleinternal", + "target": "apps_electron_vite_project_electron_main_p2p_peerdeliveryack_postpeerdeliveryacktosender", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L630", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws_processcoordinationinboundcapsulefortest", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationws_processcapsuleinternal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L848", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws_createcoordinationwsclient", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthcoordinationconnected" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L681", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws_createcoordinationwsclient", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthcoordinationdisconnected" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L732", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws_createcoordinationwsclient", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthcoordinationerror" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L849", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws_createcoordinationwsclient", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthcoordinationreconnectattempts" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L739", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws_createcoordinationwsclient", + "target": "apps_electron_vite_project_electron_main_p2p_relaydevicebinding_getcanonicalrelaydeviceid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L747", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws_createcoordinationwsclient", + "target": "apps_electron_vite_project_electron_main_p2p_relaydevicebinding_logdeviceidbinding" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts", + "source_location": "L738", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationws_createcoordinationwsclient", + "target": "apps_electron_vite_project_electron_main_p2p_relayidentity_relayidentitysnapshot" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWsHolder.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationwsholder", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationws_createcoordinationwsclient", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWsHolder.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationwsholder", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationwsholder_clearcoordinationwsclientref", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWsHolder.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationwsholder", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationwsholder_coordinationclient", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWsHolder.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationwsholder", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationwsholder_disconnectcoordinationwsforaccountswitch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWsHolder.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationwsholder", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationwsholder_getcoordinationwsclient", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWsHolder.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationwsholder", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationwsholder_getcoordinationwsuserkey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWsHolder.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationwsholder", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationwsholder_setcoordinationwsclient", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWsHolder.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationwsholder", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWsHolder.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationwsholder", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthcoordinationdisconnected", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWsLifecycle.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationwslifecycle_test", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationwsholder", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWsLifecycle.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationwslifecycle_test", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationwsholder_getcoordinationwsclient", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWsLifecycle.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationwslifecycle_test", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationwsholder_setcoordinationwsclient", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWsHolder.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationwsholder_clearcoordinationwsclientref", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthcoordinationdisconnected" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWsHolder.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationwsholder_disconnectcoordinationwsforaccountswitch", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthcoordinationdisconnected" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/coordinationWsLifecycle.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_coordinationwslifecycle_test", + "target": "apps_electron_vite_project_electron_main_p2p_coordinationwsholder_disconnectcoordinationwsforaccountswitch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pConfig.ts", + "source_location": "L187", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_p2pconfig", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_computelocalp2pendpoint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pConfig.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_p2pconfig", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_default_p2p_config", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pConfig.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_p2pconfig", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_detectlocalp2phost", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pConfig.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_p2pconfig", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_geteffectiverelayendpoint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pConfig.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_p2pconfig", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_getp2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pConfig.ts", + "source_location": "L178", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_p2pconfig", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_isbindaddresslocalhostonly", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pConfig.ts", + "source_location": "L172", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_p2pconfig", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_isp2ppublishedhostloopback", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pConfig.ts", + "source_location": "L137", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_p2pconfig", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_listlanipv4candidates", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pConfig.ts", + "source_location": "L155", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_p2pconfig", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_normalizebrackethostname", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pConfig.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_p2pconfig", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_p2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pConfig.ts", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_p2pconfig", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_p2pingesturlhostname", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pConfig.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_p2pconfig", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_relaymode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pConfig.ts", + "source_location": "L193", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_p2pconfig", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_upsertp2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relaySync.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaysync", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pConfig.ts", + "source_location": "L195", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_p2pconfig_upsertp2pconfig", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_getp2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_getp2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull_pullfromrelay", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_getp2pconfig" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L450", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull_registerdevicerolewithrelay", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_getp2pconfig" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relaySync.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaysync", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_getp2pconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/relaySync.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaysync_registerhandshakewithrelay", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_getp2pconfig" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/relaySync.ts", + "source_location": "L253", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaysync_reregisterinternalhandshakeaftercoordinationp2psignal403", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_getp2pconfig" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pConfig.ts", + "source_location": "L188", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_p2pconfig_computelocalp2pendpoint", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_detectlocalp2phost", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pConfig.ts", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_p2pconfig_isp2ppublishedhostloopback", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_normalizebrackethostname", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pConfig.ts", + "source_location": "L166", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_p2pconfig_p2pingesturlhostname", + "target": "apps_electron_vite_project_electron_main_p2p_p2pconfig_normalizebrackethostname", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_p2phealth", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_formatp2perrorforuser", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L206", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_p2phealth", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_getfirewallhint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_p2phealth", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_getp2phealth", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_p2phealth", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_health", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_p2phealth", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_listeners", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_p2phealth", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_notifylisteners", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_p2phealth", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_p2phealthstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_p2phealth", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthcoordinationconnected", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_p2phealth", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthcoordinationdisconnected", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L152", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_p2phealth", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthcoordinationerror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L157", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_p2phealth", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthcoordinationlastpush", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_p2phealth", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthcoordinationreconnectattempts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_p2phealth", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthoutboundfailure", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_p2phealth", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthoutboundsuccess", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_p2phealth", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthqueuecounts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_p2phealth", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthrelaymode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_p2phealth", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthrelaypullfailure", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_p2phealth", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthrelaypullsuccess", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_p2phealth", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthselftest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_p2phealth", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthserverfailed", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_p2phealth", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthserverstarted", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_p2phealth", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_subscribep2phealth", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L144", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthcoordinationconnected", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_notifylisteners", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthcoordinationdisconnected", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_notifylisteners", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L154", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthcoordinationerror", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_notifylisteners", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L159", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthcoordinationlastpush", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_notifylisteners", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthcoordinationreconnectattempts", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_notifylisteners", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthoutboundfailure", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_notifylisteners", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthoutboundsuccess", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_notifylisteners", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthqueuecounts", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_notifylisteners", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthrelaymode", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_notifylisteners", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthrelaypullfailure", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_notifylisteners", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthrelaypullsuccess", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_notifylisteners", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthselftest", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_notifylisteners", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthserverfailed", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_notifylisteners", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthserverstarted", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_notifylisteners", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_p2phealth_subscribep2phealth", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_getp2phealth", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthrelaypullsuccess", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L153", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull_pullfromrelay", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthrelaypullsuccess" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthrelaypullfailure", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull_pullfromrelay", + "target": "apps_electron_vite_project_electron_main_p2p_p2phealth_setp2phealthrelaypullfailure" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/peerDeliveryAck.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_peerdeliveryack", + "target": "apps_electron_vite_project_electron_main_p2p_peerdeliveryack_deliveryackurlfromingesturl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/peerDeliveryAck.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_peerdeliveryack", + "target": "apps_electron_vite_project_electron_main_p2p_peerdeliveryack_isdirectbeapingestendpoint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/peerDeliveryAck.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_peerdeliveryack", + "target": "apps_electron_vite_project_electron_main_p2p_peerdeliveryack_postpeerdeliveryacktosender", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/peerDeliveryAck.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_peerdeliveryack", + "target": "apps_electron_vite_project_electron_main_p2p_peerdeliveryack_resolvesenderdeliveryackendpoint", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull", + "target": "apps_electron_vite_project_electron_main_p2p_peerdeliveryack", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/peerDeliveryAck.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_peerdeliveryack_deliveryackurlfromingesturl", + "target": "apps_electron_vite_project_electron_main_p2p_peerdeliveryack_isdirectbeapingestendpoint", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/peerDeliveryAck.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_peerdeliveryack_resolvesenderdeliveryackendpoint", + "target": "apps_electron_vite_project_electron_main_p2p_peerdeliveryack_deliveryackurlfromingesturl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/peerDeliveryAck.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_peerdeliveryack_postpeerdeliveryacktosender", + "target": "apps_electron_vite_project_electron_main_p2p_peerdeliveryack_resolvesenderdeliveryackendpoint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull", + "target": "apps_electron_vite_project_electron_main_p2p_peerdeliveryack_postpeerdeliveryacktosender", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L244", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull_pullfromrelay", + "target": "apps_electron_vite_project_electron_main_p2p_peerdeliveryack_postpeerdeliveryacktosender" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/rateLimiter.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_ratelimiter", + "target": "apps_electron_vite_project_electron_main_p2p_ratelimiter_authfailcounts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/rateLimiter.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_ratelimiter", + "target": "apps_electron_vite_project_electron_main_p2p_ratelimiter_checkauthfaillimit", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/rateLimiter.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_ratelimiter", + "target": "apps_electron_vite_project_electron_main_p2p_ratelimiter_checkhandshakelimit", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/rateLimiter.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_ratelimiter", + "target": "apps_electron_vite_project_electron_main_p2p_ratelimiter_checkiplimit", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/rateLimiter.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_ratelimiter", + "target": "apps_electron_vite_project_electron_main_p2p_ratelimiter_entry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/rateLimiter.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_ratelimiter", + "target": "apps_electron_vite_project_electron_main_p2p_ratelimiter_handshake_limit_private_lan", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/rateLimiter.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_ratelimiter", + "target": "apps_electron_vite_project_electron_main_p2p_ratelimiter_handshake_limit_public", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/rateLimiter.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_ratelimiter", + "target": "apps_electron_vite_project_electron_main_p2p_ratelimiter_handshakecounts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/rateLimiter.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_ratelimiter", + "target": "apps_electron_vite_project_electron_main_p2p_ratelimiter_ip_limit_private_lan", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/rateLimiter.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_ratelimiter", + "target": "apps_electron_vite_project_electron_main_p2p_ratelimiter_ip_limit_public", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/rateLimiter.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_ratelimiter", + "target": "apps_electron_vite_project_electron_main_p2p_ratelimiter_ipcounts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/rateLimiter.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_ratelimiter", + "target": "apps_electron_vite_project_electron_main_p2p_ratelimiter_isclientipprivatelan", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/rateLimiter.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_ratelimiter", + "target": "apps_electron_vite_project_electron_main_p2p_ratelimiter_prune", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/rateLimiter.ts", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_ratelimiter", + "target": "apps_electron_vite_project_electron_main_p2p_ratelimiter_recordauthfailure", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/rateLimiter.ts", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_ratelimiter", + "target": "apps_electron_vite_project_electron_main_p2p_ratelimiter_resetratelimitsfortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/rateLimiter.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_ratelimiter", + "target": "apps_electron_vite_project_electron_main_p2p_ratelimiter_setforcepublicp2pratelimitsfortests", + "confidence_score": 1.0 + }, + { + "relation": "cites", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/rateLimiter.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_ratelimiter", + "target": "apps_electron_vite_project_electron_main_p2p_ratelimiter_ts_docref_rfc_1918", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/rateLimiter.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_ratelimiter_checkhandshakelimit", + "target": "apps_electron_vite_project_electron_main_p2p_ratelimiter_prune", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/rateLimiter.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_ratelimiter_checkiplimit", + "target": "apps_electron_vite_project_electron_main_p2p_ratelimiter_prune", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayDeviceBinding.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaydevicebinding", + "target": "apps_electron_vite_project_electron_main_p2p_relaydevicebinding_getcanonicalrelaydeviceid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayDeviceBinding.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaydevicebinding", + "target": "apps_electron_vite_project_electron_main_p2p_relaydevicebinding_logdeviceidbinding", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayIdentity.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relayidentity_test", + "target": "apps_electron_vite_project_electron_main_p2p_relayidentity", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayIdentity.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relayidentity_test", + "target": "apps_electron_vite_project_electron_main_p2p_relayidentity_getrelayuseridforregistry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayIdentity.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relayidentity", + "target": "apps_electron_vite_project_electron_main_p2p_relayidentity_coordinationregistryuseridsforsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayIdentity.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relayidentity", + "target": "apps_electron_vite_project_electron_main_p2p_relayidentity_decodejwtsubforlogs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayIdentity.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relayidentity", + "target": "apps_electron_vite_project_electron_main_p2p_relayidentity_getrelayuseridforregistry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayIdentity.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relayidentity", + "target": "apps_electron_vite_project_electron_main_p2p_relayidentity_relayidentitysnapshot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayIdentity.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relayidentity", + "target": "apps_electron_vite_project_electron_main_p2p_relayidentity_relaysessionlike", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayIdentity.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relayidentity", + "target": "apps_electron_vite_project_src_auth_session", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayIdentity.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relayidentity", + "target": "apps_electron_vite_project_src_auth_session_sessionuserinfo", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relaySync.ts", + "source_location": "L263", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaysync_reregisterinternalhandshakeaftercoordinationp2psignal403", + "target": "apps_electron_vite_project_electron_main_p2p_relayidentity", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayIdentity.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relayidentity_coordinationregistryuseridsforsession", + "target": "apps_electron_vite_project_electron_main_p2p_relayidentity_getrelayuseridforregistry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayIdentity.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relayidentity_relayidentitysnapshot", + "target": "apps_electron_vite_project_electron_main_p2p_relayidentity_getrelayuseridforregistry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull", + "target": "apps_electron_vite_project_electron_main_p2p_relaypull_ensurehandshakemigration", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull", + "target": "apps_electron_vite_project_electron_main_p2p_relaypull_isduplicateprimarykey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull", + "target": "apps_electron_vite_project_electron_main_p2p_relaypull_maperrortoreasoncode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull", + "target": "apps_electron_vite_project_electron_main_p2p_relaypull_migrateddbs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull", + "target": "apps_electron_vite_project_electron_main_p2p_relaypull_pullfromrelay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L447", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull", + "target": "apps_electron_vite_project_electron_main_p2p_relaypull_registerdevicerolewithrelay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L422", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull", + "target": "apps_electron_vite_project_electron_main_p2p_relaypull_sendack", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_iseffectivesandboxnode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull", + "target": "apps_electron_vite_project_electron_main_vault_capabilitybroker", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull", + "target": "apps_electron_vite_project_electron_main_vault_capabilitybroker_reasoncode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L257", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull_pullfromrelay", + "target": "apps_electron_vite_project_electron_main_p2p_relaypull_maperrortoreasoncode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L202", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull_pullfromrelay", + "target": "apps_electron_vite_project_electron_main_p2p_relaypull_isduplicateprimarykey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L157", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull_pullfromrelay", + "target": "apps_electron_vite_project_electron_main_p2p_relaypull_ensurehandshakemigration", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L161", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull_pullfromrelay", + "target": "apps_electron_vite_project_electron_main_p2p_relaypull_sendack", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/relayPull.ts", + "source_location": "L482", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaypull_registerdevicerolewithrelay", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_iseffectivesandboxnode" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relaySync.ts", + "source_location": "L228", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaysync", + "target": "apps_electron_vite_project_electron_main_p2p_relaysync_coordinationp2psignal403isregistrydrift", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relaySync.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaysync", + "target": "apps_electron_vite_project_electron_main_p2p_relaysync_decodejwtaud", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relaySync.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaysync", + "target": "apps_electron_vite_project_electron_main_p2p_relaysync_decodejwtsub", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relaySync.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaysync", + "target": "apps_electron_vite_project_electron_main_p2p_relaysync_registerhandshakewithrelay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relaySync.ts", + "source_location": "L221", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaysync", + "target": "apps_electron_vite_project_electron_main_p2p_relaysync_registry_drift_p2p_signal_errors", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relaySync.ts", + "source_location": "L243", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaysync", + "target": "apps_electron_vite_project_electron_main_p2p_relaysync_reregisterinternalhandshakeaftercoordinationp2psignal403", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relaySync.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaysync_registerhandshakewithrelay", + "target": "apps_electron_vite_project_electron_main_p2p_relaysync_decodejwtaud", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relaySync.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaysync_registerhandshakewithrelay", + "target": "apps_electron_vite_project_electron_main_p2p_relaysync_decodejwtsub", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/p2p/relaySync.ts", + "source_location": "L270", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaysync_reregisterinternalhandshakeaftercoordinationp2psignal403", + "target": "apps_electron_vite_project_electron_main_p2p_relaysync_registerhandshakewithrelay", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/p2p/relaySync.ts", + "source_location": "L233", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_p2p_relaysync_coordinationp2psignal403isregistrydrift", + "target": "apps_electron_vite_project_electron_main_p2p_relaysync_registry_drift_p2p_signal_errors" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/pdfjsWorkerSrc.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_pdfjsworkersrc", + "target": "apps_electron_vite_project_electron_main_pdfjsworkersrc_require", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/pdfjsWorkerSrc.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_pdfjsworkersrc", + "target": "apps_electron_vite_project_electron_main_pdfjsworkersrc_resolvepdfjsdistworkerfileurl", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob", + "target": "apps_electron_vite_project_electron_main_pdfjsworkersrc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L279", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_extracttextocr", + "target": "apps_electron_vite_project_electron_main_pdfjsworkersrc_require" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L350", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_extracttextvision", + "target": "apps_electron_vite_project_electron_main_pdfjsworkersrc_require" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob", + "target": "apps_electron_vite_project_electron_main_pdfjsworkersrc_resolvepdfjsdistworkerfileurl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_loadpdfjs", + "target": "apps_electron_vite_project_electron_main_pdfjsworkersrc_resolvepdfjsdistworkerfileurl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/platform.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_platform", + "target": "apps_electron_vite_project_electron_main_platform_getp2ptransportpagepath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/platform.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_platform", + "target": "apps_electron_vite_project_electron_main_platform_getrendererindexpath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/platform.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_platform", + "target": "apps_electron_vite_project_electron_main_platform_islinux", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/platform.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_platform", + "target": "apps_electron_vite_project_electron_main_platform_ismac", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/platform.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_platform", + "target": "apps_electron_vite_project_electron_main_platform_iswindows", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/db.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_db", + "target": "apps_electron_vite_project_electron_main_policy_db_closepolicydb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/db.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_db", + "target": "apps_electron_vite_project_electron_main_policy_db_getactivelocalpolicy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/db.ts", + "source_location": "L189", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_db", + "target": "apps_electron_vite_project_electron_main_policy_db_getalladminpackages", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/db.ts", + "source_location": "L237", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_db", + "target": "apps_electron_vite_project_electron_main_policy_db_getallpolicynodes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/db.ts", + "source_location": "L286", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_db", + "target": "apps_electron_vite_project_electron_main_policy_db_getconsentgrantsforsender", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/db.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_db", + "target": "apps_electron_vite_project_electron_main_policy_db_getdbpath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/db.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_db", + "target": "apps_electron_vite_project_electron_main_policy_db_initpolicydb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/db.ts", + "source_location": "L310", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_db", + "target": "apps_electron_vite_project_electron_main_policy_db_revokeconsentgrant", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/db.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_db", + "target": "apps_electron_vite_project_electron_main_policy_db_saveadminpackage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/db.ts", + "source_location": "L255", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_db", + "target": "apps_electron_vite_project_electron_main_policy_db_saveconsentgrant", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/db.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_db", + "target": "apps_electron_vite_project_electron_main_policy_db_savelocalpolicy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/db.ts", + "source_location": "L215", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_db", + "target": "apps_electron_vite_project_electron_main_policy_db_savepolicynode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/db.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_db", + "target": "apps_electron_vite_project_electron_main_policy_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/db.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_db", + "target": "apps_electron_vite_project_electron_main_policy_types_adminpolicypackage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/db.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_db", + "target": "apps_electron_vite_project_electron_main_policy_types_policynode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/db.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_db", + "target": "ref_better_sqlite3", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/index.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_index", + "target": "apps_electron_vite_project_electron_main_policy_db", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/db.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_db_initpolicydb", + "target": "apps_electron_vite_project_electron_main_policy_db_getdbpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/db.ts", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_db_getactivelocalpolicy", + "target": "apps_electron_vite_project_electron_main_policy_db_initpolicydb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/db.ts", + "source_location": "L190", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_db_getalladminpackages", + "target": "apps_electron_vite_project_electron_main_policy_db_initpolicydb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/db.ts", + "source_location": "L238", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_db_getallpolicynodes", + "target": "apps_electron_vite_project_electron_main_policy_db_initpolicydb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/db.ts", + "source_location": "L287", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_db_getconsentgrantsforsender", + "target": "apps_electron_vite_project_electron_main_policy_db_initpolicydb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/db.ts", + "source_location": "L311", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_db_revokeconsentgrant", + "target": "apps_electron_vite_project_electron_main_policy_db_initpolicydb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/db.ts", + "source_location": "L165", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_db_saveadminpackage", + "target": "apps_electron_vite_project_electron_main_policy_db_initpolicydb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/db.ts", + "source_location": "L264", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_db_saveconsentgrant", + "target": "apps_electron_vite_project_electron_main_policy_db_initpolicydb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/db.ts", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_db_savelocalpolicy", + "target": "apps_electron_vite_project_electron_main_policy_db_initpolicydb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/db.ts", + "source_location": "L216", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_db_savepolicynode", + "target": "apps_electron_vite_project_electron_main_policy_db_initpolicydb", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/index.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_index", + "target": "apps_electron_vite_project_electron_main_policy_service", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_index", + "target": "apps_electron_vite_project_electron_main_policy_types", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/service.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_service", + "target": "apps_electron_vite_project_electron_main_policy_service_appliedpackages", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/service.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_service", + "target": "apps_electron_vite_project_electron_main_policy_service_applyadminpackage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/service.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_service", + "target": "apps_electron_vite_project_electron_main_policy_service_createadminpackage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/service.ts", + "source_location": "L178", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_service", + "target": "apps_electron_vite_project_electron_main_policy_service_getappliedpackages", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/service.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_service", + "target": "apps_electron_vite_project_electron_main_policy_service_getlocalpolicy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/service.ts", + "source_location": "L157", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_service", + "target": "apps_electron_vite_project_electron_main_policy_service_getnetworkpolicy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/service.ts", + "source_location": "L235", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_service", + "target": "apps_electron_vite_project_electron_main_policy_service_getpendingpackagesfornode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/service.ts", + "source_location": "L228", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_service", + "target": "apps_electron_vite_project_electron_main_policy_service_getregisterednodes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/service.ts", + "source_location": "L276", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_service", + "target": "apps_electron_vite_project_electron_main_policy_service_getsyncstatussummary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/service.ts", + "source_location": "L255", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_service", + "target": "apps_electron_vite_project_electron_main_policy_service_marknodesynced", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/service.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_service", + "target": "apps_electron_vite_project_electron_main_policy_service_registerednodes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/service.ts", + "source_location": "L202", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_service", + "target": "apps_electron_vite_project_electron_main_policy_service_registernode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/service.ts", + "source_location": "L185", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_service", + "target": "apps_electron_vite_project_electron_main_policy_service_rollbacktopackage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/service.ts", + "source_location": "L171", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_service", + "target": "apps_electron_vite_project_electron_main_policy_service_setlocalpolicy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/service.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_service", + "target": "apps_electron_vite_project_electron_main_policy_service_signadminpackage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/service.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_service", + "target": "apps_electron_vite_project_electron_main_policy_service_verifyadminpackage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/service.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_service", + "target": "apps_electron_vite_project_electron_main_policy_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/service.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_service", + "target": "apps_electron_vite_project_electron_main_policy_types_adminpolicypackage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/service.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_service", + "target": "apps_electron_vite_project_electron_main_policy_types_adminpolicypackageschema", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/service.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_service", + "target": "apps_electron_vite_project_electron_main_policy_types_policyapplicationresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/service.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_service", + "target": "apps_electron_vite_project_electron_main_policy_types_policynode", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/policy/service.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_service_createadminpackage", + "target": "apps_electron_vite_project_electron_main_policy_types_adminpolicypackageschema" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/service.ts", + "source_location": "L196", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_service_rollbacktopackage", + "target": "apps_electron_vite_project_electron_main_policy_service_applyadminpackage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/types.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_types", + "target": "apps_electron_vite_project_electron_main_policy_types_adminpolicypackage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/types.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_types", + "target": "apps_electron_vite_project_electron_main_policy_types_adminpolicypackageschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/types.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_types", + "target": "apps_electron_vite_project_electron_main_policy_types_policyapplicationresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/types.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_types", + "target": "apps_electron_vite_project_electron_main_policy_types_policynode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/policy/types.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_policy_types", + "target": "apps_electron_vite_project_electron_main_policy_types_policysyncstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/projects/optimizerHttpInvoke.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_projects_optimizerhttpinvoke", + "target": "apps_electron_vite_project_electron_main_projects_optimizerhttpinvoke_bridgeresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/projects/optimizerHttpInvoke.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_projects_optimizerhttpinvoke", + "target": "apps_electron_vite_project_electron_main_projects_optimizerhttpinvoke_invokeoptimizergetstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/projects/optimizerHttpInvoke.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_projects_optimizerhttpinvoke", + "target": "apps_electron_vite_project_electron_main_projects_optimizerhttpinvoke_invokeoptimizersetcontinuous", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/projects/optimizerHttpInvoke.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_projects_optimizerhttpinvoke", + "target": "apps_electron_vite_project_electron_main_projects_optimizerhttpinvoke_invokeoptimizersnapshot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/projects/triggerProjectList.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_projects_triggerprojectlist", + "target": "apps_electron_vite_project_electron_main_projects_triggerprojectlist_readtriggerlistfromrenderer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/projects/triggerProjectList.ts", + "source_location": "L156", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_projects_triggerprojectlist", + "target": "apps_electron_vite_project_electron_main_projects_triggerprojectlist_readtriggerprojectentriesfromrenderer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/projects/triggerProjectList.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_projects_triggerprojectlist", + "target": "apps_electron_vite_project_electron_main_projects_triggerprojectlist_triggercomposerentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/projects/triggerProjectList.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_projects_triggerprojectlist", + "target": "apps_electron_vite_project_electron_main_projects_triggerprojectlist_triggercomposershortcutid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/projects/triggerProjectList.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_projects_triggerprojectlist", + "target": "apps_electron_vite_project_electron_main_projects_triggerprojectlist_triggerlistpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/projects/triggerProjectList.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_projects_triggerprojectlist", + "target": "apps_electron_vite_project_electron_main_projects_triggerprojectlist_triggerprojectentry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/projects/triggerProjectList.ts", + "source_location": "L157", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_projects_triggerprojectlist_readtriggerprojectentriesfromrenderer", + "target": "apps_electron_vite_project_electron_main_projects_triggerprojectlist_readtriggerlistfromrenderer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/quarantine-blob-storage/index.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_quarantine_blob_storage_index", + "target": "apps_electron_vite_project_electron_main_quarantine_blob_storage_index_deletequarantineblob", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/quarantine-blob-storage/index.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_quarantine_blob_storage_index", + "target": "apps_electron_vite_project_electron_main_quarantine_blob_storage_index_getquarantineblobsbasepath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/quarantine-blob-storage/index.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_quarantine_blob_storage_index", + "target": "apps_electron_vite_project_electron_main_quarantine_blob_storage_index_quarantineblobfile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/quarantine-blob-storage/index.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_quarantine_blob_storage_index", + "target": "apps_electron_vite_project_electron_main_quarantine_blob_storage_index_quarantinereadresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/quarantine-blob-storage/index.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_quarantine_blob_storage_index", + "target": "apps_electron_vite_project_electron_main_quarantine_blob_storage_index_quarantinewriteresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/quarantine-blob-storage/index.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_quarantine_blob_storage_index", + "target": "apps_electron_vite_project_electron_main_quarantine_blob_storage_index_readquarantineblob", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/quarantine-blob-storage/index.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_quarantine_blob_storage_index", + "target": "apps_electron_vite_project_electron_main_quarantine_blob_storage_index_writequarantineblob", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/quarantine-encrypt/index.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_quarantine_encrypt_index", + "target": "apps_electron_vite_project_electron_main_quarantine_blob_storage_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/quarantine-encrypt/index.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_quarantine_encrypt_index", + "target": "apps_electron_vite_project_electron_main_quarantine_blob_storage_index_quarantineblobfile", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/quarantine-blob-storage/index.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_quarantine_blob_storage_index_deletequarantineblob", + "target": "apps_electron_vite_project_electron_main_quarantine_blob_storage_index_getquarantineblobsbasepath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/quarantine-blob-storage/index.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_quarantine_blob_storage_index_readquarantineblob", + "target": "apps_electron_vite_project_electron_main_quarantine_blob_storage_index_getquarantineblobsbasepath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/quarantine-blob-storage/index.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_quarantine_blob_storage_index_writequarantineblob", + "target": "apps_electron_vite_project_electron_main_quarantine_blob_storage_index_getquarantineblobsbasepath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/quarantine-encrypt/index.ts", + "source_location": "L137", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_quarantine_encrypt_index", + "target": "apps_electron_vite_project_electron_main_quarantine_encrypt_index_decryptquarantineblob", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/quarantine-encrypt/index.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_quarantine_encrypt_index", + "target": "apps_electron_vite_project_electron_main_quarantine_encrypt_index_encryptforquarantine", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/quarantine-encrypt/index.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_quarantine_encrypt_index", + "target": "apps_electron_vite_project_electron_main_quarantine_encrypt_index_quarantinedecryptresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/quarantine-encrypt/index.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_quarantine_encrypt_index", + "target": "apps_electron_vite_project_electron_main_quarantine_encrypt_index_quarantineencryptresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/retention/__tests__/retentionJob.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_retention_tests_retentionjob_test", + "target": "apps_electron_vite_project_electron_main_retention_retentionconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/retention/__tests__/retentionJob.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_retention_tests_retentionjob_test", + "target": "apps_electron_vite_project_electron_main_retention_retentionconfig_retentionconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/retention/__tests__/retentionJob.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_retention_tests_retentionjob_test", + "target": "apps_electron_vite_project_electron_main_retention_retentionjob", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/retention/__tests__/retentionJob.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_retention_tests_retentionjob_test", + "target": "apps_electron_vite_project_electron_main_retention_retentionjob_retentionrunresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/retention/__tests__/retentionJob.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_retention_tests_retentionjob_test", + "target": "apps_electron_vite_project_electron_main_retention_retentionjob_runretentionjob", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/retention/__tests__/retentionJob.test.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_retention_tests_retentionjob_test", + "target": "apps_electron_vite_project_electron_main_retention_tests_retentionjob_test_addauditrows", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/retention/__tests__/retentionJob.test.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_retention_tests_retentionjob_test", + "target": "apps_electron_vite_project_electron_main_retention_tests_retentionjob_test_addquarantinerows", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/retention/__tests__/retentionJob.test.ts", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_retention_tests_retentionjob_test", + "target": "apps_electron_vite_project_electron_main_retention_tests_retentionjob_test_addsandboxrows", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/retention/__tests__/retentionJob.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_retention_tests_retentionjob_test", + "target": "apps_electron_vite_project_electron_main_retention_tests_retentionjob_test_createretentiondb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/retention/__tests__/retentionJob.test.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_retention_tests_retentionjob_test", + "target": "apps_electron_vite_project_electron_main_retention_tests_retentionjob_test_daysagoiso", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/retention/__tests__/retentionJob.test.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_retention_tests_retentionjob_test", + "target": "apps_electron_vite_project_electron_main_retention_tests_retentionjob_test_testconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/retention/retentionConfig.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_retention_retentionconfig", + "target": "apps_electron_vite_project_electron_main_retention_retentionconfig_default_retention_config", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/retention/retentionConfig.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_retention_retentionconfig", + "target": "apps_electron_vite_project_electron_main_retention_retentionconfig_retentionconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/retention/retentionJob.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_retention_retentionjob", + "target": "apps_electron_vite_project_electron_main_retention_retentionconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/retention/retentionJob.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_retention_retentionjob", + "target": "apps_electron_vite_project_electron_main_retention_retentionconfig_retentionconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/retention/retentionJob.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_retention_retentionjob", + "target": "apps_electron_vite_project_electron_main_retention_retentionconfig_default_retention_config", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/retention/retentionJob.ts", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_retention_retentionjob", + "target": "apps_electron_vite_project_electron_main_retention_retentionjob_batchdelete", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/retention/retentionJob.ts", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_retention_retentionjob", + "target": "apps_electron_vite_project_electron_main_retention_retentionjob_daysago", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/retention/retentionJob.ts", + "source_location": "L161", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_retention_retentionjob", + "target": "apps_electron_vite_project_electron_main_retention_retentionjob_enforcerowcap", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/retention/retentionJob.ts", + "source_location": "L188", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_retention_retentionjob", + "target": "apps_electron_vite_project_electron_main_retention_retentionjob_enforcerowcapfiltered", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/retention/retentionJob.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_retention_retentionjob", + "target": "apps_electron_vite_project_electron_main_retention_retentionjob_purgeauditlog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/retention/retentionJob.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_retention_retentionjob", + "target": "apps_electron_vite_project_electron_main_retention_retentionjob_purgequarantine", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/retention/retentionJob.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_retention_retentionjob", + "target": "apps_electron_vite_project_electron_main_retention_retentionjob_purgesandboxqueue", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/retention/retentionJob.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_retention_retentionjob", + "target": "apps_electron_vite_project_electron_main_retention_retentionjob_retentionrunresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/retention/retentionJob.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_retention_retentionjob", + "target": "apps_electron_vite_project_electron_main_retention_retentionjob_runretentionjob", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/retention/retentionJob.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_retention_retentionjob", + "target": "apps_electron_vite_project_electron_main_retention_retentionjob_startretentionschedule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/retention/retentionJob.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_retention_retentionjob", + "target": "apps_electron_vite_project_electron_main_retention_retentionjob_stopretentionschedule", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/retention/retentionJob.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_retention_retentionjob_startretentionschedule", + "target": "apps_electron_vite_project_electron_main_retention_retentionjob_runretentionjob", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/retention/retentionJob.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_retention_retentionjob_runretentionjob", + "target": "apps_electron_vite_project_electron_main_retention_retentionjob_purgeauditlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/retention/retentionJob.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_retention_retentionjob_runretentionjob", + "target": "apps_electron_vite_project_electron_main_retention_retentionjob_purgequarantine", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/retention/retentionJob.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_retention_retentionjob_runretentionjob", + "target": "apps_electron_vite_project_electron_main_retention_retentionjob_purgesandboxqueue", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/retention/retentionJob.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_retention_retentionjob_purgeauditlog", + "target": "apps_electron_vite_project_electron_main_retention_retentionjob_batchdelete", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/retention/retentionJob.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_retention_retentionjob_purgeauditlog", + "target": "apps_electron_vite_project_electron_main_retention_retentionjob_daysago", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/retention/retentionJob.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_retention_retentionjob_purgeauditlog", + "target": "apps_electron_vite_project_electron_main_retention_retentionjob_enforcerowcap", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/retention/retentionJob.ts", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_retention_retentionjob_purgequarantine", + "target": "apps_electron_vite_project_electron_main_retention_retentionjob_batchdelete", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/retention/retentionJob.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_retention_retentionjob_purgequarantine", + "target": "apps_electron_vite_project_electron_main_retention_retentionjob_daysago", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/retention/retentionJob.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_retention_retentionjob_purgesandboxqueue", + "target": "apps_electron_vite_project_electron_main_retention_retentionjob_batchdelete", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/retention/retentionJob.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_retention_retentionjob_purgesandboxqueue", + "target": "apps_electron_vite_project_electron_main_retention_retentionjob_daysago", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/retention/retentionJob.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_retention_retentionjob_purgesandboxqueue", + "target": "apps_electron_vite_project_electron_main_retention_retentionjob_enforcerowcapfiltered", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/__tests__/sandboxInterface.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_tests_sandboxinterface_test", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxclient", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/__tests__/sandboxInterface.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_tests_sandboxinterface_test", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxclient_consumeresults", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/__tests__/sandboxInterface.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_tests_sandboxinterface_test", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxclient_enqueuetask", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/__tests__/sandboxInterface.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_tests_sandboxinterface_test", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxclient_resetprocessor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/__tests__/sandboxInterface.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_tests_sandboxinterface_test", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxclient_settaskprocessor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/__tests__/sandboxInterface.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_tests_sandboxinterface_test", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxservicestub", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/__tests__/sandboxInterface.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_tests_sandboxinterface_test", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxservicestub_processtask", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/__tests__/sandboxInterface.test.ts", + "source_location": "L223", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_tests_sandboxinterface_test", + "target": "apps_electron_vite_project_electron_main_sandbox_tests_sandboxinterface_test_collectproductionfiles", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/__tests__/sandboxInterface.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_tests_sandboxinterface_test", + "target": "apps_electron_vite_project_electron_main_sandbox_tests_sandboxinterface_test_createinmemorydb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/__tests__/sandboxInterface.test.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_tests_sandboxinterface_test", + "target": "apps_electron_vite_project_electron_main_sandbox_tests_sandboxinterface_test_maketask", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/__tests__/sandboxInterface.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_tests_sandboxinterface_test", + "target": "apps_electron_vite_project_electron_main_sandbox_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/__tests__/sandboxInterface.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_tests_sandboxinterface_test", + "target": "apps_electron_vite_project_electron_main_sandbox_types_sandbox_constants", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/__tests__/sandboxInterface.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_tests_sandboxinterface_test", + "target": "apps_electron_vite_project_electron_main_sandbox_types_sandboxresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/__tests__/sandboxInterface.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_tests_sandboxinterface_test", + "target": "apps_electron_vite_project_electron_main_sandbox_types_sandboxtask", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/__tests__/sandboxOutboundPolicy.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_tests_sandboxoutboundpolicy_test", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/__tests__/sandboxOutboundPolicy.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_tests_sandboxoutboundpolicy_test", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_assertsandboxdataegressallowed", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/__tests__/sandboxOutboundPolicy.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_tests_sandboxoutboundpolicy_test", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_assertsandboxmayreceivesealedservicerpcinnertype", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/__tests__/sandboxOutboundPolicy.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_tests_sandboxoutboundpolicy_test", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_assertsandboxmaysealservicerpcinnertype", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/__tests__/sandboxOutboundPolicy.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_tests_sandboxoutboundpolicy_test", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_deriveoutboundcapsuletype", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/__tests__/sandboxOutboundPolicy.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_tests_sandboxoutboundpolicy_test", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_iseffectivesandboxnode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/__tests__/sandboxOutboundPolicy.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_tests_sandboxoutboundpolicy_test", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_sandbox_data_egress_forbidden", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/__tests__/sandboxOutboundPolicy.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_tests_sandboxoutboundpolicy_test", + "target": "apps_electron_vite_project_electron_main_sandbox_tests_sandboxoutboundpolicy_test_getorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/__tests__/sandboxOutboundPolicy.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_tests_sandboxoutboundpolicy_test", + "target": "apps_electron_vite_project_electron_main_sandbox_tests_sandboxoutboundpolicy_test_ledgerproveslocalsandboxtohostfromdb", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/__tests__/sandboxProcess.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_tests_sandboxprocess_test", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxclient", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/__tests__/sandboxProcess.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_tests_sandboxprocess_test", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxclient_consumeresults", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/__tests__/sandboxProcess.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_tests_sandboxprocess_test", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxclient_enqueuetask", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/__tests__/sandboxProcess.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_tests_sandboxprocess_test", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxclient_resetprocessor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/__tests__/sandboxProcess.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_tests_sandboxprocess_test", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxclient_settaskprocessor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/__tests__/sandboxProcess.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_tests_sandboxprocess_test", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxworker", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/__tests__/sandboxProcess.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_tests_sandboxprocess_test", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxworker_processtaskinworker", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/__tests__/sandboxProcess.test.ts", + "source_location": "L161", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_tests_sandboxprocess_test", + "target": "apps_electron_vite_project_electron_main_sandbox_tests_sandboxprocess_test_collectprodfiles", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/__tests__/sandboxProcess.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_tests_sandboxprocess_test", + "target": "apps_electron_vite_project_electron_main_sandbox_tests_sandboxprocess_test_createprocesstestdb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/__tests__/sandboxProcess.test.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_tests_sandboxprocess_test", + "target": "apps_electron_vite_project_electron_main_sandbox_tests_sandboxprocess_test_maketask", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/__tests__/sandboxProcess.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_tests_sandboxprocess_test", + "target": "apps_electron_vite_project_electron_main_sandbox_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/__tests__/sandboxProcess.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_tests_sandboxprocess_test", + "target": "apps_electron_vite_project_electron_main_sandbox_types_sandboxresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/__tests__/sandboxProcess.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_tests_sandboxprocess_test", + "target": "apps_electron_vite_project_electron_main_sandbox_types_sandboxtask", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxClient.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxclient", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxclient_consumeresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxClient.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxclient", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxclient_consumeresults", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxClient.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxclient", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxclient_enqueueresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxClient.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxclient", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxclient_enqueuetask", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxClient.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxclient", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxclient_resetprocessor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxClient.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxclient", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxclient_settaskprocessor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxClient.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxclient", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxclient_taskprocessor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxClient.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxclient", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxclient_validateresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxClient.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxclient", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxclient_validatetask", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxClient.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxclient", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxprocessbridge", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxClient.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxclient", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxprocessbridge_processtaskviaworker", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxClient.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxclient", + "target": "apps_electron_vite_project_electron_main_sandbox_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxClient.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxclient", + "target": "apps_electron_vite_project_electron_main_sandbox_types_sandbox_constants", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxClient.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxclient", + "target": "apps_electron_vite_project_electron_main_sandbox_types_sandboxresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxClient.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxclient", + "target": "apps_electron_vite_project_electron_main_sandbox_types_sandboxtask", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxClient.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxclient_enqueuetask", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxclient_validatetask", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxClient.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxclient_consumeresults", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxclient_validateresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxClient.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxclient_consumeresult", + "target": "apps_electron_vite_project_electron_main_sandbox_types_sandboxresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxOutboundPolicy.ts", + "source_location": "L209", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_assertsandboxdataegressallowed", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxOutboundPolicy.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_assertsandboxmayreceivesealedservicerpcinnertype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxOutboundPolicy.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_assertsandboxmaysealservicerpcinnertype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxOutboundPolicy.ts", + "source_location": "L189", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_deny", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxOutboundPolicy.ts", + "source_location": "L232", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_deriveoutboundcapsuletype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxOutboundPolicy.ts", + "source_location": "L253", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_iseffectivesandboxnode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxOutboundPolicy.ts", + "source_location": "L268", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_resolveeffectivesandboxnode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxOutboundPolicy.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_sandbox_data_egress_forbidden", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxOutboundPolicy.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_sandbox_permitted_sealed_service_rpc_inbound_inner_types", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxOutboundPolicy.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_sandbox_permitted_sealed_service_rpc_inner_types", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxOutboundPolicy.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_sandboxegressrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxOutboundPolicy.ts", + "source_location": "L175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_sandboxegressverdict", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxOutboundPolicy.ts", + "source_location": "L159", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_sandboxoutboundoperation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxOutboundPolicy.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_sandboxsealedservicerpcinboundinnerverdict", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxOutboundPolicy.ts", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_sandboxsealedservicerpcinnerverdict", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxOutboundPolicy.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_assertsandboxmayreceivesealedservicerpcinnertype", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_sandbox_permitted_sealed_service_rpc_inbound_inner_types" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxOutboundPolicy.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_assertsandboxmaysealservicerpcinnertype", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_sandbox_permitted_sealed_service_rpc_inner_types" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxOutboundPolicy.ts", + "source_location": "L218", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_assertsandboxdataegressallowed", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_deny", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxOutboundPolicy.ts", + "source_location": "L215", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_assertsandboxdataegressallowed", + "target": "packages_ingestion_core_src_sandboxegressclassification_sandbox_outbound_allowed_types" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxOutboundPolicy.ts", + "source_location": "L279", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_resolveeffectivesandboxnode", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxoutboundpolicy_iseffectivesandboxnode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxProcessBridge.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxprocessbridge", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxprocessbridge_crashresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxProcessBridge.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxprocessbridge", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxprocessbridge_ensureworker", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxProcessBridge.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxprocessbridge", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxprocessbridge_moduledir", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxProcessBridge.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxprocessbridge", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxprocessbridge_processtaskviaworker", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxProcessBridge.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxprocessbridge", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxprocessbridge_setworkerpath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxProcessBridge.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxprocessbridge", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxprocessbridge_shutdownworker", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxProcessBridge.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxprocessbridge", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxprocessbridge_workerpath", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxProcessBridge.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxprocessbridge", + "target": "apps_electron_vite_project_electron_main_sandbox_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxProcessBridge.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxprocessbridge", + "target": "apps_electron_vite_project_electron_main_sandbox_types_sandboxresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxProcessBridge.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxprocessbridge", + "target": "apps_electron_vite_project_electron_main_sandbox_types_sandboxtask", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxProcessBridge.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxprocessbridge_processtaskviaworker", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxprocessbridge_ensureworker", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxProcessBridge.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxprocessbridge_processtaskviaworker", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxprocessbridge_shutdownworker", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxProcessBridge.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxprocessbridge_processtaskviaworker", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxprocessbridge_crashresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxServiceStub.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxservicestub", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxservicestub_processtask", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxServiceStub.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxservicestub", + "target": "apps_electron_vite_project_electron_main_sandbox_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxServiceStub.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxservicestub", + "target": "apps_electron_vite_project_electron_main_sandbox_types_sandboxresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxServiceStub.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxservicestub", + "target": "apps_electron_vite_project_electron_main_sandbox_types_sandboxtask", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxWorker.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxworker", + "target": "apps_electron_vite_project_electron_main_sandbox_sandboxworker_processtaskinworker", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxWorker.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxworker", + "target": "apps_electron_vite_project_electron_main_sandbox_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxWorker.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxworker", + "target": "apps_electron_vite_project_electron_main_sandbox_types_sandboxresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/sandboxWorker.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_sandboxworker", + "target": "apps_electron_vite_project_electron_main_sandbox_types_sandboxtask", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/types.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_types", + "target": "apps_electron_vite_project_electron_main_sandbox_types_sandbox_constants", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/types.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_types", + "target": "apps_electron_vite_project_electron_main_sandbox_types_sandboxconstraints", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/types.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_types", + "target": "apps_electron_vite_project_electron_main_sandbox_types_sandboxfinding", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/types.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_types", + "target": "apps_electron_vite_project_electron_main_sandbox_types_sandboxresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/types.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_types", + "target": "apps_electron_vite_project_electron_main_sandbox_types_sandboxtask", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sandbox/types.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sandbox_types", + "target": "apps_electron_vite_project_electron_main_sandbox_types_sandboxtaskreason", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/b73AttachmentHashVerification.test.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_b73attachmenthashverification_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/b73AttachmentHashVerification.test.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_b73attachmenthashverification_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_bindkeyprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/b73AttachmentHashVerification.test.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_b73attachmenthashverification_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_cleartamperingevents", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/b73AttachmentHashVerification.test.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_b73attachmenthashverification_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_gettamperingevents", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/b73AttachmentHashVerification.test.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_b73attachmenthashverification_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedquery", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/b73AttachmentHashVerification.test.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_b73attachmenthashverification_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_unbindkeyprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/b73AttachmentHashVerification.test.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_b73attachmenthashverification_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_tests_b73attachmenthashverification_test_buildseal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/b73AttachmentHashVerification.test.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_b73attachmenthashverification_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_tests_b73attachmenthashverification_test_db", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/b73AttachmentHashVerification.test.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_b73attachmenthashverification_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_tests_b73attachmenthashverification_test_insertattachment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/b73AttachmentHashVerification.test.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_b73attachmenthashverification_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_tests_b73attachmenthashverification_test_insertsealedmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/b73AttachmentHashVerification.test.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_b73attachmenthashverification_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_tests_b73attachmenthashverification_test_makedb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/b73AttachmentHashVerification.test.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_b73attachmenthashverification_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_tests_b73attachmenthashverification_test_readmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/b73AttachmentHashVerification.test.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_b73attachmenthashverification_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_tests_b73attachmenthashverification_test_req", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/b73AttachmentHashVerification.test.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_b73attachmenthashverification_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_tests_b73attachmenthashverification_test_test_key", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/b73AttachmentHashVerification.test.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_b73attachmenthashverification_test_insertsealedmessage", + "target": "apps_electron_vite_project_electron_main_sealed_storage_tests_b73attachmenthashverification_test_buildseal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/b73AttachmentHashVerification.test.ts", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_b73attachmenthashverification_test_readmessage", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedquery", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/sealedQueryDualProvider.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_sealedquerydualprovider_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/sealedQueryDualProvider.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_sealedquerydualprovider_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_bindkeyprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/sealedQueryDualProvider.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_sealedquerydualprovider_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_cleartamperingevents", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/sealedQueryDualProvider.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_sealedquerydualprovider_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_computeseal", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/sealedQueryDualProvider.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_sealedquerydualprovider_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_iskeyproviderbound", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/sealedQueryDualProvider.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_sealedquerydualprovider_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedquery", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/sealedQueryDualProvider.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_sealedquerydualprovider_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealverificationerror", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/sealedQueryDualProvider.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_sealedquerydualprovider_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_unbindkeyprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/sealedQueryDualProvider.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_sealedquerydualprovider_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_ledgersealkey", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/sealedQueryDualProvider.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_sealedquerydualprovider_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_ledgersealkey_deriveledgersealkey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/sealedQueryDualProvider.test.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_sealedquerydualprovider_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_tests_sealedquerydualprovider_test_bindinneronly", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/sealedQueryDualProvider.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_sealedquerydualprovider_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_tests_sealedquerydualprovider_test_bindouteronly", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/sealedQueryDualProvider.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_sealedquerydualprovider_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_tests_sealedquerydualprovider_test_outer_key", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/sealedQueryDualProvider.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_sealedquerydualprovider_test_bindouteronly", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_bindkeyprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/sealedQueryDualProvider.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_sealedquerydualprovider_test_bindouteronly", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_unbindkeyprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/sealedQueryDualProvider.test.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_sealedquerydualprovider_test_bindinneronly", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_bindkeyprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/sealedQueryDualProvider.test.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_sealedquerydualprovider_test_bindinneronly", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_unbindkeyprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/structural-property.test.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_structural_property_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/structural-property.test.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_structural_property_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_bindkeyprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/structural-property.test.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_structural_property_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_cleartamperingevents", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/structural-property.test.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_structural_property_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_gettamperingevents", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/structural-property.test.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_structural_property_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_iskeyproviderbound", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/structural-property.test.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_structural_property_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_preparesealedinsert", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/structural-property.test.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_structural_property_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_preparesealedupdate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/structural-property.test.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_structural_property_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealbindparams", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/structural-property.test.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_structural_property_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealed_storage_mode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/structural-property.test.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_structural_property_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedquery", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/structural-property.test.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_structural_property_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedstatement", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/structural-property.test.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_structural_property_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealkeyprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/structural-property.test.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_structural_property_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealverificationerror", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/structural-property.test.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_structural_property_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_unbindkeyprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/structural-property.test.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_structural_property_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_verifysealandcontent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/structural-property.test.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_structural_property_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_tests_structural_property_test_database", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/structural-property.test.ts", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_structural_property_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_tests_structural_property_test_makeinmemorydb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/structural-property.test.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_structural_property_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_tests_structural_property_test_maketestsealparams", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/structural-property.test.ts", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_structural_property_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_tests_structural_property_test_mockdb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/structural-property.test.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_structural_property_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_tests_structural_property_test_mockstatement", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/structural-property.test.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_structural_property_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_tests_structural_property_test_req", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/structural-property.test.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_structural_property_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_tests_structural_property_test_statement", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/structural-property.test.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_structural_property_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_tests_structural_property_test_test_key", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/structural-property.test.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_structural_property_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_tests_structural_property_test_test_key_2", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/structural-property.test.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_structural_property_test", + "target": "apps_electron_vite_project_electron_main_validator_process_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/structural-property.test.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_structural_property_test", + "target": "apps_electron_vite_project_electron_main_validator_process_index_computesealfortest", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/structural-property.test.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_structural_property_test", + "target": "apps_electron_vite_project_electron_main_validator_process_index_verifyseal", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/structural-property.test.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_structural_property_test", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/structural-property.test.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_structural_property_test", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/structural-property.test.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_structural_property_test", + "target": "apps_electron_vite_project_electron_main_validator_process_test_session", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/structural-property.test.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_structural_property_test", + "target": "apps_electron_vite_project_electron_main_validator_process_test_session_derivetestsealkey", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/structural-property.test.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_structural_property_test", + "target": "apps_electron_vite_project_electron_main_validator_process_test_session_maketestvalidaterequest", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/structural-property.test.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_structural_property_test", + "target": "apps_electron_vite_project_electron_main_validator_process_test_session_starttestvalidator", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/__tests__/structural-property.test.ts", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_tests_structural_property_test_maketestsealparams", + "target": "apps_electron_vite_project_electron_main_validator_process_index_computesealfortest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_bindkeyprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L479", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_childattachmentdescriptor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L169", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_cleartamperingevents", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L400", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_computeseal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L197", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_enforceorwarn", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L925", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_extractcolumnsfromsetclause", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_getkey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L165", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_gettamperingevents", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_iskeyproviderbound", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_iskeyproviderusable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_keysource", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L853", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_operational_columns_allowlist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L909", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_operationalcolumn", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L440", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_preparesealedinsert", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L1029", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_preparesealedoperationalupdate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L445", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_preparesealedupdate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_providers", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L173", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_recordtamper", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L554", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_rowkeysource", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L513", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_runsealedtransaction", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L270", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealbindparams", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealed_storage_mode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L989", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedoperationalstatement", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L578", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedquery", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L536", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L277", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedrunresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L282", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedstatement", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealkeycopy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealkeynotbounderror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealkeyprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealproviderregistry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealverificationerror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L959", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_splitattoplevelcommas", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L156", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_tamperingevent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_tamperingevents", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_tamperreason", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_unbindkeyprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L225", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_verifyhmacwithprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L802", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_verifysealandcontent", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index", + "target": "ref_better_sqlite3", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_orchestrator", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/__tests__/lifecycle.test.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_tests_lifecycle_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validatorReadiness.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validatorreadiness", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/capabilityBroker.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_capabilitybroker", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "test/harness/sealed-storage.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "test_harness_sealed_storage", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "test/harness/sealed-storage.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "test_harness_sealed_storage_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/__tests__/lifecycle.test.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_tests_lifecycle_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealed_storage_mode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "test/harness/sealed-storage.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "test_harness_sealed_storage", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealkeyprovider", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "test/harness/sealed-storage.ts", + "source_location": "L182", + "weight": 1.0, + "_origin": "ast", + "source": "test_harness_sealed_storage_sealedstoragetestcontext", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealkeyprovider", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index_sealkeynotbounderror", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealkeynotbounderror_constructor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_orchestrator", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_bindkeyprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L207", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator_start", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_bindkeyprovider" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/__tests__/lifecycle.test.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_tests_lifecycle_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_bindkeyprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "test/harness/sealed-storage.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "test_harness_sealed_storage", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_bindkeyprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "test/harness/sealed-storage.ts", + "source_location": "L222", + "weight": 1.0, + "_origin": "ast", + "source": "test_harness_sealed_storage_createsealedstoragetestcontext", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_bindkeyprovider" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_orchestrator", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_unbindkeyprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L219", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator_stop", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_unbindkeyprovider" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/__tests__/lifecycle.test.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_tests_lifecycle_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_unbindkeyprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "test/harness/sealed-storage.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "test_harness_sealed_storage", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_unbindkeyprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "test/harness/sealed-storage.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "test_harness_sealed_storage_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_unbindkeyprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validatorReadiness.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validatorreadiness", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_iskeyproviderbound", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/validatorReadiness.ts", + "source_location": "L207", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validatorreadiness_ensurevalidatorandsealedstorageready", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_iskeyproviderbound" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/capabilityBroker.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_capabilitybroker", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_iskeyproviderbound", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/capabilityBroker.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_capabilitybroker_canperform", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_iskeyproviderbound" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "test/harness/sealed-storage.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "test_harness_sealed_storage", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_iskeyproviderbound", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "test/harness/sealed-storage.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "test_harness_sealed_storage_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_iskeyproviderbound", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validatorReadiness.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validatorreadiness", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_iskeyproviderusable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/validatorReadiness.ts", + "source_location": "L186", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validatorreadiness_ensurevalidatorandsealedstorageready", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_iskeyproviderusable" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index_sealkeycopy", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_getkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L415", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index_computeseal", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealkeycopy", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L674", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedquery", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealkeycopy", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L238", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index_verifyhmacwithprovider", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealkeycopy", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index_sealverificationerror", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealverificationerror_constructor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/__tests__/lifecycle.test.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_tests_lifecycle_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealverificationerror", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/__tests__/lifecycle.test.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_tests_lifecycle_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_gettamperingevents", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "test/harness/sealed-storage.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "test_harness_sealed_storage_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_gettamperingevents", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/__tests__/lifecycle.test.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_tests_lifecycle_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_cleartamperingevents", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "test/harness/sealed-storage.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "test_harness_sealed_storage", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_cleartamperingevents", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "test/harness/sealed-storage.ts", + "source_location": "L223", + "weight": 1.0, + "_origin": "ast", + "source": "test_harness_sealed_storage_createsealedstoragetestcontext", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_cleartamperingevents" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "test/harness/sealed-storage.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "test_harness_sealed_storage_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_cleartamperingevents", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L627", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedquery", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_recordtamper", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L313", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedstatement_run", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_enforceorwarn", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L232", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index_verifyhmacwithprovider", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_enforceorwarn", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L371", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedstatement_run", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_verifyhmacwithprovider", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L287", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedstatement", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedstatement_constructor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L379", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedstatement", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedstatement_exec", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L308", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedstatement", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedstatement_run", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L318", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedstatement_run", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedstatement_exec", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L380", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedstatement_exec", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedoperationalstatement_run", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/__tests__/lifecycle.test.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_tests_lifecycle_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_preparesealedinsert", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/__tests__/lifecycle.test.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_tests_lifecycle_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_preparesealedupdate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L523", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index_runsealedtransaction", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedoperationalstatement_run", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L634", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedquery", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_rowkeysource", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L629", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedquery", + "target": "apps_electron_vite_project_src_components_internalhandshakeidentitypanel_row" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/__tests__/lifecycle.test.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_tests_lifecycle_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedquery", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "test/harness/sealed-storage.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "test_harness_sealed_storage_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedquery", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/__tests__/lifecycle.test.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_tests_lifecycle_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_verifysealandcontent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "test/harness/sealed-storage.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "test_harness_sealed_storage_test", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_verifysealandcontent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L938", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index_extractcolumnsfromsetclause", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_splitattoplevelcommas", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L1033", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index_preparesealedoperationalupdate", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_extractcolumnsfromsetclause", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L998", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedoperationalstatement", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedoperationalstatement_columns", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L993", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedoperationalstatement", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedoperationalstatement_constructor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/index.ts", + "source_location": "L1002", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedoperationalstatement", + "target": "apps_electron_vite_project_electron_main_sealed_storage_index_sealedoperationalstatement_run", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/sealed-storage/ledgerSealKey.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_sealed_storage_ledgersealkey", + "target": "apps_electron_vite_project_electron_main_sealed_storage_ledgersealkey_deriveledgersealkey", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/security/__tests__/ed25519WeakKey.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_security_tests_ed25519weakkey_test", + "target": "apps_electron_vite_project_electron_main_security_ed25519weakkey", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/security/__tests__/ed25519WeakKey.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_security_tests_ed25519weakkey_test", + "target": "apps_electron_vite_project_electron_main_security_ed25519weakkey_isweaked25519publickey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/security/__tests__/ed25519WeakKey.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_security_tests_ed25519weakkey_test", + "target": "apps_electron_vite_project_electron_main_security_tests_ed25519weakkey_test_neutral", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/security/__tests__/ed25519WeakKey.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_security_tests_ed25519weakkey_test", + "target": "apps_electron_vite_project_electron_main_security_tests_ed25519weakkey_test_small_order", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/security/__tests__/ed25519WeakKey.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_security_tests_ed25519weakkey_test", + "target": "apps_electron_vite_project_electron_main_security_tests_ed25519weakkey_test_zero32", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/security/cryptoFingerprint.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_security_cryptofingerprint", + "target": "apps_electron_vite_project_electron_main_security_cryptofingerprint_safefingerprint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/security/ed25519WeakKey.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_security_ed25519weakkey", + "target": "apps_electron_vite_project_electron_main_security_ed25519weakkey_isweaked25519publickey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/security/ed25519WeakKey.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_security_ed25519weakkey", + "target": "apps_electron_vite_project_electron_main_security_ed25519weakkey_pointctor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/security/ed25519WeakKey.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_security_ed25519weakkey", + "target": "apps_electron_vite_project_electron_main_security_ed25519weakkey_pointinstance", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/security/ed25519WeakKey.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_security_ed25519weakkey_pointinstance", + "target": "apps_electron_vite_project_electron_main_security_ed25519weakkey_pointinstance_issmallorder", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/security/ed25519WeakKey.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_security_ed25519weakkey_isweaked25519publickey", + "target": "apps_electron_vite_project_electron_main_security_ed25519weakkey_pointinstance_issmallorder", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/security/ed25519WeakKey.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_security_ed25519weakkey_pointctor", + "target": "apps_electron_vite_project_electron_main_security_ed25519weakkey_pointctor_fromhex", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/security/secureOperationResult.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_security_secureoperationresult", + "target": "apps_electron_vite_project_electron_main_security_secureoperationresult_securefailure", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/security/secureOperationResult.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_security_secureoperationresult", + "target": "apps_electron_vite_project_electron_main_security_secureoperationresult_secureoperationfailure", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/security/secureOperationResult.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_security_secureoperationresult", + "target": "apps_electron_vite_project_electron_main_security_secureoperationresult_secureoperationreason", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/security/secureOperationResult.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_security_secureoperationresult", + "target": "apps_electron_vite_project_electron_main_security_secureoperationresult_secureoperationresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/security/secureOperationResult.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_security_secureoperationresult", + "target": "apps_electron_vite_project_electron_main_security_secureoperationresult_secureoperationstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/security/secureOperationResult.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_security_secureoperationresult", + "target": "apps_electron_vite_project_electron_main_security_secureoperationresult_secureoperationsuccess", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/__tests__/sealedServiceRpc.deviceKeyOpen.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_tests_sealedservicerpc_devicekeyopen_test", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/__tests__/sealedServiceRpc.deviceKeyOpen.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_tests_sealedservicerpc_devicekeyopen_test", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_openservicerpcpayloadresolvinglocalkey", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/__tests__/sealedServiceRpc.deviceKeyOpen.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_tests_sealedservicerpc_devicekeyopen_test", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_sealservicerpcpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/__tests__/sealedServiceRpc.deviceKeyOpen.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_tests_sealedservicerpc_devicekeyopen_test", + "target": "apps_electron_vite_project_electron_main_servicerpc_tests_sealedservicerpc_devicekeyopen_test_getdevicex25519keypair", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/__tests__/sealedServiceRpc.deviceKeyOpen.test.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_tests_sealedservicerpc_devicekeyopen_test", + "target": "apps_electron_vite_project_electron_main_servicerpc_tests_sealedservicerpc_devicekeyopen_test_hostkeys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/__tests__/sealedServiceRpc.deviceKeyOpen.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_tests_sealedservicerpc_devicekeyopen_test", + "target": "apps_electron_vite_project_electron_main_servicerpc_tests_sealedservicerpc_devicekeyopen_test_makex25519pair", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/__tests__/sealedServiceRpc.deviceKeyOpen.test.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_tests_sealedservicerpc_devicekeyopen_test", + "target": "apps_electron_vite_project_electron_main_servicerpc_tests_sealedservicerpc_devicekeyopen_test_recordnopriv", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/__tests__/sealedServiceRpc.deviceKeyOpen.test.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_tests_sealedservicerpc_devicekeyopen_test", + "target": "apps_electron_vite_project_electron_main_servicerpc_tests_sealedservicerpc_devicekeyopen_test_recordwithpriv", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/__tests__/sealedServiceRpc.deviceKeyOpen.test.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_tests_sealedservicerpc_devicekeyopen_test", + "target": "apps_electron_vite_project_electron_main_servicerpc_tests_sealedservicerpc_devicekeyopen_test_sandboxkeys", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/__tests__/sealedServiceRpc.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_tests_sealedservicerpc_test", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/__tests__/sealedServiceRpc.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_tests_sealedservicerpc_test", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_openservicerpcpayload", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/__tests__/sealedServiceRpc.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_tests_sealedservicerpc_test", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_sealed_service_rpc_envelope_type", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/__tests__/sealedServiceRpc.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_tests_sealedservicerpc_test", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_sealedservicerpcenvelope", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/__tests__/sealedServiceRpc.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_tests_sealedservicerpc_test", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_sealservicerpcpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/__tests__/sealedServiceRpc.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_tests_sealedservicerpc_test", + "target": "apps_electron_vite_project_electron_main_servicerpc_tests_sealedservicerpc_test_makeinternalrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/__tests__/sealedServiceRpc.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_tests_sealedservicerpc_test", + "target": "apps_electron_vite_project_electron_main_servicerpc_tests_sealedservicerpc_test_makex25519pair", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_buildsealedservicerpcaad", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_decodex25519privb64", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_decodex25519pubb64", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_normalizeplaintextjson", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L273", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_openservicerpcpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L361", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_openservicerpcpayloadresolvinglocalkey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_openservicerpcresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_resolvelocalx25519privforopen", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_resolvepeerx25519pubforseal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_sealed_service_rpc_envelope_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_sealed_service_rpc_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_sealedservicerpcenvelope", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_sealservicerpcinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L202", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_sealservicerpcpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_sealservicerpcresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_trimnonempty", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L165", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_validateenvelopeshape", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_validatesealinput", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L221", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_sealservicerpcpayload", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_normalizeplaintextjson", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L281", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_openservicerpcpayload", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_trimnonempty", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L365", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_openservicerpcpayloadresolvinglocalkey", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_trimnonempty", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_resolvelocalx25519privforopen", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_trimnonempty", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_resolvepeerx25519pubforseal", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_trimnonempty", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L181", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_validateenvelopeshape", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_trimnonempty", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L144", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_validatesealinput", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_trimnonempty", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L294", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_openservicerpcpayload", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_decodex25519pubb64", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_resolvepeerx25519pubforseal", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_decodex25519pubb64", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L212", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_sealservicerpcpayload", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_decodex25519pubb64", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L293", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_openservicerpcpayload", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_decodex25519privb64", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_resolvelocalx25519privforopen", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_decodex25519privb64", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L303", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_openservicerpcpayload", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_buildsealedservicerpcaad", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L222", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_sealservicerpcpayload", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_buildsealedservicerpcaad", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L209", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_sealservicerpcpayload", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_resolvepeerx25519pubforseal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L290", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_openservicerpcpayload", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_resolvelocalx25519privforopen", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L206", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_sealservicerpcpayload", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_validatesealinput", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L278", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_openservicerpcpayload", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_validateenvelopeshape", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts", + "source_location": "L375", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_openservicerpcpayloadresolvinglocalkey", + "target": "apps_electron_vite_project_electron_main_servicerpc_sealedservicerpc_openservicerpcpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/utils/keyFingerprint.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_utils_keyfingerprint", + "target": "apps_electron_vite_project_electron_main_utils_keyfingerprint_fingerprint", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/__tests__/lifecycle.test.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_tests_lifecycle_test", + "target": "apps_electron_vite_project_electron_main_validator_process_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/__tests__/lifecycle.test.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_tests_lifecycle_test", + "target": "apps_electron_vite_project_electron_main_validator_process_index_computesealfortest", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/__tests__/lifecycle.test.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_tests_lifecycle_test", + "target": "apps_electron_vite_project_electron_main_validator_process_index_extractcontentsha256", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/__tests__/lifecycle.test.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_tests_lifecycle_test", + "target": "apps_electron_vite_project_electron_main_validator_process_index_verifyseal", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/__tests__/lifecycle.test.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_tests_lifecycle_test", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/__tests__/lifecycle.test.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_tests_lifecycle_test", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator_onvalidationserviceunavailable", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/__tests__/lifecycle.test.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_tests_lifecycle_test", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator_setvalidatorworkerpath", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/__tests__/lifecycle.test.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_tests_lifecycle_test", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validationserviceunavailablereason", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/__tests__/lifecycle.test.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_tests_lifecycle_test", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/__tests__/lifecycle.test.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_tests_lifecycle_test", + "target": "apps_electron_vite_project_electron_main_validator_process_test_session", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/__tests__/lifecycle.test.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_tests_lifecycle_test", + "target": "apps_electron_vite_project_electron_main_validator_process_test_session_derivetestsealkey", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/__tests__/lifecycle.test.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_tests_lifecycle_test", + "target": "apps_electron_vite_project_electron_main_validator_process_test_session_maketestvalidaterequest", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/__tests__/lifecycle.test.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_tests_lifecycle_test", + "target": "apps_electron_vite_project_electron_main_validator_process_test_session_starttestvalidator", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/__tests__/lifecycle.test.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_tests_lifecycle_test", + "target": "apps_electron_vite_project_electron_main_validator_process_tests_lifecycle_test_database", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/__tests__/lifecycle.test.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_tests_lifecycle_test", + "target": "apps_electron_vite_project_electron_main_validator_process_tests_lifecycle_test_makeinmemorydb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/__tests__/lifecycle.test.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_tests_lifecycle_test", + "target": "apps_electron_vite_project_electron_main_validator_process_tests_lifecycle_test_req", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/__tests__/lifecycle.test.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_tests_lifecycle_test", + "target": "apps_electron_vite_project_electron_main_vault_service", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/__tests__/lifecycle.test.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_tests_lifecycle_test", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/index.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_index", + "target": "apps_electron_vite_project_electron_main_validator_process_index_computeseal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/index.ts", + "source_location": "L187", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_index", + "target": "apps_electron_vite_project_electron_main_validator_process_index_computesealfortest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/index.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_index", + "target": "apps_electron_vite_project_electron_main_validator_process_index_dispatchvalidation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/index.ts", + "source_location": "L211", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_index", + "target": "apps_electron_vite_project_electron_main_validator_process_index_extractcontentsha256", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/index.ts", + "source_location": "L228", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_index", + "target": "apps_electron_vite_project_electron_main_validator_process_index_handlecontrolmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/index.ts", + "source_location": "L258", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_index", + "target": "apps_electron_vite_project_electron_main_validator_process_index_handlevalidaterequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/index.ts", + "source_location": "L224", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_index", + "target": "apps_electron_vite_project_electron_main_validator_process_index_sendack", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/index.ts", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_index", + "target": "apps_electron_vite_project_electron_main_validator_process_index_verifyseal", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "test/harness/sealed-storage.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "test_harness_sealed_storage", + "target": "apps_electron_vite_project_electron_main_validator_process_index", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/index.ts", + "source_location": "L195", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_index_computesealfortest", + "target": "apps_electron_vite_project_electron_main_validator_process_index_computeseal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/index.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_index_dispatchvalidation", + "target": "apps_electron_vite_project_electron_main_validator_process_index_computeseal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/index.ts", + "source_location": "L279", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_index_handlevalidaterequest", + "target": "apps_electron_vite_project_electron_main_validator_process_index_dispatchvalidation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "test/harness/sealed-storage.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "test_harness_sealed_storage", + "target": "apps_electron_vite_project_electron_main_validator_process_index_computesealfortest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "test/harness/sealed-storage.ts", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "source": "test_harness_sealed_storage_buildvalidsealforrowid", + "target": "apps_electron_vite_project_electron_main_validator_process_index_computesealfortest" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/index.ts", + "source_location": "L237", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_index_handlecontrolmessage", + "target": "apps_electron_vite_project_electron_main_validator_process_index_sendack", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_orchestrator", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator_getvalidatorworkerpath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_orchestrator", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator_moduledir", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_orchestrator", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator_onvalidationserviceunavailable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_orchestrator", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator_orchestratorliveness", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_orchestrator", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator_setvalidatorworkerpath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_orchestrator", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator_surfaceunavailable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_orchestrator", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validationserviceunavailablereason", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L414", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_orchestrator", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_orchestrator", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator_workerpath", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_orchestrator", + "target": "apps_electron_vite_project_electron_main_vault_service", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_orchestrator", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/test-session.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_test_session", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validatorReadiness.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validatorreadiness", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/capabilityBroker.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_capabilitybroker", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/test-session.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_test_session", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator_setvalidatorworkerpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/validator-process/test-session.ts", + "source_location": "L202", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_test_session_starttestvalidator", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator_setvalidatorworkerpath" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator_onvalidationserviceunavailable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator_start", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator_surfaceunavailable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L395", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator_starthealthcheck", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator_surfaceunavailable", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator_getliveness", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L327", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator_handlesubprocessmessage", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L297", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator_ping", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L369", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator_rejectallpending", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator_start", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L381", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator_starthealthcheck", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L215", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator_stop", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L402", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator_stophealthcheck", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L266", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator_validate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/test-session.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_test_session", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/test-session.ts", + "source_location": "L161", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_test_session_testvalidatorhandle", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validatorReadiness.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validatorreadiness", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/capabilityBroker.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_capabilitybroker", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator_start", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator_handlesubprocessmessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator_start", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator_rejectallpending", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L202", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator_start", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator_starthealthcheck", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator_start", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator_start", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_deriveapplicationkey" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/validator-process/test-session.ts", + "source_location": "L207", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_test_session_starttestvalidator", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator_start" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L230", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator_stop", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator_rejectallpending", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L222", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator_stop", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator_stophealthcheck", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L389", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator_starthealthcheck", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator_ping", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L394", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator_starthealthcheck", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator_rejectallpending", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts", + "source_location": "L382", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator_starthealthcheck", + "target": "apps_electron_vite_project_electron_main_validator_process_orchestrator_validatororchestrator_stophealthcheck", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/test-session.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_test_session", + "target": "apps_electron_vite_project_electron_main_validator_process_test_session_assertnotproductionvaultpath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/test-session.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_test_session", + "target": "apps_electron_vite_project_electron_main_validator_process_test_session_derivetestsealkey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/test-session.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_test_session", + "target": "apps_electron_vite_project_electron_main_validator_process_test_session_dirname", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/test-session.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_test_session", + "target": "apps_electron_vite_project_electron_main_validator_process_test_session_filename", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/test-session.ts", + "source_location": "L226", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_test_session", + "target": "apps_electron_vite_project_electron_main_validator_process_test_session_maketestvalidaterequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/test-session.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_test_session", + "target": "apps_electron_vite_project_electron_main_validator_process_test_session_production_vault_path_markers", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/test-session.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_test_session", + "target": "apps_electron_vite_project_electron_main_validator_process_test_session_require", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/test-session.ts", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_test_session", + "target": "apps_electron_vite_project_electron_main_validator_process_test_session_resolvetsxloader", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/test-session.ts", + "source_location": "L186", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_test_session", + "target": "apps_electron_vite_project_electron_main_validator_process_test_session_starttestvalidator", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/test-session.ts", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_test_session", + "target": "apps_electron_vite_project_electron_main_validator_process_test_session_subprocess_entry_ts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/test-session.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_test_session", + "target": "apps_electron_vite_project_electron_main_validator_process_test_session_test_vault_master_key", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/test-session.ts", + "source_location": "L159", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_test_session", + "target": "apps_electron_vite_project_electron_main_validator_process_test_session_testvalidatorhandle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/test-session.ts", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_test_session", + "target": "apps_electron_vite_project_electron_main_validator_process_test_session_testvaultservicemock", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/test-session.ts", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_test_session_starttestvalidator", + "target": "apps_electron_vite_project_electron_main_validator_process_test_session_assertnotproductionvaultpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/test-session.ts", + "source_location": "L137", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_test_session_testvaultservicemock_constructor", + "target": "apps_electron_vite_project_electron_main_validator_process_test_session_derivetestsealkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/test-session.ts", + "source_location": "L193", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_test_session_starttestvalidator", + "target": "apps_electron_vite_project_electron_main_validator_process_test_session_resolvetsxloader", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/test-session.ts", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_test_session_testvaultservicemock", + "target": "apps_electron_vite_project_electron_main_validator_process_test_session_testvaultservicemock_constructor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/test-session.ts", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_test_session_testvaultservicemock", + "target": "apps_electron_vite_project_electron_main_validator_process_test_session_testvaultservicemock_deriveapplicationkey", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/test-session.ts", + "source_location": "L150", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_test_session_testvaultservicemock", + "target": "apps_electron_vite_project_electron_main_validator_process_test_session_testvaultservicemock_destroy", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/test-session.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_test_session_testvaultservicemock", + "target": "apps_electron_vite_project_electron_main_validator_process_test_session_testvaultservicemock_testsealkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/test-session.ts", + "source_location": "L205", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_test_session_starttestvalidator", + "target": "apps_electron_vite_project_electron_main_validator_process_test_session_testvaultservicemock_testsealkey", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/test-session.ts", + "source_location": "L169", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_test_session_testvalidatorhandle", + "target": "apps_electron_vite_project_electron_main_validator_process_test_session_testvalidatorhandle_stop", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validator-process/test-session.ts", + "source_location": "L207", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validator_process_test_session_starttestvalidator", + "target": "apps_electron_vite_project_electron_main_vault_service", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validatorReadiness.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validatorreadiness", + "target": "apps_electron_vite_project_electron_main_validatorreadiness_delay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validatorReadiness.ts", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validatorreadiness", + "target": "apps_electron_vite_project_electron_main_validatorreadiness_ensurevalidatorandsealedstorageready", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validatorReadiness.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validatorreadiness", + "target": "apps_electron_vite_project_electron_main_validatorreadiness_innervaultprobe", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validatorReadiness.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validatorreadiness", + "target": "apps_electron_vite_project_electron_main_validatorreadiness_probeinnervaultstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validatorReadiness.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validatorreadiness", + "target": "apps_electron_vite_project_electron_main_validatorreadiness_validatorreadycode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validatorReadiness.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validatorreadiness", + "target": "apps_electron_vite_project_electron_main_validatorreadiness_validatorreadyresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validatorReadiness.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validatorreadiness", + "target": "apps_electron_vite_project_electron_main_vault_service", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validatorReadiness.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validatorreadiness", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validatorReadiness.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validatorreadiness", + "target": "apps_electron_vite_project_electron_main_vault_vaultcanon", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validatorReadiness.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validatorreadiness", + "target": "apps_electron_vite_project_electron_main_vault_vaultcanon_isinnervaultunlocked", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validatorReadiness.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validatorreadiness", + "target": "apps_electron_vite_project_src_auth_session", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validatorReadiness.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validatorreadiness", + "target": "apps_electron_vite_project_src_auth_sessioncache_getcacheduserinfo", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validatorReadiness.ts", + "source_location": "L260", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validatorreadiness_ensurevalidatorandsealedstorageready", + "target": "apps_electron_vite_project_electron_main_validatorreadiness_delay", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validatorReadiness.ts", + "source_location": "L205", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validatorreadiness_ensurevalidatorandsealedstorageready", + "target": "apps_electron_vite_project_electron_main_validatorreadiness_probeinnervaultstate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/validatorReadiness.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validatorreadiness_probeinnervaultstate", + "target": "apps_electron_vite_project_src_auth_sessioncache_getcacheduserinfo", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/validatorReadiness.ts", + "source_location": "L197", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_validatorreadiness_ensurevalidatorandsealedstorageready", + "target": "apps_electron_vite_project_electron_main_vault_vaultcanon_isinnervaultunlocked" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/atomicWrite.test.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_atomicwrite_test", + "target": "apps_electron_vite_project_electron_main_vault_atomicwrite", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/atomicWrite.test.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_atomicwrite_test", + "target": "apps_electron_vite_project_electron_main_vault_atomicwrite_atomicwritefilesync", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/atomicWrite.test.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_atomicwrite_test", + "target": "apps_electron_vite_project_electron_main_vault_atomicwrite_test_mclose", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/atomicWrite.test.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_atomicwrite_test", + "target": "apps_electron_vite_project_electron_main_vault_atomicwrite_test_mfsync", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/atomicWrite.test.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_atomicwrite_test", + "target": "apps_electron_vite_project_electron_main_vault_atomicwrite_test_mopensync", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/atomicWrite.test.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_atomicwrite_test", + "target": "apps_electron_vite_project_electron_main_vault_atomicwrite_test_mrename", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/atomicWrite.test.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_atomicwrite_test", + "target": "apps_electron_vite_project_electron_main_vault_atomicwrite_test_mwritefile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/atomicWrite.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_atomicwrite", + "target": "apps_electron_vite_project_electron_main_vault_atomicwrite_atomicwritefilesync", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_atomicwrite", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_atomicwrite_atomicwritefilesync", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L2072", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_savevaultmeta", + "target": "apps_electron_vite_project_electron_main_vault_atomicwrite_atomicwritefilesync" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/cache.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_cache", + "target": "apps_electron_vite_project_electron_main_vault_cache_cacheentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/cache.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_cache", + "target": "apps_electron_vite_project_electron_main_vault_cache_decryptcache", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/cache.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_cache", + "target": "apps_electron_vite_project_electron_main_vault_cache_decryptcacheoptions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_envelope_test", + "target": "apps_electron_vite_project_electron_main_vault_cache", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_cache", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/cache.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_cache_decryptcache", + "target": "apps_electron_vite_project_electron_main_vault_cache_decryptcache_constructor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/cache.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_cache_decryptcache", + "target": "apps_electron_vite_project_electron_main_vault_cache_decryptcache_evict", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/cache.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_cache_decryptcache", + "target": "apps_electron_vite_project_electron_main_vault_cache_decryptcache_flush", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/cache.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_cache_decryptcache", + "target": "apps_electron_vite_project_electron_main_vault_cache_decryptcache_get", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/cache.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_cache_decryptcache", + "target": "apps_electron_vite_project_electron_main_vault_cache_decryptcache_set", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/cache.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_cache_decryptcache", + "target": "apps_electron_vite_project_electron_main_vault_cache_decryptcache_size", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_envelope_test", + "target": "apps_electron_vite_project_electron_main_vault_cache_decryptcache", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_cache_decryptcache", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/cache.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_cache_decryptcache_get", + "target": "apps_electron_vite_project_electron_main_vault_cache_decryptcache_evict", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/cache.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_cache_decryptcache_set", + "target": "apps_electron_vite_project_electron_main_vault_cache_decryptcache_evict", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/cache.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_cache_decryptcache_flush", + "target": "apps_electron_vite_project_electron_main_vault_cache_decryptcache_evict", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/capabilities.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_capabilities", + "target": "packages_shared_src_vault_vaultcapabilities", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/capabilityGate.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_capabilitygate_test", + "target": "apps_electron_vite_project_electron_main_vault_capabilities", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/types.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_types", + "target": "apps_electron_vite_project_electron_main_vault_capabilities", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/capabilityBroker.test.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_capabilitybroker_test", + "target": "apps_electron_vite_project_electron_main_vault_capabilitybroker", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/capabilityBroker.test.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_capabilitybroker_test", + "target": "apps_electron_vite_project_electron_main_vault_capabilitybroker_canperform", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/capabilityBroker.test.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_capabilitybroker_test", + "target": "apps_electron_vite_project_electron_main_vault_capabilitybroker_test_allready", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/capabilityBroker.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_capabilitybroker_test", + "target": "apps_electron_vite_project_electron_main_vault_capabilitybroker_test_makereport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/capabilityBroker.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_capabilitybroker_test", + "target": "apps_electron_vite_project_electron_main_vault_capabilitybroker_test_state", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/capabilityBroker.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_capabilitybroker_test", + "target": "apps_electron_vite_project_electron_main_vault_vaultcanon", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/capabilityBroker.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_capabilitybroker_test", + "target": "apps_electron_vite_project_electron_main_vault_vaultcanon_handshakeclassification", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/capabilityBroker.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_capabilitybroker_test", + "target": "apps_electron_vite_project_electron_main_vault_vaultcanon_vaultstatusreport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/capabilityBroker.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_capabilitybroker", + "target": "apps_electron_vite_project_electron_main_vault_capabilitybroker_canperform", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/capabilityBroker.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_capabilitybroker", + "target": "apps_electron_vite_project_electron_main_vault_capabilitybroker_capabilityresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/capabilityBroker.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_capabilitybroker", + "target": "apps_electron_vite_project_electron_main_vault_capabilitybroker_ok", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/capabilityBroker.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_capabilitybroker", + "target": "apps_electron_vite_project_electron_main_vault_capabilitybroker_operationkind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/capabilityBroker.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_capabilitybroker", + "target": "apps_electron_vite_project_electron_main_vault_capabilitybroker_reasoncode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/capabilityBroker.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_capabilitybroker", + "target": "apps_electron_vite_project_electron_main_vault_capabilitybroker_retrystrategy", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/capabilityBroker.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_capabilitybroker", + "target": "apps_electron_vite_project_electron_main_vault_vaultcanon", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/capabilityBroker.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_capabilitybroker", + "target": "apps_electron_vite_project_electron_main_vault_vaultcanon_getvaultstatusreport", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/capabilityBroker.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_capabilitybroker_canperform", + "target": "apps_electron_vite_project_electron_main_vault_vaultcanon_getvaultstatusreport" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/capabilityGate.test.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_capabilitygate_test", + "target": "apps_electron_vite_project_electron_main_vault_capabilitygate_test_fakegetitem", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/capabilityGate.test.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_capabilitygate_test", + "target": "apps_electron_vite_project_electron_main_vault_capabilitygate_test_fakegetitemcategory", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/capabilityGate.test.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_capabilitygate_test", + "target": "apps_electron_vite_project_electron_main_vault_capabilitygate_test_fakerow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/capabilityGate.test.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_capabilitygate_test", + "target": "apps_electron_vite_project_electron_main_vault_capabilitygate_test_makekek", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/capabilityGate.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_capabilitygate_test", + "target": "apps_electron_vite_project_electron_main_vault_capabilitygate_test_mockedopenrecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/capabilityGate.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_capabilitygate_test", + "target": "apps_electron_vite_project_electron_main_vault_envelope", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/capabilityGate.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_capabilitygate_test", + "target": "apps_electron_vite_project_electron_main_vault_envelope_envelope_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/capabilityGate.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_capabilitygate_test", + "target": "apps_electron_vite_project_electron_main_vault_envelope_openrecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/capabilityGate.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_capabilitygate_test", + "target": "apps_electron_vite_project_electron_main_vault_envelope_sealrecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/capabilityGate.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_capabilitygate_test", + "target": "packages_shared_src_vault_vaultcapabilities_canaccesscategory", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/capabilityGate.test.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_capabilitygate_test_fakegetitem", + "target": "apps_electron_vite_project_electron_main_vault_envelope_openrecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/capabilityGate.test.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_capabilitygate_test_fakegetitem", + "target": "packages_shared_src_vault_vaultcapabilities_canaccesscategory", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/challengeStore.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_challengestore_test", + "target": "apps_electron_vite_project_electron_main_vault_challengestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/challengeStore.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_challengestore_test", + "target": "apps_electron_vite_project_electron_main_vault_challengestore_challengestore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/challengeStore.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_challengestore", + "target": "apps_electron_vite_project_electron_main_vault_challengestore_challengestore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/challengeStore.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_challengestore", + "target": "apps_electron_vite_project_electron_main_vault_challengestore_challengestoreoptions", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/challengeStore.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_challengestore_challengestore", + "target": "apps_electron_vite_project_electron_main_vault_challengestore_challengestore_clear", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/challengeStore.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_challengestore_challengestore", + "target": "apps_electron_vite_project_electron_main_vault_challengestore_challengestore_constructor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/challengeStore.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_challengestore_challengestore", + "target": "apps_electron_vite_project_electron_main_vault_challengestore_challengestore_consume", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/challengeStore.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_challengestore_challengestore", + "target": "apps_electron_vite_project_electron_main_vault_challengestore_challengestore_has", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/challengeStore.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_challengestore_challengestore", + "target": "apps_electron_vite_project_electron_main_vault_challengestore_challengestore_issue", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/challengeStore.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_challengestore_challengestore", + "target": "apps_electron_vite_project_electron_main_vault_challengestore_challengestore_prune", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/challengeStore.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_challengestore_challengestore", + "target": "apps_electron_vite_project_electron_main_vault_challengestore_challengestore_size", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/challengeStore.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_challengestore_challengestore_issue", + "target": "apps_electron_vite_project_electron_main_vault_challengestore_challengestore_prune", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/challengeStore.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_challengestore_challengestore_size", + "target": "apps_electron_vite_project_electron_main_vault_challengestore_challengestore_prune", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/crypto.ts", + "source_location": "L297", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_crypto", + "target": "apps_electron_vite_project_electron_main_vault_crypto_aad_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/crypto.ts", + "source_location": "L318", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_crypto", + "target": "apps_electron_vite_project_electron_main_vault_crypto_buildaad", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/crypto.ts", + "source_location": "L272", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_crypto", + "target": "apps_electron_vite_project_electron_main_vault_crypto_constanttimeequal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/crypto.ts", + "source_location": "L203", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_crypto", + "target": "apps_electron_vite_project_electron_main_vault_crypto_decryptfield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/crypto.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_crypto", + "target": "apps_electron_vite_project_electron_main_vault_crypto_default_kdf_params", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/crypto.ts", + "source_location": "L159", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_crypto", + "target": "apps_electron_vite_project_electron_main_vault_crypto_derivefieldkey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/crypto.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_crypto", + "target": "apps_electron_vite_project_electron_main_vault_crypto_derivekek", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/crypto.ts", + "source_location": "L172", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_crypto", + "target": "apps_electron_vite_project_electron_main_vault_crypto_encryptfield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/crypto.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_crypto", + "target": "apps_electron_vite_project_electron_main_vault_crypto_ensuresodiumready", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/crypto.ts", + "source_location": "L245", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_crypto", + "target": "apps_electron_vite_project_electron_main_vault_crypto_generaterandomkey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/crypto.ts", + "source_location": "L252", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_crypto", + "target": "apps_electron_vite_project_electron_main_vault_crypto_generatesalt", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/crypto.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_crypto", + "target": "apps_electron_vite_project_electron_main_vault_crypto_kdfparams", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/crypto.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_crypto", + "target": "apps_electron_vite_project_electron_main_vault_crypto_require", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/crypto.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_crypto", + "target": "apps_electron_vite_project_electron_main_vault_crypto_scryptasync", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/crypto.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_crypto", + "target": "apps_electron_vite_project_electron_main_vault_crypto_unwrapdek", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/crypto.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_crypto", + "target": "apps_electron_vite_project_electron_main_vault_crypto_wrapdek", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/crypto.ts", + "source_location": "L232", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_crypto", + "target": "apps_electron_vite_project_electron_main_vault_crypto_zeroize", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_documentservice", + "target": "apps_electron_vite_project_electron_main_vault_crypto", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_envelope", + "target": "apps_electron_vite_project_electron_main_vault_crypto", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/security-regression.test.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_security_regression_test", + "target": "apps_electron_vite_project_electron_main_vault_crypto", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_crypto", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_unlockprovider", + "target": "apps_electron_vite_project_electron_main_vault_crypto", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/crypto.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_crypto_ensuresodiumready", + "target": "apps_electron_vite_project_electron_main_vault_crypto_require", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/crypto.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_crypto_derivekek", + "target": "apps_electron_vite_project_electron_main_vault_crypto_scryptasync", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/crypto.ts", + "source_location": "L204", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_crypto_decryptfield", + "target": "apps_electron_vite_project_electron_main_vault_crypto_ensuresodiumready", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/crypto.ts", + "source_location": "L173", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_crypto_encryptfield", + "target": "apps_electron_vite_project_electron_main_vault_crypto_ensuresodiumready", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_crypto_kdfparams", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1981", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_loadvaultmetaraw", + "target": "apps_electron_vite_project_electron_main_vault_crypto_kdfparams", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L2018", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_savevaultmeta", + "target": "apps_electron_vite_project_electron_main_vault_crypto_kdfparams", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_unlockprovider", + "target": "apps_electron_vite_project_electron_main_vault_crypto_kdfparams", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_unlockprovider_passphraseunlockprovider_enroll", + "target": "apps_electron_vite_project_electron_main_vault_crypto_kdfparams", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_unlockprovider_unlockprovider_enroll", + "target": "apps_electron_vite_project_electron_main_vault_crypto_kdfparams", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_unlockprovider_vaultmetacontext", + "target": "apps_electron_vite_project_electron_main_vault_crypto_kdfparams", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_crypto_default_kdf_params", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_unlockprovider", + "target": "apps_electron_vite_project_electron_main_vault_crypto_default_kdf_params", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_unlockprovider", + "target": "apps_electron_vite_project_electron_main_vault_crypto_derivekek", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L179", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_unlockprovider_passphraseunlockprovider_enroll", + "target": "apps_electron_vite_project_electron_main_vault_crypto_derivekek" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L206", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_unlockprovider_passphraseunlockprovider_unlock", + "target": "apps_electron_vite_project_electron_main_vault_crypto_derivekek" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_unlockprovider", + "target": "apps_electron_vite_project_electron_main_vault_crypto_wrapdek", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L180", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_unlockprovider_passphraseunlockprovider_enroll", + "target": "apps_electron_vite_project_electron_main_vault_crypto_wrapdek" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_unlockprovider", + "target": "apps_electron_vite_project_electron_main_vault_crypto_unwrapdek", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L210", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_unlockprovider_passphraseunlockprovider_unlock", + "target": "apps_electron_vite_project_electron_main_vault_crypto_unwrapdek" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_crypto_derivefieldkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1961", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_decryptitemfields", + "target": "apps_electron_vite_project_electron_main_vault_crypto_derivefieldkey" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L492", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_deriveapplicationkey", + "target": "apps_electron_vite_project_electron_main_vault_crypto_derivefieldkey" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_crypto_decryptfield", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1963", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_decryptitemfields", + "target": "apps_electron_vite_project_electron_main_vault_crypto_decryptfield" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_envelope", + "target": "apps_electron_vite_project_electron_main_vault_crypto_zeroize", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.ts", + "source_location": "L229", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_envelope_openrecord", + "target": "apps_electron_vite_project_electron_main_vault_crypto_zeroize" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.ts", + "source_location": "L204", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_envelope_sealrecord", + "target": "apps_electron_vite_project_electron_main_vault_crypto_zeroize" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/security-regression.test.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_security_regression_test", + "target": "apps_electron_vite_project_electron_main_vault_crypto_zeroize", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_crypto_zeroize", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1969", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_decryptitemfields", + "target": "apps_electron_vite_project_electron_main_vault_crypto_zeroize" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L439", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_lock", + "target": "apps_electron_vite_project_electron_main_vault_crypto_zeroize" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L314", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_unlock", + "target": "apps_electron_vite_project_electron_main_vault_crypto_zeroize" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_unlockprovider", + "target": "apps_electron_vite_project_electron_main_vault_crypto_zeroize", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L222", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_unlockprovider_passphraseunlockprovider_lock", + "target": "apps_electron_vite_project_electron_main_vault_crypto_zeroize" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L212", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_unlockprovider_passphraseunlockprovider_unlock", + "target": "apps_electron_vite_project_electron_main_vault_crypto_zeroize" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_crypto_generaterandomkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L184", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_createvault", + "target": "apps_electron_vite_project_electron_main_vault_crypto_generaterandomkey" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_unlockprovider", + "target": "apps_electron_vite_project_electron_main_vault_crypto_generatesalt", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L178", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_unlockprovider_passphraseunlockprovider_enroll", + "target": "apps_electron_vite_project_electron_main_vault_crypto_generatesalt" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/security-regression.test.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_security_regression_test", + "target": "apps_electron_vite_project_electron_main_vault_crypto_aad_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_documentservice", + "target": "apps_electron_vite_project_electron_main_vault_crypto_buildaad", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.ts", + "source_location": "L232", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_documentservice_getdocument", + "target": "apps_electron_vite_project_electron_main_vault_crypto_buildaad" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.ts", + "source_location": "L170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_documentservice_importdocument", + "target": "apps_electron_vite_project_electron_main_vault_crypto_buildaad" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/security-regression.test.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_security_regression_test", + "target": "apps_electron_vite_project_electron_main_vault_crypto_buildaad", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_crypto_buildaad", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L728", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_createitem", + "target": "apps_electron_vite_project_electron_main_vault_crypto_buildaad" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L918", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getitem", + "target": "apps_electron_vite_project_electron_main_vault_crypto_buildaad" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1237", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_migrateitemtov2", + "target": "apps_electron_vite_project_electron_main_vault_crypto_buildaad" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L820", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateitem", + "target": "apps_electron_vite_project_electron_main_vault_crypto_buildaad" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L512", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db", + "target": "apps_electron_vite_project_electron_main_vault_db_closevaultdb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L190", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db", + "target": "apps_electron_vite_project_electron_main_vault_db_collectallvaultbaserows", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L787", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db", + "target": "apps_electron_vite_project_electron_main_vault_db_createschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L381", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db", + "target": "apps_electron_vite_project_electron_main_vault_db_createvaultdb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db", + "target": "apps_electron_vite_project_electron_main_vault_db_getvaultmetapath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db", + "target": "apps_electron_vite_project_electron_main_vault_db_getvaultpath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db", + "target": "apps_electron_vite_project_electron_main_vault_db_getvaultregistrypath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db", + "target": "apps_electron_vite_project_electron_main_vault_db_listedvaultentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db", + "target": "apps_electron_vite_project_electron_main_vault_db_listvaultsaccountresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L253", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db", + "target": "apps_electron_vite_project_electron_main_vault_db_listvaultsforaccount", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db", + "target": "apps_electron_vite_project_electron_main_vault_db_loadsqlcipher", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L523", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db", + "target": "apps_electron_vite_project_electron_main_vault_db_migratedocumenttable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L559", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db", + "target": "apps_electron_vite_project_electron_main_vault_db_migrateenvelopecolumns", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L597", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db", + "target": "apps_electron_vite_project_electron_main_vault_db_migratehscontextprofiletables", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db", + "target": "apps_electron_vite_project_electron_main_vault_db_moduledir", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L436", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db", + "target": "apps_electron_vite_project_electron_main_vault_db_openvaultdb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L153", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db", + "target": "apps_electron_vite_project_electron_main_vault_db_readvaultownerfrommetafile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L321", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db", + "target": "apps_electron_vite_project_electron_main_vault_db_registervault", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L181", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db", + "target": "apps_electron_vite_project_electron_main_vault_db_registryvault", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db", + "target": "apps_electron_vite_project_electron_main_vault_db_require", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L362", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db", + "target": "apps_electron_vite_project_electron_main_vault_db_unregistervault", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L177", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db", + "target": "apps_electron_vite_project_electron_main_vault_db_vaultexists", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db", + "target": "apps_electron_vite_project_electron_main_vault_vaultowneridentity", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db", + "target": "apps_electron_vite_project_electron_main_vault_vaultowneridentity_hasvaultownermetadata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db", + "target": "apps_electron_vite_project_electron_main_vault_vaultowneridentity_vaultownermatchessession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db", + "target": "apps_electron_vite_project_electron_main_vault_vaultowneridentity_vaultownerrecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db", + "target": "apps_electron_vite_project_src_auth_session", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db", + "target": "apps_electron_vite_project_src_auth_session_sessionuserinfo", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L880", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db_rationale_880", + "target": "apps_electron_vite_project_electron_main_vault_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_test", + "target": "apps_electron_vite_project_electron_main_vault_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1864", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensuredbconnection", + "target": "apps_electron_vite_project_electron_main_vault_db", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultAccountIsolation.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultaccountisolation_test", + "target": "apps_electron_vite_project_electron_main_vault_db", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L217", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db_collectallvaultbaserows", + "target": "apps_electron_vite_project_electron_main_vault_db_require", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db_loadsqlcipher", + "target": "apps_electron_vite_project_electron_main_vault_db_require", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L385", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db_createvaultdb", + "target": "apps_electron_vite_project_electron_main_vault_db_loadsqlcipher", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L443", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db_openvaultdb", + "target": "apps_electron_vite_project_electron_main_vault_db_loadsqlcipher", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L382", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db_createvaultdb", + "target": "apps_electron_vite_project_electron_main_vault_db_getvaultpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L437", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db_openvaultdb", + "target": "apps_electron_vite_project_electron_main_vault_db_getvaultpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L178", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db_vaultexists", + "target": "apps_electron_vite_project_electron_main_vault_db_getvaultpath", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_db_getvaultpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_constructor", + "target": "apps_electron_vite_project_electron_main_vault_db_getvaultpath" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L362", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_deletevault", + "target": "apps_electron_vite_project_electron_main_vault_db_getvaultpath" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L225", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db_collectallvaultbaserows", + "target": "apps_electron_vite_project_electron_main_vault_db_getvaultmetapath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L154", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db_readvaultownerfrommetafile", + "target": "apps_electron_vite_project_electron_main_vault_db_getvaultmetapath", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_db_getvaultmetapath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L363", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_deletevault", + "target": "apps_electron_vite_project_electron_main_vault_db_getvaultmetapath" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1988", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_loadvaultmetaraw", + "target": "apps_electron_vite_project_electron_main_vault_db_getvaultmetapath" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L2025", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_savevaultmeta", + "target": "apps_electron_vite_project_electron_main_vault_db_getvaultmetapath" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db_collectallvaultbaserows", + "target": "apps_electron_vite_project_electron_main_vault_db_getvaultregistrypath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L322", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db_registervault", + "target": "apps_electron_vite_project_electron_main_vault_db_getvaultregistrypath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L363", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db_unregistervault", + "target": "apps_electron_vite_project_electron_main_vault_db_getvaultregistrypath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L262", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db_listvaultsforaccount", + "target": "apps_electron_vite_project_electron_main_vault_db_readvaultownerfrommetafile", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_db_readvaultownerfrommetafile", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L244", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_unlock", + "target": "apps_electron_vite_project_electron_main_vault_db_readvaultownerfrommetafile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultAccountIsolation.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultaccountisolation_test", + "target": "apps_electron_vite_project_electron_main_vault_db_readvaultownerfrommetafile", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db_collectallvaultbaserows", + "target": "apps_electron_vite_project_electron_main_vault_db_vaultexists", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_db_vaultexists", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L177", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_createvault", + "target": "apps_electron_vite_project_electron_main_vault_db_vaultexists" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L504", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getstatus", + "target": "apps_electron_vite_project_electron_main_vault_db_vaultexists" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L240", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_unlock", + "target": "apps_electron_vite_project_electron_main_vault_db_vaultexists" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L254", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db_listvaultsforaccount", + "target": "apps_electron_vite_project_electron_main_vault_db_collectallvaultbaserows", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L264", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db_listvaultsforaccount", + "target": "apps_electron_vite_project_electron_main_vault_vaultowneridentity_hasvaultownermetadata" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L297", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db_listvaultsforaccount", + "target": "apps_electron_vite_project_electron_main_vault_vaultowneridentity_vaultownermatchessession" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_db_listvaultsforaccount", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L395", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getavailablevaults", + "target": "apps_electron_vite_project_electron_main_vault_db_listvaultsforaccount" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L399", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getvaultlistaccountdetail", + "target": "apps_electron_vite_project_electron_main_vault_db_listvaultsforaccount" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultAccountIsolation.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultaccountisolation_test", + "target": "apps_electron_vite_project_electron_main_vault_db_listvaultsforaccount", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_db_registervault", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L206", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_createvault", + "target": "apps_electron_vite_project_electron_main_vault_db_registervault" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_db_unregistervault", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L382", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_deletevault", + "target": "apps_electron_vite_project_electron_main_vault_db_unregistervault" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L423", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db_createvaultdb", + "target": "apps_electron_vite_project_electron_main_vault_db_createschema", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_db_createvaultdb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L198", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_createvault", + "target": "apps_electron_vite_project_electron_main_vault_db_createvaultdb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L480", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db_openvaultdb", + "target": "apps_electron_vite_project_electron_main_vault_db_migratedocumenttable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L477", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db_openvaultdb", + "target": "apps_electron_vite_project_electron_main_vault_db_migrateenvelopecolumns", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L499", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db_openvaultdb", + "target": "apps_electron_vite_project_electron_main_vault_db_migratehscontextprofiletables", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_db_openvaultdb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1866", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensuredbconnection", + "target": "apps_electron_vite_project_electron_main_vault_db_openvaultdb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L311", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_unlock", + "target": "apps_electron_vite_project_electron_main_vault_db_openvaultdb" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_db_closevaultdb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L433", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_lock", + "target": "apps_electron_vite_project_electron_main_vault_db_closevaultdb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L874", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db_createschema", + "target": "apps_electron_vite_project_electron_main_vault_db_migratedocumenttable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L871", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db_createschema", + "target": "apps_electron_vite_project_electron_main_vault_db_migrateenvelopecolumns", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/db.ts", + "source_location": "L877", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_db_createschema", + "target": "apps_electron_vite_project_electron_main_vault_db_migratehscontextprofiletables", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_test", + "target": "apps_electron_vite_project_electron_main_vault_db_migratehscontextprofiletables", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_documentservice_test", + "target": "apps_electron_vite_project_electron_main_vault_documentservice", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_documentservice_test", + "target": "apps_electron_vite_project_electron_main_vault_documentservice_detectmimetype", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_documentservice_test", + "target": "apps_electron_vite_project_electron_main_vault_documentservice_isblockedextension", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_documentservice_test", + "target": "apps_electron_vite_project_electron_main_vault_documentservice_sanitisefilename", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_documentservice_test", + "target": "apps_electron_vite_project_electron_main_vault_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_documentservice_test", + "target": "apps_electron_vite_project_electron_main_vault_types_blocked_extensions", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_documentservice_test", + "target": "apps_electron_vite_project_electron_main_vault_types_max_document_size", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_documentservice_test", + "target": "apps_electron_vite_project_electron_main_vault_types_safe_preview_mimes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_documentservice_test", + "target": "packages_shared_src_vault_vaultcapabilities_canaccessrecordtype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.ts", + "source_location": "L273", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_documentservice", + "target": "apps_electron_vite_project_electron_main_vault_documentservice_deletedocument", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_documentservice", + "target": "apps_electron_vite_project_electron_main_vault_documentservice_detectmimetype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.ts", + "source_location": "L208", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_documentservice", + "target": "apps_electron_vite_project_electron_main_vault_documentservice_getdocument", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_documentservice", + "target": "apps_electron_vite_project_electron_main_vault_documentservice_importdocument", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_documentservice", + "target": "apps_electron_vite_project_electron_main_vault_documentservice_isblockedextension", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.ts", + "source_location": "L252", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_documentservice", + "target": "apps_electron_vite_project_electron_main_vault_documentservice_listdocuments", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.ts", + "source_location": "L327", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_documentservice", + "target": "apps_electron_vite_project_electron_main_vault_documentservice_rowtodocument", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_documentservice", + "target": "apps_electron_vite_project_electron_main_vault_documentservice_sanitisefilename", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.ts", + "source_location": "L296", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_documentservice", + "target": "apps_electron_vite_project_electron_main_vault_documentservice_updatedocumentmeta", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_documentservice", + "target": "apps_electron_vite_project_electron_main_vault_envelope", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_documentservice", + "target": "apps_electron_vite_project_electron_main_vault_envelope_envelope_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_documentservice", + "target": "apps_electron_vite_project_electron_main_vault_envelope_openrecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_documentservice", + "target": "apps_electron_vite_project_electron_main_vault_envelope_sealrecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_documentservice", + "target": "apps_electron_vite_project_electron_main_vault_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_documentservice", + "target": "apps_electron_vite_project_electron_main_vault_types_blocked_extensions", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_documentservice", + "target": "apps_electron_vite_project_electron_main_vault_types_documentimportresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_documentservice", + "target": "apps_electron_vite_project_electron_main_vault_types_max_document_size", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_documentservice", + "target": "apps_electron_vite_project_electron_main_vault_types_vaultdocument", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_documentservice", + "target": "packages_shared_src_vault_vaultcapabilities_canaccessrecordtype", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_documentservice", + "target": "packages_shared_src_vault_vaultcapabilities_vaulttier", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_documentservice", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.ts", + "source_location": "L134", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_documentservice_importdocument", + "target": "apps_electron_vite_project_electron_main_vault_documentservice_sanitisefilename", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.ts", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_documentservice_importdocument", + "target": "apps_electron_vite_project_electron_main_vault_documentservice_isblockedextension", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_documentservice_isblockedextension", + "target": "apps_electron_vite_project_electron_main_vault_types_blocked_extensions" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.ts", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_documentservice_importdocument", + "target": "apps_electron_vite_project_electron_main_vault_documentservice_detectmimetype", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.ts", + "source_location": "L161", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_documentservice_importdocument", + "target": "apps_electron_vite_project_electron_main_vault_documentservice_rowtodocument", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.ts", + "source_location": "L171", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_documentservice_importdocument", + "target": "apps_electron_vite_project_electron_main_vault_envelope_sealrecord" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_documentservice_importdocument", + "target": "packages_shared_src_vault_vaultcapabilities_canaccessrecordtype" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_documentservice_importdocument", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.ts", + "source_location": "L244", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_documentservice_getdocument", + "target": "apps_electron_vite_project_electron_main_vault_documentservice_rowtodocument", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.ts", + "source_location": "L233", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_documentservice_getdocument", + "target": "apps_electron_vite_project_electron_main_vault_envelope_openrecord" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.ts", + "source_location": "L216", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_documentservice_getdocument", + "target": "packages_shared_src_vault_vaultcapabilities_canaccessrecordtype" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_documentservice_getdocument", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.ts", + "source_location": "L267", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_documentservice_listdocuments", + "target": "apps_electron_vite_project_electron_main_vault_documentservice_rowtodocument", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.ts", + "source_location": "L257", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_documentservice_listdocuments", + "target": "packages_shared_src_vault_vaultcapabilities_canaccessrecordtype" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_documentservice_listdocuments", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.ts", + "source_location": "L279", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_documentservice_deletedocument", + "target": "packages_shared_src_vault_vaultcapabilities_canaccessrecordtype" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_documentservice_deletedocument", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.ts", + "source_location": "L320", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_documentservice_updatedocumentmeta", + "target": "apps_electron_vite_project_electron_main_vault_documentservice_rowtodocument", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/documentService.ts", + "source_location": "L302", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_documentservice_updatedocumentmeta", + "target": "packages_shared_src_vault_vaultcapabilities_canaccessrecordtype" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_documentservice_updatedocumentmeta", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_envelope_test", + "target": "apps_electron_vite_project_electron_main_vault_envelope", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_envelope_test", + "target": "apps_electron_vite_project_electron_main_vault_envelope_decryptrecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_envelope_test", + "target": "apps_electron_vite_project_electron_main_vault_envelope_encryptrecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_envelope_test", + "target": "apps_electron_vite_project_electron_main_vault_envelope_envelope_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_envelope_test", + "target": "apps_electron_vite_project_electron_main_vault_envelope_generaterecorddek", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_envelope_test", + "target": "apps_electron_vite_project_electron_main_vault_envelope_legacy_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_envelope_test", + "target": "apps_electron_vite_project_electron_main_vault_envelope_openrecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_envelope_test", + "target": "apps_electron_vite_project_electron_main_vault_envelope_sealrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.test.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_envelope_test", + "target": "apps_electron_vite_project_electron_main_vault_envelope_test_makekek", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.test.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_envelope_test", + "target": "apps_electron_vite_project_electron_main_vault_envelope_test_sample_fields", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_envelope_test", + "target": "apps_electron_vite_project_electron_main_vault_envelope_unwraprecorddek", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_envelope_test", + "target": "apps_electron_vite_project_electron_main_vault_envelope_wraprecorddek", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.ts", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_envelope", + "target": "apps_electron_vite_project_electron_main_vault_envelope_decryptrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_envelope", + "target": "apps_electron_vite_project_electron_main_vault_envelope_encryptrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_envelope", + "target": "apps_electron_vite_project_electron_main_vault_envelope_ensuresodium", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_envelope", + "target": "apps_electron_vite_project_electron_main_vault_envelope_envelope_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.ts", + "source_location": "L178", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_envelope", + "target": "apps_electron_vite_project_electron_main_vault_envelope_envelopewriteresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_envelope", + "target": "apps_electron_vite_project_electron_main_vault_envelope_generaterecorddek", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_envelope", + "target": "apps_electron_vite_project_electron_main_vault_envelope_legacy_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.ts", + "source_location": "L218", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_envelope", + "target": "apps_electron_vite_project_electron_main_vault_envelope_openrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_envelope", + "target": "apps_electron_vite_project_electron_main_vault_envelope_require", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.ts", + "source_location": "L193", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_envelope", + "target": "apps_electron_vite_project_electron_main_vault_envelope_sealrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_envelope", + "target": "apps_electron_vite_project_electron_main_vault_envelope_unwraprecorddek", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_envelope", + "target": "apps_electron_vite_project_electron_main_vault_envelope_wraprecorddek", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "target": "apps_electron_vite_project_electron_main_vault_envelope", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/lazyDecrypt.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_lazydecrypt_test", + "target": "apps_electron_vite_project_electron_main_vault_envelope", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/security-regression.test.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_security_regression_test", + "target": "apps_electron_vite_project_electron_main_vault_envelope", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_envelope", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultApiKeyService.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultapikeyservice", + "target": "apps_electron_vite_project_electron_main_vault_envelope", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_envelope_ensuresodium", + "target": "apps_electron_vite_project_electron_main_vault_envelope_require", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.ts", + "source_location": "L152", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_envelope_decryptrecord", + "target": "apps_electron_vite_project_electron_main_vault_envelope_ensuresodium", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_envelope_encryptrecord", + "target": "apps_electron_vite_project_electron_main_vault_envelope_ensuresodium", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/lazyDecrypt.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_lazydecrypt_test", + "target": "apps_electron_vite_project_electron_main_vault_envelope_envelope_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_envelope_envelope_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/lazyDecrypt.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_lazydecrypt_test", + "target": "apps_electron_vite_project_electron_main_vault_envelope_legacy_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_envelope_legacy_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.ts", + "source_location": "L198", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_envelope_sealrecord", + "target": "apps_electron_vite_project_electron_main_vault_envelope_generaterecorddek", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.ts", + "source_location": "L201", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_envelope_sealrecord", + "target": "apps_electron_vite_project_electron_main_vault_envelope_wraprecorddek", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/security-regression.test.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_security_regression_test", + "target": "apps_electron_vite_project_electron_main_vault_envelope_wraprecorddek", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.ts", + "source_location": "L224", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_envelope_openrecord", + "target": "apps_electron_vite_project_electron_main_vault_envelope_unwraprecorddek", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "target": "apps_electron_vite_project_electron_main_vault_envelope_unwraprecorddek", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L573", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_getprofiledocumentcontent", + "target": "apps_electron_vite_project_electron_main_vault_envelope_unwraprecorddek" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/security-regression.test.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_security_regression_test", + "target": "apps_electron_vite_project_electron_main_vault_envelope_unwraprecorddek", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.ts", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_envelope_sealrecord", + "target": "apps_electron_vite_project_electron_main_vault_envelope_encryptrecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/security-regression.test.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_security_regression_test", + "target": "apps_electron_vite_project_electron_main_vault_envelope_encryptrecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/envelope.ts", + "source_location": "L226", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_envelope_openrecord", + "target": "apps_electron_vite_project_electron_main_vault_envelope_decryptrecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "target": "apps_electron_vite_project_electron_main_vault_envelope_decryptrecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L574", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_getprofiledocumentcontent", + "target": "apps_electron_vite_project_electron_main_vault_envelope_decryptrecord" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/security-regression.test.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_security_regression_test", + "target": "apps_electron_vite_project_electron_main_vault_envelope_decryptrecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "target": "apps_electron_vite_project_electron_main_vault_envelope_sealrecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L455", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_uploadprofiledocument", + "target": "apps_electron_vite_project_electron_main_vault_envelope_sealrecord" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/security-regression.test.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_security_regression_test", + "target": "apps_electron_vite_project_electron_main_vault_envelope_sealrecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_envelope_sealrecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L729", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_createitem", + "target": "apps_electron_vite_project_electron_main_vault_envelope_sealrecord" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1239", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_migrateitemtov2", + "target": "apps_electron_vite_project_electron_main_vault_envelope_sealrecord" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L822", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateitem", + "target": "apps_electron_vite_project_electron_main_vault_envelope_sealrecord" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultApiKeyService.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultapikeyservice", + "target": "apps_electron_vite_project_electron_main_vault_envelope_sealrecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/vaultApiKeyService.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultapikeyservice_saveanthropicapikey", + "target": "apps_electron_vite_project_electron_main_vault_envelope_sealrecord" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "target": "apps_electron_vite_project_electron_main_vault_envelope_openrecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L560", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_getprofiledocumentcontent", + "target": "apps_electron_vite_project_electron_main_vault_envelope_openrecord" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/security-regression.test.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_security_regression_test", + "target": "apps_electron_vite_project_electron_main_vault_envelope_openrecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_envelope_openrecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L919", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getitem", + "target": "apps_electron_vite_project_electron_main_vault_envelope_openrecord" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultApiKeyService.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultapikeyservice", + "target": "apps_electron_vite_project_electron_main_vault_envelope_openrecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/vaultApiKeyService.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultapikeyservice_getanthropicapikeyasync", + "target": "apps_electron_vite_project_electron_main_vault_envelope_openrecord" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextAccessService.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice_test", + "target": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextAccessService.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice_test", + "target": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice_requestlinkopenapproval", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextAccessService.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice_test", + "target": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice_requestoriginaldocumentcontent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextAccessService.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice_test", + "target": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice_test_makedb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextAccessService.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice_test", + "target": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice_test_require", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextAccessService.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice", + "target": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice_access_actions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextAccessService.ts", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice", + "target": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice_checkoriginaldocumentapproved", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextAccessService.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice", + "target": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice_grantapproval", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextAccessService.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice", + "target": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice_insertaccessaudit", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextAccessService.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice", + "target": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice_isapproved", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextAccessService.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice", + "target": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice_requestlinkopenapproval", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextAccessService.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice", + "target": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice_requestoriginaldocumentcontent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextAccessService.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice", + "target": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice_requirehscontextaccess", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextAccessService.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextAccessService.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_getprofiledocumentcontent", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextAccessService.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice", + "target": "apps_electron_vite_project_electron_main_vault_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextAccessService.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice", + "target": "packages_shared_src_vault_vaultcapabilities_canaccessrecordtype", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextAccessService.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice", + "target": "packages_shared_src_vault_vaultcapabilities_vaulttier", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextServiceRegression.test.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextserviceregression_test", + "target": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextAccessService.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice_requestoriginaldocumentcontent", + "target": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice_requirehscontextaccess", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextAccessService.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice_requirehscontextaccess", + "target": "packages_shared_src_vault_vaultcapabilities_canaccessrecordtype", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextAccessService.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice_requestlinkopenapproval", + "target": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice_insertaccessaudit", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextAccessService.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice_requestoriginaldocumentcontent", + "target": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice_insertaccessaudit", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextAccessService.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice_checkoriginaldocumentapproved", + "target": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice_isapproved", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextAccessService.ts", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice_requestlinkopenapproval", + "target": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice_isapproved", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextAccessService.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice_requestoriginaldocumentcontent", + "target": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice_isapproved", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextAccessService.ts", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice_requestlinkopenapproval", + "target": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice_grantapproval", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextAccessService.ts", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice_requestoriginaldocumentcontent", + "target": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice_grantapproval", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextAccessService.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice_requestoriginaldocumentcontent", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_getprofiledocumentcontent" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextServiceRegression.test.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextserviceregression_test", + "target": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice_requestoriginaldocumentcontent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice_requestoriginaldocumentcontent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextServiceRegression.test.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextserviceregression_test", + "target": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice_requestlinkopenapproval", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_hscontextaccessservice_requestlinkopenapproval", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextNormalize.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_test", + "target": "apps_electron_vite_project_electron_main_vault_hscontextnormalize", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextNormalize.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_test", + "target": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_buildcombinedcontexttext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextNormalize.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_test", + "target": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_hscontextprofile", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextNormalize.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_test", + "target": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_normalizeadhoccontext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextNormalize.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_test", + "target": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_normalizeprofiletotext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextNormalize.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_test", + "target": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_profiledocumentsummary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextNormalize.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_test", + "target": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_test_makeprofile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextNormalize.ts", + "source_location": "L415", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextnormalize", + "target": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_buildcombinedcontexttext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextNormalize.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextnormalize", + "target": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_contactentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextNormalize.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextnormalize", + "target": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_customfield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextNormalize.ts", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextnormalize", + "target": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_hscontextprofile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextNormalize.ts", + "source_location": "L184", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextnormalize", + "target": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_normalizeadhoccontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextNormalize.ts", + "source_location": "L222", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextnormalize", + "target": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_normalizeprofiletotext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextNormalize.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextnormalize", + "target": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_openinghoursentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextNormalize.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextnormalize", + "target": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_paymentmethod", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextNormalize.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextnormalize", + "target": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_paymentmethodbankaccount", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextNormalize.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextnormalize", + "target": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_paymentmethodcreditcard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextNormalize.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextnormalize", + "target": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_paymentmethodpaypal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextNormalize.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextnormalize", + "target": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_paymentmethodtype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextNormalize.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextnormalize", + "target": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_profiledocumentsummary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextNormalize.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextnormalize", + "target": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_profilefields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextNormalize.ts", + "source_location": "L204", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextnormalize", + "target": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_rendercontacts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextNormalize.ts", + "source_location": "L155", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextnormalize", + "target": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_renderjsonvalue", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextNormalize.ts", + "source_location": "L215", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextnormalize", + "target": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_renderopeninghours", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextNormalize.ts", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextnormalize", + "target": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_trimlines", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "target": "apps_electron_vite_project_electron_main_vault_hscontextnormalize", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "target": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_profilefields", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_createprofileinput", + "target": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_profilefields", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_hscontextprofiledetail", + "target": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_profilefields", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_updateprofileinput", + "target": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_profilefields", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "target": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_customfield", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_createprofileinput", + "target": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_customfield", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_hscontextprofiledetail", + "target": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_customfield", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_updateprofileinput", + "target": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_customfield", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "target": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_hscontextprofile", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "target": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_profiledocumentsummary", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_hscontextprofiledetail", + "target": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_profiledocumentsummary", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextNormalize.ts", + "source_location": "L192", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_normalizeadhoccontext", + "target": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_trimlines", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextNormalize.ts", + "source_location": "L399", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_normalizeprofiletotext", + "target": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_trimlines", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextNormalize.ts", + "source_location": "L192", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_normalizeadhoccontext", + "target": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_renderjsonvalue", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextNormalize.ts", + "source_location": "L427", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_buildcombinedcontexttext", + "target": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_normalizeadhoccontext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextNormalize.ts", + "source_location": "L311", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_normalizeprofiletotext", + "target": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_rendercontacts", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextNormalize.ts", + "source_location": "L319", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_normalizeprofiletotext", + "target": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_renderopeninghours", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextNormalize.ts", + "source_location": "L422", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_buildcombinedcontexttext", + "target": "apps_electron_vite_project_electron_main_vault_hscontextnormalize_normalizeprofiletotext", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_test", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_test", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_markdocumentextractionfailed", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_test", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_markdocumentextractionpending", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_test", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_markdocumentextractionsuccess", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_test", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_test_makedb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_test", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_validateextractedtext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_buildextractionfailuremessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_extractionoptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_extractpdfmetadata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L496", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_extractpdftextwithvisionapi", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L217", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_extracttextdirect", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L525", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_extracttextfrompdf", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L272", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_extracttextocr", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L342", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_extracttextvision", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L647", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_insertdocumentpages", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_loadpdfjs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L254", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_makenodecanvasfactory", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L691", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_markdocumentextractionfailed", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L635", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_markdocumentextractionpending", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L662", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_markdocumentextractionsuccess", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_ocrjobresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_pdfmetadata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L171", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_reconstructpagetext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L729", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_runextractionjob", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L763", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_runextractionjobwithvision", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L712", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_updateextractionprogress", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L612", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_validateextractedtext", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L500", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_extractpdftextwithvisionapi", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_loadpdfjs", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L530", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_extracttextfrompdf", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_loadpdfjs", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L778", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_runextractionjobwithvision", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_loadpdfjs", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L593", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_extracttextfrompdf", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_extractpdfmetadata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L594", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_extracttextfrompdf", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_buildextractionfailuremessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L239", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_extracttextdirect", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_reconstructpagetext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L535", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_extracttextfrompdf", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_extracttextdirect", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L284", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_extracttextocr", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_makenodecanvasfactory", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L355", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_extracttextvision", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_makenodecanvasfactory", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L562", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_extracttextfrompdf", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_extracttextocr", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L501", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_extractpdftextwithvisionapi", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_extracttextvision", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L779", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_runextractionjobwithvision", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_extracttextvision", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L741", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_runextractionjob", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_extracttextfrompdf", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L744", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_runextractionjob", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_validateextractedtext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L785", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_runextractionjobwithvision", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_validateextractedtext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L735", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_runextractionjob", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_markdocumentextractionpending", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L770", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_runextractionjobwithvision", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_markdocumentextractionpending", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L671", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_markdocumentextractionsuccess", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_insertdocumentpages", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L746", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_runextractionjob", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_markdocumentextractionsuccess", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L787", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_runextractionjobwithvision", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_markdocumentextractionsuccess", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L749", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_runextractionjob", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_markdocumentextractionfailed", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L790", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_runextractionjobwithvision", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_markdocumentextractionfailed", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_markdocumentextractionfailed", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L834", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_retrydocumentwithvision", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_markdocumentextractionfailed" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L496", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_uploadprofiledocument", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_markdocumentextractionfailed" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L738", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_runextractionjob", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_updateextractionprogress", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts", + "source_location": "L773", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_runextractionjobwithvision", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_updateextractionprogress", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_runextractionjob", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L508", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_uploadprofiledocument", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_runextractionjob" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_runextractionjobwithvision", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L830", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_retrydocumentwithvision", + "target": "apps_electron_vite_project_electron_main_vault_hscontextocrjob_runextractionjobwithvision" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_test", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_test", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_archiveprofile", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_test", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_createprofile", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_test", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_deleteprofile", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_test", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_duplicateprofile", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_test", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_getprofile", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_test", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_listprofiles", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.test.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_test", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_test_db_available", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.test.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_test", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_test_require", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_test", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_updateprofile", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_test", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_updateprofiledocumentmeta", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_test", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_uploadprofiledocument", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L334", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_archiveprofile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L238", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_createprofile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_createprofileinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L340", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_deleteprofile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L581", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_deleteprofiledocument", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L169", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_detailtoprofile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L644", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_documentpageinfo", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L699", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_documentsearchmatch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L346", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_duplicateprofile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L693", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_getdocumentfulltext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L664", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_getdocumentpage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L652", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_getdocumentpagecount", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L681", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_getdocumentpagelist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L218", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_getprofile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L532", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_getprofiledocumentcontent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_hscontextprofiledetail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_hscontextprofiledocumentrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_hscontextprofilerow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_hscontextprofilesummary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L371", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_ispdfbuffer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L182", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_listprofiles", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L369", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_pdf_magic", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_requirehscontextaccess", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L787", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_resolveprofilesforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L816", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_retrydocumentwithvision", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_rowtodetail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_rowtosummary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L709", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_searchdocumentpages", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L609", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_splitextractedtexttopages", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L272", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_updateprofile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L742", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_updateprofiledocumentmeta", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_updateprofileinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L399", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_uploadprofiledocument", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "target": "apps_electron_vite_project_electron_main_vault_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "target": "packages_shared_src_handshake_hscontextfieldvalidation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "target": "packages_shared_src_handshake_hscontextfieldvalidation_validatedocumentlabel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "target": "packages_shared_src_handshake_hscontextfieldvalidation_validatedocumenttype", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "target": "packages_shared_src_vault_vaultcapabilities_canaccessrecordtype", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "target": "packages_shared_src_vault_vaultcapabilities_vaulttier", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextServiceRegression.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextserviceregression_test", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_hscontextprofiledetail", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_hscontextprofilesummary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_createprofileinput", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1362", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_createhsprofile", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_createprofileinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_updateprofileinput", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1368", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updatehsprofile", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_updateprofileinput", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L335", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_archiveprofile", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_requirehscontextaccess", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L243", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_createprofile", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_requirehscontextaccess", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L341", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_deleteprofile", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_requirehscontextaccess", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L582", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_deleteprofiledocument", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_requirehscontextaccess", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L351", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_duplicateprofile", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_requirehscontextaccess", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L694", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_getdocumentfulltext", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_requirehscontextaccess", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L670", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_getdocumentpage", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_requirehscontextaccess", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L653", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_getdocumentpagecount", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_requirehscontextaccess", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L682", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_getdocumentpagelist", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_requirehscontextaccess", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L223", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_getprofile", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_requirehscontextaccess", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L538", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_getprofiledocumentcontent", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_requirehscontextaccess", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L187", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_listprofiles", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_requirehscontextaccess", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_requirehscontextaccess", + "target": "packages_shared_src_vault_vaultcapabilities_canaccessrecordtype", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L792", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_resolveprofilesforhandshake", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_requirehscontextaccess", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L823", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_retrydocumentwithvision", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_requirehscontextaccess", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L710", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_searchdocumentpages", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_requirehscontextaccess", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L278", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_updateprofile", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_requirehscontextaccess", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L748", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_updateprofiledocumentmeta", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_requirehscontextaccess", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L411", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_uploadprofiledocument", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_requirehscontextaccess", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L266", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_createprofile", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_rowtosummary", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L207", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_listprofiles", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_rowtosummary", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_rowtodetail", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_rowtosummary", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L324", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_updateprofile", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_rowtosummary", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L235", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_getprofile", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_rowtodetail", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L802", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_resolveprofilesforhandshake", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_detailtoprofile", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextServiceRegression.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextserviceregression_test", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_listprofiles", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_listprofiles", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1353", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_listhsprofiles", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_listprofiles" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L353", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_duplicateprofile", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_getprofile", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L796", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_resolveprofilesforhandshake", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_getprofile", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextServiceRegression.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextserviceregression_test", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_getprofile", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_getprofile", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1359", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_gethsprofile", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_getprofile" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L356", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_duplicateprofile", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_createprofile", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextServiceRegression.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextserviceregression_test", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_createprofile", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_createprofile", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1365", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_createhsprofile", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_createprofile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextServiceRegression.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextserviceregression_test", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_updateprofile", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_updateprofile", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1371", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updatehsprofile", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_updateprofile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextServiceRegression.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextserviceregression_test", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_archiveprofile", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_archiveprofile", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1385", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_archivehsprofile", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_archiveprofile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextServiceRegression.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextserviceregression_test", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_deleteprofile", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_deleteprofile", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1391", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_deletehsprofile", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_deleteprofile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextServiceRegression.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextserviceregression_test", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_duplicateprofile", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_duplicateprofile", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1397", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_duplicatehsprofile", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_duplicateprofile" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L420", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_uploadprofiledocument", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_ispdfbuffer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextServiceRegression.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextserviceregression_test", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_uploadprofiledocument", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_uploadprofiledocument", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1412", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_uploadhsprofiledocument", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_uploadprofiledocument" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L826", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_retrydocumentwithvision", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_getprofiledocumentcontent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_getprofiledocumentcontent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1466", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getownerdocumentcontent", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_getprofiledocumentcontent" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextServiceRegression.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextserviceregression_test", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_deleteprofiledocument", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_deleteprofiledocument", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1428", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_deletehsprofiledocument", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_deleteprofiledocument" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L671", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_getdocumentpage", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_splitextractedtexttopages", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L654", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_getdocumentpagecount", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_splitextractedtexttopages", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L683", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_getdocumentpagelist", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_splitextractedtexttopages", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L712", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_searchdocumentpages", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_splitextractedtexttopages", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_documentpageinfo", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1481", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getdocumentpagelist", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_documentpageinfo", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_getdocumentpagecount", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_getdocumentpage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_getdocumentpagelist", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_getdocumentfulltext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_documentsearchmatch", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1493", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_searchdocumentpages", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_documentsearchmatch", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_searchdocumentpages", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L759", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_updateprofiledocumentmeta", + "target": "packages_shared_src_handshake_hscontextfieldvalidation_validatedocumentlabel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts", + "source_location": "L765", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_updateprofiledocumentmeta", + "target": "packages_shared_src_handshake_hscontextfieldvalidation_validatedocumenttype" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextServiceRegression.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextserviceregression_test", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_updateprofiledocumentmeta", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_updateprofiledocumentmeta", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1422", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updatehsprofiledocumentmeta", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_updateprofiledocumentmeta" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextServiceRegression.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextserviceregression_test", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_resolveprofilesforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_resolveprofilesforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1443", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_resolvehsprofilesforhandshake", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_resolveprofilesforhandshake" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_hscontextprofileservice_retrydocumentwithvision", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextServiceRegression.test.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextserviceregression_test", + "target": "apps_electron_vite_project_electron_main_vault_service", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/hsContextServiceRegression.test.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_hscontextserviceregression_test", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/lazyDecrypt.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_lazydecrypt_test", + "target": "apps_electron_vite_project_electron_main_vault_lazydecrypt_test_fakerow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/lazyDecrypt.test.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_lazydecrypt_test", + "target": "apps_electron_vite_project_electron_main_vault_lazydecrypt_test_listitemsmapping", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/lazyDecrypt.test.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_lazydecrypt_test", + "target": "apps_electron_vite_project_electron_main_vault_lazydecrypt_test_now", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/lazyDecrypt.test.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_lazydecrypt_test", + "target": "apps_electron_vite_project_electron_main_vault_lazydecrypt_test_searchmapping", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/lazyDecrypt.test.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_lazydecrypt_test", + "target": "apps_electron_vite_project_electron_main_vault_lazydecrypt_test_v1_row", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/lazyDecrypt.test.ts", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_lazydecrypt_test", + "target": "apps_electron_vite_project_electron_main_vault_lazydecrypt_test_v2_row", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/lazyDecrypt.test.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_lazydecrypt_test", + "target": "apps_electron_vite_project_electron_main_vault_lazydecrypt_test_vaultitem", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc", + "target": "apps_electron_vite_project_electron_main_vault_rpc_clearembeddingserviceref", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc", + "target": "apps_electron_vite_project_electron_main_vault_rpc_gethastate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L154", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc", + "target": "apps_electron_vite_project_electron_main_vault_rpc_handlevaultrpc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc", + "target": "apps_electron_vite_project_electron_main_vault_rpc_hastate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc", + "target": "apps_electron_vite_project_electron_main_vault_rpc_loadhastate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc", + "target": "apps_electron_vite_project_electron_main_vault_rpc_persisthastate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc", + "target": "apps_electron_vite_project_electron_main_vault_rpc_setupembeddingserviceref", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc", + "target": "apps_electron_vite_project_electron_main_vault_schemas", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc", + "target": "apps_electron_vite_project_electron_main_vault_schemas_activateharequestschema", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc", + "target": "apps_electron_vite_project_electron_main_vault_schemas_createcontainerschema", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc", + "target": "apps_electron_vite_project_electron_main_vault_schemas_createitemschema", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc", + "target": "apps_electron_vite_project_electron_main_vault_schemas_createvaultrequestschema", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc", + "target": "apps_electron_vite_project_electron_main_vault_schemas_deactivateharequestschema", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc", + "target": "apps_electron_vite_project_electron_main_vault_schemas_deletecontainerrequestschema", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc", + "target": "apps_electron_vite_project_electron_main_vault_schemas_deleteitemrequestschema", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc", + "target": "apps_electron_vite_project_electron_main_vault_schemas_getautofillcandidatesrequestschema", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc", + "target": "apps_electron_vite_project_electron_main_vault_schemas_getitemrequestschema", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc", + "target": "apps_electron_vite_project_electron_main_vault_schemas_importcsvrequestschema", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc", + "target": "apps_electron_vite_project_electron_main_vault_schemas_listitemsrequestschema", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc", + "target": "apps_electron_vite_project_electron_main_vault_schemas_lockharequestschema", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc", + "target": "apps_electron_vite_project_electron_main_vault_schemas_searchrequestschema", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc", + "target": "apps_electron_vite_project_electron_main_vault_schemas_unlockharequestschema", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc", + "target": "apps_electron_vite_project_electron_main_vault_schemas_unlockvaultrequestschema", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc", + "target": "apps_electron_vite_project_electron_main_vault_schemas_updatecontainerschema", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc", + "target": "apps_electron_vite_project_electron_main_vault_schemas_updateitemschema", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc", + "target": "apps_electron_vite_project_electron_main_vault_schemas_updatesettingsrequestschema", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc", + "target": "apps_electron_vite_project_electron_main_vault_service", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc", + "target": "apps_electron_vite_project_electron_main_vault_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc", + "target": "packages_shared_src_vault_hamode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc", + "target": "packages_shared_src_vault_hamode_activateha", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc", + "target": "packages_shared_src_vault_hamode_deactivateha", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc", + "target": "packages_shared_src_vault_hamode_default_ha_state", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc", + "target": "packages_shared_src_vault_hamode_haallowsipc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc", + "target": "packages_shared_src_vault_hamode_hamodestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc", + "target": "packages_shared_src_vault_hamode_initial_ha_state_off", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc", + "target": "packages_shared_src_vault_hamode_ishaactive", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc", + "target": "packages_shared_src_vault_hamode_lockha", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc", + "target": "packages_shared_src_vault_hamode_unlockha", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc", + "target": "packages_shared_src_vault_vaultcapabilities_vaulttier", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultCanon.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultcanon", + "target": "apps_electron_vite_project_electron_main_vault_rpc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L322", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc_handlevaultrpc", + "target": "apps_electron_vite_project_electron_main_vault_rpc_persisthastate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L183", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc_handlevaultrpc", + "target": "apps_electron_vite_project_electron_main_vault_rpc_setupembeddingserviceref", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L194", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc_handlevaultrpc", + "target": "apps_electron_vite_project_electron_main_vault_rpc_clearembeddingserviceref", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L318", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc_handlevaultrpc", + "target": "apps_electron_vite_project_electron_main_vault_schemas_activateharequestschema" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L215", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc_handlevaultrpc", + "target": "apps_electron_vite_project_electron_main_vault_schemas_createcontainerschema" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L242", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc_handlevaultrpc", + "target": "apps_electron_vite_project_electron_main_vault_schemas_createitemschema" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L171", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc_handlevaultrpc", + "target": "apps_electron_vite_project_electron_main_vault_schemas_createvaultrequestschema" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L329", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc_handlevaultrpc", + "target": "apps_electron_vite_project_electron_main_vault_schemas_deactivateharequestschema" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L227", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc_handlevaultrpc", + "target": "apps_electron_vite_project_electron_main_vault_schemas_deletecontainerrequestschema" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L254", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc_handlevaultrpc", + "target": "apps_electron_vite_project_electron_main_vault_schemas_deleteitemrequestschema" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L278", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc_handlevaultrpc", + "target": "apps_electron_vite_project_electron_main_vault_schemas_getautofillcandidatesrequestschema" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L260", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc_handlevaultrpc", + "target": "apps_electron_vite_project_electron_main_vault_schemas_getitemrequestschema" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L304", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc_handlevaultrpc", + "target": "apps_electron_vite_project_electron_main_vault_schemas_importcsvrequestschema" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L266", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc_handlevaultrpc", + "target": "apps_electron_vite_project_electron_main_vault_schemas_listitemsrequestschema" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L340", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc_handlevaultrpc", + "target": "apps_electron_vite_project_electron_main_vault_schemas_lockharequestschema" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L272", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc_handlevaultrpc", + "target": "apps_electron_vite_project_electron_main_vault_schemas_searchrequestschema" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L351", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc_handlevaultrpc", + "target": "apps_electron_vite_project_electron_main_vault_schemas_unlockharequestschema" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L181", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc_handlevaultrpc", + "target": "apps_electron_vite_project_electron_main_vault_schemas_unlockvaultrequestschema" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L221", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc_handlevaultrpc", + "target": "apps_electron_vite_project_electron_main_vault_schemas_updatecontainerschema" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L248", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc_handlevaultrpc", + "target": "apps_electron_vite_project_electron_main_vault_schemas_updateitemschema" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L288", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc_handlevaultrpc", + "target": "apps_electron_vite_project_electron_main_vault_schemas_updatesettingsrequestschema" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L319", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc_handlevaultrpc", + "target": "packages_shared_src_vault_hamode_activateha" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L330", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc_handlevaultrpc", + "target": "packages_shared_src_vault_hamode_deactivateha" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L160", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc_handlevaultrpc", + "target": "packages_shared_src_vault_hamode_haallowsipc" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L160", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc_handlevaultrpc", + "target": "packages_shared_src_vault_hamode_ishaactive" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L341", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc_handlevaultrpc", + "target": "packages_shared_src_vault_hamode_lockha" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/rpc.ts", + "source_location": "L352", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpc_handlevaultrpc", + "target": "packages_shared_src_vault_hamode_unlockha" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpcAuth.test.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpcauth_test", + "target": "apps_electron_vite_project_electron_main_vault_rpcauth_test_simulateservicegate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpcAuth.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpcauth_test", + "target": "packages_shared_src_vault_vaultcapabilities", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/rpcAuth.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpcauth_test", + "target": "packages_shared_src_vault_vaultcapabilities_canaccesscategory", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/rpcAuth.test.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_rpcauth_test_simulateservicegate", + "target": "packages_shared_src_vault_vaultcapabilities_canaccesscategory" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L233", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_schemas", + "target": "apps_electron_vite_project_electron_main_vault_schemas_activateharequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_schemas", + "target": "apps_electron_vite_project_electron_main_vault_schemas_activateharequestschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_schemas", + "target": "apps_electron_vite_project_electron_main_vault_schemas_autofillsectionsschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_schemas", + "target": "apps_electron_vite_project_electron_main_vault_schemas_containerschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_schemas", + "target": "apps_electron_vite_project_electron_main_vault_schemas_containertypeschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L221", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_schemas", + "target": "apps_electron_vite_project_electron_main_vault_schemas_createcontainerrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_schemas", + "target": "apps_electron_vite_project_electron_main_vault_schemas_createcontainerschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L223", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_schemas", + "target": "apps_electron_vite_project_electron_main_vault_schemas_createitemrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_schemas", + "target": "apps_electron_vite_project_electron_main_vault_schemas_createitemschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L219", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_schemas", + "target": "apps_electron_vite_project_electron_main_vault_schemas_createvaultrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_schemas", + "target": "apps_electron_vite_project_electron_main_vault_schemas_createvaultrequestschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L234", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_schemas", + "target": "apps_electron_vite_project_electron_main_vault_schemas_deactivateharequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L154", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_schemas", + "target": "apps_electron_vite_project_electron_main_vault_schemas_deactivateharequestschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L228", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_schemas", + "target": "apps_electron_vite_project_electron_main_vault_schemas_deletecontainerrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_schemas", + "target": "apps_electron_vite_project_electron_main_vault_schemas_deletecontainerrequestschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L227", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_schemas", + "target": "apps_electron_vite_project_electron_main_vault_schemas_deleteitemrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_schemas", + "target": "apps_electron_vite_project_electron_main_vault_schemas_deleteitemrequestschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L186", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_schemas", + "target": "apps_electron_vite_project_electron_main_vault_schemas_errorresponseschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L206", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_schemas", + "target": "apps_electron_vite_project_electron_main_vault_schemas_exportcsvresponseschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_schemas", + "target": "apps_electron_vite_project_electron_main_vault_schemas_fieldschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_schemas", + "target": "apps_electron_vite_project_electron_main_vault_schemas_fieldtypeschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L230", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_schemas", + "target": "apps_electron_vite_project_electron_main_vault_schemas_getautofillcandidatesrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_schemas", + "target": "apps_electron_vite_project_electron_main_vault_schemas_getautofillcandidatesrequestschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L225", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_schemas", + "target": "apps_electron_vite_project_electron_main_vault_schemas_getitemrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_schemas", + "target": "apps_electron_vite_project_electron_main_vault_schemas_getitemrequestschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L201", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_schemas", + "target": "apps_electron_vite_project_electron_main_vault_schemas_getitemresponseschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L211", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_schemas", + "target": "apps_electron_vite_project_electron_main_vault_schemas_getstatusresponseschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_schemas", + "target": "apps_electron_vite_project_electron_main_vault_schemas_hamodestateschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_schemas", + "target": "apps_electron_vite_project_electron_main_vault_schemas_hastateschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L232", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_schemas", + "target": "apps_electron_vite_project_electron_main_vault_schemas_importcsvrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L168", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_schemas", + "target": "apps_electron_vite_project_electron_main_vault_schemas_importcsvrequestschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_schemas", + "target": "apps_electron_vite_project_electron_main_vault_schemas_itemcategoryschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_schemas", + "target": "apps_electron_vite_project_electron_main_vault_schemas_listcontainersresponseschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L226", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_schemas", + "target": "apps_electron_vite_project_electron_main_vault_schemas_listitemsrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_schemas", + "target": "apps_electron_vite_project_electron_main_vault_schemas_listitemsrequestschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L196", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_schemas", + "target": "apps_electron_vite_project_electron_main_vault_schemas_listitemsresponseschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L235", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_schemas", + "target": "apps_electron_vite_project_electron_main_vault_schemas_lockharequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L159", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_schemas", + "target": "apps_electron_vite_project_electron_main_vault_schemas_lockharequestschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L229", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_schemas", + "target": "apps_electron_vite_project_electron_main_vault_schemas_searchrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_schemas", + "target": "apps_electron_vite_project_electron_main_vault_schemas_searchrequestschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L181", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_schemas", + "target": "apps_electron_vite_project_electron_main_vault_schemas_successresponseschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L236", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_schemas", + "target": "apps_electron_vite_project_electron_main_vault_schemas_unlockharequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_schemas", + "target": "apps_electron_vite_project_electron_main_vault_schemas_unlockharequestschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L220", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_schemas", + "target": "apps_electron_vite_project_electron_main_vault_schemas_unlockvaultrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_schemas", + "target": "apps_electron_vite_project_electron_main_vault_schemas_unlockvaultrequestschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L222", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_schemas", + "target": "apps_electron_vite_project_electron_main_vault_schemas_updatecontainerrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_schemas", + "target": "apps_electron_vite_project_electron_main_vault_schemas_updatecontainerschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L224", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_schemas", + "target": "apps_electron_vite_project_electron_main_vault_schemas_updateitemrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_schemas", + "target": "apps_electron_vite_project_electron_main_vault_schemas_updateitemschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L231", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_schemas", + "target": "apps_electron_vite_project_electron_main_vault_schemas_updatesettingsrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L142", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_schemas", + "target": "apps_electron_vite_project_electron_main_vault_schemas_updatesettingsrequestschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_schemas", + "target": "apps_electron_vite_project_electron_main_vault_schemas_vaultitemschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/schemas.ts", + "source_location": "L175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_schemas", + "target": "apps_electron_vite_project_electron_main_vault_schemas_vaultstatusschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/security-regression.test.ts", + "source_location": "L297", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_security_regression_test", + "target": "apps_electron_vite_project_electron_main_vault_security_regression_test_mocksession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/security-regression.test.ts", + "source_location": "L387", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_security_regression_test", + "target": "apps_electron_vite_project_electron_main_vault_security_regression_test_routerallows", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/security-regression.test.ts", + "source_location": "L223", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_security_regression_test", + "target": "apps_electron_vite_project_electron_main_vault_security_regression_test_validatelaunchsecret", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/security-regression.test.ts", + "source_location": "L305", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_security_regression_test_mocksession", + "target": "apps_electron_vite_project_electron_main_vault_security_regression_test_mocksession_lock", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/security-regression.test.ts", + "source_location": "L300", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_security_regression_test_mocksession", + "target": "apps_electron_vite_project_electron_main_vault_security_regression_test_mocksession_unlock", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/security-regression.test.ts", + "source_location": "L312", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_security_regression_test_mocksession", + "target": "apps_electron_vite_project_electron_main_vault_security_regression_test_mocksession_validatetoken", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L2185", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_types_container", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_types_documentimportresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_types_field", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_types_itemcategory", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_types_vaultdocument", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_types_vaultitem", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_types_vaultsession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_types_vaultsettings", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_types_vaultstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_unlockprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_unlockprovider_providerstate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_unlockprovider_resolveprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_unlockprovider_unlockprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_unlockprovider_unlockprovidertype", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_vaultapikeyservice", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_vaultapikeyservice_getanthropicapikeyasync", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_vaultapikeyservice_hasanthropicapikey", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_vaultapikeyservice_removeanthropicapikey", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_vaultapikeyservice_saveanthropicapikey", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_vaultapikeyservice_validateanthropicapikey", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_vaultowneridentity", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_vaultowneridentity_getcurrentaccountidentity", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_vaultowneridentity_hasvaultownermetadata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_vaultowneridentity_vault_account_error", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_vaultowneridentity_vaultownermatchessession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_electron_main_vault_vaultowneridentity_vaultownerrecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_src_auth_session", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "apps_electron_vite_project_src_auth_sessioncache_getcacheduserinfo", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "packages_shared_src_vault_originpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "packages_shared_src_vault_originpolicy_matchorigin", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "packages_shared_src_vault_originpolicy_parseorigin", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "packages_shared_src_vault_originpolicy_registrabledomain", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "packages_shared_src_vault_vaultcapabilities_attachevalresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "packages_shared_src_vault_vaultcapabilities_canaccesscategory", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "packages_shared_src_vault_vaultcapabilities_canattachcontext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "packages_shared_src_vault_vaultcapabilities_handshakebindingpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "packages_shared_src_vault_vaultcapabilities_handshaketarget", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "packages_shared_src_vault_vaultcapabilities_legacy_category_to_record_type", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service", + "target": "packages_shared_src_vault_vaultcapabilities_vaulttier", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1382", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_archivehsprofile", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1827", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_assertcontextprofileaccountorthrow", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L2149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_cleanupunlockattempts", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_constructor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L553", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_createcontainer", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1362", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_createhsprofile", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L698", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_createitem", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L160", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_createvault", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1935", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_decryptitemfields", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L604", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_deletecontainer", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1327", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_deletedocument", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1388", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_deletehsprofile", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1425", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_deletehsprofiledocument", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L861", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_deleteitem", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L351", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_deletevault", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L490", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_deriveapplicationkey", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1394", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_duplicatehsprofile", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1839", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensuredbconnection", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1815", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1626", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_evaluateattach", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1694", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_exportcsv", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L412", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_fingerprintsessionfrominfo", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1914", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_generateid", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1925", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_generatetoken", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1547", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getanthropicapikeyforinbox", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1091", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getautofillcandidates", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L394", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getavailablevaults", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L674", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getcontainerbyid", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1306", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getdocument", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1487", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getdocumentfulltext", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1475", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getdocumentpage", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1469", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getdocumentpagecount", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1481", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getdocumentpagelist", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1356", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_gethsprofile", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1566", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_gethsprofiledb", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L885", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getitem", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getitemcategory", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1579", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getitemmeta", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getitemrowbyid", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1463", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getownerdocumentcontent", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L2177", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getsessiontoken", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1682", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getsettings", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L502", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getstatus", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L398", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getvaultlistaccountdetail", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1514", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_hasanthropicapikey", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1751", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_importcsv", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1292", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_importdocument", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L403", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_isactivevaultaccountalignedwithsession", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L620", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_listcontainers", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1318", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_listdocuments", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1350", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_listhsprofiles", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L941", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_listitems", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L2114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_loadsettings", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1981", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_loadvaultmetaraw", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L420", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_lock", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1219", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_migrateitemtov2", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1521", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_removeanthropicapikey", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1556", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_requestlinkopenapproval", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1446", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_requestoriginaldocumentcontent", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1431", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_resolvehsprofilesforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1532", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_retrydocumentwithvision", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1184", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_rowtoitem", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1502", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_saveanthropicapikey", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L2139", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_savesettings", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L2018", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_savevaultmeta", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1052", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_search", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1493", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_searchdocumentpages", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1597", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_setitemmeta", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1893", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_startautolocktimer", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L235", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_unlock", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1883", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateactivity", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L578", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updatecontainer", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1336", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updatedocumentmeta", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1368", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updatehsprofile", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1415", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updatehsprofiledocumentmeta", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L792", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateitem", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1656", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updatesettings", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1256", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_upgradevault", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1400", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_uploadhsprofiledocument", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L2157", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_validatetoken", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_types_vaultsession", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_types_vaultsettings", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_unlockprovider_providerstate", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L139", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_unlockprovider_unlockprovider", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_unlockprovider_unlockprovidertype", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice", + "target": "apps_electron_vite_project_electron_main_vault_vaultowneridentity_vaultownerrecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L223", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_createvault", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_fingerprintsessionfrominfo", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L215", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_createvault", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_generatetoken", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L209", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_createvault", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_savesettings", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L203", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_createvault", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_savevaultmeta", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L220", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_createvault", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_startautolocktimer", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L187", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_createvault", + "target": "apps_electron_vite_project_electron_main_vault_unlockprovider_resolveprovider" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L160", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_createvault", + "target": "apps_electron_vite_project_electron_main_vault_unlockprovider_unlockprovidertype", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L166", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_createvault", + "target": "apps_electron_vite_project_electron_main_vault_vaultowneridentity_getcurrentaccountidentity" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L166", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_createvault", + "target": "apps_electron_vite_project_src_auth_sessioncache_getcacheduserinfo" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L275", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_unlock", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_cleanupunlockattempts", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L340", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_unlock", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_fingerprintsessionfrominfo", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L328", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_unlock", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_generatetoken", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L322", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_unlock", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_loadsettings", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L285", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_unlock", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_loadvaultmetaraw", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L316", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_unlock", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_lock", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L333", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_unlock", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_startautolocktimer", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L289", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_unlock", + "target": "apps_electron_vite_project_electron_main_vault_unlockprovider_resolveprovider" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L235", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_unlock", + "target": "apps_electron_vite_project_electron_main_vault_unlockprovider_unlockprovidertype", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L339", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_unlock", + "target": "apps_electron_vite_project_electron_main_vault_vaultowneridentity_getcurrentaccountidentity" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L245", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_unlock", + "target": "apps_electron_vite_project_electron_main_vault_vaultowneridentity_hasvaultownermetadata" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L253", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_unlock", + "target": "apps_electron_vite_project_electron_main_vault_vaultowneridentity_vaultownermatchessession" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L252", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_unlock", + "target": "apps_electron_vite_project_src_auth_sessioncache_getcacheduserinfo" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L366", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_deletevault", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_lock", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L395", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getavailablevaults", + "target": "apps_electron_vite_project_src_auth_sessioncache_getcacheduserinfo" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L531", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getstatus", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getvaultlistaccountdetail", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L399", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getvaultlistaccountdetail", + "target": "apps_electron_vite_project_src_auth_sessioncache_getcacheduserinfo" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1828", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_assertcontextprofileaccountorthrow", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_isactivevaultaccountalignedwithsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1819", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensureunlocked", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_isactivevaultaccountalignedwithsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L409", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_isactivevaultaccountalignedwithsession", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_fingerprintsessionfrominfo", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L408", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_isactivevaultaccountalignedwithsession", + "target": "apps_electron_vite_project_electron_main_vault_vaultowneridentity_vaultownermatchessession" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L405", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_isactivevaultaccountalignedwithsession", + "target": "apps_electron_vite_project_src_auth_sessioncache_getcacheduserinfo" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1440", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_resolvehsprofilesforhandshake", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_isactivevaultaccountalignedwithsession", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L412", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_fingerprintsessionfrominfo", + "target": "apps_electron_vite_project_src_auth_sessioncache_getcacheduserinfo", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1820", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensureunlocked", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_lock", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1907", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_startautolocktimer", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_lock", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L513", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getstatus", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_loadvaultmetaraw", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L502", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getstatus", + "target": "apps_electron_vite_project_electron_main_vault_types_vaultstatus", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L554", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_createcontainer", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L559", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_createcontainer", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_generateid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L555", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_createcontainer", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateactivity", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L553", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_createcontainer", + "target": "apps_electron_vite_project_electron_main_vault_types_container", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1777", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_importcsv", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_createcontainer", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L579", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updatecontainer", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L582", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updatecontainer", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getcontainerbyid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L580", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updatecontainer", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateactivity", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L578", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updatecontainer", + "target": "apps_electron_vite_project_electron_main_vault_types_container", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L605", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_deletecontainer", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L606", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_deletecontainer", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateactivity", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1698", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_exportcsv", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_listcontainers", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1773", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_importcsv", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_listcontainers", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L621", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_listcontainers", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L622", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_listcontainers", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateactivity", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L620", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_listcontainers", + "target": "apps_electron_vite_project_electron_main_vault_types_container", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L674", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getcontainerbyid", + "target": "apps_electron_vite_project_electron_main_vault_types_container", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L708", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_createitem", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensuredbconnection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L699", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_createitem", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L716", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_createitem", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_generateid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L700", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_createitem", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateactivity", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L698", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_createitem", + "target": "apps_electron_vite_project_electron_main_vault_types_vaultitem", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L703", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_createitem", + "target": "packages_shared_src_vault_vaultcapabilities_canaccesscategory" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L698", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_createitem", + "target": "packages_shared_src_vault_vaultcapabilities_vaulttier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1795", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_importcsv", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_createitem", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L793", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateitem", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L797", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateitem", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getitemcategory", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L802", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateitem", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getitemrowbyid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L807", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateitem", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_rowtoitem", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L794", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateitem", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateactivity", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L792", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateitem", + "target": "apps_electron_vite_project_electron_main_vault_types_vaultitem", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L798", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateitem", + "target": "packages_shared_src_vault_vaultcapabilities_canaccesscategory" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L792", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateitem", + "target": "packages_shared_src_vault_vaultcapabilities_vaulttier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L862", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_deleteitem", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L866", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_deleteitem", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getitemcategory", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L863", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_deleteitem", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateactivity", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L867", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_deleteitem", + "target": "packages_shared_src_vault_vaultcapabilities_canaccesscategory" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L861", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_deleteitem", + "target": "packages_shared_src_vault_vaultcapabilities_vaulttier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1711", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_exportcsv", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getitem", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1152", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getautofillcandidates", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getitem", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L922", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getitem", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_decryptitemfields", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L886", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getitem", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L889", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getitem", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getitemrowbyid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L905", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getitem", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_rowtoitem", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L887", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getitem", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateactivity", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L885", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getitem", + "target": "apps_electron_vite_project_electron_main_vault_types_vaultitem", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L898", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getitem", + "target": "packages_shared_src_vault_vaultcapabilities_canaccesscategory" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L885", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getitem", + "target": "packages_shared_src_vault_vaultcapabilities_vaulttier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1699", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_exportcsv", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_listitems", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L984", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_listitems", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensuredbconnection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L948", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_listitems", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1032", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_listitems", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_migrateitemtov2", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L949", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_listitems", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateactivity", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L941", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_listitems", + "target": "apps_electron_vite_project_electron_main_vault_types_vaultitem", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1039", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_listitems", + "target": "packages_shared_src_vault_vaultcapabilities_canaccesscategory" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L941", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_listitems", + "target": "packages_shared_src_vault_vaultcapabilities_vaulttier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1053", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_search", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1054", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_search", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateactivity", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1052", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_search", + "target": "apps_electron_vite_project_electron_main_vault_types_vaultitem", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1083", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_search", + "target": "packages_shared_src_vault_vaultcapabilities_canaccesscategory" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1052", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_search", + "target": "packages_shared_src_vault_vaultcapabilities_vaulttier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1092", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getautofillcandidates", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1093", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getautofillcandidates", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateactivity", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1091", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getautofillcandidates", + "target": "apps_electron_vite_project_electron_main_vault_types_vaultitem", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1096", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getautofillcandidates", + "target": "packages_shared_src_vault_vaultcapabilities_canaccesscategory" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1091", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getautofillcandidates", + "target": "packages_shared_src_vault_vaultcapabilities_vaulttier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1222", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_migrateitemtov2", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getitemrowbyid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getitemcategory", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1583", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getitemmeta", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getitemcategory", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1184", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_rowtoitem", + "target": "apps_electron_vite_project_electron_main_vault_types_vaultitem", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1233", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_migrateitemtov2", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_decryptitemfields", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1220", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_migrateitemtov2", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1273", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_upgradevault", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_migrateitemtov2", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1257", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_upgradevault", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1298", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_importdocument", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1299", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_importdocument", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateactivity", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1292", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_importdocument", + "target": "apps_electron_vite_project_electron_main_vault_types_documentimportresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1292", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_importdocument", + "target": "packages_shared_src_vault_vaultcapabilities_vaulttier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1310", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getdocument", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1311", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getdocument", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateactivity", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1306", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getdocument", + "target": "apps_electron_vite_project_electron_main_vault_types_vaultdocument", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1306", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getdocument", + "target": "packages_shared_src_vault_vaultcapabilities_vaulttier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1319", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_listdocuments", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1320", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_listdocuments", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateactivity", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1318", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_listdocuments", + "target": "apps_electron_vite_project_electron_main_vault_types_vaultdocument", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1318", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_listdocuments", + "target": "packages_shared_src_vault_vaultcapabilities_vaulttier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1328", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_deletedocument", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1329", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_deletedocument", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateactivity", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1327", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_deletedocument", + "target": "packages_shared_src_vault_vaultcapabilities_vaulttier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1341", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updatedocumentmeta", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1342", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updatedocumentmeta", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateactivity", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1336", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updatedocumentmeta", + "target": "apps_electron_vite_project_electron_main_vault_types_vaultdocument", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1336", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updatedocumentmeta", + "target": "packages_shared_src_vault_vaultcapabilities_vaulttier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1351", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_listhsprofiles", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1352", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_listhsprofiles", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateactivity", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1350", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_listhsprofiles", + "target": "packages_shared_src_vault_vaultcapabilities_vaulttier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1357", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_gethsprofile", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1358", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_gethsprofile", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateactivity", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1356", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_gethsprofile", + "target": "packages_shared_src_vault_vaultcapabilities_vaulttier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1363", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_createhsprofile", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1364", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_createhsprofile", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateactivity", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1362", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_createhsprofile", + "target": "packages_shared_src_vault_vaultcapabilities_vaulttier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1369", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updatehsprofile", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1370", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updatehsprofile", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateactivity", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1368", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updatehsprofile", + "target": "packages_shared_src_vault_vaultcapabilities_vaulttier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1383", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_archivehsprofile", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1384", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_archivehsprofile", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateactivity", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1382", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_archivehsprofile", + "target": "packages_shared_src_vault_vaultcapabilities_vaulttier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1389", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_deletehsprofile", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1390", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_deletehsprofile", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateactivity", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1388", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_deletehsprofile", + "target": "packages_shared_src_vault_vaultcapabilities_vaulttier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1395", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_duplicatehsprofile", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1396", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_duplicatehsprofile", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateactivity", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1394", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_duplicatehsprofile", + "target": "packages_shared_src_vault_vaultcapabilities_vaulttier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1410", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_uploadhsprofiledocument", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1411", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_uploadhsprofiledocument", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateactivity", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1400", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_uploadhsprofiledocument", + "target": "packages_shared_src_vault_vaultcapabilities_vaulttier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1420", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updatehsprofiledocumentmeta", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1421", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updatehsprofiledocumentmeta", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateactivity", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1415", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updatehsprofiledocumentmeta", + "target": "packages_shared_src_vault_vaultcapabilities_vaulttier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1426", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_deletehsprofiledocument", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1427", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_deletehsprofiledocument", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateactivity", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1425", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_deletehsprofiledocument", + "target": "packages_shared_src_vault_vaultcapabilities_vaulttier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1433", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_resolvehsprofilesforhandshake", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_assertcontextprofileaccountorthrow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1432", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_resolvehsprofilesforhandshake", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1434", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_resolvehsprofilesforhandshake", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateactivity", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1431", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_resolvehsprofilesforhandshake", + "target": "packages_shared_src_vault_vaultcapabilities_vaulttier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1452", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_requestoriginaldocumentcontent", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1453", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_requestoriginaldocumentcontent", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateactivity", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1446", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_requestoriginaldocumentcontent", + "target": "packages_shared_src_vault_vaultcapabilities_vaulttier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1464", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getownerdocumentcontent", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1465", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getownerdocumentcontent", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateactivity", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1463", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getownerdocumentcontent", + "target": "packages_shared_src_vault_vaultcapabilities_vaulttier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1470", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getdocumentpagecount", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1471", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getdocumentpagecount", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateactivity", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1469", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getdocumentpagecount", + "target": "packages_shared_src_vault_vaultcapabilities_vaulttier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1476", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getdocumentpage", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1477", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getdocumentpage", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateactivity", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1475", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getdocumentpage", + "target": "packages_shared_src_vault_vaultcapabilities_vaulttier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1482", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getdocumentpagelist", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1483", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getdocumentpagelist", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateactivity", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1481", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getdocumentpagelist", + "target": "packages_shared_src_vault_vaultcapabilities_vaulttier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1488", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getdocumentfulltext", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1489", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getdocumentfulltext", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateactivity", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1487", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getdocumentfulltext", + "target": "packages_shared_src_vault_vaultcapabilities_vaulttier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1494", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_searchdocumentpages", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1495", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_searchdocumentpages", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateactivity", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1493", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_searchdocumentpages", + "target": "packages_shared_src_vault_vaultcapabilities_vaulttier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1503", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_saveanthropicapikey", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1504", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_saveanthropicapikey", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateactivity", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1502", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_saveanthropicapikey", + "target": "packages_shared_src_vault_vaultcapabilities_vaulttier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1515", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_hasanthropicapikey", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1516", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_hasanthropicapikey", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateactivity", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1514", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_hasanthropicapikey", + "target": "packages_shared_src_vault_vaultcapabilities_vaulttier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1522", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_removeanthropicapikey", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1523", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_removeanthropicapikey", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateactivity", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1521", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_removeanthropicapikey", + "target": "packages_shared_src_vault_vaultcapabilities_vaulttier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1533", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_retrydocumentwithvision", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1534", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_retrydocumentwithvision", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateactivity", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1532", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_retrydocumentwithvision", + "target": "packages_shared_src_vault_vaultcapabilities_vaulttier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1561", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_requestlinkopenapproval", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1562", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_requestlinkopenapproval", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateactivity", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1567", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_gethsprofiledb", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1634", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_evaluateattach", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getitemmeta", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1580", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getitemmeta", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1584", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getitemmeta", + "target": "packages_shared_src_vault_vaultcapabilities_canaccesscategory" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1579", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getitemmeta", + "target": "packages_shared_src_vault_vaultcapabilities_vaulttier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1602", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_setitemmeta", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getitemmeta", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1598", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_setitemmeta", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1599", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_setitemmeta", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateactivity", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1597", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_setitemmeta", + "target": "packages_shared_src_vault_vaultcapabilities_vaulttier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1631", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_evaluateattach", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1626", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_evaluateattach", + "target": "packages_shared_src_vault_vaultcapabilities_attachevalresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1643", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_evaluateattach", + "target": "packages_shared_src_vault_vaultcapabilities_canattachcontext" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1626", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_evaluateattach", + "target": "packages_shared_src_vault_vaultcapabilities_handshaketarget", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1626", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_evaluateattach", + "target": "packages_shared_src_vault_vaultcapabilities_vaulttier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1657", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updatesettings", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1668", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updatesettings", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_savesettings", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1672", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updatesettings", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_startautolocktimer", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1658", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updatesettings", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateactivity", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1656", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updatesettings", + "target": "apps_electron_vite_project_electron_main_vault_types_vaultsettings", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1683", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getsettings", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1682", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_getsettings", + "target": "apps_electron_vite_project_electron_main_vault_types_vaultsettings", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1695", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_exportcsv", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1696", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_exportcsv", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateactivity", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1702", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_exportcsv", + "target": "packages_shared_src_vault_vaultcapabilities_canaccesscategory" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1694", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_exportcsv", + "target": "packages_shared_src_vault_vaultcapabilities_vaulttier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1752", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_importcsv", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1753", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_importcsv", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateactivity", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1751", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_importcsv", + "target": "packages_shared_src_vault_vaultcapabilities_vaulttier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1886", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_updateactivity", + "target": "apps_electron_vite_project_electron_main_vault_service_vaultservice_startautolocktimer", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1935", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_decryptitemfields", + "target": "apps_electron_vite_project_electron_main_vault_types_field", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1981", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_loadvaultmetaraw", + "target": "apps_electron_vite_project_electron_main_vault_unlockprovider_providerstate", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L1981", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_loadvaultmetaraw", + "target": "apps_electron_vite_project_electron_main_vault_unlockprovider_unlockprovidertype", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/service.ts", + "source_location": "L2018", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_service_vaultservice_savevaultmeta", + "target": "apps_electron_vite_project_electron_main_vault_vaultowneridentity_vaultownerrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/sessionLock.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_sessionlock_test", + "target": "apps_electron_vite_project_electron_main_vault_sessionlock_test_fakevaultservice", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/sessionLock.test.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_sessionlock_test_fakevaultservice", + "target": "apps_electron_vite_project_electron_main_vault_sessionlock_test_fakevaultservice_deleteitem", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/sessionLock.test.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_sessionlock_test_fakevaultservice", + "target": "apps_electron_vite_project_electron_main_vault_sessionlock_test_fakevaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/sessionLock.test.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_sessionlock_test_fakevaultservice", + "target": "apps_electron_vite_project_electron_main_vault_sessionlock_test_fakevaultservice_getitem", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/sessionLock.test.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_sessionlock_test_fakevaultservice", + "target": "apps_electron_vite_project_electron_main_vault_sessionlock_test_fakevaultservice_getitemcategory", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/sessionLock.test.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_sessionlock_test_fakevaultservice", + "target": "apps_electron_vite_project_electron_main_vault_sessionlock_test_fakevaultservice_iskeknull", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/sessionLock.test.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_sessionlock_test_fakevaultservice", + "target": "apps_electron_vite_project_electron_main_vault_sessionlock_test_fakevaultservice_islocked", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/sessionLock.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_sessionlock_test_fakevaultservice", + "target": "apps_electron_vite_project_electron_main_vault_sessionlock_test_fakevaultservice_lock", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/sessionLock.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_sessionlock_test_fakevaultservice", + "target": "apps_electron_vite_project_electron_main_vault_sessionlock_test_fakevaultservice_simulateunlock", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/sessionLock.test.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_sessionlock_test_fakevaultservice", + "target": "apps_electron_vite_project_electron_main_vault_sessionlock_test_fakevaultservice_updateitem", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/sessionLock.test.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_sessionlock_test_fakevaultservice", + "target": "apps_electron_vite_project_electron_main_vault_sessionlock_test_fakevaultservice_wascacheflushed", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/sessionLock.test.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_sessionlock_test_fakevaultservice_deleteitem", + "target": "apps_electron_vite_project_electron_main_vault_sessionlock_test_fakevaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/sessionLock.test.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_sessionlock_test_fakevaultservice_getitem", + "target": "apps_electron_vite_project_electron_main_vault_sessionlock_test_fakevaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/sessionLock.test.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_sessionlock_test_fakevaultservice_getitemcategory", + "target": "apps_electron_vite_project_electron_main_vault_sessionlock_test_fakevaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/sessionLock.test.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_sessionlock_test_fakevaultservice_updateitem", + "target": "apps_electron_vite_project_electron_main_vault_sessionlock_test_fakevaultservice_ensureunlocked", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/sessionPlanExtraction.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_sessionplanextraction_test", + "target": "apps_electron_vite_project_electron_main_vault_sessionplanextraction_test_base_payload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/sessionPlanExtraction.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_sessionplanextraction_test", + "target": "apps_electron_vite_project_electron_main_vault_sessionplanextraction_test_makejwt", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/sessionPlanExtraction.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_sessionplanextraction_test", + "target": "apps_electron_vite_project_src_auth_capabilities", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/sessionPlanExtraction.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_sessionplanextraction_test", + "target": "apps_electron_vite_project_src_auth_capabilities_resolvetier", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/sessionPlanExtraction.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_sessionplanextraction_test", + "target": "apps_electron_vite_project_src_auth_session", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/sessionPlanExtraction.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_sessionplanextraction_test", + "target": "apps_electron_vite_project_src_auth_session_extractuserinfofromtokens", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/tierResolution.test.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_tierresolution_test", + "target": "apps_electron_vite_project_electron_main_vault_tierresolution_test_simulateresolverequesttier", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/tierResolution.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_tierresolution_test", + "target": "apps_electron_vite_project_src_auth_capabilities", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/tierResolution.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_tierresolution_test", + "target": "apps_electron_vite_project_src_auth_capabilities_maprolestotier", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/tierResolution.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_tierresolution_test", + "target": "apps_electron_vite_project_src_auth_capabilities_resolvetier", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/tierResolution.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_tierresolution_test", + "target": "apps_electron_vite_project_src_auth_capabilities_unknown_tier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/tierResolution.test.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_tierresolution_test_simulateresolverequesttier", + "target": "apps_electron_vite_project_src_auth_capabilities_resolvetier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/types.ts", + "source_location": "L196", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_types", + "target": "apps_electron_vite_project_electron_main_vault_types_blocked_extensions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/types.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_types", + "target": "apps_electron_vite_project_electron_main_vault_types_container", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/types.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_types", + "target": "apps_electron_vite_project_electron_main_vault_types_containertype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/types.ts", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_types", + "target": "apps_electron_vite_project_electron_main_vault_types_csvrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/types.ts", + "source_location": "L229", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_types", + "target": "apps_electron_vite_project_electron_main_vault_types_documentimportresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/types.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_types", + "target": "apps_electron_vite_project_electron_main_vault_types_field", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/types.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_types", + "target": "apps_electron_vite_project_electron_main_vault_types_fieldtype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/types.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_types", + "target": "apps_electron_vite_project_electron_main_vault_types_itemcategory", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/types.ts", + "source_location": "L153", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_types", + "target": "apps_electron_vite_project_electron_main_vault_types_kdfparams", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/types.ts", + "source_location": "L175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_types", + "target": "apps_electron_vite_project_electron_main_vault_types_max_document_size", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/types.ts", + "source_location": "L182", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_types", + "target": "apps_electron_vite_project_electron_main_vault_types_safe_preview_mimes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/types.ts", + "source_location": "L210", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_types", + "target": "apps_electron_vite_project_electron_main_vault_types_vaultdocument", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/types.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_types", + "target": "apps_electron_vite_project_electron_main_vault_types_vaultitem", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/types.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_types", + "target": "apps_electron_vite_project_electron_main_vault_types_vaultsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/types.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_types", + "target": "apps_electron_vite_project_electron_main_vault_types_vaultsettings", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/types.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_types", + "target": "apps_electron_vite_project_electron_main_vault_types_vaultstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L251", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_unlockprovider", + "target": "apps_electron_vite_project_electron_main_vault_unlockprovider_listavailableproviders", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L153", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_unlockprovider", + "target": "apps_electron_vite_project_electron_main_vault_unlockprovider_passphraseunlockprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L233", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_unlockprovider", + "target": "apps_electron_vite_project_electron_main_vault_unlockprovider_provider_registry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_unlockprovider", + "target": "apps_electron_vite_project_electron_main_vault_unlockprovider_providerstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L241", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_unlockprovider", + "target": "apps_electron_vite_project_electron_main_vault_unlockprovider_resolveprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_unlockprovider", + "target": "apps_electron_vite_project_electron_main_vault_unlockprovider_unlockprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_unlockprovider", + "target": "apps_electron_vite_project_electron_main_vault_unlockprovider_unlockprovidertype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_unlockprovider", + "target": "apps_electron_vite_project_electron_main_vault_unlockprovider_unlockresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_unlockprovider", + "target": "apps_electron_vite_project_electron_main_vault_unlockprovider_vaultmetacontext", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_unlockprovider_rationale_68", + "target": "apps_electron_vite_project_electron_main_vault_unlockprovider", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L153", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_unlockprovider_passphraseunlockprovider", + "target": "apps_electron_vite_project_electron_main_vault_unlockprovider_unlockprovider", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_unlockprovider_unlockprovider", + "target": "apps_electron_vite_project_electron_main_vault_unlockprovider_unlockprovider_enroll", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_unlockprovider_unlockprovider", + "target": "apps_electron_vite_project_electron_main_vault_unlockprovider_unlockprovider_isavailable", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_unlockprovider_unlockprovider", + "target": "apps_electron_vite_project_electron_main_vault_unlockprovider_unlockprovider_lock", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_unlockprovider_unlockprovider", + "target": "apps_electron_vite_project_electron_main_vault_unlockprovider_unlockprovider_unlock", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_unlockprovider_passphraseunlockprovider", + "target": "apps_electron_vite_project_electron_main_vault_unlockprovider_passphraseunlockprovider_enroll", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L160", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_unlockprovider_passphraseunlockprovider", + "target": "apps_electron_vite_project_electron_main_vault_unlockprovider_passphraseunlockprovider_isavailable", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L220", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_unlockprovider_passphraseunlockprovider", + "target": "apps_electron_vite_project_electron_main_vault_unlockprovider_passphraseunlockprovider_lock", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L197", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_unlockprovider_passphraseunlockprovider", + "target": "apps_electron_vite_project_electron_main_vault_unlockprovider_passphraseunlockprovider_unlock", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/unlockProvider.ts", + "source_location": "L256", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_unlockprovider_listavailableproviders", + "target": "apps_electron_vite_project_electron_main_vault_unlockprovider_passphraseunlockprovider_isavailable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultAccountGuards.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultaccountguards", + "target": "apps_electron_vite_project_electron_main_vault_vaultaccountguards_assertactivevaultforoperation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultAccountGuards.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultaccountguards", + "target": "apps_electron_vite_project_electron_main_vault_vaultaccountguards_assertvaultdballowedforhandshakefallback", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultAccountGuards.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultaccountguards", + "target": "apps_electron_vite_project_electron_main_vault_vaultaccountguards_getsessionforvaultcheck", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultAccountGuards.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultaccountguards", + "target": "apps_electron_vite_project_electron_main_vault_vaultaccountguards_readownerfromvaultmeta", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultAccountGuards.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultaccountguards", + "target": "apps_electron_vite_project_electron_main_vault_vaultowneridentity", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultAccountGuards.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultaccountguards", + "target": "apps_electron_vite_project_electron_main_vault_vaultowneridentity_vault_account_error", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultAccountGuards.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultaccountguards", + "target": "apps_electron_vite_project_electron_main_vault_vaultowneridentity_vaultownerrecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultAccountGuards.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultaccountguards", + "target": "apps_electron_vite_project_src_auth_session", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultAccountGuards.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultaccountguards", + "target": "apps_electron_vite_project_src_auth_session_sessionuserinfo", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultAccountGuards.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultaccountguards", + "target": "apps_electron_vite_project_src_auth_sessioncache_getcacheduserinfo", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/vaultAccountGuards.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultaccountguards_assertactivevaultforoperation", + "target": "apps_electron_vite_project_src_auth_sessioncache_getcacheduserinfo" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/vaultAccountGuards.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultaccountguards_getsessionforvaultcheck", + "target": "apps_electron_vite_project_src_auth_sessioncache_getcacheduserinfo" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultAccountIsolation.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultaccountisolation_test", + "target": "apps_electron_vite_project_electron_main_vault_vaultaccountisolation_test_makeowner", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultAccountIsolation.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultaccountisolation_test", + "target": "apps_electron_vite_project_electron_main_vault_vaultaccountisolation_test_paths", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultAccountIsolation.test.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultaccountisolation_test", + "target": "apps_electron_vite_project_electron_main_vault_vaultaccountisolation_test_sessiona", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultAccountIsolation.test.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultaccountisolation_test", + "target": "apps_electron_vite_project_electron_main_vault_vaultaccountisolation_test_sessionb", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultAccountIsolation.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultaccountisolation_test", + "target": "apps_electron_vite_project_electron_main_vault_vaultowneridentity", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultAccountIsolation.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultaccountisolation_test", + "target": "apps_electron_vite_project_electron_main_vault_vaultowneridentity_assertvaultownermatchessession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultAccountIsolation.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultaccountisolation_test", + "target": "apps_electron_vite_project_electron_main_vault_vaultowneridentity_getcurrentaccountidentity", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultAccountIsolation.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultaccountisolation_test", + "target": "apps_electron_vite_project_electron_main_vault_vaultowneridentity_hasvaultownermetadata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultAccountIsolation.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultaccountisolation_test", + "target": "apps_electron_vite_project_electron_main_vault_vaultowneridentity_vault_account_error", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultAccountIsolation.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultaccountisolation_test", + "target": "apps_electron_vite_project_electron_main_vault_vaultowneridentity_vault_owner_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultAccountIsolation.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultaccountisolation_test", + "target": "apps_electron_vite_project_src_auth_session", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultAccountIsolation.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultaccountisolation_test", + "target": "apps_electron_vite_project_src_auth_session_sessionuserinfo", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultApiKeyService.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultapikeyservice", + "target": "apps_electron_vite_project_electron_main_vault_vaultapikeyservice_apikeyvalidationresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultApiKeyService.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultapikeyservice", + "target": "apps_electron_vite_project_electron_main_vault_vaultapikeyservice_getanthropicapikeyasync", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultApiKeyService.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultapikeyservice", + "target": "apps_electron_vite_project_electron_main_vault_vaultapikeyservice_hasanthropicapikey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultApiKeyService.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultapikeyservice", + "target": "apps_electron_vite_project_electron_main_vault_vaultapikeyservice_removeanthropicapikey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultApiKeyService.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultapikeyservice", + "target": "apps_electron_vite_project_electron_main_vault_vaultapikeyservice_saveanthropicapikey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultApiKeyService.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultapikeyservice", + "target": "apps_electron_vite_project_electron_main_vault_vaultapikeyservice_settingaad", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultApiKeyService.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultapikeyservice", + "target": "apps_electron_vite_project_electron_main_vault_vaultapikeyservice_settingblob", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultApiKeyService.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultapikeyservice", + "target": "apps_electron_vite_project_electron_main_vault_vaultapikeyservice_validateanthropicapikey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultApiKeyService.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultapikeyservice_getanthropicapikeyasync", + "target": "apps_electron_vite_project_electron_main_vault_vaultapikeyservice_settingaad", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultApiKeyService.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultapikeyservice_saveanthropicapikey", + "target": "apps_electron_vite_project_electron_main_vault_vaultapikeyservice_settingaad", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultCanon.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultcanon", + "target": "apps_electron_vite_project_electron_main_vault_vaultcanon_getinnervaultdb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultCanon.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultcanon", + "target": "apps_electron_vite_project_electron_main_vault_vaultcanon_getoutervaultdb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultCanon.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultcanon", + "target": "apps_electron_vite_project_electron_main_vault_vaultcanon_getvaultstatusreport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultCanon.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultcanon", + "target": "apps_electron_vite_project_electron_main_vault_vaultcanon_handshakeclassification", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultCanon.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultcanon", + "target": "apps_electron_vite_project_electron_main_vault_vaultcanon_isinnervaultunlocked", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultCanon.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultcanon", + "target": "apps_electron_vite_project_electron_main_vault_vaultcanon_isoutervaultactive", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultCanon.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultcanon", + "target": "apps_electron_vite_project_electron_main_vault_vaultcanon_vaultstatusreport", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultCanon.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultcanon_getvaultstatusreport", + "target": "apps_electron_vite_project_electron_main_vault_vaultcanon_isoutervaultactive", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultCanon.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultcanon_getvaultstatusreport", + "target": "apps_electron_vite_project_electron_main_vault_vaultcanon_isinnervaultunlocked", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultOwnerIdentity.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultowneridentity", + "target": "apps_electron_vite_project_electron_main_vault_vaultowneridentity_assertvaultownermatchessession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultOwnerIdentity.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultowneridentity", + "target": "apps_electron_vite_project_electron_main_vault_vaultowneridentity_getcurrentaccountidentity", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultOwnerIdentity.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultowneridentity", + "target": "apps_electron_vite_project_electron_main_vault_vaultowneridentity_hasvaultownermetadata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultOwnerIdentity.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultowneridentity", + "target": "apps_electron_vite_project_electron_main_vault_vaultowneridentity_normalizevaultowner", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultOwnerIdentity.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultowneridentity", + "target": "apps_electron_vite_project_electron_main_vault_vaultowneridentity_samestring", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultOwnerIdentity.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultowneridentity", + "target": "apps_electron_vite_project_electron_main_vault_vaultowneridentity_vault_account_error", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultOwnerIdentity.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultowneridentity", + "target": "apps_electron_vite_project_electron_main_vault_vaultowneridentity_vault_owner_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultOwnerIdentity.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultowneridentity", + "target": "apps_electron_vite_project_electron_main_vault_vaultowneridentity_vaultaccounterrorcode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultOwnerIdentity.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultowneridentity", + "target": "apps_electron_vite_project_electron_main_vault_vaultowneridentity_vaultownermatchessession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultOwnerIdentity.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultowneridentity", + "target": "apps_electron_vite_project_electron_main_vault_vaultowneridentity_vaultownerrecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultOwnerIdentity.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultowneridentity", + "target": "apps_electron_vite_project_src_auth_session", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultOwnerIdentity.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultowneridentity", + "target": "apps_electron_vite_project_src_auth_session_sessionuserinfo", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultOwnerIdentity.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultowneridentity_normalizevaultowner", + "target": "apps_electron_vite_project_electron_main_vault_vaultowneridentity_getcurrentaccountidentity", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultOwnerIdentity.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultowneridentity_vaultownermatchessession", + "target": "apps_electron_vite_project_electron_main_vault_vaultowneridentity_getcurrentaccountidentity", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultOwnerIdentity.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultowneridentity_vaultownermatchessession", + "target": "apps_electron_vite_project_electron_main_vault_vaultowneridentity_samestring", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vaultOwnerIdentity.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vaultowneridentity_assertvaultownermatchessession", + "target": "apps_electron_vite_project_electron_main_vault_vaultowneridentity_vaultownermatchessession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vsbt.test.ts", + "source_location": "L272", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vsbt_test", + "target": "apps_electron_vite_project_electron_main_vault_vsbt_test_bindsocket", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vsbt.test.ts", + "source_location": "L280", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vsbt_test", + "target": "apps_electron_vite_project_electron_main_vault_vsbt_test_gatecheck", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vsbt.test.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vsbt_test", + "target": "apps_electron_vite_project_electron_main_vault_vsbt_test_mockvaultservice", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vsbt.test.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vsbt_test", + "target": "apps_electron_vite_project_electron_main_vault_vsbt_test_simulatehttpmiddleware", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vsbt.test.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vsbt_test", + "target": "apps_electron_vite_project_electron_main_vault_vsbt_test_simulatewsvsbtgate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vsbt.test.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vsbt_test", + "target": "apps_electron_vite_project_electron_main_vault_vsbt_test_vsbt_exempt_paths", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vsbt.test.ts", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vsbt_test", + "target": "apps_electron_vite_project_electron_main_vault_vsbt_test_vsbt_exempt_rpc", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vsbt.test.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vsbt_test_mockvaultservice", + "target": "apps_electron_vite_project_electron_main_vault_vsbt_test_mockvaultservice_getsessiontoken", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vsbt.test.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vsbt_test_mockvaultservice", + "target": "apps_electron_vite_project_electron_main_vault_vsbt_test_mockvaultservice_lock", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vsbt.test.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vsbt_test_mockvaultservice", + "target": "apps_electron_vite_project_electron_main_vault_vsbt_test_mockvaultservice_unlock", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vsbt.test.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vsbt_test_mockvaultservice", + "target": "apps_electron_vite_project_electron_main_vault_vsbt_test_mockvaultservice_validatetoken", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vsbt.test.ts", + "source_location": "L273", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vsbt_test_bindsocket", + "target": "apps_electron_vite_project_electron_main_vault_vsbt_test_mockvaultservice_validatetoken", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vsbt.test.ts", + "source_location": "L283", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vsbt_test_gatecheck", + "target": "apps_electron_vite_project_electron_main_vault_vsbt_test_mockvaultservice_validatetoken", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vsbt.test.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vsbt_test_simulatehttpmiddleware", + "target": "apps_electron_vite_project_electron_main_vault_vsbt_test_mockvaultservice_validatetoken", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/main/vault/vsbt.test.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vsbt_test_simulatewsvsbtgate", + "target": "apps_electron_vite_project_electron_main_vault_vsbt_test_mockvaultservice_validatetoken", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/vsbt.test.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vsbt_test_simulatehttpmiddleware", + "target": "apps_electron_vite_project_electron_main_vault_vsbt_test_vsbt_exempt_paths" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/vsbt.test.ts", + "source_location": "L281", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vsbt_test_gatecheck", + "target": "apps_electron_vite_project_electron_main_vault_vsbt_test_vsbt_exempt_rpc" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/main/vault/vsbt.test.ts", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_main_vault_vsbt_test_simulatewsvsbtgate", + "target": "apps_electron_vite_project_electron_main_vault_vsbt_test_vsbt_exempt_rpc" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L315", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_preload", + "target": "apps_electron_vite_project_electron_preload_assertbeapsessionimportpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L1701", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_preload", + "target": "apps_electron_vite_project_electron_preload_assertbuiltinlettercore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L283", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_preload", + "target": "apps_electron_vite_project_electron_preload_assertcapturepreset", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L158", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_preload", + "target": "apps_electron_vite_project_electron_preload_assertcustommailboxpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L240", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_preload", + "target": "apps_electron_vite_project_electron_preload_assertdiagnoseimapparams", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_preload", + "target": "apps_electron_vite_project_electron_preload_assertexternalurl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_preload", + "target": "apps_electron_vite_project_electron_preload_assertfspath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L512", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_preload", + "target": "apps_electron_vite_project_electron_preload_asserthostchatmessages", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L137", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_preload", + "target": "apps_electron_vite_project_electron_preload_asserthostlike", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_preload", + "target": "apps_electron_vite_project_electron_preload_assertmailboxport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L359", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_preload", + "target": "apps_electron_vite_project_electron_preload_assertrelayagentboxoutputdata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L1215", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_preload", + "target": "apps_electron_vite_project_electron_preload_assertrelayurl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L310", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_preload", + "target": "apps_electron_vite_project_electron_preload_assertsavepreset", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_preload", + "target": "apps_electron_vite_project_electron_preload_assertsecretstring", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_preload", + "target": "apps_electron_vite_project_electron_preload_assertsecuritymode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_preload", + "target": "apps_electron_vite_project_electron_preload_assertstring", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_preload", + "target": "apps_electron_vite_project_electron_preload_asserttemplatefilename", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L268", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_preload", + "target": "apps_electron_vite_project_electron_preload_asserttheme", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L539", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_preload", + "target": "apps_electron_vite_project_electron_preload_buildinternalinferencehostchatpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L565", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_preload", + "target": "apps_electron_vite_project_electron_preload_buildinternalinferencerequestcompletionpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L275", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_preload", + "target": "apps_electron_vite_project_electron_preload_capturemode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L277", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_preload", + "target": "apps_electron_vite_project_electron_preload_capturepresetpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_preload", + "target": "apps_electron_vite_project_electron_preload_connectedpeer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L415", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_preload", + "target": "apps_electron_vite_project_electron_preload_lmgtfybridge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_preload", + "target": "apps_electron_vite_project_electron_preload_optionalimaplifecyclemailbox", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_preload", + "target": "apps_electron_vite_project_electron_preload_orchestratormodeconfig", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "confidence": "INFERRED", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L470", + "weight": 1.0, + "_origin": "ast", + "context": "collection", + "source": "apps_electron_vite_project_electron_preload", + "target": "apps_electron_vite_project_electron_preload_subscribewatchdogalertipc", + "confidence_score": 0.5 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_preload", + "target": "apps_electron_vite_project_electron_preload_window", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L270", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_preload_asserttheme", + "target": "apps_electron_vite_project_electron_preload_assertstring", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L203", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_preload_assertcustommailboxpayload", + "target": "apps_electron_vite_project_electron_preload_assertsecretstring", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L222", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_preload_assertcustommailboxpayload", + "target": "apps_electron_vite_project_electron_preload_assertsecuritymode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L252", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_preload_assertdiagnoseimapparams", + "target": "apps_electron_vite_project_electron_preload_assertsecuritymode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L221", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_preload_assertcustommailboxpayload", + "target": "apps_electron_vite_project_electron_preload_assertmailboxport", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L251", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_preload_assertdiagnoseimapparams", + "target": "apps_electron_vite_project_electron_preload_assertmailboxport", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L188", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_preload_assertcustommailboxpayload", + "target": "apps_electron_vite_project_electron_preload_asserthostlike", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L250", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_preload_assertdiagnoseimapparams", + "target": "apps_electron_vite_project_electron_preload_asserthostlike", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L205", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_preload_assertcustommailboxpayload", + "target": "apps_electron_vite_project_electron_preload_optionalimaplifecyclemailbox", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L551", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_preload_buildinternalinferencehostchatpayload", + "target": "apps_electron_vite_project_electron_preload_asserthostchatmessages", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/preload.ts", + "source_location": "L587", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_preload_buildinternalinferencerequestcompletionpayload", + "target": "apps_electron_vite_project_electron_preload_asserthostchatmessages", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/preload/webrtcTransportPreload.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_preload_webrtctransportpreload", + "target": "apps_electron_vite_project_electron_preload_webrtctransportpreload_api", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/preload/webrtcTransportPreload.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_preload_webrtctransportpreload", + "target": "apps_electron_vite_project_electron_preload_webrtctransportpreload_wrdeskwebrtcp2p", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/storage/PostgresAdapter.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_storage_postgresadapter", + "target": "apps_electron_vite_project_electron_storage_migrations", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/storage/PostgresAdapter.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_storage_postgresadapter", + "target": "apps_electron_vite_project_electron_storage_migrations_runmigrations", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/storage/PostgresAdapter.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_storage_postgresadapter", + "target": "apps_electron_vite_project_electron_storage_postgresadapter_postgresadapter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/storage/PostgresAdapter.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_storage_postgresadapter", + "target": "apps_electron_vite_project_electron_storage_postgresadapter_postgresconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/storage/PostgresAdapter.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_storage_postgresadapter", + "target": "packages_shared_src_storage_storageadapter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/storage/PostgresAdapter.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_storage_postgresadapter", + "target": "packages_shared_src_storage_storageadapter_storageadapter", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/storage/PostgresAdapter.ts", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_storage_postgresadapter_postgresadapter", + "target": "apps_electron_vite_project_electron_storage_postgresadapter_postgresadapter_close", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/storage/PostgresAdapter.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_storage_postgresadapter_postgresadapter", + "target": "apps_electron_vite_project_electron_storage_postgresadapter_postgresadapter_connect", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/storage/PostgresAdapter.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_storage_postgresadapter_postgresadapter", + "target": "apps_electron_vite_project_electron_storage_postgresadapter_postgresadapter_constructor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/storage/PostgresAdapter.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_storage_postgresadapter_postgresadapter", + "target": "apps_electron_vite_project_electron_storage_postgresadapter_postgresadapter_get", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/storage/PostgresAdapter.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_storage_postgresadapter_postgresadapter", + "target": "apps_electron_vite_project_electron_storage_postgresadapter_postgresadapter_getall", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/storage/PostgresAdapter.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_storage_postgresadapter_postgresadapter", + "target": "apps_electron_vite_project_electron_storage_postgresadapter_postgresadapter_getpool", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/storage/PostgresAdapter.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_storage_postgresadapter_postgresadapter", + "target": "apps_electron_vite_project_electron_storage_postgresadapter_postgresadapter_set", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/storage/PostgresAdapter.ts", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_storage_postgresadapter_postgresadapter", + "target": "apps_electron_vite_project_electron_storage_postgresadapter_postgresadapter_setall", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/storage/PostgresAdapter.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_storage_postgresadapter_postgresadapter", + "target": "packages_shared_src_storage_storageadapter_storageadapter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/storage/PostgresAdapter.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_storage_postgresadapter_postgresadapter_connect", + "target": "apps_electron_vite_project_electron_storage_migrations_runmigrations" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/storage/PostgresAdapter.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_storage_postgresadapter_postgresadapter_getpool", + "target": "apps_electron_vite_project_electron_storage_postgresadapter_postgresadapter_connect", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/storage/PostgresAdapter.ts", + "source_location": "L134", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_storage_postgresadapter_postgresadapter_setall", + "target": "apps_electron_vite_project_electron_storage_postgresadapter_postgresadapter_connect", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/storage/PostgresAdapter.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_storage_postgresadapter_postgresadapter_get", + "target": "apps_electron_vite_project_electron_storage_postgresadapter_postgresadapter_getpool", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/storage/PostgresAdapter.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_storage_postgresadapter_postgresadapter_getall", + "target": "apps_electron_vite_project_electron_storage_postgresadapter_postgresadapter_getpool", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/storage/PostgresAdapter.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_storage_postgresadapter_postgresadapter_set", + "target": "apps_electron_vite_project_electron_storage_postgresadapter_postgresadapter_getpool", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/storage/PostgresAdapter.ts", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_storage_postgresadapter_postgresadapter_setall", + "target": "apps_electron_vite_project_electron_storage_postgresadapter_postgresadapter_getpool", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/storage/migrations.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_storage_migrations", + "target": "apps_electron_vite_project_electron_storage_migrations_runmigrations", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/userDataBootstrapState.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_userdatabootstrapstate", + "target": "apps_electron_vite_project_electron_userdatabootstrapstate_isuserdatapathbootstrapped", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/userDataBootstrapState.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_userdatabootstrapstate", + "target": "apps_electron_vite_project_electron_userdatabootstrapstate_markuserdatapathbootstrapped", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/userDataBootstrapState.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_userdatabootstrapstate", + "target": "apps_electron_vite_project_electron_userdatabootstrapstate_resetuserdatabootstrapstatefortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_default_watchdog_config", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L192", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_displaylabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_estimateimagetokensfrombase64length", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_getdirsizebytesrecursive", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L197", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_llmfailurethreat", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_maybeglobalgc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_resolvewatchdogeffectivemodelid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L156", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_resolvewatchdogsystempromptfrommode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L186", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_severities", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L829", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_stripmarkdownfences", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogscanrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L841", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L188", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogtemproot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogthreat", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_wipedircontents", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin_builtin_scam_watchdog_id", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice", + "target": "apps_extension_chromium_src_shared_ui_watchdogprompts", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice", + "target": "apps_extension_chromium_src_shared_ui_watchdogprompts_extractscamwatchdogscanpromptfromlegacysearchfocus", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice", + "target": "apps_extension_chromium_src_shared_ui_watchdogprompts_watchdog_system_prompt", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L333", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_captureallscreens", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_estimateimagetokensfrombase64length", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L730", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_enforcetempdirsizelimitbeforescan", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_getdirsizebytesrecursive", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L822", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_cleanup", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_wipedircontents", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L739", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_enforcetempdirsizelimitbeforescan", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_wipedircontents", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L638", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_runscan", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_maybeglobalgc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L701", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_runsmartsummary", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_maybeglobalgc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L159", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_resolvewatchdogsystempromptfrommode", + "target": "apps_extension_chromium_src_shared_ui_watchdogprompts_extractscamwatchdogscanpromptfromlegacysearchfocus" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L435", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_buildwatchdogprompt", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_resolvewatchdogsystempromptfrommode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L572", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_runscan", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_resolvewatchdogeffectivemodelid", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L492", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_parsewatchdogresponse", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_severities" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L297", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_captureallscreens", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_displaylabel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L581", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_runscan", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_llmfailurethreat", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L753", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_autoincreaseintervalafterslowscans", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L442", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_buildsummaryprompt", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L410", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_buildwatchdogprompt", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L275", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_captureallscreens", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L815", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_cleanup", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L743", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_clearscansensitivepayload", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L767", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_deletepaths", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L724", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_enforcetempdirsizelimitbeforescan", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L271", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_getconfig", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L344", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_handledomresponse", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L803", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_iscontinuousrunning", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L807", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_isscanning", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L811", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_issmartsummaryrunning", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L710", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_logwatchdogremoteprivacynote", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L467", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_parsewatchdogresponse", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L360", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_requestdomsnapshots", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L511", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_runscan", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L646", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_runsmartsummary", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L777", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_scheduledeletion", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L238", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_setbroadcast", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L246", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_setconfig", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L242", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_setonscancomplete", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L786", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_startcontinuous", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L795", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_stopcontinuous", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L266", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_setconfig", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_runscan", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L255", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_setconfig", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_stopcontinuous", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L549", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_runscan", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_captureallscreens", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L661", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_runsmartsummary", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_captureallscreens", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L550", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_runscan", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_requestdomsnapshots", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L662", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_runsmartsummary", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_requestdomsnapshots", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L565", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_runscan", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_buildwatchdogprompt", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L675", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_runsmartsummary", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_buildsummaryprompt", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L468", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_parsewatchdogresponse", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_stripmarkdownfences", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L600", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_runscan", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_parsewatchdogresponse", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L762", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_autoincreaseintervalafterslowscans", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_runscan", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L635", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_runscan", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_clearscansensitivepayload", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L606", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_runscan", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_deletepaths", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L532", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_runscan", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_enforcetempdirsizelimitbeforescan", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L570", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_runscan", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_logwatchdogremoteprivacynote", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L577", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_runscan", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_scheduledeletion", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L791", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_startcontinuous", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_runscan", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L699", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_runsmartsummary", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_clearscansensitivepayload", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L686", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_runsmartsummary", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_deletepaths", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L651", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_runsmartsummary", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_enforcetempdirsizelimitbeforescan", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L678", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_runsmartsummary", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_logwatchdogremoteprivacynote", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L695", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_runsmartsummary", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_scheduledeletion", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L781", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_scheduledeletion", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_deletepaths", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/watchdog/watchdogService.ts", + "source_location": "L816", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_cleanup", + "target": "apps_electron_vite_project_electron_watchdog_watchdogservice_watchdogservice_stopcontinuous", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/wrChatSurface.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_wrchatsurface", + "target": "apps_electron_vite_project_electron_wrchatsurface_source_to_surface", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/wrChatSurface.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_wrchatsurface", + "target": "apps_electron_vite_project_electron_wrchatsurface_surfacefromsource", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/electron/wrChatSurface.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_electron_wrchatsurface", + "target": "apps_electron_vite_project_electron_wrchatsurface_wrchatsurface", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/main.js", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_main", + "target": "apps_electron_vite_project_main", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/main.js", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_main", + "target": "apps_electron_vite_project_main_o", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package", + "target": "apps_electron_vite_project_package_dependencies", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package", + "target": "apps_electron_vite_project_package_devdependencies", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package", + "target": "apps_electron_vite_project_package_main", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package", + "target": "apps_electron_vite_project_package_name", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package", + "target": "apps_electron_vite_project_package_private", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package", + "target": "apps_electron_vite_project_package_scripts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package", + "target": "apps_electron_vite_project_package_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package", + "target": "apps_electron_vite_project_package_version", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_scripts", + "target": "apps_electron_vite_project_package_scripts_build", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_scripts", + "target": "apps_electron_vite_project_package_scripts_build_clean", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_scripts", + "target": "apps_electron_vite_project_package_scripts_build_nsis", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_scripts", + "target": "apps_electron_vite_project_package_scripts_build_portable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_scripts", + "target": "apps_electron_vite_project_package_scripts_clean", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_scripts", + "target": "apps_electron_vite_project_package_scripts_clear_caches", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_scripts", + "target": "apps_electron_vite_project_package_scripts_dev", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_scripts", + "target": "apps_electron_vite_project_package_scripts_diagnose", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_scripts", + "target": "apps_electron_vite_project_package_scripts_dist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_scripts", + "target": "apps_electron_vite_project_package_scripts_dist_clean", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_scripts", + "target": "apps_electron_vite_project_package_scripts_kill", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_scripts", + "target": "apps_electron_vite_project_package_scripts_lint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_scripts", + "target": "apps_electron_vite_project_package_scripts_postinstall", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_scripts", + "target": "apps_electron_vite_project_package_scripts_prebuild", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_scripts", + "target": "apps_electron_vite_project_package_scripts_prebuild_clean", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_scripts", + "target": "apps_electron_vite_project_package_scripts_prebuild_nsis", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_scripts", + "target": "apps_electron_vite_project_package_scripts_prebuild_portable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_scripts", + "target": "apps_electron_vite_project_package_scripts_predist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_scripts", + "target": "apps_electron_vite_project_package_scripts_prerebuild", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_scripts", + "target": "apps_electron_vite_project_package_scripts_preview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_scripts", + "target": "apps_electron_vite_project_package_scripts_rebuild", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_scripts", + "target": "apps_electron_vite_project_package_scripts_rebuild_native", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_scripts", + "target": "apps_electron_vite_project_package_scripts_restart", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_scripts", + "target": "apps_electron_vite_project_package_scripts_smoke_pdf", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_scripts", + "target": "apps_electron_vite_project_package_scripts_test_installer_win_home_guest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_scripts", + "target": "apps_electron_vite_project_package_scripts_test_installer_win_role", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies", + "target": "apps_electron_vite_project_package_dependencies_better_sqlite3", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies", + "target": "apps_electron_vite_project_package_dependencies_body_parser", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies", + "target": "apps_electron_vite_project_package_dependencies_bufferutil", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies", + "target": "apps_electron_vite_project_package_dependencies_canvas", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies", + "target": "apps_electron_vite_project_package_dependencies_docx", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies", + "target": "apps_electron_vite_project_package_dependencies_express", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies", + "target": "apps_electron_vite_project_package_dependencies_imap", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies", + "target": "apps_electron_vite_project_package_dependencies_is_electron", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies", + "target": "apps_electron_vite_project_package_dependencies_jose", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies", + "target": "apps_electron_vite_project_package_dependencies_keytar", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies", + "target": "apps_electron_vite_project_package_dependencies_libsodium_wrappers", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies", + "target": "apps_electron_vite_project_package_dependencies_mailparser", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies", + "target": "apps_electron_vite_project_package_dependencies_mammoth", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies", + "target": "apps_electron_vite_project_package_dependencies_noble_curves", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies", + "target": "apps_electron_vite_project_package_dependencies_noble_post_quantum", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies", + "target": "apps_electron_vite_project_package_dependencies_node_fetch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies", + "target": "apps_electron_vite_project_package_dependencies_nodemailer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies", + "target": "apps_electron_vite_project_package_dependencies_open", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies", + "target": "apps_electron_vite_project_package_dependencies_pdfjs_dist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies", + "target": "apps_electron_vite_project_package_dependencies_pg", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies", + "target": "apps_electron_vite_project_package_dependencies_pizzip", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies", + "target": "apps_electron_vite_project_package_dependencies_react", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies", + "target": "apps_electron_vite_project_package_dependencies_react_dom", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies", + "target": "apps_electron_vite_project_package_dependencies_recharts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies", + "target": "apps_electron_vite_project_package_dependencies_regenerator_runtime", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies", + "target": "apps_electron_vite_project_package_dependencies_repo_ingestion_core", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies", + "target": "apps_electron_vite_project_package_dependencies_repo_shared_beap_ui", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies", + "target": "apps_electron_vite_project_package_dependencies_tesseract_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies", + "target": "apps_electron_vite_project_package_dependencies_types_express", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies", + "target": "apps_electron_vite_project_package_dependencies_types_imap", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies", + "target": "apps_electron_vite_project_package_dependencies_types_mailparser", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies", + "target": "apps_electron_vite_project_package_dependencies_types_nodemailer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies", + "target": "apps_electron_vite_project_package_dependencies_types_ws", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies", + "target": "apps_electron_vite_project_package_dependencies_utf_8_validate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies", + "target": "apps_electron_vite_project_package_dependencies_whatwg_url", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies", + "target": "apps_electron_vite_project_package_dependencies_ws", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies", + "target": "apps_electron_vite_project_package_dependencies_zod", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies", + "target": "apps_electron_vite_project_package_dependencies_zustand", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L35", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies_noble_curves", + "target": "apps_electron_vite_project_package_json_noble_curves", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L36", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies_noble_post_quantum", + "target": "noble_post_quantum", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L37", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies_repo_ingestion_core", + "target": "apps_electron_vite_project_package_json_repo_ingestion_core", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L38", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies_repo_shared_beap_ui", + "target": "repo_shared_beap_ui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L39", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies_types_express", + "target": "types_express", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L40", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies_types_imap", + "target": "types_imap", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L41", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies_types_mailparser", + "target": "types_mailparser", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L42", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies_types_nodemailer", + "target": "types_nodemailer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L43", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies_types_ws", + "target": "apps_electron_vite_project_package_json_types_ws", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L44", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies_better_sqlite3", + "target": "apps_electron_vite_project_package_json_better_sqlite3", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L45", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies_body_parser", + "target": "body_parser", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L46", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies_bufferutil", + "target": "bufferutil", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L47", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies_canvas", + "target": "apps_electron_vite_project_package_json_canvas", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L48", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies_docx", + "target": "docx", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L49", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies_express", + "target": "express", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L50", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies_imap", + "target": "imap", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L51", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies_is_electron", + "target": "is_electron", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L52", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies_jose", + "target": "apps_electron_vite_project_package_json_jose", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L53", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies_keytar", + "target": "keytar", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L54", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies_libsodium_wrappers", + "target": "libsodium_wrappers", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L55", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies_mailparser", + "target": "mailparser", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L56", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies_mammoth", + "target": "mammoth", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L57", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies_node_fetch", + "target": "node_fetch", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L58", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies_nodemailer", + "target": "nodemailer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L59", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies_open", + "target": "open", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L60", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies_pdfjs_dist", + "target": "apps_electron_vite_project_package_json_pdfjs_dist", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L61", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies_pg", + "target": "pg", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L62", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies_pizzip", + "target": "pizzip", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L63", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies_react", + "target": "apps_electron_vite_project_package_json_react", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L64", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies_react_dom", + "target": "apps_electron_vite_project_package_json_react_dom", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L65", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies_recharts", + "target": "recharts", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L66", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies_regenerator_runtime", + "target": "regenerator_runtime", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L67", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies_tesseract_js", + "target": "tesseract_js", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L68", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies_utf_8_validate", + "target": "utf_8_validate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L69", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies_whatwg_url", + "target": "whatwg_url", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L70", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies_ws", + "target": "apps_electron_vite_project_package_json_ws", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L71", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies_zod", + "target": "apps_electron_vite_project_package_json_zod", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L72", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_dependencies_zustand", + "target": "apps_electron_vite_project_package_json_zustand", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_devdependencies", + "target": "apps_electron_vite_project_package_devdependencies_electron", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_devdependencies", + "target": "apps_electron_vite_project_package_devdependencies_electron_builder", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_devdependencies", + "target": "apps_electron_vite_project_package_devdependencies_electron_rebuild", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_devdependencies", + "target": "apps_electron_vite_project_package_devdependencies_eslint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_devdependencies", + "target": "apps_electron_vite_project_package_devdependencies_eslint_plugin_react_hooks", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_devdependencies", + "target": "apps_electron_vite_project_package_devdependencies_eslint_plugin_react_refresh", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_devdependencies", + "target": "apps_electron_vite_project_package_devdependencies_node_addon_api", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_devdependencies", + "target": "apps_electron_vite_project_package_devdependencies_prebuild_install", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_devdependencies", + "target": "apps_electron_vite_project_package_devdependencies_types_better_sqlite3", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_devdependencies", + "target": "apps_electron_vite_project_package_devdependencies_types_chrome", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_devdependencies", + "target": "apps_electron_vite_project_package_devdependencies_types_dompurify", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_devdependencies", + "target": "apps_electron_vite_project_package_devdependencies_types_libsodium_wrappers", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_devdependencies", + "target": "apps_electron_vite_project_package_devdependencies_types_pg", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_devdependencies", + "target": "apps_electron_vite_project_package_devdependencies_types_react", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_devdependencies", + "target": "apps_electron_vite_project_package_devdependencies_types_react_dom", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_devdependencies", + "target": "apps_electron_vite_project_package_devdependencies_typescript", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_devdependencies", + "target": "apps_electron_vite_project_package_devdependencies_typescript_eslint_eslint_plugin", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_devdependencies", + "target": "apps_electron_vite_project_package_devdependencies_typescript_eslint_parser", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_devdependencies", + "target": "apps_electron_vite_project_package_devdependencies_vite", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_devdependencies", + "target": "apps_electron_vite_project_package_devdependencies_vite_plugin_electron", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_devdependencies", + "target": "apps_electron_vite_project_package_devdependencies_vite_plugin_electron_renderer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_package_devdependencies", + "target": "apps_electron_vite_project_package_devdependencies_vitejs_plugin_react", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L75", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_devdependencies_types_better_sqlite3", + "target": "apps_electron_vite_project_package_json_types_better_sqlite3", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L76", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_devdependencies_types_chrome", + "target": "apps_electron_vite_project_package_json_types_chrome", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L77", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_devdependencies_types_dompurify", + "target": "types_dompurify", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L78", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_devdependencies_types_libsodium_wrappers", + "target": "types_libsodium_wrappers", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L79", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_devdependencies_types_pg", + "target": "types_pg", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L80", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_devdependencies_types_react", + "target": "apps_electron_vite_project_package_json_types_react", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L81", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_devdependencies_types_react_dom", + "target": "apps_electron_vite_project_package_json_types_react_dom", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L82", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_devdependencies_typescript_eslint_eslint_plugin", + "target": "typescript_eslint_eslint_plugin", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L83", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_devdependencies_typescript_eslint_parser", + "target": "typescript_eslint_parser", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L84", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_devdependencies_vitejs_plugin_react", + "target": "apps_electron_vite_project_package_json_vitejs_plugin_react", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L85", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_devdependencies_electron", + "target": "apps_electron_vite_project_package_json_electron", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L86", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_devdependencies_electron_builder", + "target": "apps_electron_vite_project_package_json_electron_builder", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L87", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_devdependencies_electron_rebuild", + "target": "electron_rebuild", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L88", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_devdependencies_eslint", + "target": "apps_electron_vite_project_package_json_eslint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L89", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_devdependencies_eslint_plugin_react_hooks", + "target": "eslint_plugin_react_hooks", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L90", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_devdependencies_eslint_plugin_react_refresh", + "target": "eslint_plugin_react_refresh", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L91", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_devdependencies_node_addon_api", + "target": "node_addon_api", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L92", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_devdependencies_prebuild_install", + "target": "prebuild_install", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L93", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_devdependencies_typescript", + "target": "apps_electron_vite_project_package_json_typescript", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L94", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_devdependencies_vite", + "target": "apps_electron_vite_project_package_json_vite", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L95", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_devdependencies_vite_plugin_electron", + "target": "vite_plugin_electron", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/package.json", + "source_location": "L96", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_package_devdependencies_vite_plugin_electron_renderer", + "target": "vite_plugin_electron_renderer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/rebuild.sh", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_rebuild", + "target": "apps_electron_vite_project_rebuild_sh__entry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/build-workspace-ingestion-core.cjs", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_build_workspace_ingestion_core", + "target": "apps_electron_vite_project_scripts_build_workspace_ingestion_core_path", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/build-workspace-ingestion-core.cjs", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_build_workspace_ingestion_core", + "target": "apps_electron_vite_project_scripts_build_workspace_ingestion_core_result", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/build-workspace-ingestion-core.cjs", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_build_workspace_ingestion_core", + "target": "apps_electron_vite_project_scripts_build_workspace_ingestion_core_spawnsync", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/build-workspace-ingestion-core.cjs", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_build_workspace_ingestion_core", + "target": "apps_electron_vite_project_scripts_build_workspace_ingestion_core_workspaceroot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/clean-windows-build-output.cjs", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_clean_windows_build_output", + "target": "apps_electron_vite_project_scripts_clean_windows_build_output_basename", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/clean-windows-build-output.cjs", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_clean_windows_build_output", + "target": "apps_electron_vite_project_scripts_clean_windows_build_output_fs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/clean-windows-build-output.cjs", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_clean_windows_build_output", + "target": "apps_electron_vite_project_scripts_clean_windows_build_output_getoutputbasename", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/clean-windows-build-output.cjs", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_clean_windows_build_output", + "target": "apps_electron_vite_project_scripts_clean_windows_build_output_path", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/clean-windows-build-output.cjs", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_clean_windows_build_output", + "target": "apps_electron_vite_project_scripts_clean_windows_build_output_winunpacked", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/clean.cjs", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_clean", + "target": "apps_electron_vite_project_scripts_clean_appdir", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/clean.cjs", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_clean", + "target": "apps_electron_vite_project_scripts_clean_clearbuildcaches", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/clean.cjs", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_clean", + "target": "apps_electron_vite_project_scripts_clean_distbuild", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/clean.cjs", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_clean", + "target": "apps_electron_vite_project_scripts_clean_execsync", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/clean.cjs", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_clean", + "target": "apps_electron_vite_project_scripts_clean_existssync_rmsync", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/clean.cjs", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_clean", + "target": "apps_electron_vite_project_scripts_clean_nativebuilddirs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/clean.cjs", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_clean", + "target": "apps_electron_vite_project_scripts_clean_os", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/clean.cjs", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_clean", + "target": "apps_electron_vite_project_scripts_clean_path", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/clean.cjs", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_clean", + "target": "apps_electron_vite_project_scripts_clear_build_caches", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/clean.cjs", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_clean", + "target": "apps_electron_vite_project_scripts_clear_build_caches_clearbuildcaches", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "confidence": "INFERRED", + "source_file": "apps/electron-vite-project/scripts/clear-build-caches.cjs", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "context": "collection", + "source": "apps_electron_vite_project_scripts_clear_build_caches", + "target": "apps_electron_vite_project_scripts_clear_build_caches_clearbuildcaches", + "confidence_score": 0.5 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/clear-build-caches.cjs", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_clear_build_caches", + "target": "apps_electron_vite_project_scripts_clear_build_caches_fs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/clear-build-caches.cjs", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_clear_build_caches", + "target": "apps_electron_vite_project_scripts_clear_build_caches_getactiveextensionoutdir", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/clear-build-caches.cjs", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_clear_build_caches", + "target": "apps_electron_vite_project_scripts_clear_build_caches_os", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/clear-build-caches.cjs", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_clear_build_caches", + "target": "apps_electron_vite_project_scripts_clear_build_caches_path", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/clear-build-caches.cjs", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_clear_build_caches", + "target": "apps_electron_vite_project_scripts_clear_build_caches_removestaleextensionbuilddirs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/clear-build-caches.cjs", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_clear_build_caches", + "target": "apps_electron_vite_project_scripts_clear_build_caches_rmdir", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/kill-wr-desk.cjs", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_kill_wr_desk", + "target": "apps_electron_vite_project_scripts_clear_build_caches", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/clear-build-caches.cjs", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_clear_build_caches_clearbuildcaches", + "target": "apps_electron_vite_project_scripts_clear_build_caches_rmdir", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/clear-build-caches.cjs", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_clear_build_caches_removestaleextensionbuilddirs", + "target": "apps_electron_vite_project_scripts_clear_build_caches_rmdir", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/clear-build-caches.cjs", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_clear_build_caches_clearbuildcaches", + "target": "apps_electron_vite_project_scripts_clear_build_caches_getactiveextensionoutdir", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/clear-build-caches.cjs", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_clear_build_caches_clearbuildcaches", + "target": "apps_electron_vite_project_scripts_clear_build_caches_removestaleextensionbuilddirs", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/kill-wr-desk.cjs", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_kill_wr_desk", + "target": "apps_electron_vite_project_scripts_clear_build_caches_clearbuildcaches", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/scripts/kill-wr-desk.cjs", + "source_location": "L195", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_kill_wr_desk_killprocesses", + "target": "apps_electron_vite_project_scripts_clear_build_caches_clearbuildcaches" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/copy-pnpm-transitive-deps.cjs", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_copy_pnpm_transitive_deps", + "target": "apps_electron_vite_project_scripts_copy_pnpm_transitive_deps_appdir", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/copy-pnpm-transitive-deps.cjs", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_copy_pnpm_transitive_deps", + "target": "apps_electron_vite_project_scripts_copy_pnpm_transitive_deps_appnodemodules", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/copy-pnpm-transitive-deps.cjs", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_copy_pnpm_transitive_deps", + "target": "apps_electron_vite_project_scripts_copy_pnpm_transitive_deps_copyrecursive", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/copy-pnpm-transitive-deps.cjs", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_copy_pnpm_transitive_deps", + "target": "apps_electron_vite_project_scripts_copy_pnpm_transitive_deps_fs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/copy-pnpm-transitive-deps.cjs", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_copy_pnpm_transitive_deps", + "target": "apps_electron_vite_project_scripts_copy_pnpm_transitive_deps_packages", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/copy-pnpm-transitive-deps.cjs", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_copy_pnpm_transitive_deps", + "target": "apps_electron_vite_project_scripts_copy_pnpm_transitive_deps_path", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/copy-pnpm-transitive-deps.cjs", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_copy_pnpm_transitive_deps", + "target": "apps_electron_vite_project_scripts_copy_pnpm_transitive_deps_resolvesearchpaths", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/copy-pnpm-transitive-deps.cjs", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_copy_pnpm_transitive_deps", + "target": "apps_electron_vite_project_scripts_copy_pnpm_transitive_deps_searchpaths", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/diagnose-websocket.js", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_diagnose_websocket", + "target": "apps_electron_vite_project_scripts_diagnose_websocket_checkelectronprocess", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/diagnose-websocket.js", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_diagnose_websocket", + "target": "apps_electron_vite_project_scripts_diagnose_websocket_checkport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/diagnose-websocket.js", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_diagnose_websocket", + "target": "apps_electron_vite_project_scripts_diagnose_websocket_dirname", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/diagnose-websocket.js", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_diagnose_websocket", + "target": "apps_electron_vite_project_scripts_diagnose_websocket_filename", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/diagnose-websocket.js", + "source_location": "L371", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_diagnose_websocket", + "target": "apps_electron_vite_project_scripts_diagnose_websocket_generatereport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/diagnose-websocket.js", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_diagnose_websocket", + "target": "apps_electron_vite_project_scripts_diagnose_websocket_loadpgmodule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/diagnose-websocket.js", + "source_location": "L447", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_diagnose_websocket", + "target": "apps_electron_vite_project_scripts_diagnose_websocket_parseargs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/diagnose-websocket.js", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_diagnose_websocket", + "target": "apps_electron_vite_project_scripts_diagnose_websocket_results", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/diagnose-websocket.js", + "source_location": "L481", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_diagnose_websocket", + "target": "apps_electron_vite_project_scripts_diagnose_websocket_rundiagnostics", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/diagnose-websocket.js", + "source_location": "L306", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_diagnose_websocket", + "target": "apps_electron_vite_project_scripts_diagnose_websocket_testdatabasedirect", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/diagnose-websocket.js", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_diagnose_websocket", + "target": "apps_electron_vite_project_scripts_diagnose_websocket_testmessageflow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/diagnose-websocket.js", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_diagnose_websocket", + "target": "apps_electron_vite_project_scripts_diagnose_websocket_testwebsocketconnection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/diagnose-websocket.js", + "source_location": "L486", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_diagnose_websocket_rundiagnostics", + "target": "apps_electron_vite_project_scripts_diagnose_websocket_loadpgmodule", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/diagnose-websocket.js", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_diagnose_websocket_checkelectronprocess", + "target": "apps_electron_vite_project_scripts_diagnose_websocket_checkport", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/diagnose-websocket.js", + "source_location": "L502", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_diagnose_websocket_rundiagnostics", + "target": "apps_electron_vite_project_scripts_diagnose_websocket_checkelectronprocess", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/diagnose-websocket.js", + "source_location": "L503", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_diagnose_websocket_rundiagnostics", + "target": "apps_electron_vite_project_scripts_diagnose_websocket_testwebsocketconnection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/diagnose-websocket.js", + "source_location": "L504", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_diagnose_websocket_rundiagnostics", + "target": "apps_electron_vite_project_scripts_diagnose_websocket_testmessageflow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/diagnose-websocket.js", + "source_location": "L505", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_diagnose_websocket_rundiagnostics", + "target": "apps_electron_vite_project_scripts_diagnose_websocket_testdatabasedirect", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/diagnose-websocket.js", + "source_location": "L508", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_diagnose_websocket_rundiagnostics", + "target": "apps_electron_vite_project_scripts_diagnose_websocket_generatereport", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/diagnose-websocket.js", + "source_location": "L488", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_diagnose_websocket_rundiagnostics", + "target": "apps_electron_vite_project_scripts_diagnose_websocket_parseargs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/dist-clean-artifacts.cjs", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_dist_clean_artifacts", + "target": "apps_electron_vite_project_scripts_dist_clean_artifacts_dirs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/dist-clean-artifacts.cjs", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_dist_clean_artifacts", + "target": "apps_electron_vite_project_scripts_dist_clean_artifacts_existssync_rmsync", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/dist-clean-artifacts.cjs", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_dist_clean_artifacts", + "target": "apps_electron_vite_project_scripts_dist_clean_artifacts_path", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/dist-clean-artifacts.cjs", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_dist_clean_artifacts", + "target": "apps_electron_vite_project_scripts_dist_clean_artifacts_root", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/guest/__tests__/winHomeGuest.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_guest_tests_winhomeguest_test", + "target": "apps_electron_vite_project_scripts_guest_guestports", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/guest/__tests__/winHomeGuest.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_guest_tests_winhomeguest_test", + "target": "apps_electron_vite_project_scripts_guest_guestports_resolvehypervisorfrompaths", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/guest/__tests__/winHomeGuest.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_guest_tests_winhomeguest_test", + "target": "apps_electron_vite_project_scripts_guest_guestports_shouldcreatevm", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/guest/__tests__/winHomeGuest.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_guest_tests_winhomeguest_test", + "target": "apps_electron_vite_project_scripts_guest_guestports_shouldreconvergeportforwards", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/guest/__tests__/winHomeGuest.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_guest_tests_winhomeguest_test", + "target": "apps_electron_vite_project_scripts_guest_guestports_ubuntu_cloud_image_manifest", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/guest/__tests__/winHomeGuest.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_guest_tests_winhomeguest_test", + "target": "apps_electron_vite_project_scripts_guest_guestports_wrdesk_coordination_port", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/guest/__tests__/winHomeGuest.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_guest_tests_winhomeguest_test", + "target": "apps_electron_vite_project_scripts_guest_guestports_wrdesk_guest_ports", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/guest/__tests__/winHomeGuest.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_guest_tests_winhomeguest_test", + "target": "apps_electron_vite_project_scripts_guest_guestports_wrdesk_p2p_ingest_port", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/guest/__tests__/winHomeGuest.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_guest_tests_winhomeguest_test", + "target": "apps_electron_vite_project_scripts_guest_tests_winhomeguest_test_dirname", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/guest/__tests__/winHomeGuest.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_guest_tests_winhomeguest_test", + "target": "apps_electron_vite_project_scripts_guest_tests_winhomeguest_test_guest_dir", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/guest/__tests__/winHomeGuest.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_guest_tests_winhomeguest_test", + "target": "apps_electron_vite_project_scripts_guest_tests_winhomeguest_test_readguestfile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/guest/guestPorts.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_guest_guestports", + "target": "apps_electron_vite_project_scripts_guest_guestports_hypervisorkind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/guest/guestPorts.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_guest_guestports", + "target": "apps_electron_vite_project_scripts_guest_guestports_resolvehypervisorfrompaths", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/guest/guestPorts.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_guest_guestports", + "target": "apps_electron_vite_project_scripts_guest_guestports_shouldcreatevm", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/guest/guestPorts.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_guest_guestports", + "target": "apps_electron_vite_project_scripts_guest_guestports_shouldreconvergeportforwards", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/guest/guestPorts.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_guest_guestports", + "target": "apps_electron_vite_project_scripts_guest_guestports_ubuntu_cloud_image_manifest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/guest/guestPorts.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_guest_guestports", + "target": "apps_electron_vite_project_scripts_guest_guestports_wrdesk_coordination_port", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/guest/guestPorts.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_guest_guestports", + "target": "apps_electron_vite_project_scripts_guest_guestports_wrdesk_guest_ports", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/guest/guestPorts.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_guest_guestports", + "target": "apps_electron_vite_project_scripts_guest_guestports_wrdesk_p2p_ingest_port", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/installer/__tests__/winRoleInstaller.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_installer_tests_winroleinstaller_test", + "target": "apps_electron_vite_project_scripts_installer_tests_winroleinstaller_test_dirname", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/installer/__tests__/winRoleInstaller.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_installer_tests_winroleinstaller_test", + "target": "apps_electron_vite_project_scripts_installer_tests_winroleinstaller_test_edition_ps1", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/installer/__tests__/winRoleInstaller.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_installer_tests_winroleinstaller_test", + "target": "apps_electron_vite_project_scripts_installer_tests_winroleinstaller_test_expectedwrdeskuserdatapath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/installer/__tests__/winRoleInstaller.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_installer_tests_winroleinstaller_test", + "target": "apps_electron_vite_project_scripts_installer_tests_winroleinstaller_test_hyperv_ps1", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/installer/__tests__/winRoleInstaller.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_installer_tests_winroleinstaller_test", + "target": "apps_electron_vite_project_scripts_installer_tests_winroleinstaller_test_installer_dir", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/installer/__tests__/winRoleInstaller.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_installer_tests_winroleinstaller_test", + "target": "apps_electron_vite_project_scripts_installer_tests_winroleinstaller_test_installer_nsh", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/installer/__tests__/winRoleInstaller.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_installer_tests_winroleinstaller_test", + "target": "apps_electron_vite_project_scripts_installer_tests_winroleinstaller_test_readinstallertext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/installer/__tests__/winRoleInstaller.test.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_installer_tests_winroleinstaller_test", + "target": "apps_electron_vite_project_scripts_installer_tests_winroleinstaller_test_runpowershellfile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/installer/__tests__/winRoleInstaller.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_installer_tests_winroleinstaller_test", + "target": "apps_electron_vite_project_scripts_installer_tests_winroleinstaller_test_seed_ps1", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/installer/__tests__/winRoleInstaller.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_installer_tests_winroleinstaller_test", + "target": "apps_electron_vite_project_scripts_installer_winroleedition", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/installer/__tests__/winRoleInstaller.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_installer_tests_winroleinstaller_test", + "target": "apps_electron_vite_project_scripts_installer_winroleedition_classifywindowsedition", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/installer/__tests__/winRoleInstaller.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_installer_tests_winroleinstaller_test", + "target": "apps_electron_vite_project_scripts_installer_winroleedition_orchestrator_seed_relative", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/installer/__tests__/winRoleInstaller.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_installer_tests_winroleinstaller_test", + "target": "apps_electron_vite_project_scripts_installer_winroleedition_orchestratorseedpathfromprofile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/installer/winRoleEdition.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_installer_winroleedition", + "target": "apps_electron_vite_project_scripts_installer_winroleedition_classifywindowsedition", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/installer/winRoleEdition.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_installer_winroleedition", + "target": "apps_electron_vite_project_scripts_installer_winroleedition_home_edition_ids", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/installer/winRoleEdition.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_installer_winroleedition", + "target": "apps_electron_vite_project_scripts_installer_winroleedition_orchestrator_seed_relative", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/installer/winRoleEdition.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_installer_winroleedition", + "target": "apps_electron_vite_project_scripts_installer_winroleedition_orchestratorseedpathfromprofile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/installer/winRoleEdition.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_installer_winroleedition", + "target": "apps_electron_vite_project_scripts_installer_winroleedition_pro_edition_ids", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/installer/winRoleEdition.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_installer_winroleedition", + "target": "apps_electron_vite_project_scripts_installer_winroleedition_windowseditionclass", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/scripts/installer/winRoleEdition.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_installer_winroleedition_classifywindowsedition", + "target": "apps_electron_vite_project_scripts_installer_winroleedition_home_edition_ids" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/scripts/installer/winRoleEdition.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_installer_winroleedition_classifywindowsedition", + "target": "apps_electron_vite_project_scripts_installer_winroleedition_pro_edition_ids" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/kill-wr-desk-unix.sh", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_kill_wr_desk_unix", + "target": "apps_electron_vite_project_scripts_kill_wr_desk_unix_sh__entry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/kill-wr-desk.cjs", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_kill_wr_desk", + "target": "apps_electron_vite_project_scripts_kill_wr_desk_clearbuildcaches", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/kill-wr-desk.cjs", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_kill_wr_desk", + "target": "apps_electron_vite_project_scripts_kill_wr_desk_deleteoldbuilds", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/kill-wr-desk.cjs", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_kill_wr_desk", + "target": "apps_electron_vite_project_scripts_kill_wr_desk_execsync", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/kill-wr-desk.cjs", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_kill_wr_desk", + "target": "apps_electron_vite_project_scripts_kill_wr_desk_fs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/kill-wr-desk.cjs", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_kill_wr_desk", + "target": "apps_electron_vite_project_scripts_kill_wr_desk_getactivewindowsoutputbasename", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/kill-wr-desk.cjs", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_kill_wr_desk", + "target": "apps_electron_vite_project_scripts_kill_wr_desk_getwindowsexecutablenamefromconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/kill-wr-desk.cjs", + "source_location": "L182", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_kill_wr_desk", + "target": "apps_electron_vite_project_scripts_kill_wr_desk_killprocesses", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/kill-wr-desk.cjs", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_kill_wr_desk", + "target": "apps_electron_vite_project_scripts_kill_wr_desk_killstalebuildoutputprocesses", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/kill-wr-desk.cjs", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_kill_wr_desk", + "target": "apps_electron_vite_project_scripts_kill_wr_desk_os", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/kill-wr-desk.cjs", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_kill_wr_desk", + "target": "apps_electron_vite_project_scripts_kill_wr_desk_path", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/kill-wr-desk.cjs", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_kill_wr_desk", + "target": "apps_electron_vite_project_scripts_kill_wr_desk_sleepsyncseconds", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/kill-wr-desk.cjs", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_kill_wr_desk", + "target": "apps_electron_vite_project_scripts_kill_wr_desk_tryelevateddeletewindowsfolder", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/kill-wr-desk.cjs", + "source_location": "L238", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_kill_wr_desk_killprocesses", + "target": "apps_electron_vite_project_scripts_kill_wr_desk_getwindowsexecutablenamefromconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/kill-wr-desk.cjs", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_kill_wr_desk_deleteoldbuilds", + "target": "apps_electron_vite_project_scripts_kill_wr_desk_getactivewindowsoutputbasename", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/kill-wr-desk.cjs", + "source_location": "L221", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_kill_wr_desk_killprocesses", + "target": "apps_electron_vite_project_scripts_kill_wr_desk_getactivewindowsoutputbasename", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/kill-wr-desk.cjs", + "source_location": "L169", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_kill_wr_desk_deleteoldbuilds", + "target": "apps_electron_vite_project_scripts_kill_wr_desk_tryelevateddeletewindowsfolder", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/kill-wr-desk.cjs", + "source_location": "L158", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_kill_wr_desk_deleteoldbuilds", + "target": "apps_electron_vite_project_scripts_kill_wr_desk_sleepsyncseconds", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/kill-wr-desk.cjs", + "source_location": "L223", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_kill_wr_desk_killprocesses", + "target": "apps_electron_vite_project_scripts_kill_wr_desk_sleepsyncseconds", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/kill-wr-desk.cjs", + "source_location": "L157", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_kill_wr_desk_deleteoldbuilds", + "target": "apps_electron_vite_project_scripts_kill_wr_desk_killstalebuildoutputprocesses", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/kill-wr-desk.cjs", + "source_location": "L222", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_kill_wr_desk_killprocesses", + "target": "apps_electron_vite_project_scripts_kill_wr_desk_killstalebuildoutputprocesses", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/kill-wr-desk.cjs", + "source_location": "L231", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_kill_wr_desk_killprocesses", + "target": "apps_electron_vite_project_scripts_kill_wr_desk_deleteoldbuilds", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/postinstall-native.cjs", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_postinstall_native", + "target": "apps_electron_vite_project_scripts_postinstall_native_approot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/postinstall-native.cjs", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_postinstall_native", + "target": "apps_electron_vite_project_scripts_postinstall_native_eb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/postinstall-native.cjs", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_postinstall_native", + "target": "apps_electron_vite_project_scripts_postinstall_native_path", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/postinstall-native.cjs", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_postinstall_native", + "target": "apps_electron_vite_project_scripts_postinstall_native_rebuild", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/postinstall-native.cjs", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_postinstall_native", + "target": "apps_electron_vite_project_scripts_postinstall_native_run", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/postinstall-native.cjs", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_postinstall_native", + "target": "apps_electron_vite_project_scripts_postinstall_native_spawnsync", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/prepare-google-oauth-resource.cjs", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_prepare_google_oauth_resource", + "target": "apps_electron_vite_project_scripts_prepare_google_oauth_resource_envid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/prepare-google-oauth-resource.cjs", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_prepare_google_oauth_resource", + "target": "apps_electron_vite_project_scripts_prepare_google_oauth_resource_envsecret", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/prepare-google-oauth-resource.cjs", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_prepare_google_oauth_resource", + "target": "apps_electron_vite_project_scripts_prepare_google_oauth_resource_firstdataline", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/prepare-google-oauth-resource.cjs", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_prepare_google_oauth_resource", + "target": "apps_electron_vite_project_scripts_prepare_google_oauth_resource_fs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/prepare-google-oauth-resource.cjs", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_prepare_google_oauth_resource", + "target": "apps_electron_vite_project_scripts_prepare_google_oauth_resource_isplaceholderline", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/prepare-google-oauth-resource.cjs", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_prepare_google_oauth_resource", + "target": "apps_electron_vite_project_scripts_prepare_google_oauth_resource_isplaceholdersecretline", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/prepare-google-oauth-resource.cjs", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_prepare_google_oauth_resource", + "target": "apps_electron_vite_project_scripts_prepare_google_oauth_resource_oauthclientidfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/prepare-google-oauth-resource.cjs", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_prepare_google_oauth_resource", + "target": "apps_electron_vite_project_scripts_prepare_google_oauth_resource_path", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/prepare-google-oauth-resource.cjs", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_prepare_google_oauth_resource", + "target": "apps_electron_vite_project_scripts_prepare_google_oauth_resource_root", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/prepare-google-oauth-resource.cjs", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_prepare_google_oauth_resource", + "target": "apps_electron_vite_project_scripts_prepare_google_oauth_resource_targetid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/prepare-google-oauth-resource.cjs", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_prepare_google_oauth_resource", + "target": "apps_electron_vite_project_scripts_prepare_google_oauth_resource_targetsecret", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/rebuild.cjs", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_rebuild", + "target": "apps_electron_vite_project_scripts_rebuild_appdir", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/rebuild.cjs", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_rebuild", + "target": "apps_electron_vite_project_scripts_rebuild_dirs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/rebuild.cjs", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_rebuild", + "target": "apps_electron_vite_project_scripts_rebuild_execsync", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/rebuild.cjs", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_rebuild", + "target": "apps_electron_vite_project_scripts_rebuild_existssync_rmsync", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/rebuild.cjs", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_rebuild", + "target": "apps_electron_vite_project_scripts_rebuild_path", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/repair-handshake-counterparty.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_repair_handshake_counterparty", + "target": "apps_electron_vite_project_scripts_repair_handshake_counterparty_main", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/repair-handshake-counterparty.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_repair_handshake_counterparty", + "target": "apps_electron_vite_project_scripts_repair_handshake_counterparty_parseargs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/repair-handshake-counterparty.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_repair_handshake_counterparty", + "target": "apps_electron_vite_project_scripts_repair_handshake_counterparty_row", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/repair-handshake-counterparty.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_repair_handshake_counterparty", + "target": "ref_better_sqlite3", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/repair-handshake-counterparty.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_repair_handshake_counterparty_main", + "target": "apps_electron_vite_project_scripts_repair_handshake_counterparty_parseargs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/restart.sh", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_restart", + "target": "apps_electron_vite_project_scripts_restart_sh__entry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/run-electron-builder.cjs", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_run_electron_builder", + "target": "apps_electron_vite_project_scripts_run_electron_builder_ebenv", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/run-electron-builder.cjs", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_run_electron_builder", + "target": "apps_electron_vite_project_scripts_run_electron_builder_existssync_rmsync", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/run-electron-builder.cjs", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_run_electron_builder", + "target": "apps_electron_vite_project_scripts_run_electron_builder_forwardargs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/run-electron-builder.cjs", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_run_electron_builder", + "target": "apps_electron_vite_project_scripts_run_electron_builder_path", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/run-electron-builder.cjs", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_run_electron_builder", + "target": "apps_electron_vite_project_scripts_run_electron_builder_releasedir", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/run-electron-builder.cjs", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_run_electron_builder", + "target": "apps_electron_vite_project_scripts_run_electron_builder_result", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/run-electron-builder.cjs", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_run_electron_builder", + "target": "apps_electron_vite_project_scripts_run_electron_builder_root", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/run-electron-builder.cjs", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_run_electron_builder", + "target": "apps_electron_vite_project_scripts_run_electron_builder_spawnsync", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/smoke-pdfjs-parser.cjs", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_smoke_pdfjs_parser", + "target": "apps_electron_vite_project_scripts_smoke_pdfjs_parser_appdir", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/smoke-pdfjs-parser.cjs", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_smoke_pdfjs_parser", + "target": "apps_electron_vite_project_scripts_smoke_pdfjs_parser_createrequire", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/smoke-pdfjs-parser.cjs", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_smoke_pdfjs_parser", + "target": "apps_electron_vite_project_scripts_smoke_pdfjs_parser_fs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/smoke-pdfjs-parser.cjs", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_smoke_pdfjs_parser", + "target": "apps_electron_vite_project_scripts_smoke_pdfjs_parser_path", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/smoke-pdfjs-parser.cjs", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_smoke_pdfjs_parser", + "target": "apps_electron_vite_project_scripts_smoke_pdfjs_parser_pathtofileurl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/smoke-pdfjs-parser.cjs", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_smoke_pdfjs_parser", + "target": "apps_electron_vite_project_scripts_smoke_pdfjs_parser_requirefrompkg", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/smoke-pdfjs-parser.cjs", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_smoke_pdfjs_parser", + "target": "apps_electron_vite_project_scripts_smoke_pdfjs_parser_worker", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/verify-windows-unpacked.cjs", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_verify_windows_unpacked", + "target": "apps_electron_vite_project_scripts_verify_windows_unpacked_basename_executablename", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/verify-windows-unpacked.cjs", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_verify_windows_unpacked", + "target": "apps_electron_vite_project_scripts_verify_windows_unpacked_exepath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/verify-windows-unpacked.cjs", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_verify_windows_unpacked", + "target": "apps_electron_vite_project_scripts_verify_windows_unpacked_expectedconfigured", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/verify-windows-unpacked.cjs", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_verify_windows_unpacked", + "target": "apps_electron_vite_project_scripts_verify_windows_unpacked_fs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/verify-windows-unpacked.cjs", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_verify_windows_unpacked", + "target": "apps_electron_vite_project_scripts_verify_windows_unpacked_getoutputbasenameandexecutablename", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/verify-windows-unpacked.cjs", + "source_location": "L150", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_verify_windows_unpacked", + "target": "apps_electron_vite_project_scripts_verify_windows_unpacked_mz", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/verify-windows-unpacked.cjs", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_verify_windows_unpacked", + "target": "apps_electron_vite_project_scripts_verify_windows_unpacked_path", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/verify-windows-unpacked.cjs", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_verify_windows_unpacked", + "target": "apps_electron_vite_project_scripts_verify_windows_unpacked_peers", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/verify-windows-unpacked.cjs", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_verify_windows_unpacked", + "target": "apps_electron_vite_project_scripts_verify_windows_unpacked_required_peer_files", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/verify-windows-unpacked.cjs", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_verify_windows_unpacked", + "target": "apps_electron_vite_project_scripts_verify_windows_unpacked_resolvepackagedexepath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/verify-windows-unpacked.cjs", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_verify_windows_unpacked", + "target": "apps_electron_vite_project_scripts_verify_windows_unpacked_verifyrequiredpeers", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/scripts/verify-windows-unpacked.cjs", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_scripts_verify_windows_unpacked", + "target": "apps_electron_vite_project_scripts_verify_windows_unpacked_winunpackeddir", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_electron_vite_project_src_app_app", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_electron_vite_project_src_app_dashboardview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_electron_vite_project_src_app_emailaccountslistsignature", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_electron_vite_project_src_app_extensiontheme", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_electron_vite_project_src_app_mapthemetocss", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_electron_vite_project_src_app_normalizetheme", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_electron_vite_project_src_app_wrcodelogo", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_analysisopenpayload", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_sanitizeanalysisopenpayload", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_electron_vite_project_src_components_analysis_index", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_electron_vite_project_src_components_analysiscanvas", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_electron_vite_project_src_components_analysiscanvas_analysiscanvas", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_electron_vite_project_src_components_debuglogviewer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_electron_vite_project_src_components_debuglogviewer_debuglogviewer", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_electron_vite_project_src_components_emailinboxview", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_electron_vite_project_src_components_emailinboxview_emailinboxview", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_electron_vite_project_src_components_handshakehealthorchestratorbanner", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_electron_vite_project_src_components_handshakehealthorchestratorbanner_handshakehealthorchestratorbanner", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_electron_vite_project_src_components_handshakeinitiatemodal", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_electron_vite_project_src_components_handshakeinitiatemodal_handshakeinitiatemodal", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_electron_vite_project_src_components_handshakeview", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_electron_vite_project_src_components_handshakeviewtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_electron_vite_project_src_components_hybridsearch", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_electron_vite_project_src_components_wrchatdashboardpanel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_electron_vite_project_src_components_wrchatdashboardpanel_wrchatdashboardpanel", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_electron_vite_project_src_hooks_useactivehandshakehealthbanner", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_electron_vite_project_src_hooks_useactivehandshakehealthbanner_useactivehandshakehealthbanner", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_electron_vite_project_src_hooks_useorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_electron_vite_project_src_hooks_useorchestratormode_useorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_readwrchatinferenceselection", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_electron_vite_project_src_lib_wrchatdashboardlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_electron_vite_project_src_lib_wrchatdashboardlog_wrchatdashboarddebug", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_electron_vite_project_src_lib_wrchatdashboardspeechcontext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_electron_vite_project_src_lib_wrchatdashboardspeechcontext_cleardashboardwrchatspeechopenmeta", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_electron_vite_project_src_lib_wrchatdashboardspeechcontext_dashboardmodekeyfromtriggerfunctionid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_electron_vite_project_src_lib_wrchatdashboardspeechcontext_recorddashboardwrchatspeechiconopen", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_electron_vite_project_src_lib_wrdeskoptimizerhttpbridge", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_electron_vite_project_src_lib_wrdeskoptimizerhttpbridge_registerwrdeskoptimizerhttpbridge", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_electron_vite_project_src_lib_wrdeskuievents", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_electron_vite_project_src_lib_wrdeskuievents_wrdesk_auto_optim_activate_sessions", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_electron_vite_project_src_lib_wrdeskuievents_wrdesk_optimization_guard_toast", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_electron_vite_project_src_shims_wrchatdashboardchrome", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_electron_vite_project_src_shims_wrchatdashboardchrome_ensurewrdeskchromeshim", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxfilter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_useemailinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_electron_vite_project_src_utils_inboxnewmessagesbackgroundrefresh", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_electron_vite_project_src_utils_inboxnewmessagesbackgroundrefresh_subscribeinboxnewmessagesbackgroundrefresh", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_extension_chromium_src_types_triggertypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_extension_chromium_src_types_triggertypes_triggerfunctionid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_extension_chromium_src_ui_components_addmodewizardhost_addmodewizardhost", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_extension_chromium_src_ui_components_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrdesk_open_project_assistant_creation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrdesk_trigger_sync_auto_optimizer_project", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrmultitriggerbar", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/main.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_main", + "target": "apps_electron_vite_project_src_app", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app_app", + "target": "apps_electron_vite_project_src_app_mapthemetocss", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L224", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app_app", + "target": "apps_electron_vite_project_src_app_normalizetheme", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L311", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app_app", + "target": "apps_electron_vite_project_src_app_emailaccountslistsignature", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L219", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app_app", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_sanitizeanalysisopenpayload", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app_app", + "target": "apps_electron_vite_project_src_hooks_useactivehandshakehealthbanner_useactivehandshakehealthbanner", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app_app", + "target": "apps_electron_vite_project_src_hooks_useorchestratormode_useorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L392", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app_app", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_readwrchatinferenceselection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L393", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app_app", + "target": "apps_electron_vite_project_src_lib_wrchatdashboardlog_wrchatdashboarddebug", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L539", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app_app", + "target": "apps_electron_vite_project_src_lib_wrchatdashboardspeechcontext_cleardashboardwrchatspeechopenmeta", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L390", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app_app", + "target": "apps_electron_vite_project_src_lib_wrchatdashboardspeechcontext_dashboardmodekeyfromtriggerfunctionid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L391", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app_app", + "target": "apps_electron_vite_project_src_lib_wrchatdashboardspeechcontext_recorddashboardwrchatspeechiconopen", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L178", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app_app", + "target": "apps_electron_vite_project_src_lib_wrdeskoptimizerhttpbridge_registerwrdeskoptimizerhttpbridge", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app_app", + "target": "apps_electron_vite_project_src_shims_wrchatdashboardchrome_ensurewrdeskchromeshim", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L340", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app_app", + "target": "apps_electron_vite_project_src_utils_inboxnewmessagesbackgroundrefresh_subscribeinboxnewmessagesbackgroundrefresh", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/App.tsx", + "source_location": "L193", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_app_app", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/main.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_main", + "target": "apps_electron_vite_project_src_app_app", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/ErrorBoundary.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_errorboundary", + "target": "apps_electron_vite_project_src_errorboundary_errorboundary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/ErrorBoundary.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_errorboundary", + "target": "apps_electron_vite_project_src_errorboundary_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/ErrorBoundary.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_errorboundary", + "target": "apps_electron_vite_project_src_errorboundary_state", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/main.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_main", + "target": "apps_electron_vite_project_src_errorboundary", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/ErrorBoundary.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_errorboundary_errorboundary", + "target": "apps_electron_vite_project_src_errorboundary_errorboundary_componentdidcatch", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/ErrorBoundary.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_errorboundary_errorboundary", + "target": "apps_electron_vite_project_src_errorboundary_errorboundary_constructor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/ErrorBoundary.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_errorboundary_errorboundary", + "target": "apps_electron_vite_project_src_errorboundary_errorboundary_getderivedstatefromerror", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/ErrorBoundary.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_errorboundary_errorboundary", + "target": "apps_electron_vite_project_src_errorboundary_errorboundary_render", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/main.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_main", + "target": "apps_electron_vite_project_src_errorboundary_errorboundary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/capabilities.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_capabilities", + "target": "apps_electron_vite_project_src_auth_capabilities_default_tier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/capabilities.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_capabilities", + "target": "apps_electron_vite_project_src_auth_capabilities_extractssotierfromroles", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/capabilities.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_capabilities", + "target": "apps_electron_vite_project_src_auth_capabilities_hasrolesintoken", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/capabilities.ts", + "source_location": "L176", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_capabilities", + "target": "apps_electron_vite_project_src_auth_capabilities_maprolestotier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/capabilities.ts", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_capabilities", + "target": "apps_electron_vite_project_src_auth_capabilities_resolvetier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/capabilities.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_capabilities", + "target": "apps_electron_vite_project_src_auth_capabilities_tier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/capabilities.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_capabilities", + "target": "apps_electron_vite_project_src_auth_capabilities_tier_level", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/capabilities.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_capabilities", + "target": "apps_electron_vite_project_src_auth_capabilities_tierfromplanclaim", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/capabilities.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_capabilities", + "target": "apps_electron_vite_project_src_auth_capabilities_unknown_tier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/capabilities.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_capabilities", + "target": "apps_electron_vite_project_src_auth_capabilities_valid_plan_tiers", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_session", + "target": "apps_electron_vite_project_src_auth_capabilities", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_session", + "target": "apps_electron_vite_project_src_auth_capabilities_tier", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_session_sessionuserinfo", + "target": "apps_electron_vite_project_src_auth_capabilities_tier", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/auth/capabilities.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_capabilities_tierfromplanclaim", + "target": "apps_electron_vite_project_src_auth_capabilities_valid_plan_tiers" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/capabilities.ts", + "source_location": "L178", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_capabilities_maprolestotier", + "target": "apps_electron_vite_project_src_auth_capabilities_hasrolesintoken", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_session", + "target": "apps_electron_vite_project_src_auth_capabilities_extractssotierfromroles", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L255", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_session_extractuserinfofromtokens", + "target": "apps_electron_vite_project_src_auth_capabilities_extractssotierfromroles", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/capabilities.ts", + "source_location": "L137", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_capabilities_resolvetier", + "target": "apps_electron_vite_project_src_auth_capabilities_tierfromplanclaim", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/capabilities.ts", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_capabilities_resolvetier", + "target": "apps_electron_vite_project_src_auth_capabilities_maprolestotier", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_session", + "target": "apps_electron_vite_project_src_auth_capabilities_resolvetier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L258", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_session_extractuserinfofromtokens", + "target": "apps_electron_vite_project_src_auth_capabilities_resolvetier", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_session", + "target": "apps_electron_vite_project_src_auth_capabilities_maprolestotier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L323", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_session_ensuresession", + "target": "apps_electron_vite_project_src_auth_capabilities_maprolestotier" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L369", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_session_updatesessionfromtokens", + "target": "apps_electron_vite_project_src_auth_capabilities_maprolestotier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/discovery.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_discovery", + "target": "apps_electron_vite_project_src_auth_discovery_cleardiscoverycache", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/discovery.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_discovery", + "target": "apps_electron_vite_project_src_auth_discovery_discoveryerror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/discovery.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_discovery", + "target": "apps_electron_vite_project_src_auth_discovery_discoveryresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/discovery.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_discovery", + "target": "apps_electron_vite_project_src_auth_discovery_discoverysuccess", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/discovery.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_discovery", + "target": "apps_electron_vite_project_src_auth_discovery_fetchdiscovery", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/discovery.ts", + "source_location": "L209", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_discovery", + "target": "apps_electron_vite_project_src_auth_discovery_getcacheddiscovery", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/discovery.ts", + "source_location": "L195", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_discovery", + "target": "apps_electron_vite_project_src_auth_discovery_getoidcdiscovery", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/discovery.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_discovery", + "target": "apps_electron_vite_project_src_auth_discovery_iscachevalid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/discovery.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_discovery", + "target": "apps_electron_vite_project_src_auth_discovery_oidcdiscovery", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/discovery.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_discovery", + "target": "apps_electron_vite_project_src_auth_oidcconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/discovery.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_discovery", + "target": "apps_electron_vite_project_src_auth_oidcconfig_oidc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/jwtVerify.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_jwtverify", + "target": "apps_electron_vite_project_src_auth_discovery", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/login.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_login", + "target": "apps_electron_vite_project_src_auth_discovery", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/refresh.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_refresh", + "target": "apps_electron_vite_project_src_auth_discovery", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/discovery.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_discovery_fetchdiscovery", + "target": "apps_electron_vite_project_src_auth_discovery_iscachevalid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/discovery.ts", + "source_location": "L210", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_discovery_getcacheddiscovery", + "target": "apps_electron_vite_project_src_auth_discovery_iscachevalid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/discovery.ts", + "source_location": "L196", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_discovery_getoidcdiscovery", + "target": "apps_electron_vite_project_src_auth_discovery_fetchdiscovery", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/jwtVerify.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_jwtverify", + "target": "apps_electron_vite_project_src_auth_discovery_fetchdiscovery", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/auth/jwtVerify.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_jwtverify_verifyidtoken", + "target": "apps_electron_vite_project_src_auth_discovery_fetchdiscovery" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/login.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_login", + "target": "apps_electron_vite_project_src_auth_discovery_fetchdiscovery", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/auth/login.ts", + "source_location": "L273", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_login_loginwithkeycloak", + "target": "apps_electron_vite_project_src_auth_discovery_fetchdiscovery" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/auth/login.ts", + "source_location": "L173", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_login_prepareloginurl", + "target": "apps_electron_vite_project_src_auth_discovery_fetchdiscovery" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/refresh.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_refresh", + "target": "apps_electron_vite_project_src_auth_discovery_fetchdiscovery", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/auth/refresh.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_refresh_refreshwithkeycloak", + "target": "apps_electron_vite_project_src_auth_discovery_fetchdiscovery" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/jwtVerify.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_jwtverify", + "target": "apps_electron_vite_project_src_auth_discovery_getcacheddiscovery", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/auth/jwtVerify.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_jwtverify_verifyidtoken", + "target": "apps_electron_vite_project_src_auth_discovery_getcacheddiscovery" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/refresh.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_refresh", + "target": "apps_electron_vite_project_src_auth_discovery_getcacheddiscovery", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/auth/refresh.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_refresh_refreshwithkeycloak", + "target": "apps_electron_vite_project_src_auth_discovery_getcacheddiscovery" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/jwtVerify.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_jwtverify", + "target": "apps_electron_vite_project_src_auth_jwtverify_clearjwkscache", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/jwtVerify.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_jwtverify", + "target": "apps_electron_vite_project_src_auth_jwtverify_idtokenclaims", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/jwtVerify.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_jwtverify", + "target": "apps_electron_vite_project_src_auth_jwtverify_verifyidtoken", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/jwtVerify.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_jwtverify", + "target": "apps_electron_vite_project_src_auth_oidcconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/jwtVerify.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_jwtverify", + "target": "apps_electron_vite_project_src_auth_oidcconfig_oidc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/login.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_login", + "target": "apps_electron_vite_project_src_auth_jwtverify", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/login.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_login", + "target": "apps_electron_vite_project_src_auth_jwtverify_verifyidtoken", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/auth/login.ts", + "source_location": "L379", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_login_loginwithkeycloak", + "target": "apps_electron_vite_project_src_auth_jwtverify_verifyidtoken" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/auth/login.ts", + "source_location": "L241", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_login_prepareloginurl", + "target": "apps_electron_vite_project_src_auth_jwtverify_verifyidtoken" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/login.ts", + "source_location": "L271", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_login", + "target": "apps_electron_vite_project_src_auth_login_loginwithkeycloak", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/login.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_login", + "target": "apps_electron_vite_project_src_auth_login_oidc_user_errors", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/login.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_login", + "target": "apps_electron_vite_project_src_auth_login_oidctokens", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/login.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_login", + "target": "apps_electron_vite_project_src_auth_login_openurlonwindows", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/login.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_login", + "target": "apps_electron_vite_project_src_auth_login_parsetokenerror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/login.ts", + "source_location": "L168", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_login", + "target": "apps_electron_vite_project_src_auth_login_prepareloginurl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/login.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_login", + "target": "apps_electron_vite_project_src_auth_login_seturlopener", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/login.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_login", + "target": "apps_electron_vite_project_src_auth_login_token_exchange_errors", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/login.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_login", + "target": "apps_electron_vite_project_src_auth_loopback", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/login.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_login", + "target": "apps_electron_vite_project_src_auth_loopback_startloopbackserver", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/login.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_login", + "target": "apps_electron_vite_project_src_auth_oidcconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/login.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_login", + "target": "apps_electron_vite_project_src_auth_oidcconfig_oidc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/login.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_login", + "target": "apps_electron_vite_project_src_auth_pkce", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/login.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_login", + "target": "apps_electron_vite_project_src_auth_pkce_randomstring", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/login.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_login", + "target": "apps_electron_vite_project_src_auth_pkce_sha256base64url", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/login.ts", + "source_location": "L372", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_login_loginwithkeycloak", + "target": "apps_electron_vite_project_src_auth_login_parsetokenerror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/login.ts", + "source_location": "L236", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_login_prepareloginurl", + "target": "apps_electron_vite_project_src_auth_login_parsetokenerror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/login.ts", + "source_location": "L318", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_login_loginwithkeycloak", + "target": "apps_electron_vite_project_src_auth_login_openurlonwindows", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/auth/login.ts", + "source_location": "L183", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_login_prepareloginurl", + "target": "apps_electron_vite_project_src_auth_loopback_startloopbackserver" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/auth/login.ts", + "source_location": "L179", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_login_prepareloginurl", + "target": "apps_electron_vite_project_src_auth_pkce_randomstring" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/auth/login.ts", + "source_location": "L180", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_login_prepareloginurl", + "target": "apps_electron_vite_project_src_auth_pkce_sha256base64url" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/auth/login.ts", + "source_location": "L288", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_login_loginwithkeycloak", + "target": "apps_electron_vite_project_src_auth_loopback_startloopbackserver" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/auth/login.ts", + "source_location": "L280", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_login_loginwithkeycloak", + "target": "apps_electron_vite_project_src_auth_pkce_randomstring" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/auth/login.ts", + "source_location": "L281", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_login_loginwithkeycloak", + "target": "apps_electron_vite_project_src_auth_pkce_sha256base64url" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/logout.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_logout", + "target": "apps_electron_vite_project_src_auth_logout_logoutlocalonly", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/logout.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_logout", + "target": "apps_electron_vite_project_src_auth_session", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/logout.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_logout", + "target": "apps_electron_vite_project_src_auth_session_clearsession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/logout.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_logout", + "target": "apps_electron_vite_project_src_auth_tokenstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/logout.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_logout", + "target": "apps_electron_vite_project_src_auth_tokenstore_clearrefreshtoken", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/auth/logout.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_logout_logoutlocalonly", + "target": "apps_electron_vite_project_src_auth_session_clearsession" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/auth/logout.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_logout_logoutlocalonly", + "target": "apps_electron_vite_project_src_auth_tokenstore_clearrefreshtoken" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/loopback.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_loopback", + "target": "apps_electron_vite_project_src_auth_loopback_callbackresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/loopback.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_loopback", + "target": "apps_electron_vite_project_src_auth_loopback_loopbackserver", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/loopback.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_loopback", + "target": "apps_electron_vite_project_src_auth_loopback_preferred_ports", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/loopback.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_loopback", + "target": "apps_electron_vite_project_src_auth_loopback_startloopbackserver", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/loopback.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_loopback", + "target": "apps_electron_vite_project_src_auth_loopback_startserveronport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/loopback.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_loopback", + "target": "apps_electron_vite_project_src_auth_loopback_tryportsinorder", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/loopback.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_loopback", + "target": "apps_electron_vite_project_src_auth_loopback_wrdesklogohtml", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/loopback.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_loopback", + "target": "apps_electron_vite_project_src_auth_pkce", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/loopback.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_loopback", + "target": "apps_electron_vite_project_src_auth_pkce_randomstring", + "confidence_score": 1.0 + }, + { + "relation": "cites", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/loopback.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_loopback", + "target": "docref_rfc_8252", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/loopback.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_loopback_startserveronport", + "target": "apps_electron_vite_project_src_auth_loopback_wrdesklogohtml", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/loopback.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_loopback_startloopbackserver", + "target": "apps_electron_vite_project_src_auth_loopback_tryportsinorder", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/loopback.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_loopback_tryportsinorder", + "target": "apps_electron_vite_project_src_auth_loopback_startserveronport", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/loopback.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_loopback_startserveronport", + "target": "apps_electron_vite_project_src_auth_pkce_randomstring", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/oidcConfig.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_oidcconfig", + "target": "apps_electron_vite_project_src_auth_oidcconfig_oidc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/refresh.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_refresh", + "target": "apps_electron_vite_project_src_auth_oidcconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/refresh.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_refresh", + "target": "apps_electron_vite_project_src_auth_oidcconfig_oidc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/pkce.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_pkce", + "target": "apps_electron_vite_project_src_auth_pkce_base64url", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/pkce.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_pkce", + "target": "apps_electron_vite_project_src_auth_pkce_randomstring", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/pkce.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_pkce", + "target": "apps_electron_vite_project_src_auth_pkce_sha256base64url", + "confidence_score": 1.0 + }, + { + "relation": "cites", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/pkce.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_pkce", + "target": "docref_rfc_7636", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/pkce.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_pkce_randomstring", + "target": "apps_electron_vite_project_src_auth_pkce_base64url", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/refresh.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_refresh", + "target": "apps_electron_vite_project_src_auth_refresh_refreshtokenresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/refresh.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_refresh", + "target": "apps_electron_vite_project_src_auth_refresh_refreshwithkeycloak", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_session", + "target": "apps_electron_vite_project_src_auth_refresh", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_session", + "target": "apps_electron_vite_project_src_auth_refresh_refreshwithkeycloak", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L305", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_session_ensuresession", + "target": "apps_electron_vite_project_src_auth_refresh_refreshwithkeycloak" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L391", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_session", + "target": "apps_electron_vite_project_src_auth_session_clearsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_session", + "target": "apps_electron_vite_project_src_auth_session_decodejwtpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L285", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_session", + "target": "apps_electron_vite_project_src_auth_session_ensuresession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_session", + "target": "apps_electron_vite_project_src_auth_session_extractplanfrompayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L154", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_session", + "target": "apps_electron_vite_project_src_auth_session_extractprofilefrompayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_session", + "target": "apps_electron_vite_project_src_auth_session_extractroles", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_session", + "target": "apps_electron_vite_project_src_auth_session_extractuserinfofromtokens", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L384", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_session", + "target": "apps_electron_vite_project_src_auth_session_getaccesstoken", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_session", + "target": "apps_electron_vite_project_src_auth_session_nested_attribute_keys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_session", + "target": "apps_electron_vite_project_src_auth_session_plan_claim_keys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_session", + "target": "apps_electron_vite_project_src_auth_session_sessionuserinfo", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L351", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_session", + "target": "apps_electron_vite_project_src_auth_session_updatesessionfromtokens", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/sessionCache.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_sessioncache", + "target": "apps_electron_vite_project_src_auth_session", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_session", + "target": "apps_electron_vite_project_src_auth_sessioncache_getcacheduserinfo", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_session", + "target": "apps_electron_vite_project_src_auth_sessioncache_setcacheduserinfo", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_session", + "target": "apps_electron_vite_project_src_auth_tokenstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_session", + "target": "apps_electron_vite_project_src_auth_tokenstore_clearrefreshtoken", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_session", + "target": "apps_electron_vite_project_src_auth_tokenstore_loadrefreshtoken", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_session", + "target": "apps_electron_vite_project_src_auth_tokenstore_saverefreshtoken", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/sessionCache.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_sessioncache", + "target": "apps_electron_vite_project_src_auth_session_sessionuserinfo", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L317", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_session_ensuresession", + "target": "apps_electron_vite_project_src_auth_session_decodejwtpayload", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L204", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_session_extractuserinfofromtokens", + "target": "apps_electron_vite_project_src_auth_session_decodejwtpayload", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L363", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_session_updatesessionfromtokens", + "target": "apps_electron_vite_project_src_auth_session_decodejwtpayload", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L212", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_session_extractuserinfofromtokens", + "target": "apps_electron_vite_project_src_auth_session_extractplanfrompayload", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L322", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_session_ensuresession", + "target": "apps_electron_vite_project_src_auth_session_extractroles", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L217", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_session_extractuserinfofromtokens", + "target": "apps_electron_vite_project_src_auth_session_extractroles", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L368", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_session_updatesessionfromtokens", + "target": "apps_electron_vite_project_src_auth_session_extractroles", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L224", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_session_extractuserinfofromtokens", + "target": "apps_electron_vite_project_src_auth_session_extractprofilefrompayload", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L312", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_session_ensuresession", + "target": "apps_electron_vite_project_src_auth_session_extractuserinfofromtokens", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L360", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_session_updatesessionfromtokens", + "target": "apps_electron_vite_project_src_auth_session_extractuserinfofromtokens", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L290", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_session_ensuresession", + "target": "apps_electron_vite_project_src_auth_sessioncache_getcacheduserinfo" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L298", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_session_ensuresession", + "target": "apps_electron_vite_project_src_auth_sessioncache_setcacheduserinfo" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L337", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_session_ensuresession", + "target": "apps_electron_vite_project_src_auth_tokenstore_clearrefreshtoken" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L293", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_session_ensuresession", + "target": "apps_electron_vite_project_src_auth_tokenstore_loadrefreshtoken" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L329", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_session_ensuresession", + "target": "apps_electron_vite_project_src_auth_tokenstore_saverefreshtoken" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L375", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_session_updatesessionfromtokens", + "target": "apps_electron_vite_project_src_auth_sessioncache_getcacheduserinfo" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L360", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_session_updatesessionfromtokens", + "target": "apps_electron_vite_project_src_auth_sessioncache_setcacheduserinfo" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/auth/session.ts", + "source_location": "L394", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_session_clearsession", + "target": "apps_electron_vite_project_src_auth_sessioncache_setcacheduserinfo" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/sessionCache.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_sessioncache", + "target": "apps_electron_vite_project_src_auth_sessioncache_getcacheduserinfo", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/sessionCache.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_sessioncache", + "target": "apps_electron_vite_project_src_auth_sessioncache_setcacheduserinfo", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "target": "apps_electron_vite_project_src_auth_sessioncache", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "target": "apps_electron_vite_project_src_auth_sessioncache_getcacheduserinfo", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_accountkeyfromsession", + "target": "apps_electron_vite_project_src_auth_sessioncache_getcacheduserinfo" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/tokenStore.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_tokenstore", + "target": "apps_electron_vite_project_src_auth_tokenstore_clearrefreshtoken", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/tokenStore.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_tokenstore", + "target": "apps_electron_vite_project_src_auth_tokenstore_loadrefreshtoken", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/auth/tokenStore.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_auth_tokenstore", + "target": "apps_electron_vite_project_src_auth_tokenstore_saverefreshtoken", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/letterComposerChat.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_lettercomposerchat", + "target": "apps_electron_vite_project_src_chat_routing_lettercomposerchat_fallback_field", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/letterComposerChat.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_lettercomposerchat", + "target": "apps_electron_vite_project_src_chat_routing_lettercomposerchat_formatreferencedatafromletter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/letterComposerChat.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_lettercomposerchat", + "target": "apps_electron_vite_project_src_chat_routing_lettercomposerchat_handlelettercomposerchat", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/letterComposerChat.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_lettercomposerchat", + "target": "apps_electron_vite_project_src_chat_routing_lettercomposerchat_letter_reference_prompt_keys", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/letterComposerChat.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_lettercomposerchat", + "target": "apps_electron_vite_project_src_chat_routing_lettercomposerprompt", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/letterComposerChat.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_lettercomposerchat", + "target": "apps_electron_vite_project_src_chat_routing_lettercomposerprompt_buildlettercomposersystemprompt", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/letterComposerChat.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_lettercomposerchat", + "target": "apps_electron_vite_project_src_chat_routing_lettercomposerprompt_buildlettercomposeruserprompt", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/letterComposerChat.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_lettercomposerchat", + "target": "apps_electron_vite_project_src_stores_useaidraftcontextstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/letterComposerChat.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_lettercomposerchat", + "target": "apps_electron_vite_project_src_stores_useaidraftcontextstore_useaidraftcontextstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/letterComposerChat.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_lettercomposerchat", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/letterComposerChat.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_lettercomposerchat", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_uselettercomposerstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/letterComposerChat.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_lettercomposerchat", + "target": "apps_extension_chromium_src_stores_chatfocusstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/letterComposerChat.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_lettercomposerchat", + "target": "apps_extension_chromium_src_stores_chatfocusstore_usechatfocusstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_chat_routing_lettercomposerchat", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/letterComposerChat.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_lettercomposerchat_handlelettercomposerchat", + "target": "apps_electron_vite_project_src_chat_routing_lettercomposerchat_formatreferencedatafromletter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/chat/routing/letterComposerChat.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_lettercomposerchat_handlelettercomposerchat", + "target": "apps_electron_vite_project_src_chat_routing_lettercomposerprompt_buildlettercomposersystemprompt" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/chat/routing/letterComposerChat.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_lettercomposerchat_handlelettercomposerchat", + "target": "apps_electron_vite_project_src_chat_routing_lettercomposerprompt_buildlettercomposeruserprompt" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_chat_routing_lettercomposerchat_handlelettercomposerchat", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L2161", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_chat_routing_lettercomposerchat_handlelettercomposerchat" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/letterComposerPrompt.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_lettercomposerprompt", + "target": "apps_electron_vite_project_src_chat_routing_lettercomposerprompt_buildlettercomposersystemprompt", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/letterComposerPrompt.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_lettercomposerprompt", + "target": "apps_electron_vite_project_src_chat_routing_lettercomposerprompt_buildlettercomposeruserprompt", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/letterComposerPrompt.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_lettercomposerprompt", + "target": "apps_electron_vite_project_src_chat_routing_lettercomposerprompt_nonempty", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/letterComposerPrompt.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_lettercomposerprompt_buildlettercomposeruserprompt", + "target": "apps_electron_vite_project_src_chat_routing_lettercomposerprompt_nonempty", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/letterVaultHelper.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_lettervaulthelper", + "target": "apps_electron_vite_project_src_chat_routing_lettervaulthelper_assemblestructuredaddress", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/letterVaultHelper.ts", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_lettervaulthelper", + "target": "apps_electron_vite_project_src_chat_routing_lettervaulthelper_canaccesslettervaultcategory", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/letterVaultHelper.ts", + "source_location": "L195", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_lettervaulthelper", + "target": "apps_electron_vite_project_src_chat_routing_lettervaulthelper_fetchandmapvaultitem", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/letterVaultHelper.ts", + "source_location": "L242", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_lettervaulthelper", + "target": "apps_electron_vite_project_src_chat_routing_lettervaulthelper_fetchlettervaultdata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/letterVaultHelper.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_lettervaulthelper", + "target": "apps_electron_vite_project_src_chat_routing_lettervaulthelper_isvaultrpcsuccess", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/letterVaultHelper.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_lettervaulthelper", + "target": "apps_electron_vite_project_src_chat_routing_lettervaulthelper_lettervaultlistcategory", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/letterVaultHelper.ts", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_lettervaulthelper", + "target": "apps_electron_vite_project_src_chat_routing_lettervaulthelper_listlettervaultitems", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/letterVaultHelper.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_lettervaulthelper", + "target": "apps_electron_vite_project_src_chat_routing_lettervaulthelper_mapvaultfieldstoletterdata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/letterVaultHelper.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_lettervaulthelper", + "target": "apps_electron_vite_project_src_chat_routing_lettervaulthelper_parsevaulttier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/letterVaultHelper.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_lettervaulthelper", + "target": "apps_electron_vite_project_src_chat_routing_lettervaulthelper_recordtypeforlettercategory", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/letterVaultHelper.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_lettervaulthelper", + "target": "apps_electron_vite_project_src_chat_routing_lettervaulthelper_vaultfieldrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/letterVaultHelper.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_lettervaulthelper", + "target": "apps_electron_vite_project_src_chat_routing_lettervaulthelper_vaultfieldstokeymap", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/letterVaultHelper.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_lettervaulthelper", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/letterVaultHelper.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_lettervaulthelper", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_lettervaultdata", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/letterVaultHelper.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_lettervaulthelper", + "target": "packages_shared_src_vault_vaultcapabilities", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/letterVaultHelper.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_lettervaulthelper", + "target": "packages_shared_src_vault_vaultcapabilities_canaccessrecordtype", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/letterVaultHelper.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_lettervaulthelper", + "target": "packages_shared_src_vault_vaultcapabilities_tier_level", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/letterVaultHelper.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_lettervaulthelper", + "target": "packages_shared_src_vault_vaultcapabilities_vaultrecordtype", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/letterVaultHelper.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_lettervaulthelper", + "target": "packages_shared_src_vault_vaultcapabilities_vaulttier", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterComposerView.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_lettercomposerview", + "target": "apps_electron_vite_project_src_chat_routing_lettervaulthelper", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/letterVaultHelper.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_lettervaulthelper_canaccesslettervaultcategory", + "target": "apps_electron_vite_project_src_chat_routing_lettervaulthelper_parsevaulttier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/letterVaultHelper.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_lettervaulthelper_canaccesslettervaultcategory", + "target": "apps_electron_vite_project_src_chat_routing_lettervaulthelper_recordtypeforlettercategory", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/letterVaultHelper.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_lettervaulthelper_mapvaultfieldstoletterdata", + "target": "apps_electron_vite_project_src_chat_routing_lettervaulthelper_vaultfieldstokeymap", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/letterVaultHelper.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_lettervaulthelper_mapvaultfieldstoletterdata", + "target": "apps_electron_vite_project_src_chat_routing_lettervaulthelper_assemblestructuredaddress", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/letterVaultHelper.ts", + "source_location": "L233", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_lettervaulthelper_fetchandmapvaultitem", + "target": "apps_electron_vite_project_src_chat_routing_lettervaulthelper_mapvaultfieldstoletterdata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/letterVaultHelper.ts", + "source_location": "L224", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_lettervaulthelper_fetchandmapvaultitem", + "target": "apps_electron_vite_project_src_chat_routing_lettervaulthelper_isvaultrpcsuccess", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/letterVaultHelper.ts", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_lettervaulthelper_listlettervaultitems", + "target": "apps_electron_vite_project_src_chat_routing_lettervaulthelper_isvaultrpcsuccess", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/chat/routing/letterVaultHelper.ts", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_lettervaulthelper_canaccesslettervaultcategory", + "target": "packages_shared_src_vault_vaultcapabilities_canaccessrecordtype" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/letterVaultHelper.ts", + "source_location": "L204", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_lettervaulthelper_fetchandmapvaultitem", + "target": "apps_electron_vite_project_src_chat_routing_lettervaulthelper_canaccesslettervaultcategory", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/letterVaultHelper.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_lettervaulthelper_listlettervaultitems", + "target": "apps_electron_vite_project_src_chat_routing_lettervaulthelper_canaccesslettervaultcategory", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterComposerView.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_lettercomposerview", + "target": "apps_electron_vite_project_src_chat_routing_lettervaulthelper_canaccesslettervaultcategory", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/LetterComposerView.tsx", + "source_location": "L152", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_lettercomposerview_lettercomposerview", + "target": "apps_electron_vite_project_src_chat_routing_lettervaulthelper_canaccesslettervaultcategory" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/letterVaultHelper.ts", + "source_location": "L249", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_lettervaulthelper_fetchlettervaultdata", + "target": "apps_electron_vite_project_src_chat_routing_lettervaulthelper_listlettervaultitems", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterComposerView.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_lettercomposerview", + "target": "apps_electron_vite_project_src_chat_routing_lettervaulthelper_listlettervaultitems", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/LetterComposerView.tsx", + "source_location": "L160", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_lettercomposerview_lettercomposerview", + "target": "apps_electron_vite_project_src_chat_routing_lettervaulthelper_listlettervaultitems" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/letterVaultHelper.ts", + "source_location": "L254", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_lettervaulthelper_fetchlettervaultdata", + "target": "apps_electron_vite_project_src_chat_routing_lettervaulthelper_fetchandmapvaultitem", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterComposerView.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_lettercomposerview", + "target": "apps_electron_vite_project_src_chat_routing_lettervaulthelper_fetchandmapvaultitem", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/LetterComposerView.tsx", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_lettercomposerview_lettercomposerview", + "target": "apps_electron_vite_project_src_chat_routing_lettervaulthelper_fetchandmapvaultitem" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/resolveChatRoute.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_resolvechatroute", + "target": "apps_electron_vite_project_src_chat_routing_resolvechatroute_chatroutedecision", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/resolveChatRoute.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_resolvechatroute", + "target": "apps_electron_vite_project_src_chat_routing_resolvechatroute_chatroutekind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/resolveChatRoute.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_resolvechatroute", + "target": "apps_electron_vite_project_src_chat_routing_resolvechatroute_resolvechatroute", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/resolveChatRoute.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_resolvechatroute", + "target": "apps_electron_vite_project_src_stores_usedraftrefinestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/resolveChatRoute.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_resolvechatroute", + "target": "apps_electron_vite_project_src_stores_usedraftrefinestore_usedraftrefinestore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/resolveChatRoute.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_resolvechatroute", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/resolveChatRoute.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_resolvechatroute", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_uselettercomposerstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/resolveChatRoute.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_resolvechatroute", + "target": "apps_electron_vite_project_src_stores_useprojectsetupchatcontextstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/resolveChatRoute.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_resolvechatroute", + "target": "apps_electron_vite_project_src_stores_useprojectsetupchatcontextstore_useprojectsetupchatcontextstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/resolveChatRoute.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_resolvechatroute", + "target": "apps_extension_chromium_src_stores_chatfocusstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/chat/routing/resolveChatRoute.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_chat_routing_resolvechatroute", + "target": "apps_extension_chromium_src_stores_chatfocusstore_usechatfocusstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_chat_routing_resolvechatroute", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_chat_routing_resolvechatroute_resolvechatroute", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L2135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_chat_routing_resolvechatroute_resolvechatroute" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AcceptHandshakeModal.tsx", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_accepthandshakemodal", + "target": "apps_electron_vite_project_src_components_accepthandshakemodal_accepthandshakemodal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AcceptHandshakeModal.tsx", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_accepthandshakemodal", + "target": "apps_electron_vite_project_src_components_accepthandshakemodal_generateblockid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AcceptHandshakeModal.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_accepthandshakemodal", + "target": "apps_electron_vite_project_src_components_accepthandshakemodal_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AcceptHandshakeModal.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_accepthandshakemodal", + "target": "apps_electron_vite_project_src_components_accepthandshakemodal_props", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AcceptHandshakeModal.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_accepthandshakemodal", + "target": "apps_electron_vite_project_src_components_policyradiogroup", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AcceptHandshakeModal.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_accepthandshakemodal", + "target": "apps_electron_vite_project_src_components_policyradiogroup_default_ai_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AcceptHandshakeModal.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_accepthandshakemodal", + "target": "apps_electron_vite_project_src_components_policyradiogroup_policyradiogroup", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AcceptHandshakeModal.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_accepthandshakemodal", + "target": "apps_electron_vite_project_src_components_policyradiogroup_policyselection", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AcceptHandshakeModal.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_accepthandshakemodal", + "target": "apps_electron_vite_project_src_components_vaultstatusindicator", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AcceptHandshakeModal.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_accepthandshakemodal", + "target": "apps_electron_vite_project_src_components_vaultstatusindicator_vaultstatusindicator", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AcceptHandshakeModal.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_accepthandshakemodal", + "target": "apps_electron_vite_project_src_shims_handshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AcceptHandshakeModal.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_accepthandshakemodal", + "target": "apps_electron_vite_project_src_shims_handshakerpc_accepthandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AcceptHandshakeModal.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_accepthandshakemodal", + "target": "apps_electron_vite_project_src_utils_contextblockhash", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AcceptHandshakeModal.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_accepthandshakemodal", + "target": "apps_electron_vite_project_src_utils_contextblockhash_computeblockhashclient", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AcceptHandshakeModal.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_accepthandshakemodal", + "target": "apps_extension_chromium_src_handshake_components_handshakecontextprofilepicker", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AcceptHandshakeModal.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_accepthandshakemodal", + "target": "apps_extension_chromium_src_handshake_components_handshakecontextprofilepicker_handshakecontextprofilepicker", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AcceptHandshakeModal.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_accepthandshakemodal", + "target": "packages_shared_src_handshake_receiveremailvalidation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AcceptHandshakeModal.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_accepthandshakemodal", + "target": "packages_shared_src_handshake_receiveremailvalidation_issameaccounthandshakeemails", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AcceptHandshakeModal.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_accepthandshakemodal", + "target": "packages_shared_src_handshake_receiveremailvalidation_validatereceiveremail", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AcceptHandshakeModal.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_accepthandshakemodal", + "target": "packages_shared_src_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AcceptHandshakeModal.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_accepthandshakemodal", + "target": "packages_shared_src_handshake_types_contextblockwithpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AcceptHandshakeModal.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_accepthandshakemodal", + "target": "packages_shared_src_handshake_types_profilecontextitem", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeView.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeview", + "target": "apps_electron_vite_project_src_components_accepthandshakemodal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AcceptHandshakeModal.tsx", + "source_location": "L190", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_accepthandshakemodal_accepthandshakemodal", + "target": "apps_electron_vite_project_src_components_accepthandshakemodal_generateblockid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/AcceptHandshakeModal.tsx", + "source_location": "L242", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_accepthandshakemodal_accepthandshakemodal", + "target": "apps_electron_vite_project_src_shims_handshakerpc_accepthandshake" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/AcceptHandshakeModal.tsx", + "source_location": "L188", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_accepthandshakemodal_accepthandshakemodal", + "target": "apps_electron_vite_project_src_utils_contextblockhash_computeblockhashclient" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/AcceptHandshakeModal.tsx", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_accepthandshakemodal_accepthandshakemodal", + "target": "packages_shared_src_handshake_receiveremailvalidation_issameaccounthandshakeemails" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/AcceptHandshakeModal.tsx", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_accepthandshakemodal_accepthandshakemodal", + "target": "packages_shared_src_handshake_receiveremailvalidation_validatereceiveremail" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeView.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeview", + "target": "apps_electron_vite_project_src_components_accepthandshakemodal_accepthandshakemodal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AiDraftContextRail.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_aidraftcontextrail", + "target": "apps_electron_vite_project_src_components_aidraftcontextrail_aidraftcontextrail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AiDraftContextRail.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_aidraftcontextrail", + "target": "apps_electron_vite_project_src_components_aidraftcontextrail_aidraftcontextrailprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AiDraftContextRail.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_aidraftcontextrail", + "target": "apps_electron_vite_project_src_components_composerattachmentbutton", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AiDraftContextRail.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_aidraftcontextrail", + "target": "apps_electron_vite_project_src_components_composerattachmentbutton_composerattachmentbutton", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AiDraftContextRail.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_aidraftcontextrail", + "target": "apps_electron_vite_project_src_lib_ingestaicontextfiles", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AiDraftContextRail.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_aidraftcontextrail", + "target": "apps_electron_vite_project_src_lib_ingestaicontextfiles_ingestaicontextfiles", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AiDraftContextRail.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_aidraftcontextrail", + "target": "apps_electron_vite_project_src_stores_useaidraftcontextstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AiDraftContextRail.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_aidraftcontextrail", + "target": "apps_electron_vite_project_src_stores_useaidraftcontextstore_useaidraftcontextstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer", + "target": "apps_electron_vite_project_src_components_aidraftcontextrail", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/DashboardEmailComposer.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_dashboardemailcomposer", + "target": "apps_electron_vite_project_src_components_aidraftcontextrail", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInlineComposer.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinlinecomposer", + "target": "apps_electron_vite_project_src_components_aidraftcontextrail", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/AiDraftContextRail.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_aidraftcontextrail_aidraftcontextrail", + "target": "apps_electron_vite_project_src_lib_ingestaicontextfiles_ingestaicontextfiles" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/AiDraftContextRail.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_aidraftcontextrail_aidraftcontextrail", + "target": "apps_electron_vite_project_src_stores_useaidraftcontextstore_useaidraftcontextstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer", + "target": "apps_electron_vite_project_src_components_aidraftcontextrail_aidraftcontextrail", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/DashboardEmailComposer.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_dashboardemailcomposer", + "target": "apps_electron_vite_project_src_components_aidraftcontextrail_aidraftcontextrail", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInlineComposer.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinlinecomposer", + "target": "apps_electron_vite_project_src_components_aidraftcontextrail_aidraftcontextrail", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysiscanvas", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_analysisopenpayload", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysiscanvas", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_drawertabid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysiscanvas", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_activityfeedcolumn_activityfeedcolumn", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysiscanvas", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome_dashboardautomationhome", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysiscanvas", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysiscanvas", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard_intelligencedashboard", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysiscanvas", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel_dashboardemailaccountrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysiscanvas", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel_projectoptimizationpanel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysiscanvas", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel_projectoptimizationpanelhandle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysiscanvas", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection_openinboxmessagepayload", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysiscanvas", + "target": "apps_electron_vite_project_src_components_analysis_index", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysiscanvas", + "target": "apps_electron_vite_project_src_components_analysis_statusbadge", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysiscanvas", + "target": "apps_electron_vite_project_src_components_analysis_statusbadge_statusbadge", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysiscanvas", + "target": "apps_electron_vite_project_src_components_analysis_usecanvasstate_usecanvasstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysiscanvas", + "target": "apps_electron_vite_project_src_components_analysiscanvas_analysiscanvas", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysiscanvas", + "target": "apps_electron_vite_project_src_components_analysiscanvas_analysiscanvasprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysiscanvas", + "target": "apps_electron_vite_project_src_components_analysiscanvas_deeplinkstate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysiscanvas", + "target": "apps_electron_vite_project_src_components_dashboardbeapcomposer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysiscanvas", + "target": "apps_electron_vite_project_src_components_dashboardbeapcomposer_dashboardbeapcomposer", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysiscanvas", + "target": "apps_electron_vite_project_src_components_dashboardemailcomposer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysiscanvas", + "target": "apps_electron_vite_project_src_components_dashboardemailcomposer_dashboardemailcomposer", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysiscanvas", + "target": "apps_electron_vite_project_src_components_lettercomposerview", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysiscanvas", + "target": "apps_electron_vite_project_src_components_lettercomposerview_lettercomposerview", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysiscanvas", + "target": "apps_electron_vite_project_src_lib_useanalysisdashboardsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysiscanvas", + "target": "apps_electron_vite_project_src_lib_useanalysisdashboardsnapshot_useanalysisdashboardsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysiscanvas", + "target": "apps_electron_vite_project_src_stores_usedraftrefinestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysiscanvas", + "target": "apps_electron_vite_project_src_stores_usedraftrefinestore_usedraftrefinestore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysiscanvas", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysiscanvas", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_activeemailaccountidsforsync", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysiscanvas", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_useemailinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysiscanvas", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysiscanvas", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_uselettercomposerstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysiscanvas", + "target": "apps_electron_vite_project_src_stores_useprojectstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysiscanvas", + "target": "apps_electron_vite_project_src_stores_useprojectstore_selectactiveproject", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysiscanvas", + "target": "apps_electron_vite_project_src_stores_useprojectstore_useprojectstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysiscanvas", + "target": "apps_extension_chromium_src_shared_email_pickdefaultaccountrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysiscanvas", + "target": "apps_extension_chromium_src_shared_email_pickdefaultaccountrow_pickdefaultemailaccountrowid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysiscanvas", + "target": "apps_extension_chromium_src_types_triggertypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysiscanvas", + "target": "apps_extension_chromium_src_types_triggertypes_triggerfunctionid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysiscanvas", + "target": "apps_extension_chromium_src_ui_components_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysiscanvas", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrdesk_trigger_sync_auto_optimizer_project", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysiscanvas_deeplinkstate", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_drawertabid", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysiscanvas_analysiscanvasprops", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_analysisopenpayload", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysiscanvas_analysiscanvasprops", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel_dashboardemailaccountrow", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysiscanvas_analysiscanvasprops", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection_openinboxmessagepayload", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysiscanvas_analysiscanvasprops", + "target": "apps_extension_chromium_src_types_triggertypes_triggerfunctionid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L239", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysiscanvas_analysiscanvas", + "target": "apps_electron_vite_project_src_components_analysis_usecanvasstate_usecanvasstate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysiscanvas_analysiscanvas", + "target": "apps_electron_vite_project_src_lib_useanalysisdashboardsnapshot_useanalysisdashboardsnapshot" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L228", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysiscanvas_analysiscanvas", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_activeemailaccountidsforsync" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysiscanvas_analysiscanvas", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_useemailinboxstore" + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysiscanvas_analysiscanvas", + "target": "apps_electron_vite_project_src_stores_useprojectstore_selectactiveproject" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysiscanvas_analysiscanvas", + "target": "apps_electron_vite_project_src_stores_useprojectstore_useprojectstore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/AnalysisCanvas.tsx", + "source_location": "L233", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysiscanvas_analysiscanvas", + "target": "apps_extension_chromium_src_shared_email_pickdefaultaccountrow_pickdefaultemailaccountrowid" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AutoSortSessionHistory.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_autosortsessionhistory", + "target": "apps_electron_vite_project_src_components_autosortsessionhistory_autosortsessionhistory", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AutoSortSessionHistory.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_autosortsessionhistory", + "target": "apps_electron_vite_project_src_components_autosortsessionhistory_autosortsessionhistoryprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AutoSortSessionHistory.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_autosortsessionhistory", + "target": "apps_electron_vite_project_src_components_autosortsessionhistory_sessionrow", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AutoSortSessionHistory.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_autosortsessionhistory", + "target": "apps_electron_vite_project_src_components_handshakeviewtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_autosortsessionhistory", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_autosortsessionhistory_autosortsessionhistory", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AutoSortSessionReview.tsx", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_autosortsessionreview", + "target": "apps_electron_vite_project_src_components_autosortsessionreview_aisummaryparsed", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AutoSortSessionReview.tsx", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_autosortsessionreview", + "target": "apps_electron_vite_project_src_components_autosortsessionreview_autosortsessionreview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AutoSortSessionReview.tsx", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_autosortsessionreview", + "target": "apps_electron_vite_project_src_components_autosortsessionreview_autosortsessionreviewprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AutoSortSessionReview.tsx", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_autosortsessionreview", + "target": "apps_electron_vite_project_src_components_autosortsessionreview_bucketurgency", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AutoSortSessionReview.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_autosortsessionreview", + "target": "apps_electron_vite_project_src_components_autosortsessionreview_category_colors", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AutoSortSessionReview.tsx", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_autosortsessionreview", + "target": "apps_electron_vite_project_src_components_autosortsessionreview_formatcategorylabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AutoSortSessionReview.tsx", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_autosortsessionreview", + "target": "apps_electron_vite_project_src_components_autosortsessionreview_messagelistrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AutoSortSessionReview.tsx", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_autosortsessionreview", + "target": "apps_electron_vite_project_src_components_autosortsessionreview_sessionrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AutoSortSessionReview.tsx", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_autosortsessionreview", + "target": "apps_electron_vite_project_src_components_autosortsessionreview_urgency_bucket_meta", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AutoSortSessionReview.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_autosortsessionreview", + "target": "apps_electron_vite_project_src_components_handshakeviewtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AutoSortSessionReview.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_autosortsessionreview", + "target": "apps_electron_vite_project_src_lib_autosortsessionreviewcharts", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AutoSortSessionReview.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_autosortsessionreview", + "target": "apps_electron_vite_project_src_lib_autosortsessionreviewcharts_aggregatereceivedbyday", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AutoSortSessionReview.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_autosortsessionreview", + "target": "apps_electron_vite_project_src_lib_autosortsessionreviewcharts_aggregatereplyneededforsessionreview", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AutoSortSessionReview.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_autosortsessionreview", + "target": "apps_electron_vite_project_src_lib_autosortsessionreviewcharts_aggregatetopsenders", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AutoSortSessionReview.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_autosortsessionreview", + "target": "apps_electron_vite_project_src_lib_autosortsessionreviewcharts_formatsessionreviewreceivedatshort", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AutoSortSessionReview.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_autosortsessionreview", + "target": "apps_electron_vite_project_src_lib_autosortsessionreviewcharts_sender_bar_colors", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AutoSortSessionReview.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_autosortsessionreview", + "target": "apps_electron_vite_project_src_lib_inboxsessionreviewopen", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AutoSortSessionReview.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_autosortsessionreview", + "target": "apps_electron_vite_project_src_lib_inboxsessionreviewopen_sessionreviewmessagerow", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_autosortsessionreview", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AutoSortSessionReview.tsx", + "source_location": "L197", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_autosortsessionreview_autosortsessionreview", + "target": "apps_electron_vite_project_src_components_autosortsessionreview_formatcategorylabel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AutoSortSessionReview.tsx", + "source_location": "L206", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_autosortsessionreview_autosortsessionreview", + "target": "apps_electron_vite_project_src_components_autosortsessionreview_bucketurgency", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AutoSortSessionReview.tsx", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_autosortsessionreview_messagelistrow", + "target": "apps_electron_vite_project_src_lib_autosortsessionreviewcharts_formatsessionreviewreceivedatshort", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AutoSortSessionReview.tsx", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_autosortsessionreview_autosortsessionreviewprops", + "target": "apps_electron_vite_project_src_lib_inboxsessionreviewopen_sessionreviewmessagerow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/AutoSortSessionReview.tsx", + "source_location": "L220", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_autosortsessionreview_autosortsessionreview", + "target": "apps_electron_vite_project_src_lib_autosortsessionreviewcharts_aggregatereceivedbyday" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/AutoSortSessionReview.tsx", + "source_location": "L216", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_autosortsessionreview_autosortsessionreview", + "target": "apps_electron_vite_project_src_lib_autosortsessionreviewcharts_aggregatereplyneededforsessionreview" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/AutoSortSessionReview.tsx", + "source_location": "L218", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_autosortsessionreview_autosortsessionreview", + "target": "apps_electron_vite_project_src_lib_autosortsessionreviewcharts_aggregatetopsenders" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_autosortsessionreview_autosortsessionreview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AutosortRuntimeStatus.tsx", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_autosortruntimestatus", + "target": "apps_electron_vite_project_src_components_autosortruntimestatus_autosortruntimestatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AutosortRuntimeStatus.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_autosortruntimestatus", + "target": "apps_electron_vite_project_src_components_autosortruntimestatus_empty", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AutosortRuntimeStatus.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_autosortruntimestatus", + "target": "apps_electron_vite_project_src_components_autosortruntimestatus_gpu_color", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AutosortRuntimeStatus.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_autosortruntimestatus", + "target": "apps_electron_vite_project_src_components_autosortruntimestatus_gpu_label", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/AutosortRuntimeStatus.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_autosortruntimestatus", + "target": "apps_electron_vite_project_src_components_autosortruntimestatus_statusbadgestate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_autosortruntimestatus", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_autosortruntimestatus_autosortruntimestatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapActionIconButton.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapactioniconbutton", + "target": "apps_electron_vite_project_src_components_beapactioniconbutton_beapactioniconbutton", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapActionIconButton.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapactioniconbutton", + "target": "apps_electron_vite_project_src_components_beapactioniconbutton_beapactioniconbuttonprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapActionIconButton.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapactioniconbutton", + "target": "apps_electron_vite_project_src_components_beapactioniconbutton_beapactioniconkind", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapActionIconButton.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapactioniconbutton", + "target": "apps_electron_vite_project_src_components_beapinboxredirecticon", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapActionIconButton.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapactioniconbutton", + "target": "apps_electron_vite_project_src_components_beapinboxredirecticon_beapinboxredirecticon", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapActionIconButton.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapactioniconbutton", + "target": "apps_electron_vite_project_src_components_beapinboxrunautomationicon", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapActionIconButton.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapactioniconbutton", + "target": "apps_electron_vite_project_src_components_beapinboxrunautomationicon_beapinboxrunautomationicon", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapActionIconButton.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapactioniconbutton", + "target": "apps_electron_vite_project_src_components_beapinboxsandboxcloneicon", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapActionIconButton.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapactioniconbutton", + "target": "apps_electron_vite_project_src_components_beapinboxsandboxcloneicon_beapinboxsandboxcloneicon", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxActionIcons.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxactionicons", + "target": "apps_electron_vite_project_src_components_beapactioniconbutton", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxActionIcons.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxactionicons", + "target": "apps_electron_vite_project_src_components_beapactioniconbutton_beapactioniconbuttonprops", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxActionIcons.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxactionicons", + "target": "apps_electron_vite_project_src_components_beapactioniconbutton_beapactioniconbutton", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapBulkInboxDashboard.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapbulkinboxdashboard", + "target": "apps_electron_vite_project_src_components_beapbulkinboxdashboard_beapbulkinboxdashboard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapBulkInboxDashboard.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapbulkinboxdashboard", + "target": "apps_electron_vite_project_src_components_beapbulkinboxdashboard_beapbulkinboxdashboardprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapBulkInboxDashboard.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapbulkinboxdashboard", + "target": "apps_electron_vite_project_src_components_beapinlinecomposer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapBulkInboxDashboard.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapbulkinboxdashboard", + "target": "apps_electron_vite_project_src_components_beapinlinecomposer_beapinlinecomposer", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapBulkInboxDashboard.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapbulkinboxdashboard", + "target": "apps_electron_vite_project_src_components_emailinlinecomposer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapBulkInboxDashboard.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapbulkinboxdashboard", + "target": "apps_electron_vite_project_src_components_emailinlinecomposer_emailinlinecomposer", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapBulkInboxDashboard.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapbulkinboxdashboard", + "target": "apps_electron_vite_project_src_hooks_useingestionstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapBulkInboxDashboard.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapbulkinboxdashboard", + "target": "apps_electron_vite_project_src_hooks_useingestionstatus_useingestionstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapBulkInboxDashboard.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapbulkinboxdashboard", + "target": "apps_electron_vite_project_src_hooks_useorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapBulkInboxDashboard.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapbulkinboxdashboard", + "target": "apps_electron_vite_project_src_hooks_useorchestratormode_useorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapBulkInboxDashboard.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapbulkinboxdashboard", + "target": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapBulkInboxDashboard.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapbulkinboxdashboard", + "target": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_beapbulkinbox", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapBulkInboxDashboard.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapbulkinboxdashboard", + "target": "apps_extension_chromium_src_beap_messages_services_beapreplyaiprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapBulkInboxDashboard.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapbulkinboxdashboard", + "target": "apps_extension_chromium_src_beap_messages_services_beapreplyaiprovider_createbeapreplyaiprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapBulkInboxDashboard.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapbulkinboxdashboard", + "target": "apps_extension_chromium_src_shared_email_connectemailflow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapBulkInboxDashboard.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapbulkinboxdashboard", + "target": "apps_extension_chromium_src_shared_email_connectemailflow_useconnectemailflow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapBulkInboxDashboard.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapbulkinboxdashboard", + "target": "apps_extension_chromium_src_shared_email_connectemailtypes_connectemaillaunchsource", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapBulkInboxDashboard.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapbulkinboxdashboard", + "target": "apps_extension_chromium_src_wrguard_components_emailproviderssection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapBulkInboxDashboard.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapbulkinboxdashboard", + "target": "apps_extension_chromium_src_wrguard_components_emailproviderssection_emailproviderssection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/BeapBulkInboxDashboard.tsx", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapbulkinboxdashboard_beapbulkinboxdashboard", + "target": "apps_electron_vite_project_src_hooks_useingestionstatus_useingestionstatus" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/BeapBulkInboxDashboard.tsx", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapbulkinboxdashboard_beapbulkinboxdashboard", + "target": "apps_electron_vite_project_src_hooks_useorchestratormode_useorchestratormode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/BeapBulkInboxDashboard.tsx", + "source_location": "L231", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapbulkinboxdashboard_beapbulkinboxdashboard", + "target": "apps_extension_chromium_src_beap_messages_services_beapreplyaiprovider_createbeapreplyaiprovider" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/BeapBulkInboxDashboard.tsx", + "source_location": "L137", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapbulkinboxdashboard_beapbulkinboxdashboard", + "target": "apps_extension_chromium_src_shared_email_connectemailflow_useconnectemailflow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxDashboard.tsx", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxdashboard", + "target": "apps_electron_vite_project_src_components_beapinboxdashboard_beapinboxdashboard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxDashboard.tsx", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxdashboard", + "target": "apps_electron_vite_project_src_components_beapinboxdashboard_beapinboxdashboardprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxDashboard.tsx", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxdashboard", + "target": "apps_electron_vite_project_src_components_beapinboxdashboard_formatrelativetime", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxDashboard.tsx", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxdashboard", + "target": "apps_electron_vite_project_src_components_beapinboxdashboard_getcontentpreview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxDashboard.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxdashboard", + "target": "apps_electron_vite_project_src_components_beapinboxdashboard_theme", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxDashboard.tsx", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxdashboard", + "target": "apps_electron_vite_project_src_components_beapinboxdashboard_trust_badge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxDashboard.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxdashboard", + "target": "apps_electron_vite_project_src_components_beapinboxdashboard_urgency_dot", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxDashboard.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxdashboard", + "target": "apps_electron_vite_project_src_components_beapinboxfirstrun", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxDashboard.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxdashboard", + "target": "apps_electron_vite_project_src_components_beapinboxfirstrun_beapinboxfirstrun", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxDashboard.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxdashboard", + "target": "apps_electron_vite_project_src_components_beapinlinecomposer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxDashboard.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxdashboard", + "target": "apps_electron_vite_project_src_components_beapinlinecomposer_beapinlinecomposer", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxDashboard.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxdashboard", + "target": "apps_electron_vite_project_src_components_beapmessageimportzone", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxDashboard.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxdashboard", + "target": "apps_electron_vite_project_src_components_beapmessageimportzone_beapmessageimportzone", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxDashboard.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxdashboard", + "target": "apps_electron_vite_project_src_components_emailinlinecomposer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxDashboard.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxdashboard", + "target": "apps_electron_vite_project_src_components_emailinlinecomposer_emailinlinecomposer", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxDashboard.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxdashboard", + "target": "apps_electron_vite_project_src_hooks_useingestionstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxDashboard.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxdashboard", + "target": "apps_electron_vite_project_src_hooks_useingestionstatus_useingestionstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxDashboard.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxdashboard", + "target": "apps_electron_vite_project_src_hooks_useorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxDashboard.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxdashboard", + "target": "apps_electron_vite_project_src_hooks_useorchestratormode_useorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxDashboard.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxdashboard", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxDashboard.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxdashboard", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxDashboard.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxdashboard", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_trustlevel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxDashboard.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxdashboard", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_urgencylevel", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxDashboard.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxdashboard", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxDashboard.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxdashboard", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_beapmessagedetailpanel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxDashboard.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxdashboard", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_beapmessagedetailpanelhandle", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxDashboard.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxdashboard", + "target": "apps_extension_chromium_src_beap_messages_services_beapreplyaiprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxDashboard.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxdashboard", + "target": "apps_extension_chromium_src_beap_messages_services_beapreplyaiprovider_createbeapreplyaiprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxDashboard.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxdashboard", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxDashboard.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxdashboard", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_usebeapinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxDashboard.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxdashboard", + "target": "apps_extension_chromium_src_handshake_usependingp2pbeapingestion", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxDashboard.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxdashboard", + "target": "apps_extension_chromium_src_handshake_usependingp2pbeapingestion_usependingp2pbeapingestion", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxDashboard.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxdashboard", + "target": "apps_extension_chromium_src_shared_email_connectemailflow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxDashboard.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxdashboard", + "target": "apps_extension_chromium_src_shared_email_connectemailflow_useconnectemailflow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxDashboard.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxdashboard", + "target": "apps_extension_chromium_src_shared_email_connectemailtypes_connectemaillaunchsource", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxDashboard.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxdashboard", + "target": "apps_extension_chromium_src_wrguard_components_emailproviderssection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxDashboard.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxdashboard", + "target": "apps_extension_chromium_src_wrguard_components_emailproviderssection_emailproviderssection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxDashboard.tsx", + "source_location": "L523", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxdashboard_beapinboxdashboard", + "target": "apps_electron_vite_project_src_components_beapinboxdashboard_formatrelativetime", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxDashboard.tsx", + "source_location": "L450", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxdashboard_beapinboxdashboard", + "target": "apps_electron_vite_project_src_components_beapinboxdashboard_getcontentpreview", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/BeapInboxDashboard.tsx", + "source_location": "L216", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxdashboard_beapinboxdashboard", + "target": "apps_electron_vite_project_src_hooks_useingestionstatus_useingestionstatus" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/BeapInboxDashboard.tsx", + "source_location": "L214", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxdashboard_beapinboxdashboard", + "target": "apps_electron_vite_project_src_hooks_useorchestratormode_useorchestratormode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/BeapInboxDashboard.tsx", + "source_location": "L316", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxdashboard_beapinboxdashboard", + "target": "apps_extension_chromium_src_beap_messages_services_beapreplyaiprovider_createbeapreplyaiprovider" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/BeapInboxDashboard.tsx", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxdashboard_beapinboxdashboard", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_usebeapinboxstore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/BeapInboxDashboard.tsx", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxdashboard_beapinboxdashboard", + "target": "apps_extension_chromium_src_handshake_usependingp2pbeapingestion_usependingp2pbeapingestion" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/BeapInboxDashboard.tsx", + "source_location": "L202", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxdashboard_beapinboxdashboard", + "target": "apps_extension_chromium_src_shared_email_connectemailflow_useconnectemailflow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxFirstRun.tsx", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxfirstrun", + "target": "apps_electron_vite_project_src_components_beapinboxfirstrun_beapinboxfirstrun", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxFirstRun.tsx", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxfirstrun", + "target": "apps_electron_vite_project_src_components_beapinboxfirstrun_beapinboxfirstrunprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxFirstRun.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxfirstrun", + "target": "apps_electron_vite_project_src_components_beapinboxfirstrun_usebeapfileimport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxFirstRun.tsx", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxfirstrun", + "target": "apps_electron_vite_project_src_components_beapinboxfirstrun_window", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxFirstRun.tsx", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxfirstrun_beapinboxfirstrun", + "target": "apps_electron_vite_project_src_components_beapinboxfirstrun_usebeapfileimport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxRedirectIcon.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxredirecticon", + "target": "apps_electron_vite_project_src_components_beapinboxredirecticon_beapinboxredirecticon", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxRunAutomationIcon.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxrunautomationicon", + "target": "apps_electron_vite_project_src_components_beapinboxrunautomationicon_beapinboxrunautomationicon", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxSandboxCloneIcon.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxsandboxcloneicon", + "target": "apps_electron_vite_project_src_components_beapinboxsandboxcloneicon_beapinboxsandboxcloneicon", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LinkWarningDialog.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_linkwarningdialog", + "target": "apps_electron_vite_project_src_components_beapinboxsandboxcloneicon", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LinkWarningDialog.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_linkwarningdialog", + "target": "apps_electron_vite_project_src_components_beapinboxsandboxcloneicon_beapinboxsandboxcloneicon", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxView.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxview", + "target": "apps_electron_vite_project_src_components_beapinboxview_beapinboxview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxView.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxview", + "target": "apps_electron_vite_project_src_components_beapinboxview_sidebar_items", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxView.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxview", + "target": "apps_electron_vite_project_src_components_beapinboxview_sidebarkey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxView.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxview", + "target": "apps_electron_vite_project_src_components_beapinboxview_theme", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxView.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxview", + "target": "apps_extension_chromium_src_beap_messages_components_beapdraftcomposer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxView.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxview", + "target": "apps_extension_chromium_src_beap_messages_components_beapdraftcomposer_beapdraftcomposer", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxView.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxview", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagepreview", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxView.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxview", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagepreview_beapmessagepreview", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxView.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxview", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagerow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxView.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxview", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagerow_beapmessagerow", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxView.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxview", + "target": "apps_extension_chromium_src_beap_messages_components_inboxmessagepreview", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxView.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxview", + "target": "apps_extension_chromium_src_beap_messages_components_inboxmessagepreview_inboxmessagepreview", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxView.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxview", + "target": "apps_extension_chromium_src_beap_messages_components_outboxmessagepreview", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxView.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxview", + "target": "apps_extension_chromium_src_beap_messages_components_outboxmessagepreview_outboxmessagepreview", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxView.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxview", + "target": "apps_extension_chromium_src_beap_messages_components_rejectedmessagepreview", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxView.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxview", + "target": "apps_extension_chromium_src_beap_messages_components_rejectedmessagepreview_rejectedmessagepreview", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxView.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxview", + "target": "apps_extension_chromium_src_beap_messages_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxView.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxview", + "target": "apps_extension_chromium_src_beap_messages_types_beapfolder", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxView.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxview", + "target": "apps_extension_chromium_src_beap_messages_types_folder_configs", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxView.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxview", + "target": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInboxView.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxview", + "target": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_usebeapmessagesstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/BeapInboxView.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinboxview_beapinboxview", + "target": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_usebeapmessagesstore" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer", + "target": "apps_electron_vite_project_src_components_beapinlinecomposer_acktostate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L158", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer", + "target": "apps_electron_vite_project_src_components_beapinlinecomposer_beapinlinecomposer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer", + "target": "apps_electron_vite_project_src_components_beapinlinecomposer_beapinlinecomposerprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer", + "target": "apps_electron_vite_project_src_components_beapinlinecomposer_draftsurface", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L152", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer", + "target": "apps_electron_vite_project_src_components_beapinlinecomposer_ispdfattachment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer", + "target": "apps_electron_vite_project_src_components_beapinlinecomposer_localattachment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L150", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer", + "target": "apps_electron_vite_project_src_components_beapinlinecomposer_orchestratorsession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer", + "target": "apps_electron_vite_project_src_components_composerattachmentbutton", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer", + "target": "apps_electron_vite_project_src_components_composerattachmentbutton_composerattachmentbutton", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer", + "target": "apps_electron_vite_project_src_components_draftrefinelabel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer", + "target": "apps_electron_vite_project_src_components_draftrefinelabel_draftrefinelabel", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer", + "target": "apps_electron_vite_project_src_components_handshakeviewtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer", + "target": "apps_electron_vite_project_src_components_handshakeviewtypes_beapdeliveryackdata", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer", + "target": "apps_electron_vite_project_src_components_shared_emailaccountselector", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer", + "target": "apps_electron_vite_project_src_components_shared_emailaccountselector_emailaccountselector", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer", + "target": "apps_electron_vite_project_src_lib_beappackageattachmentpreview", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer", + "target": "apps_electron_vite_project_src_lib_beappackageattachmentpreview_extracttextforpackagepreview", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer", + "target": "apps_electron_vite_project_src_lib_handshakerecipientmap", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer", + "target": "apps_electron_vite_project_src_lib_handshakerecipientmap_handshakerecordtoselectedrecipient", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer", + "target": "apps_electron_vite_project_src_lib_inboxsessionartefact", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer", + "target": "apps_electron_vite_project_src_lib_inboxsessionartefact_capabilitiesforsessionattach", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer", + "target": "apps_electron_vite_project_src_shims_handshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer", + "target": "apps_electron_vite_project_src_shims_handshakerpc_listhandshakes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer", + "target": "apps_electron_vite_project_src_stores_usedraftrefinestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer", + "target": "apps_electron_vite_project_src_stores_usedraftrefinestore_usedraftrefinestore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer", + "target": "apps_extension_chromium_src_beap_builder_buildsessionimportartefact", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer", + "target": "apps_extension_chromium_src_beap_builder_buildsessionimportartefact_buildartefactinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer", + "target": "apps_extension_chromium_src_beap_builder_buildsessionimportartefact_buildsessionimportartefact", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer", + "target": "apps_extension_chromium_src_beap_builder_canonical_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_capsuleattachment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer", + "target": "apps_extension_chromium_src_beap_builder_components_attachmentstatusbadge", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer", + "target": "apps_extension_chromium_src_beap_builder_components_attachmentstatusbadge_attachmentparsestatus", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer", + "target": "apps_extension_chromium_src_beap_builder_components_attachmentstatusbadge_attachmentstatusbadge", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer", + "target": "apps_extension_chromium_src_beap_builder_components_beapdocumentreadermodal", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer", + "target": "apps_extension_chromium_src_beap_builder_components_beapdocumentreadermodal_beapdocumentreadermodal", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer", + "target": "apps_extension_chromium_src_beap_messages_components_deliverymethodpanel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer", + "target": "apps_extension_chromium_src_beap_messages_components_deliverymethodpanel_deliverymethod", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer", + "target": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect_recipienthandshakeselect", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer", + "target": "apps_extension_chromium_src_beap_messages_components_recipientmodeswitch", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer", + "target": "apps_extension_chromium_src_beap_messages_components_recipientmodeswitch_recipientmode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer", + "target": "apps_extension_chromium_src_beap_messages_components_recipientmodeswitch_recipientmodeswitch", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer", + "target": "apps_extension_chromium_src_beap_messages_index", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_getsigningkeypair", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beappackageconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_executedeliveryaction", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer", + "target": "apps_extension_chromium_src_handshake_rpctypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer", + "target": "apps_extension_chromium_src_handshake_rpctypes_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer", + "target": "apps_extension_chromium_src_handshake_rpctypes_hashandshakekeymaterial", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer", + "target": "apps_extension_chromium_src_handshake_rpctypes_selectedhandshakerecipient", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer", + "target": "apps_extension_chromium_src_shared_email_connectemailflow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer", + "target": "apps_extension_chromium_src_shared_email_connectemailtypes_connectemaillaunchsource", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/DashboardBeapComposer.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_dashboardbeapcomposer", + "target": "apps_electron_vite_project_src_components_beapinlinecomposer", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_beapinlinecomposer", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_beapinlinecomposer", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L278", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer_beapinlinecomposer", + "target": "apps_electron_vite_project_src_components_beapinlinecomposer_acktostate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L491", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer_beapinlinecomposer", + "target": "apps_electron_vite_project_src_components_beapinlinecomposer_ispdfattachment", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L523", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer_beapinlinecomposer", + "target": "apps_electron_vite_project_src_lib_beappackageattachmentpreview_extracttextforpackagepreview" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L260", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer_beapinlinecomposer", + "target": "apps_electron_vite_project_src_lib_handshakerecipientmap_handshakerecordtoselectedrecipient" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L745", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer_beapinlinecomposer", + "target": "apps_electron_vite_project_src_lib_inboxsessionartefact_capabilitiesforsessionattach" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L335", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer_beapinlinecomposer", + "target": "apps_electron_vite_project_src_shims_handshakerpc_listhandshakes" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L243", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer_beapinlinecomposer", + "target": "apps_electron_vite_project_src_stores_usedraftrefinestore_usedraftrefinestore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L748", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer_beapinlinecomposer", + "target": "apps_extension_chromium_src_beap_builder_buildsessionimportartefact_buildsessionimportartefact" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L303", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer_beapinlinecomposer", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_getsigningkeypair" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L801", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer_beapinlinecomposer", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_executedeliveryaction" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/BeapInlineComposer.tsx", + "source_location": "L645", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapinlinecomposer_beapinlinecomposer", + "target": "apps_extension_chromium_src_handshake_rpctypes_hashandshakekeymaterial" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/DashboardBeapComposer.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_dashboardbeapcomposer", + "target": "apps_electron_vite_project_src_components_beapinlinecomposer_beapinlinecomposer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_beapinlinecomposer_beapinlinecomposer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_beapinlinecomposer_beapinlinecomposer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapMessageImportZone.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapmessageimportzone", + "target": "apps_electron_vite_project_src_components_beapmessageimportzone_beapmessageimportzone", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapMessageImportZone.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapmessageimportzone", + "target": "apps_electron_vite_project_src_components_beapmessageimportzone_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapMessageImportZone.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapmessageimportzone", + "target": "apps_electron_vite_project_src_components_beapmessageimportzone_window", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_beapmessageimportzone", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_beapmessageimportzone_beapmessageimportzone", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapMessageSafeLinkParts.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapmessagesafelinkparts", + "target": "apps_electron_vite_project_src_components_beapmessagesafelinkparts_beapmessagesafelinkparts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapMessageSafeLinkParts.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapmessagesafelinkparts", + "target": "apps_electron_vite_project_src_components_beapmessagesafelinkparts_beapmessagesafelinkpartsprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapMessageSafeLinkParts.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapmessagesafelinkparts", + "target": "apps_electron_vite_project_src_utils_safelinks", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapMessageSafeLinkParts.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapmessagesafelinkparts", + "target": "apps_electron_vite_project_src_utils_safelinks_linkpart", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_beapmessagesafelinkparts", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_components_beapmessagesafelinkparts", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapMessageSafeLinkParts.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapmessagesafelinkparts_beapmessagesafelinkpartsprops", + "target": "apps_electron_vite_project_src_utils_safelinks_linkpart", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_beapmessagesafelinkparts_beapmessagesafelinkparts", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_components_beapmessagesafelinkparts_beapmessagesafelinkparts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapMessageUploadZone.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapmessageuploadzone", + "target": "apps_electron_vite_project_src_components_beapmessageuploadzone_beapmessagepreview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapMessageUploadZone.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapmessageuploadzone", + "target": "apps_electron_vite_project_src_components_beapmessageuploadzone_beapmessageuploadzone", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapMessageUploadZone.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapmessageuploadzone", + "target": "apps_electron_vite_project_src_components_beapmessageuploadzone_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapRedirectDialog.tsx", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapredirectdialog", + "target": "apps_electron_vite_project_src_components_beapredirectdialog_beapredirectdialog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapRedirectDialog.tsx", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapredirectdialog", + "target": "apps_electron_vite_project_src_components_beapredirectdialog_beapredirectdialogprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapRedirectDialog.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapredirectdialog", + "target": "apps_electron_vite_project_src_components_beapredirectdialog_beapredirectsourcepayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapRedirectDialog.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapredirectdialog", + "target": "apps_electron_vite_project_src_components_beapredirectdialog_buildprovenanceblock", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapRedirectDialog.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapredirectdialog", + "target": "apps_electron_vite_project_src_components_handshakeviewtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapRedirectDialog.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapredirectdialog", + "target": "apps_electron_vite_project_src_lib_handshakerecipientmap", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapRedirectDialog.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapredirectdialog", + "target": "apps_electron_vite_project_src_lib_handshakerecipientmap_handshakerecordtoselectedrecipient", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapRedirectDialog.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapredirectdialog", + "target": "apps_electron_vite_project_src_shims_handshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapRedirectDialog.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapredirectdialog", + "target": "apps_electron_vite_project_src_shims_handshakerpc_listhandshakes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapRedirectDialog.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapredirectdialog", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapRedirectDialog.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapredirectdialog", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapRedirectDialog.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapredirectdialog", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapRedirectDialog.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapredirectdialog", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_getsigningkeypair", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapRedirectDialog.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapredirectdialog", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapRedirectDialog.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapredirectdialog", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beappackageconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapRedirectDialog.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapredirectdialog", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_executedeliveryaction", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapRedirectDialog.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapredirectdialog", + "target": "apps_extension_chromium_src_handshake_rpctypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapRedirectDialog.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapredirectdialog", + "target": "apps_extension_chromium_src_handshake_rpctypes_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapRedirectDialog.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapredirectdialog", + "target": "apps_extension_chromium_src_handshake_rpctypes_hashandshakekeymaterial", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_beapredirectdialog", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_beapredirectdialog", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_components_beapredirectdialog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapRedirectDialog.tsx", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapredirectdialog_beapredirectdialog", + "target": "apps_electron_vite_project_src_components_beapredirectdialog_buildprovenanceblock", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapRedirectDialog.tsx", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapredirectdialog_beapredirectdialogprops", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxmessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/BeapRedirectDialog.tsx", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapredirectdialog_beapredirectdialog", + "target": "apps_electron_vite_project_src_lib_handshakerecipientmap_handshakerecordtoselectedrecipient" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/BeapRedirectDialog.tsx", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapredirectdialog_beapredirectdialog", + "target": "apps_electron_vite_project_src_shims_handshakerpc_listhandshakes" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/BeapRedirectDialog.tsx", + "source_location": "L155", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapredirectdialog_beapredirectdialog", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_getsigningkeypair" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/BeapRedirectDialog.tsx", + "source_location": "L184", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapredirectdialog_beapredirectdialog", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_executedeliveryaction" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/BeapRedirectDialog.tsx", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapredirectdialog_beapredirectdialog", + "target": "apps_extension_chromium_src_handshake_rpctypes_hashandshakekeymaterial" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_beapredirectdialog_beapredirectdialog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_beapredirectdialog_beapredirectdialog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_components_beapredirectdialog_beapredirectdialog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapSandboxCloneDialog.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapsandboxclonedialog", + "target": "apps_electron_vite_project_src_components_beapsandboxclonedialog_beapsandboxclonedialog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapSandboxCloneDialog.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapsandboxclonedialog", + "target": "apps_electron_vite_project_src_components_beapsandboxclonedialog_beapsandboxclonedialogprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapSandboxCloneDialog.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapsandboxclonedialog", + "target": "apps_electron_vite_project_src_components_beapsandboxclonedialog_formatsandboxselectlabel", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapSandboxCloneDialog.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapsandboxclonedialog", + "target": "apps_electron_vite_project_src_components_handshakeviewtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapSandboxCloneDialog.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapsandboxclonedialog", + "target": "apps_electron_vite_project_src_components_sandboxclonefeedbackbadge", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapSandboxCloneDialog.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapsandboxclonedialog", + "target": "apps_electron_vite_project_src_components_sandboxclonefeedbackbadge_sandboxclonefeedbackbadge", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapSandboxCloneDialog.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapsandboxclonedialog", + "target": "apps_electron_vite_project_src_hooks_useinternalsandboxeslist", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapSandboxCloneDialog.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapsandboxclonedialog", + "target": "apps_electron_vite_project_src_hooks_useinternalsandboxeslist_internalsandboxtargetwire", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapSandboxCloneDialog.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapsandboxclonedialog", + "target": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapSandboxCloneDialog.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapsandboxclonedialog", + "target": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_beapinboxclonetosandboxapi", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapSandboxCloneDialog.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapsandboxclonedialog", + "target": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_sandboxclonefeedbackfromoutcome", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapSandboxCloneDialog.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapsandboxclonedialog", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapSandboxCloneDialog.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapsandboxclonedialog", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_sandboxclonefeedbackview", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapSandboxCloneDialog.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapsandboxclonedialog", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapSandboxCloneDialog.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapsandboxclonedialog", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_beapsandboxclonedialog", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_beapsandboxclonedialog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapSandboxCloneDialog.tsx", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapsandboxclonedialog_beapsandboxclonedialog", + "target": "apps_electron_vite_project_src_components_beapsandboxclonedialog_formatsandboxselectlabel", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapSandboxCloneDialog.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapsandboxclonedialog_beapsandboxclonedialogprops", + "target": "apps_electron_vite_project_src_hooks_useinternalsandboxeslist_internalsandboxtargetwire", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapSandboxCloneDialog.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapsandboxclonedialog_beapsandboxclonedialogprops", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxmessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/BeapSandboxCloneDialog.tsx", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapsandboxclonedialog_beapsandboxclonedialog", + "target": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_beapinboxclonetosandboxapi" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/BeapSandboxCloneDialog.tsx", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapsandboxclonedialog_beapsandboxclonedialog", + "target": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_sandboxclonefeedbackfromoutcome" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_beapsandboxclonedialog_beapsandboxclonedialog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_beapsandboxclonedialog_beapsandboxclonedialog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapSandboxUnavailableDialog.tsx", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapsandboxunavailabledialog", + "target": "apps_electron_vite_project_src_components_beapsandboxunavailabledialog_beapsandboxunavailabledialog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapSandboxUnavailableDialog.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapsandboxunavailabledialog", + "target": "apps_electron_vite_project_src_components_beapsandboxunavailabledialog_beapsandboxunavailabledialogprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapSandboxUnavailableDialog.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapsandboxunavailabledialog", + "target": "apps_electron_vite_project_src_components_beapsandboxunavailabledialog_beapsandboxunavailablevariant", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapSandboxUnavailableDialog.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapsandboxunavailabledialog", + "target": "apps_electron_vite_project_src_components_beapsandboxunavailabledialog_dialog", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapSandboxUnavailableDialog.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapsandboxunavailabledialog", + "target": "apps_electron_vite_project_src_components_handshakeviewtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapSandboxUnavailableDialog.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapsandboxunavailabledialog", + "target": "apps_electron_vite_project_src_styles_uicontrasttokens", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapSandboxUnavailableDialog.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapsandboxunavailabledialog", + "target": "apps_electron_vite_project_src_styles_uicontrasttokens_ui_button", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapSandboxUnavailableDialog.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapsandboxunavailabledialog", + "target": "apps_electron_vite_project_src_types_sandboxorchestratoravailability", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapSandboxUnavailableDialog.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapsandboxunavailabledialog", + "target": "apps_electron_vite_project_src_types_sandboxorchestratoravailability_sandboxorchestratoravailabilitystatus", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_beapsandboxunavailabledialog", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_beapsandboxunavailabledialog", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxHostSandboxClickPolicy.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy", + "target": "apps_electron_vite_project_src_components_beapsandboxunavailabledialog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_beapsandboxunavailabledialog_beapsandboxunavailablevariant", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_beapsandboxunavailabledialog_beapsandboxunavailablevariant", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxHostSandboxClickPolicy.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy", + "target": "apps_electron_vite_project_src_components_beapsandboxunavailabledialog_beapsandboxunavailablevariant", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_beapsandboxunavailabledialog_beapsandboxunavailabledialog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_beapsandboxunavailabledialog_beapsandboxunavailabledialog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapSessionAutomationPanel.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapsessionautomationpanel", + "target": "apps_electron_vite_project_src_components_beapsessionautomationpanel_beapsessionautomationpanel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapSessionAutomationPanel.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapsessionautomationpanel", + "target": "apps_electron_vite_project_src_components_beapsessionautomationpanel_beapsessionautomationpanelprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapSessionAutomationPanel.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapsessionautomationpanel", + "target": "apps_electron_vite_project_src_lib_inboxsessionartefact", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapSessionAutomationPanel.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapsessionautomationpanel", + "target": "apps_electron_vite_project_src_lib_inboxsessionartefact_canshowinboxrunautomation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapSessionAutomationPanel.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapsessionautomationpanel", + "target": "apps_electron_vite_project_src_lib_inboxsessionartefact_inboxvalidationstate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapSessionAutomationPanel.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapsessionautomationpanel", + "target": "apps_electron_vite_project_src_lib_inboxsessionartefact_resolveinboxsessionartefact", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapSessionAutomationPanel.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapsessionautomationpanel", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BeapSessionAutomationPanel.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapsessionautomationpanel", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_components_beapsessionautomationpanel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/BeapSessionAutomationPanel.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapsessionautomationpanel_beapsessionautomationpanel", + "target": "apps_electron_vite_project_src_lib_inboxsessionartefact_canshowinboxrunautomation" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/BeapSessionAutomationPanel.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapsessionautomationpanel_beapsessionautomationpanel", + "target": "apps_electron_vite_project_src_lib_inboxsessionartefact_inboxvalidationstate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/BeapSessionAutomationPanel.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_beapsessionautomationpanel_beapsessionautomationpanel", + "target": "apps_electron_vite_project_src_lib_inboxsessionartefact_resolveinboxsessionartefact" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_components_beapsessionautomationpanel_beapsessionautomationpanel", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BulkInboxAttachmentsStrip.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_bulkinboxattachmentsstrip", + "target": "apps_electron_vite_project_src_components_bulkinboxattachmenthydration", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BulkInboxAttachmentsStrip.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_bulkinboxattachmentsstrip", + "target": "apps_electron_vite_project_src_components_bulkinboxattachmenthydration_hydrationaftergetmessageipcerror", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BulkInboxAttachmentsStrip.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_bulkinboxattachmentsstrip", + "target": "apps_electron_vite_project_src_components_bulkinboxattachmenthydration_hydrationaftergetmessagereject", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BulkInboxAttachmentsStrip.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_bulkinboxattachmentsstrip", + "target": "apps_electron_vite_project_src_components_bulkinboxattachmenthydration_hydrationaftergetmessagesuccess", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BulkInboxAttachmentsStrip.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_bulkinboxattachmentsstrip", + "target": "apps_electron_vite_project_src_components_bulkinboxattachmentsstrip_attachmenthydrationstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BulkInboxAttachmentsStrip.tsx", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_bulkinboxattachmentsstrip", + "target": "apps_electron_vite_project_src_components_bulkinboxattachmentsstrip_bulkinboxattachmentsstrip", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BulkInboxAttachmentsStrip.tsx", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_bulkinboxattachmentsstrip", + "target": "apps_electron_vite_project_src_components_bulkinboxattachmentsstrip_bulkinboxattachmentsstripprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BulkInboxAttachmentsStrip.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_bulkinboxattachmentsstrip", + "target": "apps_electron_vite_project_src_components_bulkinboxattachmentsstrip_formatkb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BulkInboxAttachmentsStrip.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_bulkinboxattachmentsstrip", + "target": "apps_electron_vite_project_src_components_bulkinboxattachmentsstrip_ispdfattachment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BulkInboxAttachmentsStrip.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_bulkinboxattachmentsstrip", + "target": "apps_electron_vite_project_src_components_handshakeviewtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BulkInboxAttachmentsStrip.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_bulkinboxattachmentsstrip", + "target": "apps_electron_vite_project_src_components_inboxdocumentreadermodal", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BulkInboxAttachmentsStrip.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_bulkinboxattachmentsstrip", + "target": "apps_electron_vite_project_src_components_inboxdocumentreadermodal_inboxdocumentreadermodal", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BulkInboxAttachmentsStrip.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_bulkinboxattachmentsstrip", + "target": "apps_electron_vite_project_src_components_protectedaccesswarningdialog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BulkInboxAttachmentsStrip.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_bulkinboxattachmentsstrip", + "target": "apps_electron_vite_project_src_components_protectedaccesswarningdialog_protectedaccesswarningdialog", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BulkInboxAttachmentsStrip.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_bulkinboxattachmentsstrip", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BulkInboxAttachmentsStrip.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_bulkinboxattachmentsstrip", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxattachment", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BulkInboxAttachmentsStrip.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_bulkinboxattachmentsstrip", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BulkInboxAttachmentsStrip.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_bulkinboxattachmentsstrip", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_useemailinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_bulkinboxattachmentsstrip", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BulkInboxAttachmentsStrip.tsx", + "source_location": "L224", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_bulkinboxattachmentsstrip_bulkinboxattachmentsstrip", + "target": "apps_electron_vite_project_src_components_bulkinboxattachmentsstrip_ispdfattachment", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BulkInboxAttachmentsStrip.tsx", + "source_location": "L233", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_bulkinboxattachmentsstrip_bulkinboxattachmentsstrip", + "target": "apps_electron_vite_project_src_components_bulkinboxattachmentsstrip_formatkb", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BulkInboxAttachmentsStrip.tsx", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_bulkinboxattachmentsstrip_bulkinboxattachmentsstripprops", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxmessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/BulkInboxAttachmentsStrip.tsx", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_bulkinboxattachmentsstrip_bulkinboxattachmentsstrip", + "target": "apps_electron_vite_project_src_components_bulkinboxattachmenthydration_hydrationaftergetmessageipcerror" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/BulkInboxAttachmentsStrip.tsx", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_bulkinboxattachmentsstrip_bulkinboxattachmentsstrip", + "target": "apps_electron_vite_project_src_components_bulkinboxattachmenthydration_hydrationaftergetmessagereject" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/BulkInboxAttachmentsStrip.tsx", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_bulkinboxattachmentsstrip_bulkinboxattachmentsstrip", + "target": "apps_electron_vite_project_src_components_bulkinboxattachmenthydration_hydrationaftergetmessagesuccess" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/BulkInboxAttachmentsStrip.tsx", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_bulkinboxattachmentsstrip_bulkinboxattachmentsstrip", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_useemailinboxstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_bulkinboxattachmentsstrip_bulkinboxattachmentsstrip", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BulkOllamaModelSelect.tsx", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_bulkollamamodelselect", + "target": "apps_electron_vite_project_src_components_bulkollamamodelselect_bulkollamamodelselect", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BulkOllamaModelSelect.tsx", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_bulkollamamodelselect", + "target": "apps_electron_vite_project_src_components_bulkollamamodelselect_bulkollamamodelselectvariant", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BulkOllamaModelSelect.tsx", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_bulkollamamodelselect", + "target": "apps_electron_vite_project_src_components_bulkollamamodelselect_chip_empty", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BulkOllamaModelSelect.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_bulkollamamodelselect", + "target": "apps_electron_vite_project_src_components_bulkollamamodelselect_gpu_color", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BulkOllamaModelSelect.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_bulkollamamodelselect", + "target": "apps_electron_vite_project_src_components_bulkollamamodelselect_gpu_label", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/BulkOllamaModelSelect.tsx", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_bulkollamamodelselect", + "target": "apps_electron_vite_project_src_components_bulkollamamodelselect_runtimechipstate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_bulkollamamodelselect", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_bulkollamamodelselect_bulkollamamodelselect", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/CapsuleUploadZone.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_capsuleuploadzone", + "target": "apps_electron_vite_project_src_components_capsuleuploadzone_capsulepreview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/CapsuleUploadZone.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_capsuleuploadzone", + "target": "apps_electron_vite_project_src_components_capsuleuploadzone_mappipelineerror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/CapsuleUploadZone.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_capsuleuploadzone", + "target": "apps_electron_vite_project_src_components_capsuleuploadzone_props", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeView.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeview", + "target": "apps_electron_vite_project_src_components_capsuleuploadzone", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PendingSlideOut.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_pendingslideout", + "target": "apps_electron_vite_project_src_components_capsuleuploadzone", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/CollapsibleSection.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_collapsiblesection", + "target": "apps_electron_vite_project_src_components_collapsiblesection_collapsiblesection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/CollapsibleSection.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_collapsiblesection", + "target": "apps_electron_vite_project_src_components_collapsiblesection_collapsiblesectionprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/ComposeButtons.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_composebuttons", + "target": "apps_electron_vite_project_src_components_composebuttons_composebuttons", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/ComposeButtons.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_composebuttons", + "target": "apps_electron_vite_project_src_components_composebuttons_composebuttonsprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/ComposeFieldsForm.tsx", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_composefieldsform", + "target": "apps_electron_vite_project_src_components_composefieldsform_composefieldsform", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/ComposeFieldsForm.tsx", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_composefieldsform", + "target": "apps_electron_vite_project_src_components_composefieldsform_composefieldsformprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/ComposeFieldsForm.tsx", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_composefieldsform", + "target": "apps_electron_vite_project_src_components_composefieldsform_fieldgroup", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/ComposeFieldsForm.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_composefieldsform", + "target": "apps_electron_vite_project_src_components_composefieldsform_group_order", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/ComposeFieldsForm.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_composefieldsform", + "target": "apps_electron_vite_project_src_components_composefieldsform_group_titles", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/ComposeFieldsForm.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_composefieldsform", + "target": "apps_electron_vite_project_src_components_composefieldsform_language_defaults", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/ComposeFieldsForm.tsx", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_composefieldsform", + "target": "apps_electron_vite_project_src_components_composefieldsform_language_names", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/ComposeFieldsForm.tsx", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_composefieldsform", + "target": "apps_electron_vite_project_src_components_composefieldsform_loadsenderprofile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/ComposeFieldsForm.tsx", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_composefieldsform", + "target": "apps_electron_vite_project_src_components_composefieldsform_normalizedetectedlang", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/ComposeFieldsForm.tsx", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_composefieldsform", + "target": "apps_electron_vite_project_src_components_composefieldsform_savesenderprofile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/ComposeFieldsForm.tsx", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_composefieldsform", + "target": "apps_electron_vite_project_src_components_composefieldsform_supported_lang_codes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/ComposeFieldsForm.tsx", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_composefieldsform", + "target": "apps_electron_vite_project_src_components_composefieldsform_templatelogodisplayurl", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/ComposeFieldsForm.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_composefieldsform", + "target": "apps_electron_vite_project_src_lib_wrdeskuievents", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/ComposeFieldsForm.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_composefieldsform", + "target": "apps_electron_vite_project_src_lib_wrdeskuievents_wrdesk_focus_ai_chat_event", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/ComposeFieldsForm.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_composefieldsform", + "target": "apps_electron_vite_project_src_stores_usedraftrefinestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/ComposeFieldsForm.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_composefieldsform", + "target": "apps_electron_vite_project_src_stores_usedraftrefinestore_usedraftrefinestore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/ComposeFieldsForm.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_composefieldsform", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/ComposeFieldsForm.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_composefieldsform", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_composesession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/ComposeFieldsForm.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_composefieldsform", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_lettertemplate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/ComposeFieldsForm.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_composefieldsform", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_scannedletter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/ComposeFieldsForm.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_composefieldsform", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_templatefield", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/ComposeFieldsForm.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_composefieldsform", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_uselettercomposerstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/ComposeFieldsForm.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_composefieldsform", + "target": "apps_extension_chromium_src_stores_chatfocusstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/ComposeFieldsForm.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_composefieldsform", + "target": "apps_extension_chromium_src_stores_chatfocusstore_wrchat_append_assistant_event", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterTemplatePort.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_lettertemplateport", + "target": "apps_electron_vite_project_src_components_composefieldsform", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/ComposeFieldsForm.tsx", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_composefieldsform_normalizedetectedlang", + "target": "apps_electron_vite_project_src_components_composefieldsform_supported_lang_codes" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/ComposeFieldsForm.tsx", + "source_location": "L309", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_composefieldsform_composefieldsform", + "target": "apps_electron_vite_project_src_components_composefieldsform_normalizedetectedlang", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/ComposeFieldsForm.tsx", + "source_location": "L564", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_composefieldsform_composefieldsform", + "target": "apps_electron_vite_project_src_components_composefieldsform_templatelogodisplayurl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/ComposeFieldsForm.tsx", + "source_location": "L352", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_composefieldsform_composefieldsform", + "target": "apps_electron_vite_project_src_components_composefieldsform_savesenderprofile", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/ComposeFieldsForm.tsx", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_composefieldsform_composefieldsformprops", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_composesession", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/ComposeFieldsForm.tsx", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_composefieldsform_composefieldsformprops", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_lettertemplate", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/ComposeFieldsForm.tsx", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_composefieldsform_composefieldsformprops", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_scannedletter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/ComposeFieldsForm.tsx", + "source_location": "L142", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_composefieldsform_composefieldsform", + "target": "apps_electron_vite_project_src_stores_usedraftrefinestore_usedraftrefinestore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/ComposeFieldsForm.tsx", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_composefieldsform_composefieldsform", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_uselettercomposerstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterTemplatePort.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_lettertemplateport", + "target": "apps_electron_vite_project_src_components_composefieldsform_composefieldsform", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_electron_vite_project_src_components_composerattachmentbutton", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/ComposerAttachmentButton.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_composerattachmentbutton", + "target": "apps_electron_vite_project_src_components_composerattachmentbutton_base", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/ComposerAttachmentButton.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_composerattachmentbutton", + "target": "apps_electron_vite_project_src_components_composerattachmentbutton_composerattachmentbutton", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/ComposerAttachmentButton.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_composerattachmentbutton", + "target": "apps_electron_vite_project_src_components_composerattachmentbutton_composerattachmentbuttonprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/DashboardEmailComposer.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_dashboardemailcomposer", + "target": "apps_electron_vite_project_src_components_composerattachmentbutton", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInlineComposer.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinlinecomposer", + "target": "apps_electron_vite_project_src_components_composerattachmentbutton", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_electron_vite_project_src_components_composerattachmentbutton_composerattachmentbutton", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/DashboardEmailComposer.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_dashboardemailcomposer", + "target": "apps_electron_vite_project_src_components_composerattachmentbutton_composerattachmentbutton", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInlineComposer.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinlinecomposer", + "target": "apps_electron_vite_project_src_components_composerattachmentbutton_composerattachmentbutton", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/ContextItemEditor.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_contextitemeditor", + "target": "apps_electron_vite_project_src_components_contextescaping", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/ContextItemEditor.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_contextitemeditor", + "target": "apps_electron_vite_project_src_components_contextescaping_verifiedcontextblock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/ContextItemEditor.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_contextitemeditor", + "target": "apps_electron_vite_project_src_components_contextitemeditor_content_types", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/ContextItemEditor.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_contextitemeditor", + "target": "apps_electron_vite_project_src_components_contextitemeditor_contextitemeditor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/ContextItemEditor.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_contextitemeditor", + "target": "apps_electron_vite_project_src_components_contextitemeditor_contextitemgovernanceedit", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/ContextItemEditor.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_contextitemeditor", + "target": "apps_electron_vite_project_src_components_contextitemeditor_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/ContextItemEditor.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_contextitemeditor", + "target": "apps_electron_vite_project_src_components_contextitemeditor_sensitivities", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeContextSection.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakecontextsection", + "target": "apps_electron_vite_project_src_components_contextitemeditor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeContextSection.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakecontextsection", + "target": "apps_electron_vite_project_src_components_contextitemeditor_contextitemgovernanceedit", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/ContextItemEditor.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_contextitemeditor_props", + "target": "apps_electron_vite_project_src_components_contextescaping_verifiedcontextblock", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeContextSection.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakecontextsection", + "target": "apps_electron_vite_project_src_components_contextitemeditor_contextitemeditor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/DashboardBeapComposer.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_dashboardbeapcomposer", + "target": "apps_electron_vite_project_src_components_dashboardbeapcomposer_dashboardbeapcomposer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/DashboardBeapComposer.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_dashboardbeapcomposer", + "target": "apps_electron_vite_project_src_components_dashboardbeapcomposer_dashboardbeapcomposerprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/DashboardEmailComposer.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_dashboardemailcomposer", + "target": "apps_electron_vite_project_src_components_dashboardemailcomposer_dashboardemailcomposer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/DashboardEmailComposer.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_dashboardemailcomposer", + "target": "apps_electron_vite_project_src_components_dashboardemailcomposer_dashboardemailcomposerprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/DashboardEmailComposer.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_dashboardemailcomposer", + "target": "apps_electron_vite_project_src_components_draftrefinelabel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/DashboardEmailComposer.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_dashboardemailcomposer", + "target": "apps_electron_vite_project_src_components_draftrefinelabel_draftrefinelabel", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/DashboardEmailComposer.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_dashboardemailcomposer", + "target": "apps_electron_vite_project_src_components_emailcomposeoverlay", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/DashboardEmailComposer.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_dashboardemailcomposer", + "target": "apps_electron_vite_project_src_components_emailcomposeoverlay_draftattachment", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/DashboardEmailComposer.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_dashboardemailcomposer", + "target": "apps_electron_vite_project_src_components_emailcomposeoverlay_email_signature", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/DashboardEmailComposer.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_dashboardemailcomposer", + "target": "apps_electron_vite_project_src_components_shared_emailaccountselector", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/DashboardEmailComposer.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_dashboardemailcomposer", + "target": "apps_electron_vite_project_src_components_shared_emailaccountselector_emailaccountselector", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/DashboardEmailComposer.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_dashboardemailcomposer", + "target": "apps_electron_vite_project_src_stores_usedraftrefinestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/DashboardEmailComposer.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_dashboardemailcomposer", + "target": "apps_electron_vite_project_src_stores_usedraftrefinestore_usedraftrefinestore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/DashboardEmailComposer.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_dashboardemailcomposer", + "target": "apps_extension_chromium_src_shared_email_connectemailflow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/DashboardEmailComposer.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_dashboardemailcomposer", + "target": "apps_extension_chromium_src_shared_email_connectemailtypes_connectemaillaunchsource", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/DashboardEmailComposer.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_dashboardemailcomposer_dashboardemailcomposer", + "target": "apps_electron_vite_project_src_stores_usedraftrefinestore_usedraftrefinestore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/DashboardHome.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_dashboardhome", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_analysisphase", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/DashboardHome.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_dashboardhome", + "target": "apps_electron_vite_project_src_components_analysis_computepriorityaction", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/DashboardHome.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_dashboardhome", + "target": "apps_electron_vite_project_src_components_analysis_computepriorityaction_getmockdashboardstate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/DashboardHome.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_dashboardhome", + "target": "apps_electron_vite_project_src_components_analysis_computepriorityaction_liveexecutionsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/DashboardHome.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_dashboardhome", + "target": "apps_electron_vite_project_src_components_analysis_computepriorityaction_postexecutionsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/DashboardHome.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_dashboardhome", + "target": "apps_electron_vite_project_src_components_analysis_computepriorityaction_preexecutionsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/DashboardHome.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_dashboardhome", + "target": "apps_electron_vite_project_src_components_analysis_herokpi_herokpistrip", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/DashboardHome.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_dashboardhome", + "target": "apps_electron_vite_project_src_components_analysis_herokpi_kpidata", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/DashboardHome.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_dashboardhome", + "target": "apps_electron_vite_project_src_components_analysis_index", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/DashboardHome.tsx", + "source_location": "L548", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_dashboardhome", + "target": "apps_electron_vite_project_src_components_dashboardhome_dashboardhome", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/DashboardHome.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_dashboardhome", + "target": "apps_electron_vite_project_src_components_dashboardhome_dashboardhomeprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/DashboardHome.tsx", + "source_location": "L239", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_dashboardhome", + "target": "apps_electron_vite_project_src_components_dashboardhome_eventanalysismodal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/DashboardHome.tsx", + "source_location": "L232", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_dashboardhome", + "target": "apps_electron_vite_project_src_components_dashboardhome_eventanalysismodalprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/DashboardHome.tsx", + "source_location": "L479", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_dashboardhome", + "target": "apps_electron_vite_project_src_components_dashboardhome_liveexecutionsnapshotcard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/DashboardHome.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_dashboardhome", + "target": "apps_electron_vite_project_src_components_dashboardhome_mocksystemevents", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/DashboardHome.tsx", + "source_location": "L512", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_dashboardhome", + "target": "apps_electron_vite_project_src_components_dashboardhome_postexecutionsnapshotcard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/DashboardHome.tsx", + "source_location": "L446", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_dashboardhome", + "target": "apps_electron_vite_project_src_components_dashboardhome_preexecutionsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/DashboardHome.tsx", + "source_location": "L429", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_dashboardhome", + "target": "apps_electron_vite_project_src_components_dashboardhome_snapshotcard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/DashboardHome.tsx", + "source_location": "L421", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_dashboardhome", + "target": "apps_electron_vite_project_src_components_dashboardhome_snapshotcardprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/DashboardHome.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_dashboardhome", + "target": "apps_electron_vite_project_src_components_dashboardhome_systemevent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/DashboardHome.tsx", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_dashboardhome", + "target": "apps_electron_vite_project_src_components_dashboardhome_systemeventhero", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/DashboardHome.tsx", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_dashboardhome", + "target": "apps_electron_vite_project_src_components_dashboardhome_systemeventheroprops", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/DashboardHome.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_dashboardhome_dashboardhomeprops", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_analysisphase", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/DashboardHome.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_dashboardhome_systemevent", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_analysisphase", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/DashboardHome.tsx", + "source_location": "L552", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_dashboardhome_dashboardhome", + "target": "apps_electron_vite_project_src_components_analysis_computepriorityaction_getmockdashboardstate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/DebugLogViewer.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_debuglogviewer", + "target": "apps_electron_vite_project_src_components_debuglogviewer_debuglogviewer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/DebugLogViewer.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_debuglogviewer", + "target": "apps_electron_vite_project_src_components_debuglogviewer_mainprocesslogentry", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/DebugLogViewer.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_debuglogviewer", + "target": "apps_electron_vite_project_src_components_handshakeviewtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/DebugLogViewer.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_debuglogviewer", + "target": "apps_electron_vite_project_src_components_handshakeviewtypes_emailinboxbridge", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/DebugLogViewer.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_debuglogviewer", + "target": "apps_electron_vite_project_src_lib_debuglogclipboard", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/DebugLogViewer.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_debuglogviewer", + "target": "apps_electron_vite_project_src_lib_debuglogclipboard_buildclipboardtext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/DebugLogViewer.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_debuglogviewer", + "target": "apps_electron_vite_project_src_lib_debuglogclipboard_filterlogentries", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/DebugLogViewer.tsx", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_debuglogviewer_debuglogviewer", + "target": "apps_electron_vite_project_src_lib_debuglogclipboard_buildclipboardtext" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/DebugLogViewer.tsx", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_debuglogviewer_debuglogviewer", + "target": "apps_electron_vite_project_src_lib_debuglogclipboard_filterlogentries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/DraftRefineLabel.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_draftrefinelabel", + "target": "apps_electron_vite_project_src_components_draftrefinelabel_draftrefinelabel", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInlineComposer.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinlinecomposer", + "target": "apps_electron_vite_project_src_components_draftrefinelabel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInlineComposer.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinlinecomposer", + "target": "apps_electron_vite_project_src_components_draftrefinelabel_draftrefinelabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailComposeOverlay.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailcomposeoverlay", + "target": "apps_electron_vite_project_src_components_emailcomposeoverlay_draftattachment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailComposeOverlay.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailcomposeoverlay", + "target": "apps_electron_vite_project_src_components_emailcomposeoverlay_email_signature", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailComposeOverlay.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailcomposeoverlay", + "target": "apps_electron_vite_project_src_components_emailcomposeoverlay_emailcomposeoverlay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailComposeOverlay.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailcomposeoverlay", + "target": "apps_electron_vite_project_src_components_emailcomposeoverlay_emailcomposeoverlayprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailComposeOverlay.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailcomposeoverlay", + "target": "apps_electron_vite_project_src_components_emailcomposeoverlay_replytoprefill", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailComposeOverlay.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailcomposeoverlay", + "target": "apps_extension_chromium_src_shared_email_pickdefaultaccountrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailComposeOverlay.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailcomposeoverlay", + "target": "apps_extension_chromium_src_shared_email_pickdefaultaccountrow_pickdefaultemailaccountrowid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_emailcomposeoverlay", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInlineComposer.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinlinecomposer", + "target": "apps_electron_vite_project_src_components_emailcomposeoverlay", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInlineComposer.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinlinecomposer", + "target": "apps_electron_vite_project_src_components_emailcomposeoverlay_email_signature", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_emailcomposeoverlay_draftattachment", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L336", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_inboxdetailaipanelprops", + "target": "apps_electron_vite_project_src_components_emailcomposeoverlay_draftattachment", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInlineComposer.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinlinecomposer", + "target": "apps_electron_vite_project_src_components_emailcomposeoverlay_draftattachment", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInlineComposer.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinlinecomposer_emailinlinecomposerprops", + "target": "apps_electron_vite_project_src_components_emailcomposeoverlay_draftattachment", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailComposeOverlay.tsx", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailcomposeoverlay_emailcomposeoverlay", + "target": "apps_extension_chromium_src_shared_email_pickdefaultaccountrow_pickdefaultemailaccountrowid" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_accounteligibleforinboxfullreset", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L385", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_advisorynormaltobulkcomplete", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L213", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_aggregatelifecycleopcounts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L1607", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_aisortprogressstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L137", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_autosortdiagacc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_autosortreviewbannerstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L236", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_buildremotesyncusersummary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L841", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_bulkactioncardstructured", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L460", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_bulkentrytomanualpersistjson", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L832", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_bulkheadercategorybadge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L638", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_bulkrecommendedactionmetaflags", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L325", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_bulkrowneedslazyanalyze", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L478", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_bulksortrunaggregate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L1581", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_category_bg", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L821", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_category_border", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L811", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_category_order", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L527", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_classifiertosortcategory", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L1605", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_classifybatchruntimemeta", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L230", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_countstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L1637", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L1620", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkviewprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L293", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_emptyretainedcounts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L487", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_formatdate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L251", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_formatdrainetaline", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L788", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_formatpendingdeleteinfo", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L501", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_formatrelativedate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L1566", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_geturgencybadgetext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L320", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_hasfullbulkanalysis", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L354", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_mergenormalpartialintobulk", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L302", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_mergeretainedcounts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L548", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_parsepersistedanalysis", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L192", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_queueaccountstatusrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L193", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_queuebyaccountsummaryrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L203", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_queuemsgrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_queuestatusrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L539", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_recommendedactionforclassifier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L249", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_remotedrainsample", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L165", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_remotesyncstatusdot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L337", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_schedulebulklazyanalyzeidle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L314", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_shortidforsummary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L348", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_shouldshowbulkanalyzebutton", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L518", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_sortcategorytoclassifier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L1591", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_sortmessagesbycategory", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L604", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_undofadewrapper", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L280", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_withautosortretained", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L669", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_wrexpertmodal", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxsynccontrols", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxsynccontrols_emailinboxsynccontrols", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxtoolbar", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxtoolbar_inbox_filter_labels", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinlinecomposer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinlinecomposer_emailinlinecomposer", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailmessagedetail", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetail", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_handshakeviewtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_inboxactionicons", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_inboxactionicons_inboxredirectactionicon", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_inboxactionicons_inboxrunautomationactionicon", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_inboxactionicons_inboxsandboxcloneactionicon", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_inboxbulkactionsbar", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_inboxbulkactionsbar_inboxbulkactionsbar", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_inboxhandshakenavicon", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_inboxhandshakenavicon_inboxhandshakenaviconbutton", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_inboxmessagekindselect", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_inboxmessagekindselect_inboxmessagekindselect", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_inboxurgencymeter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_inboxurgencymeter_inboxurgencymeter", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_linkwarningdialog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_linkwarningdialog_linkwarningdialog", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_sandboxclonefeedbackbadge", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_sandboxclonefeedbackbadge_sandboxclonefeedbackbadge", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_sandboxlinkinfodialog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_sandboxlinkinfodialog_sandboxlinkinfodialog", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_sessionimportdialog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_sessionimportdialog_sessionimportdialog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_sessionimportdialog_sessionimportdialogsessionref", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_syncfailurebanner", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_syncfailurebanner_syncfailurebanner", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_hooks_usedeletefromprovideronlocaldelete", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_hooks_usedeletefromprovideronlocaldelete_usedeletefromprovideronlocaldelete", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_hooks_useingestionstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_hooks_useingestionstatus_useingestionstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_hooks_useinternalsandboxeslist", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_hooks_useinternalsandboxeslist_useinternalsandboxeslist", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_hooks_useorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_hooks_useorchestratormode_useorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics_autosortdiaglog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics_autosorttimingaccumulateouterchunk", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics_autosorttimingbump", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics_autosorttiminglog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics_autosorttimingnotecompletenessretry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics_autosorttimingrunactive", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics_autosorttimingrunend", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics_autosorttimingrunstart", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics_autosorttimingsetpostruntailms", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics_debug_autosort_diagnostics", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics_debug_autosort_timing", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics_setautosortdiagrunid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_beapinboxactiontooltips", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_beapinboxactiontooltips_beaphostsandboxclonetooltipforavailability", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_beapinboxactiontooltips_beapinboxredirecttooltippropsforrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_beapinboxactiontooltips_beapinboxreplytooltipprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_beapinboxclonetosandboxapi", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_sandboxclonefeedbackfromoutcome", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy_logsandboxtargetresolution", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy_mapsandboxclickactiontoresolutiondecision", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy_resolvehostsandboxcloneclickaction", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy_sandbox_identity_incomplete_user_message", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy_sandbox_keying_incomplete_user_message", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy_sandboxcloneunavailabledialogvariant", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility_canshowsandboxcloneaction", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_inbox_email_reply_metadata_missing", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_loginboxreplytransportdecision", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_resolveinboxreplymode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_inboxclassificationreconcile", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_inboxclassificationreconcile_reconcileinboxclassification", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_inboxmessageactionable", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_inboxmessageactionable_isinboxmessageactionable", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_inboxsessionartefact", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_inboxsessionartefact_canshowinboxrunautomation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_inboxsessionartefact_resolveinboxsessionartefact", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_inboxsessionreviewopen", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_inboxsessionreviewopen_sessionreviewmessagerow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_inboxsessionreviewopen_workflowfilterfromsessionreviewrow", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_openappexternalurl", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_openappexternalurl_openappexternalurl", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_resolveactivesandboxclonetargets", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_resolveactivesandboxclonetargets_resolveactivesandboxclonetargets", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_runbeapsessionautomation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_runbeapsessionautomation_runbeapsessionautomationformessage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_sandbox_clone_copy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_sandboxclonefeedbackview", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_viewsandboxchecking", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_viewsandboxcloning", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_viewsandboxidentityincomplete", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_viewsandboxkeyingincomplete", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_viewsandboxlistloadfailed", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_viewsandboxnoorchestrator", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_stores_usedraftrefinestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_stores_usedraftrefinestore_usedraftrefinestore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_activeemailaccountidsforsync", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_classifymainrowpayload", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxfilter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_subfocus", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_useemailinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_styles_uicontrasttokens", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_styles_uicontrasttokens_ui_badge", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_types_inboxai", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_types_inboxai_aioutputs", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_types_inboxai_autosortretainkind", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_types_inboxai_bulkairesult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_types_inboxai_bulkairesultentry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_types_inboxai_bulkrecommendedaction", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_types_inboxai_normalinboxairesult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_types_inboxai_sortcategory", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_utils_origindeleteflow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_utils_origindeleteflow_confirmorigindeleteifneeded", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_utils_origindeleteflow_origindeleteconfirmedforselection", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_utils_parseinboxaijson", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_utils_parseinboxaijson_tryparseanalysis", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_utils_parseinboxaijson_tryparsepartialanalysis", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_utils_safelinks", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_electron_vite_project_src_utils_safelinks_beapinboxmessagebodytolinkparts", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_extension_chromium_src_shared_email_connectemailflow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_extension_chromium_src_shared_email_connectemailflow_useconnectemailflow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_extension_chromium_src_shared_email_connectemailtypes_connectemaillaunchsource", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_extension_chromium_src_shared_email_pickdefaultaccountrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_extension_chromium_src_shared_email_pickdefaultaccountrow_pickdefaultemailaccountrowid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_extension_chromium_src_wrguard_components_emailproviderssection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview", + "target": "apps_extension_chromium_src_wrguard_components_emailproviderssection_emailproviderssection", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L3081", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_rationale_3081", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L2667", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_accounteligibleforinboxfullreset", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L5907", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_aggregatelifecycleopcounts", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L237", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_buildremotesyncusersummary", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_countstatus", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L2433", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_countstatus", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L2194", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_buildremotesyncusersummary", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L5912", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_formatdrainetaline", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L3436", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_withautosortretained", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L3063", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_emptyretainedcounts", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L3608", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_mergeretainedcounts", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L977", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_bulkactioncardstructured", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_hasfullbulkanalysis", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L5065", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_hasfullbulkanalysis", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L350", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_shouldshowbulkanalyzebutton", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_hasfullbulkanalysis", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L329", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_bulkrowneedslazyanalyze", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_parsepersistedanalysis", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L332", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_bulkrowneedslazyanalyze", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_shouldshowbulkanalyzebutton", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L4008", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_bulkrowneedslazyanalyze", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L4019", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_schedulebulklazyanalyzeidle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L5209", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_shouldshowbulkanalyzebutton", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L3895", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_mergenormalpartialintobulk", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L3957", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_advisorynormaltobulkcomplete", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L3964", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_bulkentrytomanualpersistjson", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L7059", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_formatdate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L7061", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_formatrelativedate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L564", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_parsepersistedanalysis", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_sortcategorytoclassifier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L581", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_parsepersistedanalysis", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_classifiertosortcategory", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L582", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_parsepersistedanalysis", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_recommendedactionforclassifier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L6906", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_parsepersistedanalysis", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L566", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_parsepersistedanalysis", + "target": "apps_electron_vite_project_src_lib_inboxclassificationreconcile_reconcileinboxclassification", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L7155", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_formatpendingdeleteinfo", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L1023", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_bulkactioncardstructured", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_bulkheadercategorybadge", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L1443", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_bulkactioncardstructured", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_resolveinboxreplymode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L904", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_bulkactioncardstructured", + "target": "apps_electron_vite_project_src_stores_usedraftrefinestore_usedraftrefinestore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L910", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_bulkactioncardstructured", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_useemailinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L7177", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_geturgencybadgetext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L2411", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_components_emailinboxbulkview_sortmessagesbycategory", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L4521", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_hooks_usedeletefromprovideronlocaldelete_usedeletefromprovideronlocaldelete" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L1795", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_hooks_useingestionstatus_useingestionstatus" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L1785", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_hooks_useinternalsandboxeslist_useinternalsandboxeslist" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L1794", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_hooks_useorchestratormode_useorchestratormode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L3222", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics_autosortdiaglog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L3561", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics_autosorttimingaccumulateouterchunk" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L3673", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics_autosorttimingbump" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L3546", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics_autosorttiminglog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L3589", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics_autosorttimingnotecompletenessretry" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L3672", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics_autosorttimingrunactive" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L3794", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics_autosorttimingrunend" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L3100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics_autosorttimingrunstart" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L3734", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics_autosorttimingsetpostruntailms" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L3097", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics_setautosortdiagrunid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L6952", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_beapinboxactiontooltips_beaphostsandboxclonetooltipforavailability" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L6951", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_beapinboxactiontooltips_beapinboxredirecttooltippropsforrow" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L7249", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_beapinboxactiontooltips_beapinboxreplytooltipprops" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L1926", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_beapinboxclonetosandboxapi" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L1928", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_sandboxclonefeedbackfromoutcome" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L1831", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy_logsandboxtargetresolution" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L1897", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy_mapsandboxclickactiontoresolutiondecision" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L1878", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy_resolvehostsandboxcloneclickaction" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L1817", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy_sandboxcloneunavailabledialogvariant" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L2246", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility_canshowsandboxcloneaction" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L4887", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_loginboxreplytransportdecision" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L4882", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_resolveinboxreplymode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L6939", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_inboxmessageactionable_isinboxmessageactionable" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L1979", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_inboxsessionartefact_canshowinboxrunautomation" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L1962", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_inboxsessionartefact_resolveinboxsessionartefact" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L4325", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_inboxsessionreviewopen_workflowfilterfromsessionreviewrow" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L4790", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_openappexternalurl_openappexternalurl" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L1875", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_resolveactivesandboxclonetargets_resolveactivesandboxclonetargets" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L1989", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_runbeapsessionautomation_runbeapsessionautomationformessage" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L1901", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_viewsandboxchecking" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L1925", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_viewsandboxcloning" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L1916", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_viewsandboxidentityincomplete" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L1911", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_viewsandboxkeyingincomplete" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L1868", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_viewsandboxlistloadfailed" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L1906", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_viewsandboxnoorchestrator" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L1761", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_stores_usedraftrefinestore_usedraftrefinestore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L1760", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_activeemailaccountidsforsync" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L3487", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxmessage" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L1701", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_useemailinboxstore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L2954", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_utils_origindeleteflow_confirmorigindeleteifneeded" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L2956", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_utils_origindeleteflow_origindeleteconfirmedforselection" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L3924", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_utils_parseinboxaijson_tryparseanalysis" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L3891", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_utils_parseinboxaijson_tryparsepartialanalysis" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L6907", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_electron_vite_project_src_utils_safelinks_beapinboxmessagebodytolinkparts" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L4542", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_extension_chromium_src_shared_email_connectemailflow_useconnectemailflow" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx", + "source_location": "L1759", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxbulkview_emailinboxbulkview", + "target": "apps_extension_chromium_src_shared_email_pickdefaultaccountrow_pickdefaultemailaccountrowid" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxSyncControls.dedicatedSandbox.test.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxsynccontrols_dedicatedsandbox_test", + "target": "apps_electron_vite_project_src_components_emailinboxsynccontrols", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxSyncControls.dedicatedSandbox.test.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxsynccontrols_dedicatedsandbox_test", + "target": "apps_electron_vite_project_src_components_emailinboxsynccontrols_dedicatedsandbox_test_baseprops", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxSyncControls.dedicatedSandbox.test.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxsynccontrols_dedicatedsandbox_test", + "target": "apps_electron_vite_project_src_components_emailinboxsynccontrols_emailinboxsynccontrols", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxSyncControls.dedicatedSandbox.test.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxsynccontrols_dedicatedsandbox_test", + "target": "apps_electron_vite_project_src_components_emailinboxtoolbar", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxSyncControls.dedicatedSandbox.test.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxsynccontrols_dedicatedsandbox_test", + "target": "apps_electron_vite_project_src_components_emailinboxtoolbar_emailinboxtoolbar", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxSyncControls.dedicatedSandbox.test.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxsynccontrols_dedicatedsandbox_test", + "target": "apps_electron_vite_project_src_lib_dedicatedsandboxingestionui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxSyncControls.dedicatedSandbox.test.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxsynccontrols_dedicatedsandbox_test", + "target": "apps_electron_vite_project_src_lib_dedicatedsandboxingestionui_dedicated_sandbox_host_triggered_status", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxSyncControls.tsx", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxsynccontrols", + "target": "apps_electron_vite_project_src_components_emailinboxsynccontrols_emailinboxsynccontrols", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxSyncControls.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxsynccontrols", + "target": "apps_electron_vite_project_src_components_emailinboxsynccontrols_emailinboxsynccontrolsprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxSyncControls.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxsynccontrols", + "target": "apps_electron_vite_project_src_components_emailinboxsynccontrols_emailinboxsyncwindowselectvalue", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxSyncControls.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxsynccontrols", + "target": "apps_electron_vite_project_src_lib_dedicatedsandboxingestionui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxSyncControls.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxsynccontrols", + "target": "apps_electron_vite_project_src_lib_dedicatedsandboxingestionui_dedicated_sandbox_host_triggered_status", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxToolbar.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxtoolbar", + "target": "apps_electron_vite_project_src_components_emailinboxsynccontrols", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_emailinboxsynccontrols", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxSyncControls.tsx", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxsynccontrols_emailinboxsynccontrols", + "target": "apps_electron_vite_project_src_components_emailinboxsynccontrols_emailinboxsyncwindowselectvalue", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_emailinboxsynccontrols_emailinboxsyncwindowselectvalue", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L4698", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_emailinboxview", + "target": "apps_electron_vite_project_src_components_emailinboxsynccontrols_emailinboxsyncwindowselectvalue" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxToolbar.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxtoolbar", + "target": "apps_electron_vite_project_src_components_emailinboxsynccontrols_emailinboxsynccontrols", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxToolbar.tsx", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxtoolbar", + "target": "apps_electron_vite_project_src_components_emailinboxtoolbar_emailinboxtoolbar", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxToolbar.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxtoolbar", + "target": "apps_electron_vite_project_src_components_emailinboxtoolbar_emailinboxtoolbarprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxToolbar.tsx", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxtoolbar", + "target": "apps_electron_vite_project_src_components_emailinboxtoolbar_filter_tabs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxToolbar.tsx", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxtoolbar", + "target": "apps_electron_vite_project_src_components_emailinboxtoolbar_inbox_filter_labels", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxToolbar.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxtoolbar", + "target": "apps_electron_vite_project_src_components_inboxbulkactionsbar", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxToolbar.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxtoolbar", + "target": "apps_electron_vite_project_src_components_inboxbulkactionsbar_inboxbulkactionsbar", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxToolbar.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxtoolbar", + "target": "apps_electron_vite_project_src_components_inboxmessagekindselect", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxToolbar.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxtoolbar", + "target": "apps_electron_vite_project_src_components_inboxmessagekindselect_inboxmessagekindselect", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxToolbar.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxtoolbar", + "target": "apps_electron_vite_project_src_lib_inboxmessagekind", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxToolbar.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxtoolbar", + "target": "apps_electron_vite_project_src_lib_inboxmessagekind_inboxmessagekindfilter", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxToolbar.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxtoolbar", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxToolbar.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxtoolbar", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxfilter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxToolbar.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxtoolbar", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxtabcounts", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxToolbar.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxtoolbar", + "target": "apps_extension_chromium_src_shared_email_pickdefaultaccountrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxToolbar.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxtoolbar", + "target": "apps_extension_chromium_src_shared_email_pickdefaultaccountrow_pickdefaultemailaccountrowid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_emailinboxtoolbar", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxToolbar.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxtoolbar_emailinboxtoolbarprops", + "target": "apps_electron_vite_project_src_lib_inboxmessagekind_inboxmessagekindfilter", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxToolbar.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxtoolbar_emailinboxtoolbarprops", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxfilter", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxToolbar.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxtoolbar_emailinboxtoolbarprops", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxtabcounts", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_emailinboxtoolbar_inbox_filter_labels", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxToolbar.tsx", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxtoolbar_emailinboxtoolbar", + "target": "apps_extension_chromium_src_shared_email_pickdefaultaccountrow_pickdefaultemailaccountrowid" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_emailinboxtoolbar_emailinboxtoolbar", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.sandboxAffordances.test.tsx", + "source_location": "L256", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_sandboxaffordances_test", + "target": "apps_electron_vite_project_src_components_emailinboxview", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.sandboxAffordances.test.tsx", + "source_location": "L256", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_sandboxaffordances_test", + "target": "apps_electron_vite_project_src_components_emailinboxview_inboxdetailaipanel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.sandboxAffordances.test.tsx", + "source_location": "L260", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_sandboxaffordances_test", + "target": "apps_electron_vite_project_src_components_emailinboxview_sandboxaffordances_test_basemessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.sandboxAffordances.test.tsx", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_sandboxaffordances_test", + "target": "apps_electron_vite_project_src_components_emailinboxview_sandboxaffordances_test_emailinboxstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.sandboxAffordances.test.tsx", + "source_location": "L299", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_sandboxaffordances_test", + "target": "apps_electron_vite_project_src_components_emailinboxview_sandboxaffordances_test_renderpanel", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.sandboxAffordances.test.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_sandboxaffordances_test", + "target": "apps_electron_vite_project_src_components_sandboxlocksurface", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.sandboxAffordances.test.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_sandboxaffordances_test", + "target": "apps_electron_vite_project_src_components_sandboxlocksurface_sandbox_lock_copy", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.sandboxAffordances.test.tsx", + "source_location": "L255", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_sandboxaffordances_test", + "target": "apps_electron_vite_project_src_hooks_useorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.sandboxAffordances.test.tsx", + "source_location": "L255", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_sandboxaffordances_test", + "target": "apps_electron_vite_project_src_hooks_useorchestratormode_useorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.sandboxAffordances.test.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_sandboxaffordances_test", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.sandboxAffordances.test.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_sandboxaffordances_test", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L287", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_emailinboxview_analysissoftnoticebarstyle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L298", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_emailinboxview_analysissoftnoticeretrystyle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L3054", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_emailinboxview_emailinboxview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L3038", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_emailinboxview_emailinboxviewprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L184", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_emailinboxview_firstnonemptystring", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L159", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_emailinboxview_formatrelativedate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L309", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_emailinboxview_getmessageaipreviewline", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L232", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_emailinboxview_inboxanalyzestreamprivilegedbannermessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L343", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_emailinboxview_inboxdetailaipanel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L333", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_emailinboxview_inboxdetailaipanelprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_emailinboxview_inboxfailurelooksembeddingonly", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L2796", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_emailinboxview_inboxmessagerow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L2575", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_emailinboxview_inboxmessagerowprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_emailinboxview_mapledgerrecordtoselectedrecipient", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_emailinboxview_nativebeapdraftdata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L2609", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_emailinboxview_pending_reason_ui", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L2642", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_emailinboxview_pendinginboxrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L195", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_emailinboxview_resolvenativebeapdraftfields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L259", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_emailinboxview_softenanalysisbannermessage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_emailinlinecomposer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_emailinlinecomposer_emailinlinecomposer", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_emailmessagedetail", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetail", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_handshakeviewtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_inboxactionicons", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_inboxactionicons_inboxredirectactionicon", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_inboxactionicons_inboxrunautomationactionicon", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_inboxactionicons_inboxsandboxcloneactionicon", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_inboxbeapsourcebadge", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_inboxbeapsourcebadge_inboxbeapsourcebadgelistrow", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_inboxhandshakenavicon", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_inboxhandshakenavicon_inboxhandshakenaviconbutton", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_inboxurgencymeter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_inboxurgencymeter_inboxurgencymeter", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_ingestiondelegationmodal", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_ingestiondelegationmodal_ingestiondelegationmodal", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_ingestionstatusbanner", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_ingestionstatusbanner_ingestionstatusbanner", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_revocationnoticebanner", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_revocationnoticebanner_revocationnoticebanner", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_sandboxclonefeedbackbadge", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_sandboxclonefeedbackbadge_sandboxclonefeedbackbadge", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_sandboxlocksurface", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_sandboxlocksurface_sandboxlocksurface", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_sandboxreadcleanuphint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_sandboxreadcleanuphint_sandboxreadcleanuphint", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_sessionimportdialog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_sessionimportdialog_sessionimportdialog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_sessionimportdialog_sessionimportdialogsessionref", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_syncfailurebanner", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_components_syncfailurebanner_syncfailurebanner", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_hooks_usedeletefromprovideronlocaldelete", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_hooks_usedeletefromprovideronlocaldelete_usedeletefromprovideronlocaldelete", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_hooks_useinboxpreloadqueue", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_hooks_useinboxpreloadqueue_useinboxpreloadqueue", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_hooks_useingestionstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_hooks_useingestionstatus_useingestionstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_hooks_useinternalsandboxeslist", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_hooks_useinternalsandboxeslist_useinternalsandboxeslist", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_hooks_useorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_hooks_useorchestratormode_useorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_hooks_userevocationbanner", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_hooks_userevocationbanner_userevocationbanner", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_hooks_usesandboxreadcleanuphint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_hooks_usesandboxreadcleanuphint_usesandboxreadcleanuphint", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_hooks_usetopologydelegationmodal", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_hooks_usetopologydelegationmodal_usetopologydelegationmodal", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics_autosortdiaglog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics_debug_autosort_diagnostics", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_lib_beapinboxactiontooltips", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_lib_beapinboxactiontooltips_beaphostsandboxclonetooltipforavailability", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_lib_beapinboxactiontooltips_beapinboxredirecttooltippropsforrow", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_beapinboxclonetosandboxapi", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_sandboxclonefeedbackfromoutcome", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy_logsandboxtargetresolution", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy_mapsandboxclickactiontoresolutiondecision", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy_resolvehostsandboxcloneclickaction", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy_sandboxcloneunavailabledialogvariant", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility_canshowsandboxcloneaction", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility_logsandboxactionvisibility", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility_logsandboxcloneeligibilitydebug", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_lib_dedicatedsandboxingestionui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_lib_dedicatedsandboxingestionui_dedicated_sandbox_sync_window_hint", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_inbox_email_reply_metadata_missing", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_loginboxreplytransportdecision", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_resolveinboxreplymode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_lib_inboxaiusermessages", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_lib_inboxaiusermessages_inboxaianalyzestreamerrordisplay", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_lib_inboxaiusermessages_inboxaidraftreplyerrordisplay", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_lib_inboxaiusermessages_inboxaierrordebugpayload", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_lib_inboxclassificationreconcile", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_lib_inboxclassificationreconcile_reconcileanalyzetriage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_lib_inboxdetailanalysisselection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_lib_inboxdetailanalysisselection_inbox_analysis_selection_debounce_ms", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_lib_inboxdetailanalysisselection_shouldapplyanalysisstreamresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_lib_inboxdetailanalysisselection_shouldtriggeranalysisonselectionchange", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_lib_inboxmessageactionable", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_lib_inboxmessageactionable_isinboxmessageactionable", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_lib_inboxsessionartefact", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_lib_inboxsessionartefact_canshowinboxrunautomation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_lib_inboxsessionartefact_capabilitiesforsessionattach", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_lib_inboxsessionartefact_resolveinboxsessionartefact", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_lib_resolveactivesandboxclonetargets", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_lib_resolveactivesandboxclonetargets_resolveactivesandboxclonetargets", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_lib_runbeapsessionautomation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_lib_runbeapsessionautomation_runbeapsessionautomationformessage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_sandbox_clone_copy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_sandboxclonefeedbackview", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_viewsandboxchecking", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_viewsandboxcloning", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_viewsandboxidentityincomplete", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_viewsandboxkeyingincomplete", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_viewsandboxlistloadfailed", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_viewsandboxnoorchestrator", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_shims_handshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_shims_handshakerpc_listhandshakes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_stores_usedraftrefinestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_stores_usedraftrefinestore_usedraftrefinestore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_activeemailaccountidsforsync", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_useemailinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_styles_uicontrasttokens", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_styles_uicontrasttokens_ui_badge", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_types_inboxai", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_types_inboxai_normalinboxairesult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_types_sandboxorchestratoravailability", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_types_sandboxorchestratoravailability_authoritativedeviceinternalrole", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_types_sandboxorchestratoravailability_sandboxorchestratoravailability", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_utils_origindeleteflow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_utils_origindeleteflow_confirmorigindeleteifneeded", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_utils_origindeleteflow_origindeleteconfirmedforselection", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_utils_parseinboxaijson", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_utils_parseinboxaijson_normalinboxairesultkey", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_utils_parseinboxaijson_tryparseanalysis", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_utils_parseinboxaijson_tryparseanalysiswithmeta", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_electron_vite_project_src_utils_parseinboxaijson_tryparsepartialanalysis", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_extension_chromium_src_beap_builder_buildsessionimportartefact", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_extension_chromium_src_beap_builder_buildsessionimportartefact_buildartefactinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_extension_chromium_src_beap_builder_buildsessionimportartefact_buildsessionimportartefact", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_getsigningkeypair", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beappackageconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_executedeliveryaction", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_extension_chromium_src_handshake_rpctypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_extension_chromium_src_handshake_rpctypes_hashandshakekeymaterial", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_extension_chromium_src_handshake_rpctypes_selectedhandshakerecipient", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_extension_chromium_src_shared_email_connectemailflow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_extension_chromium_src_shared_email_connectemailflow_useconnectemailflow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_extension_chromium_src_shared_email_connectemailtypes_connectemaillaunchsource", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_extension_chromium_src_shared_email_pickdefaultaccountrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_extension_chromium_src_shared_email_pickdefaultaccountrow_pickdefaultemailaccountrowid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_extension_chromium_src_wrguard_components_emailproviderssection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview", + "target": "apps_extension_chromium_src_wrguard_components_emailproviderssection_emailproviderssection", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L2637", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_rationale_2637", + "target": "apps_electron_vite_project_src_components_emailinboxview", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L1169", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_inboxdetailaipanel", + "target": "apps_electron_vite_project_src_components_emailinboxview_inboxfailurelooksembeddingonly", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L1486", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_inboxdetailaipanel", + "target": "apps_electron_vite_project_src_components_emailinboxview_mapledgerrecordtoselectedrecipient", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L2933", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_inboxmessagerow", + "target": "apps_electron_vite_project_src_components_emailinboxview_formatrelativedate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L2713", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_pendinginboxrow", + "target": "apps_electron_vite_project_src_components_emailinboxview_formatrelativedate", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L3387", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_emailinboxview", + "target": "apps_electron_vite_project_src_components_emailinboxview_nativebeapdraftdata" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L205", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_resolvenativebeapdraftfields", + "target": "apps_electron_vite_project_src_components_emailinboxview_firstnonemptystring", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L1279", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_inboxdetailaipanel", + "target": "apps_electron_vite_project_src_components_emailinboxview_resolvenativebeapdraftfields", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L834", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_inboxdetailaipanel", + "target": "apps_electron_vite_project_src_components_emailinboxview_inboxanalyzestreamprivilegedbannermessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L1783", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_inboxdetailaipanel", + "target": "apps_electron_vite_project_src_components_emailinboxview_softenanalysisbannermessage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L260", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_softenanalysisbannermessage", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxmessage" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L313", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_getmessageaipreviewline", + "target": "apps_electron_vite_project_src_utils_parseinboxaijson_tryparseanalysis", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L2949", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_inboxmessagerow", + "target": "apps_electron_vite_project_src_components_emailinboxview_getmessageaipreviewline", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L335", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_inboxdetailaipanelprops", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxmessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L344", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_inboxdetailaipanel", + "target": "apps_electron_vite_project_src_hooks_useorchestratormode_useorchestratormode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L553", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_inboxdetailaipanel", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics_autosortdiaglog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L1679", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_inboxdetailaipanel", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_loginboxreplytransportdecision" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L433", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_inboxdetailaipanel", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_resolveinboxreplymode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L839", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_inboxdetailaipanel", + "target": "apps_electron_vite_project_src_lib_inboxaiusermessages_inboxaianalyzestreamerrordisplay" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L1371", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_inboxdetailaipanel", + "target": "apps_electron_vite_project_src_lib_inboxaiusermessages_inboxaidraftreplyerrordisplay" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L466", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_inboxdetailaipanel", + "target": "apps_electron_vite_project_src_lib_inboxclassificationreconcile_reconcileanalyzetriage" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L450", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_inboxdetailaipanel", + "target": "apps_electron_vite_project_src_lib_inboxdetailanalysisselection_shouldapplyanalysisstreamresult" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L957", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_inboxdetailaipanel", + "target": "apps_electron_vite_project_src_lib_inboxdetailanalysisselection_shouldtriggeranalysisonselectionchange" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L1525", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_inboxdetailaipanel", + "target": "apps_electron_vite_project_src_lib_inboxsessionartefact_capabilitiesforsessionattach" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L1478", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_inboxdetailaipanel", + "target": "apps_electron_vite_project_src_shims_handshakerpc_listhandshakes" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L402", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_inboxdetailaipanel", + "target": "apps_electron_vite_project_src_stores_usedraftrefinestore_usedraftrefinestore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L435", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_inboxdetailaipanel", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_useemailinboxstore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L657", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_inboxdetailaipanel", + "target": "apps_electron_vite_project_src_utils_parseinboxaijson_tryparseanalysiswithmeta" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L618", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_inboxdetailaipanel", + "target": "apps_electron_vite_project_src_utils_parseinboxaijson_tryparsepartialanalysis" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L1528", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_inboxdetailaipanel", + "target": "apps_extension_chromium_src_beap_builder_buildsessionimportartefact_buildsessionimportartefact" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L1494", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_inboxdetailaipanel", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_getsigningkeypair" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L1547", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_inboxdetailaipanel", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_executedeliveryaction" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L1487", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_inboxdetailaipanel", + "target": "apps_extension_chromium_src_handshake_rpctypes_hashandshakekeymaterial" + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L2576", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_inboxmessagerowprops", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxmessage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L2588", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_inboxmessagerowprops", + "target": "apps_electron_vite_project_src_types_sandboxorchestratoravailability_authoritativedeviceinternalrole", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L2600", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_inboxmessagerowprops", + "target": "apps_electron_vite_project_src_types_sandboxorchestratoravailability_sandboxorchestratoravailability", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L2832", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_inboxmessagerow", + "target": "apps_electron_vite_project_src_lib_beapinboxactiontooltips_beaphostsandboxclonetooltipforavailability", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L2831", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_inboxmessagerow", + "target": "apps_electron_vite_project_src_lib_beapinboxactiontooltips_beapinboxredirecttooltippropsforrow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L2830", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_inboxmessagerow", + "target": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility_canshowsandboxcloneaction", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L2835", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_inboxmessagerow", + "target": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility_logsandboxactionvisibility", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L2818", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_inboxmessagerow", + "target": "apps_electron_vite_project_src_lib_inboxmessageactionable_isinboxmessageactionable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L3534", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_emailinboxview", + "target": "apps_electron_vite_project_src_hooks_usedeletefromprovideronlocaldelete_usedeletefromprovideronlocaldelete" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L3099", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_emailinboxview", + "target": "apps_electron_vite_project_src_hooks_useinboxpreloadqueue_useinboxpreloadqueue" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L3104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_emailinboxview", + "target": "apps_electron_vite_project_src_hooks_useingestionstatus_useingestionstatus" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L3131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_emailinboxview", + "target": "apps_electron_vite_project_src_hooks_useinternalsandboxeslist_useinternalsandboxeslist" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L3101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_emailinboxview", + "target": "apps_electron_vite_project_src_hooks_useorchestratormode_useorchestratormode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L3116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_emailinboxview", + "target": "apps_electron_vite_project_src_hooks_userevocationbanner_userevocationbanner" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L3119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_emailinboxview", + "target": "apps_electron_vite_project_src_hooks_usesandboxreadcleanuphint_usesandboxreadcleanuphint" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L3112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_emailinboxview", + "target": "apps_electron_vite_project_src_hooks_usetopologydelegationmodal_usetopologydelegationmodal" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L3986", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_emailinboxview", + "target": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_beapinboxclonetosandboxapi" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L3988", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_emailinboxview", + "target": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_sandboxclonefeedbackfromoutcome" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L3854", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_emailinboxview", + "target": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy_logsandboxtargetresolution" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L3938", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_emailinboxview", + "target": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy_mapsandboxclickactiontoresolutiondecision" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L3917", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_emailinboxview", + "target": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy_resolvehostsandboxcloneclickaction" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L3830", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_emailinboxview", + "target": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy_sandboxcloneunavailabledialogvariant" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L3137", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_emailinboxview", + "target": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility_logsandboxcloneeligibilitydebug" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L4100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_emailinboxview", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_loginboxreplytransportdecision" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L4095", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_emailinboxview", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_resolveinboxreplymode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L4057", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_emailinboxview", + "target": "apps_electron_vite_project_src_lib_inboxsessionartefact_canshowinboxrunautomation" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L4040", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_emailinboxview", + "target": "apps_electron_vite_project_src_lib_inboxsessionartefact_resolveinboxsessionartefact" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L3900", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_emailinboxview", + "target": "apps_electron_vite_project_src_lib_resolveactivesandboxclonetargets_resolveactivesandboxclonetargets" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L4067", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_emailinboxview", + "target": "apps_electron_vite_project_src_lib_runbeapsessionautomation_runbeapsessionautomationformessage" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L3944", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_emailinboxview", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_viewsandboxchecking" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L3985", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_emailinboxview", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_viewsandboxcloning" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L3971", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_emailinboxview", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_viewsandboxidentityincomplete" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L3962", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_emailinboxview", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_viewsandboxkeyingincomplete" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L3893", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_emailinboxview", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_viewsandboxlistloadfailed" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L3953", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_emailinboxview", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_viewsandboxnoorchestrator" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L3157", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_emailinboxview", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_activeemailaccountidsforsync" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L3097", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_emailinboxview", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_useemailinboxstore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L3723", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_emailinboxview", + "target": "apps_electron_vite_project_src_utils_origindeleteflow_confirmorigindeleteifneeded" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L3725", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_emailinboxview", + "target": "apps_electron_vite_project_src_utils_origindeleteflow_origindeleteconfirmedforselection" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L3445", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_emailinboxview", + "target": "apps_extension_chromium_src_shared_email_connectemailflow_useconnectemailflow" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInboxView.tsx", + "source_location": "L3156", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinboxview_emailinboxview", + "target": "apps_extension_chromium_src_shared_email_pickdefaultaccountrow_pickdefaultemailaccountrowid" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInlineComposer.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinlinecomposer", + "target": "apps_electron_vite_project_src_components_emailinlinecomposer_draftsurface", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInlineComposer.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinlinecomposer", + "target": "apps_electron_vite_project_src_components_emailinlinecomposer_emailinlinecomposer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInlineComposer.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinlinecomposer", + "target": "apps_electron_vite_project_src_components_emailinlinecomposer_emailinlinecomposerprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInlineComposer.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinlinecomposer", + "target": "apps_electron_vite_project_src_components_shared_emailaccountselector", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInlineComposer.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinlinecomposer", + "target": "apps_electron_vite_project_src_components_shared_emailaccountselector_emailaccountselector", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInlineComposer.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinlinecomposer", + "target": "apps_electron_vite_project_src_stores_usedraftrefinestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInlineComposer.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinlinecomposer", + "target": "apps_electron_vite_project_src_stores_usedraftrefinestore_usedraftrefinestore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInlineComposer.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinlinecomposer", + "target": "apps_extension_chromium_src_shared_email_connectemailflow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailInlineComposer.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinlinecomposer", + "target": "apps_extension_chromium_src_shared_email_connectemailtypes_connectemaillaunchsource", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailInlineComposer.tsx", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailinlinecomposer_emailinlinecomposer", + "target": "apps_electron_vite_project_src_stores_usedraftrefinestore_usedraftrefinestore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.sandboxLockNotice.test.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_sandboxlocknotice_test", + "target": "apps_electron_vite_project_src_components_emailmessagedetail", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.sandboxLockNotice.test.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_sandboxlocknotice_test", + "target": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.sandboxLockNotice.test.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_sandboxlocknotice_test", + "target": "apps_electron_vite_project_src_components_emailmessagedetail_sandboxlocknotice_test_basemessage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.sandboxLockNotice.test.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_sandboxlocknotice_test", + "target": "apps_electron_vite_project_src_hooks_useorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.sandboxLockNotice.test.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_sandboxlocknotice_test", + "target": "apps_electron_vite_project_src_hooks_useorchestratormode_useorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.sandboxLockNotice.test.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_sandboxlocknotice_test", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.sandboxLockNotice.test.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_sandboxlocknotice_test", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L218", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_components_emailmessagedetail_depackagedformatfrommessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L337", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetailprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L168", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_components_emailmessagedetail_extractbodytext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L204", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_components_emailmessagedetail_extracttext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_components_emailmessagedetail_formatdate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L299", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_components_emailmessagedetail_formattoline", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L144", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_components_emailmessagedetail_getautomationtags", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L153", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_components_emailmessagedetail_humanizeobjectstrings", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L229", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_components_emailmessagedetail_ispendingqbeapdepackaged", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L208", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_components_emailmessagedetail_isplaceholder", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L237", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_components_emailmessagedetail_partyemail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L322", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_components_emailmessagedetail_renderdepackagedjson", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L313", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_components_emailmessagedetail_sessionreftodialogprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L247", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_components_emailmessagedetail_strfield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L254", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_components_emailmessagedetail_transportplaintextfrombeappackagejson", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_components_inboxactionicons", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_components_inboxactionicons_inboxredirectactionicon", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_components_inboxactionicons_inboxsandboxcloneactionicon", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_components_inboxattachmentrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_components_inboxattachmentrow_inboxattachmentrow", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_components_inboxbeapsourcebadge", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_components_inboxbeapsourcebadge_inboxbeapsourcebadgedetail", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_components_linkwarningdialog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_components_linkwarningdialog_linkwarningdialog", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_components_sandboxclonedisclosure", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_components_sandboxclonedisclosure_sandboxclonedisclosure", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_components_sandboxclonefeedbackbadge", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_components_sandboxclonefeedbackbadge_sandboxclonefeedbackbadge", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_components_sandboxlinkinfodialog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_components_sandboxlinkinfodialog_sandboxlinkinfodialog", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_components_sessionimportdialog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_components_sessionimportdialog_sessionimportdialog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_components_sessionimportdialog_sessionimportdialogsessionref", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_hooks_useinternalsandboxeslist", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_hooks_useinternalsandboxeslist_internalsandboxeslistsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_hooks_useinternalsandboxeslist_internalsandboxtargetwire", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_hooks_useorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_hooks_useorchestratormode_useorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_beapinboxactiontooltips", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_beapinboxactiontooltips_beaphostsandboxclonetooltipforavailability", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_beapinboxactiontooltips_beapinboxredirecttooltippropsfordetail", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_beapinboxactiontooltips_beapinboxreplytooltipprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_beapinboxclonetosandboxapi", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_sandboxclonefeedbackfromoutcome", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy_logsandboxtargetresolution", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy_mapsandboxclickactiontoresolutiondecision", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy_resolvehostsandboxcloneclickaction", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility_canshowsandboxcloneaction", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_inboxbeapoutbound", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_inboxbeapoutbound_isbeapqbeapoutboundecho", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_inboxmessageactionable", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_inboxmessageactionable_isinboxmessageactionable", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_inboxmessagekind", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_inboxmessagekind_deriveinboxmessagekind", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_extractsandboxcloneuimeta", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_inboxmessageissandboxbeapclone", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_inboxmessageusesnativebeappbeapqbeapsplit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_stripsandboxcloneleadinfrombodytext", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_openappexternalurl", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_openappexternalurl_openappexternalurl", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_resolveactivesandboxclonetargets", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_resolveactivesandboxclonetargets_resolveactivesandboxclonetargets", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_runbeapsessionautomation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_runbeapsessionautomation_runbeapsessionautomationformessage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_sandbox_clone_copy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_sandboxclonefeedbackview", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_viewsandboxchecking", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_viewsandboxcloning", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_viewsandboxidentityincomplete", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_viewsandboxkeyingincomplete", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_viewsandboxlistloadfailed", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_viewsandboxnoorchestrator", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_shims_handshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_shims_handshakerpc_listhandshakes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_useemailinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_styles_uicontrasttokens", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_styles_uicontrasttokens_ui_badge", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_types_sandboxorchestratoravailability", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_types_sandboxorchestratoravailability_authoritativedeviceinternalrole", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_types_sandboxorchestratoravailability_defaultsandboxavailability", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_types_sandboxorchestratoravailability_sandboxorchestratoravailability", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_utils_origindeleteflow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_utils_origindeleteflow_confirmorigindeleteifneeded", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_utils_origindeleteflow_origindeleteaccountrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_utils_origindeleteflow_origindeleteconfirmedforselection", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_utils_safelinks", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_utils_safelinks_beapinboxmessagebodytolinkparts", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail", + "target": "apps_electron_vite_project_src_utils_safelinks_extractlinkparts", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetailprops", + "target": "apps_electron_vite_project_src_hooks_useinternalsandboxeslist_internalsandboxeslistsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetailprops", + "target": "apps_electron_vite_project_src_hooks_useinternalsandboxeslist_internalsandboxtargetwire", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetailprops", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxmessage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetailprops", + "target": "apps_electron_vite_project_src_types_sandboxorchestratoravailability_authoritativedeviceinternalrole", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetailprops", + "target": "apps_electron_vite_project_src_types_sandboxorchestratoravailability_sandboxorchestratoravailability", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetailprops", + "target": "apps_electron_vite_project_src_utils_origindeleteflow_origindeleteaccountrow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L1273", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetail", + "target": "apps_electron_vite_project_src_components_emailmessagedetail_formatdate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L1184", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetail", + "target": "apps_electron_vite_project_src_components_emailmessagedetail_getautomationtags", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L192", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_extractbodytext", + "target": "apps_electron_vite_project_src_components_emailmessagedetail_humanizeobjectstrings", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L580", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetail", + "target": "apps_electron_vite_project_src_components_emailmessagedetail_extractbodytext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L205", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_extracttext", + "target": "apps_electron_vite_project_src_components_emailmessagedetail_extractbodytext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L543", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetail", + "target": "apps_electron_vite_project_src_components_emailmessagedetail_extracttext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L504", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetail", + "target": "apps_electron_vite_project_src_components_emailmessagedetail_isplaceholder", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L731", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetail", + "target": "apps_electron_vite_project_src_components_emailmessagedetail_depackagedformatfrommessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L233", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_ispendingqbeapdepackaged", + "target": "apps_electron_vite_project_src_components_emailmessagedetail_depackagedformatfrommessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L1490", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetail", + "target": "apps_electron_vite_project_src_components_emailmessagedetail_ispendingqbeapdepackaged", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L477", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetail", + "target": "apps_electron_vite_project_src_components_emailmessagedetail_partyemail", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L472", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetail", + "target": "apps_electron_vite_project_src_components_emailmessagedetail_strfield", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L520", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetail", + "target": "apps_electron_vite_project_src_components_emailmessagedetail_transportplaintextfrombeappackagejson", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L626", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetail", + "target": "apps_electron_vite_project_src_components_emailmessagedetail_formattoline", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L723", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetail", + "target": "apps_electron_vite_project_src_components_emailmessagedetail_sessionreftodialogprops", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L1551", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetail", + "target": "apps_electron_vite_project_src_components_emailmessagedetail_renderdepackagedjson", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L364", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetail", + "target": "apps_electron_vite_project_src_hooks_useorchestratormode_useorchestratormode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L1182", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_beapinboxactiontooltips_beaphostsandboxclonetooltipforavailability" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L1181", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_beapinboxactiontooltips_beapinboxredirecttooltippropsfordetail" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L1379", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_beapinboxactiontooltips_beapinboxreplytooltipprops" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L897", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_beapinboxclonetosandboxapi" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L900", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_sandboxclonefeedbackfromoutcome" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L753", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy_logsandboxtargetresolution" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L850", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy_mapsandboxclickactiontoresolutiondecision" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L826", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy_resolvehostsandboxcloneclickaction" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L734", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility_canshowsandboxcloneaction" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L732", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_inboxbeapoutbound_isbeapqbeapoutboundecho" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L1177", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_inboxmessageactionable_isinboxmessageactionable" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L392", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_inboxmessagekind_deriveinboxmessagekind" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L569", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_extractsandboxcloneuimeta" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L400", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_inboxmessageissandboxbeapclone" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L396", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_inboxmessageusesnativebeappbeapqbeapsplit" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L576", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_stripsandboxcloneleadinfrombodytext" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L958", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_openappexternalurl_openappexternalurl" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L813", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_resolveactivesandboxclonetargets_resolveactivesandboxclonetargets" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L692", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_runbeapsessionautomation_runbeapsessionautomationformessage" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L857", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_viewsandboxchecking" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L895", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_viewsandboxcloning" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L884", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_viewsandboxidentityincomplete" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L875", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_viewsandboxkeyingincomplete" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L806", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_viewsandboxlistloadfailed" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L866", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetail", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_viewsandboxnoorchestrator" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L458", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetail", + "target": "apps_electron_vite_project_src_shims_handshakerpc_listhandshakes" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L389", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetail", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_useemailinboxstore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L1197", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetail", + "target": "apps_electron_vite_project_src_utils_origindeleteflow_confirmorigindeleteifneeded" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L1199", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetail", + "target": "apps_electron_vite_project_src_utils_origindeleteflow_origindeleteconfirmedforselection" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L588", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetail", + "target": "apps_electron_vite_project_src_utils_safelinks_beapinboxmessagebodytolinkparts" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/EmailMessageDetail.tsx", + "source_location": "L561", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_emailmessagedetail_emailmessagedetail", + "target": "apps_electron_vite_project_src_utils_safelinks_extractlinkparts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/FieldMappingOverlay.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_fieldmappingoverlay", + "target": "apps_electron_vite_project_src_components_fieldmappingoverlay_clamp01", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/FieldMappingOverlay.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_fieldmappingoverlay", + "target": "apps_electron_vite_project_src_components_fieldmappingoverlay_clamprect", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/FieldMappingOverlay.tsx", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_fieldmappingoverlay", + "target": "apps_electron_vite_project_src_components_fieldmappingoverlay_fieldmappingoverlay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/FieldMappingOverlay.tsx", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_fieldmappingoverlay", + "target": "apps_electron_vite_project_src_components_fieldmappingoverlay_fieldmappingoverlayprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/FieldMappingOverlay.tsx", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_fieldmappingoverlay", + "target": "apps_electron_vite_project_src_components_fieldmappingoverlay_fixedpointforcorner", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/FieldMappingOverlay.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_fieldmappingoverlay", + "target": "apps_electron_vite_project_src_components_fieldmappingoverlay_getfieldcolor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/FieldMappingOverlay.tsx", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_fieldmappingoverlay", + "target": "apps_electron_vite_project_src_components_fieldmappingoverlay_gettextinrect", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/FieldMappingOverlay.tsx", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_fieldmappingoverlay", + "target": "apps_electron_vite_project_src_components_fieldmappingoverlay_normalizedrawrect", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/FieldMappingOverlay.tsx", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_fieldmappingoverlay", + "target": "apps_electron_vite_project_src_components_fieldmappingoverlay_pdfpagetextitem", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/FieldMappingOverlay.tsx", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_fieldmappingoverlay", + "target": "apps_electron_vite_project_src_components_fieldmappingoverlay_preset", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/FieldMappingOverlay.tsx", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_fieldmappingoverlay", + "target": "apps_electron_vite_project_src_components_fieldmappingoverlay_presets", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/FieldMappingOverlay.tsx", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_fieldmappingoverlay", + "target": "apps_electron_vite_project_src_components_fieldmappingoverlay_resizecorner", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/FieldMappingOverlay.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_fieldmappingoverlay", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/FieldMappingOverlay.tsx", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_fieldmappingoverlay", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_fieldmode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/FieldMappingOverlay.tsx", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_fieldmappingoverlay", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_fieldtype", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/FieldMappingOverlay.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_fieldmappingoverlay", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_slugifytemplatefieldname", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/FieldMappingOverlay.tsx", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_fieldmappingoverlay", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_templatefield", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterTemplatePort.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_lettertemplateport", + "target": "apps_electron_vite_project_src_components_fieldmappingoverlay", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/FieldMappingOverlay.tsx", + "source_location": "L389", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_fieldmappingoverlay_fieldmappingoverlay", + "target": "apps_electron_vite_project_src_components_fieldmappingoverlay_getfieldcolor", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/FieldMappingOverlay.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_fieldmappingoverlay_clamprect", + "target": "apps_electron_vite_project_src_components_fieldmappingoverlay_clamp01", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/FieldMappingOverlay.tsx", + "source_location": "L184", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_fieldmappingoverlay_fieldmappingoverlay", + "target": "apps_electron_vite_project_src_components_fieldmappingoverlay_clamp01", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/FieldMappingOverlay.tsx", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_fieldmappingoverlay_normalizedrawrect", + "target": "apps_electron_vite_project_src_components_fieldmappingoverlay_clamprect", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/FieldMappingOverlay.tsx", + "source_location": "L227", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_fieldmappingoverlay_fieldmappingoverlay", + "target": "apps_electron_vite_project_src_components_fieldmappingoverlay_normalizedrawrect", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/FieldMappingOverlay.tsx", + "source_location": "L259", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_fieldmappingoverlay_fieldmappingoverlay", + "target": "apps_electron_vite_project_src_components_fieldmappingoverlay_gettextinrect", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/FieldMappingOverlay.tsx", + "source_location": "L364", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_fieldmappingoverlay_fieldmappingoverlay", + "target": "apps_electron_vite_project_src_components_fieldmappingoverlay_fixedpointforcorner", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/FieldMappingOverlay.tsx", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_fieldmappingoverlay_fieldmappingoverlayprops", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_templatefield", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/FieldMappingOverlay.tsx", + "source_location": "L320", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_fieldmappingoverlay_fieldmappingoverlay", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_slugifytemplatefieldname" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterTemplatePort.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_lettertemplateport", + "target": "apps_electron_vite_project_src_components_fieldmappingoverlay_fieldmappingoverlay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/GpuInferenceBarBadge.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_gpuinferencebarbadge_test", + "target": "apps_electron_vite_project_src_components_gpuinferencebarbadge_test_badgevariant", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/GpuInferenceBarBadge.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_gpuinferencebarbadge_test", + "target": "apps_electron_vite_project_src_components_gpuinferencebarbadge_test_inferencecapabilityforui", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/GpuInferenceBarBadge.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_gpuinferencebarbadge_test", + "target": "apps_electron_vite_project_src_components_gpuinferencebarbadge_test_label", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/GpuInferenceBarBadge.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_gpuinferencebarbadge_test", + "target": "apps_electron_vite_project_src_components_gpuinferencebarbadge_test_tovariant", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/GpuInferenceBarBadge.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_gpuinferencebarbadge", + "target": "apps_electron_vite_project_src_components_gpuinferencebarbadge_badgevariant", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/GpuInferenceBarBadge.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_gpuinferencebarbadge", + "target": "apps_electron_vite_project_src_components_gpuinferencebarbadge_bg", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/GpuInferenceBarBadge.tsx", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_gpuinferencebarbadge", + "target": "apps_electron_vite_project_src_components_gpuinferencebarbadge_gpuinferencebarbadge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/GpuInferenceBarBadge.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_gpuinferencebarbadge", + "target": "apps_electron_vite_project_src_components_gpuinferencebarbadge_label", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/GpuInferenceBarBadge.tsx", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_gpuinferencebarbadge", + "target": "apps_electron_vite_project_src_components_gpuinferencebarbadge_tovariant", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_components_gpuinferencebarbadge", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/GpuInferenceBarBadge.tsx", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_gpuinferencebarbadge_gpuinferencebarbadge", + "target": "apps_electron_vite_project_src_components_gpuinferencebarbadge_tovariant", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_components_gpuinferencebarbadge_gpuinferencebarbadge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeBeapMessages.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakebeapmessages", + "target": "apps_electron_vite_project_src_components_handshakebeapmessages_formatdate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeBeapMessages.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakebeapmessages", + "target": "apps_electron_vite_project_src_components_handshakebeapmessages_formatsourcebadge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeBeapMessages.tsx", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakebeapmessages", + "target": "apps_electron_vite_project_src_components_handshakebeapmessages_handshakebeapmessages", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeBeapMessages.tsx", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakebeapmessages", + "target": "apps_electron_vite_project_src_components_handshakebeapmessages_handshakebeapmessagesprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeBeapMessages.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakebeapmessages", + "target": "apps_electron_vite_project_src_components_handshakeviewtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeBeapMessages.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakebeapmessages", + "target": "apps_electron_vite_project_src_components_inboxattachmentrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeBeapMessages.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakebeapmessages", + "target": "apps_electron_vite_project_src_components_inboxattachmentrow_inboxattachmentrow", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeBeapMessages.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakebeapmessages", + "target": "apps_electron_vite_project_src_components_inboxbeapsourcebadge", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeBeapMessages.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakebeapmessages", + "target": "apps_electron_vite_project_src_components_inboxbeapsourcebadge_inboxbeapsourcebadgelistrow", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeBeapMessages.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakebeapmessages", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeBeapMessages.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakebeapmessages", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeBeapMessages.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakebeapmessages", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxsourcetype", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace", + "target": "apps_electron_vite_project_src_components_handshakebeapmessages", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeBeapMessages.tsx", + "source_location": "L249", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakebeapmessages_handshakebeapmessages", + "target": "apps_electron_vite_project_src_components_handshakebeapmessages_formatdate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeBeapMessages.tsx", + "source_location": "L263", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakebeapmessages_handshakebeapmessages", + "target": "apps_electron_vite_project_src_components_handshakebeapmessages_formatsourcebadge", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace", + "target": "apps_electron_vite_project_src_components_handshakebeapmessages_handshakebeapmessages", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeChatSidebar.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakechatsidebar", + "target": "apps_electron_vite_project_src_components_handshakechatsidebar_chatmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeChatSidebar.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakechatsidebar", + "target": "apps_electron_vite_project_src_components_handshakechatsidebar_handshakechatsidebar", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeChatSidebar.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakechatsidebar", + "target": "apps_electron_vite_project_src_components_handshakechatsidebar_props", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeChatSidebar.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakechatsidebar", + "target": "apps_electron_vite_project_src_components_handshakeviewtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeView.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeview", + "target": "apps_electron_vite_project_src_components_handshakechatsidebar", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeView.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeview", + "target": "apps_electron_vite_project_src_components_handshakechatsidebar_handshakechatsidebar", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeContextSection.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakecontextsection", + "target": "apps_electron_vite_project_src_components_contextescaping", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeContextSection.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakecontextsection", + "target": "apps_electron_vite_project_src_components_contextescaping_verifiedcontextblock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeContextSection.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakecontextsection", + "target": "apps_electron_vite_project_src_components_handshakecontextsection_contenttypelabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeContextSection.tsx", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakecontextsection", + "target": "apps_electron_vite_project_src_components_handshakecontextsection_contextblockcard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeContextSection.tsx", + "source_location": "L280", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakecontextsection", + "target": "apps_electron_vite_project_src_components_handshakecontextsection_handshakecontextsection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeContextSection.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakecontextsection", + "target": "apps_electron_vite_project_src_components_handshakecontextsection_handshakecontextsectionprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeContextSection.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakecontextsection", + "target": "apps_electron_vite_project_src_components_handshakecontextsection_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeContextSection.tsx", + "source_location": "L267", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakecontextsection", + "target": "apps_electron_vite_project_src_components_handshakecontextsection_policypip", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeContextSection.tsx", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakecontextsection", + "target": "apps_electron_vite_project_src_components_handshakecontextsection_sensitivitycolor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeContextSection.tsx", + "source_location": "L250", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakecontextsection", + "target": "apps_electron_vite_project_src_components_handshakecontextsection_typeicon", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeContextSection.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakecontextsection", + "target": "apps_electron_vite_project_src_components_policyradiogroup", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeContextSection.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakecontextsection", + "target": "apps_electron_vite_project_src_components_policyradiogroup_policyradiogroup", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeContextSection.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakecontextsection", + "target": "apps_electron_vite_project_src_components_policyradiogroup_policyselection", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeContextSection.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakecontextsection", + "target": "apps_electron_vite_project_src_styles_uicontrasttokens", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeContextSection.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakecontextsection", + "target": "apps_electron_vite_project_src_styles_uicontrasttokens_ui_badge", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeContextSection.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakecontextsection", + "target": "apps_electron_vite_project_src_styles_uicontrasttokens_ui_button", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/RelationshipDetail.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_relationshipdetail", + "target": "apps_electron_vite_project_src_components_handshakecontextsection", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeContextSection.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakecontextsection_handshakecontextsectionprops", + "target": "apps_electron_vite_project_src_components_contextescaping_verifiedcontextblock", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeContextSection.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakecontextsection_handshakecontextsectionprops", + "target": "apps_electron_vite_project_src_components_policyradiogroup_policyselection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeContextSection.tsx", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakecontextsection_contextblockcard", + "target": "apps_electron_vite_project_src_components_handshakecontextsection_contenttypelabel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeContextSection.tsx", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakecontextsection_contextblockcard", + "target": "apps_electron_vite_project_src_components_handshakecontextsection_sensitivitycolor", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeContextSection.tsx", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakecontextsection_contextblockcard", + "target": "apps_electron_vite_project_src_components_handshakecontextsection_typeicon", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/RelationshipDetail.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_relationshipdetail", + "target": "apps_electron_vite_project_src_components_handshakecontextsection_handshakecontextsection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeHealthOrchestratorBanner.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakehealthorchestratorbanner", + "target": "apps_electron_vite_project_src_components_handshakehealthorchestratorbanner_handshakehealthorchestratorbanner", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeHealthOrchestratorBanner.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakehealthorchestratorbanner", + "target": "apps_electron_vite_project_src_lib_handshakehealthbannercopy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeHealthOrchestratorBanner.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakehealthorchestratorbanner", + "target": "apps_electron_vite_project_src_lib_handshakehealthbannercopy_handshakehealthbannermessage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeHealthOrchestratorBanner.tsx", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakehealthorchestratorbanner", + "target": "packages_shared_src_handshake_activehandshakehealthissue", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeHealthOrchestratorBanner.tsx", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakehealthorchestratorbanner", + "target": "packages_shared_src_handshake_activehandshakehealthissue_activehandshakehealthissue", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HandshakeHealthOrchestratorBanner.tsx", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakehealthorchestratorbanner_handshakehealthorchestratorbanner", + "target": "apps_electron_vite_project_src_lib_handshakehealthbannercopy_handshakehealthbannermessage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeInitiateModal.tsx", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeinitiatemodal", + "target": "apps_electron_vite_project_src_components_handshakeinitiatemodal_handshakeinitiatemodal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeInitiateModal.tsx", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeinitiatemodal", + "target": "apps_electron_vite_project_src_components_handshakeinitiatemodal_prefillrecipientemail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeInitiateModal.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeinitiatemodal", + "target": "apps_electron_vite_project_src_components_handshakeinitiatemodal_prefillrecipientemailasync", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeInitiateModal.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeinitiatemodal", + "target": "apps_electron_vite_project_src_components_handshakeinitiatemodal_props", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeInitiateModal.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeinitiatemodal", + "target": "apps_electron_vite_project_src_components_policyradiogroup", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeInitiateModal.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeinitiatemodal", + "target": "apps_electron_vite_project_src_components_policyradiogroup_default_ai_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeInitiateModal.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeinitiatemodal", + "target": "apps_electron_vite_project_src_components_policyradiogroup_policyradiogroup", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeInitiateModal.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeinitiatemodal", + "target": "apps_electron_vite_project_src_components_policyradiogroup_policyselection", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeInitiateModal.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeinitiatemodal", + "target": "apps_electron_vite_project_src_components_vaultstatusindicator", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeInitiateModal.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeinitiatemodal", + "target": "apps_electron_vite_project_src_components_vaultstatusindicator_vaultstatusindicator", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeInitiateModal.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeinitiatemodal", + "target": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeInitiateModal.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeinitiatemodal", + "target": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery_sendhandshakedelivery", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeInitiateModal.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeinitiatemodal_prefillrecipientemail", + "target": "apps_electron_vite_project_src_components_handshakeinitiatemodal_prefillrecipientemailasync", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeInitiateModal.tsx", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeinitiatemodal_handshakeinitiatemodal", + "target": "apps_electron_vite_project_src_components_handshakeinitiatemodal_prefillrecipientemail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeQuickReview.tsx", + "source_location": "L186", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakequickreview", + "target": "apps_electron_vite_project_src_components_handshakequickreview_blockcard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeQuickReview.tsx", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakequickreview", + "target": "apps_electron_vite_project_src_components_handshakequickreview_blocktitle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeQuickReview.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakequickreview", + "target": "apps_electron_vite_project_src_components_handshakequickreview_contextblockwithvisibility", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeQuickReview.tsx", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakequickreview", + "target": "apps_electron_vite_project_src_components_handshakequickreview_datasection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeQuickReview.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakequickreview", + "target": "apps_electron_vite_project_src_components_handshakequickreview_datasectionprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeQuickReview.tsx", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakequickreview", + "target": "apps_electron_vite_project_src_components_handshakequickreview_extracttextfrompayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeQuickReview.tsx", + "source_location": "L272", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakequickreview", + "target": "apps_electron_vite_project_src_components_handshakequickreview_filterchip", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeQuickReview.tsx", + "source_location": "L312", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakequickreview", + "target": "apps_electron_vite_project_src_components_handshakequickreview_handshakequickreview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeQuickReview.tsx", + "source_location": "L305", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakequickreview", + "target": "apps_electron_vite_project_src_components_handshakequickreview_handshakequickreviewprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeQuickReview.tsx", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakequickreview", + "target": "apps_electron_vite_project_src_components_handshakequickreview_isblockstructured", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeQuickReview.tsx", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakequickreview", + "target": "apps_electron_vite_project_src_components_handshakequickreview_matchessearch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeQuickReview.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakequickreview", + "target": "apps_electron_vite_project_src_components_handshakequickreview_quickreviewfilter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeQuickReview.tsx", + "source_location": "L335", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakequickreview_handshakequickreview", + "target": "apps_electron_vite_project_src_components_handshakequickreview_isblockstructured", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeQuickReview.tsx", + "source_location": "L336", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakequickreview_handshakequickreview", + "target": "apps_electron_vite_project_src_components_handshakequickreview_extracttextfrompayload", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeQuickReview.tsx", + "source_location": "L215", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakequickreview_blockcard", + "target": "apps_electron_vite_project_src_components_handshakequickreview_blocktitle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeQuickReview.tsx", + "source_location": "L406", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakequickreview_handshakequickreview", + "target": "apps_electron_vite_project_src_components_handshakequickreview_matchessearch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeRequestView.tsx", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakerequestview", + "target": "apps_electron_vite_project_src_components_handshakerequestview_handshakerequestview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeRequestView.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakerequestview", + "target": "apps_electron_vite_project_src_components_handshakerequestview_prefillrecipientemail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeRequestView.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakerequestview", + "target": "apps_electron_vite_project_src_components_handshakerequestview_props", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeRequestView.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakerequestview", + "target": "apps_electron_vite_project_src_components_policyradiogroup", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeRequestView.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakerequestview", + "target": "apps_electron_vite_project_src_components_policyradiogroup_default_ai_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeRequestView.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakerequestview", + "target": "apps_electron_vite_project_src_components_policyradiogroup_policyradiogroup", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeRequestView.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakerequestview", + "target": "apps_electron_vite_project_src_components_policyradiogroup_policyselection", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeRequestView.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakerequestview", + "target": "apps_electron_vite_project_src_components_vaultstatusindicator", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeRequestView.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakerequestview", + "target": "apps_electron_vite_project_src_components_vaultstatusindicator_vaultstatusindicator", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeRequestView.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakerequestview", + "target": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeRequestView.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakerequestview", + "target": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery_sendhandshakedelivery", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeRequestView.tsx", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakerequestview_handshakerequestview", + "target": "apps_electron_vite_project_src_components_handshakerequestview_prefillrecipientemail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeView.tsx", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeview", + "target": "apps_electron_vite_project_src_components_handshakeview_counterpartyemail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeView.tsx", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeview", + "target": "apps_electron_vite_project_src_components_handshakeview_formatdate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeView.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeview", + "target": "apps_electron_vite_project_src_components_handshakeview_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeView.tsx", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeview", + "target": "apps_electron_vite_project_src_components_handshakeview_handshakeviewprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeView.tsx", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeview", + "target": "apps_electron_vite_project_src_components_handshakeview_shortid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeView.tsx", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeview", + "target": "apps_electron_vite_project_src_components_handshakeview_statebadge", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeView.tsx", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeview", + "target": "apps_electron_vite_project_src_components_handshakeviewtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeView.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeview", + "target": "apps_electron_vite_project_src_components_handshakeworkspace", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeView.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeview", + "target": "apps_electron_vite_project_src_components_handshakeworkspace_handshakeworkspace", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeView.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeview", + "target": "apps_electron_vite_project_src_components_pendingslideout", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeView.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeview", + "target": "apps_electron_vite_project_src_components_pendingslideout_pendingslideout", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeView.tsx", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeview", + "target": "packages_shared_src_handshake_internalidentityui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeView.tsx", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeview", + "target": "packages_shared_src_handshake_internalidentityui_formatinternallistsubtitle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeView.tsx", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeview", + "target": "packages_shared_src_handshake_internalidentityui_formatinternalpairingidline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeView.tsx", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeview", + "target": "packages_shared_src_handshake_internalidentityui_isinternalhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L251", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace", + "target": "apps_electron_vite_project_src_components_handshakeworkspace_blockcard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L181", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace", + "target": "apps_electron_vite_project_src_components_handshakeworkspace_blocktitle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace", + "target": "apps_electron_vite_project_src_components_handshakeworkspace_contextblockwithvisibility", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace", + "target": "apps_electron_vite_project_src_components_handshakeworkspace_contextgraphfilter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L518", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace", + "target": "apps_electron_vite_project_src_components_handshakeworkspace_copyablehash", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L580", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace", + "target": "apps_electron_vite_project_src_components_handshakeworkspace_cryptodetailscontent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L157", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace", + "target": "apps_electron_vite_project_src_components_handshakeworkspace_extracttextfrompayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace", + "target": "apps_electron_vite_project_src_components_handshakeworkspace_formatdate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace", + "target": "apps_electron_vite_project_src_components_handshakeworkspace_formatstructuredprofilecompact", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace", + "target": "apps_electron_vite_project_src_components_handshakeworkspace_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L697", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace", + "target": "apps_electron_vite_project_src_components_handshakeworkspace_handshakeworkspace", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace", + "target": "apps_electron_vite_project_src_components_handshakeworkspace_handshakeworkspaceprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace", + "target": "apps_electron_vite_project_src_components_handshakeworkspace_hasstructuredprofiledata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L222", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace", + "target": "apps_electron_vite_project_src_components_handshakeworkspace_inlinefilterchip", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace", + "target": "apps_electron_vite_project_src_components_handshakeworkspace_isblockstructured", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L505", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace", + "target": "apps_electron_vite_project_src_components_handshakeworkspace_metarow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L554", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace", + "target": "apps_electron_vite_project_src_components_handshakeworkspace_p2pdeliverystatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L536", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace", + "target": "apps_electron_vite_project_src_components_handshakeworkspace_p2pqueueentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L667", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace", + "target": "apps_electron_vite_project_src_components_handshakeworkspace_parseblockpayloadforprotectedaccess", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace", + "target": "apps_electron_vite_project_src_components_handshakeworkspace_profile_key_patterns", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L538", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace", + "target": "apps_electron_vite_project_src_components_handshakeworkspace_relaystatushint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace", + "target": "apps_electron_vite_project_src_components_handshakeworkspace_shorthash", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace", + "target": "apps_electron_vite_project_src_components_handshakeworkspace_statebadge", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace", + "target": "apps_electron_vite_project_src_components_internalhandshakeidentitypanel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace", + "target": "apps_electron_vite_project_src_components_internalhandshakeidentitypanel_internalhandshakeidentitypanel", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace", + "target": "apps_electron_vite_project_src_components_policyradiogroup", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace", + "target": "apps_electron_vite_project_src_components_policyradiogroup_default_ai_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace", + "target": "apps_electron_vite_project_src_components_policyradiogroup_policyradiogroup", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace", + "target": "apps_electron_vite_project_src_components_policyradiogroup_policyselection", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace", + "target": "apps_electron_vite_project_src_components_protectedaccesswarningdialog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace", + "target": "apps_electron_vite_project_src_components_protectedaccesswarningdialog_protectedaccesswarningdialog", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace", + "target": "apps_electron_vite_project_src_components_structuredhscontextpanel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace", + "target": "apps_electron_vite_project_src_components_structuredhscontextpanel_known_hs_context_link_fields", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace", + "target": "apps_electron_vite_project_src_components_structuredhscontextpanel_structuredhscontextpanel", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace", + "target": "apps_electron_vite_project_src_components_vaultstatusindicator", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace", + "target": "apps_electron_vite_project_src_components_vaultstatusindicator_vaultstatusindicator", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace", + "target": "apps_electron_vite_project_src_styles_uicontrasttokens", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace", + "target": "apps_electron_vite_project_src_styles_uicontrasttokens_ui_badge", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace", + "target": "apps_electron_vite_project_src_styles_uicontrasttokens_ui_button", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace", + "target": "packages_shared_src_handshake_internalidentityui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace", + "target": "packages_shared_src_handshake_internalidentityui_internalidentitysource", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace", + "target": "packages_shared_src_handshake_linkvalidation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace", + "target": "packages_shared_src_handshake_linkvalidation_linkentityid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace", + "target": "packages_shared_src_handshake_linkvalidation_validatehscontextlink", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace", + "target": "packages_shared_src_handshake_policyutils", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace", + "target": "packages_shared_src_handshake_policyutils_parsepolicytomode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L656", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace_cryptodetailscontent", + "target": "apps_electron_vite_project_src_components_handshakeworkspace_formatdate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L840", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace_handshakeworkspace", + "target": "apps_electron_vite_project_src_components_handshakeworkspace_formatdate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L493", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace_blockcard", + "target": "apps_electron_vite_project_src_components_handshakeworkspace_shorthash", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L519", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace_copyablehash", + "target": "apps_electron_vite_project_src_components_handshakeworkspace_shorthash", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L608", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace_cryptodetailscontent", + "target": "apps_electron_vite_project_src_components_handshakeworkspace_shorthash", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L757", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace_handshakeworkspace", + "target": "apps_electron_vite_project_src_components_handshakeworkspace_isblockstructured", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L137", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace_hasstructuredprofiledata", + "target": "apps_electron_vite_project_src_components_handshakeworkspace_profile_key_patterns" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L758", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace_handshakeworkspace", + "target": "apps_electron_vite_project_src_components_handshakeworkspace_hasstructuredprofiledata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L378", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace_blockcard", + "target": "apps_electron_vite_project_src_components_handshakeworkspace_formatstructuredprofilecompact", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L756", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace_handshakeworkspace", + "target": "apps_electron_vite_project_src_components_handshakeworkspace_extracttextfrompayload", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L325", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace_blockcard", + "target": "apps_electron_vite_project_src_components_handshakeworkspace_blocktitle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L271", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace_blockcard", + "target": "apps_electron_vite_project_src_components_handshakeworkspace_parseblockpayloadforprotectedaccess", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L302", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace_blockcard", + "target": "packages_shared_src_handshake_linkvalidation_linkentityid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L273", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace_blockcard", + "target": "packages_shared_src_handshake_linkvalidation_validatehscontextlink", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx", + "source_location": "L733", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeworkspace_handshakeworkspace", + "target": "packages_shared_src_handshake_policyutils_parsepolicytomode" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HsContextDocumentReader.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hscontextdocumentreader", + "target": "apps_electron_vite_project_src_components_hscontextdocumentreader_documentsearchmatch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HsContextDocumentReader.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hscontextdocumentreader", + "target": "apps_electron_vite_project_src_components_hscontextdocumentreader_getdefaultapi", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HsContextDocumentReader.tsx", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hscontextdocumentreader", + "target": "apps_electron_vite_project_src_components_hscontextdocumentreader_hscontextdocumentreader", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HsContextDocumentReader.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hscontextdocumentreader", + "target": "apps_electron_vite_project_src_components_hscontextdocumentreader_hscontextdocumentreaderapi", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HsContextDocumentReader.tsx", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hscontextdocumentreader", + "target": "apps_electron_vite_project_src_components_hscontextdocumentreader_hscontextdocumentreaderprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HsContextDocumentReader.tsx", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hscontextdocumentreader", + "target": "apps_electron_vite_project_src_components_hscontextdocumentreader_splittosyntheticpages", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxDocumentReaderModal.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxdocumentreadermodal", + "target": "apps_electron_vite_project_src_components_hscontextdocumentreader", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/StructuredHsContextPanel.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_structuredhscontextpanel", + "target": "apps_electron_vite_project_src_components_hscontextdocumentreader", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HsContextDocumentReader.tsx", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hscontextdocumentreader_hscontextdocumentreader", + "target": "apps_electron_vite_project_src_components_hscontextdocumentreader_getdefaultapi", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HsContextDocumentReader.tsx", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hscontextdocumentreader_hscontextdocumentreader", + "target": "apps_electron_vite_project_src_components_hscontextdocumentreader_splittosyntheticpages", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxDocumentReaderModal.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxdocumentreadermodal", + "target": "apps_electron_vite_project_src_components_hscontextdocumentreader_hscontextdocumentreader", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/StructuredHsContextPanel.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_structuredhscontextpanel", + "target": "apps_electron_vite_project_src_components_hscontextdocumentreader_hscontextdocumentreader", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_components_handshakeviewtypes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L232", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_components_hybridsearch_availablemodel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L608", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_components_hybridsearch_chatattachment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L483", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_components_hybridsearch_chatsource", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L632", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_components_hybridsearch_chatturn", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L297", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_components_hybridsearch_collectstringsfromjson", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L189", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_components_hybridsearch_dashboardview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L264", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_components_hybridsearch_defaultscope", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_components_hybridsearch_draftrefinehistoryentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L307", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_components_hybridsearch_extractfulltextfrompayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L644", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_components_hybridsearch_filetodataurl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_components_hybridsearch_formatorchestratorselectionlogvalue", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L273", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_components_hybridsearch_friendlytypename", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L245", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_components_hybridsearch_getmodellabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L655", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L220", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_components_hybridsearch_hybridsearchprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L237", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_components_hybridsearch_iscompactuirawid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L328", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_components_hybridsearch_isspecialresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_components_hybridsearch_logorchestratormodelselectionvalidateifchanged", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_components_hybridsearch_matchlettercomposerfieldfrommessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_components_hybridsearch_parsemilestonemarkersfromresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L510", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_components_hybridsearch_parseresponseintoblocks", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L540", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_components_hybridsearch_parsetitleresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L619", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_components_hybridsearch_prependchatattachmentstousertext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L503", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_components_hybridsearch_responseblock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L3842", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_components_hybridsearch_resultrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L334", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_components_hybridsearch_runinboxsearch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L367", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_components_hybridsearch_runsearch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L393", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_components_hybridsearch_runsearchsemantic", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L289", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_components_hybridsearch_sanitizesnippet", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L493", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_components_hybridsearch_scope_labels", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L187", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_components_hybridsearch_searchmode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_components_hybridsearch_searchresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L188", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_components_hybridsearch_searchscope", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L322", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_components_hybridsearch_shortid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L327", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_components_hybridsearch_special_result_ids", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L183", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_components_hybridsearch_subfocus_none", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L637", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_components_hybridsearch_supported_image_types", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L283", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_components_hybridsearch_truncate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L176", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_components_hybridsearch_uifocuscontext", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_hooks_useorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_hooks_useorchestratormode_useorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_hooks_usesandboxhostinference", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_hooks_usesandboxhostinference_hostinferencetargetrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_hooks_usesandboxhostinference_usesandboxhostinference", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_aiexecutioncontextfromselection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_aiexecutioncontextfromselection_buildaiexecutioncontextipcpayload", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_beappackageattachmentpreview", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_beappackageattachmentpreview_extracttextforpackagepreview", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_buildprojectsetupchatprefix", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_buildprojectsetupchatprefix_buildprojectsetupchatprefix", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_hostactivemodelselection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_hostactivemodelselection_getfirstavailablehostmodelid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_hostactivemodelselection_gethostactivemodelidfrommodels", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_hostactivemodelselection_gethostactivemodelidfromtargets", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_hostairemotechatlane", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_hostairemotechatlane_findhostinferencetargetrowforchatselection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_hostairemotechatlane_hostmodelremotelane", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_hostairemotechatlane_inferhostmodelremotelane", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_hostaiselectorcopy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_hostaiselectorcopy_group_cloud", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_hostaiselectorcopy_group_host_models", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_hostaiselectorcopy_group_local_models", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_hostaiselectorcopy_host_ai_selector_icon_class", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_hostaiselectorcopy_host_ai_stale_inline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_hostaiselectorcopy_host_inference_unavailable", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation_computehostinferencegavrowpresentation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation_hostaitargetdevdebugsnippet", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation_hostinferencetargetmenuselectable", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_hostaitargetuinormalization", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_hostaitargetuinormalization_arenormalizedhostaitargetlistsequal", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_hostaitargetuinormalization_serializemergedselectormodelsforstableui", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_hostaiuidiagnostics", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_hostaiuidiagnostics_hostaiendpointdiagnostics", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_hostaiuidiagnostics_hostaiuserfacingmessagefromtarget", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_ishostinferencemodelid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_parseanyhostinferencemodelid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_hostinferenceuigates", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_hostinferenceuigates_directp2preachabilitycopyforsandboxtohost", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_hostmodelselectorrowui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_buildhostaiselectortooltip", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_hostmodelselectorrowui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_hostmodelselectorshowsdefinitivehostfailure", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_hostrefreshfeedback", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_hostrefreshfeedback_gethostrefreshfeedbackfromtargets", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_hostrefreshfeedback_hostrefreshfeedback", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_accountkeyfromsession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_clearorchestratorinferenceselection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_clearpersistedhostaiinferenceselection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_inferenceselectionsource", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_ishostinternalselectionstalefororchestratorui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_persistorchestratormodelid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_readorchestratorinferenceselection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_validateselectionresultwithdiagnostics", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_validatestoredselectionfororchestratorwithdiagnostics", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_inferencetargetrefreshlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_inferencetargetrefreshlog_countmergedmodellist", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_inferencetargetrefreshlog_inferencetargetrefreshreason", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_inferencetargetrefreshlog_loginferencetargetrefreshfromload", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_inferencetargetrefreshlog_loginferencetargetrefreshstart", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_ingestaicontextfiles", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_ingestaicontextfiles_ingestaicontextfiles", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_lettertemplatemultiversion", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_lettertemplatemultiversion_parseletterfilljson", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_lettertemplatemultiversion_wantslettertemplatemultiversion", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility_computeshowhostinferencerefresh", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility_discoveryhashostinternalrows", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility_handshakelocalroleformodelselectorlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility_logmodelselectorshowrefresh", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_modelselectormerge", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_modelselectormerge_maphosttargetstogavmodelentries", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_modelselectortargetslog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_modelselectortargetslog_logmodelselectortargets", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_selectormodellistfromhostdiscovery", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_selectormodellistfromhostdiscovery_fetchselectormodellistfromhostdiscovery", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_selectormodellistfromhostdiscovery_selectoravailablemodel", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_wrdeskuievents", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_lib_wrdeskuievents_wrdesk_focus_ai_chat_event", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_stores_useaidraftcontextstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_stores_useaidraftcontextstore_useaidraftcontextstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_stores_usedraftrefinestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_stores_usedraftrefinestore_usedraftrefinestore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_useemailinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_uselettercomposerstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_stores_useprojectsetupchatcontextstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_stores_useprojectsetupchatcontextstore_projectsetupchathasbridgeablecontent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_stores_useprojectsetupchatcontextstore_useprojectsetupchatcontextstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_stores_useprojectstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_stores_useprojectstore_useprojectstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_styles_uicontrasttokens", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_electron_vite_project_src_styles_uicontrasttokens_ui_badge", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting_appendhostaiattributionline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting_formatinternalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting_getrequesthostcompletion", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting_hostmodeldisplaynamefromselection", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_extension_chromium_src_stores_chatfocusstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_extension_chromium_src_stores_chatfocusstore_usechatfocusstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_extension_chromium_src_utils_chatfocusllmprefix", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch", + "target": "apps_extension_chromium_src_utils_chatfocusllmprefix_getchatfocusllmprefix", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_logorchestratormodelselectionvalidateifchanged", + "target": "apps_electron_vite_project_src_components_hybridsearch_formatorchestratorselectionlogvalue", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L1428", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_components_hybridsearch_logorchestratormodelselectionvalidateifchanged", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L1077", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_components_hybridsearch_matchlettercomposerfieldfrommessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L1146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_components_hybridsearch_parsemilestonemarkersfromresponse", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L247", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_getmodellabel", + "target": "apps_electron_vite_project_src_components_hybridsearch_iscompactuirawid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L2946", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_components_hybridsearch_getmodellabel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L666", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_components_hybridsearch_defaultscope", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L444", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_runsearchsemantic", + "target": "apps_electron_vite_project_src_components_hybridsearch_friendlytypename", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L358", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_runinboxsearch", + "target": "apps_electron_vite_project_src_components_hybridsearch_truncate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L456", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_runsearchsemantic", + "target": "apps_electron_vite_project_src_components_hybridsearch_truncate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L451", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_runsearchsemantic", + "target": "apps_electron_vite_project_src_components_hybridsearch_sanitizesnippet", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L315", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_extractfulltextfrompayload", + "target": "apps_electron_vite_project_src_components_hybridsearch_collectstringsfromjson", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L450", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_runsearchsemantic", + "target": "apps_electron_vite_project_src_components_hybridsearch_extractfulltextfrompayload", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L3800", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_components_hybridsearch_shortid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L3856", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_resultrow", + "target": "apps_electron_vite_project_src_components_hybridsearch_shortid", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L329", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_isspecialresult", + "target": "apps_electron_vite_project_src_components_hybridsearch_special_result_ids" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L3381", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_components_hybridsearch_isspecialresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L376", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_runsearch", + "target": "apps_electron_vite_project_src_components_hybridsearch_runinboxsearch", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L1662", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_components_hybridsearch_runsearch", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L380", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_runsearch", + "target": "apps_electron_vite_project_src_components_hybridsearch_runsearchsemantic", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L1139", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_components_hybridsearch_parseresponseintoblocks", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L1138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_components_hybridsearch_parsetitleresponse", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L1826", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_components_hybridsearch_prependchatattachmentstousertext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L2365", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_components_hybridsearch_supported_image_types" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L2384", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_components_hybridsearch_filetodataurl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L714", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_hooks_useorchestratormode_useorchestratormode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L914", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_hooks_usesandboxhostinference_usesandboxhostinference" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L1341", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_lib_aiexecutioncontextfromselection_buildaiexecutioncontextipcpayload" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L2396", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_lib_beappackageattachmentpreview_extracttextforpackagepreview" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L1472", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_lib_hostactivemodelselection_getfirstavailablehostmodelid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L1419", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_lib_hostactivemodelselection_gethostactivemodelidfrommodels" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L1419", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_lib_hostactivemodelselection_gethostactivemodelidfromtargets" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L1701", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_lib_hostairemotechatlane_findhostinferencetargetrowforchatselection" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L1719", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_lib_hostairemotechatlane_inferhostmodelremotelane" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L1004", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation_computehostinferencegavrowpresentation" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L3115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation_hostaitargetdevdebugsnippet" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L811", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_lib_hostaitargetuinormalization_arenormalizedhostaitargetlistsequal" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L814", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_lib_hostaitargetuinormalization_serializemergedselectormodelsforstableui" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L1019", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_lib_hostaiuidiagnostics_hostaiuserfacingmessagefromtarget" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L968", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_ishostinferencemodelid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L763", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_parseanyhostinferencemodelid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L1026", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_lib_hostinferenceuigates_directp2preachabilitycopyforsandboxtohost" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L3120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_buildhostaiselectortooltip" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L3101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_hostmodelselectorrowui" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L1016", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_hostmodelselectorshowsdefinitivehostfailure" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L820", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_lib_hostrefreshfeedback_gethostrefreshfeedbackfromtargets" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L695", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_accountkeyfromsession" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L1437", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_clearorchestratorinferenceselection" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L1327", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_clearpersistedhostaiinferenceselection" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L930", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_ishostinternalselectionstalefororchestratorui" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L1340", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_persistorchestratormodelid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L1416", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_readorchestratorinferenceselection" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L1421", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_validatestoredselectionfororchestratorwithdiagnostics" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L855", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_lib_inferencetargetrefreshlog_countmergedmodellist" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L858", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_lib_inferencetargetrefreshlog_loginferencetargetrefreshfromload" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L778", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_lib_inferencetargetrefreshlog_loginferencetargetrefreshstart" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L2358", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_lib_ingestaicontextfiles_ingestaicontextfiles" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L1983", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_lib_lettertemplatemultiversion_parseletterfilljson" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L1940", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_lib_lettertemplatemultiversion_wantslettertemplatemultiversion" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L721", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility_computeshowhostinferencerefresh" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L716", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility_discoveryhashostinternalrows" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L748", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility_handshakelocalroleformodelselectorlog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L745", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility_logmodelselectorshowrefresh" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L943", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_lib_modelselectormerge_maphosttargetstogavmodelentries" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L866", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_lib_modelselectortargetslog_logmodelselectortargets" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L803", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_lib_selectormodellistfromhostdiscovery_fetchselectormodellistfromhostdiscovery" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L1096", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_stores_useaidraftcontextstore_useaidraftcontextstore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L1177", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_stores_usedraftrefinestore_usedraftrefinestore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L1181", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_useemailinboxstore" + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L1101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_stores_useprojectsetupchatcontextstore_projectsetupchathasbridgeablecontent" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L1100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_stores_useprojectsetupchatcontextstore_useprojectsetupchatcontextstore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L1106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_electron_vite_project_src_stores_useprojectstore_useprojectstore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L1881", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting_appendhostaiattributionline" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L1727", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting_formatinternalinferenceerrorcode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L1753", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting_getrequesthostcompletion" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L1762", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting_hostmodeldisplaynamefromselection" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L1044", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_extension_chromium_src_stores_chatfocusstore_usechatfocusstore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/HybridSearch.tsx", + "source_location": "L1802", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_hybridsearch_hybridsearch", + "target": "apps_extension_chromium_src_utils_chatfocusllmprefix_getchatfocusllmprefix" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxActionIcons.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxactionicons", + "target": "apps_electron_vite_project_src_components_inboxactionicons_inboxredirectactionicon", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxActionIcons.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxactionicons", + "target": "apps_electron_vite_project_src_components_inboxactionicons_inboxrunautomationactionicon", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxActionIcons.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxactionicons", + "target": "apps_electron_vite_project_src_components_inboxactionicons_inboxsandboxcloneactionicon", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxActionIcons.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxactionicons", + "target": "apps_electron_vite_project_src_components_inboxactionicons_redirectprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxActionIcons.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxactionicons", + "target": "apps_electron_vite_project_src_components_inboxactionicons_runautomationprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxActionIcons.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxactionicons", + "target": "apps_electron_vite_project_src_components_inboxactionicons_sandboxprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxAttachmentRow.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxattachmentrow", + "target": "apps_electron_vite_project_src_components_handshakeviewtypes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxAttachmentRow.tsx", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxattachmentrow", + "target": "apps_electron_vite_project_src_components_inboxattachmentrow_formatsize", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxAttachmentRow.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxattachmentrow", + "target": "apps_electron_vite_project_src_components_inboxattachmentrow_getfileicon", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxAttachmentRow.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxattachmentrow", + "target": "apps_electron_vite_project_src_components_inboxattachmentrow_gettypelabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxAttachmentRow.tsx", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxattachmentrow", + "target": "apps_electron_vite_project_src_components_inboxattachmentrow_inboxattachmentrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxAttachmentRow.tsx", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxattachmentrow", + "target": "apps_electron_vite_project_src_components_inboxattachmentrow_inboxattachmentrowprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxAttachmentRow.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxattachmentrow", + "target": "apps_electron_vite_project_src_components_inboxattachmentrow_ispdfattachment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxAttachmentRow.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxattachmentrow", + "target": "apps_electron_vite_project_src_components_inboxdocumentreadermodal", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxAttachmentRow.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxattachmentrow", + "target": "apps_electron_vite_project_src_components_inboxdocumentreadermodal_inboxdocumentreadermodal", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxAttachmentRow.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxattachmentrow", + "target": "apps_electron_vite_project_src_components_protectedaccesswarningdialog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxAttachmentRow.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxattachmentrow", + "target": "apps_electron_vite_project_src_components_protectedaccesswarningdialog_protectedaccesswarningdialog", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxAttachmentRow.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxattachmentrow", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxAttachmentRow.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxattachmentrow", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxattachment", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxAttachmentRow.tsx", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxattachmentrow_inboxattachmentrow", + "target": "apps_electron_vite_project_src_components_inboxattachmentrow_getfileicon", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxAttachmentRow.tsx", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxattachmentrow_inboxattachmentrow", + "target": "apps_electron_vite_project_src_components_inboxattachmentrow_ispdfattachment", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxAttachmentRow.tsx", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxattachmentrow_inboxattachmentrow", + "target": "apps_electron_vite_project_src_components_inboxattachmentrow_gettypelabel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxAttachmentRow.tsx", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxattachmentrow_inboxattachmentrow", + "target": "apps_electron_vite_project_src_components_inboxattachmentrow_formatsize", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxAttachmentRow.tsx", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxattachmentrow_inboxattachmentrowprops", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxattachment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxBeapSourceBadge.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxbeapsourcebadge", + "target": "apps_electron_vite_project_src_components_inboxbeapsourcebadge_cn", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxBeapSourceBadge.tsx", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxbeapsourcebadge", + "target": "apps_electron_vite_project_src_components_inboxbeapsourcebadge_inboxbeapsourcebadgedetail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxBeapSourceBadge.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxbeapsourcebadge", + "target": "apps_electron_vite_project_src_components_inboxbeapsourcebadge_inboxbeapsourcebadgelistrow", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxBeapSourceBadge.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxbeapsourcebadge", + "target": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxBeapSourceBadge.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxbeapsourcebadge", + "target": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_inbox_direct_beap_badge_tooltip", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxBeapSourceBadge.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxbeapsourcebadge", + "target": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_inbox_sandbox_clone_badge_tooltip", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxBeapSourceBadge.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxbeapsourcebadge", + "target": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_inboxmessageissandboxbeapclone", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxBeapSourceBadge.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxbeapsourcebadge", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxBeapSourceBadge.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxbeapsourcebadge", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxmessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxBeapSourceBadge.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxbeapsourcebadge_inboxbeapsourcebadgedetail", + "target": "apps_electron_vite_project_src_components_inboxbeapsourcebadge_cn", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxBeapSourceBadge.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxbeapsourcebadge_inboxbeapsourcebadgelistrow", + "target": "apps_electron_vite_project_src_components_inboxbeapsourcebadge_cn", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/InboxBeapSourceBadge.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxbeapsourcebadge_inboxbeapsourcebadgelistrow", + "target": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_inboxmessageissandboxbeapclone" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/InboxBeapSourceBadge.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxbeapsourcebadge_inboxbeapsourcebadgedetail", + "target": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_inboxmessageissandboxbeapclone" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxBulkActionsBar.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxbulkactionsbar", + "target": "apps_electron_vite_project_src_components_inboxbulkactionsbar_inboxbulkactionsbar", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxBulkActionsBar.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxbulkactionsbar", + "target": "apps_electron_vite_project_src_components_inboxbulkactionsbar_inboxbulkactionsbarprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxDocumentReaderModal.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxdocumentreadermodal", + "target": "apps_electron_vite_project_src_components_handshakeviewtypes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxDocumentReaderModal.tsx", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxdocumentreadermodal", + "target": "apps_electron_vite_project_src_components_inboxdocumentreadermodal_inboxdocumentreadermodal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxDocumentReaderModal.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxdocumentreadermodal", + "target": "apps_electron_vite_project_src_components_inboxdocumentreadermodal_inboxdocumentreadermodalattachment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxDocumentReaderModal.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxdocumentreadermodal", + "target": "apps_electron_vite_project_src_components_inboxdocumentreadermodal_inboxdocumentreadermodalprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxDocumentReaderModal.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxdocumentreadermodal", + "target": "apps_electron_vite_project_src_components_inboxdocumentreadermodal_ispdfattachment", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxDocumentReaderModal.tsx", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxdocumentreadermodal_inboxdocumentreadermodal", + "target": "apps_electron_vite_project_src_components_inboxdocumentreadermodal_ispdfattachment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxHandshakeNavIcon.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxhandshakenavicon", + "target": "apps_electron_vite_project_src_components_inboxhandshakenavicon_inboxhandshakenaviconbutton", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxHandshakeNavIcon.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxhandshakenavicon", + "target": "apps_electron_vite_project_src_lib_inboxmessagekind", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxHandshakeNavIcon.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxhandshakenavicon", + "target": "apps_electron_vite_project_src_lib_inboxmessagekind_showhandshakenavicon", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxHandshakeNavIcon.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxhandshakenavicon", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxHandshakeNavIcon.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxhandshakenavicon", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxmessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/InboxHandshakeNavIcon.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxhandshakenavicon_inboxhandshakenaviconbutton", + "target": "apps_electron_vite_project_src_lib_inboxmessagekind_showhandshakenavicon" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxMessageKindSelect.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxmessagekindselect", + "target": "apps_electron_vite_project_src_components_inboxmessagekindselect_inboxmessagekindselect", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxMessageKindSelect.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxmessagekindselect", + "target": "apps_electron_vite_project_src_components_inboxmessagekindselect_inboxmessagekindselectprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxMessageKindSelect.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxmessagekindselect", + "target": "apps_electron_vite_project_src_components_inboxmessagekindselect_options", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxMessageKindSelect.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxmessagekindselect", + "target": "apps_electron_vite_project_src_lib_inboxmessagekind", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxMessageKindSelect.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxmessagekindselect", + "target": "apps_electron_vite_project_src_lib_inboxmessagekind_coerceinboxmessagekindfilter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxMessageKindSelect.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxmessagekindselect", + "target": "apps_electron_vite_project_src_lib_inboxmessagekind_inboxmessagekindfilter", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxMessageKindSelect.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxmessagekindselect_inboxmessagekindselectprops", + "target": "apps_electron_vite_project_src_lib_inboxmessagekind_inboxmessagekindfilter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/InboxMessageKindSelect.tsx", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxmessagekindselect_inboxmessagekindselect", + "target": "apps_electron_vite_project_src_lib_inboxmessagekind_coerceinboxmessagekindfilter" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxUrgencyMeter.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxurgencymeter", + "target": "apps_electron_vite_project_src_components_inboxurgencymeter_getinboxurgencyvisuals", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxUrgencyMeter.tsx", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxurgencymeter", + "target": "apps_electron_vite_project_src_components_inboxurgencymeter_inboxurgencymeter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxUrgencyMeter.tsx", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxurgencymeter", + "target": "apps_electron_vite_project_src_components_inboxurgencymeter_inboxurgencymeterprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxUrgencyMeter.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxurgencymeter", + "target": "apps_electron_vite_project_src_components_inboxurgencymeter_inboxurgencyvisuals", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxUrgencyMeter.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxurgencymeter", + "target": "apps_electron_vite_project_src_components_inboxurgencymeter_urgencytierlabel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InboxUrgencyMeter.tsx", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_inboxurgencymeter_inboxurgencymeter", + "target": "apps_electron_vite_project_src_components_inboxurgencymeter_getinboxurgencyvisuals", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/IngestionDelegationModal.test.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_ingestiondelegationmodal_test", + "target": "apps_electron_vite_project_src_components_ingestiondelegationmodal", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/IngestionDelegationModal.test.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_ingestiondelegationmodal_test", + "target": "apps_electron_vite_project_src_components_ingestiondelegationmodal_ingestiondelegationmodal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/IngestionDelegationModal.test.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_ingestiondelegationmodal_test", + "target": "apps_electron_vite_project_src_components_ingestiondelegationmodal_test_render", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/IngestionDelegationModal.tsx", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_ingestiondelegationmodal", + "target": "apps_electron_vite_project_src_components_ingestiondelegationmodal_bodystyle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/IngestionDelegationModal.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_ingestiondelegationmodal", + "target": "apps_electron_vite_project_src_components_ingestiondelegationmodal_cardstyle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/IngestionDelegationModal.tsx", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_ingestiondelegationmodal", + "target": "apps_electron_vite_project_src_components_ingestiondelegationmodal_ctabuttonstyle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/IngestionDelegationModal.tsx", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_ingestiondelegationmodal", + "target": "apps_electron_vite_project_src_components_ingestiondelegationmodal_ctarowstyle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/IngestionDelegationModal.tsx", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_ingestiondelegationmodal", + "target": "apps_electron_vite_project_src_components_ingestiondelegationmodal_ingestiondelegationmodal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/IngestionDelegationModal.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_ingestiondelegationmodal", + "target": "apps_electron_vite_project_src_components_ingestiondelegationmodal_modal_copy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/IngestionDelegationModal.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_ingestiondelegationmodal", + "target": "apps_electron_vite_project_src_components_ingestiondelegationmodal_overlaystyle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/IngestionDelegationModal.tsx", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_ingestiondelegationmodal", + "target": "apps_electron_vite_project_src_components_ingestiondelegationmodal_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/IngestionDelegationModal.tsx", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_ingestiondelegationmodal", + "target": "apps_electron_vite_project_src_components_ingestiondelegationmodal_titlestyle", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/IngestionStatusBanner.test.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_ingestionstatusbanner_test", + "target": "apps_electron_vite_project_src_components_ingestionstatusbanner", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/IngestionStatusBanner.test.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_ingestionstatusbanner_test", + "target": "apps_electron_vite_project_src_components_ingestionstatusbanner_ingestionstatusbanner", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/IngestionStatusBanner.test.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_ingestionstatusbanner_test", + "target": "apps_electron_vite_project_src_components_ingestionstatusbanner_test_makestatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/IngestionStatusBanner.tsx", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_ingestionstatusbanner", + "target": "apps_electron_vite_project_src_components_ingestionstatusbanner_copy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/IngestionStatusBanner.tsx", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_ingestionstatusbanner", + "target": "apps_electron_vite_project_src_components_ingestionstatusbanner_copyforstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/IngestionStatusBanner.tsx", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_ingestionstatusbanner", + "target": "apps_electron_vite_project_src_components_ingestionstatusbanner_ingestionstatusbanner", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/IngestionStatusBanner.tsx", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_ingestionstatusbanner", + "target": "apps_electron_vite_project_src_components_ingestionstatusbanner_props", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/IngestionStatusBanner.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_ingestionstatusbanner", + "target": "apps_electron_vite_project_src_lib_dedicatedsandboxmissingreadprovidercopy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/IngestionStatusBanner.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_ingestionstatusbanner", + "target": "apps_electron_vite_project_src_lib_dedicatedsandboxmissingreadprovidercopy_host_sandbox_poll_unreachable_hint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/IngestionStatusBanner.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_ingestionstatusbanner", + "target": "apps_electron_vite_project_src_lib_dedicatedsandboxmissingreadprovidercopy_host_sandbox_read_account_missing_hint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/IngestionStatusBanner.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_ingestionstatusbanner", + "target": "apps_electron_vite_project_src_lib_dedicatedsandboxmissingreadprovidercopy_sandbox_read_account_setup_cta", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/IngestionStatusBanner.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_ingestionstatusbanner", + "target": "apps_electron_vite_project_src_lib_dedicatedsandboxmissingreadprovidercopy_sandbox_read_account_setup_detail", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/IngestionStatusBanner.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_ingestionstatusbanner", + "target": "apps_electron_vite_project_src_lib_dedicatedsandboxmissingreadprovidercopy_sandbox_read_account_setup_title", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/IngestionStatusBanner.tsx", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_ingestionstatusbanner_ingestionstatusbanner", + "target": "apps_electron_vite_project_src_components_ingestionstatusbanner_copyforstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InternalHandshakeIdentityPanel.tsx", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_internalhandshakeidentitypanel", + "target": "apps_electron_vite_project_src_components_internalhandshakeidentitypanel_internalhandshakeidentitypanel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InternalHandshakeIdentityPanel.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_internalhandshakeidentitypanel", + "target": "apps_electron_vite_project_src_components_internalhandshakeidentitypanel_row", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InternalHandshakeIdentityPanel.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_internalhandshakeidentitypanel", + "target": "packages_shared_src_handshake_internalidentityui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InternalHandshakeIdentityPanel.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_internalhandshakeidentitypanel", + "target": "packages_shared_src_handshake_internalidentityui_formatinternalpairingidline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InternalHandshakeIdentityPanel.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_internalhandshakeidentitypanel", + "target": "packages_shared_src_handshake_internalidentityui_formatinternalprimaryline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InternalHandshakeIdentityPanel.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_internalhandshakeidentitypanel", + "target": "packages_shared_src_handshake_internalidentityui_internalidentityneedsattention", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InternalHandshakeIdentityPanel.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_internalhandshakeidentitypanel", + "target": "packages_shared_src_handshake_internalidentityui_internalidentitysource", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InternalHandshakeIdentityPanel.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_internalhandshakeidentitypanel", + "target": "packages_shared_src_handshake_internalidentityui_isinternalhandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InternalHandshakeIdentityPanel.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_internalhandshakeidentitypanel", + "target": "packages_shared_src_handshake_internalidentityui_localcoordinationdeviceid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InternalHandshakeIdentityPanel.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_internalhandshakeidentitypanel", + "target": "packages_shared_src_handshake_internalidentityui_localorchestratorkind", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InternalHandshakeIdentityPanel.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_internalhandshakeidentitypanel", + "target": "packages_shared_src_handshake_internalidentityui_orchestratoruserlabel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InternalHandshakeIdentityPanel.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_internalhandshakeidentitypanel", + "target": "packages_shared_src_handshake_internalidentityui_peerstableidentifier", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InternalHandshakeIdentityPanel.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_internalhandshakeidentitypanel", + "target": "packages_shared_src_handshake_internalidentityui_shortdeviceidforui", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/RelationshipDetail.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_relationshipdetail", + "target": "apps_electron_vite_project_src_components_internalhandshakeidentitypanel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/InternalHandshakeIdentityPanel.tsx", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_internalhandshakeidentitypanel_internalhandshakeidentitypanel", + "target": "apps_electron_vite_project_src_components_internalhandshakeidentitypanel_row", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L739", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis_alignmentpanel", + "target": "apps_electron_vite_project_src_components_internalhandshakeidentitypanel_row" + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L719", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_preexecutionanalysis_preflightalignmentpanel", + "target": "apps_electron_vite_project_src_components_internalhandshakeidentitypanel_row" + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/electron-vite-project/src/lib/appendHostRowsFromListInference.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_appendhostrowsfromlistinference_appendhostrowsfromlistinference", + "target": "apps_electron_vite_project_src_components_internalhandshakeidentitypanel_row" + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/electron-vite-project/src/lib/selectorModelListFromHostDiscovery.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_selectormodellistfromhostdiscovery_fetchselectormodellistfromhostdiscovery", + "target": "apps_electron_vite_project_src_components_internalhandshakeidentitypanel_row" + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L626", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_renderexpertslist", + "target": "apps_electron_vite_project_src_components_internalhandshakeidentitypanel_row" + }, + { + "relation": "indirect_call", + "context": "collection", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/extension-chromium/src/lib/wrChatSelectionHygiene.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatselectionhygiene_hostrowsforhandshake", + "target": "apps_electron_vite_project_src_components_internalhandshakeidentitypanel_row" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/InternalHandshakeIdentityPanel.tsx", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_internalhandshakeidentitypanel_internalhandshakeidentitypanel", + "target": "packages_shared_src_handshake_internalidentityui_formatinternalpairingidline" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/InternalHandshakeIdentityPanel.tsx", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_internalhandshakeidentitypanel_internalhandshakeidentitypanel", + "target": "packages_shared_src_handshake_internalidentityui_formatinternalprimaryline" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/InternalHandshakeIdentityPanel.tsx", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_internalhandshakeidentitypanel_internalhandshakeidentitypanel", + "target": "packages_shared_src_handshake_internalidentityui_internalidentityneedsattention" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/InternalHandshakeIdentityPanel.tsx", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_internalhandshakeidentitypanel_internalhandshakeidentitypanel", + "target": "packages_shared_src_handshake_internalidentityui_isinternalhandshake" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/InternalHandshakeIdentityPanel.tsx", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_internalhandshakeidentitypanel_internalhandshakeidentitypanel", + "target": "packages_shared_src_handshake_internalidentityui_localcoordinationdeviceid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/InternalHandshakeIdentityPanel.tsx", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_internalhandshakeidentitypanel_internalhandshakeidentitypanel", + "target": "packages_shared_src_handshake_internalidentityui_localorchestratorkind" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/InternalHandshakeIdentityPanel.tsx", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_internalhandshakeidentitypanel_internalhandshakeidentitypanel", + "target": "packages_shared_src_handshake_internalidentityui_orchestratoruserlabel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/InternalHandshakeIdentityPanel.tsx", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_internalhandshakeidentitypanel_internalhandshakeidentitypanel", + "target": "packages_shared_src_handshake_internalidentityui_peerstableidentifier" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/InternalHandshakeIdentityPanel.tsx", + "source_location": "L158", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_internalhandshakeidentitypanel_internalhandshakeidentitypanel", + "target": "packages_shared_src_handshake_internalidentityui_shortdeviceidforui" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/RelationshipDetail.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_relationshipdetail", + "target": "apps_electron_vite_project_src_components_internalhandshakeidentitypanel_internalhandshakeidentitypanel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LETmeGIRAFFETHATFORYOUIcons.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letmegiraffethatforyouicons", + "target": "apps_electron_vite_project_src_components_letmegiraffethatforyouicons_letmegiraffethatforyouicons", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterComposerPortSelectButton.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_lettercomposerportselectbutton", + "target": "apps_electron_vite_project_src_components_lettercomposerportselectbutton_portselectbutton", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterComposerPortSelectButton.tsx", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_lettercomposerportselectbutton", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterComposerPortSelectButton.tsx", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_lettercomposerportselectbutton", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_uselettercomposerstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterTemplatePort.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_lettertemplateport", + "target": "apps_electron_vite_project_src_components_lettercomposerportselectbutton", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport", + "target": "apps_electron_vite_project_src_components_lettercomposerportselectbutton", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/LetterComposerPortSelectButton.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_lettercomposerportselectbutton_portselectbutton", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_uselettercomposerstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterTemplatePort.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_lettertemplateport", + "target": "apps_electron_vite_project_src_components_lettercomposerportselectbutton_portselectbutton", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport", + "target": "apps_electron_vite_project_src_components_lettercomposerportselectbutton_portselectbutton", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterComposerView.tsx", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_lettercomposerview", + "target": "apps_electron_vite_project_src_components_lettercomposerview_lettercomposerview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterComposerView.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_lettercomposerview", + "target": "apps_electron_vite_project_src_components_lettercomposerview_synclettercomposerchatfocus", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterComposerView.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_lettercomposerview", + "target": "apps_electron_vite_project_src_components_lettertemplateport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterComposerView.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_lettercomposerview", + "target": "apps_electron_vite_project_src_components_lettertemplateport_lettertemplateport", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterComposerView.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_lettercomposerview", + "target": "apps_electron_vite_project_src_components_letterviewerport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterComposerView.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_lettercomposerview", + "target": "apps_electron_vite_project_src_components_letterviewerport_letterviewerport", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterComposerView.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_lettercomposerview", + "target": "apps_electron_vite_project_src_stores_usedraftrefinestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterComposerView.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_lettercomposerview", + "target": "apps_electron_vite_project_src_stores_usedraftrefinestore_usedraftrefinestore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterComposerView.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_lettercomposerview", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterComposerView.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_lettercomposerview", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_uselettercomposerstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterComposerView.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_lettercomposerview", + "target": "apps_extension_chromium_src_stores_chatfocusstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterComposerView.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_lettercomposerview", + "target": "apps_extension_chromium_src_stores_chatfocusstore_usechatfocusstore", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/electron-vite-project/src/components/LetterComposerView.tsx", + "source_location": "L218", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_lettercomposerview_lettercomposerview", + "target": "apps_electron_vite_project_src_components_lettercomposerview_synclettercomposerchatfocus", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/LetterComposerView.tsx", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_lettercomposerview_lettercomposerview", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_uselettercomposerstore" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterTemplatePort.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_lettertemplateport", + "target": "apps_electron_vite_project_src_components_lettertemplateport_body_line_widths", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterTemplatePort.tsx", + "source_location": "L137", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_lettertemplateport", + "target": "apps_electron_vite_project_src_components_lettertemplateport_coercefieldtype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterTemplatePort.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_lettertemplateport", + "target": "apps_electron_vite_project_src_components_lettertemplateport_lettercomposerpdffriendlyerror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterTemplatePort.tsx", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_lettertemplateport", + "target": "apps_electron_vite_project_src_components_lettertemplateport_lettertemplateport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterTemplatePort.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_lettertemplateport", + "target": "apps_electron_vite_project_src_components_lettertemplateport_templatepreviewthumb", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterTemplatePort.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_lettertemplateport", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterTemplatePort.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_lettertemplateport", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_builtin_templates", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterTemplatePort.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_lettertemplateport", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_builtinlayout", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterTemplatePort.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_lettertemplateport", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_builtintemplate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterTemplatePort.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_lettertemplateport", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_createlettercomposesession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterTemplatePort.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_lettertemplateport", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_fieldtype", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterTemplatePort.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_lettertemplateport", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_lettertemplate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterTemplatePort.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_lettertemplateport", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_templatefield", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterTemplatePort.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_lettertemplateport", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_uselettercomposerstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterTemplatePort.tsx", + "source_location": "L676", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_lettertemplateport_lettertemplateport", + "target": "apps_electron_vite_project_src_components_lettertemplateport_lettercomposerpdffriendlyerror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterTemplatePort.tsx", + "source_location": "L836", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_lettertemplateport_lettertemplateport", + "target": "apps_electron_vite_project_src_components_lettertemplateport_coercefieldtype", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/LetterTemplatePort.tsx", + "source_location": "L239", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_lettertemplateport_lettertemplateport", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_createlettercomposesession" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/LetterTemplatePort.tsx", + "source_location": "L142", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_lettertemplateport_lettertemplateport", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_uselettercomposerstore" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport", + "target": "apps_electron_vite_project_src_components_letterviewerport_applyreplyrecipienttotemplate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport", + "target": "apps_electron_vite_project_src_components_letterviewerport_averageconfidence", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport", + "target": "apps_electron_vite_project_src_components_letterviewerport_buildcombinednameaddressblock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport", + "target": "apps_electron_vite_project_src_components_letterviewerport_combinesenderlinesforreplyrecipient", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L304", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport", + "target": "apps_electron_vite_project_src_components_letterviewerport_extractedrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L205", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport", + "target": "apps_electron_vite_project_src_components_letterviewerport_findbodyfield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport", + "target": "apps_electron_vite_project_src_components_letterviewerport_finddatefield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport", + "target": "apps_electron_vite_project_src_components_letterviewerport_findprimaryrecipientfield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L187", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport", + "target": "apps_electron_vite_project_src_components_letterviewerport_findrecipientemailfield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L194", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport", + "target": "apps_electron_vite_project_src_components_letterviewerport_findrecipientphonefield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport", + "target": "apps_electron_vite_project_src_components_letterviewerport_findreferencefield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L201", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport", + "target": "apps_electron_vite_project_src_components_letterviewerport_findsalutationfield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L169", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport", + "target": "apps_electron_vite_project_src_components_letterviewerport_findsenderaddressfield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L155", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport", + "target": "apps_electron_vite_project_src_components_letterviewerport_findsendernamefield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport", + "target": "apps_electron_vite_project_src_components_letterviewerport_findsubjectfield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport", + "target": "apps_electron_vite_project_src_components_letterviewerport_getconfidencelevel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L277", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport", + "target": "apps_electron_vite_project_src_components_letterviewerport_hasextractedcontent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport", + "target": "apps_electron_vite_project_src_components_letterviewerport_isimagefilename", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L144", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport", + "target": "apps_electron_vite_project_src_components_letterviewerport_issendercontactsubfield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L282", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport", + "target": "apps_electron_vite_project_src_components_letterviewerport_letterhaslowconfidencefields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L396", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport", + "target": "apps_electron_vite_project_src_components_letterviewerport_letterviewerport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L213", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport", + "target": "apps_electron_vite_project_src_components_letterviewerport_mapextractedtotemplatefield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport", + "target": "apps_electron_vite_project_src_components_letterviewerport_multiline_keys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L292", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport", + "target": "apps_electron_vite_project_src_components_letterviewerport_readactivellmmodelid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport", + "target": "apps_electron_vite_project_src_components_letterviewerport_reference_contact_keys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport", + "target": "apps_electron_vite_project_src_components_letterviewerport_reference_contact_labels", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L181", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport", + "target": "apps_electron_vite_project_src_components_letterviewerport_resolvesendertemplatefield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L240", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport", + "target": "apps_electron_vite_project_src_components_letterviewerport_resolvetemplatefieldforsemanticname", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L384", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport", + "target": "apps_electron_vite_project_src_components_letterviewerport_saveletterfiletostorage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_letterpage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_scannedletter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_templatefield", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_uselettercomposerstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L516", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport_letterviewerport", + "target": "apps_electron_vite_project_src_components_letterviewerport_isimagefilename", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L1161", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport_letterviewerport", + "target": "apps_electron_vite_project_src_components_letterviewerport_multiline_keys" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L984", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport_letterviewerport", + "target": "apps_electron_vite_project_src_components_letterviewerport_reference_contact_keys" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L335", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport_extractedrow", + "target": "apps_electron_vite_project_src_components_letterviewerport_getconfidencelevel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L899", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport_letterviewerport", + "target": "apps_electron_vite_project_src_components_letterviewerport_buildcombinednameaddressblock", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L905", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport_letterviewerport", + "target": "apps_electron_vite_project_src_components_letterviewerport_averageconfidence", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L740", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport_letterviewerport", + "target": "apps_electron_vite_project_src_components_letterviewerport_combinesenderlinesforreplyrecipient", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport_applyreplyrecipienttotemplate", + "target": "apps_electron_vite_project_src_components_letterviewerport_findprimaryrecipientfield", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L250", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport_resolvetemplatefieldforsemanticname", + "target": "apps_electron_vite_project_src_components_letterviewerport_findprimaryrecipientfield", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L746", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport_letterviewerport", + "target": "apps_electron_vite_project_src_components_letterviewerport_applyreplyrecipienttotemplate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L259", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport_resolvetemplatefieldforsemanticname", + "target": "apps_electron_vite_project_src_components_letterviewerport_findsubjectfield", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L261", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport_resolvetemplatefieldforsemanticname", + "target": "apps_electron_vite_project_src_components_letterviewerport_findreferencefield", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L263", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport_resolvetemplatefieldforsemanticname", + "target": "apps_electron_vite_project_src_components_letterviewerport_finddatefield", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport_findsendernamefield", + "target": "apps_electron_vite_project_src_components_letterviewerport_issendercontactsubfield", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L184", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport_resolvesendertemplatefield", + "target": "apps_electron_vite_project_src_components_letterviewerport_findsendernamefield", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L184", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport_resolvesendertemplatefield", + "target": "apps_electron_vite_project_src_components_letterviewerport_findsenderaddressfield", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L257", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport_resolvetemplatefieldforsemanticname", + "target": "apps_electron_vite_project_src_components_letterviewerport_resolvesendertemplatefield", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L265", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport_resolvetemplatefieldforsemanticname", + "target": "apps_electron_vite_project_src_components_letterviewerport_findrecipientemailfield", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L267", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport_resolvetemplatefieldforsemanticname", + "target": "apps_electron_vite_project_src_components_letterviewerport_findrecipientphonefield", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L269", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport_resolvetemplatefieldforsemanticname", + "target": "apps_electron_vite_project_src_components_letterviewerport_findsalutationfield", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L271", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport_resolvetemplatefieldforsemanticname", + "target": "apps_electron_vite_project_src_components_letterviewerport_findbodyfield", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L708", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport_letterviewerport", + "target": "apps_electron_vite_project_src_components_letterviewerport_mapextractedtotemplatefield", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L716", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport_letterviewerport", + "target": "apps_electron_vite_project_src_components_letterviewerport_resolvetemplatefieldforsemanticname", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L1071", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport_letterviewerport", + "target": "apps_electron_vite_project_src_components_letterviewerport_hasextractedcontent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L978", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport_letterviewerport", + "target": "apps_electron_vite_project_src_components_letterviewerport_letterhaslowconfidencefields", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L438", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport_letterviewerport", + "target": "apps_electron_vite_project_src_components_letterviewerport_readactivellmmodelid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L535", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport_letterviewerport", + "target": "apps_electron_vite_project_src_components_letterviewerport_saveletterfiletostorage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/LetterViewerPort.tsx", + "source_location": "L397", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_letterviewerport_letterviewerport", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_uselettercomposerstore" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LinkWarningDialog.tsx", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_linkwarningdialog", + "target": "apps_electron_vite_project_src_components_linkwarningdialog_linkwarningdialog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LinkWarningDialog.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_linkwarningdialog", + "target": "apps_electron_vite_project_src_components_linkwarningdialog_linkwarningdialogprops", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_canclaimverified", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_default_verification_flags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_drawertabid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_verificationflags", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_evidencedrawer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_evidencedrawer_evidencedrawer", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_alignmentrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_alignmentstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_all_domains", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_available_traces", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_compareevents", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_computealignment", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_computefocusstatewithstickiness", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_computelayoutspec", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_computeobservations", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_createdefaultfilter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_createinitialstickinessstate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_createliveevent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_default_claims", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_demo_event_sequence", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_event_type_to_domain", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_eventdomain", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_eventfilter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_filterevents", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_filterrisksbytrace", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_focusstate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_focusstickinessstate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_generatelayoutcssvars", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_generateriskevents", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_getrisksforalignmentrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_gettoprisks", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_layoutspec", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_liveevent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_liveeventtype", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_panelid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_riskevent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_severity_priority", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_traceid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_herokpi_executionstatushero", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_index", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_liveexecutionanalysis_activeprocess", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L142", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_liveexecutionanalysis_activeprocesseshero", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_liveexecutionanalysis_activeprocessesheroprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L711", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_liveexecutionanalysis_alignmentpanel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L694", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_liveexecutionanalysis_alignmentpanelprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L461", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_liveexecutionanalysis_focuspanel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L455", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_liveexecutionanalysis_focuspanelprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L340", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_liveexecutionanalysis_geteventicon", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L353", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_liveexecutionanalysis_geteventlabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L701", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_liveexecutionanalysis_getstatuslabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_liveexecutionanalysis_livedeeplink", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L779", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_liveexecutionanalysis_liveexecutionanalysis", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_liveexecutionanalysis_liveexecutionanalysisprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_liveexecutionanalysis_mockactiveprocesses", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L324", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_liveexecutionanalysis_panelheader", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L317", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_liveexecutionanalysis_panelheaderprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L614", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_liveexecutionanalysis_secondarypanel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L605", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_liveexecutionanalysis_secondarypanelprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L380", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_liveexecutionanalysis_timelinepanel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L370", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_liveexecutionanalysis_timelinepanelprops", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis_livedeeplink", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_drawertabid", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis_liveexecutionanalysisprops", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_verificationflags", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L559", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis_focuspanel", + "target": "apps_electron_vite_project_src_components_liveexecutionanalysis_geteventicon", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L658", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis_secondarypanel", + "target": "apps_electron_vite_project_src_components_liveexecutionanalysis_geteventicon", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L408", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis_timelinepanel", + "target": "apps_electron_vite_project_src_components_liveexecutionanalysis_geteventicon", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L560", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis_focuspanel", + "target": "apps_electron_vite_project_src_components_liveexecutionanalysis_geteventlabel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L674", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis_secondarypanel", + "target": "apps_electron_vite_project_src_components_liveexecutionanalysis_geteventlabel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L410", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis_timelinepanel", + "target": "apps_electron_vite_project_src_components_liveexecutionanalysis_geteventlabel", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L371", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis_timelinepanelprops", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_liveevent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L376", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis_timelinepanelprops", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_riskevent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L456", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis_focuspanelprops", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_focusstate", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L457", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis_focuspanelprops", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_liveevent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L607", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis_secondarypanelprops", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_liveevent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L606", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis_secondarypanelprops", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_panelid", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L695", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis_alignmentpanelprops", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_alignmentrow", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L696", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis_alignmentpanelprops", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_riskevent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L761", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis_alignmentpanel", + "target": "apps_electron_vite_project_src_components_liveexecutionanalysis_getstatuslabel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L738", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis_alignmentpanel", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_getrisksforalignmentrow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L785", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_canclaimverified" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L823", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_available_traces" + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L1109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_compareevents" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L910", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_computealignment" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L934", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_computefocusstatewithstickiness" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L964", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_computelayoutspec" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L905", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_computeobservations" + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L804", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_createdefaultfilter" + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L792", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_createinitialstickinessstate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L982", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_createliveevent" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L1259", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_eventdomain" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L869", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_filterevents" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L879", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_filterrisksbytrace" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L969", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_generatelayoutcssvars" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L874", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_generateriskevents" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L1057", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_getrisksforalignmentrow" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L887", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_gettoprisks" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx", + "source_location": "L1242", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_liveexecutionanalysis_liveexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_traceid" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/P2PStatusBadge.tsx", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_p2pstatusbadge", + "target": "apps_electron_vite_project_src_components_p2pstatusbadge_chip", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/P2PStatusBadge.tsx", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_p2pstatusbadge", + "target": "apps_electron_vite_project_src_components_p2pstatusbadge_isauthrelatederror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/P2PStatusBadge.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_p2pstatusbadge", + "target": "apps_electron_vite_project_src_components_p2pstatusbadge_p2phealthstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/P2PStatusBadge.tsx", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_p2pstatusbadge", + "target": "apps_electron_vite_project_src_components_p2pstatusbadge_p2pstatusbadge", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/P2PStatusBadge.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_p2pstatusbadge", + "target": "apps_electron_vite_project_src_styles_uicontrasttokens", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/P2PStatusBadge.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_p2pstatusbadge", + "target": "apps_electron_vite_project_src_styles_uicontrasttokens_ui_badge", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/P2PStatusBadge.tsx", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_p2pstatusbadge_p2pstatusbadge", + "target": "apps_electron_vite_project_src_components_p2pstatusbadge_isauthrelatederror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PendingSlideOut.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_pendingslideout", + "target": "apps_electron_vite_project_src_components_pendingslideout_formatdate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PendingSlideOut.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_pendingslideout", + "target": "apps_electron_vite_project_src_components_pendingslideout_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PendingSlideOut.tsx", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_pendingslideout", + "target": "apps_electron_vite_project_src_components_pendingslideout_pendingslideout", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PendingSlideOut.tsx", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_pendingslideout", + "target": "apps_electron_vite_project_src_components_pendingslideout_pendingslideoutprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PendingSlideOut.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_pendingslideout", + "target": "apps_electron_vite_project_src_components_pendingslideout_shortid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PendingSlideOut.tsx", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_pendingslideout", + "target": "apps_electron_vite_project_src_components_pendingslideout_statebadge", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PendingSlideOut.tsx", + "source_location": "L161", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_pendingslideout_pendingslideout", + "target": "apps_electron_vite_project_src_components_pendingslideout_shortid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PendingSlideOut.tsx", + "source_location": "L161", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_pendingslideout_pendingslideout", + "target": "apps_electron_vite_project_src_components_pendingslideout_formatdate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PolicyRadioGroup.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_policyradiogroup", + "target": "apps_electron_vite_project_src_components_policyradiogroup_default_ai_policy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PolicyRadioGroup.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_policyradiogroup", + "target": "apps_electron_vite_project_src_components_policyradiogroup_options", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PolicyRadioGroup.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_policyradiogroup", + "target": "apps_electron_vite_project_src_components_policyradiogroup_policyradiogroup", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PolicyRadioGroup.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_policyradiogroup", + "target": "apps_electron_vite_project_src_components_policyradiogroup_policyradiogroupprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PolicyRadioGroup.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_policyradiogroup", + "target": "apps_electron_vite_project_src_components_policyradiogroup_policyselection", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PolicyRadioGroup.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_policyradiogroup", + "target": "packages_shared_src_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PolicyRadioGroup.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_policyradiogroup", + "target": "packages_shared_src_handshake_types_aiprocessingmode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/RelationshipDetail.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_relationshipdetail", + "target": "apps_electron_vite_project_src_components_policyradiogroup", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PolicyRadioGroup.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_policyradiogroup_policyselection", + "target": "packages_shared_src_handshake_types_aiprocessingmode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/RelationshipDetail.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_relationshipdetail", + "target": "apps_electron_vite_project_src_components_policyradiogroup_policyselection", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/RelationshipDetail.tsx", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_relationshipdetail_handshakerecord", + "target": "apps_electron_vite_project_src_components_policyradiogroup_policyselection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/RelationshipDetail.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_relationshipdetail", + "target": "apps_electron_vite_project_src_components_policyradiogroup_default_ai_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_postexecutionverification", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_canclaimverified", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_postexecutionverification", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_default_verification_flags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_postexecutionverification", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_verificationflags", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_postexecutionverification", + "target": "apps_electron_vite_project_src_components_analysis_index", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L838", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_postexecutionverification", + "target": "apps_electron_vite_project_src_components_postexecutionverification_agenttimelineitem", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L236", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_postexecutionverification", + "target": "apps_electron_vite_project_src_components_postexecutionverification_aiagent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L1129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_postexecutionverification", + "target": "apps_electron_vite_project_src_components_postexecutionverification_audittrailsection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L737", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_postexecutionverification", + "target": "apps_electron_vite_project_src_components_postexecutionverification_evidencebundle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L664", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_postexecutionverification", + "target": "apps_electron_vite_project_src_components_postexecutionverification_executionsummary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L704", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_postexecutionverification", + "target": "apps_electron_vite_project_src_components_postexecutionverification_executiontimeline", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L417", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_postexecutionverification", + "target": "apps_electron_vite_project_src_components_postexecutionverification_getpoaeeventtypelabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_postexecutionverification", + "target": "apps_electron_vite_project_src_components_postexecutionverification_mockartefactevidence", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_postexecutionverification", + "target": "apps_electron_vite_project_src_components_postexecutionverification_mockcapsuleevidence", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_postexecutionverification", + "target": "apps_electron_vite_project_src_components_postexecutionverification_mockexecutionrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L257", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_postexecutionverification", + "target": "apps_electron_vite_project_src_components_postexecutionverification_mockpoaeloghistory", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_postexecutionverification", + "target": "apps_electron_vite_project_src_components_postexecutionverification_mockpoaeplaceholder", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_postexecutionverification", + "target": "apps_electron_vite_project_src_components_postexecutionverification_mockpolicysnapshot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_postexecutionverification", + "target": "apps_electron_vite_project_src_components_postexecutionverification_mocktimelinesteps", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L157", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_postexecutionverification", + "target": "apps_electron_vite_project_src_components_postexecutionverification_mockworkflowanalysis", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L649", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_postexecutionverification", + "target": "apps_electron_vite_project_src_components_postexecutionverification_panelheader", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L226", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_postexecutionverification", + "target": "apps_electron_vite_project_src_components_postexecutionverification_poaeevent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L224", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_postexecutionverification", + "target": "apps_electron_vite_project_src_components_postexecutionverification_poaeeventtype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L981", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_postexecutionverification", + "target": "apps_electron_vite_project_src_components_postexecutionverification_poaeherosection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L868", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_postexecutionverification", + "target": "apps_electron_vite_project_src_components_postexecutionverification_poaeinlinehistory", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L243", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_postexecutionverification", + "target": "apps_electron_vite_project_src_components_postexecutionverification_poaelogentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L1169", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_postexecutionverification", + "target": "apps_electron_vite_project_src_components_postexecutionverification_postexecutionverification", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_postexecutionverification", + "target": "apps_electron_vite_project_src_components_postexecutionverification_postexecutionverificationprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L439", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_postexecutionverification", + "target": "apps_electron_vite_project_src_components_postexecutionverification_workflowanalysismodal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L431", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_postexecutionverification", + "target": "apps_electron_vite_project_src_components_postexecutionverification_workflowanalysismodalprops", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_postexecutionverification_postexecutionverificationprops", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_verificationflags", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L1043", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_postexecutionverification_poaeherosection", + "target": "apps_electron_vite_project_src_components_postexecutionverification_getpoaeeventtypelabel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L928", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_postexecutionverification_poaeinlinehistory", + "target": "apps_electron_vite_project_src_components_postexecutionverification_getpoaeeventtypelabel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/PostExecutionVerification.tsx", + "source_location": "L1176", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_postexecutionverification_postexecutionverification", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_canclaimverified" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_preexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_canclaimverified", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_preexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_default_verification_flags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_preexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_drawertabid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_preexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_verificationflags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_preexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_herokpi_quickaction", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_preexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_herokpi_quickactionbar", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_preexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_herokpi_readinessgauge", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_preexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_index", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L463", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_preexecutionanalysis", + "target": "apps_electron_vite_project_src_components_preexecutionanalysis_automationoverview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_preexecutionanalysis", + "target": "apps_electron_vite_project_src_components_preexecutionanalysis_awaitingapproval", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L998", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_preexecutionanalysis", + "target": "apps_electron_vite_project_src_components_preexecutionanalysis_awaitingapprovalshero", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L991", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_preexecutionanalysis", + "target": "apps_electron_vite_project_src_components_preexecutionanalysis_awaitingapprovalsheroprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L575", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_preexecutionanalysis", + "target": "apps_electron_vite_project_src_components_preexecutionanalysis_consentrequirements", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L823", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_preexecutionanalysis", + "target": "apps_electron_vite_project_src_components_preexecutionanalysis_deeplinknotfoundbanner", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L818", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_preexecutionanalysis", + "target": "apps_electron_vite_project_src_components_preexecutionanalysis_deeplinknotfoundbannerprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L689", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_preexecutionanalysis", + "target": "apps_electron_vite_project_src_components_preexecutionanalysis_getalignmentstatuslabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L764", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_preexecutionanalysis", + "target": "apps_electron_vite_project_src_components_preexecutionanalysis_getseveritybadgeclass", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_preexecutionanalysis", + "target": "apps_electron_vite_project_src_components_preexecutionanalysis_mockautomationsteps", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_preexecutionanalysis", + "target": "apps_electron_vite_project_src_components_preexecutionanalysis_mockawaitingapprovals", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L184", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_preexecutionanalysis", + "target": "apps_electron_vite_project_src_components_preexecutionanalysis_mockconsentrequirements", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_preexecutionanalysis", + "target": "apps_electron_vite_project_src_components_preexecutionanalysis_mockpreexecutionworkflow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L214", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_preexecutionanalysis", + "target": "apps_electron_vite_project_src_components_preexecutionanalysis_mockpreflightalignment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L267", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_preexecutionanalysis", + "target": "apps_electron_vite_project_src_components_preexecutionanalysis_mockpreflightrisks", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_preexecutionanalysis", + "target": "apps_electron_vite_project_src_components_preexecutionanalysis_mockrisksummary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_preexecutionanalysis", + "target": "apps_electron_vite_project_src_components_preexecutionanalysis_mocksessiondata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L361", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_preexecutionanalysis", + "target": "apps_electron_vite_project_src_components_preexecutionanalysis_mocktemplateannotations", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L156", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_preexecutionanalysis", + "target": "apps_electron_vite_project_src_components_preexecutionanalysis_mocktemplatedata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L389", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_preexecutionanalysis", + "target": "apps_electron_vite_project_src_components_preexecutionanalysis_panelheader", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L853", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_preexecutionanalysis", + "target": "apps_electron_vite_project_src_components_preexecutionanalysis_preexecutionagentitem", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L1215", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_preexecutionanalysis", + "target": "apps_electron_vite_project_src_components_preexecutionanalysis_preexecutionanalysis", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_preexecutionanalysis", + "target": "apps_electron_vite_project_src_components_preexecutionanalysis_preexecutionanalysisprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_preexecutionanalysis", + "target": "apps_electron_vite_project_src_components_preexecutionanalysis_preexecutiondeeplink", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L878", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_preexecutionanalysis", + "target": "apps_electron_vite_project_src_components_preexecutionanalysis_preexecutionworkflowmodal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L843", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_preexecutionanalysis", + "target": "apps_electron_vite_project_src_components_preexecutionanalysis_preexecutionworkflowmodalprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L698", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_preexecutionanalysis", + "target": "apps_electron_vite_project_src_components_preexecutionanalysis_preflightalignmentpanel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L683", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_preexecutionanalysis", + "target": "apps_electron_vite_project_src_components_preexecutionanalysis_preflightalignmentpanelprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L205", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_preexecutionanalysis", + "target": "apps_electron_vite_project_src_components_preexecutionanalysis_preflightalignmentrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L768", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_preexecutionanalysis", + "target": "apps_electron_vite_project_src_components_preexecutionanalysis_preflightriskdetailspanel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L757", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_preexecutionanalysis", + "target": "apps_electron_vite_project_src_components_preexecutionanalysis_preflightriskdetailspanelprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L258", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_preexecutionanalysis", + "target": "apps_electron_vite_project_src_components_preexecutionanalysis_preflightriskrule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L618", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_preexecutionanalysis", + "target": "apps_electron_vite_project_src_components_preexecutionanalysis_risksummary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L303", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_preexecutionanalysis", + "target": "apps_electron_vite_project_src_components_preexecutionanalysis_templateannotation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L399", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_preexecutionanalysis", + "target": "apps_electron_vite_project_src_components_preexecutionanalysis_templateinspector", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L506", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_preexecutionanalysis", + "target": "apps_electron_vite_project_src_components_preexecutionanalysis_templatesourceviewer", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_preexecutionanalysis_preexecutiondeeplink", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_drawertabid", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_preexecutionanalysis_preexecutionanalysisprops", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_verificationflags", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L738", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_preexecutionanalysis_preflightalignmentpanel", + "target": "apps_electron_vite_project_src_components_preexecutionanalysis_getalignmentstatuslabel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L798", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_preexecutionanalysis_preflightriskdetailspanel", + "target": "apps_electron_vite_project_src_components_preexecutionanalysis_getseveritybadgeclass", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx", + "source_location": "L1222", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_preexecutionanalysis_preexecutionanalysis", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_canclaimverified" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/ProtectedAccessWarningDialog.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_protectedaccesswarningdialog", + "target": "apps_electron_vite_project_src_components_protectedaccesswarningdialog_dialogkind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/ProtectedAccessWarningDialog.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_protectedaccesswarningdialog", + "target": "apps_electron_vite_project_src_components_protectedaccesswarningdialog_link_copy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/ProtectedAccessWarningDialog.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_protectedaccesswarningdialog", + "target": "apps_electron_vite_project_src_components_protectedaccesswarningdialog_original_copy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/ProtectedAccessWarningDialog.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_protectedaccesswarningdialog", + "target": "apps_electron_vite_project_src_components_protectedaccesswarningdialog_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/ProtectedAccessWarningDialog.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_protectedaccesswarningdialog", + "target": "apps_electron_vite_project_src_components_protectedaccesswarningdialog_protectedaccesswarningdialog", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/StructuredHsContextPanel.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_structuredhscontextpanel", + "target": "apps_electron_vite_project_src_components_protectedaccesswarningdialog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/StructuredHsContextPanel.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_structuredhscontextpanel", + "target": "apps_electron_vite_project_src_components_protectedaccesswarningdialog_protectedaccesswarningdialog", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/RelationshipDetail.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_relationshipdetail", + "target": "apps_electron_vite_project_src_components_contextescaping", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/RelationshipDetail.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_relationshipdetail", + "target": "apps_electron_vite_project_src_components_contextescaping_verifiedcontextblock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/RelationshipDetail.tsx", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_relationshipdetail", + "target": "apps_electron_vite_project_src_components_relationshipdetail_copyablehash", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/RelationshipDetail.tsx", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_relationshipdetail", + "target": "apps_electron_vite_project_src_components_relationshipdetail_formatdate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/RelationshipDetail.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_relationshipdetail", + "target": "apps_electron_vite_project_src_components_relationshipdetail_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/RelationshipDetail.tsx", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_relationshipdetail", + "target": "apps_electron_vite_project_src_components_relationshipdetail_metarow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/RelationshipDetail.tsx", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_relationshipdetail", + "target": "apps_electron_vite_project_src_components_relationshipdetail_p2pdeliverystatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/RelationshipDetail.tsx", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_relationshipdetail", + "target": "apps_electron_vite_project_src_components_relationshipdetail_p2pqueueentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/RelationshipDetail.tsx", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_relationshipdetail", + "target": "apps_electron_vite_project_src_components_relationshipdetail_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/RelationshipDetail.tsx", + "source_location": "L233", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_relationshipdetail", + "target": "apps_electron_vite_project_src_components_relationshipdetail_relationshipdetail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/RelationshipDetail.tsx", + "source_location": "L168", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_relationshipdetail", + "target": "apps_electron_vite_project_src_components_relationshipdetail_relaystatushint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/RelationshipDetail.tsx", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_relationshipdetail", + "target": "apps_electron_vite_project_src_components_relationshipdetail_shorthash", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/RelationshipDetail.tsx", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_relationshipdetail", + "target": "apps_electron_vite_project_src_components_relationshipdetail_statebadge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/RelationshipDetail.tsx", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_relationshipdetail", + "target": "apps_electron_vite_project_src_components_relationshipdetail_vaultstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/RelationshipDetail.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_relationshipdetail", + "target": "apps_electron_vite_project_src_components_securecontextsyncpendingbanner", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/RelationshipDetail.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_relationshipdetail", + "target": "apps_electron_vite_project_src_components_securecontextsyncpendingbanner_securecontextsyncpendingbanner", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/RelationshipDetail.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_relationshipdetail", + "target": "apps_electron_vite_project_src_components_vaultstatusindicator", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/RelationshipDetail.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_relationshipdetail", + "target": "apps_electron_vite_project_src_components_vaultstatusindicator_vaultstatusindicator", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/RelationshipDetail.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_relationshipdetail", + "target": "packages_shared_src_handshake_internalidentityui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/RelationshipDetail.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_relationshipdetail", + "target": "packages_shared_src_handshake_internalidentityui_internalidentitysource", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/RelationshipDetail.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_relationshipdetail", + "target": "packages_shared_src_handshake_policyutils", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/RelationshipDetail.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_relationshipdetail", + "target": "packages_shared_src_handshake_policyutils_parsepolicytomode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/RelationshipDetail.tsx", + "source_location": "L303", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_relationshipdetail_relationshipdetail", + "target": "apps_electron_vite_project_src_components_relationshipdetail_formatdate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/RelationshipDetail.tsx", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_relationshipdetail_copyablehash", + "target": "apps_electron_vite_project_src_components_relationshipdetail_shorthash", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/RelationshipDetail.tsx", + "source_location": "L511", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_relationshipdetail_relationshipdetail", + "target": "apps_electron_vite_project_src_components_relationshipdetail_shorthash", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/RelationshipDetail.tsx", + "source_location": "L243", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_relationshipdetail_relationshipdetail", + "target": "packages_shared_src_handshake_policyutils_parsepolicytomode" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/RelaySetupWizard.tsx", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_relaysetupwizard", + "target": "apps_electron_vite_project_src_components_relaysetupwizard_codeblock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/RelaySetupWizard.tsx", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_relaysetupwizard", + "target": "apps_electron_vite_project_src_components_relaysetupwizard_relaysetupwizard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/RelaySetupWizard.tsx", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_relaysetupwizard", + "target": "apps_electron_vite_project_src_components_relaysetupwizard_relaysetupwizardprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/RelaySetupWizard.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_relaysetupwizard", + "target": "apps_electron_vite_project_src_components_relaysetupwizard_wizardstate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/RevocationNoticeBanner.test.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_revocationnoticebanner_test", + "target": "apps_electron_vite_project_src_components_revocationnoticebanner", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/RevocationNoticeBanner.test.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_revocationnoticebanner_test", + "target": "apps_electron_vite_project_src_components_revocationnoticebanner_revocationnoticebanner", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/RevocationNoticeBanner.test.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_revocationnoticebanner_test", + "target": "apps_electron_vite_project_src_components_revocationnoticebanner_test_makenotice", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/RevocationNoticeBanner.test.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_revocationnoticebanner_test", + "target": "apps_electron_vite_project_src_components_revocationnoticebanner_test_render", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/RevocationNoticeBanner.test.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_revocationnoticebanner_test", + "target": "apps_electron_vite_project_src_hooks_userevocationbanner", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/RevocationNoticeBanner.test.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_revocationnoticebanner_test", + "target": "apps_electron_vite_project_src_hooks_userevocationbanner_revokenoticerecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/RevocationNoticeBanner.tsx", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_revocationnoticebanner", + "target": "apps_electron_vite_project_src_components_revocationnoticebanner_bannerstyle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/RevocationNoticeBanner.tsx", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_revocationnoticebanner", + "target": "apps_electron_vite_project_src_components_revocationnoticebanner_contentstyle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/RevocationNoticeBanner.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_revocationnoticebanner", + "target": "apps_electron_vite_project_src_components_revocationnoticebanner_copy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/RevocationNoticeBanner.tsx", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_revocationnoticebanner", + "target": "apps_electron_vite_project_src_components_revocationnoticebanner_detailstyle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/RevocationNoticeBanner.tsx", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_revocationnoticebanner", + "target": "apps_electron_vite_project_src_components_revocationnoticebanner_dismissbtnstyle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/RevocationNoticeBanner.tsx", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_revocationnoticebanner", + "target": "apps_electron_vite_project_src_components_revocationnoticebanner_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/RevocationNoticeBanner.tsx", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_revocationnoticebanner", + "target": "apps_electron_vite_project_src_components_revocationnoticebanner_revocationnoticebanner", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/RevocationNoticeBanner.tsx", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_revocationnoticebanner", + "target": "apps_electron_vite_project_src_components_revocationnoticebanner_titlestyle", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/RevocationNoticeBanner.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_revocationnoticebanner", + "target": "apps_electron_vite_project_src_hooks_userevocationbanner", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/RevocationNoticeBanner.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_revocationnoticebanner", + "target": "apps_electron_vite_project_src_hooks_userevocationbanner_revokenoticerecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SandboxCloneDisclosure.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_sandboxclonedisclosure", + "target": "apps_electron_vite_project_src_components_sandboxclonedisclosure_metarow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SandboxCloneDisclosure.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_sandboxclonedisclosure", + "target": "apps_electron_vite_project_src_components_sandboxclonedisclosure_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SandboxCloneDisclosure.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_sandboxclonedisclosure", + "target": "apps_electron_vite_project_src_components_sandboxclonedisclosure_sandboxclonedisclosure", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SandboxCloneDisclosure.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_sandboxclonedisclosure", + "target": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SandboxCloneDisclosure.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_sandboxclonedisclosure", + "target": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_sandboxcloneuimeta", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SandboxCloneDisclosure.tsx", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_sandboxclonedisclosure_sandboxclonedisclosure", + "target": "apps_electron_vite_project_src_components_sandboxclonedisclosure_metarow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SandboxCloneFeedbackBadge.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_sandboxclonefeedbackbadge", + "target": "apps_electron_vite_project_src_components_sandboxclonefeedbackbadge_iconglyph", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SandboxCloneFeedbackBadge.tsx", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_sandboxclonefeedbackbadge", + "target": "apps_electron_vite_project_src_components_sandboxclonefeedbackbadge_sandboxclonefeedbackbadge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SandboxCloneFeedbackBadge.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_sandboxclonefeedbackbadge", + "target": "apps_electron_vite_project_src_components_sandboxclonefeedbackbadge_sandboxclonefeedbackbadgeprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SandboxCloneFeedbackBadge.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_sandboxclonefeedbackbadge", + "target": "apps_electron_vite_project_src_components_sandboxclonefeedbackbadge_variant_class", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SandboxCloneFeedbackBadge.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_sandboxclonefeedbackbadge", + "target": "apps_electron_vite_project_src_lib_openappexternalurl", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SandboxCloneFeedbackBadge.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_sandboxclonefeedbackbadge", + "target": "apps_electron_vite_project_src_lib_openappexternalurl_openappexternalurl", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SandboxCloneFeedbackBadge.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_sandboxclonefeedbackbadge", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SandboxCloneFeedbackBadge.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_sandboxclonefeedbackbadge", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_sandboxclonefeedbackvariant", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SandboxCloneFeedbackBadge.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_sandboxclonefeedbackbadge", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_sandboxclonefeedbackview", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/SandboxCloneFeedbackBadge.tsx", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_sandboxclonefeedbackbadge_sandboxclonefeedbackbadge", + "target": "apps_electron_vite_project_src_lib_openappexternalurl_openappexternalurl" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SandboxLinkInfoDialog.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_sandboxlinkinfodialog", + "target": "apps_electron_vite_project_src_components_sandboxlinkinfodialog_card", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SandboxLinkInfoDialog.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_sandboxlinkinfodialog", + "target": "apps_electron_vite_project_src_components_sandboxlinkinfodialog_sandboxlinkinfodialog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SandboxLinkInfoDialog.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_sandboxlinkinfodialog", + "target": "apps_electron_vite_project_src_components_sandboxlinkinfodialog_sandboxlinkinfodialogprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SandboxLinkInfoDialog.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_sandboxlinkinfodialog", + "target": "apps_electron_vite_project_src_styles_uicontrasttokens", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SandboxLinkInfoDialog.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_sandboxlinkinfodialog", + "target": "apps_electron_vite_project_src_styles_uicontrasttokens_ui_button", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SandboxLockSurface.test.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_sandboxlocksurface_test", + "target": "apps_electron_vite_project_src_components_sandboxlocksurface", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SandboxLockSurface.test.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_sandboxlocksurface_test", + "target": "apps_electron_vite_project_src_components_sandboxlocksurface_sandbox_lock_copy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SandboxLockSurface.test.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_sandboxlocksurface_test", + "target": "apps_electron_vite_project_src_components_sandboxlocksurface_sandboxlocksurface", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SandboxLockSurface.test.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_sandboxlocksurface_test", + "target": "apps_electron_vite_project_src_components_sandboxlocksurface_test_render", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SandboxLockSurface.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_sandboxlocksurface", + "target": "apps_electron_vite_project_src_components_sandboxlocksurface_sandbox_lock_copy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SandboxLockSurface.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_sandboxlocksurface", + "target": "apps_electron_vite_project_src_components_sandboxlocksurface_sandboxlocksurface", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SandboxLockSurface.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_sandboxlocksurface", + "target": "apps_electron_vite_project_src_components_sandboxlocksurface_sandboxlocksurfaceprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SandboxReadCleanupHint.test.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_sandboxreadcleanuphint_test", + "target": "apps_electron_vite_project_src_components_sandboxreadcleanuphint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SandboxReadCleanupHint.test.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_sandboxreadcleanuphint_test", + "target": "apps_electron_vite_project_src_components_sandboxreadcleanuphint_sandboxreadcleanuphint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SandboxReadCleanupHint.test.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_sandboxreadcleanuphint_test", + "target": "apps_electron_vite_project_src_components_sandboxreadcleanuphint_test_makehint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SandboxReadCleanupHint.test.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_sandboxreadcleanuphint_test", + "target": "apps_electron_vite_project_src_components_sandboxreadcleanuphint_test_render", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SandboxReadCleanupHint.test.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_sandboxreadcleanuphint_test", + "target": "apps_electron_vite_project_src_hooks_usesandboxreadcleanuphint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SandboxReadCleanupHint.test.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_sandboxreadcleanuphint_test", + "target": "apps_electron_vite_project_src_hooks_usesandboxreadcleanuphint_sandboxreadcleanuphintstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SandboxReadCleanupHint.tsx", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_sandboxreadcleanuphint", + "target": "apps_electron_vite_project_src_components_sandboxreadcleanuphint_accounthint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SandboxReadCleanupHint.tsx", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_sandboxreadcleanuphint", + "target": "apps_electron_vite_project_src_components_sandboxreadcleanuphint_accounthintprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SandboxReadCleanupHint.tsx", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_sandboxreadcleanuphint", + "target": "apps_electron_vite_project_src_components_sandboxreadcleanuphint_actionsstyle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SandboxReadCleanupHint.tsx", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_sandboxreadcleanuphint", + "target": "apps_electron_vite_project_src_components_sandboxreadcleanuphint_bannerstyle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SandboxReadCleanupHint.tsx", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_sandboxreadcleanuphint", + "target": "apps_electron_vite_project_src_components_sandboxreadcleanuphint_contentstyle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SandboxReadCleanupHint.tsx", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_sandboxreadcleanuphint", + "target": "apps_electron_vite_project_src_components_sandboxreadcleanuphint_detailstyle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SandboxReadCleanupHint.tsx", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_sandboxreadcleanuphint", + "target": "apps_electron_vite_project_src_components_sandboxreadcleanuphint_dismissbtnstyle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SandboxReadCleanupHint.tsx", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_sandboxreadcleanuphint", + "target": "apps_electron_vite_project_src_components_sandboxreadcleanuphint_linkstyle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SandboxReadCleanupHint.tsx", + "source_location": "L193", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_sandboxreadcleanuphint", + "target": "apps_electron_vite_project_src_components_sandboxreadcleanuphint_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SandboxReadCleanupHint.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_sandboxreadcleanuphint", + "target": "apps_electron_vite_project_src_components_sandboxreadcleanuphint_provider_security_links", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SandboxReadCleanupHint.tsx", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_sandboxreadcleanuphint", + "target": "apps_electron_vite_project_src_components_sandboxreadcleanuphint_providerlink", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SandboxReadCleanupHint.tsx", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_sandboxreadcleanuphint", + "target": "apps_electron_vite_project_src_components_sandboxreadcleanuphint_removebtnstyle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SandboxReadCleanupHint.tsx", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_sandboxreadcleanuphint", + "target": "apps_electron_vite_project_src_components_sandboxreadcleanuphint_rowstyle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SandboxReadCleanupHint.tsx", + "source_location": "L198", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_sandboxreadcleanuphint", + "target": "apps_electron_vite_project_src_components_sandboxreadcleanuphint_sandboxreadcleanuphint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SandboxReadCleanupHint.tsx", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_sandboxreadcleanuphint", + "target": "apps_electron_vite_project_src_components_sandboxreadcleanuphint_titlestyle", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SandboxReadCleanupHint.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_sandboxreadcleanuphint", + "target": "apps_electron_vite_project_src_hooks_usesandboxreadcleanuphint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SandboxReadCleanupHint.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_sandboxreadcleanuphint", + "target": "apps_electron_vite_project_src_hooks_usesandboxreadcleanuphint_sandboxreadcleanuphintstate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SandboxReadCleanupHint.tsx", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_sandboxreadcleanuphint_accounthint", + "target": "apps_electron_vite_project_src_components_sandboxreadcleanuphint_providerlink", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SecureContextSyncPendingBanner.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_securecontextsyncpendingbanner", + "target": "apps_electron_vite_project_src_components_securecontextsyncpendingbanner_queuesnap", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SecureContextSyncPendingBanner.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_securecontextsyncpendingbanner", + "target": "apps_electron_vite_project_src_components_securecontextsyncpendingbanner_securecontextsyncpendingbanner", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SessionImportDialog.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_sessionimportdialog", + "target": "apps_electron_vite_project_src_components_sessionimportdialog_sessionimportdialog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SessionImportDialog.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_sessionimportdialog", + "target": "apps_electron_vite_project_src_components_sessionimportdialog_sessionimportdialogprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SessionImportDialog.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_sessionimportdialog", + "target": "apps_electron_vite_project_src_components_sessionimportdialog_sessionimportdialogsessionref", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/StructuredHsContextPanel.tsx", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_structuredhscontextpanel", + "target": "apps_electron_vite_project_src_components_structuredhscontextpanel_hasaddressparts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/StructuredHsContextPanel.tsx", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_structuredhscontextpanel", + "target": "apps_electron_vite_project_src_components_structuredhscontextpanel_hascontacts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/StructuredHsContextPanel.tsx", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_structuredhscontextpanel", + "target": "apps_electron_vite_project_src_components_structuredhscontextpanel_hascustomfieldswithcontent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/StructuredHsContextPanel.tsx", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_structuredhscontextpanel", + "target": "apps_electron_vite_project_src_components_structuredhscontextpanel_hasopeninghours", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/StructuredHsContextPanel.tsx", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_structuredhscontextpanel", + "target": "apps_electron_vite_project_src_components_structuredhscontextpanel_haspaymentmethods", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/StructuredHsContextPanel.tsx", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_structuredhscontextpanel", + "target": "apps_electron_vite_project_src_components_structuredhscontextpanel_hasstr", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/StructuredHsContextPanel.tsx", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_structuredhscontextpanel", + "target": "apps_electron_vite_project_src_components_structuredhscontextpanel_known_hs_context_link_fields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/StructuredHsContextPanel.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_structuredhscontextpanel", + "target": "apps_electron_vite_project_src_components_structuredhscontextpanel_parseddocument", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/StructuredHsContextPanel.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_structuredhscontextpanel", + "target": "apps_electron_vite_project_src_components_structuredhscontextpanel_parsedpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/StructuredHsContextPanel.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_structuredhscontextpanel", + "target": "apps_electron_vite_project_src_components_structuredhscontextpanel_parsedprofile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/StructuredHsContextPanel.tsx", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_structuredhscontextpanel", + "target": "apps_electron_vite_project_src_components_structuredhscontextpanel_parsehscontextpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/StructuredHsContextPanel.tsx", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_structuredhscontextpanel", + "target": "apps_electron_vite_project_src_components_structuredhscontextpanel_sectionheader", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/StructuredHsContextPanel.tsx", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_structuredhscontextpanel", + "target": "apps_electron_vite_project_src_components_structuredhscontextpanel_sectionrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/StructuredHsContextPanel.tsx", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_structuredhscontextpanel", + "target": "apps_electron_vite_project_src_components_structuredhscontextpanel_structuredhscontextblock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/StructuredHsContextPanel.tsx", + "source_location": "L463", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_structuredhscontextpanel", + "target": "apps_electron_vite_project_src_components_structuredhscontextpanel_structuredhscontextpanel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/StructuredHsContextPanel.tsx", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_structuredhscontextpanel", + "target": "apps_electron_vite_project_src_components_structuredhscontextpanel_structuredhscontextpanelprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/StructuredHsContextPanel.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_structuredhscontextpanel", + "target": "packages_shared_src_handshake_linkvalidation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/StructuredHsContextPanel.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_structuredhscontextpanel", + "target": "packages_shared_src_handshake_linkvalidation_linkentityid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/StructuredHsContextPanel.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_structuredhscontextpanel", + "target": "packages_shared_src_handshake_linkvalidation_validatehscontextlink", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/StructuredHsContextPanel.tsx", + "source_location": "L142", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_structuredhscontextpanel_structuredhscontextblock", + "target": "apps_electron_vite_project_src_components_structuredhscontextpanel_parsehscontextpayload", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/StructuredHsContextPanel.tsx", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_structuredhscontextpanel_hasaddressparts", + "target": "apps_electron_vite_project_src_components_structuredhscontextpanel_hasstr", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/StructuredHsContextPanel.tsx", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_structuredhscontextpanel_hascustomfieldswithcontent", + "target": "apps_electron_vite_project_src_components_structuredhscontextpanel_hasstr", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/StructuredHsContextPanel.tsx", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_structuredhscontextpanel_hasopeninghours", + "target": "apps_electron_vite_project_src_components_structuredhscontextpanel_hasstr", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/StructuredHsContextPanel.tsx", + "source_location": "L186", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_structuredhscontextpanel_structuredhscontextblock", + "target": "apps_electron_vite_project_src_components_structuredhscontextpanel_hasstr", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/StructuredHsContextPanel.tsx", + "source_location": "L254", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_structuredhscontextpanel_structuredhscontextblock", + "target": "apps_electron_vite_project_src_components_structuredhscontextpanel_hasopeninghours", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/StructuredHsContextPanel.tsx", + "source_location": "L274", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_structuredhscontextpanel_structuredhscontextblock", + "target": "apps_electron_vite_project_src_components_structuredhscontextpanel_haspaymentmethods", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/StructuredHsContextPanel.tsx", + "source_location": "L239", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_structuredhscontextpanel_structuredhscontextblock", + "target": "apps_electron_vite_project_src_components_structuredhscontextpanel_hascontacts", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/StructuredHsContextPanel.tsx", + "source_location": "L196", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_structuredhscontextpanel_structuredhscontextblock", + "target": "apps_electron_vite_project_src_components_structuredhscontextpanel_hasaddressparts", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/StructuredHsContextPanel.tsx", + "source_location": "L451", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_structuredhscontextpanel_structuredhscontextblock", + "target": "apps_electron_vite_project_src_components_structuredhscontextpanel_hascustomfieldswithcontent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/StructuredHsContextPanel.tsx", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_structuredhscontextpanel_structuredhscontextblock", + "target": "packages_shared_src_handshake_linkvalidation_validatehscontextlink", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/StructuredHsContextPanel.tsx", + "source_location": "L513", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_structuredhscontextpanel_structuredhscontextpanel", + "target": "packages_shared_src_handshake_linkvalidation_linkentityid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/StructuredHsContextPanel.tsx", + "source_location": "L511", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_structuredhscontextpanel_structuredhscontextpanel", + "target": "packages_shared_src_handshake_linkvalidation_validatehscontextlink" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SyncFailureBanner.test.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_syncfailurebanner_test", + "target": "apps_electron_vite_project_src_components_syncfailurebanner", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SyncFailureBanner.test.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_syncfailurebanner_test", + "target": "apps_electron_vite_project_src_components_syncfailurebanner_syncfailurebanner", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SyncFailureBanner.test.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_syncfailurebanner_test", + "target": "apps_electron_vite_project_src_utils_syncfailureui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SyncFailureBanner.test.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_syncfailurebanner_test", + "target": "apps_electron_vite_project_src_utils_syncfailureui_delegated_sync_marker", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SyncFailureBanner.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_syncfailurebanner", + "target": "apps_electron_vite_project_src_components_syncfailurebanner_accountlite", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SyncFailureBanner.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_syncfailurebanner", + "target": "apps_electron_vite_project_src_components_syncfailurebanner_parsedrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SyncFailureBanner.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_syncfailurebanner", + "target": "apps_electron_vite_project_src_components_syncfailurebanner_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SyncFailureBanner.tsx", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_syncfailurebanner", + "target": "apps_electron_vite_project_src_components_syncfailurebanner_syncfailurebanner", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SyncFailureBanner.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_syncfailurebanner", + "target": "apps_electron_vite_project_src_utils_syncfailureui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SyncFailureBanner.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_syncfailurebanner", + "target": "apps_electron_vite_project_src_utils_syncfailureui_buildtlssyncfailurecopy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SyncFailureBanner.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_syncfailurebanner", + "target": "apps_electron_vite_project_src_utils_syncfailureui_classifysyncfailuremessage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SyncFailureBanner.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_syncfailurebanner", + "target": "apps_electron_vite_project_src_utils_syncfailureui_parsebracketedaccountsyncmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/SyncFailureBanner.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_syncfailurebanner", + "target": "apps_electron_vite_project_src_utils_syncfailureui_syncfailurekind", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/SyncFailureBanner.tsx", + "source_location": "L253", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_syncfailurebanner_syncfailurebanner", + "target": "apps_electron_vite_project_src_utils_syncfailureui_buildtlssyncfailurecopy" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/SyncFailureBanner.tsx", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_syncfailurebanner_syncfailurebanner", + "target": "apps_electron_vite_project_src_utils_syncfailureui_classifysyncfailuremessage" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/SyncFailureBanner.tsx", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_syncfailurebanner_syncfailurebanner", + "target": "apps_electron_vite_project_src_utils_syncfailureui_parsebracketedaccountsyncmessage" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/ThisDeviceCard.test.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_thisdevicecard_test", + "target": "apps_electron_vite_project_src_components_thisdevicecard", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/ThisDeviceCard.test.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_thisdevicecard_test", + "target": "apps_electron_vite_project_src_components_thisdevicecard_thisdevicecard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/ThisDeviceCard.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_thisdevicecard", + "target": "apps_electron_vite_project_src_components_thisdevicecard_formatpairingcode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/ThisDeviceCard.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_thisdevicecard", + "target": "apps_electron_vite_project_src_components_thisdevicecard_thisdevicecard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/ThisDeviceCard.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_thisdevicecard", + "target": "apps_electron_vite_project_src_components_thisdevicecard_thisdevicecardprops", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/ThisDeviceCard.tsx", + "source_location": "L157", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_thisdevicecard_thisdevicecard", + "target": "apps_electron_vite_project_src_components_thisdevicecard_formatpairingcode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/VaultStatusIndicator.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_vaultstatusindicator", + "target": "apps_electron_vite_project_src_components_vaultstatusindicator_vaultstatusindicator", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/VaultStatusIndicator.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_vaultstatusindicator", + "target": "apps_electron_vite_project_src_components_vaultstatusindicator_vaultstatusindicatorprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WrChatDashboardPanel.tsx", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardpanel", + "target": "apps_electron_vite_project_src_components_wrchatdashboardview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_components_wrchatdashboardview_dashboardtheme", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_components_wrchatdashboardview_wrchatdashboardview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_components_wrchatdashboardview_wrchatdashboardviewprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_components_wrchatdashboardview_wrchatmodeloption", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_components_wrchatdashboardview_wrchatmodelsforpersist", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_hooks_useorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_hooks_useorchestratormode_useorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_hooks_usesandboxhostinference", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_hooks_usesandboxhostinference_hostinferencetargetrow", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_aiexecutioncontextfromselection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_aiexecutioncontextfromselection_buildaiexecutioncontextipcpayload", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_hostactivemodelselection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_hostactivemodelselection_getfirstavailablehostmodelid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_hostactivemodelselection_gethostactivemodelidfromtargets", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_hostaiselectorcopy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_hostaiselectorcopy_host_inference_unavailable", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_hostaitargetuinormalization", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_hostaitargetuinormalization_arenormalizedhostaitargetlistsequal", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_hostaitargetuinormalization_serializemergedselectormodelsforstableui", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_ishostinferencemodelid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_hostmodelselectorrowui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_buildhostaiselectortooltip", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_hostmodelselectorrowui", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_hostrefreshfeedback", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_hostrefreshfeedback_gethostrefreshfeedbackfromtargets", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_hostrefreshfeedback_hostrefreshfeedback", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_accountkeyfromsession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_clearwrchatinferenceselection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_persistwrchatmodelid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_readwrchatinferenceselection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_validatestoredselectionforwrchat", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_inferencetargetrefreshlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_inferencetargetrefreshlog_countwrchatmerged", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_inferencetargetrefreshlog_inferencetargetrefreshreason", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_inferencetargetrefreshlog_loginferencetargetrefreshfromload", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_inferencetargetrefreshlog_loginferencetargetrefreshstart", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility_computeshowhostinferencerefresh", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility_discoveryhashostinternalrows", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility_handshakelocalroleformodelselectorlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility_logmodelselectorshowrefresh", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_modelselectormerge", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_modelselectormerge_maphosttargetstogavmodelentries", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_modelselectormerge_ordermodelslocalhostcloud", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_modelselectortargetslog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_modelselectortargetslog_logmodelselectortargets", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_selectormodellistfromhostdiscovery", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_selectormodellistfromhostdiscovery_fetchselectormodellistfromhostdiscovery", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_selectormodellistfromhostdiscovery_fetchselectormodellistresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_selectormodellistfromhostdiscovery_selectoravailablemodel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_selectormodellistfromhostdiscovery_wrchatmodeloptionsfromselectormodels", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_wrchatdashboardbootstrap", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_wrchatdashboardbootstrap_ensureorchestratorsessionfordashboard", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_wrchatdashboardlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_wrchatdashboardlog_wrchatdashboarddebug", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_wrchatdashboardlog_wrchatdashboardwarn", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_wrchatdashboardspeechcontext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_wrchatdashboardspeechcontext_peekdashboardwrchatspeechopenmeta", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_wrchatruntimemode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_wrchatruntimemode_setwrchatruntimesurface", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_shims_wrchatdashboardchrome", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_shims_wrchatdashboardchrome_ensurewrdeskchromeshim", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_stores_useprojectstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_electron_vite_project_src_stores_useprojectstore_useprojectstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_extension_chromium_src_stores_chatfocusstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_extension_chromium_src_stores_chatfocusstore_usechatfocusstore", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L826", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_extension_chromium_src_ui_components_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_extension_chromium_src_ui_components_popupchatview_dashboardwrchatbeforellmsendinfo", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview", + "target": "apps_extension_chromium_src_ui_components_popupchatview_popupchatview", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L685", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview_wrchatdashboardview", + "target": "apps_electron_vite_project_src_components_wrchatdashboardview_wrchatmodelsforpersist", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WrChatDashboardPanel.tsx", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardpanel", + "target": "apps_electron_vite_project_src_components_wrchatdashboardview_wrchatdashboardview", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview_wrchatdashboardview", + "target": "apps_electron_vite_project_src_hooks_useorchestratormode_useorchestratormode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L487", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_aiexecutioncontextfromselection_buildaiexecutioncontextipcpayload" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L460", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_hostactivemodelselection_getfirstavailablehostmodelid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L404", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_hostactivemodelselection_gethostactivemodelidfromtargets" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L256", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_hostaitargetuinormalization_arenormalizedhostaitargetlistsequal" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L353", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_hostaitargetuinormalization_serializemergedselectormodelsforstableui" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L480", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_ishostinferencemodelid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L332", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_buildhostaiselectortooltip" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L315", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_hostmodelselectorrowui" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L251", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_hostrefreshfeedback_gethostrefreshfeedbackfromtargets" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L137", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_accountkeyfromsession" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L421", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_clearwrchatinferenceselection" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L685", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_persistwrchatmodelid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L403", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_readwrchatinferenceselection" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L414", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_validatestoredselectionforwrchat" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L361", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_inferencetargetrefreshlog_countwrchatmerged" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L366", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_inferencetargetrefreshlog_loginferencetargetrefreshfromload" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L221", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_inferencetargetrefreshlog_loginferencetargetrefreshstart" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L152", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility_computeshowhostinferencerefresh" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility_discoveryhashostinternalrows" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L184", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility_handshakelocalroleformodelselectorlog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L181", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility_logmodelselectorshowrefresh" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L296", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_modelselectormerge_maphosttargetstogavmodelentries" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L294", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_modelselectormerge_ordermodelslocalhostcloud" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L379", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_modelselectortargetslog_logmodelselectortargets" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L241", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_selectormodellistfromhostdiscovery_fetchselectormodellistfromhostdiscovery" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L299", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_selectormodellistfromhostdiscovery_wrchatmodeloptionsfromselectormodels" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L206", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_wrchatdashboardbootstrap_ensureorchestratorsessionfordashboard" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L468", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_wrchatdashboardlog_wrchatdashboarddebug" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L208", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_wrchatdashboardlog_wrchatdashboardwarn" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L467", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_wrchatdashboardspeechcontext_peekdashboardwrchatspeechopenmeta" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L202", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview_wrchatdashboardview", + "target": "apps_electron_vite_project_src_lib_wrchatruntimemode_setwrchatruntimesurface" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L201", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview_wrchatdashboardview", + "target": "apps_electron_vite_project_src_shims_wrchatdashboardchrome_ensurewrdeskchromeshim" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/WRChatDashboardView.tsx", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardview_wrchatdashboardview", + "target": "apps_electron_vite_project_src_stores_useprojectstore_useprojectstore" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WrChatDashboardPanel.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardpanel", + "target": "apps_electron_vite_project_src_components_wrchatdashboardpanel_extensiontheme", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WrChatDashboardPanel.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardpanel", + "target": "apps_electron_vite_project_src_components_wrchatdashboardpanel_wrchatdashboardpanel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/WrChatDashboardPanel.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_wrchatdashboardpanel", + "target": "apps_electron_vite_project_src_components_wrchatdashboardpanel_wrchatdashboardpanelprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_evidencedrawer", + "target": "apps_electron_vite_project_src_components_analysis_evidencedrawer_automationstepevidence", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L398", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_evidencedrawer", + "target": "apps_electron_vite_project_src_components_analysis_evidencedrawer_categorybadge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L241", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_evidencedrawer", + "target": "apps_electron_vite_project_src_components_analysis_evidencedrawer_consentevidenceprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L246", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_evidencedrawer", + "target": "apps_electron_vite_project_src_components_analysis_evidencedrawer_consentrequiredevidence", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_evidencedrawer", + "target": "apps_electron_vite_project_src_components_analysis_evidencedrawer_current_flags", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_evidencedrawer", + "target": "apps_electron_vite_project_src_components_analysis_evidencedrawer_drawertab", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L634", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_evidencedrawer", + "target": "apps_electron_vite_project_src_components_analysis_evidencedrawer_evidencedrawer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_evidencedrawer", + "target": "apps_electron_vite_project_src_components_analysis_evidencedrawer_evidencedrawerprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L494", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_evidencedrawer", + "target": "apps_electron_vite_project_src_components_analysis_evidencedrawer_evidencetabcontent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_evidencedrawer", + "target": "apps_electron_vite_project_src_components_analysis_evidencedrawer_generatemockhash", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L205", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_evidencedrawer", + "target": "apps_electron_vite_project_src_components_analysis_evidencedrawer_intentdetectionevidence", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_evidencedrawer", + "target": "apps_electron_vite_project_src_components_analysis_evidencedrawer_packagingevidence", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L309", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_evidencedrawer", + "target": "apps_electron_vite_project_src_components_analysis_evidencedrawer_poaeevidence", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L353", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_evidencedrawer", + "target": "apps_electron_vite_project_src_components_analysis_evidencedrawer_rendertypespecificevidence", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L410", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_evidencedrawer", + "target": "apps_electron_vite_project_src_components_analysis_evidencedrawer_riskitem", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L442", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_evidencedrawer", + "target": "apps_electron_vite_project_src_components_analysis_evidencedrawer_riskstabcontent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_evidencedrawer", + "target": "apps_electron_vite_project_src_components_analysis_evidencedrawer_semanticextractionevidence", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L386", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_evidencedrawer", + "target": "apps_electron_vite_project_src_components_analysis_evidencedrawer_severitybadge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_evidencedrawer", + "target": "apps_electron_vite_project_src_components_analysis_evidencedrawer_truncatehash", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_evidencedrawer", + "target": "apps_electron_vite_project_src_components_analysis_evidencedrawer_verificationflagsdisplay", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_evidencedrawer", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_evidencedrawer", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_liveevent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_evidencedrawer", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_riskevent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_evidencedrawer", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_riskseverity", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_evidencedrawer", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_severity_priority", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_evidencedrawer", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_traceid", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_evidencedrawer_evidencedrawerprops", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_liveevent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_evidencedrawer_evidencedrawerprops", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_riskevent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_evidencedrawer_evidencedrawerprops", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_traceid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L503", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_evidencedrawer_evidencetabcontent", + "target": "apps_electron_vite_project_src_components_analysis_evidencedrawer_generatemockhash", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_evidencedrawer_packagingevidence", + "target": "apps_electron_vite_project_src_components_analysis_evidencedrawer_generatemockhash", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L606", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_evidencedrawer_evidencetabcontent", + "target": "apps_electron_vite_project_src_components_analysis_evidencedrawer_truncatehash", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_evidencedrawer_packagingevidence", + "target": "apps_electron_vite_project_src_components_analysis_evidencedrawer_truncatehash", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L242", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_evidencedrawer_consentevidenceprops", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_liveevent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx", + "source_location": "L625", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_evidencedrawer_evidencetabcontent", + "target": "apps_electron_vite_project_src_components_analysis_evidencedrawer_rendertypespecificevidence", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/HeroKPI.tsx", + "source_location": "L287", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_herokpi", + "target": "apps_electron_vite_project_src_components_analysis_herokpi_executionstatushero", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/HeroKPI.tsx", + "source_location": "L279", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_herokpi", + "target": "apps_electron_vite_project_src_components_analysis_herokpi_executionstatusheroprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/HeroKPI.tsx", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_herokpi", + "target": "apps_electron_vite_project_src_components_analysis_herokpi_getdefaultstatusicon", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/HeroKPI.tsx", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_herokpi", + "target": "apps_electron_vite_project_src_components_analysis_herokpi_herokpistrip", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/HeroKPI.tsx", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_herokpi", + "target": "apps_electron_vite_project_src_components_analysis_herokpi_herokpistripprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/HeroKPI.tsx", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_herokpi", + "target": "apps_electron_vite_project_src_components_analysis_herokpi_kpicard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/HeroKPI.tsx", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_herokpi", + "target": "apps_electron_vite_project_src_components_analysis_herokpi_kpicardprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/HeroKPI.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_herokpi", + "target": "apps_electron_vite_project_src_components_analysis_herokpi_kpidata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/HeroKPI.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_herokpi", + "target": "apps_electron_vite_project_src_components_analysis_herokpi_kpistatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/HeroKPI.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_herokpi", + "target": "apps_electron_vite_project_src_components_analysis_herokpi_quickaction", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/HeroKPI.tsx", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_herokpi", + "target": "apps_electron_vite_project_src_components_analysis_herokpi_quickactionbar", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/HeroKPI.tsx", + "source_location": "L159", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_herokpi", + "target": "apps_electron_vite_project_src_components_analysis_herokpi_quickactionbarprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/HeroKPI.tsx", + "source_location": "L198", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_herokpi", + "target": "apps_electron_vite_project_src_components_analysis_herokpi_readinessgauge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/HeroKPI.tsx", + "source_location": "L190", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_herokpi", + "target": "apps_electron_vite_project_src_components_analysis_herokpi_readinessgaugeprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/HeroKPI.tsx", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_herokpi", + "target": "apps_electron_vite_project_src_components_analysis_herokpi_statushero", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/HeroKPI.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_herokpi", + "target": "apps_electron_vite_project_src_components_analysis_herokpi_statusherodata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/HeroKPI.tsx", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_herokpi", + "target": "apps_electron_vite_project_src_components_analysis_herokpi_statusheroprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/HeroKPI.tsx", + "source_location": "L357", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_herokpi", + "target": "apps_electron_vite_project_src_components_analysis_herokpi_verificationstatushero", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/HeroKPI.tsx", + "source_location": "L348", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_herokpi", + "target": "apps_electron_vite_project_src_components_analysis_herokpi_verificationstatusheroprops", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_herokpi", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_herokpi_kpistatus", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/HeroKPI.tsx", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_herokpi_kpicardprops", + "target": "apps_electron_vite_project_src_components_analysis_herokpi_kpidata", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_herokpi_kpidata", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/HeroKPI.tsx", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_herokpi_statusheroprops", + "target": "apps_electron_vite_project_src_components_analysis_herokpi_statusherodata", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_herokpi_statusherodata", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_herokpi_quickaction", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_herokpi_kpicard", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_herokpi_herokpistrip", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/HeroKPI.tsx", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_herokpi_statushero", + "target": "apps_electron_vite_project_src_components_analysis_herokpi_getdefaultstatusicon", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_herokpi_statushero", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_herokpi_quickactionbar", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_herokpi_readinessgauge", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_herokpi_executionstatushero", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_herokpi_verificationstatushero", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/StatusBadge.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_statusbadge", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/StatusBadge.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_statusbadge", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_canclaimverified", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/StatusBadge.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_statusbadge", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_getstatusbadgetext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/StatusBadge.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_statusbadge", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_getstatusbadgevariant", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/StatusBadge.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_statusbadge", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_verificationflags", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/StatusBadge.tsx", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_statusbadge", + "target": "apps_electron_vite_project_src_components_analysis_statusbadge_mockdatabadge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/StatusBadge.tsx", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_statusbadge", + "target": "apps_electron_vite_project_src_components_analysis_statusbadge_poaedemobadge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/StatusBadge.tsx", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_statusbadge", + "target": "apps_electron_vite_project_src_components_analysis_statusbadge_recordedbadge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/StatusBadge.tsx", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_statusbadge", + "target": "apps_electron_vite_project_src_components_analysis_statusbadge_simulatedbadge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/StatusBadge.tsx", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_statusbadge", + "target": "apps_electron_vite_project_src_components_analysis_statusbadge_statusbadge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/StatusBadge.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_statusbadge", + "target": "apps_electron_vite_project_src_components_analysis_statusbadge_statusbadgeprops", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/StatusBadge.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_statusbadge_statusbadgeprops", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_verificationflags", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/analysis/StatusBadge.tsx", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_statusbadge_statusbadge", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_canclaimverified" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/analysis/StatusBadge.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_statusbadge_statusbadge", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_getstatusbadgetext" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/analysis/StatusBadge.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_statusbadge_statusbadge", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_getstatusbadgevariant" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_canvasstate", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_analysisopenpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_canvasstate", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_analysisphase", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L420", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_canvasstate", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_canclaimpoae", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L388", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_canvasstate", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_canclaimverified", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_canvasstate", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_canvasevent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L157", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_canvasstate", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_canvaseventtype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L308", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_canvasstate", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_canvasstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L370", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_canvasstate", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_createinitialcanvasstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L341", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_canvasstate", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_createinitialliveexecutionstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L354", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_canvasstate", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_createinitialpostexecutionstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L328", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_canvasstate", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_createinitialpreexecutionstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_canvasstate", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_datasourcestatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_canvasstate", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_default_verification_flags", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_canvasstate", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_drawertabid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L434", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_canvasstate", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_generateeventid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L398", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_canvasstate", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_getstatusbadgetext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L409", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_canvasstate", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_getstatusbadgevariant", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L231", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_canvasstate", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_liveexecutionstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L258", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_canvasstate", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_postexecutionstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L189", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_canvasstate", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_preexecutionstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L442", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_canvasstate", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_reseteventcounter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_canvasstate", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_sanitizeanalysisopenpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_canvasstate", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_valid_drawer_tabs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_canvasstate", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_valid_phases", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_canvasstate", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_verificationflags", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/computePriorityAction.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_computepriorityaction", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/useCanvasState.ts", + "source_location": "L315", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_usecanvasstate", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/computePriorityAction.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_computepriorityaction", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_analysisphase", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/computePriorityAction.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_computepriorityaction_primarycta", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_analysisphase", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_analysisphase", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_drawertabid", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_analysisopenpayload", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_canvasstate_sanitizeanalysisopenpayload", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_valid_phases" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_valid_phases", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_canvasstate_sanitizeanalysisopenpayload", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_valid_drawer_tabs" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_valid_drawer_tabs", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_sanitizeanalysisopenpayload", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_datasourcestatus", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/useCanvasState.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_usecanvasstate", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_datasourcestatus", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_verificationflags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/useCanvasState.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_usecanvasstate", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_verificationflags", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/useCanvasState.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_usecanvasstate_canvasstatehelpers", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_verificationflags", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_default_verification_flags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/useCanvasState.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_usecanvasstate", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_default_verification_flags", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_canvasevent", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_canvaseventtype", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/useCanvasState.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_usecanvasstate", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_canvaseventtype", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/useCanvasState.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_usecanvasstate_canvasstateactions", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_canvaseventtype", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_preexecutionstate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/useCanvasState.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_usecanvasstate", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_preexecutionstate", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/useCanvasState.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_usecanvasstate_canvasstateactions", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_preexecutionstate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_liveexecutionstate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/useCanvasState.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_usecanvasstate", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_liveexecutionstate", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/useCanvasState.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_usecanvasstate_canvasstateactions", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_liveexecutionstate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_postexecutionstate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/useCanvasState.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_usecanvasstate", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_postexecutionstate", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/useCanvasState.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_usecanvasstate_canvasstateactions", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_postexecutionstate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_canvasstate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/useCanvasState.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_usecanvasstate", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_canvasstate", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/useCanvasState.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_usecanvasstate_canvasstateactions", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_canvasstate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L374", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_canvasstate_createinitialcanvasstate", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_createinitialpreexecutionstate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_createinitialpreexecutionstate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L375", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_canvasstate_createinitialcanvasstate", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_createinitialliveexecutionstate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_createinitialliveexecutionstate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/canvasState.ts", + "source_location": "L376", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_canvasstate_createinitialcanvasstate", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_createinitialpostexecutionstate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_createinitialpostexecutionstate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_createinitialcanvasstate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/useCanvasState.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_usecanvasstate", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_createinitialcanvasstate", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/electron-vite-project/src/components/analysis/useCanvasState.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_usecanvasstate_usecanvasstate", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_createinitialcanvasstate" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_canclaimverified", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/useCanvasState.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_usecanvasstate", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_canclaimverified", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/analysis/useCanvasState.ts", + "source_location": "L265", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_usecanvasstate_usecanvasstate", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_canclaimverified" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_getstatusbadgetext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/useCanvasState.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_usecanvasstate", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_getstatusbadgetext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/analysis/useCanvasState.ts", + "source_location": "L266", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_usecanvasstate_usecanvasstate", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_getstatusbadgetext" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_getstatusbadgevariant", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/useCanvasState.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_usecanvasstate", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_getstatusbadgevariant", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/analysis/useCanvasState.ts", + "source_location": "L267", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_usecanvasstate_usecanvasstate", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_getstatusbadgevariant" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_canclaimpoae", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_generateeventid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/useCanvasState.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_usecanvasstate", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_generateeventid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/analysis/useCanvasState.ts", + "source_location": "L134", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_usecanvasstate_usecanvasstate", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_generateeventid" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_canvasstate_reseteventcounter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/computePriorityAction.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_computepriorityaction", + "target": "apps_electron_vite_project_src_components_analysis_computepriorityaction_actionstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/computePriorityAction.ts", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_computepriorityaction", + "target": "apps_electron_vite_project_src_components_analysis_computepriorityaction_computepriorityaction", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/computePriorityAction.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_computepriorityaction", + "target": "apps_electron_vite_project_src_components_analysis_computepriorityaction_dashboardstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/computePriorityAction.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_computepriorityaction", + "target": "apps_electron_vite_project_src_components_analysis_computepriorityaction_getmockdashboardstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/computePriorityAction.ts", + "source_location": "L339", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_computepriorityaction", + "target": "apps_electron_vite_project_src_components_analysis_computepriorityaction_getstatuscolor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/computePriorityAction.ts", + "source_location": "L330", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_computepriorityaction", + "target": "apps_electron_vite_project_src_components_analysis_computepriorityaction_getstatuslabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/computePriorityAction.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_computepriorityaction", + "target": "apps_electron_vite_project_src_components_analysis_computepriorityaction_liveexecutionsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/computePriorityAction.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_computepriorityaction", + "target": "apps_electron_vite_project_src_components_analysis_computepriorityaction_postexecutionsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/computePriorityAction.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_computepriorityaction", + "target": "apps_electron_vite_project_src_components_analysis_computepriorityaction_preexecutionsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/computePriorityAction.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_computepriorityaction", + "target": "apps_electron_vite_project_src_components_analysis_computepriorityaction_primarycta", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/computePriorityAction.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_computepriorityaction", + "target": "apps_electron_vite_project_src_components_analysis_computepriorityaction_priorityaction", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/computePriorityAction.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_computepriorityaction", + "target": "apps_electron_vite_project_src_components_analysis_computepriorityaction_prioritytier", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_computepriorityaction", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_computepriorityaction_prioritytier", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_computepriorityaction_actionstatus", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_computepriorityaction_primarycta", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_computepriorityaction_priorityaction", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_computepriorityaction_preexecutionsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_computepriorityaction_liveexecutionsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_computepriorityaction_postexecutionsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_computepriorityaction_dashboardstate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_computepriorityaction_getmockdashboardstate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_computepriorityaction_computepriorityaction", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_computepriorityaction_getstatuslabel", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_computepriorityaction_getstatuscolor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ActiveAutomationWorkspace.tsx", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_activeautomationworkspace", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_activeautomationworkspace_activeautomationworkspace", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ActiveAutomationWorkspace.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_activeautomationworkspace", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_activeautomationworkspace_activeautomationworkspaceprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ActiveAutomationWorkspace.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_activeautomationworkspace", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_activeautomationworkspace_monitorworkspacesubactions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ActiveAutomationWorkspace.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_activeautomationworkspace", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ActiveAutomationWorkspace.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_activeautomationworkspace", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel_projectoptimizationpanel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ActiveAutomationWorkspace.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_activeautomationworkspace", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel_projectoptimizationpanelhandle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ActiveAutomationWorkspace.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_activeautomationworkspace", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel_projectoptimizationpanelopencreateopts", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ActiveAutomationWorkspace.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_activeautomationworkspace", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel_projectoptimizationpanelprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ActiveAutomationWorkspace.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_activeautomationworkspace", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_statustoggle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ActiveAutomationWorkspace.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_activeautomationworkspace", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_statustoggle_statustoggle", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ActiveAutomationWorkspace.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_activeautomationworkspace", + "target": "apps_electron_vite_project_src_stores_useprojectstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ActiveAutomationWorkspace.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_activeautomationworkspace", + "target": "apps_electron_vite_project_src_stores_useprojectstore_selectactiveproject", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ActiveAutomationWorkspace.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_activeautomationworkspace", + "target": "apps_electron_vite_project_src_stores_useprojectstore_useprojectstore", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/index.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_index", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_activeautomationworkspace", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/index.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_index", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_activeautomationworkspace_monitorworkspacesubactions", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/index.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_index", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_activeautomationworkspace_activeautomationworkspaceprops", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/index.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_index", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_activeautomationworkspace_activeautomationworkspace", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ActivityFeedColumn.tsx", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_activityfeedcolumn", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_activityfeedcolumn_activityfeedcolumn", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ActivityFeedColumn.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_activityfeedcolumn", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_activityfeedcolumn_activityfeedcolumnprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ActivityFeedColumn.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_activityfeedcolumn", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ActivityFeedColumn.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_activityfeedcolumn", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel_poaeartifactspanel", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ActivityFeedColumn.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_activityfeedcolumn", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ActivityFeedColumn.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_activityfeedcolumn", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection_openinboxmessagepayload", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ActivityFeedColumn.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_activityfeedcolumn", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ActivityFeedColumn.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_activityfeedcolumn", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel_urgentmessagespanel", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ActivityFeedColumn.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_activityfeedcolumn", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ActivityFeedColumn.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_activityfeedcolumn", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/index.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_index", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_activityfeedcolumn", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ActivityFeedColumn.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_activityfeedcolumn_activityfeedcolumnprops", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection_openinboxmessagepayload", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ActivityFeedColumn.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_activityfeedcolumn_activityfeedcolumnprops", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/index.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_index", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_activityfeedcolumn_activityfeedcolumnprops", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/index.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_index", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_activityfeedcolumn_activityfeedcolumn", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L187", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome_accent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome_appendwrchatassistant", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L189", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome_automationcarddef", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome_composericonpickerdialog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome_composericonpickerlabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L264", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome_dashboardautomationhome", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L169", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome_dashboardautomationhomeprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome_getdashboardlaunchsecret", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L255", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome_milestoneline", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L206", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome_resolveautomationcardicon", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L237", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome_stripleadingdisplayemoji", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L223", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome_stripleadingemojiruns", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projecticonchoices", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projecticonchoices_project_icon_choices", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome", + "target": "apps_electron_vite_project_src_lib_autooptimizationengine", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome", + "target": "apps_electron_vite_project_src_lib_autooptimizationengine_triggersnapshotoptimization", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome", + "target": "apps_electron_vite_project_src_lib_autooptimizationguards", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome", + "target": "apps_electron_vite_project_src_lib_autooptimizationguards_applyoptimizationguardfallback", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome", + "target": "apps_electron_vite_project_src_lib_autooptimizationguards_canrunoptimization", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome", + "target": "apps_electron_vite_project_src_stores_useprojectstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome", + "target": "apps_electron_vite_project_src_stores_useprojectstore_composericonsstate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome", + "target": "apps_electron_vite_project_src_stores_useprojectstore_composerid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome", + "target": "apps_electron_vite_project_src_stores_useprojectstore_useprojectstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome", + "target": "apps_electron_vite_project_src_types_projecttypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome", + "target": "apps_electron_vite_project_src_types_projecttypes_project", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_getcustommodetriggerbaricon", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_ismodedeletable", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_isuserownedcustommode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome", + "target": "apps_extension_chromium_src_stores_chatfocusstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome", + "target": "apps_extension_chromium_src_stores_chatfocusstore_usechatfocusstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome", + "target": "apps_extension_chromium_src_stores_chatfocusstore_wrchat_append_assistant_event", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome", + "target": "apps_extension_chromium_src_stores_usecustommodesstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome", + "target": "apps_extension_chromium_src_stores_usecustommodesstore_usecustommodesstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome", + "target": "apps_extension_chromium_src_stores_useuistore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome", + "target": "apps_extension_chromium_src_stores_useuistore_useuistore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome", + "target": "apps_extension_chromium_src_ui_components_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_automationuikind_add_automation_row_ui_kind", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_automationuikind_add_project_assistant_row_ui_kind", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrchat_chat_focus_request_event", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrchat_open_custom_mode_wizard_event", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrdesk_open_project_assistant_creation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrdesk_trigger_sync_auto_optimizer_project", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/index.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_index", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L306", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome_dashboardautomationhome", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome_getdashboardlaunchsecret", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L301", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome_dashboardautomationhome", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome_appendwrchatassistant", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome_composericonpickerdialog", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome_composericonpickerlabel", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/index.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_index", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome_dashboardautomationhomeprops", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L605", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome_dashboardautomationhome", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome_resolveautomationcardicon", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L249", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome_stripleadingdisplayemoji", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome_stripleadingemojiruns", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L606", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome_dashboardautomationhome", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome_stripleadingdisplayemoji", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L757", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome_dashboardautomationhome", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome_milestoneline", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L515", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome_dashboardautomationhome", + "target": "apps_electron_vite_project_src_lib_autooptimizationengine_triggersnapshotoptimization" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L501", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome_dashboardautomationhome", + "target": "apps_electron_vite_project_src_lib_autooptimizationguards_applyoptimizationguardfallback" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L499", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome_dashboardautomationhome", + "target": "apps_electron_vite_project_src_lib_autooptimizationguards_canrunoptimization" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L274", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome_dashboardautomationhome", + "target": "apps_electron_vite_project_src_stores_useprojectstore_useprojectstore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L346", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome_dashboardautomationhome", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_getcustommodetriggerbaricon" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L546", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome_dashboardautomationhome", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_ismodedeletable" + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L292", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome_dashboardautomationhome", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_isuserownedcustommode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx", + "source_location": "L285", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome_dashboardautomationhome", + "target": "apps_extension_chromium_src_stores_usecustommodesstore_usecustommodesstore" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/index.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_index", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardautomationhome_dashboardautomationhome", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardHandshakeSummarySection.tsx", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardhandshakesummarysection", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardhandshakesummarysection_dashboardhandshakesummarysection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardHandshakeSummarySection.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardhandshakesummarysection", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardhandshakesummarysection_dashboardhandshakesummarysectionprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardHandshakeSummarySection.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardhandshakesummarysection", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardhandshakesummarysection_state_labels", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardHandshakeSummarySection.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardhandshakesummarysection", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardhandshakesummarysection_state_order", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardHandshakeSummarySection.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardhandshakesummarysection", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardHandshakeSummarySection.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardhandshakesummarysection", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardhandshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardHandshakeSummarySection.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardhandshakesummarysection", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardHandshakeSummarySection.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardhandshakesummarysection_dashboardhandshakesummarysectionprops", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardTopCardsRow.tsx", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardtopcardsrow", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardtopcardsrow_dashboardtopcardsrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardTopCardsRow.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardtopcardsrow", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardtopcardsrow_formatshortdate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardTopCardsRow.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardtopcardsrow", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardtopcardsrow_formatsortcomposition", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardTopCardsRow.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardtopcardsrow", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardtopcardsrow_humanizecategory", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardTopCardsRow.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardtopcardsrow", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardtopcardsrow_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardTopCardsRow.tsx", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardtopcardsrow", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardtopcardsrow_showcount", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardTopCardsRow.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardtopcardsrow", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardTopCardsRow.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardtopcardsrow", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardTopCardsRow.tsx", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardtopcardsrow_dashboardtopcardsrow", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardtopcardsrow_formatshortdate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardTopCardsRow.tsx", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardtopcardsrow_formatsortcomposition", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardtopcardsrow_humanizecategory", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardTopCardsRow.tsx", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardtopcardsrow_dashboardtopcardsrow", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardtopcardsrow_formatsortcomposition", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/DashboardTopCardsRow.tsx", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardtopcardsrow_dashboardtopcardsrow", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_dashboardtopcardsrow_showcount", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/index.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_index", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/IntelligenceDashboard.tsx", + "source_location": "L153", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard_autosortcard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/IntelligenceDashboard.tsx", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard_formatdatetime", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/IntelligenceDashboard.tsx", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard_formatddmm", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/IntelligenceDashboard.tsx", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard_getcatcolor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/IntelligenceDashboard.tsx", + "source_location": "L616", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard_intelligencedashboard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/IntelligenceDashboard.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard_intelligencedashboardprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/IntelligenceDashboard.tsx", + "source_location": "L519", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard_loadingskeletons", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/IntelligenceDashboard.tsx", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard_securitycard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/IntelligenceDashboard.tsx", + "source_location": "L505", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard_skeletoncard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/IntelligenceDashboard.tsx", + "source_location": "L335", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard_statuscard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/IntelligenceDashboard.tsx", + "source_location": "L242", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard_transportcard", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/IntelligenceDashboard.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_statustoggle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/IntelligenceDashboard.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_statustoggle_statustoggle", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/IntelligenceDashboard.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/IntelligenceDashboard.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/IntelligenceDashboard.tsx", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard_rationale_82", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/IntelligenceDashboard.tsx", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard_rationale_87", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/IntelligenceDashboard.tsx", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard_rationale_89", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/IntelligenceDashboard.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard_intelligencedashboardprops", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/IntelligenceDashboard.tsx", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard_securitycard", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard_formatddmm", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/IntelligenceDashboard.tsx", + "source_location": "L225", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard_autosortcard", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard_formatdatetime", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/IntelligenceDashboard.tsx", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard_autosortcard", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard_getcatcolor", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/index.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_index", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_intelligencedashboard_intelligencedashboard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArchiveSection.tsx", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_poaearchivesection", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_poaearchivesection_copyartifactrefs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArchiveSection.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_poaearchivesection", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_poaearchivesection_empty_poae", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArchiveSection.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_poaearchivesection", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_poaearchivesection_formatartifactchannel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArchiveSection.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_poaearchivesection", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_poaearchivesection_formattimecompact", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArchiveSection.tsx", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_poaearchivesection", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_poaearchivesection_idhint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArchiveSection.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_poaearchivesection", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_poaearchivesection_participantlines", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArchiveSection.tsx", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_poaearchivesection", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_poaearchivesection_poaearchivesection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArchiveSection.tsx", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_poaearchivesection", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_poaearchivesection_poaearchivesectionprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArchiveSection.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_poaearchivesection", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArchiveSection.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_poaearchivesection", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection_openinboxmessagepayload", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArchiveSection.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_poaearchivesection", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArchiveSection.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_poaearchivesection", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardpoaehistoryrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArchiveSection.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_poaearchivesection", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardpoaesection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArchiveSection.tsx", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_poaearchivesection_poaearchivesection", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_poaearchivesection_formatartifactchannel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArchiveSection.tsx", + "source_location": "L137", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_poaearchivesection_poaearchivesection", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_poaearchivesection_formattimecompact", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArchiveSection.tsx", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_poaearchivesection_poaearchivesection", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_poaearchivesection_participantlines", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArchiveSection.tsx", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_poaearchivesection_poaearchivesection", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_poaearchivesection_idhint", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArchiveSection.tsx", + "source_location": "L155", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_poaearchivesection_poaearchivesection", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_poaearchivesection_copyartifactrefs", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArchiveSection.tsx", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_poaearchivesection_poaearchivesectionprops", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection_openinboxmessagepayload", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArchiveSection.tsx", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_poaearchivesection_poaearchivesectionprops", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardpoaesection", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/index.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_index", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArtifactsPanel.tsx", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel_artifactrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArtifactsPanel.tsx", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel_channelmod", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArtifactsPanel.tsx", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel_copyartifactrefs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArtifactsPanel.tsx", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel_empty_poae", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArtifactsPanel.tsx", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel_formatartifactchannel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArtifactsPanel.tsx", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel_formattimecompact", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArtifactsPanel.tsx", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel_idhint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArtifactsPanel.tsx", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel_participantlines", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArtifactsPanel.tsx", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel_poaeartifactspanel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArtifactsPanel.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel_poaeartifactspanelprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArtifactsPanel.tsx", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel_skeletonrows", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArtifactsPanel.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArtifactsPanel.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection_openinboxmessagepayload", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArtifactsPanel.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArtifactsPanel.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardpoaehistoryrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArtifactsPanel.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardpoaesection", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArtifactsPanel.tsx", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel_rationale_199", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArtifactsPanel.tsx", + "source_location": "L208", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel_rationale_208", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/index.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_index", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel_poaeartifactspanelprops", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArtifactsPanel.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel_poaeartifactspanelprops", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection_openinboxmessagepayload", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArtifactsPanel.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel_poaeartifactspanelprops", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardpoaesection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArtifactsPanel.tsx", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel_artifactrow", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel_formatartifactchannel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArtifactsPanel.tsx", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel_artifactrow", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel_channelmod", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArtifactsPanel.tsx", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel_artifactrow", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel_formattimecompact", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArtifactsPanel.tsx", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel_artifactrow", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel_participantlines", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArtifactsPanel.tsx", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel_artifactrow", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel_idhint", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArtifactsPanel.tsx", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel_artifactrow", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel_copyartifactrefs", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/index.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_index", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_poaeartifactspanel_poaeartifactspanel", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/index.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_index", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projectassistantconfigmodal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectAssistantConfigModal.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectassistantconfigmodal", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projectassistantconfigmodal_projectassistantconfigmodal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectAssistantConfigModal.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectassistantconfigmodal", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projectassistantconfigmodal_projectassistantconfigmodalprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projectassistantconfigmodal", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/index.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_index", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projectassistantconfigmodal_projectassistantconfigmodal", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projectassistantconfigmodal_projectassistantconfigmodal", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/index.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_index", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projecticonchoices", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projecticonchoices_project_icon_choices", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel_dashboardemailaccountrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel_flashfieldel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel_flashmilestoneel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel_focusheaderaichat", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L187", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel_formatlinkedsessionrepeatcadence", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L179", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel_formatstatusdate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L193", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel_getmimelabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L201", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel_projectoptimizationpanel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel_projectoptimizationpanelhandle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L157", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel_projectoptimizationpanelopencreateopts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel_projectoptimizationpanelprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_statustoggle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_statustoggle_statustoggle", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_electron_vite_project_src_lib_autooptimizationengine", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_electron_vite_project_src_lib_autooptimizationengine_startautooptimization", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_electron_vite_project_src_lib_autooptimizationengine_stopautooptimization", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_electron_vite_project_src_lib_autooptimizationengine_triggersnapshotoptimization", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_electron_vite_project_src_lib_autooptimizationguards", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_electron_vite_project_src_lib_autooptimizationguards_applyoptimizationguardfallback", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_electron_vite_project_src_lib_autooptimizationguards_canrunoptimization", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_electron_vite_project_src_lib_beappackageattachmentpreview", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_electron_vite_project_src_lib_beappackageattachmentpreview_extracttextforpackagepreview", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_electron_vite_project_src_lib_projectassistantaifieldcontracts", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_electron_vite_project_src_lib_projectassistantaifieldcontracts_devassertprojectassistantaidomhook", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_electron_vite_project_src_lib_projectassistantaifieldcontracts_projectassistantdatafieldselector", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_electron_vite_project_src_lib_projectassistantaifieldcontracts_projectassistantmilestoneselector", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_electron_vite_project_src_lib_refreshorchestratorsessions", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_electron_vite_project_src_lib_refreshorchestratorsessions_refreshorchestratorsessionsfrombridge", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_electron_vite_project_src_lib_wrdeskuievents", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_electron_vite_project_src_lib_wrdeskuievents_wrdesk_focus_ai_chat_event", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_activeemailaccountidsforsync", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_useemailinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_electron_vite_project_src_stores_useprojectsetupchatcontextstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_electron_vite_project_src_stores_useprojectsetupchatcontextstore_useprojectsetupchatcontextstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_electron_vite_project_src_stores_useprojectstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_electron_vite_project_src_stores_useprojectstore_selectactiveproject", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_electron_vite_project_src_stores_useprojectstore_useprojectstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardautosortsessionmeta", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_electron_vite_project_src_types_projecttypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_electron_vite_project_src_types_projecttypes_auto_optimization_intervals", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_electron_vite_project_src_types_projecttypes_projectattachment", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_electron_vite_project_src_types_projecttypes_projectmilestone", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_extension_chromium_src_beap_builder_components_attachmentstatusbadge", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_extension_chromium_src_beap_builder_components_attachmentstatusbadge_attachmentparsestatus", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_extension_chromium_src_beap_builder_components_attachmentstatusbadge_attachmentstatusbadge", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_extension_chromium_src_beap_builder_components_beapdocumentreadermodal", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_extension_chromium_src_beap_builder_components_beapdocumentreadermodal_beapdocumentreadermodal", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_extension_chromium_src_shared_email_pickdefaultaccountrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel", + "target": "apps_extension_chromium_src_shared_email_pickdefaultaccountrow_pickdefaultemailaccountrowid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel_flashfieldel", + "target": "apps_electron_vite_project_src_lib_projectassistantaifieldcontracts_projectassistantdatafieldselector", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel_flashmilestoneel", + "target": "apps_electron_vite_project_src_lib_projectassistantaifieldcontracts_projectassistantmilestoneselector", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/index.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_index", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel_dashboardemailaccountrow", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/index.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_index", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel_projectoptimizationpanelprops", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel_projectoptimizationpanelprops", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardautosortsessionmeta", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/index.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_index", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel_projectoptimizationpanelopencreateopts", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/index.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_index", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel_projectoptimizationpanelhandle", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx", + "source_location": "L188", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel_formatlinkedsessionrepeatcadence", + "target": "apps_electron_vite_project_src_types_projecttypes_auto_optimization_intervals" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/index.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_index", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projectoptimizationpanel_projectoptimizationpanel", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/index.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_index", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupmodal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupModal.tsx", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupmodal", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupmodal_focusheaderaichat", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupModal.tsx", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupmodal", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupmodal_modalmilestone", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupModal.tsx", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupmodal", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupmodal_projectsetupmodal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupModal.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupmodal", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupmodal_projectsetupmodalprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupModal.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupmodal", + "target": "apps_electron_vite_project_src_lib_refreshorchestratorsessions", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupModal.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupmodal", + "target": "apps_electron_vite_project_src_lib_refreshorchestratorsessions_refreshorchestratorsessionsfrombridge", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupModal.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupmodal", + "target": "apps_electron_vite_project_src_lib_wrdeskuievents", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupModal.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupmodal", + "target": "apps_electron_vite_project_src_lib_wrdeskuievents_wrdesk_focus_ai_chat_event", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupModal.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupmodal", + "target": "apps_electron_vite_project_src_stores_useprojectsetupchatcontextstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupModal.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupmodal", + "target": "apps_electron_vite_project_src_stores_useprojectsetupchatcontextstore_useprojectsetupchatcontextstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupModal.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupmodal", + "target": "apps_electron_vite_project_src_stores_useprojectstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupModal.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupmodal", + "target": "apps_electron_vite_project_src_stores_useprojectstore_useprojectstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupModal.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupmodal", + "target": "apps_electron_vite_project_src_types_projecttypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupModal.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupmodal", + "target": "apps_electron_vite_project_src_types_projecttypes_auto_optimization_intervals", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupModal.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupmodal", + "target": "apps_electron_vite_project_src_types_projecttypes_projectattachment", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupModal.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupmodal", + "target": "apps_electron_vite_project_src_types_projecttypes_projectmilestone", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupModal.tsx", + "source_location": "L204", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupmodal_rationale_204", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupmodal", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/index.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_index", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupmodal_projectsetupmodalprops", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/index.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_index", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupmodal_projectsetupmodal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupModal.tsx", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupmodal_projectsetupmodal", + "target": "apps_electron_vite_project_src_lib_refreshorchestratorsessions_refreshorchestratorsessionsfrombridge" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupModal.tsx", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupmodal_projectsetupmodal", + "target": "apps_electron_vite_project_src_stores_useprojectstore_useprojectstore" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupSection.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection_dashboardemailaccountrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupSection.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection_fallback_setup", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupSection.tsx", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection_focusheaderaichat", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupSection.tsx", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection_formatstatusdate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupSection.tsx", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection_projectsetupmodal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupSection.tsx", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection_projectsetupmodaldraftbindings", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupSection.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection_projectsetupmodaltab", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupSection.tsx", + "source_location": "L288", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection_projectsetupsection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupSection.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection_projectsetupsectionprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupSection.tsx", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection_sessionidshort", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupSection.tsx", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection_setupmodalprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupSection.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection", + "target": "apps_electron_vite_project_src_lib_wrdeskuievents", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupSection.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection", + "target": "apps_electron_vite_project_src_lib_wrdeskuievents_wrdesk_focus_ai_chat_event", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupSection.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupSection.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_activeemailaccountidsforsync", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupSection.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_useemailinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupSection.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection", + "target": "apps_electron_vite_project_src_stores_useprojectsetupchatcontextstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupSection.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection", + "target": "apps_electron_vite_project_src_stores_useprojectsetupchatcontextstore_useprojectsetupchatcontextstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupSection.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupSection.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardautosortsessionmeta", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupSection.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardprojectsetupsection", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupSection.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection", + "target": "apps_extension_chromium_src_shared_email_pickdefaultaccountrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupSection.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection", + "target": "apps_extension_chromium_src_shared_email_pickdefaultaccountrow_pickdefaultemailaccountrowid", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupSection.tsx", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection_sessionidshort", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection_projectsetupmodaltab" + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupSection.tsx", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection_projectsetupsectionprops", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardautosortsessionmeta", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupSection.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection_projectsetupsectionprops", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardprojectsetupsection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupSection.tsx", + "source_location": "L405", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection_projectsetupsection", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection_formatstatusdate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupSection.tsx", + "source_location": "L412", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection_projectsetupsection", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection_sessionidshort", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupSection.tsx", + "source_location": "L305", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection_projectsetupsection", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_activeemailaccountidsforsync" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupSection.tsx", + "source_location": "L307", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection_projectsetupsection", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_useemailinboxstore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupSection.tsx", + "source_location": "L355", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection_projectsetupsection", + "target": "apps_electron_vite_project_src_stores_useprojectsetupchatcontextstore_useprojectsetupchatcontextstore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupSection.tsx", + "source_location": "L306", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projectsetupsection_projectsetupsection", + "target": "apps_extension_chromium_src_shared_email_pickdefaultaccountrow_pickdefaultemailaccountrowid" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/StatusToggle.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_statustoggle", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_statustoggle_statustoggle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/StatusToggle.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_statustoggle", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_statustoggle_statustoggleprops", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/index.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_index", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentAutosortSessionSection.tsx", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection_compacturgentreason", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentAutosortSessionSection.tsx", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection_formattimecompact", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentAutosortSessionSection.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection_openinboxmessagepayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentAutosortSessionSection.tsx", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection_participantdisplay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentAutosortSessionSection.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection_tosessionreviewrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentAutosortSessionSection.tsx", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection_triagemetaline", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentAutosortSessionSection.tsx", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection_urgentautosortsessionsection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentAutosortSessionSection.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection_urgentautosortsessionsectionprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentAutosortSessionSection.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection", + "target": "apps_electron_vite_project_src_components_handshakeviewtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentAutosortSessionSection.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection", + "target": "apps_electron_vite_project_src_lib_inboxsessionreviewopen", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentAutosortSessionSection.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection", + "target": "apps_electron_vite_project_src_lib_inboxsessionreviewopen_sessionreviewmessagerow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentAutosortSessionSection.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection", + "target": "apps_electron_vite_project_src_lib_inboxsessionreviewopen_workflowfilterfromsessionreviewrow", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentAutosortSessionSection.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentAutosortSessionSection.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxfilter", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentAutosortSessionSection.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentAutosortSessionSection.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardautosortmessageref", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentAutosortSessionSection.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentMessagesPanel.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/index.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_index", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection_openinboxmessagepayload", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentMessagesPanel.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection_openinboxmessagepayload", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentMessagesPanel.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel_urgentmessagespanelprops", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection_openinboxmessagepayload", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentAutosortSessionSection.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection_urgentautosortsessionsectionprops", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentAutosortSessionSection.tsx", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection_urgentautosortsessionsection", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection_tosessionreviewrow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentAutosortSessionSection.tsx", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection_urgentautosortsessionsection", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection_formattimecompact", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentAutosortSessionSection.tsx", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection_urgentautosortsessionsection", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection_participantdisplay", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentAutosortSessionSection.tsx", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection_urgentautosortsessionsection", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection_compacturgentreason", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentAutosortSessionSection.tsx", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection_urgentautosortsessionsection", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection_triagemetaline", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentAutosortSessionSection.tsx", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentautosortsessionsection_urgentautosortsessionsection", + "target": "apps_electron_vite_project_src_lib_inboxsessionreviewopen_workflowfilterfromsessionreviewrow" + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/index.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_index", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentMessagesPanel.tsx", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel_compacturgentreason", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentMessagesPanel.tsx", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel_formattimecompact", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentMessagesPanel.tsx", + "source_location": "L134", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel_messagerow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentMessagesPanel.tsx", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel_participantdisplay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentMessagesPanel.tsx", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel_scorelevel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentMessagesPanel.tsx", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel_sessionidshort", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentMessagesPanel.tsx", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel_skeletonrows", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentMessagesPanel.tsx", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel_tosessionreviewrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentMessagesPanel.tsx", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel_triagemetaline", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentMessagesPanel.tsx", + "source_location": "L207", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel_urgentmessagespanel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentMessagesPanel.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel_urgentmessagespanelprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentMessagesPanel.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel", + "target": "apps_electron_vite_project_src_components_handshakeviewtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentMessagesPanel.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel", + "target": "apps_electron_vite_project_src_lib_inboxsessionreviewopen", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentMessagesPanel.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel", + "target": "apps_electron_vite_project_src_lib_inboxsessionreviewopen_sessionreviewmessagerow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentMessagesPanel.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel", + "target": "apps_electron_vite_project_src_lib_inboxsessionreviewopen_workflowfilterfromsessionreviewrow", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentMessagesPanel.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentMessagesPanel.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxfilter", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentMessagesPanel.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentMessagesPanel.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardautosortmessageref", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentMessagesPanel.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/index.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_index", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel_urgentmessagespanelprops", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentMessagesPanel.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel_urgentmessagespanelprops", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentMessagesPanel.tsx", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel_messagerow", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel_tosessionreviewrow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentMessagesPanel.tsx", + "source_location": "L295", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel_urgentmessagespanel", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel_tosessionreviewrow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentMessagesPanel.tsx", + "source_location": "L192", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel_messagerow", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel_formattimecompact", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentMessagesPanel.tsx", + "source_location": "L223", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel_urgentmessagespanel", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel_formattimecompact", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentMessagesPanel.tsx", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel_messagerow", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel_participantdisplay", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentMessagesPanel.tsx", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel_messagerow", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel_compacturgentreason", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentMessagesPanel.tsx", + "source_location": "L144", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel_messagerow", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel_triagemetaline", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentMessagesPanel.tsx", + "source_location": "L222", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel_urgentmessagespanel", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel_sessionidshort", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentMessagesPanel.tsx", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel_messagerow", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel_scorelevel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentMessagesPanel.tsx", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel_messagerow", + "target": "apps_electron_vite_project_src_lib_inboxsessionreviewopen_workflowfilterfromsessionreviewrow", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/index.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_index", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel_urgentmessagespanel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/UrgentMessagesPanel.tsx", + "source_location": "L295", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_urgentmessagespanel_urgentmessagespanel", + "target": "apps_electron_vite_project_src_lib_inboxsessionreviewopen_workflowfilterfromsessionreviewrow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/dashboard/projectIconChoices.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_dashboard_projecticonchoices", + "target": "apps_electron_vite_project_src_components_analysis_dashboard_projecticonchoices_project_icon_choices", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L285", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_alignmentrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L280", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_alignmentstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L1190", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_all_domains", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L783", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_applystickiness", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L1185", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_available_traces", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L675", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_breakpoints", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_claimset", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L703", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_compareevents", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_comparerisks", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L297", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_computealignment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L863", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_computefocusstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L880", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_computefocusstatewithstickiness", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L907", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_computelayoutspec", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L734", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_computenaturalfocus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L215", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_computeobservations", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L563", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_createdefaultfilter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L1162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_createdemoevents", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_createemptyobservations", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L891", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_createinitialstickinessstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L1020", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_createliveevent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_default_claims", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L1074", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_demo_event_sequence", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L1056", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_demoeventspec", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L657", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_event_priority", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L643", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_event_to_panel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_event_type_to_domain", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_eventdomain", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L555", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_eventfilter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L581", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_filterevents", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L511", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_filterrisksbytrace", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L608", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_focusstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L598", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_focusstickinessstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L1012", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_generateeventid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L975", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_generatelayoutcssvars", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L477", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_generateriskevents", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L533", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_gethighestseverity", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L715", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_getmostrecentevent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L995", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_getnextseq", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L380", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_getrisksforalignmentrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L519", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_getrisksforevent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L526", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_getrisksfortrace", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L955", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_getsecondarypanelorder", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L543", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_gettoprisks", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L723", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_getunresolvedconsents", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L620", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_layoutspec", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_liveevent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_liveeventtype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L401", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_mock_risk_rules", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L389", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_mockriskrule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L186", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_observationset", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_panelid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L144", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_readmeclaims", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L1045", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_reseteventidcounter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L1003", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_resetseqcounter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_riskcategory", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_riskevent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_riskseverity", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L670", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_secondary_panels", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_severity_priority", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L153", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_templateclaims", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L683", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_timeline", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L550", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_traceid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L631", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_viewportsize", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_liveeventtype", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_panelid", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_eventdomain", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_liveevent", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_event_type_to_domain", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_riskseverity", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_riskcategory", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_riskevent", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_severity_priority", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L505", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_generateriskevents", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_comparerisks", + "confidence_score": 0.5 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L544", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_gettoprisks", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_comparerisks", + "confidence_score": 0.5 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_comparerisks", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_readmeclaims", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_templateclaims", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_claimset", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_default_claims", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_observationset", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L216", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_computeobservations", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_createemptyobservations", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_createemptyobservations", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_computeobservations", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_alignmentstatus", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_alignmentrow", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_computealignment", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_getrisksforalignmentrow", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_generateriskevents", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_filterrisksbytrace", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_getrisksforevent", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_getrisksfortrace", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_gethighestseverity", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_gettoprisks", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_traceid", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_eventfilter", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_createdefaultfilter", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_filterevents", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_focusstickinessstate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_focusstate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_layoutspec", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_viewportsize", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_event_to_panel", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_event_priority", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L961", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_getsecondarypanelorder", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_secondary_panels" + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L717", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_getmostrecentevent", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_compareevents", + "confidence_score": 0.5 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_compareevents", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L749", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_computenaturalfocus", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_getmostrecentevent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L788", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_applystickiness", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_getunresolvedconsents", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L865", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_computefocusstate", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_getunresolvedconsents", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L746", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_computenaturalfocus", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_getunresolvedconsents", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L864", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_computefocusstate", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_computenaturalfocus", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L884", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_computefocusstatewithstickiness", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_computenaturalfocus", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L885", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_computefocusstatewithstickiness", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_applystickiness", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_computefocusstate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_computefocusstatewithstickiness", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_createinitialstickinessstate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L941", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_computelayoutspec", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_getsecondarypanelorder", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_computelayoutspec", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_generatelayoutcssvars", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L1033", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_createliveevent", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_getnextseq", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_getnextseq", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_resetseqcounter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L1030", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_createliveevent", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_generateeventid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L1168", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_createdemoevents", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_createliveevent", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_createliveevent", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_reseteventidcounter", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts", + "source_location": "L1164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_createdemoevents", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_demo_event_sequence" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_demo_event_sequence", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_createdemoevents", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_available_traces", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_focuslayoutengine_all_domains", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_usecanvasstate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_usecanvasstate_canvasstateactions", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_usecanvasstate_canvasstatehelpers", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/index.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_index", + "target": "apps_electron_vite_project_src_components_analysis_usecanvasstate_usecanvasstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/useCanvasState.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_usecanvasstate", + "target": "apps_electron_vite_project_src_components_analysis_usecanvasstate_canvasstateactions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/useCanvasState.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_usecanvasstate", + "target": "apps_electron_vite_project_src_components_analysis_usecanvasstate_canvasstatehelpers", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/analysis/useCanvasState.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_analysis_usecanvasstate", + "target": "apps_electron_vite_project_src_components_analysis_usecanvasstate_usecanvasstate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/bulkInboxAttachmentHydration.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_bulkinboxattachmenthydration_test", + "target": "apps_electron_vite_project_src_components_bulkinboxattachmenthydration", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/bulkInboxAttachmentHydration.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_bulkinboxattachmenthydration_test", + "target": "apps_electron_vite_project_src_components_bulkinboxattachmenthydration_hydrationaftergetmessageipcerror", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/bulkInboxAttachmentHydration.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_bulkinboxattachmenthydration_test", + "target": "apps_electron_vite_project_src_components_bulkinboxattachmenthydration_hydrationaftergetmessagereject", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/bulkInboxAttachmentHydration.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_bulkinboxattachmenthydration_test", + "target": "apps_electron_vite_project_src_components_bulkinboxattachmenthydration_hydrationaftergetmessagesuccess", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/bulkInboxAttachmentHydration.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_bulkinboxattachmenthydration_test", + "target": "apps_electron_vite_project_src_components_bulkinboxattachmenthydration_test_att", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/bulkInboxAttachmentHydration.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_bulkinboxattachmenthydration_test", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/bulkInboxAttachmentHydration.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_bulkinboxattachmenthydration_test", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxattachment", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/extension-chromium/src/beap-messages/sessionImportPayloadResolver.ts", + "source_location": "L277", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver_resolvebeapsessionimportpayload", + "target": "apps_electron_vite_project_src_components_bulkinboxattachmenthydration_test_att" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/bulkInboxAttachmentHydration.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_bulkinboxattachmenthydration", + "target": "apps_electron_vite_project_src_components_bulkinboxattachmenthydration_hydrationaftergetmessageipcerror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/bulkInboxAttachmentHydration.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_bulkinboxattachmenthydration", + "target": "apps_electron_vite_project_src_components_bulkinboxattachmenthydration_hydrationaftergetmessagereject", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/bulkInboxAttachmentHydration.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_bulkinboxattachmenthydration", + "target": "apps_electron_vite_project_src_components_bulkinboxattachmenthydration_hydrationaftergetmessagesuccess", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/bulkInboxAttachmentHydration.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_bulkinboxattachmenthydration", + "target": "apps_electron_vite_project_src_components_bulkinboxattachmenthydration_hydrationterminal", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/bulkInboxAttachmentHydration.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_bulkinboxattachmenthydration", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/bulkInboxAttachmentHydration.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_bulkinboxattachmenthydration", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxattachment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/contextEscaping.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_contextescaping", + "target": "apps_electron_vite_project_src_components_contextescaping_builddatawrapper", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/contextEscaping.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_contextescaping", + "target": "apps_electron_vite_project_src_components_contextescaping_buildsystemmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/contextEscaping.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_contextescaping", + "target": "apps_electron_vite_project_src_components_contextescaping_contextitemgovernance", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/contextEscaping.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_contextescaping", + "target": "apps_electron_vite_project_src_components_contextescaping_escapeattr", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/contextEscaping.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_contextescaping", + "target": "apps_electron_vite_project_src_components_contextescaping_escapexml", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/contextEscaping.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_contextescaping", + "target": "apps_electron_vite_project_src_components_contextescaping_filterblocksforlocalai", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/contextEscaping.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_contextescaping", + "target": "apps_electron_vite_project_src_components_contextescaping_preparecontextforllm", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/contextEscaping.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_contextescaping", + "target": "apps_electron_vite_project_src_components_contextescaping_verifiedcontextblock", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/handshakeViewTypes.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeviewtypes", + "target": "apps_electron_vite_project_src_components_contextescaping", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/handshakeViewTypes.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeviewtypes", + "target": "apps_electron_vite_project_src_components_contextescaping_verifiedcontextblock", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/handshakeViewTypes.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeviewtypes_window", + "target": "apps_electron_vite_project_src_components_contextescaping_verifiedcontextblock", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/contextEscaping.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_contextescaping_escapeattr", + "target": "apps_electron_vite_project_src_components_contextescaping_escapexml", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/contextEscaping.ts", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_contextescaping_preparecontextforllm", + "target": "apps_electron_vite_project_src_components_contextescaping_escapexml", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/contextEscaping.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_contextescaping_preparecontextforllm", + "target": "apps_electron_vite_project_src_components_contextescaping_escapeattr", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/contextEscaping.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_contextescaping_builddatawrapper", + "target": "apps_electron_vite_project_src_components_contextescaping_preparecontextforllm", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/handshakeViewTypes.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeviewtypes", + "target": "apps_electron_vite_project_src_components_handshakeviewtypes_autosortsessionapi", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/handshakeViewTypes.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeviewtypes", + "target": "apps_electron_vite_project_src_components_handshakeviewtypes_beapackreasoncode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/handshakeViewTypes.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeviewtypes", + "target": "apps_electron_vite_project_src_components_handshakeviewtypes_beapdeliveryackdata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/handshakeViewTypes.ts", + "source_location": "L592", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeviewtypes", + "target": "apps_electron_vite_project_src_components_handshakeviewtypes_emailinboxbridge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/handshakeViewTypes.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeviewtypes", + "target": "apps_electron_vite_project_src_components_handshakeviewtypes_window", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/handshakeViewTypes.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeviewtypes", + "target": "apps_electron_vite_project_src_lib_inboxaiusermessages", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/handshakeViewTypes.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeviewtypes", + "target": "apps_electron_vite_project_src_lib_inboxaiusermessages_inboxaierrordebugpayload", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/handshakeViewTypes.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeviewtypes", + "target": "apps_electron_vite_project_src_types_beapinboxclone", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/handshakeViewTypes.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeviewtypes", + "target": "apps_electron_vite_project_src_types_beapinboxclone_beapinboxcloneprepareok", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/handshakeViewTypes.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeviewtypes", + "target": "apps_electron_vite_project_src_types_beapinboxclone_clonebeaptosandboxipcresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/handshakeViewTypes.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeviewtypes", + "target": "apps_electron_vite_project_src_types_inboxai", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/handshakeViewTypes.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeviewtypes", + "target": "apps_electron_vite_project_src_types_inboxai_bulkclassification", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/handshakeViewTypes.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeviewtypes", + "target": "apps_electron_vite_project_src_types_inboxai_normalinboxairesult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox", + "target": "apps_electron_vite_project_src_components_handshakeviewtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/fetchAnalysisDashboardSnapshot.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_components_handshakeviewtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore", + "target": "apps_electron_vite_project_src_components_handshakeviewtypes", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/handshakeViewTypes.ts", + "source_location": "L436", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeviewtypes_window", + "target": "apps_electron_vite_project_src_types_beapinboxclone_clonebeaptosandboxipcresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/handshakeViewTypes.ts", + "source_location": "L743", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeviewtypes_emailinboxbridge", + "target": "apps_electron_vite_project_src_lib_inboxaiusermessages_inboxaierrordebugpayload", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/handshakeViewTypes.ts", + "source_location": "L753", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeviewtypes_emailinboxbridge", + "target": "apps_electron_vite_project_src_types_inboxai_bulkclassification", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/handshakeViewTypes.ts", + "source_location": "L736", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_handshakeviewtypes_emailinboxbridge", + "target": "apps_electron_vite_project_src_types_inboxai_normalinboxairesult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/shared/EmailAccountSelector.tsx", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_shared_emailaccountselector", + "target": "apps_electron_vite_project_src_components_shared_emailaccountselector_accountstatuslabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/shared/EmailAccountSelector.tsx", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_shared_emailaccountselector", + "target": "apps_electron_vite_project_src_components_shared_emailaccountselector_emailaccountselector", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/shared/EmailAccountSelector.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_shared_emailaccountselector", + "target": "apps_electron_vite_project_src_components_shared_emailaccountselector_emailaccountselectoraccount", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/shared/EmailAccountSelector.tsx", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_shared_emailaccountselector", + "target": "apps_electron_vite_project_src_components_shared_emailaccountselector_emailaccountselectorprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/shared/EmailAccountSelector.tsx", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_shared_emailaccountselector", + "target": "apps_electron_vite_project_src_components_shared_emailaccountselector_fetchaccountrows", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/shared/EmailAccountSelector.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_shared_emailaccountselector", + "target": "apps_electron_vite_project_src_components_shared_emailaccountselector_providerlabel", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/shared/EmailAccountSelector.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_shared_emailaccountselector", + "target": "apps_extension_chromium_src_shared_email_connectemailflow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/shared/EmailAccountSelector.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_shared_emailaccountselector", + "target": "apps_extension_chromium_src_shared_email_connectemailflow_connectemailflowtheme", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/shared/EmailAccountSelector.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_shared_emailaccountselector", + "target": "apps_extension_chromium_src_shared_email_connectemailflow_useconnectemailflow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/shared/EmailAccountSelector.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_shared_emailaccountselector", + "target": "apps_extension_chromium_src_shared_email_connectemailtypes_connectemaillaunchsource", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/shared/EmailAccountSelector.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_shared_emailaccountselector", + "target": "apps_extension_chromium_src_shared_email_pickdefaultaccountrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/shared/EmailAccountSelector.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_shared_emailaccountselector", + "target": "apps_extension_chromium_src_shared_email_pickdefaultaccountrow_pickdefaultemailaccountrowid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/shared/EmailAccountSelector.tsx", + "source_location": "L188", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_shared_emailaccountselector_emailaccountselector", + "target": "apps_electron_vite_project_src_components_shared_emailaccountselector_providerlabel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/shared/EmailAccountSelector.tsx", + "source_location": "L206", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_shared_emailaccountselector_emailaccountselector", + "target": "apps_electron_vite_project_src_components_shared_emailaccountselector_accountstatuslabel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/shared/EmailAccountSelector.tsx", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_shared_emailaccountselector_emailaccountselector", + "target": "apps_electron_vite_project_src_components_shared_emailaccountselector_fetchaccountrows", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/shared/EmailAccountSelector.tsx", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_shared_emailaccountselector_emailaccountselectorprops", + "target": "apps_extension_chromium_src_shared_email_connectemailflow_connectemailflowtheme", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/components/shared/EmailAccountSelector.tsx", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_shared_emailaccountselector_emailaccountselectorprops", + "target": "apps_extension_chromium_src_shared_email_connectemailtypes_connectemaillaunchsource", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/shared/EmailAccountSelector.tsx", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_shared_emailaccountselector_emailaccountselector", + "target": "apps_extension_chromium_src_shared_email_connectemailflow_useconnectemailflow" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/components/shared/EmailAccountSelector.tsx", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_components_shared_emailaccountselector_emailaccountselector", + "target": "apps_extension_chromium_src_shared_email_pickdefaultaccountrow_pickdefaultemailaccountrowid" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useActiveHandshakeHealthBanner.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useactivehandshakehealthbanner", + "target": "apps_electron_vite_project_src_hooks_useactivehandshakehealthbanner_readdismissed", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useActiveHandshakeHealthBanner.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useactivehandshakehealthbanner", + "target": "apps_electron_vite_project_src_hooks_useactivehandshakehealthbanner_useactivehandshakehealthbanner", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useActiveHandshakeHealthBanner.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useactivehandshakehealthbanner", + "target": "apps_electron_vite_project_src_hooks_useactivehandshakehealthbanner_writedismissed", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useActiveHandshakeHealthBanner.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useactivehandshakehealthbanner", + "target": "apps_electron_vite_project_src_lib_handshakehealthbannercopy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useActiveHandshakeHealthBanner.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useactivehandshakehealthbanner", + "target": "apps_electron_vite_project_src_lib_handshakehealthbannercopy_handshakehealthdismisskey", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useActiveHandshakeHealthBanner.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useactivehandshakehealthbanner", + "target": "apps_electron_vite_project_src_lib_handshakehealthbannercopy_handshakehealthissuerank", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useActiveHandshakeHealthBanner.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useactivehandshakehealthbanner", + "target": "packages_shared_src_handshake_activehandshakehealthissue", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useActiveHandshakeHealthBanner.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useactivehandshakehealthbanner", + "target": "packages_shared_src_handshake_activehandshakehealthissue_activehandshakehealthissue", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useActiveHandshakeHealthBanner.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useactivehandshakehealthbanner_useactivehandshakehealthbanner", + "target": "apps_electron_vite_project_src_hooks_useactivehandshakehealthbanner_readdismissed", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useActiveHandshakeHealthBanner.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useactivehandshakehealthbanner_useactivehandshakehealthbanner", + "target": "apps_electron_vite_project_src_hooks_useactivehandshakehealthbanner_writedismissed", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/hooks/useActiveHandshakeHealthBanner.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useactivehandshakehealthbanner_useactivehandshakehealthbanner", + "target": "apps_electron_vite_project_src_lib_handshakehealthbannercopy_handshakehealthdismisskey" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/hooks/useActiveHandshakeHealthBanner.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useactivehandshakehealthbanner_useactivehandshakehealthbanner", + "target": "apps_electron_vite_project_src_lib_handshakehealthbannercopy_handshakehealthissuerank" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useDeleteFromProviderOnLocalDelete.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_usedeletefromprovideronlocaldelete", + "target": "apps_electron_vite_project_src_hooks_usedeletefromprovideronlocaldelete_smartsyncprovideraccountrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useDeleteFromProviderOnLocalDelete.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_usedeletefromprovideronlocaldelete", + "target": "apps_electron_vite_project_src_hooks_usedeletefromprovideronlocaldelete_usedeletefromprovideronlocaldelete", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useHostToSandboxDirectReachability.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_usehosttosandboxdirectreachability", + "target": "apps_electron_vite_project_src_hooks_usehosttosandboxdirectreachability_sandboxpeerrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useHostToSandboxDirectReachability.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_usehosttosandboxdirectreachability", + "target": "apps_electron_vite_project_src_hooks_usehosttosandboxdirectreachability_usehosttosandboxdirectreachability", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useHostToSandboxDirectReachability.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_usehosttosandboxdirectreachability", + "target": "apps_electron_vite_project_src_hooks_useorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useHostToSandboxDirectReachability.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_usehosttosandboxdirectreachability", + "target": "apps_electron_vite_project_src_hooks_useorchestratormode_useorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useHostToSandboxDirectReachability.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_usehosttosandboxdirectreachability", + "target": "apps_electron_vite_project_src_lib_hostinferenceuigates", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useHostToSandboxDirectReachability.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_usehosttosandboxdirectreachability", + "target": "apps_electron_vite_project_src_lib_hostinferenceuigates_directp2preachabilitystatus", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/hooks/useHostToSandboxDirectReachability.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_usehosttosandboxdirectreachability_usehosttosandboxdirectreachability", + "target": "apps_electron_vite_project_src_hooks_useorchestratormode_useorchestratormode" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useInboxPreloadQueue.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useinboxpreloadqueue", + "target": "apps_electron_vite_project_src_hooks_useinboxpreloadqueue_adaptivestate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useInboxPreloadQueue.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useinboxpreloadqueue", + "target": "apps_electron_vite_project_src_hooks_useinboxpreloadqueue_scheduleidle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useInboxPreloadQueue.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useinboxpreloadqueue", + "target": "apps_electron_vite_project_src_hooks_useinboxpreloadqueue_useinboxpreloadqueue", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useInboxPreloadQueue.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useinboxpreloadqueue", + "target": "apps_electron_vite_project_src_hooks_useinboxpreloadqueue_useinboxpreloadqueueoptions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useInboxPreloadQueue.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useinboxpreloadqueue", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useInboxPreloadQueue.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useinboxpreloadqueue", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics_autosortdiaglog", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useInboxPreloadQueue.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useinboxpreloadqueue", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useInboxPreloadQueue.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useinboxpreloadqueue", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useInboxPreloadQueue.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useinboxpreloadqueue", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_useemailinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useInboxPreloadQueue.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useinboxpreloadqueue", + "target": "apps_electron_vite_project_src_types_inboxai", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useInboxPreloadQueue.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useinboxpreloadqueue", + "target": "apps_electron_vite_project_src_types_inboxai_normalinboxairesult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useInboxPreloadQueue.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useinboxpreloadqueue", + "target": "apps_electron_vite_project_src_utils_parseinboxaijson", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useInboxPreloadQueue.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useinboxpreloadqueue", + "target": "apps_electron_vite_project_src_utils_parseinboxaijson_tryparseanalysis", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useInboxPreloadQueue.ts", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useinboxpreloadqueue_useinboxpreloadqueue", + "target": "apps_electron_vite_project_src_hooks_useinboxpreloadqueue_scheduleidle", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useInboxPreloadQueue.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useinboxpreloadqueue_useinboxpreloadqueueoptions", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxmessage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useInboxPreloadQueue.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useinboxpreloadqueue_useinboxpreloadqueueoptions", + "target": "apps_electron_vite_project_src_types_inboxai_normalinboxairesult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/hooks/useInboxPreloadQueue.ts", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useinboxpreloadqueue_useinboxpreloadqueue", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics_autosortdiaglog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/hooks/useInboxPreloadQueue.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useinboxpreloadqueue_useinboxpreloadqueue", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_useemailinboxstore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/hooks/useInboxPreloadQueue.ts", + "source_location": "L187", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useinboxpreloadqueue_useinboxpreloadqueue", + "target": "apps_electron_vite_project_src_utils_parseinboxaijson_tryparseanalysis" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useIngestionStatus.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useingestionstatus_test", + "target": "apps_electron_vite_project_src_hooks_useingestionstatus_test_shouldsuppressbanners", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useIngestionStatus.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useingestionstatus", + "target": "apps_electron_vite_project_src_hooks_useingestionstatus_shouldsuppressbanners", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useIngestionStatus.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useingestionstatus", + "target": "apps_electron_vite_project_src_hooks_useingestionstatus_useingestionstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useIngestionStatus.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useingestionstatus", + "target": "apps_electron_vite_project_src_hooks_useingestionstatus_useingestionstatusoptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useIngestionStatus.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useingestionstatus", + "target": "apps_electron_vite_project_src_hooks_useingestionstatus_useingestionstatusresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useIngestionStatus.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useingestionstatus_useingestionstatus", + "target": "apps_electron_vite_project_src_hooks_useingestionstatus_shouldsuppressbanners", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useInternalSandboxesList.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useinternalsandboxeslist", + "target": "apps_electron_vite_project_src_hooks_useinternalsandboxeslist_internalsandboxeslistsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useInternalSandboxesList.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useinternalsandboxeslist", + "target": "apps_electron_vite_project_src_hooks_useinternalsandboxeslist_internalsandboxincompletewire", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useInternalSandboxesList.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useinternalsandboxeslist", + "target": "apps_electron_vite_project_src_hooks_useinternalsandboxeslist_internalsandboxtargetwire", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useInternalSandboxesList.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useinternalsandboxeslist", + "target": "apps_electron_vite_project_src_hooks_useinternalsandboxeslist_useinternalsandboxeslist", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useInternalSandboxesList.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useinternalsandboxeslist", + "target": "apps_electron_vite_project_src_types_sandboxorchestratoravailability", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useInternalSandboxesList.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useinternalsandboxeslist", + "target": "apps_electron_vite_project_src_types_sandboxorchestratoravailability_authoritativedeviceinternalrole", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useInternalSandboxesList.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useinternalsandboxeslist", + "target": "apps_electron_vite_project_src_types_sandboxorchestratoravailability_defaultsandboxavailability", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useInternalSandboxesList.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useinternalsandboxeslist", + "target": "apps_electron_vite_project_src_types_sandboxorchestratoravailability_sandboxorchestratoravailability", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/resolveActiveSandboxCloneTargets.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_resolveactivesandboxclonetargets", + "target": "apps_electron_vite_project_src_hooks_useinternalsandboxeslist", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/resolveActiveSandboxCloneTargets.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_resolveactivesandboxclonetargets_test", + "target": "apps_electron_vite_project_src_hooks_useinternalsandboxeslist", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/resolveActiveSandboxCloneTargets.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_resolveactivesandboxclonetargets", + "target": "apps_electron_vite_project_src_hooks_useinternalsandboxeslist_internalsandboxtargetwire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/resolveActiveSandboxCloneTargets.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_resolveactivesandboxclonetargets_test", + "target": "apps_electron_vite_project_src_hooks_useinternalsandboxeslist_internalsandboxtargetwire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/resolveActiveSandboxCloneTargets.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_resolveactivesandboxclonetargets", + "target": "apps_electron_vite_project_src_hooks_useinternalsandboxeslist_internalsandboxincompletewire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/resolveActiveSandboxCloneTargets.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_resolveactivesandboxclonetargets_test", + "target": "apps_electron_vite_project_src_hooks_useinternalsandboxeslist_internalsandboxincompletewire", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useOrchestratorMode.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useorchestratormode", + "target": "apps_electron_vite_project_src_hooks_useorchestratormode_useorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useOrchestratorMode.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useorchestratormode", + "target": "apps_electron_vite_project_src_lib_dedicatedsandboxingestionui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useOrchestratorMode.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useorchestratormode", + "target": "apps_electron_vite_project_src_lib_dedicatedsandboxingestionui_isdedicatedsandboxhosttriggeredingestion", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useOrchestratorMode.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useorchestratormode", + "target": "apps_electron_vite_project_src_lib_dedicatedsandboxingestionui_sandboxtopologykind", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useOrchestratorMode.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useorchestratormode", + "target": "apps_electron_vite_project_src_lib_orchestratormodevshandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useOrchestratorMode.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useorchestratormode", + "target": "apps_electron_vite_project_src_lib_orchestratormodevshandshake_getorchestratormodevshandshakeinfo", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useOrchestratorMode.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useorchestratormode", + "target": "apps_electron_vite_project_src_lib_orchestratormodevshandshake_handshakeroleformodemismatch", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useOrchestratorMode.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useorchestratormode", + "target": "apps_electron_vite_project_src_lib_orchestratormodevshandshake_logorchestratormodevshandshakemismatch", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useSandboxHostInference.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_usesandboxhostinference", + "target": "apps_electron_vite_project_src_hooks_useorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/hooks/useOrchestratorMode.ts", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useorchestratormode_useorchestratormode", + "target": "apps_electron_vite_project_src_lib_dedicatedsandboxingestionui_isdedicatedsandboxhosttriggeredingestion" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/hooks/useOrchestratorMode.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useorchestratormode_useorchestratormode", + "target": "apps_electron_vite_project_src_lib_orchestratormodevshandshake_getorchestratormodevshandshakeinfo" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/hooks/useOrchestratorMode.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useorchestratormode_useorchestratormode", + "target": "apps_electron_vite_project_src_lib_orchestratormodevshandshake_handshakeroleformodemismatch" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/hooks/useOrchestratorMode.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_useorchestratormode_useorchestratormode", + "target": "apps_electron_vite_project_src_lib_orchestratormodevshandshake_logorchestratormodevshandshakemismatch" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useSandboxHostInference.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_usesandboxhostinference", + "target": "apps_electron_vite_project_src_hooks_useorchestratormode_useorchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/hooks/useSandboxHostInference.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_usesandboxhostinference_usesandboxhostinference", + "target": "apps_electron_vite_project_src_hooks_useorchestratormode_useorchestratormode" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useRevocationBanner.logic.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_userevocationbanner_logic_test", + "target": "apps_electron_vite_project_src_hooks_userevocationbanner", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useRevocationBanner.logic.test.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_userevocationbanner_logic_test", + "target": "apps_electron_vite_project_src_hooks_userevocationbanner_logic_test_findlatestactive", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useRevocationBanner.logic.test.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_userevocationbanner_logic_test", + "target": "apps_electron_vite_project_src_hooks_userevocationbanner_logic_test_isactive", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useRevocationBanner.logic.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_userevocationbanner_logic_test", + "target": "apps_electron_vite_project_src_hooks_userevocationbanner_revokenoticerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useRevocationBanner.logic.test.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_userevocationbanner_logic_test_findlatestactive", + "target": "apps_electron_vite_project_src_hooks_userevocationbanner_logic_test_isactive", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useRevocationBanner.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_userevocationbanner", + "target": "apps_electron_vite_project_src_hooks_userevocationbanner_findactivenotice", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useRevocationBanner.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_userevocationbanner", + "target": "apps_electron_vite_project_src_hooks_userevocationbanner_isactive", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useRevocationBanner.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_userevocationbanner", + "target": "apps_electron_vite_project_src_hooks_userevocationbanner_readrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useRevocationBanner.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_userevocationbanner", + "target": "apps_electron_vite_project_src_hooks_userevocationbanner_revokenoticerecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useRevocationBanner.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_userevocationbanner", + "target": "apps_electron_vite_project_src_hooks_userevocationbanner_storagekey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useRevocationBanner.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_userevocationbanner", + "target": "apps_electron_vite_project_src_hooks_userevocationbanner_userevocationbanner", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useRevocationBanner.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_userevocationbanner", + "target": "apps_electron_vite_project_src_hooks_userevocationbanner_userevocationbannerresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useRevocationBanner.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_userevocationbanner", + "target": "apps_electron_vite_project_src_hooks_userevocationbanner_writerecord", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useRevocationBanner.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_userevocationbanner_rationale_20", + "target": "apps_electron_vite_project_src_hooks_userevocationbanner", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useRevocationBanner.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_userevocationbanner_readrecord", + "target": "apps_electron_vite_project_src_hooks_userevocationbanner_storagekey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useRevocationBanner.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_userevocationbanner_writerecord", + "target": "apps_electron_vite_project_src_hooks_userevocationbanner_storagekey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useRevocationBanner.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_userevocationbanner_userevocationbanner", + "target": "apps_electron_vite_project_src_hooks_userevocationbanner_writerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useRevocationBanner.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_userevocationbanner_findactivenotice", + "target": "apps_electron_vite_project_src_hooks_userevocationbanner_isactive", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useRevocationBanner.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_userevocationbanner_userevocationbanner", + "target": "apps_electron_vite_project_src_hooks_userevocationbanner_findactivenotice", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useSandboxHostInference.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_usesandboxhostinference", + "target": "apps_electron_vite_project_src_hooks_usesandboxhostinference_formatpairingdisplay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useSandboxHostInference.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_usesandboxhostinference", + "target": "apps_electron_vite_project_src_hooks_usesandboxhostinference_hostinferencecandidaterow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useSandboxHostInference.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_usesandboxhostinference", + "target": "apps_electron_vite_project_src_hooks_usesandboxhostinference_hostinferencegavsync", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useSandboxHostInference.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_usesandboxhostinference", + "target": "apps_electron_vite_project_src_hooks_usesandboxhostinference_hostinferencetargetrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useSandboxHostInference.ts", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_usesandboxhostinference", + "target": "apps_electron_vite_project_src_hooks_usesandboxhostinference_policystate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useSandboxHostInference.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_usesandboxhostinference", + "target": "apps_electron_vite_project_src_hooks_usesandboxhostinference_targetstocandidates", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useSandboxHostInference.ts", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_usesandboxhostinference", + "target": "apps_electron_vite_project_src_hooks_usesandboxhostinference_usesandboxhostinference", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useSandboxHostInference.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_usesandboxhostinference", + "target": "apps_electron_vite_project_src_lib_coalescedlistinferencetargets", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useSandboxHostInference.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_usesandboxhostinference", + "target": "apps_electron_vite_project_src_lib_coalescedlistinferencetargets_coalescedlistinferencetargetsinvoke", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useSandboxHostInference.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_usesandboxhostinference", + "target": "apps_electron_vite_project_src_lib_hostaitargetuinormalization", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useSandboxHostInference.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_usesandboxhostinference", + "target": "apps_electron_vite_project_src_lib_hostaitargetuinormalization_serializenormalizedhostaitargetlistui", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useSandboxHostInference.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_usesandboxhostinference", + "target": "apps_electron_vite_project_src_lib_hostinferenceuigates", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useSandboxHostInference.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_usesandboxhostinference", + "target": "apps_electron_vite_project_src_lib_hostinferenceuigates_directp2preachabilitystatus", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useSandboxHostInference.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_usesandboxhostinference", + "target": "apps_electron_vite_project_src_lib_inferencetargetrefreshlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useSandboxHostInference.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_usesandboxhostinference", + "target": "apps_electron_vite_project_src_lib_inferencetargetrefreshlog_inferencetargetrefreshreason", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useSandboxHostInference.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_usesandboxhostinference", + "target": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useSandboxHostInference.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_usesandboxhostinference", + "target": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility_computeshowhostinferencerefresh", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useSandboxHostInference.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_usesandboxhostinference", + "target": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility_discoveryhashostinternalrows", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/aiExecutionContextFromSelection.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_aiexecutioncontextfromselection", + "target": "apps_electron_vite_project_src_hooks_usesandboxhostinference", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/appendHostRowsFromListInference.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_appendhostrowsfromlistinference", + "target": "apps_electron_vite_project_src_hooks_usesandboxhostinference", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostActiveModelSelection.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostactivemodelselection", + "target": "apps_electron_vite_project_src_hooks_usesandboxhostinference", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiRemoteChatLane.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostairemotechatlane", + "target": "apps_electron_vite_project_src_hooks_usesandboxhostinference", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiSelectorCopy.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaiselectorcopy", + "target": "apps_electron_vite_project_src_hooks_usesandboxhostinference", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiTargetConnectionPresentation.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation", + "target": "apps_electron_vite_project_src_hooks_usesandboxhostinference", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostModelSelectorRowUi.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostmodelselectorrowui", + "target": "apps_electron_vite_project_src_hooks_usesandboxhostinference", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostRefreshFeedback.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostrefreshfeedback", + "target": "apps_electron_vite_project_src_hooks_usesandboxhostinference", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "target": "apps_electron_vite_project_src_hooks_usesandboxhostinference", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/modelSelectorMerge.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_modelselectormerge", + "target": "apps_electron_vite_project_src_hooks_usesandboxhostinference", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/selectorModelListFromHostDiscovery.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_selectormodellistfromhostdiscovery", + "target": "apps_electron_vite_project_src_hooks_usesandboxhostinference", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostActiveModelSelection.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostactivemodelselection_test", + "target": "apps_electron_vite_project_src_hooks_usesandboxhostinference", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostAiRemoteChatLane.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostairemotechatlane_test", + "target": "apps_electron_vite_project_src_hooks_usesandboxhostinference", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostAiTargetConnectionPresentation.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostaitargetconnectionpresentation_test", + "target": "apps_electron_vite_project_src_hooks_usesandboxhostinference", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostAiTargetUiNormalization.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostaitargetuinormalization_test", + "target": "apps_electron_vite_project_src_hooks_usesandboxhostinference", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostModelSelectorRowUi.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostmodelselectorrowui_test", + "target": "apps_electron_vite_project_src_hooks_usesandboxhostinference", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/inferenceSelectionPersistence.ollamaDirect.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_inferenceselectionpersistence_ollamadirect_test", + "target": "apps_electron_vite_project_src_hooks_usesandboxhostinference", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.productionSafety.integration.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step8_productionsafety_integration_test", + "target": "apps_electron_vite_project_src_hooks_usesandboxhostinference", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/aiExecutionContextFromSelection.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_aiexecutioncontextfromselection", + "target": "apps_electron_vite_project_src_hooks_usesandboxhostinference_hostinferencetargetrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/appendHostRowsFromListInference.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_appendhostrowsfromlistinference", + "target": "apps_electron_vite_project_src_hooks_usesandboxhostinference_hostinferencetargetrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostActiveModelSelection.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostactivemodelselection", + "target": "apps_electron_vite_project_src_hooks_usesandboxhostinference_hostinferencetargetrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiRemoteChatLane.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostairemotechatlane", + "target": "apps_electron_vite_project_src_hooks_usesandboxhostinference_hostinferencetargetrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiSelectorCopy.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaiselectorcopy", + "target": "apps_electron_vite_project_src_hooks_usesandboxhostinference_hostinferencetargetrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiTargetConnectionPresentation.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation", + "target": "apps_electron_vite_project_src_hooks_usesandboxhostinference_hostinferencetargetrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiTargetUiNormalization.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaitargetuinormalization", + "target": "apps_electron_vite_project_src_hooks_usesandboxhostinference_hostinferencetargetrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostModelSelectorRowUi.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostmodelselectorrowui", + "target": "apps_electron_vite_project_src_hooks_usesandboxhostinference_hostinferencetargetrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostRefreshFeedback.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostrefreshfeedback", + "target": "apps_electron_vite_project_src_hooks_usesandboxhostinference_hostinferencetargetrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "target": "apps_electron_vite_project_src_hooks_usesandboxhostinference_hostinferencetargetrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/modelSelectorHostRefreshVisibility.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility", + "target": "apps_electron_vite_project_src_hooks_usesandboxhostinference_hostinferencetargetrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/modelSelectorMerge.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_modelselectormerge", + "target": "apps_electron_vite_project_src_hooks_usesandboxhostinference_hostinferencetargetrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/selectorModelListFromHostDiscovery.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_selectormodellistfromhostdiscovery", + "target": "apps_electron_vite_project_src_hooks_usesandboxhostinference_hostinferencetargetrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostActiveModelSelection.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostactivemodelselection_test", + "target": "apps_electron_vite_project_src_hooks_usesandboxhostinference_hostinferencetargetrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostAiRemoteChatLane.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostairemotechatlane_test", + "target": "apps_electron_vite_project_src_hooks_usesandboxhostinference_hostinferencetargetrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostAiTargetConnectionPresentation.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostaitargetconnectionpresentation_test", + "target": "apps_electron_vite_project_src_hooks_usesandboxhostinference_hostinferencetargetrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostAiTargetUiNormalization.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostaitargetuinormalization_test", + "target": "apps_electron_vite_project_src_hooks_usesandboxhostinference_hostinferencetargetrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostModelSelectorRowUi.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostmodelselectorrowui_test", + "target": "apps_electron_vite_project_src_hooks_usesandboxhostinference_hostinferencetargetrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/inferenceSelectionPersistence.ollamaDirect.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_inferenceselectionpersistence_ollamadirect_test", + "target": "apps_electron_vite_project_src_hooks_usesandboxhostinference_hostinferencetargetrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.productionSafety.integration.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step8_productionsafety_integration_test", + "target": "apps_electron_vite_project_src_hooks_usesandboxhostinference_hostinferencetargetrow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useSandboxHostInference.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_usesandboxhostinference_targetstocandidates", + "target": "apps_electron_vite_project_src_hooks_usesandboxhostinference_formatpairingdisplay", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useSandboxHostInference.ts", + "source_location": "L228", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_usesandboxhostinference_usesandboxhostinference", + "target": "apps_electron_vite_project_src_hooks_usesandboxhostinference_targetstocandidates", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/hooks/useSandboxHostInference.ts", + "source_location": "L219", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_usesandboxhostinference_usesandboxhostinference", + "target": "apps_electron_vite_project_src_lib_coalescedlistinferencetargets_coalescedlistinferencetargetsinvoke" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/hooks/useSandboxHostInference.ts", + "source_location": "L294", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_usesandboxhostinference_usesandboxhostinference", + "target": "apps_electron_vite_project_src_lib_hostaitargetuinormalization_serializenormalizedhostaitargetlistui" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/hooks/useSandboxHostInference.ts", + "source_location": "L159", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_usesandboxhostinference_usesandboxhostinference", + "target": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility_computeshowhostinferencerefresh" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/hooks/useSandboxHostInference.ts", + "source_location": "L152", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_usesandboxhostinference_usesandboxhostinference", + "target": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility_discoveryhashostinternalrows" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useSandboxReadCleanupHint.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_usesandboxreadcleanuphint", + "target": "apps_electron_vite_project_src_hooks_usesandboxreadcleanuphint_isdismissed", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useSandboxReadCleanupHint.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_usesandboxreadcleanuphint", + "target": "apps_electron_vite_project_src_hooks_usesandboxreadcleanuphint_markdismissed", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useSandboxReadCleanupHint.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_usesandboxreadcleanuphint", + "target": "apps_electron_vite_project_src_hooks_usesandboxreadcleanuphint_readaccount", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useSandboxReadCleanupHint.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_usesandboxreadcleanuphint", + "target": "apps_electron_vite_project_src_hooks_usesandboxreadcleanuphint_sandboxreadcleanuphintstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useSandboxReadCleanupHint.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_usesandboxreadcleanuphint", + "target": "apps_electron_vite_project_src_hooks_usesandboxreadcleanuphint_usesandboxreadcleanuphint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useSandboxReadCleanupHint.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_usesandboxreadcleanuphint", + "target": "apps_electron_vite_project_src_hooks_usesandboxreadcleanuphint_usesandboxreadcleanuphintresult", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useSandboxReadCleanupHint.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_usesandboxreadcleanuphint_rationale_15", + "target": "apps_electron_vite_project_src_hooks_usesandboxreadcleanuphint", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useSandboxReadCleanupHint.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_usesandboxreadcleanuphint_usesandboxreadcleanuphint", + "target": "apps_electron_vite_project_src_hooks_usesandboxreadcleanuphint_isdismissed", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useSandboxReadCleanupHint.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_usesandboxreadcleanuphint_usesandboxreadcleanuphint", + "target": "apps_electron_vite_project_src_hooks_usesandboxreadcleanuphint_markdismissed", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useTopologyDelegationModal.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_usetopologydelegationmodal", + "target": "apps_electron_vite_project_src_hooks_usetopologydelegationmodal_isdismissed", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useTopologyDelegationModal.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_usetopologydelegationmodal", + "target": "apps_electron_vite_project_src_hooks_usetopologydelegationmodal_markdismissed", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useTopologyDelegationModal.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_usetopologydelegationmodal", + "target": "apps_electron_vite_project_src_hooks_usetopologydelegationmodal_usetopologydelegationmodal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useTopologyDelegationModal.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_usetopologydelegationmodal", + "target": "apps_electron_vite_project_src_hooks_usetopologydelegationmodal_usetopologydelegationmodalresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useTopologyDelegationModal.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_usetopologydelegationmodal_usetopologydelegationmodal", + "target": "apps_electron_vite_project_src_hooks_usetopologydelegationmodal_isdismissed", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/hooks/useTopologyDelegationModal.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_hooks_usetopologydelegationmodal_usetopologydelegationmodal", + "target": "apps_electron_vite_project_src_hooks_usetopologydelegationmodal_markdismissed", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L318", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_addremoteice", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L306", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_applyremoteanswer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L291", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_applyremoteoffer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L229", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_attachdc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_clearicetomaindrain", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L334", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_closeone", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L197", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_createone", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_emiterror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_emitpendingiceendtomain", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_emitstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L157", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_enqueuelocalicecandidate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_frommain", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_getpod", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "confidence": "INFERRED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L445", + "weight": 1.0, + "_origin": "ast", + "context": "argument", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_handlefrommain", + "confidence_score": 0.5 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_handshakeactivesessionid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_icestampforactivesessionornull", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_issessionactiveforoutboundice", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L264", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_maybenegotiate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L166", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_onpcsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_out", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_pumpicetomain", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_role", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_rtc_cfg", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L376", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_runinpagelocalpair", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L358", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_senddatatodc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_session", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_sessions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_wrdeskwebrtcp2p", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_out", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_getpod", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L300", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_applyremoteoffer", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_out", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L232", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_attachdc", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_out", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L204", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_createone", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_out", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_emiterror", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_out", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_emitpendingiceendtomain", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_out", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_emitstate", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_out", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L417", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_handlefrommain", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_out", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L269", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_maybenegotiate", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_out", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L137", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_pumpicetomain", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_out", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L385", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_runinpagelocalpair", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_out", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L182", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_onpcsession", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_emitstate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L330", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_addremoteice", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_emiterror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L314", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_applyremoteanswer", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_emiterror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L302", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_applyremoteoffer", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_emiterror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L282", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_maybenegotiate", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_emiterror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L369", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_senddatatodc", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_emiterror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L342", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_closeone", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_clearicetomaindrain", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_emitpendingiceendtomain", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_icestampforactivesessionornull", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_issessionactiveforoutboundice", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_icestampforactivesessionornull", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_pumpicetomain", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_icestampforactivesessionornull", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_emitpendingiceendtomain", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_issessionactiveforoutboundice", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L158", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_enqueuelocalicecandidate", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_issessionactiveforoutboundice", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_onpcsession", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_issessionactiveforoutboundice", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_pumpicetomain", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_issessionactiveforoutboundice", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_emitpendingiceendtomain", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_closeone", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L176", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_onpcsession", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_emitpendingiceendtomain", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_pumpicetomain", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_emitpendingiceendtomain", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_enqueuelocalicecandidate", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_pumpicetomain", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_onpcsession", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_pumpicetomain", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_pumpicetomain", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_closeone", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L159", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_enqueuelocalicecandidate", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_closeone", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L179", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_onpcsession", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_enqueuelocalicecandidate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L216", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_createone", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_onpcsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L171", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_onpcsession", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_closeone", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L219", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_createone", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_attachdc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_createone", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_closeone", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L226", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_createone", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_maybenegotiate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L418", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_handlefrommain", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_createone", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L421", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_handlefrommain", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_applyremoteoffer", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L424", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_handlefrommain", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_applyremoteanswer", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L427", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_handlefrommain", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_addremoteice", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L430", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_handlefrommain", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_closeone", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L433", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_handlefrommain", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_senddatatodc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts", + "source_location": "L436", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_handlefrommain", + "target": "apps_electron_vite_project_src_internal_inference_p2p_transport_transportpage_runinpagelocalpair", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/beapInboxActionTooltips.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_beapinboxactiontooltips_test", + "target": "apps_electron_vite_project_src_lib_beapinboxactiontooltips", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/beapInboxActionTooltips.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_beapinboxactiontooltips_test", + "target": "apps_electron_vite_project_src_lib_beapinboxactiontooltips_beap_inbox_redirect_aria", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/beapInboxActionTooltips.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_beapinboxactiontooltips_test", + "target": "apps_electron_vite_project_src_lib_beapinboxactiontooltips_beap_inbox_redirect_tip", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/beapInboxActionTooltips.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_beapinboxactiontooltips_test", + "target": "apps_electron_vite_project_src_lib_beapinboxactiontooltips_beap_inbox_reply_tooltip", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/beapInboxActionTooltips.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_beapinboxactiontooltips_test", + "target": "apps_electron_vite_project_src_lib_beapinboxactiontooltips_beaphostsandboxclonetooltipforavailability", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/beapInboxActionTooltips.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_beapinboxactiontooltips_test", + "target": "apps_electron_vite_project_src_lib_beapinboxactiontooltips_beapinboxredirecttooltippropsfordetail", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/beapInboxActionTooltips.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_beapinboxactiontooltips_test", + "target": "apps_electron_vite_project_src_lib_beapinboxactiontooltips_beapinboxredirecttooltippropsforrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/beapInboxActionTooltips.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_beapinboxactiontooltips_test", + "target": "apps_electron_vite_project_src_lib_beapinboxactiontooltips_beapinboxreplytooltipprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/beapInboxActionTooltips.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_beapinboxactiontooltips_test", + "target": "apps_electron_vite_project_src_types_sandboxorchestratoravailability", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/beapInboxActionTooltips.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_beapinboxactiontooltips_test", + "target": "apps_electron_vite_project_src_types_sandboxorchestratoravailability_defaultsandboxavailability", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/beapInboxHostSandboxClickPolicy.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_beapinboxhostsandboxclickpolicy_test", + "target": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/beapInboxHostSandboxClickPolicy.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_beapinboxhostsandboxclickpolicy_test", + "target": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy_resolvehostsandboxcloneclickaction", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/beapInboxHostSandboxClickPolicy.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_beapinboxhostsandboxclickpolicy_test", + "target": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy_sandboxcloneunavailabledialogvariant", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/beapInboxHostSandboxClickPolicy.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_beapinboxhostsandboxclickpolicy_test", + "target": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy_toproductsandboxtargetdecision", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/beapInboxSandboxVisibility.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_beapinboxsandboxvisibility_test", + "target": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/beapInboxSandboxVisibility.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_beapinboxsandboxvisibility_test", + "target": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility_canshowsandboxaction", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/beapInboxSandboxVisibility.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_beapinboxsandboxvisibility_test", + "target": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility_canshowsandboxcloneaction", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/beapInboxSandboxVisibility.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_beapinboxsandboxvisibility_test", + "target": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility_canshowsandboxcloneicon", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/beapInboxSandboxVisibility.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_beapinboxsandboxvisibility_test", + "target": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility_getsandboxcloneeligibilitydetail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/beapInboxSandboxVisibility.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_beapinboxsandboxvisibility_test", + "target": "apps_electron_vite_project_src_lib_tests_beapinboxsandboxvisibility_test_listokhost", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/beapInboxSandboxVisibility.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_beapinboxsandboxvisibility_test", + "target": "apps_electron_vite_project_src_lib_tests_beapinboxsandboxvisibility_test_listoknone", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/beapInboxSandboxVisibility.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_beapinboxsandboxvisibility_test", + "target": "apps_electron_vite_project_src_lib_tests_beapinboxsandboxvisibility_test_msg", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/beapInboxSandboxVisibility.test.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_beapinboxsandboxvisibility_test", + "target": "apps_electron_vite_project_src_lib_tests_beapinboxsandboxvisibility_test_params", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/beapInboxSandboxVisibility.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_beapinboxsandboxvisibility_test", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/beapInboxSandboxVisibility.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_beapinboxsandboxvisibility_test", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/beapInboxSandboxVisibility.test.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_beapinboxsandboxvisibility_test_params", + "target": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/beapInboxUxSourceRegressions.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_beapinboxuxsourceregressions_test", + "target": "apps_electron_vite_project_src_lib_tests_beapinboxuxsourceregressions_test_dirname", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/beapInboxUxSourceRegressions.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_beapinboxuxsourceregressions_test", + "target": "apps_electron_vite_project_src_lib_tests_beapinboxuxsourceregressions_test_evproot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/beapInboxUxSourceRegressions.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_beapinboxuxsourceregressions_test", + "target": "apps_electron_vite_project_src_lib_tests_beapinboxuxsourceregressions_test_readrel", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/beapInboxVisibleSandboxClone.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_beapinboxvisiblesandboxclone_test", + "target": "apps_electron_vite_project_src_lib_beapinboxvisiblesandboxclone", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/beapInboxVisibleSandboxClone.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_beapinboxvisiblesandboxclone_test", + "target": "apps_electron_vite_project_src_lib_beapinboxvisiblesandboxclone_canclonevisibleinboxmessagetosandbox", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/beapSandboxCloneDeliverySemantics.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_beapsandboxclonedeliverysemantics_test", + "target": "apps_electron_vite_project_src_lib_beapsandboxclonedeliverysemantics", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/beapSandboxCloneDeliverySemantics.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_beapsandboxclonedeliverysemantics_test", + "target": "apps_electron_vite_project_src_lib_beapsandboxclonedeliverysemantics_mapcoordinationdeliverytomatrixmode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/buildBSandboxViewportUi.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_buildbsandboxviewportui_test", + "target": "apps_electron_vite_project_src_lib_tests_buildbsandboxviewportui_test_dir", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/buildBSandboxViewportUi.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_buildbsandboxviewportui_test", + "target": "apps_electron_vite_project_src_lib_tests_buildbsandboxviewportui_test_read", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/buildBSandboxViewportUi.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_buildbsandboxviewportui_test", + "target": "apps_electron_vite_project_src_lib_tests_buildbsandboxviewportui_test_srcroot", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/coalescedListInferenceTargets.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_coalescedlistinferencetargets_test", + "target": "apps_electron_vite_project_src_lib_coalescedlistinferencetargets", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/coalescedListInferenceTargets.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_coalescedlistinferencetargets_test", + "target": "apps_electron_vite_project_src_lib_coalescedlistinferencetargets_coalescedlistinferencetargetsinvoke", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/coalescedListInferenceTargets.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_coalescedlistinferencetargets_test", + "target": "apps_electron_vite_project_src_lib_coalescedlistinferencetargets_resetcoalescedlistinferencetargetsfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/debugLogClipboard.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_debuglogclipboard_test", + "target": "apps_electron_vite_project_src_lib_debuglogclipboard", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/debugLogClipboard.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_debuglogclipboard_test", + "target": "apps_electron_vite_project_src_lib_debuglogclipboard_buildclipboardtext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/debugLogClipboard.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_debuglogclipboard_test", + "target": "apps_electron_vite_project_src_lib_debuglogclipboard_filterlogentries", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/debugLogClipboard.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_debuglogclipboard_test", + "target": "apps_electron_vite_project_src_lib_debuglogclipboard_formatlinedisplay", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/debugLogClipboard.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_debuglogclipboard_test", + "target": "apps_electron_vite_project_src_lib_debuglogclipboard_formatlineplain", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/debugLogClipboard.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_debuglogclipboard_test", + "target": "apps_electron_vite_project_src_lib_debuglogclipboard_logentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/debugLogClipboard.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_debuglogclipboard_test", + "target": "apps_electron_vite_project_src_lib_tests_debuglogclipboard_test_makeentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/debugLogClipboard.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_debuglogclipboard_test", + "target": "apps_electron_vite_project_src_lib_tests_debuglogclipboard_test_mixed_logs", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/dedicatedSandboxIngestionUi.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_dedicatedsandboxingestionui_test", + "target": "apps_electron_vite_project_src_lib_dedicatedsandboxingestionui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/dedicatedSandboxIngestionUi.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_dedicatedsandboxingestionui_test", + "target": "apps_electron_vite_project_src_lib_dedicatedsandboxingestionui_dedicated_sandbox_host_triggered_status", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/dedicatedSandboxIngestionUi.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_dedicatedsandboxingestionui_test", + "target": "apps_electron_vite_project_src_lib_dedicatedsandboxingestionui_isdedicatedsandboxhosttriggeredingestion", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/fetchSelectorModelListFromHostDiscovery.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_fetchselectormodellistfromhostdiscovery_test", + "target": "apps_electron_vite_project_src_lib_selectormodellistfromhostdiscovery", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/fetchSelectorModelListFromHostDiscovery.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_fetchselectormodellistfromhostdiscovery_test", + "target": "apps_electron_vite_project_src_lib_selectormodellistfromhostdiscovery_fetchselectormodellistfromhostdiscovery", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/fetchSelectorModelListFromHostDiscovery.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_fetchselectormodellistfromhostdiscovery_test", + "target": "apps_electron_vite_project_src_lib_tests_fetchselectormodellistfromhostdiscovery_test_append", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/finalAcceptance.hostAiInvariants.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_finalacceptance_hostaiinvariants_test", + "target": "apps_electron_vite_project_src_lib_hostinferenceuigates", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/finalAcceptance.hostAiInvariants.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_finalacceptance_hostaiinvariants_test", + "target": "apps_electron_vite_project_src_lib_hostinferenceuigates_hostinferenceoptionvisible", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/finalAcceptance.hostAiInvariants.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_finalacceptance_hostaiinvariants_test", + "target": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/finalAcceptance.hostAiInvariants.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_finalacceptance_hostaiinvariants_test", + "target": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility_computeshowhostinferencerefresh", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/finalAcceptance.hostAiInvariants.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_finalacceptance_hostaiinvariants_test", + "target": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility_discoveryhashostinternalrows", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/finalAcceptance.hostAiInvariants.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_finalacceptance_hostaiinvariants_test", + "target": "apps_electron_vite_project_src_lib_orchestratormodevshandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/finalAcceptance.hostAiInvariants.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_finalacceptance_hostaiinvariants_test", + "target": "apps_electron_vite_project_src_lib_orchestratormodevshandshake_getorchestratormodevshandshakeinfo", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/finalAcceptance.hostAiInvariants.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_finalacceptance_hostaiinvariants_test", + "target": "apps_electron_vite_project_src_lib_selectormodellistfromhostdiscovery", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/finalAcceptance.hostAiInvariants.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_finalacceptance_hostaiinvariants_test", + "target": "apps_electron_vite_project_src_lib_selectormodellistfromhostdiscovery_fetchselectormodellistfromhostdiscovery", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/finalAcceptance.hostAiInvariants.test.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_finalacceptance_hostaiinvariants_test", + "target": "apps_electron_vite_project_src_lib_tests_finalacceptance_hostaiinvariants_test_append", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/finalAcceptance.hostAiInvariants.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_finalacceptance_hostaiinvariants_test", + "target": "apps_electron_vite_project_src_lib_tests_finalacceptance_hostaiinvariants_test_dir", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/finalAcceptance.hostAiInvariants.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_finalacceptance_hostaiinvariants_test", + "target": "apps_electron_vite_project_src_lib_tests_finalacceptance_hostaiinvariants_test_gavpath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/finalAcceptance.hostAiInvariants.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_finalacceptance_hostaiinvariants_test", + "target": "apps_electron_vite_project_src_lib_tests_finalacceptance_hostaiinvariants_test_hybridpath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/finalAcceptance.hostAiInvariants.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_finalacceptance_hostaiinvariants_test", + "target": "apps_electron_vite_project_src_lib_tests_finalacceptance_hostaiinvariants_test_listinfmainpath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/finalAcceptance.hostAiInvariants.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_finalacceptance_hostaiinvariants_test", + "target": "apps_electron_vite_project_src_lib_tests_finalacceptance_hostaiinvariants_test_projectroot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/finalAcceptance.hostAiInvariants.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_finalacceptance_hostaiinvariants_test", + "target": "apps_electron_vite_project_src_lib_tests_finalacceptance_hostaiinvariants_test_srcapp", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/finalAcceptance.hostAiInvariants.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_finalacceptance_hostaiinvariants_test", + "target": "apps_electron_vite_project_src_lib_tests_finalacceptance_hostaiinvariants_test_treatassandboxforhostinternal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/finalAcceptance.hostAiInvariants.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_finalacceptance_hostaiinvariants_test", + "target": "apps_electron_vite_project_src_lib_tests_finalacceptance_hostaiinvariants_test_wrpath", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostActiveModelSelection.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostactivemodelselection_test", + "target": "apps_electron_vite_project_src_lib_hostactivemodelselection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostActiveModelSelection.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostactivemodelselection_test", + "target": "apps_electron_vite_project_src_lib_hostactivemodelselection_gethostactivemodelidfromtargets", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostActiveModelSelection.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostactivemodelselection_test", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostActiveModelSelection.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostactivemodelselection_test", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_hostinternalinferencemodelid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostActiveModelSelection.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostactivemodelselection_test", + "target": "apps_electron_vite_project_src_lib_tests_hostactivemodelselection_test_row", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostActiveModelSelection.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostactivemodelselection_test_row", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_hostinternalinferencemodelid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostAiRemoteChatLane.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostairemotechatlane_test", + "target": "apps_electron_vite_project_src_lib_hostairemotechatlane", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostAiRemoteChatLane.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostairemotechatlane_test", + "target": "apps_electron_vite_project_src_lib_hostairemotechatlane_findhostinferencetargetrowforchatselection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostAiRemoteChatLane.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostairemotechatlane_test", + "target": "apps_electron_vite_project_src_lib_hostairemotechatlane_inferhostmodelremotelane", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostAiRemoteChatLane.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostairemotechatlane_test", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostAiRemoteChatLane.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostairemotechatlane_test", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_hostinternalinferencemodelid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostAiRemoteChatLane.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostairemotechatlane_test", + "target": "apps_electron_vite_project_src_lib_selectormodellistfromhostdiscovery", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostAiRemoteChatLane.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostairemotechatlane_test", + "target": "apps_electron_vite_project_src_lib_selectormodellistfromhostdiscovery_wrchatmodeloptionsfromselectormodels", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostAiRemoteChatLane.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostairemotechatlane_test", + "target": "apps_electron_vite_project_src_lib_tests_hostairemotechatlane_test_base", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostAiTargetConnectionPresentation.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostaitargetconnectionpresentation_test", + "target": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostAiTargetConnectionPresentation.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostaitargetconnectionpresentation_test", + "target": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation_composehostaiconnectionsubtitle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostAiTargetConnectionPresentation.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostaitargetconnectionpresentation_test", + "target": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation_computehostinferencegavrowpresentation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostAiTargetConnectionPresentation.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostaitargetconnectionpresentation_test", + "target": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation_hostinferencetargetmenuselectable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostAiTargetConnectionPresentation.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostaitargetconnectionpresentation_test", + "target": "apps_electron_vite_project_src_lib_tests_hostaitargetconnectionpresentation_test_fakebase", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostAiTargetUiNormalization.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostaitargetuinormalization_test", + "target": "apps_electron_vite_project_src_lib_hostaitargetuinormalization", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostAiTargetUiNormalization.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostaitargetuinormalization_test", + "target": "apps_electron_vite_project_src_lib_hostaitargetuinormalization_arenormalizedhostaitargetlistsequal", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostAiTargetUiNormalization.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostaitargetuinormalization_test", + "target": "apps_electron_vite_project_src_lib_hostaitargetuinormalization_normalizehostaitargetforui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostAiTargetUiNormalization.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostaitargetuinormalization_test", + "target": "apps_electron_vite_project_src_lib_hostaitargetuinormalization_serializemergedselectormodelsforstableui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostAiTargetUiNormalization.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostaitargetuinormalization_test", + "target": "apps_electron_vite_project_src_lib_hostaitargetuinormalization_serializenormalizedhostaitargetlistui", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostAiTargetUiNormalization.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostaitargetuinormalization_test", + "target": "apps_electron_vite_project_src_lib_tests_hostaitargetuinormalization_test_basehostrow", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostAiUiDiagnostics.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostaiuidiagnostics_test", + "target": "apps_electron_vite_project_src_lib_hostaiuidiagnostics", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostAiUiDiagnostics.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostaiuidiagnostics_test", + "target": "apps_electron_vite_project_src_lib_hostaiuidiagnostics_host_ai_diagnostics_example_self_local_beap", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostAiUiDiagnostics.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostaiuidiagnostics_test", + "target": "apps_electron_vite_project_src_lib_hostaiuidiagnostics_host_ai_msg", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostAiUiDiagnostics.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostaiuidiagnostics_test", + "target": "apps_electron_vite_project_src_lib_hostaiuidiagnostics_hostaiprobecode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostAiUiDiagnostics.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostaiuidiagnostics_test", + "target": "apps_electron_vite_project_src_lib_hostaiuidiagnostics_hostaiuserfacingmessagefromtarget", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostAiUiDiagnostics.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostaiuidiagnostics_test", + "target": "apps_electron_vite_project_src_lib_hostaiuidiagnostics_shouldsuppressollamaunreachablesandboxashostfailure", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceDirectReachabilityUi.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostinferencedirectreachabilityui_test", + "target": "apps_electron_vite_project_src_lib_hostinferenceuigates", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceDirectReachabilityUi.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostinferencedirectreachabilityui_test", + "target": "apps_electron_vite_project_src_lib_hostinferenceuigates_directp2preachabilitycopyforhosttosandbox", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceDirectReachabilityUi.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostinferencedirectreachabilityui_test", + "target": "apps_electron_vite_project_src_lib_hostinferenceuigates_directp2preachabilitycopyforsandboxtohost", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceModelIds.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostinferencemodelids_test", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceModelIds.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostinferencemodelids_test", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_bareollamamodelnameforapi", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceModelIds.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostinferencemodelids_test", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_hostinferencemodelid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceModelIds.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostinferencemodelids_test", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_hostinternalinferencemodelid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceModelIds.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostinferencemodelids_test", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_ishostinferencemodelid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceModelIds.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostinferencemodelids_test", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_parseanyhostinferencemodelid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceModelIds.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostinferencemodelids_test", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_parsehostinferencemodelid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceModelIds.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostinferencemodelids_test", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_parsehostinternalinferencemodelid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceSelectorIntegration.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostinferenceselectorintegration_test", + "target": "apps_electron_vite_project_src_lib_hostaiselectorcopy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceSelectorIntegration.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostinferenceselectorintegration_test", + "target": "apps_electron_vite_project_src_lib_hostaiselectorcopy_group_cloud", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceSelectorIntegration.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostinferenceselectorintegration_test", + "target": "apps_electron_vite_project_src_lib_hostaiselectorcopy_group_internal_host", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceSelectorIntegration.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostinferenceselectorintegration_test", + "target": "apps_electron_vite_project_src_lib_hostaiselectorcopy_group_local_models", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceSelectorIntegration.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostinferenceselectorintegration_test", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceSelectorIntegration.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostinferenceselectorintegration_test", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_hostinternalinferencemodelid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceSelectorIntegration.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostinferenceselectorintegration_test", + "target": "apps_electron_vite_project_src_lib_hostinferenceuigates", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceSelectorIntegration.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostinferenceselectorintegration_test", + "target": "apps_electron_vite_project_src_lib_hostinferenceuigates_hostinferenceoptionvisible", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceSelectorIntegration.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostinferenceselectorintegration_test", + "target": "apps_electron_vite_project_src_lib_hostinferenceuigates_hostinferencesetupmessagevisible", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceSelectorIntegration.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostinferenceselectorintegration_test", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceSelectorIntegration.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostinferenceselectorintegration_test", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_accountkeyfromsession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceSelectorIntegration.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostinferenceselectorintegration_test", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_ishostinternalselectionstalefororchestratorui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceSelectorIntegration.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostinferenceselectorintegration_test", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_legacy_orch_model_key", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceSelectorIntegration.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostinferenceselectorintegration_test", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_persistorchestratormodelid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceSelectorIntegration.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostinferenceselectorintegration_test", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_readorchestratorinferenceselection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceSelectorIntegration.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostinferenceselectorintegration_test", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_tostoredselection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceSelectorIntegration.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostinferenceselectorintegration_test", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_validatestoredselectionfororchestrator", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceSelectorIntegration.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostinferenceselectorintegration_test", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_validatestoredselectionfororchestratorwithdiagnostics", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceSelectorIntegration.test.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostinferenceselectorintegration_test", + "target": "apps_electron_vite_project_src_lib_tests_hostinferenceselectorintegration_test_available", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceSelectorIntegration.test.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostinferenceselectorintegration_test", + "target": "apps_electron_vite_project_src_lib_tests_hostinferenceselectorintegration_test_installlocalstorage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceSelectorIntegration.test.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostinferenceselectorintegration_test", + "target": "apps_electron_vite_project_src_lib_tests_hostinferenceselectorintegration_test_modelmenustate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceSelectorIntegration.test.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostinferenceselectorintegration_test", + "target": "apps_electron_vite_project_src_lib_tests_hostinferenceselectorintegration_test_showhostinferenceoption", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceSelectorIntegration.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostinferenceselectorintegration_test", + "target": "apps_electron_vite_project_src_lib_tests_hostinferenceselectorintegration_test_target", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceSelectorIntegration.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostinferenceselectorintegration_test", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceSelectorIntegration.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostinferenceselectorintegration_test", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting_formatinternalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceSelectorIntegration.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostinferenceselectorintegration_test", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting_getrequesthostcompletion", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceSelectorIntegration.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostinferenceselectorintegration_test", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting_hostmodeldisplaynamefromselection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceSelectorIntegration.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostinferenceselectorintegration_test", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting_ishostinternalchatmodelid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceSelectorIntegration.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostinferenceselectorintegration_test", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting_resolvechatinferencekind", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceSurface.regression.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostinferencesurface_regression_test", + "target": "apps_electron_vite_project_src_lib_hostinferenceuigates", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceSurface.regression.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostinferencesurface_regression_test", + "target": "apps_electron_vite_project_src_lib_hostinferenceuigates_directp2preachabilitycopyforsandboxtohost", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceSurface.regression.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostinferencesurface_regression_test", + "target": "apps_electron_vite_project_src_lib_hostinferenceuigates_hostinferenceoptionvisible", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceUiGates.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostinferenceuigates_test", + "target": "apps_electron_vite_project_src_lib_hostinferenceuigates", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceUiGates.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostinferenceuigates_test", + "target": "apps_electron_vite_project_src_lib_hostinferenceuigates_hostinferencedirectunavailablemessage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceUiGates.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostinferenceuigates_test", + "target": "apps_electron_vite_project_src_lib_hostinferenceuigates_hostinferenceoptionvisible", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceUiGates.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostinferenceuigates_test", + "target": "apps_electron_vite_project_src_lib_hostinferenceuigates_hostinferenceselectormultiple", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostInferenceUiGates.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostinferenceuigates_test", + "target": "apps_electron_vite_project_src_lib_hostinferenceuigates_hostinferencesetupmessagevisible", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostModelSelectorRowUi.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostmodelselectorrowui_test", + "target": "apps_electron_vite_project_src_lib_hostaiselectorcopy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostModelSelectorRowUi.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostmodelselectorrowui_test", + "target": "apps_electron_vite_project_src_lib_hostaiselectorcopy_host_ai_path_unavailable_tooltip", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostModelSelectorRowUi.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostmodelselectorrowui_test", + "target": "apps_electron_vite_project_src_lib_hostmodelselectorrowui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostModelSelectorRowUi.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostmodelselectorrowui_test", + "target": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_buildhostaiselectortooltip", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostModelSelectorRowUi.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostmodelselectorrowui_test", + "target": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_hostmodelselectorrowui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostModelSelectorRowUi.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostmodelselectorrowui_test", + "target": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_hostmodelselectorshowsdefinitivehostfailure", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hostModelSelectorRowUi.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hostmodelselectorrowui_test", + "target": "apps_electron_vite_project_src_lib_tests_hostmodelselectorrowui_test_basem", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/hybridChatRagSuccessDisplay.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_hybridchatragsuccessdisplay_test", + "target": "apps_electron_vite_project_src_lib_tests_hybridchatragsuccessdisplay_test_mergestreamedhybridanswer", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/inboxAiCloneClassification.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_inboxaicloneclassification_test", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/inboxAiCloneClassification.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_inboxaicloneclassification_test", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_classifyinboxrowforai", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/inboxAiCloneClassification.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_inboxaicloneclassification_test", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_inboxrowisclonedplainemail", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/inboxAiCloneClassification.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_inboxaicloneclassification_test", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_loginboxreplytransportdecision", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/inboxAiCloneClassification.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_inboxaicloneclassification_test", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_resolveinboxreplymode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/inboxAiCloneClassification.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_inboxaicloneclassification_test", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_resolveinboxreplytransport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/inboxAiCloneClassification.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_inboxaicloneclassification_test", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_resolveinboxreplytransportmeta", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/inboxDetailAnalysisSelection.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_inboxdetailanalysisselection_test", + "target": "apps_electron_vite_project_src_lib_inboxdetailanalysisselection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/inboxDetailAnalysisSelection.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_inboxdetailanalysisselection_test", + "target": "apps_electron_vite_project_src_lib_inboxdetailanalysisselection_inbox_analysis_selection_debounce_ms", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/inboxDetailAnalysisSelection.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_inboxdetailanalysisselection_test", + "target": "apps_electron_vite_project_src_lib_inboxdetailanalysisselection_resolveselectionanalysisrun", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/inboxDetailAnalysisSelection.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_inboxdetailanalysisselection_test", + "target": "apps_electron_vite_project_src_lib_inboxdetailanalysisselection_shouldapplyanalysisstreamresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/inboxDetailAnalysisSelection.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_inboxdetailanalysisselection_test", + "target": "apps_electron_vite_project_src_lib_inboxdetailanalysisselection_shouldtriggeranalysisonselectionchange", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/inboxMessageActionable.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_inboxmessageactionable_test", + "target": "apps_electron_vite_project_src_lib_inboxmessageactionable", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/inboxMessageActionable.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_inboxmessageactionable_test", + "target": "apps_electron_vite_project_src_lib_inboxmessageactionable_isinboxmessageactionable", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/inboxMessageActionable.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_inboxmessageactionable_test", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/inboxMessageActionable.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_inboxmessageactionable_test", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/inboxMessageSandboxClone.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_inboxmessagesandboxclone_test", + "target": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/inboxMessageSandboxClone.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_inboxmessagesandboxclone_test", + "target": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_extractsandboxcloneuimeta", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/inboxMessageSandboxClone.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_inboxmessagesandboxclone_test", + "target": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_inboxmessageissandboxbeapclone", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/inboxMessageSandboxClone.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_inboxmessagesandboxclone_test", + "target": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_inboxmessageusesnativebeappbeapqbeapsplit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/inboxMessageSandboxClone.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_inboxmessagesandboxclone_test", + "target": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_sandbox_clone_inbox_lead_in", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/inboxMessageSandboxClone.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_inboxmessagesandboxclone_test", + "target": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_stripsandboxcloneleadinfrombodytext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/inboxMessageSandboxClone.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_inboxmessagesandboxclone_test", + "target": "apps_electron_vite_project_src_lib_tests_inboxmessagesandboxclone_test_base", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/inboxMessageSandboxClone.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_inboxmessagesandboxclone_test", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/inboxMessageSandboxClone.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_inboxmessagesandboxclone_test", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/inboxSessionArtefact.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_inboxsessionartefact_test", + "target": "apps_electron_vite_project_src_lib_inboxsessionartefact", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/inboxSessionArtefact.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_inboxsessionartefact_test", + "target": "apps_electron_vite_project_src_lib_inboxsessionartefact_canshowinboxrunautomation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/inboxSessionArtefact.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_inboxsessionartefact_test", + "target": "apps_electron_vite_project_src_lib_inboxsessionartefact_capabilitiesforsessionattach", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/inboxSessionArtefact.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_inboxsessionartefact_test", + "target": "apps_electron_vite_project_src_lib_inboxsessionartefact_resolveinboxsessionartefact", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/inboxSessionArtefact.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_inboxsessionartefact_test", + "target": "apps_electron_vite_project_src_lib_tests_inboxsessionartefact_test_basemessage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/inboxSessionArtefact.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_inboxsessionartefact_test", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/inboxSessionArtefact.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_inboxsessionartefact_test", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/inferenceSandboxVsHostContext.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_inferencesandboxvshostcontext_test", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/inferenceSandboxVsHostContext.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_inferencesandboxvshostcontext_test", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_validatestoredselectionfororchestratorwithdiagnostics", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/inferenceSelectionPersistence.ollamaDirect.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_inferenceselectionpersistence_ollamadirect_test", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/inferenceSelectionPersistence.ollamaDirect.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_inferenceselectionpersistence_ollamadirect_test", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_hostinternalinferencemodelid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/inferenceSelectionPersistence.ollamaDirect.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_inferenceselectionpersistence_ollamadirect_test", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/inferenceSelectionPersistence.ollamaDirect.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_inferenceselectionpersistence_ollamadirect_test", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_ishostinternalselectionstalefororchestratorui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/inferenceSelectionPersistence.ollamaDirect.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_inferenceselectionpersistence_ollamadirect_test", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_validatestoredselectionfororchestratorwithdiagnostics", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/modelSelectorHostRefreshVisibility.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_modelselectorhostrefreshvisibility_test", + "target": "apps_electron_vite_project_src_lib_hostinferenceuigates", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/modelSelectorHostRefreshVisibility.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_modelselectorhostrefreshvisibility_test", + "target": "apps_electron_vite_project_src_lib_hostinferenceuigates_hostinferenceoptionvisible", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/modelSelectorHostRefreshVisibility.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_modelselectorhostrefreshvisibility_test", + "target": "apps_electron_vite_project_src_lib_hostinferenceuigates_hostinferencesetupmessagevisible", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/modelSelectorHostRefreshVisibility.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_modelselectorhostrefreshvisibility_test", + "target": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/modelSelectorHostRefreshVisibility.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_modelselectorhostrefreshvisibility_test", + "target": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility_computeshowhostinferencerefresh", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/modelSelectorHostRefreshVisibility.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_modelselectorhostrefreshvisibility_test", + "target": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility_handshakelocalroleformodelselectorlog", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/modelSelectorHostRefreshVisibility.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_modelselectorhostrefreshvisibility_test", + "target": "apps_electron_vite_project_src_lib_orchestratormodevshandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/modelSelectorHostRefreshVisibility.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_modelselectorhostrefreshvisibility_test", + "target": "apps_electron_vite_project_src_lib_orchestratormodevshandshake_getorchestratormodevshandshakeinfo", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/phase11.beapRegression.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_phase11_beapregression_test", + "target": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/phase11.beapRegression.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_phase11_beapregression_test", + "target": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_sandbox_clone_inbox_lead_in", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/phase11.beapRegression.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_phase11_beapregression_test", + "target": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_stripsandboxcloneleadinfrombodytext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/phase11.beapRegression.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_phase11_beapregression_test", + "target": "apps_electron_vite_project_src_lib_tests_phase11_beapregression_test_appsroot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/phase11.beapRegression.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_phase11_beapregression_test", + "target": "apps_electron_vite_project_src_lib_tests_phase11_beapregression_test_dir", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/phase11.beapRegression.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_phase11_beapregression_test", + "target": "apps_electron_vite_project_src_lib_tests_phase11_beapregression_test_readapp", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/phase11.uiInvariants.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_phase11_uiinvariants_test", + "target": "apps_electron_vite_project_src_lib_hostinferenceuigates", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/phase11.uiInvariants.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_phase11_uiinvariants_test", + "target": "apps_electron_vite_project_src_lib_hostinferenceuigates_hostinferenceoptionvisible", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/phase11.uiInvariants.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_phase11_uiinvariants_test", + "target": "apps_electron_vite_project_src_lib_hostinferenceuigates_hostinferencesetupmessagevisible", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/phase11.uiInvariants.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_phase11_uiinvariants_test", + "target": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/phase11.uiInvariants.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_phase11_uiinvariants_test", + "target": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility_computeshowhostinferencerefresh", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/phase11.uiInvariants.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_phase11_uiinvariants_test", + "target": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility_discoveryhashostinternalrows", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/phase11.uiInvariants.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_phase11_uiinvariants_test", + "target": "apps_electron_vite_project_src_lib_tests_phase11_uiinvariants_test_dir", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/phase11.uiInvariants.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_phase11_uiinvariants_test", + "target": "apps_electron_vite_project_src_lib_tests_phase11_uiinvariants_test_readsrc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/phase11.uiInvariants.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_phase11_uiinvariants_test", + "target": "apps_electron_vite_project_src_lib_tests_phase11_uiinvariants_test_srcroot", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/phase11.uiInvariants.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_phase11_uiinvariants_test", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/phase11.uiInvariants.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_phase11_uiinvariants_test", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting_ishostinternalchatmodelid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/resolveActiveSandboxCloneTargets.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_resolveactivesandboxclonetargets_test", + "target": "apps_electron_vite_project_src_lib_resolveactivesandboxclonetargets", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/resolveActiveSandboxCloneTargets.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_resolveactivesandboxclonetargets_test", + "target": "apps_electron_vite_project_src_lib_resolveactivesandboxclonetargets_resolveactivesandboxclonetargets", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/resolveActiveSandboxCloneTargets.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_resolveactivesandboxclonetargets_test", + "target": "apps_electron_vite_project_src_lib_tests_resolveactivesandboxclonetargets_test_row", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/sandboxCloneEntitlementFeedback.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_sandboxcloneentitlementfeedback_test", + "target": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/sandboxCloneEntitlementFeedback.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_sandboxcloneentitlementfeedback_test", + "target": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_beapinboxclonepreparefailure", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/sandboxCloneEntitlementFeedback.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_sandboxcloneentitlementfeedback_test", + "target": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_beapinboxclonetosandboxresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/sandboxCloneEntitlementFeedback.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_sandboxcloneentitlementfeedback_test", + "target": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_sandboxclonefeedbackfromoutcome", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/sandboxCloneEntitlementFeedback.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_sandboxcloneentitlementfeedback_test", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/sandboxCloneEntitlementFeedback.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_sandboxcloneentitlementfeedback_test", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_sandbox_clone_copy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/sandboxCloneEntitlementFeedback.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_sandboxcloneentitlementfeedback_test", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_sandbox_upgrade_url_fallback", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/sandboxCloneEntitlementFeedback.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_sandboxcloneentitlementfeedback_test", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_viewsandboxentitlementrequired", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/sandboxCloneEntitlementFeedback.test.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_sandboxcloneentitlementfeedback_test", + "target": "apps_electron_vite_project_src_lib_tests_sandboxcloneentitlementfeedback_test_entitlementfailure", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/sandboxCloneEntitlementFeedback.test.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_sandboxcloneentitlementfeedback_test", + "target": "apps_electron_vite_project_src_lib_tests_sandboxcloneentitlementfeedback_test_preparefailed", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/sandboxCloneEntitlementFeedback.test.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_sandboxcloneentitlementfeedback_test", + "target": "apps_electron_vite_project_src_lib_tests_sandboxcloneentitlementfeedback_test_sendfailed", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/sandboxComposerGate.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_sandboxcomposergate_test", + "target": "apps_electron_vite_project_src_lib_tests_sandboxcomposergate_test_dir", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/sandboxComposerGate.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_sandboxcomposergate_test", + "target": "apps_electron_vite_project_src_lib_tests_sandboxcomposergate_test_read", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/sandboxComposerGate.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_sandboxcomposergate_test", + "target": "apps_electron_vite_project_src_lib_tests_sandboxcomposergate_test_srcroot", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step10.productionReadiness.acceptance.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step10_productionreadiness_acceptance_test", + "target": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step10.productionReadiness.acceptance.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step10_productionreadiness_acceptance_test", + "target": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility_computeshowhostinferencerefresh", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step10.productionReadiness.acceptance.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step10_productionreadiness_acceptance_test", + "target": "apps_electron_vite_project_src_lib_tests_step10_productionreadiness_acceptance_test_dir", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step10.productionReadiness.acceptance.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step10_productionreadiness_acceptance_test", + "target": "apps_electron_vite_project_src_lib_tests_step10_productionreadiness_acceptance_test_evroot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step10.productionReadiness.acceptance.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step10_productionreadiness_acceptance_test", + "target": "apps_electron_vite_project_src_lib_tests_step10_productionreadiness_acceptance_test_readev", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step10.wrChatHostDiscoveryOrder.contract.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step10_wrchathostdiscoveryorder_contract_test", + "target": "apps_electron_vite_project_src_lib_tests_step10_wrchathostdiscoveryorder_contract_test_content", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step10.wrChatHostDiscoveryOrder.contract.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step10_wrchathostdiscoveryorder_contract_test", + "target": "apps_electron_vite_project_src_lib_tests_step10_wrchathostdiscoveryorder_contract_test_dir", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step10.wrChatHostDiscoveryOrder.contract.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step10_wrchathostdiscoveryorder_contract_test", + "target": "apps_electron_vite_project_src_lib_tests_step10_wrchathostdiscoveryorder_contract_test_src", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.productionSafety.integration.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step8_productionsafety_integration_test", + "target": "apps_electron_vite_project_src_lib_modelselectormerge", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.productionSafety.integration.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step8_productionsafety_integration_test", + "target": "apps_electron_vite_project_src_lib_modelselectormerge_maphosttargetstogavmodelentries", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.productionSafety.integration.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step8_productionsafety_integration_test", + "target": "apps_electron_vite_project_src_lib_selectormodellistfromhostdiscovery", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.productionSafety.integration.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step8_productionsafety_integration_test", + "target": "apps_electron_vite_project_src_lib_selectormodellistfromhostdiscovery_fetchselectormodellistfromhostdiscovery", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.productionSafety.integration.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step8_productionsafety_integration_test", + "target": "apps_electron_vite_project_src_lib_selectormodellistfromhostdiscovery_wrchatmodeloptionsfromselectormodels", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.productionSafety.integration.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step8_productionsafety_integration_test", + "target": "apps_electron_vite_project_src_lib_tests_step8_productionsafety_integration_test_append", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.productionSafety.integration.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step8_productionsafety_integration_test", + "target": "apps_electron_vite_project_src_lib_tests_step8_productionsafety_integration_test_hostfrommain", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.productionSafety.regression.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step8_productionsafety_regression_test", + "target": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.productionSafety.regression.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step8_productionsafety_regression_test", + "target": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_sandbox_clone_inbox_lead_in", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.productionSafety.regression.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step8_productionsafety_regression_test", + "target": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_stripsandboxcloneleadinfrombodytext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.productionSafety.regression.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step8_productionsafety_regression_test", + "target": "apps_electron_vite_project_src_lib_tests_step8_productionsafety_regression_test_appsroot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.productionSafety.regression.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step8_productionsafety_regression_test", + "target": "apps_electron_vite_project_src_lib_tests_step8_productionsafety_regression_test_dir", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.productionSafety.regression.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step8_productionsafety_regression_test", + "target": "apps_electron_vite_project_src_lib_tests_step8_productionsafety_regression_test_readapp", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.sandboxHostUiAndClone.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step8_sandboxhostuiandclone_test", + "target": "apps_electron_vite_project_src_lib_hostaiselectorcopy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.sandboxHostUiAndClone.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step8_sandboxhostuiandclone_test", + "target": "apps_electron_vite_project_src_lib_hostaiselectorcopy_group_host_models", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.sandboxHostUiAndClone.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step8_sandboxhostuiandclone_test", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.sandboxHostUiAndClone.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step8_sandboxhostuiandclone_test", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_ishostinferencemodelid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.sandboxHostUiAndClone.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step8_sandboxhostuiandclone_test", + "target": "apps_electron_vite_project_src_lib_hostinferenceuigates", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.sandboxHostUiAndClone.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step8_sandboxhostuiandclone_test", + "target": "apps_electron_vite_project_src_lib_hostinferenceuigates_hostinferenceoptionvisible", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.sandboxHostUiAndClone.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step8_sandboxhostuiandclone_test", + "target": "apps_electron_vite_project_src_lib_hostinferenceuigates_hostinferencesetupmessagevisible", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.sandboxHostUiAndClone.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step8_sandboxhostuiandclone_test", + "target": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.sandboxHostUiAndClone.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step8_sandboxhostuiandclone_test", + "target": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_sandbox_clone_inbox_lead_in", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.sandboxHostUiAndClone.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step8_sandboxhostuiandclone_test", + "target": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_stripsandboxcloneleadinfrombodytext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.sandboxHostUiAndClone.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step8_sandboxhostuiandclone_test", + "target": "apps_electron_vite_project_src_lib_tests_step8_sandboxhostuiandclone_test_appsroot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.sandboxHostUiAndClone.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step8_sandboxhostuiandclone_test", + "target": "apps_electron_vite_project_src_lib_tests_step8_sandboxhostuiandclone_test_dir", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.sandboxHostUiAndClone.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step8_sandboxhostuiandclone_test", + "target": "apps_electron_vite_project_src_lib_tests_step8_sandboxhostuiandclone_test_readext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.sandboxHostUiAndClone.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step8_sandboxhostuiandclone_test", + "target": "apps_electron_vite_project_src_lib_tests_step8_sandboxhostuiandclone_test_readrel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.sandboxHostUiAndClone.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step8_sandboxhostuiandclone_test", + "target": "apps_electron_vite_project_src_lib_tests_step8_sandboxhostuiandclone_test_srcroot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.themeContrastRegressions.test.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step8_themecontrastregressions_test", + "target": "apps_electron_vite_project_src_lib_tests_step8_themecontrastregressions_test_channelluminance", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.themeContrastRegressions.test.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step8_themecontrastregressions_test", + "target": "apps_electron_vite_project_src_lib_tests_step8_themecontrastregressions_test_contrastratio", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.themeContrastRegressions.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step8_themecontrastregressions_test", + "target": "apps_electron_vite_project_src_lib_tests_step8_themecontrastregressions_test_dir", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.themeContrastRegressions.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step8_themecontrastregressions_test", + "target": "apps_electron_vite_project_src_lib_tests_step8_themecontrastregressions_test_extractcsssection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.themeContrastRegressions.test.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step8_themecontrastregressions_test", + "target": "apps_electron_vite_project_src_lib_tests_step8_themecontrastregressions_test_hextorgb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.themeContrastRegressions.test.ts", + "source_location": "L166", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step8_themecontrastregressions_test", + "target": "apps_electron_vite_project_src_lib_tests_step8_themecontrastregressions_test_manual_step8_theme_screenshots", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.themeContrastRegressions.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step8_themecontrastregressions_test", + "target": "apps_electron_vite_project_src_lib_tests_step8_themecontrastregressions_test_readrel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.themeContrastRegressions.test.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step8_themecontrastregressions_test", + "target": "apps_electron_vite_project_src_lib_tests_step8_themecontrastregressions_test_relativeluminance", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.themeContrastRegressions.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step8_themecontrastregressions_test", + "target": "apps_electron_vite_project_src_lib_tests_step8_themecontrastregressions_test_srcroot", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.themeContrastRegressions.test.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step8_themecontrastregressions_test_relativeluminance", + "target": "apps_electron_vite_project_src_lib_tests_step8_themecontrastregressions_test_hextorgb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.themeContrastRegressions.test.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step8_themecontrastregressions_test_relativeluminance", + "target": "apps_electron_vite_project_src_lib_tests_step8_themecontrastregressions_test_channelluminance", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step8.themeContrastRegressions.test.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step8_themecontrastregressions_test_contrastratio", + "target": "apps_electron_vite_project_src_lib_tests_step8_themecontrastregressions_test_relativeluminance", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step9.regression.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step9_regression_test", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step9.regression.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step9_regression_test", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_hostinternalinferencemodelid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step9.regression.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step9_regression_test", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step9.regression.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step9_regression_test", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_storedinferenceselectionv1", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step9.regression.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step9_regression_test", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_validatestoredselectionforwrchat", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step9.regression.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step9_regression_test", + "target": "apps_electron_vite_project_src_lib_modelselectormerge", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step9.regression.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step9_regression_test", + "target": "apps_electron_vite_project_src_lib_modelselectormerge_maphosttargetstogavmodelentries", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step9.regression.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step9_regression_test", + "target": "apps_electron_vite_project_src_lib_modelselectormerge_ordermodelslocalhostcloud", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step9.regression.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step9_regression_test", + "target": "apps_electron_vite_project_src_lib_tests_step9_regression_test_hostrow", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step9.regression.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step9_regression_test", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step9.regression.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step9_regression_test", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting_getrequesthostcompletion", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step9.regression.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step9_regression_test", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting_ishostinternalchatmodelid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/__tests__/step9.regression.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_tests_step9_regression_test", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting_resolvechatinferencekind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/aiExecutionContextFromSelection.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_aiexecutioncontextfromselection", + "target": "apps_electron_vite_project_src_lib_aiexecutioncontextfromselection_aiexecutioncontextipcpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/aiExecutionContextFromSelection.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_aiexecutioncontextfromselection", + "target": "apps_electron_vite_project_src_lib_aiexecutioncontextfromselection_buildaiexecutioncontextipcpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/aiExecutionContextFromSelection.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_aiexecutioncontextfromselection", + "target": "apps_electron_vite_project_src_lib_aiexecutioncontextfromselection_normalizemodelname", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/aiExecutionContextFromSelection.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_aiexecutioncontextfromselection", + "target": "apps_electron_vite_project_src_lib_hostairemotechatlane", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/aiExecutionContextFromSelection.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_aiexecutioncontextfromselection", + "target": "apps_electron_vite_project_src_lib_hostairemotechatlane_findhostinferencetargetrowforchatselection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/aiExecutionContextFromSelection.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_aiexecutioncontextfromselection", + "target": "apps_electron_vite_project_src_lib_hostairemotechatlane_inferhostmodelremotelane", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/aiExecutionContextFromSelection.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_aiexecutioncontextfromselection", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/aiExecutionContextFromSelection.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_aiexecutioncontextfromselection", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_ishostinferencemodelid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/aiExecutionContextFromSelection.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_aiexecutioncontextfromselection", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_parseanyhostinferencemodelid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/aiExecutionContextFromSelection.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_aiexecutioncontextfromselection_buildaiexecutioncontextipcpayload", + "target": "apps_electron_vite_project_src_lib_aiexecutioncontextfromselection_normalizemodelname", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/aiExecutionContextFromSelection.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_aiexecutioncontextfromselection_buildaiexecutioncontextipcpayload", + "target": "apps_electron_vite_project_src_lib_hostairemotechatlane_findhostinferencetargetrowforchatselection" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/aiExecutionContextFromSelection.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_aiexecutioncontextfromselection_buildaiexecutioncontextipcpayload", + "target": "apps_electron_vite_project_src_lib_hostairemotechatlane_inferhostmodelremotelane" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/aiExecutionContextFromSelection.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_aiexecutioncontextfromselection_buildaiexecutioncontextipcpayload", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_ishostinferencemodelid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/aiExecutionContextFromSelection.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_aiexecutioncontextfromselection_buildaiexecutioncontextipcpayload", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_parseanyhostinferencemodelid" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/appendHostRowsFromListInference.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_appendhostrowsfromlistinference", + "target": "apps_electron_vite_project_src_lib_appendhostrowsfromlistinference_appendhostrowsfromlistinference", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/appendHostRowsFromListInference.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_appendhostrowsfromlistinference", + "target": "apps_electron_vite_project_src_lib_appendhostrowsfromlistinference_hostmodelrow", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/appendHostRowsFromListInference.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_appendhostrowsfromlistinference", + "target": "apps_electron_vite_project_src_lib_coalescedlistinferencetargets", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/appendHostRowsFromListInference.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_appendhostrowsfromlistinference", + "target": "apps_electron_vite_project_src_lib_coalescedlistinferencetargets_coalescedlistinferencetargetsinvoke", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/appendHostRowsFromListInference.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_appendhostrowsfromlistinference", + "target": "apps_electron_vite_project_src_lib_inferencetargetrefreshlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/appendHostRowsFromListInference.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_appendhostrowsfromlistinference", + "target": "apps_electron_vite_project_src_lib_inferencetargetrefreshlog_inferencetargetrefreshreason", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/appendHostRowsFromListInference.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_appendhostrowsfromlistinference", + "target": "apps_electron_vite_project_src_lib_modelselectormerge", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/appendHostRowsFromListInference.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_appendhostrowsfromlistinference", + "target": "apps_electron_vite_project_src_lib_modelselectormerge_maphosttargetstogavmodelentries", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/appendHostRowsFromListInference.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_appendhostrowsfromlistinference", + "target": "apps_electron_vite_project_src_lib_modelselectormerge_ordermodelslocalhostcloud", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/selectorModelListFromHostDiscovery.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_selectormodellistfromhostdiscovery", + "target": "apps_electron_vite_project_src_lib_appendhostrowsfromlistinference", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/appendHostRowsFromListInference.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_appendhostrowsfromlistinference_appendhostrowsfromlistinference", + "target": "apps_electron_vite_project_src_lib_coalescedlistinferencetargets_coalescedlistinferencetargetsinvoke" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/appendHostRowsFromListInference.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_appendhostrowsfromlistinference_appendhostrowsfromlistinference", + "target": "apps_electron_vite_project_src_lib_modelselectormerge_maphosttargetstogavmodelentries" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/appendHostRowsFromListInference.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_appendhostrowsfromlistinference_appendhostrowsfromlistinference", + "target": "apps_electron_vite_project_src_lib_modelselectormerge_ordermodelslocalhostcloud" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/selectorModelListFromHostDiscovery.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_selectormodellistfromhostdiscovery", + "target": "apps_electron_vite_project_src_lib_appendhostrowsfromlistinference_appendhostrowsfromlistinference", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationEngine.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationengine", + "target": "apps_electron_vite_project_src_lib_autooptimizationengine_newrunid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationEngine.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationengine", + "target": "apps_electron_vite_project_src_lib_autooptimizationengine_runtrigger", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationEngine.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationengine", + "target": "apps_electron_vite_project_src_lib_autooptimizationengine_startautooptimization", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationEngine.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationengine", + "target": "apps_electron_vite_project_src_lib_autooptimizationengine_stopautooptimization", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationEngine.ts", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationengine", + "target": "apps_electron_vite_project_src_lib_autooptimizationengine_triggeroptimizationrun", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationEngine.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationengine", + "target": "apps_electron_vite_project_src_lib_autooptimizationengine_triggersnapshotoptimization", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationEngine.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationengine", + "target": "apps_electron_vite_project_src_lib_autooptimizationfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationEngine.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationengine", + "target": "apps_electron_vite_project_src_lib_autooptimizationfingerprint_clearlastfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationEngine.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationengine", + "target": "apps_electron_vite_project_src_lib_autooptimizationfingerprint_computeprojectfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationEngine.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationengine", + "target": "apps_electron_vite_project_src_lib_autooptimizationfingerprint_getlastfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationEngine.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationengine", + "target": "apps_electron_vite_project_src_types_optimizationtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationEngine.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationengine", + "target": "apps_electron_vite_project_src_types_optimizationtypes_triggersource", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationEngine.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationengine", + "target": "apps_electron_vite_project_src_types_projecttypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationEngine.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationengine", + "target": "apps_electron_vite_project_src_types_projecttypes_project", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationGuards.ts", + "source_location": "L168", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationguards_applyoptimizationguardfallback", + "target": "apps_electron_vite_project_src_lib_autooptimizationengine", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/wrDeskOptimizerHttpBridge.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_wrdeskoptimizerhttpbridge", + "target": "apps_electron_vite_project_src_lib_autooptimizationengine", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationEngine.ts", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationengine_runtrigger", + "target": "apps_electron_vite_project_src_lib_autooptimizationengine_newrunid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationEngine.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationengine_startautooptimization", + "target": "apps_electron_vite_project_src_lib_autooptimizationengine_runtrigger", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationEngine.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationengine_startautooptimization", + "target": "apps_electron_vite_project_src_lib_autooptimizationengine_stopautooptimization", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationEngine.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationengine_startautooptimization", + "target": "apps_electron_vite_project_src_lib_opensessiondisplaygridsfromdashboard", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/wrDeskOptimizerHttpBridge.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_wrdeskoptimizerhttpbridge", + "target": "apps_electron_vite_project_src_lib_autooptimizationengine_startautooptimization", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationEngine.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationengine_stopautooptimization", + "target": "apps_electron_vite_project_src_lib_autooptimizationfingerprint_clearlastfingerprint" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/wrDeskOptimizerHttpBridge.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_wrdeskoptimizerhttpbridge", + "target": "apps_electron_vite_project_src_lib_autooptimizationengine_stopautooptimization", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationEngine.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationengine_triggersnapshotoptimization", + "target": "apps_electron_vite_project_src_lib_autooptimizationengine_runtrigger", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationEngine.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationengine_triggersnapshotoptimization", + "target": "apps_electron_vite_project_src_lib_autooptimizationfingerprint_clearlastfingerprint" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/wrDeskOptimizerHttpBridge.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_wrdeskoptimizerhttpbridge", + "target": "apps_electron_vite_project_src_lib_autooptimizationengine_triggersnapshotoptimization", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationEngine.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationengine_runtrigger", + "target": "apps_electron_vite_project_src_lib_autooptimizationfingerprint_computeprojectfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationEngine.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationengine_runtrigger", + "target": "apps_electron_vite_project_src_lib_autooptimizationfingerprint_getlastfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationEngine.ts", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationengine_runtrigger", + "target": "apps_electron_vite_project_src_lib_optimizationruncoordinator", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationEngine.ts", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationengine_triggeroptimizationrun", + "target": "apps_electron_vite_project_src_lib_autooptimizationengine_runtrigger", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationFingerprint.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationfingerprint", + "target": "apps_electron_vite_project_src_lib_autooptimizationfingerprint_clearlastfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationFingerprint.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationfingerprint", + "target": "apps_electron_vite_project_src_lib_autooptimizationfingerprint_computedomfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationFingerprint.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationfingerprint", + "target": "apps_electron_vite_project_src_lib_autooptimizationfingerprint_computeprojectfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationFingerprint.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationfingerprint", + "target": "apps_electron_vite_project_src_lib_autooptimizationfingerprint_computesidebarfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationFingerprint.ts", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationfingerprint", + "target": "apps_electron_vite_project_src_lib_autooptimizationfingerprint_fingerprintsmatch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationFingerprint.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationfingerprint", + "target": "apps_electron_vite_project_src_lib_autooptimizationfingerprint_getlastfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationFingerprint.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationfingerprint", + "target": "apps_electron_vite_project_src_lib_autooptimizationfingerprint_mergeoptimizationfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationFingerprint.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationfingerprint", + "target": "apps_electron_vite_project_src_lib_autooptimizationfingerprint_optimizationfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationFingerprint.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationfingerprint", + "target": "apps_electron_vite_project_src_lib_autooptimizationfingerprint_quickhash", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationFingerprint.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationfingerprint", + "target": "apps_electron_vite_project_src_lib_autooptimizationfingerprint_setlastfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationFingerprint.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationfingerprint", + "target": "apps_electron_vite_project_src_stores_useprojectstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationFingerprint.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationfingerprint", + "target": "apps_electron_vite_project_src_stores_useprojectstore_useprojectstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationFingerprint.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationfingerprint", + "target": "apps_electron_vite_project_src_types_optimizationtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationFingerprint.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationfingerprint", + "target": "apps_electron_vite_project_src_types_optimizationtypes_domsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L333", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator_executeoptimizationrun", + "target": "apps_electron_vite_project_src_lib_autooptimizationfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationFingerprint.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationfingerprint_computedomfingerprint", + "target": "apps_electron_vite_project_src_lib_autooptimizationfingerprint_quickhash", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationFingerprint.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationfingerprint_computeprojectfingerprint", + "target": "apps_electron_vite_project_src_lib_autooptimizationfingerprint_quickhash", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationFingerprint.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationfingerprint_mergeoptimizationfingerprint", + "target": "apps_electron_vite_project_src_lib_autooptimizationfingerprint_computeprojectfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationFingerprint.ts", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationfingerprint_mergeoptimizationfingerprint", + "target": "apps_electron_vite_project_src_lib_autooptimizationfingerprint_computesidebarfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationFingerprint.ts", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationfingerprint_mergeoptimizationfingerprint", + "target": "apps_electron_vite_project_src_lib_autooptimizationfingerprint_computedomfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationGuards.ts", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationguards", + "target": "apps_electron_vite_project_src_lib_autooptimizationguards_applyoptimizationguardfallback", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationGuards.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationguards", + "target": "apps_electron_vite_project_src_lib_autooptimizationguards_canrunoptimization", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationGuards.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationguards", + "target": "apps_electron_vite_project_src_lib_autooptimizationguards_haslinkedsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationGuards.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationguards", + "target": "apps_electron_vite_project_src_lib_autooptimizationguards_resolveproject", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationGuards.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationguards", + "target": "apps_electron_vite_project_src_lib_wrdeskuievents", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationGuards.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationguards", + "target": "apps_electron_vite_project_src_lib_wrdeskuievents_wrdesk_optimization_guard_toast", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationGuards.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationguards", + "target": "apps_electron_vite_project_src_stores_useprojectstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationGuards.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationguards", + "target": "apps_electron_vite_project_src_stores_useprojectstore_useprojectstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationGuards.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationguards", + "target": "apps_electron_vite_project_src_types_optimizationtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationGuards.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationguards", + "target": "apps_electron_vite_project_src_types_optimizationtypes_guardfallback", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationGuards.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationguards", + "target": "apps_electron_vite_project_src_types_optimizationtypes_guardresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationGuards.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationguards", + "target": "apps_electron_vite_project_src_types_optimizationtypes_triggersource", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationGuards.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationguards", + "target": "apps_electron_vite_project_src_types_projecttypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationGuards.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationguards", + "target": "apps_electron_vite_project_src_types_projecttypes_project", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator", + "target": "apps_electron_vite_project_src_lib_autooptimizationguards", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/wrDeskOptimizerHttpBridge.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_wrdeskoptimizerhttpbridge", + "target": "apps_electron_vite_project_src_lib_autooptimizationguards", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationGuards.ts", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationguards_canrunoptimization", + "target": "apps_electron_vite_project_src_lib_autooptimizationguards_haslinkedsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoOptimizationGuards.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autooptimizationguards_canrunoptimization", + "target": "apps_electron_vite_project_src_lib_autooptimizationguards_resolveproject", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator", + "target": "apps_electron_vite_project_src_lib_autooptimizationguards_canrunoptimization", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L197", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator_executeoptimizationrun", + "target": "apps_electron_vite_project_src_lib_autooptimizationguards_canrunoptimization" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/wrDeskOptimizerHttpBridge.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_wrdeskoptimizerhttpbridge", + "target": "apps_electron_vite_project_src_lib_autooptimizationguards_canrunoptimization", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator", + "target": "apps_electron_vite_project_src_lib_autooptimizationguards_applyoptimizationguardfallback", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator_executeoptimizationrun", + "target": "apps_electron_vite_project_src_lib_autooptimizationguards_applyoptimizationguardfallback" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoSortSessionReviewCharts.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autosortsessionreviewcharts_test", + "target": "apps_electron_vite_project_src_lib_autosortsessionreviewcharts", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoSortSessionReviewCharts.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autosortsessionreviewcharts_test", + "target": "apps_electron_vite_project_src_lib_autosortsessionreviewcharts_aggregatereceivedbyday", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoSortSessionReviewCharts.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autosortsessionreviewcharts_test", + "target": "apps_electron_vite_project_src_lib_autosortsessionreviewcharts_aggregatereplyneededforsessionreview", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoSortSessionReviewCharts.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autosortsessionreviewcharts_test", + "target": "apps_electron_vite_project_src_lib_autosortsessionreviewcharts_aggregatetopsenders", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoSortSessionReviewCharts.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autosortsessionreviewcharts_test", + "target": "apps_electron_vite_project_src_lib_autosortsessionreviewcharts_formatsessionreviewreceivedatshort", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoSortSessionReviewCharts.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autosortsessionreviewcharts_test", + "target": "apps_electron_vite_project_src_lib_autosortsessionreviewcharts_test_row", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoSortSessionReviewCharts.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autosortsessionreviewcharts_test", + "target": "apps_electron_vite_project_src_lib_inboxsessionreviewopen", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoSortSessionReviewCharts.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autosortsessionreviewcharts_test", + "target": "apps_electron_vite_project_src_lib_inboxsessionreviewopen_sessionreviewmessagerow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoSortSessionReviewCharts.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autosortsessionreviewcharts", + "target": "apps_electron_vite_project_src_lib_autosortsessionreviewcharts_aggregatereceivedbyday", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoSortSessionReviewCharts.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autosortsessionreviewcharts", + "target": "apps_electron_vite_project_src_lib_autosortsessionreviewcharts_aggregatereplyneededforsessionreview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoSortSessionReviewCharts.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autosortsessionreviewcharts", + "target": "apps_electron_vite_project_src_lib_autosortsessionreviewcharts_aggregatetopsenders", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoSortSessionReviewCharts.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autosortsessionreviewcharts", + "target": "apps_electron_vite_project_src_lib_autosortsessionreviewcharts_formatsessionreviewreceivedatshort", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoSortSessionReviewCharts.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autosortsessionreviewcharts", + "target": "apps_electron_vite_project_src_lib_autosortsessionreviewcharts_received_day_buckets", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoSortSessionReviewCharts.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autosortsessionreviewcharts", + "target": "apps_electron_vite_project_src_lib_autosortsessionreviewcharts_sender_bar_colors", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoSortSessionReviewCharts.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autosortsessionreviewcharts", + "target": "apps_electron_vite_project_src_lib_autosortsessionreviewcharts_top_senders_max", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoSortSessionReviewCharts.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autosortsessionreviewcharts", + "target": "apps_electron_vite_project_src_lib_autosortsessionreviewcharts_truncatesenderlabel", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoSortSessionReviewCharts.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autosortsessionreviewcharts", + "target": "apps_electron_vite_project_src_lib_inboxsessionreviewopen", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoSortSessionReviewCharts.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autosortsessionreviewcharts", + "target": "apps_electron_vite_project_src_lib_inboxsessionreviewopen_sessionreviewmessagerow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autoSortSessionReviewCharts.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autosortsessionreviewcharts_aggregatetopsenders", + "target": "apps_electron_vite_project_src_lib_autosortsessionreviewcharts_truncatesenderlabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autosortDiagnostics.ts", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autosortdiagnostics", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics_autosortdiaglog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autosortDiagnostics.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autosortdiagnostics", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics_autosorttimingaccumulateouterchunk", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autosortDiagnostics.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autosortdiagnostics", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics_autosorttimingbump", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autosortDiagnostics.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autosortdiagnostics", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics_autosorttimingcounters", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autosortDiagnostics.ts", + "source_location": "L134", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autosortdiagnostics", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics_autosorttiminglog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autosortDiagnostics.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autosortdiagnostics", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics_autosorttimingnotecompletenessretry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autosortDiagnostics.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autosortdiagnostics", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics_autosorttimingrunactive", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autosortDiagnostics.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autosortdiagnostics", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics_autosorttimingrunend", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autosortDiagnostics.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autosortdiagnostics", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics_autosorttimingrunstart", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autosortDiagnostics.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autosortdiagnostics", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics_autosorttimingsetpostruntailms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autosortDiagnostics.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autosortdiagnostics", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics_debug_autosort_diagnostics", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autosortDiagnostics.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autosortdiagnostics", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics_debug_autosort_timing", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autosortDiagnostics.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autosortdiagnostics", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics_emptycounters", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autosortDiagnostics.ts", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autosortdiagnostics", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics_getautosortdiagrunid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autosortDiagnostics.ts", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autosortdiagnostics", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics_setautosortdiagrunid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autosortDiagnostics.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autosortdiagnostics", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics_timingcounters", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics_debug_autosort_diagnostics", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/autosortDiagnostics.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_autosortdiagnostics_autosorttimingrunstart", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics_emptycounters", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics_autosorttimingrunactive", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L416", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore_trackedlistmessages", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics_autosorttimingrunactive", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics_autosorttimingbump", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L416", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore_trackedlistmessages", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics_autosorttimingbump", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics_getautosortdiagrunid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics_autosortdiaglog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L739", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore_commitbulkclassifymainresultstolocalstate", + "target": "apps_electron_vite_project_src_lib_autosortdiagnostics_autosortdiaglog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxActionTooltips.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxactiontooltips", + "target": "apps_electron_vite_project_src_lib_beapinboxactiontooltips_beap_inbox_redirect_aria", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxActionTooltips.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxactiontooltips", + "target": "apps_electron_vite_project_src_lib_beapinboxactiontooltips_beap_inbox_redirect_tip", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxActionTooltips.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxactiontooltips", + "target": "apps_electron_vite_project_src_lib_beapinboxactiontooltips_beap_inbox_reply_tooltip", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxActionTooltips.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxactiontooltips", + "target": "apps_electron_vite_project_src_lib_beapinboxactiontooltips_beaphostsandboxclonetooltipforavailability", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxActionTooltips.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxactiontooltips", + "target": "apps_electron_vite_project_src_lib_beapinboxactiontooltips_beapinboxredirecttooltippropsfordetail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxActionTooltips.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxactiontooltips", + "target": "apps_electron_vite_project_src_lib_beapinboxactiontooltips_beapinboxredirecttooltippropsforrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxActionTooltips.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxactiontooltips", + "target": "apps_electron_vite_project_src_lib_beapinboxactiontooltips_beapinboxreplytooltipprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxActionTooltips.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxactiontooltips", + "target": "apps_electron_vite_project_src_types_sandboxorchestratoravailability", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxActionTooltips.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxactiontooltips", + "target": "apps_electron_vite_project_src_types_sandboxorchestratoravailability_sandboxorchestratoravailability", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox", + "target": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_beapinboxcloneauditmetadata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L350", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox", + "target": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_beapinboxclonepreparefailure", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L479", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox", + "target": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_beapinboxclonetosandboxapi", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox", + "target": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_beapinboxclonetosandboxresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L281", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox", + "target": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_buildclonemetadata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox", + "target": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_buildcloneprovenanceobject", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L139", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox", + "target": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_clonebeapinboxtosandbox", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L305", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox", + "target": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_insertoutboxentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L358", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox", + "target": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_sandboxclonefailureusertext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L387", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox", + "target": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_sandboxclonefeedbackfromoutcome", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox", + "target": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_waitforclonedeliveryack", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox", + "target": "apps_electron_vite_project_src_lib_beapsandboxclonedeliverysemantics", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox", + "target": "apps_electron_vite_project_src_lib_beapsandboxclonedeliverysemantics_mapcoordinationdeliverytomatrixmode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox", + "target": "apps_electron_vite_project_src_lib_handshakerecipientmap", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox", + "target": "apps_electron_vite_project_src_lib_handshakerecipientmap_handshakerecordtoselectedrecipient", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox", + "target": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox", + "target": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_sandbox_clone_inbox_lead_in", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_sandbox_clone_copy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_sandboxclonefeedbackview", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_viewsandboxentitlementrequired", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox", + "target": "apps_electron_vite_project_src_shims_handshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox", + "target": "apps_electron_vite_project_src_shims_handshakerpc_listhandshakes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox", + "target": "apps_electron_vite_project_src_types_beapinboxclone", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox", + "target": "apps_electron_vite_project_src_types_beapinboxclone_beapinboxcloneprepareok", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox", + "target": "apps_electron_vite_project_src_types_beapinboxclone_clonebeaptosandboxipcerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_getsigningkeypair", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beappackageconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_deliveryresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_executedeliveryaction", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox", + "target": "apps_extension_chromium_src_handshake_rpctypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox", + "target": "apps_extension_chromium_src_handshake_rpctypes_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox", + "target": "apps_extension_chromium_src_handshake_rpctypes_hashandshakekeymaterial", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_clonebeapinboxtosandbox", + "target": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_buildcloneprovenanceobject", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L267", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_clonebeapinboxtosandbox", + "target": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_waitforclonedeliveryack", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L521", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_beapinboxclonetosandboxapi", + "target": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_clonebeapinboxtosandbox", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L243", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_clonebeapinboxtosandbox", + "target": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_buildclonemetadata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L244", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_clonebeapinboxtosandbox", + "target": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_insertoutboxentry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L241", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_clonebeapinboxtosandbox", + "target": "apps_electron_vite_project_src_lib_beapsandboxclonedeliverysemantics_mapcoordinationdeliverytomatrixmode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L153", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_clonebeapinboxtosandbox", + "target": "apps_electron_vite_project_src_lib_handshakerecipientmap_handshakerecordtoselectedrecipient" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_clonebeapinboxtosandbox", + "target": "apps_electron_vite_project_src_shims_handshakerpc_listhandshakes" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L160", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_clonebeapinboxtosandbox", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_getsigningkeypair" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L215", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_clonebeapinboxtosandbox", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_executedeliveryaction" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L154", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_clonebeapinboxtosandbox", + "target": "apps_extension_chromium_src_handshake_rpctypes_hashandshakekeymaterial" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L405", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_sandboxclonefeedbackfromoutcome", + "target": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_sandboxclonefailureusertext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts", + "source_location": "L401", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxclonetosandbox_sandboxclonefeedbackfromoutcome", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_viewsandboxentitlementrequired" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxHostSandboxClickPolicy.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy", + "target": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy_hostsandboxcloneclickaction", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxHostSandboxClickPolicy.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy", + "target": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy_logsandboxtargetresolution", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxHostSandboxClickPolicy.ts", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy", + "target": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy_mapsandboxclickactiontoresolutiondecision", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxHostSandboxClickPolicy.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy", + "target": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy_resolvehostsandboxcloneclickaction", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxHostSandboxClickPolicy.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy", + "target": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy_sandbox_identity_incomplete_user_message", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxHostSandboxClickPolicy.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy", + "target": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy_sandbox_keying_incomplete_user_message", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxHostSandboxClickPolicy.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy", + "target": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy_sandboxcloneunavailabledialogvariant", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxHostSandboxClickPolicy.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy", + "target": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy_sandboxtargetresolutionlogdecision", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxHostSandboxClickPolicy.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy", + "target": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy_toproductsandboxtargetdecision", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxHostSandboxClickPolicy.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy", + "target": "apps_electron_vite_project_src_types_sandboxorchestratoravailability", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxHostSandboxClickPolicy.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy", + "target": "apps_electron_vite_project_src_types_sandboxorchestratoravailability_sandboxorchestratoravailability", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/sandboxCloneFeedbackUi.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui", + "target": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/sandboxCloneFeedbackUi.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui", + "target": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy_sandbox_keying_incomplete_user_message", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/sandboxCloneFeedbackUi.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui", + "target": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy_sandbox_identity_incomplete_user_message", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxHostSandboxClickPolicy.ts", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy_logsandboxtargetresolution", + "target": "apps_electron_vite_project_src_lib_beapinboxhostsandboxclickpolicy_toproductsandboxtargetdecision", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxSandboxVisibility.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility", + "target": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility_canshowsandboxaction", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxSandboxVisibility.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility", + "target": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility_canshowsandboxcloneaction", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxSandboxVisibility.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility", + "target": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility_canshowsandboxcloneactionparams", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxSandboxVisibility.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility", + "target": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility_canshowsandboxcloneicon", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxSandboxVisibility.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility", + "target": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility_canshowsandboxcloneiconparams", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxSandboxVisibility.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility", + "target": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility_getsandboxcloneeligibilitydetail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxSandboxVisibility.ts", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility", + "target": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility_logorchestratorrolemodeconflict", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxSandboxVisibility.ts", + "source_location": "L152", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility", + "target": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility_logsandboxactionvisibility", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxSandboxVisibility.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility", + "target": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility_logsandboxcloneeligibilitydebug", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxSandboxVisibility.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility", + "target": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility_sandboxactionhiddenreason", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxSandboxVisibility.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility", + "target": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility_sandboxcloneeligibilitydetail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxSandboxVisibility.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility", + "target": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility_tosandboxactionhiddenreason", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxSandboxVisibility.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility", + "target": "apps_electron_vite_project_src_lib_inboxmessageactionable", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxSandboxVisibility.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility", + "target": "apps_electron_vite_project_src_lib_inboxmessageactionable_isinboxmessageactionable", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxSandboxVisibility.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxSandboxVisibility.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxSandboxVisibility.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility", + "target": "apps_electron_vite_project_src_types_sandboxorchestratoravailability", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxSandboxVisibility.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility", + "target": "apps_electron_vite_project_src_types_sandboxorchestratoravailability_authoritativedeviceinternalrole", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxSandboxVisibility.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility_canshowsandboxcloneicon", + "target": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility_getsandboxcloneeligibilitydetail", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxSandboxVisibility.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility_getsandboxcloneeligibilitydetail", + "target": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility_logorchestratorrolemodeconflict", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/beapInboxSandboxVisibility.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility_getsandboxcloneeligibilitydetail", + "target": "apps_electron_vite_project_src_lib_inboxmessageactionable_isinboxmessageactionable" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxSandboxVisibility.ts", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility_logsandboxactionvisibility", + "target": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility_getsandboxcloneeligibilitydetail", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxSandboxVisibility.ts", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility_logsandboxcloneeligibilitydebug", + "target": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility_getsandboxcloneeligibilitydetail", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxSandboxVisibility.ts", + "source_location": "L165", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility_logsandboxactionvisibility", + "target": "apps_electron_vite_project_src_lib_beapinboxsandboxvisibility_tosandboxactionhiddenreason", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapInboxVisibleSandboxClone.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapinboxvisiblesandboxclone", + "target": "apps_electron_vite_project_src_lib_beapinboxvisiblesandboxclone_canclonevisibleinboxmessagetosandbox", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapPackageAttachmentPreview.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beappackageattachmentpreview", + "target": "apps_electron_vite_project_src_lib_beappackageattachmentpreview_base64toutf8", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapPackageAttachmentPreview.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beappackageattachmentpreview", + "target": "apps_electron_vite_project_src_lib_beappackageattachmentpreview_extractpdfviamainprocess", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapPackageAttachmentPreview.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beappackageattachmentpreview", + "target": "apps_electron_vite_project_src_lib_beappackageattachmentpreview_extracttextforpackagepreview", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapPackageAttachmentPreview.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beappackageattachmentpreview_extracttextforpackagepreview", + "target": "apps_electron_vite_project_src_lib_beappackageattachmentpreview_extractpdfviamainprocess", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapPackageAttachmentPreview.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beappackageattachmentpreview_extracttextforpackagepreview", + "target": "apps_electron_vite_project_src_lib_beappackageattachmentpreview_base64toutf8", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapSandboxCloneDeliverySemantics.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapsandboxclonedeliverysemantics", + "target": "apps_electron_vite_project_src_lib_beapsandboxclonedeliverysemantics_mapcoordinationdeliverytomatrixmode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/beapSandboxCloneDeliverySemantics.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_beapsandboxclonedeliverysemantics", + "target": "apps_electron_vite_project_src_lib_beapsandboxclonedeliverysemantics_sandboxclonematrixdelivery", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/buildProjectSetupChatPrefix.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_buildprojectsetupchatprefix", + "target": "apps_electron_vite_project_src_lib_buildprojectsetupchatprefix_buildprojectsetupchatprefix", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/buildProjectSetupChatPrefix.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_buildprojectsetupchatprefix", + "target": "apps_electron_vite_project_src_lib_buildprojectsetupchatprefix_clip", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/buildProjectSetupChatPrefix.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_buildprojectsetupchatprefix", + "target": "apps_electron_vite_project_src_stores_useprojectsetupchatcontextstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/buildProjectSetupChatPrefix.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_buildprojectsetupchatprefix", + "target": "apps_electron_vite_project_src_stores_useprojectsetupchatcontextstore_projectsetupchatcontextstate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/buildProjectSetupChatPrefix.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_buildprojectsetupchatprefix", + "target": "apps_electron_vite_project_src_stores_useprojectsetupchatcontextstore_projectsetupchathasbridgeablecontent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/buildProjectSetupChatPrefix.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_buildprojectsetupchatprefix_buildprojectsetupchatprefix", + "target": "apps_electron_vite_project_src_lib_buildprojectsetupchatprefix_clip", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/buildProjectSetupChatPrefix.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_buildprojectsetupchatprefix_buildprojectsetupchatprefix", + "target": "apps_electron_vite_project_src_stores_useprojectsetupchatcontextstore_projectsetupchathasbridgeablecontent" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/coalescedListInferenceTargets.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_coalescedlistinferencetargets", + "target": "apps_electron_vite_project_src_lib_coalescedlistinferencetargets_cachekey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/coalescedListInferenceTargets.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_coalescedlistinferencetargets", + "target": "apps_electron_vite_project_src_lib_coalescedlistinferencetargets_coalescedlistinferenceinvokeopts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/coalescedListInferenceTargets.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_coalescedlistinferencetargets", + "target": "apps_electron_vite_project_src_lib_coalescedlistinferencetargets_coalescedlistinferencetargetsinvoke", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/coalescedListInferenceTargets.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_coalescedlistinferencetargets", + "target": "apps_electron_vite_project_src_lib_coalescedlistinferencetargets_handshakeloglabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/coalescedListInferenceTargets.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_coalescedlistinferencetargets", + "target": "apps_electron_vite_project_src_lib_coalescedlistinferencetargets_inflight", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/coalescedListInferenceTargets.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_coalescedlistinferencetargets", + "target": "apps_electron_vite_project_src_lib_coalescedlistinferencetargets_recentlycompleted", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/coalescedListInferenceTargets.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_coalescedlistinferencetargets", + "target": "apps_electron_vite_project_src_lib_coalescedlistinferencetargets_resetcoalescedlistinferencetargetsfortests", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/coalescedListInferenceTargets.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_coalescedlistinferencetargets_coalescedlistinferencetargetsinvoke", + "target": "apps_electron_vite_project_src_lib_coalescedlistinferencetargets_cachekey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/coalescedListInferenceTargets.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_coalescedlistinferencetargets_coalescedlistinferencetargetsinvoke", + "target": "apps_electron_vite_project_src_lib_coalescedlistinferencetargets_handshakeloglabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/debugLogClipboard.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_debuglogclipboard", + "target": "apps_electron_vite_project_src_lib_debuglogclipboard_buildclipboardtext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/debugLogClipboard.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_debuglogclipboard", + "target": "apps_electron_vite_project_src_lib_debuglogclipboard_filterlogentries", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/debugLogClipboard.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_debuglogclipboard", + "target": "apps_electron_vite_project_src_lib_debuglogclipboard_formatlinedisplay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/debugLogClipboard.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_debuglogclipboard", + "target": "apps_electron_vite_project_src_lib_debuglogclipboard_formatlineplain", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/debugLogClipboard.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_debuglogclipboard", + "target": "apps_electron_vite_project_src_lib_debuglogclipboard_logentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/dedicatedSandboxIngestionUi.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_dedicatedsandboxingestionui", + "target": "apps_electron_vite_project_src_lib_dedicatedsandboxingestionui_dedicated_sandbox_host_triggered_status", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/dedicatedSandboxIngestionUi.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_dedicatedsandboxingestionui", + "target": "apps_electron_vite_project_src_lib_dedicatedsandboxingestionui_dedicated_sandbox_sync_window_hint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/dedicatedSandboxIngestionUi.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_dedicatedsandboxingestionui", + "target": "apps_electron_vite_project_src_lib_dedicatedsandboxingestionui_isdedicatedsandboxhosttriggeredingestion", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/dedicatedSandboxIngestionUi.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_dedicatedsandboxingestionui", + "target": "apps_electron_vite_project_src_lib_dedicatedsandboxingestionui_sandboxtopologykind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/dedicatedSandboxMissingReadProviderCopy.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_dedicatedsandboxmissingreadprovidercopy", + "target": "apps_electron_vite_project_src_lib_dedicatedsandboxmissingreadprovidercopy_host_sandbox_poll_unreachable_hint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/dedicatedSandboxMissingReadProviderCopy.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_dedicatedsandboxmissingreadprovidercopy", + "target": "apps_electron_vite_project_src_lib_dedicatedsandboxmissingreadprovidercopy_host_sandbox_read_account_missing_hint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/dedicatedSandboxMissingReadProviderCopy.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_dedicatedsandboxmissingreadprovidercopy", + "target": "apps_electron_vite_project_src_lib_dedicatedsandboxmissingreadprovidercopy_sandbox_read_account_setup_cta", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/dedicatedSandboxMissingReadProviderCopy.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_dedicatedsandboxmissingreadprovidercopy", + "target": "apps_electron_vite_project_src_lib_dedicatedsandboxmissingreadprovidercopy_sandbox_read_account_setup_detail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/dedicatedSandboxMissingReadProviderCopy.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_dedicatedsandboxmissingreadprovidercopy", + "target": "apps_electron_vite_project_src_lib_dedicatedsandboxmissingreadprovidercopy_sandbox_read_account_setup_title", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/fetchAnalysisDashboardSnapshot.ts", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot_categorymatches", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/fetchAnalysisDashboardSnapshot.ts", + "source_location": "L189", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot_deriveautomationmetrics", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/fetchAnalysisDashboardSnapshot.ts", + "source_location": "L239", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot_derivequeuevelocity", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/fetchAnalysisDashboardSnapshot.ts", + "source_location": "L142", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot_derivethreatmetrics", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/fetchAnalysisDashboardSnapshot.ts", + "source_location": "L213", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot_derivetransportratio", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/fetchAnalysisDashboardSnapshot.ts", + "source_location": "L264", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot_fetchanalysisdashboardsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/fetchAnalysisDashboardSnapshot.ts", + "source_location": "L254", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot_fetchanalysisdashboardsnapshotresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/fetchAnalysisDashboardSnapshot.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot_handshake_states", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/fetchAnalysisDashboardSnapshot.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot_ishandshakestate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/fetchAnalysisDashboardSnapshot.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot_project_section", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/fetchAnalysisDashboardSnapshot.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot_summarizehandshakes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/fetchAnalysisDashboardSnapshot.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot_summatchingcategories", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/fetchAnalysisDashboardSnapshot.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot_wiretopoaesection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/fetchAnalysisDashboardSnapshot.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot_wiretosnapshot", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/fetchAnalysisDashboardSnapshot.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/fetchAnalysisDashboardSnapshot.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardautomationmetrics", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/fetchAnalysisDashboardSnapshot.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardcategorycount", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/fetchAnalysisDashboardSnapshot.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardhandshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/fetchAnalysisDashboardSnapshot.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardpoaesection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/fetchAnalysisDashboardSnapshot.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardqueuevelocity", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/fetchAnalysisDashboardSnapshot.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/fetchAnalysisDashboardSnapshot.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardthreatmetrics", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/fetchAnalysisDashboardSnapshot.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardtransportratio", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/fetchAnalysisDashboardSnapshot.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_inboxdashboardsnapshotwire", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/useAnalysisDashboardSnapshot.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_useanalysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/fetchAnalysisDashboardSnapshot.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot_summarizehandshakes", + "target": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot_ishandshakestate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/fetchAnalysisDashboardSnapshot.ts", + "source_location": "L287", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot_fetchanalysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot_summarizehandshakes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/fetchAnalysisDashboardSnapshot.ts", + "source_location": "L284", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot_fetchanalysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot_wiretopoaesection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/fetchAnalysisDashboardSnapshot.ts", + "source_location": "L283", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot_fetchanalysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot_wiretosnapshot", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/fetchAnalysisDashboardSnapshot.ts", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot_summatchingcategories", + "target": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot_categorymatches", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/fetchAnalysisDashboardSnapshot.ts", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot_derivethreatmetrics", + "target": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot_summatchingcategories", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/fetchAnalysisDashboardSnapshot.ts", + "source_location": "L290", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot_fetchanalysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot_derivethreatmetrics", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/fetchAnalysisDashboardSnapshot.ts", + "source_location": "L291", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot_fetchanalysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot_deriveautomationmetrics", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/fetchAnalysisDashboardSnapshot.ts", + "source_location": "L292", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot_fetchanalysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot_derivetransportratio", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/fetchAnalysisDashboardSnapshot.ts", + "source_location": "L293", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot_fetchanalysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot_derivequeuevelocity", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/useAnalysisDashboardSnapshot.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_useanalysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot_fetchanalysisdashboardsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/useAnalysisDashboardSnapshot.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_useanalysisdashboardsnapshot_useanalysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_lib_fetchanalysisdashboardsnapshot_fetchanalysisdashboardsnapshot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/handshakeHealthBannerCopy.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_handshakehealthbannercopy", + "target": "apps_electron_vite_project_src_lib_handshakehealthbannercopy_formatpairing6", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/handshakeHealthBannerCopy.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_handshakehealthbannercopy", + "target": "apps_electron_vite_project_src_lib_handshakehealthbannercopy_handshakehealthbannermessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/handshakeHealthBannerCopy.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_handshakehealthbannercopy", + "target": "apps_electron_vite_project_src_lib_handshakehealthbannercopy_handshakehealthdismisskey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/handshakeHealthBannerCopy.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_handshakehealthbannercopy", + "target": "apps_electron_vite_project_src_lib_handshakehealthbannercopy_handshakehealthissuerank", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/handshakeHealthBannerCopy.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_handshakehealthbannercopy", + "target": "packages_shared_src_handshake_activehandshakehealthissue", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/handshakeHealthBannerCopy.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_handshakehealthbannercopy", + "target": "packages_shared_src_handshake_activehandshakehealthissue_activehandshakehealthissue", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/handshakeHealthBannerCopy.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_handshakehealthbannercopy_handshakehealthbannermessage", + "target": "apps_electron_vite_project_src_lib_handshakehealthbannercopy_formatpairing6", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/handshakeRecipientMap.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_handshakerecipientmap", + "target": "apps_electron_vite_project_src_lib_handshakerecipientmap_handshakerecordtoselectedrecipient", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/handshakeRecipientMap.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_handshakerecipientmap", + "target": "apps_extension_chromium_src_handshake_rpctypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/handshakeRecipientMap.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_handshakerecipientmap", + "target": "apps_extension_chromium_src_handshake_rpctypes_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/handshakeRecipientMap.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_handshakerecipientmap", + "target": "apps_extension_chromium_src_handshake_rpctypes_selectedhandshakerecipient", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/handshakeRecipientMap.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_handshakerecipientmap", + "target": "packages_shared_src_handshake_internalidentityui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/handshakeRecipientMap.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_handshakerecipientmap", + "target": "packages_shared_src_handshake_internalidentityui_formatinternalbeaptargetsummary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/handshakeRecipientMap.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_handshakerecipientmap", + "target": "packages_shared_src_handshake_internalidentityui_isinternalhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/handshakeRecipientMap.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_handshakerecipientmap_handshakerecordtoselectedrecipient", + "target": "packages_shared_src_handshake_internalidentityui_formatinternalbeaptargetsummary" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/handshakeRecipientMap.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_handshakerecipientmap_handshakerecordtoselectedrecipient", + "target": "packages_shared_src_handshake_internalidentityui_isinternalhandshake" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostActiveModelSelection.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostactivemodelselection", + "target": "apps_electron_vite_project_src_lib_hostactivemodelselection_getfirstavailablehostmodelid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostActiveModelSelection.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostactivemodelselection", + "target": "apps_electron_vite_project_src_lib_hostactivemodelselection_gethostactivemodelidfrommodels", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostActiveModelSelection.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostactivemodelselection", + "target": "apps_electron_vite_project_src_lib_hostactivemodelselection_gethostactivemodelidfromtargets", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostActiveModelSelection.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostactivemodelselection", + "target": "apps_electron_vite_project_src_lib_hostactivemodelselection_hostaiselectionsource", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostActiveModelSelection.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostactivemodelselection", + "target": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostActiveModelSelection.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostactivemodelselection", + "target": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation_hostinferencetargetmenuselectable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/hostActiveModelSelection.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostactivemodelselection_gethostactivemodelidfromtargets", + "target": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation_hostinferencetargetmenuselectable" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/hostActiveModelSelection.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostactivemodelselection_getfirstavailablehostmodelid", + "target": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation_hostinferencetargetmenuselectable" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiRemoteChatLane.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostairemotechatlane", + "target": "apps_electron_vite_project_src_lib_hostairemotechatlane_findhostinferencetargetrowforchatselection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiRemoteChatLane.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostairemotechatlane", + "target": "apps_electron_vite_project_src_lib_hostairemotechatlane_hostmodelremotelane", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiRemoteChatLane.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostairemotechatlane", + "target": "apps_electron_vite_project_src_lib_hostairemotechatlane_inferhostmodelremotelane", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiRemoteChatLane.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostairemotechatlane", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiRemoteChatLane.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostairemotechatlane", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_parseanyhostinferencemodelid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/modelSelectorMerge.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_modelselectormerge", + "target": "apps_electron_vite_project_src_lib_hostairemotechatlane", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/selectorModelListFromHostDiscovery.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_selectormodellistfromhostdiscovery", + "target": "apps_electron_vite_project_src_lib_hostairemotechatlane", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/modelSelectorMerge.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_modelselectormerge", + "target": "apps_electron_vite_project_src_lib_hostairemotechatlane_hostmodelremotelane", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/selectorModelListFromHostDiscovery.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_selectormodellistfromhostdiscovery", + "target": "apps_electron_vite_project_src_lib_hostairemotechatlane_hostmodelremotelane", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/modelSelectorMerge.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_modelselectormerge", + "target": "apps_electron_vite_project_src_lib_hostairemotechatlane_inferhostmodelremotelane", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/modelSelectorMerge.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_modelselectormerge_maphosttargetstogavmodelentries", + "target": "apps_electron_vite_project_src_lib_hostairemotechatlane_inferhostmodelremotelane" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/hostAiRemoteChatLane.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostairemotechatlane_findhostinferencetargetrowforchatselection", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_parseanyhostinferencemodelid" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiSelectorCopy.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaiselectorcopy", + "target": "apps_electron_vite_project_src_lib_hostaiselectorcopy_group_cloud", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiSelectorCopy.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaiselectorcopy", + "target": "apps_electron_vite_project_src_lib_hostaiselectorcopy_group_host_models", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiSelectorCopy.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaiselectorcopy", + "target": "apps_electron_vite_project_src_lib_hostaiselectorcopy_group_internal_host", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiSelectorCopy.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaiselectorcopy", + "target": "apps_electron_vite_project_src_lib_hostaiselectorcopy_group_local_models", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiSelectorCopy.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaiselectorcopy", + "target": "apps_electron_vite_project_src_lib_hostaiselectorcopy_host_ai_checking_tooltip", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiSelectorCopy.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaiselectorcopy", + "target": "apps_electron_vite_project_src_lib_hostaiselectorcopy_host_ai_mvp_p2p_endpoint_invalid_tooltip", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiSelectorCopy.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaiselectorcopy", + "target": "apps_electron_vite_project_src_lib_hostaiselectorcopy_host_ai_option_tooltip", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiSelectorCopy.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaiselectorcopy", + "target": "apps_electron_vite_project_src_lib_hostaiselectorcopy_host_ai_p2p_offline_detail_tooltip", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiSelectorCopy.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaiselectorcopy", + "target": "apps_electron_vite_project_src_lib_hostaiselectorcopy_host_ai_path_unavailable_tooltip", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiSelectorCopy.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaiselectorcopy", + "target": "apps_electron_vite_project_src_lib_hostaiselectorcopy_host_ai_selector_icon_class", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiSelectorCopy.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaiselectorcopy", + "target": "apps_electron_vite_project_src_lib_hostaiselectorcopy_host_ai_stale_inline", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiSelectorCopy.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaiselectorcopy", + "target": "apps_electron_vite_project_src_lib_hostaiselectorcopy_host_ai_unreachable_tooltip", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiSelectorCopy.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaiselectorcopy", + "target": "apps_electron_vite_project_src_lib_hostaiselectorcopy_host_inference_unavailable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiSelectorCopy.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaiselectorcopy", + "target": "apps_electron_vite_project_src_lib_hostaiselectorcopy_hostaichatblockedusermessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiSelectorCopy.ts", + "source_location": "L185", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaiselectorcopy", + "target": "apps_electron_vite_project_src_lib_hostaiselectorcopy_hostairowunavailabletooltip", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiSelectorCopy.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaiselectorcopy", + "target": "apps_electron_vite_project_src_lib_hostaiselectorcopy_phasefrom", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiSelectorCopy.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaiselectorcopy", + "target": "apps_electron_vite_project_src_lib_hostaiselectorcopy_tooltip_disabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiSelectorCopy.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaiselectorcopy", + "target": "apps_electron_vite_project_src_lib_hostaiselectorcopy_tooltip_identity", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiSelectorCopy.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaiselectorcopy", + "target": "apps_electron_vite_project_src_lib_hostaiselectorcopy_tooltip_legacy_path", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiSelectorCopy.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaiselectorcopy", + "target": "apps_electron_vite_project_src_lib_hostaiselectorcopy_tooltip_no_model", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiSelectorCopy.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaiselectorcopy", + "target": "apps_electron_vite_project_src_lib_hostaiselectorcopy_tooltip_role", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiSelectorCopy.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaiselectorcopy", + "target": "apps_electron_vite_project_src_lib_hostaiuidiagnostics", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiSelectorCopy.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaiselectorcopy", + "target": "apps_electron_vite_project_src_lib_hostaiuidiagnostics_hostaiuserfacingmessagefromtarget", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostModelSelectorRowUi.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostmodelselectorrowui", + "target": "apps_electron_vite_project_src_lib_hostaiselectorcopy", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/selectorModelListFromHostDiscovery.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_selectormodellistfromhostdiscovery", + "target": "apps_electron_vite_project_src_lib_hostaiselectorcopy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/selectorModelListFromHostDiscovery.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_selectormodellistfromhostdiscovery", + "target": "apps_electron_vite_project_src_lib_hostaiselectorcopy_host_ai_selector_icon_class", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiSelectorCopy.ts", + "source_location": "L204", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaiselectorcopy_hostairowunavailabletooltip", + "target": "apps_electron_vite_project_src_lib_hostaiselectorcopy_phasefrom", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/hostAiSelectorCopy.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaiselectorcopy_hostaichatblockedusermessage", + "target": "apps_electron_vite_project_src_lib_hostaiuidiagnostics_hostaiuserfacingmessagefromtarget" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostModelSelectorRowUi.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostmodelselectorrowui", + "target": "apps_electron_vite_project_src_lib_hostaiselectorcopy_hostairowunavailabletooltip", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/hostModelSelectorRowUi.ts", + "source_location": "L289", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_buildhostaiselectortooltip", + "target": "apps_electron_vite_project_src_lib_hostaiselectorcopy_hostairowunavailabletooltip" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiTargetConnectionPresentation.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation", + "target": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation_composehostaiconnectionsubtitle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiTargetConnectionPresentation.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation", + "target": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation_computehostinferencegavrowpresentation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiTargetConnectionPresentation.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation", + "target": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation_deriverawhostselectorstatefromtarget", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiTargetConnectionPresentation.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation", + "target": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation_hostaiconnectionstatusdetail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiTargetConnectionPresentation.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation", + "target": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation_hostaiconnectionstatuslabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiTargetConnectionPresentation.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation", + "target": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation_hostaitargetdevdebugsnippet", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiTargetConnectionPresentation.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation", + "target": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation_hostinferencerowhasmodelid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiTargetConnectionPresentation.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation", + "target": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation_hostinferencetargetmenuselectable", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostModelSelectorRowUi.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostmodelselectorrowui", + "target": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "target": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/modelSelectorMerge.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_modelselectormerge", + "target": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiTargetConnectionPresentation.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation_hostinferencetargetmenuselectable", + "target": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation_hostinferencerowhasmodelid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiTargetConnectionPresentation.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation_computehostinferencegavrowpresentation", + "target": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation_hostinferencetargetmenuselectable", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "target": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation_hostinferencetargetmenuselectable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L415", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_ishostinternalselectionstalefororchestratorui", + "target": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation_hostinferencetargetmenuselectable" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiTargetConnectionPresentation.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation_composehostaiconnectionsubtitle", + "target": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation_hostaiconnectionstatuslabel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiTargetConnectionPresentation.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation_composehostaiconnectionsubtitle", + "target": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation_hostaiconnectionstatusdetail", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostModelSelectorRowUi.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostmodelselectorrowui", + "target": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation_composehostaiconnectionsubtitle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostModelSelectorRowUi.ts", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_projectionsubtitle", + "target": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation_composehostaiconnectionsubtitle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiTargetConnectionPresentation.ts", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation_computehostinferencegavrowpresentation", + "target": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation_deriverawhostselectorstatefromtarget", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/modelSelectorMerge.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_modelselectormerge", + "target": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation_computehostinferencegavrowpresentation", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/modelSelectorMerge.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_modelselectormerge_maphosttargetstogavmodelentries", + "target": "apps_electron_vite_project_src_lib_hostaitargetconnectionpresentation_computehostinferencegavrowpresentation" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiTargetUiNormalization.ts", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaitargetuinormalization", + "target": "apps_electron_vite_project_src_lib_hostaitargetuinormalization_arenormalizedhostaitargetlistsequal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiTargetUiNormalization.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaitargetuinormalization", + "target": "apps_electron_vite_project_src_lib_hostaitargetuinormalization_hostrowextras", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiTargetUiNormalization.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaitargetuinormalization", + "target": "apps_electron_vite_project_src_lib_hostaitargetuinormalization_normalizehostaitargetforui", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiTargetUiNormalization.ts", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaitargetuinormalization", + "target": "apps_electron_vite_project_src_lib_hostaitargetuinormalization_serializemergedselectormodelsforstableui", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiTargetUiNormalization.ts", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaitargetuinormalization", + "target": "apps_electron_vite_project_src_lib_hostaitargetuinormalization_serializenormalizedhostaitargetlistui", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiTargetUiNormalization.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaitargetuinormalization", + "target": "apps_electron_vite_project_src_lib_hostaitargetuinormalization_stripvolatileshallow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiTargetUiNormalization.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaitargetuinormalization", + "target": "apps_electron_vite_project_src_lib_hostaitargetuinormalization_volatile_root_keys", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/hostAiTargetUiNormalization.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaitargetuinormalization_stripvolatileshallow", + "target": "apps_electron_vite_project_src_lib_hostaitargetuinormalization_volatile_root_keys" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiTargetUiNormalization.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaitargetuinormalization_serializemergedselectormodelsforstableui", + "target": "apps_electron_vite_project_src_lib_hostaitargetuinormalization_stripvolatileshallow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiTargetUiNormalization.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaitargetuinormalization_serializenormalizedhostaitargetlistui", + "target": "apps_electron_vite_project_src_lib_hostaitargetuinormalization_stripvolatileshallow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiTargetUiNormalization.ts", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaitargetuinormalization_serializenormalizedhostaitargetlistui", + "target": "apps_electron_vite_project_src_lib_hostaitargetuinormalization_normalizehostaitargetforui", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiTargetUiNormalization.ts", + "source_location": "L137", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaitargetuinormalization_arenormalizedhostaitargetlistsequal", + "target": "apps_electron_vite_project_src_lib_hostaitargetuinormalization_serializenormalizedhostaitargetlistui", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiUiDiagnostics.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaiuidiagnostics", + "target": "apps_electron_vite_project_src_lib_hostaiuidiagnostics_host_ai_diagnostics_example_self_local_beap", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiUiDiagnostics.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaiuidiagnostics", + "target": "apps_electron_vite_project_src_lib_hostaiuidiagnostics_host_ai_msg", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiUiDiagnostics.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaiuidiagnostics", + "target": "apps_electron_vite_project_src_lib_hostaiuidiagnostics_hostaiendpointdiagnostics", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiUiDiagnostics.ts", + "source_location": "L277", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaiuidiagnostics", + "target": "apps_electron_vite_project_src_lib_hostaiuidiagnostics_hostaigenericp2punavailableline", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiUiDiagnostics.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaiuidiagnostics", + "target": "apps_electron_vite_project_src_lib_hostaiuidiagnostics_hostaiprobecode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiUiDiagnostics.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaiuidiagnostics", + "target": "apps_electron_vite_project_src_lib_hostaiuidiagnostics_hostaitargetlike", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiUiDiagnostics.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaiuidiagnostics", + "target": "apps_electron_vite_project_src_lib_hostaiuidiagnostics_hostaiuserfacingmessagefromtarget", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiUiDiagnostics.ts", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaiuidiagnostics", + "target": "apps_electron_vite_project_src_lib_hostaiuidiagnostics_identityuicode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiUiDiagnostics.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaiuidiagnostics", + "target": "apps_electron_vite_project_src_lib_hostaiuidiagnostics_isselflocalbeapdeny", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiUiDiagnostics.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaiuidiagnostics", + "target": "apps_electron_vite_project_src_lib_hostaiuidiagnostics_shouldsuppressollamaunreachablesandboxashostfailure", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostInferenceUiGates.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostinferenceuigates", + "target": "apps_electron_vite_project_src_lib_hostaiuidiagnostics", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiUiDiagnostics.ts", + "source_location": "L181", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaiuidiagnostics_hostaiuserfacingmessagefromtarget", + "target": "apps_electron_vite_project_src_lib_hostaiuidiagnostics_isselflocalbeapdeny", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiUiDiagnostics.ts", + "source_location": "L154", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaiuidiagnostics_hostaiuserfacingmessagefromtarget", + "target": "apps_electron_vite_project_src_lib_hostaiuidiagnostics_identityuicode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostAiUiDiagnostics.ts", + "source_location": "L156", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostaiuidiagnostics_hostaiuserfacingmessagefromtarget", + "target": "apps_electron_vite_project_src_lib_hostaiuidiagnostics_shouldsuppressollamaunreachablesandboxashostfailure", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostInferenceUiGates.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostinferenceuigates", + "target": "apps_electron_vite_project_src_lib_hostaiuidiagnostics_hostaigenericp2punavailableline", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/hostInferenceUiGates.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostinferenceuigates_hostinferencedirectunavailablemessage", + "target": "apps_electron_vite_project_src_lib_hostaiuidiagnostics_hostaigenericp2punavailableline" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostInferenceModelIds.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostinferencemodelids", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_bareollamamodelnameforapi", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostInferenceModelIds.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostinferencemodelids", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_host_inference_prefix", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostInferenceModelIds.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostinferencemodelids", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_host_internal_prefix", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostInferenceModelIds.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostinferencemodelids", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_hostinferencemodelid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostInferenceModelIds.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostinferencemodelids", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_hostinternalinferencemodelid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostInferenceModelIds.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostinferencemodelids", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_ishostinferencemodelid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostInferenceModelIds.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostinferencemodelids", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_parseanyhostinferencemodelid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostInferenceModelIds.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostinferencemodelids", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_parsehostinferencemodelid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostInferenceModelIds.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostinferencemodelids", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_parsehostinternalinferencemodelid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostInferenceModelIds.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostinferencemodelids_parseanyhostinferencemodelid", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_parsehostinferencemodelid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostInferenceModelIds.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostinferencemodelids_parseanyhostinferencemodelid", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_parsehostinternalinferencemodelid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostInferenceModelIds.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostinferencemodelids_bareollamamodelnameforapi", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_parseanyhostinferencemodelid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostInferenceModelIds.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostinferencemodelids_ishostinferencemodelid", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_parseanyhostinferencemodelid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_parseanyhostinferencemodelid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L397", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_ishostinternalselectionstalefororchestratorui", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_parseanyhostinferencemodelid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L202", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_migrateunscopedorchhost", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_parseanyhostinferencemodelid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L681", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_readwrchatinferenceselection", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_parseanyhostinferencemodelid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L268", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_resolvehosthandshakeidfrominferenceselection", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_parseanyhostinferencemodelid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_tostoredselection", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_parseanyhostinferencemodelid" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_ishostinferencemodelid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_inferkindfromid", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_ishostinferencemodelid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L392", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_ishostinternalselectionstalefororchestratorui", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_ishostinferencemodelid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L155", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_readorchestratorinferenceselection", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_ishostinferencemodelid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L680", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_readwrchatinferenceselection", + "target": "apps_electron_vite_project_src_lib_hostinferencemodelids_ishostinferencemodelid" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostInferenceUiGates.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostinferenceuigates", + "target": "apps_electron_vite_project_src_lib_hostinferenceuigates_directp2preachabilitycopyforhosttosandbox", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostInferenceUiGates.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostinferenceuigates", + "target": "apps_electron_vite_project_src_lib_hostinferenceuigates_directp2preachabilitycopyforsandboxtohost", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostInferenceUiGates.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostinferenceuigates", + "target": "apps_electron_vite_project_src_lib_hostinferenceuigates_directp2preachabilitystatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostInferenceUiGates.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostinferenceuigates", + "target": "apps_electron_vite_project_src_lib_hostinferenceuigates_hostinferencedirectunavailablemessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostInferenceUiGates.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostinferenceuigates", + "target": "apps_electron_vite_project_src_lib_hostinferenceuigates_hostinferenceoptionvisible", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostInferenceUiGates.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostinferenceuigates", + "target": "apps_electron_vite_project_src_lib_hostinferenceuigates_hostinferenceselectormultiple", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostInferenceUiGates.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostinferenceuigates", + "target": "apps_electron_vite_project_src_lib_hostinferenceuigates_hostinferencesetupmessagevisible", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostInferenceUiGates.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostinferenceuigates_hostinferenceselectormultiple", + "target": "apps_electron_vite_project_src_lib_hostinferenceuigates_hostinferenceoptionvisible", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostModelSelectorRowUi.ts", + "source_location": "L282", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostmodelselectorrowui", + "target": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_buildhostaiselectortooltip", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostModelSelectorRowUi.ts", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostmodelselectorrowui", + "target": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_fallbacktitleforphase", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostModelSelectorRowUi.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostmodelselectorrowui", + "target": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_formathostpairingiddigits", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostModelSelectorRowUi.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostmodelselectorrowui", + "target": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_hostdisplayname", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostModelSelectorRowUi.ts", + "source_location": "L214", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostmodelselectorrowui", + "target": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_hostmodelselectorrowui", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostModelSelectorRowUi.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostmodelselectorrowui", + "target": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_hostmodelselectorrowuiin", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostModelSelectorRowUi.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostmodelselectorrowui", + "target": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_hostmodelselectorshowsdefinitivehostfailure", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostModelSelectorRowUi.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostmodelselectorrowui", + "target": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_hostp2puiphase", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostModelSelectorRowUi.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostmodelselectorrowui", + "target": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_ischecking", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostModelSelectorRowUi.ts", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostmodelselectorrowui", + "target": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_isidentityincomplete", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostModelSelectorRowUi.ts", + "source_location": "L192", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostmodelselectorrowui", + "target": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_ispolicydisabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostModelSelectorRowUi.ts", + "source_location": "L205", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostmodelselectorrowui", + "target": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_isrolemetadata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostModelSelectorRowUi.ts", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostmodelselectorrowui", + "target": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_projectionsubtitle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostModelSelectorRowUi.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostmodelselectorrowui", + "target": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_projectphase", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostModelSelectorRowUi.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostmodelselectorrowui", + "target": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_secondaryhostidline", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostModelSelectorRowUi.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_secondaryhostidline", + "target": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_hostdisplayname", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostModelSelectorRowUi.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_secondaryhostidline", + "target": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_formathostpairingiddigits", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostModelSelectorRowUi.ts", + "source_location": "L227", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_hostmodelselectorrowui", + "target": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_secondaryhostidline", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostModelSelectorRowUi.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_projectionsubtitle", + "target": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_secondaryhostidline", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostModelSelectorRowUi.ts", + "source_location": "L218", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_hostmodelselectorrowui", + "target": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_projectphase", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostModelSelectorRowUi.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_hostmodelselectorshowsdefinitivehostfailure", + "target": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_projectphase", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostModelSelectorRowUi.ts", + "source_location": "L224", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_hostmodelselectorrowui", + "target": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_ischecking", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostModelSelectorRowUi.ts", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_hostmodelselectorshowsdefinitivehostfailure", + "target": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_ischecking", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostModelSelectorRowUi.ts", + "source_location": "L230", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_hostmodelselectorrowui", + "target": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_projectionsubtitle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostModelSelectorRowUi.ts", + "source_location": "L242", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_hostmodelselectorrowui", + "target": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_fallbacktitleforphase", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostModelSelectorRowUi.ts", + "source_location": "L246", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_hostmodelselectorrowui", + "target": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_ispolicydisabled", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostModelSelectorRowUi.ts", + "source_location": "L249", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_hostmodelselectorrowui", + "target": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_isidentityincomplete", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostModelSelectorRowUi.ts", + "source_location": "L252", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_hostmodelselectorrowui", + "target": "apps_electron_vite_project_src_lib_hostmodelselectorrowui_isrolemetadata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostRefreshFeedback.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostrefreshfeedback", + "target": "apps_electron_vite_project_src_lib_hostrefreshfeedback_copy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostRefreshFeedback.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostrefreshfeedback", + "target": "apps_electron_vite_project_src_lib_hostrefreshfeedback_gethostrefreshfeedbackfromtargets", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostRefreshFeedback.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostrefreshfeedback", + "target": "apps_electron_vite_project_src_lib_hostrefreshfeedback_hostrefreshfeedback", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostRefreshFeedback.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostrefreshfeedback", + "target": "apps_electron_vite_project_src_lib_hostrefreshfeedback_hosttargetdisplaymodel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostRefreshFeedback.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostrefreshfeedback", + "target": "apps_electron_vite_project_src_lib_hostrefreshfeedback_ishostpathofflinebyprojection", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostRefreshFeedback.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostrefreshfeedback", + "target": "apps_electron_vite_project_src_lib_selectormodellistfromhostdiscovery", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostRefreshFeedback.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostrefreshfeedback", + "target": "apps_electron_vite_project_src_lib_selectormodellistfromhostdiscovery_fetchselectormodellistresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostRefreshFeedback.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostrefreshfeedback_gethostrefreshfeedbackfromtargets", + "target": "apps_electron_vite_project_src_lib_hostrefreshfeedback_hosttargetdisplaymodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/hostRefreshFeedback.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_hostrefreshfeedback_gethostrefreshfeedbackfromtargets", + "target": "apps_electron_vite_project_src_lib_hostrefreshfeedback_ishostpathofflinebyprojection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L240", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaicloneclassification", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_classifyinboxrowforai", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaicloneclassification", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_collectreplymodemetadatafromobject", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaicloneclassification", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_considerprovkeys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaicloneclassification", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_firststring", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaicloneclassification", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_foreachtrailingprovenancejson", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L190", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaicloneclassification", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_getinboxreplymodemetadata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L330", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaicloneclassification", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_inbox_email_reply_metadata_missing", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaicloneclassification", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_inboxmessageaiclassificationrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L296", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaicloneclassification", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_inboxreplydecisionphase", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L216", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaicloneclassification", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_inboxreplymode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaicloneclassification", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_inboxreplymodemetadata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L295", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaicloneclassification", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_inboxreplyselectedpath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L245", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaicloneclassification", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_inboxreplytransport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L256", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaicloneclassification", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_inboxreplytransportresolutionmeta", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L247", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaicloneclassification", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_inboxreplytransportrouterreason", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaicloneclassification", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_inboxrowisclonedplainemail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L298", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaicloneclassification", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_loginboxreplytransportdecision", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L218", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaicloneclassification", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_resolveinboxreplymode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L290", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaicloneclassification", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_resolveinboxreplytransport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L266", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaicloneclassification", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_resolveinboxreplytransportmeta", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L209", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaicloneclassification", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_rowisactualnativebeap", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaicloneclassification", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_safeparsejsonobject", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaicloneclassification", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_sandboxclonesignalspresent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaicloneclassification", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_walkcloneplainsignals", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaicloneclassification", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_walkreplymodemetadata", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageKind.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxmessagekind", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageKind.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxmessagekind", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_inboxmessageaiclassificationrow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaicloneclassification_foreachtrailingprovenancejson", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_safeparsejsonobject", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L198", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaicloneclassification_getinboxreplymodemetadata", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_safeparsejsonobject", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaicloneclassification_inboxrowisclonedplainemail", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_safeparsejsonobject", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaicloneclassification_walkcloneplainsignals", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_safeparsejsonobject", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L173", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaicloneclassification_walkreplymodemetadata", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_safeparsejsonobject", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaicloneclassification_walkcloneplainsignals", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_considerprovkeys", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaicloneclassification_inboxrowisclonedplainemail", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_walkcloneplainsignals", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaicloneclassification_walkcloneplainsignals", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_foreachtrailingprovenancejson", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L204", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaicloneclassification_getinboxreplymodemetadata", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_foreachtrailingprovenancejson", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaicloneclassification_inboxrowisclonedplainemail", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_foreachtrailingprovenancejson", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaicloneclassification_walkreplymodemetadata", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_foreachtrailingprovenancejson", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L192", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaicloneclassification_getinboxreplymodemetadata", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_sandboxclonesignalspresent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaicloneclassification_inboxrowisclonedplainemail", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_sandboxclonesignalspresent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L308", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaicloneclassification_loginboxreplytransportdecision", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_inboxrowisclonedplainemail", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L233", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaicloneclassification_resolveinboxreplymode", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_inboxrowisclonedplainemail", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L281", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaicloneclassification_resolveinboxreplytransportmeta", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_inboxrowisclonedplainemail", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaicloneclassification_collectreplymodemetadatafromobject", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_firststring", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L193", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaicloneclassification_getinboxreplymodemetadata", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_firststring", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L185", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaicloneclassification_walkreplymodemetadata", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_collectreplymodemetadatafromobject", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaicloneclassification_getinboxreplymodemetadata", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_walkreplymodemetadata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L309", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaicloneclassification_loginboxreplytransportdecision", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_getinboxreplymodemetadata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L223", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaicloneclassification_resolveinboxreplymode", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_getinboxreplymodemetadata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L271", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaicloneclassification_resolveinboxreplytransportmeta", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_getinboxreplymodemetadata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L236", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaicloneclassification_resolveinboxreplymode", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_rowisactualnativebeap", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L284", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaicloneclassification_resolveinboxreplytransportmeta", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_rowisactualnativebeap", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L241", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaicloneclassification_classifyinboxrowforai", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_resolveinboxreplymode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L310", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaicloneclassification_loginboxreplytransportdecision", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_resolveinboxreplymode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts", + "source_location": "L291", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaicloneclassification_resolveinboxreplytransport", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_resolveinboxreplymode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageKind.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxmessagekind", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_classifyinboxrowforai", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/inboxMessageKind.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxmessagekind_deriveinboxmessagekind", + "target": "apps_electron_vite_project_src_lib_inboxaicloneclassification_classifyinboxrowforai" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiUserMessages.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaiusermessages", + "target": "apps_electron_vite_project_src_lib_inboxaiusermessages_inboxaianalyzestreamerrordisplay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiUserMessages.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaiusermessages", + "target": "apps_electron_vite_project_src_lib_inboxaiusermessages_inboxaidraftreplyerrordisplay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiUserMessages.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaiusermessages", + "target": "apps_electron_vite_project_src_lib_inboxaiusermessages_inboxaierrordebugpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiUserMessages.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaiusermessages", + "target": "apps_electron_vite_project_src_lib_inboxaiusermessages_usermessageforinboxaicode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiUserMessages.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaiusermessages_inboxaianalyzestreamerrordisplay", + "target": "apps_electron_vite_project_src_lib_inboxaiusermessages_usermessageforinboxaicode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxAiUserMessages.ts", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxaiusermessages_inboxaidraftreplyerrordisplay", + "target": "apps_electron_vite_project_src_lib_inboxaiusermessages_usermessageforinboxaicode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxBeapOutbound.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxbeapoutbound", + "target": "apps_electron_vite_project_src_lib_inboxbeapoutbound_isbeapqbeapoutboundecho", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxBeapOutbound.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxbeapoutbound", + "target": "apps_electron_vite_project_src_lib_inboxbeaproweligibility", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxBeapOutbound.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxbeapoutbound", + "target": "apps_electron_vite_project_src_lib_inboxbeaproweligibility_depackagedformatfromjson", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxBeapOutbound.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxbeapoutbound", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxBeapOutbound.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxbeapoutbound", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxmessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/inboxBeapOutbound.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxbeapoutbound_isbeapqbeapoutboundecho", + "target": "apps_electron_vite_project_src_lib_inboxbeaproweligibility_depackagedformatfromjson" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxBeapRowEligibility.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxbeaproweligibility", + "target": "apps_electron_vite_project_src_lib_inboxbeaproweligibility_depackagedformatfromjson", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxBeapRowEligibility.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxbeaproweligibility", + "target": "apps_electron_vite_project_src_lib_inboxbeaproweligibility_isemailplainrowwithbeappayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxBeapRowEligibility.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxbeaproweligibility", + "target": "apps_electron_vite_project_src_lib_inboxbeaproweligibility_isreceivedbeapinboxmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxBeapRowEligibility.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxbeaproweligibility", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxBeapRowEligibility.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxbeaproweligibility", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxmessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxBeapRowEligibility.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxbeaproweligibility_isemailplainrowwithbeappayload", + "target": "apps_electron_vite_project_src_lib_inboxbeaproweligibility_depackagedformatfromjson", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxBeapRowEligibility.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxbeaproweligibility_isreceivedbeapinboxmessage", + "target": "apps_electron_vite_project_src_lib_inboxbeaproweligibility_isemailplainrowwithbeappayload", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxClassificationReconcile.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxclassificationreconcile_test", + "target": "apps_electron_vite_project_src_lib_inboxclassificationreconcile", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxClassificationReconcile.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxclassificationreconcile_test", + "target": "apps_electron_vite_project_src_lib_inboxclassificationreconcile_combinedclassificationtext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxClassificationReconcile.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxclassificationreconcile_test", + "target": "apps_electron_vite_project_src_lib_inboxclassificationreconcile_detectpromotionalandhighstakes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxClassificationReconcile.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxclassificationreconcile_test", + "target": "apps_electron_vite_project_src_lib_inboxclassificationreconcile_reconcileanalyzetriage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxClassificationReconcile.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxclassificationreconcile_test", + "target": "apps_electron_vite_project_src_lib_inboxclassificationreconcile_reconcileinboxclassification", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxClassificationReconcile.ts", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxclassificationreconcile", + "target": "apps_electron_vite_project_src_lib_inboxclassificationreconcile_applysortsourceweighting", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxClassificationReconcile.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxclassificationreconcile", + "target": "apps_electron_vite_project_src_lib_inboxclassificationreconcile_combinedclassificationtext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxClassificationReconcile.ts", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxclassificationreconcile", + "target": "apps_electron_vite_project_src_lib_inboxclassificationreconcile_detectpromotionalandhighstakes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxClassificationReconcile.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxclassificationreconcile", + "target": "apps_electron_vite_project_src_lib_inboxclassificationreconcile_escalated_categories", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxClassificationReconcile.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxclassificationreconcile", + "target": "apps_electron_vite_project_src_lib_inboxclassificationreconcile_high_stakes_re", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxClassificationReconcile.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxclassificationreconcile", + "target": "apps_electron_vite_project_src_lib_inboxclassificationreconcile_promotional_re", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxClassificationReconcile.ts", + "source_location": "L192", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxclassificationreconcile", + "target": "apps_electron_vite_project_src_lib_inboxclassificationreconcile_reconcileanalyzetriage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxClassificationReconcile.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxclassificationreconcile", + "target": "apps_electron_vite_project_src_lib_inboxclassificationreconcile_reconcileclassifyinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxClassificationReconcile.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxclassificationreconcile", + "target": "apps_electron_vite_project_src_lib_inboxclassificationreconcile_reconcilecontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxClassificationReconcile.ts", + "source_location": "L158", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxclassificationreconcile", + "target": "apps_electron_vite_project_src_lib_inboxclassificationreconcile_reconcileinboxclassification", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxClassificationReconcile.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxclassificationreconcile", + "target": "apps_electron_vite_project_src_lib_inboxsortsourceweighting", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxClassificationReconcile.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxclassificationreconcile", + "target": "apps_electron_vite_project_src_lib_inboxsortsourceweighting_sortsourceweighting", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxClassificationReconcile.ts", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxclassificationreconcile_reconcileinboxclassification", + "target": "apps_electron_vite_project_src_lib_inboxclassificationreconcile_combinedclassificationtext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/inboxClassificationReconcile.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxclassificationreconcile_detectpromotionalandhighstakes", + "target": "apps_electron_vite_project_src_lib_inboxclassificationreconcile_high_stakes_re" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/inboxClassificationReconcile.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxclassificationreconcile_detectpromotionalandhighstakes", + "target": "apps_electron_vite_project_src_lib_inboxclassificationreconcile_promotional_re" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxClassificationReconcile.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxclassificationreconcile_reconcileinboxclassification", + "target": "apps_electron_vite_project_src_lib_inboxclassificationreconcile_detectpromotionalandhighstakes", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/inboxClassificationReconcile.ts", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxclassificationreconcile_reconcileinboxclassification", + "target": "apps_electron_vite_project_src_lib_inboxclassificationreconcile_escalated_categories" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxClassificationReconcile.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxclassificationreconcile_reconcileinboxclassification", + "target": "apps_electron_vite_project_src_lib_inboxclassificationreconcile_applysortsourceweighting", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxClassificationReconcile.ts", + "source_location": "L197", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxclassificationreconcile_reconcileanalyzetriage", + "target": "apps_electron_vite_project_src_lib_inboxclassificationreconcile_reconcileinboxclassification", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxDetailAnalysisSelection.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxdetailanalysisselection", + "target": "apps_electron_vite_project_src_lib_inboxdetailanalysisselection_inbox_analysis_selection_debounce_ms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxDetailAnalysisSelection.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxdetailanalysisselection", + "target": "apps_electron_vite_project_src_lib_inboxdetailanalysisselection_resolveselectionanalysisrun", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxDetailAnalysisSelection.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxdetailanalysisselection", + "target": "apps_electron_vite_project_src_lib_inboxdetailanalysisselection_shouldapplyanalysisstreamresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxDetailAnalysisSelection.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxdetailanalysisselection", + "target": "apps_electron_vite_project_src_lib_inboxdetailanalysisselection_shouldtriggeranalysisonselectionchange", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageActionable.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxmessageactionable", + "target": "apps_electron_vite_project_src_lib_inboxmessageactionable_isinboxmessageactionable", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageActionable.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxmessageactionable", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageActionable.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxmessageactionable", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageKind.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxmessagekind", + "target": "apps_electron_vite_project_src_lib_inboxmessagekind_coerceinboxmessagekindfilter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageKind.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxmessagekind", + "target": "apps_electron_vite_project_src_lib_inboxmessagekind_deriveinboxmessagekind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageKind.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxmessagekind", + "target": "apps_electron_vite_project_src_lib_inboxmessagekind_inboxmessagekindderived", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageKind.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxmessagekind", + "target": "apps_electron_vite_project_src_lib_inboxmessagekind_inboxmessagekindfields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageKind.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxmessagekind", + "target": "apps_electron_vite_project_src_lib_inboxmessagekind_inboxmessagekindfilter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageKind.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxmessagekind", + "target": "apps_electron_vite_project_src_lib_inboxmessagekind_messagematcheskindfilter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageKind.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxmessagekind", + "target": "apps_electron_vite_project_src_lib_inboxmessagekind_showhandshakenavicon", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageSandboxClone.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone", + "target": "apps_electron_vite_project_src_lib_inboxmessagekind", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore", + "target": "apps_electron_vite_project_src_lib_inboxmessagekind", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore", + "target": "apps_electron_vite_project_src_lib_inboxmessagekind_inboxmessagekindfilter", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L159", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxfilter", + "target": "apps_electron_vite_project_src_lib_inboxmessagekind_inboxmessagekindfilter", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore", + "target": "apps_electron_vite_project_src_lib_inboxmessagekind_coerceinboxmessagekindfilter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageKind.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxmessagekind_messagematcheskindfilter", + "target": "apps_electron_vite_project_src_lib_inboxmessagekind_deriveinboxmessagekind", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageKind.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxmessagekind_showhandshakenavicon", + "target": "apps_electron_vite_project_src_lib_inboxmessagekind_deriveinboxmessagekind", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageSandboxClone.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone", + "target": "apps_electron_vite_project_src_lib_inboxmessagekind_deriveinboxmessagekind", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/inboxMessageSandboxClone.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_inboxmessageusesnativebeappbeapqbeapsplit", + "target": "apps_electron_vite_project_src_lib_inboxmessagekind_deriveinboxmessagekind" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore", + "target": "apps_electron_vite_project_src_lib_inboxmessagekind_deriveinboxmessagekind", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore", + "target": "apps_electron_vite_project_src_lib_inboxmessagekind_messagematcheskindfilter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L482", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore_filterbyinboxfilter", + "target": "apps_electron_vite_project_src_lib_inboxmessagekind_messagematcheskindfilter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageSandboxClone.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone", + "target": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_extractsandboxcloneuimeta", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageSandboxClone.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone", + "target": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_inbox_direct_beap_badge_tooltip", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageSandboxClone.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone", + "target": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_inbox_sandbox_clone_badge_tooltip", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageSandboxClone.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone", + "target": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_inboxmessageissandboxbeapclone", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageSandboxClone.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone", + "target": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_inboxmessageusesnativebeappbeapqbeapsplit", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageSandboxClone.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone", + "target": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_sandbox_clone_inbox_lead_in", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageSandboxClone.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone", + "target": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_sandboxcloneuimeta", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageSandboxClone.ts", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone", + "target": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_shortenid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageSandboxClone.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone", + "target": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_stringhintssandboxclone", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageSandboxClone.ts", + "source_location": "L190", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone", + "target": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_stripsandboxcloneleadinfrombodytext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageSandboxClone.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone", + "target": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_trygetcloneblockfrompackagejson", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageSandboxClone.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone", + "target": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_tryparsejson", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageSandboxClone.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone", + "target": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_walkvalue", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageSandboxClone.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageSandboxClone.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxmessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageSandboxClone.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_inboxmessageissandboxbeapclone", + "target": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_stringhintssandboxclone", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageSandboxClone.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_tryparsejson", + "target": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_stringhintssandboxclone", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageSandboxClone.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_walkvalue", + "target": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_stringhintssandboxclone", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageSandboxClone.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_tryparsejson", + "target": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_walkvalue", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageSandboxClone.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_inboxmessageissandboxbeapclone", + "target": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_tryparsejson", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageSandboxClone.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_inboxmessageusesnativebeappbeapqbeapsplit", + "target": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_inboxmessageissandboxbeapclone", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageSandboxClone.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_extractsandboxcloneuimeta", + "target": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_shortenid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxMessageSandboxClone.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_extractsandboxcloneuimeta", + "target": "apps_electron_vite_project_src_lib_inboxmessagesandboxclone_trygetcloneblockfrompackagejson", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxSessionArtefact.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxsessionartefact", + "target": "apps_electron_vite_project_src_lib_inboxsessionartefact_artefacttosessionrefs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxSessionArtefact.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxsessionartefact", + "target": "apps_electron_vite_project_src_lib_inboxsessionartefact_canshowinboxrunautomation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxSessionArtefact.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxsessionartefact", + "target": "apps_electron_vite_project_src_lib_inboxsessionartefact_capabilitiesforsessionattach", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxSessionArtefact.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxsessionartefact", + "target": "apps_electron_vite_project_src_lib_inboxsessionartefact_decodepbeapcapsuleobject", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxSessionArtefact.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxsessionartefact", + "target": "apps_electron_vite_project_src_lib_inboxsessionartefact_inboxsessionartefactresolution", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxSessionArtefact.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxsessionartefact", + "target": "apps_electron_vite_project_src_lib_inboxsessionartefact_inboxvalidationstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxSessionArtefact.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxsessionartefact", + "target": "apps_electron_vite_project_src_lib_inboxsessionartefact_issessionautomationvalidationeligible", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxSessionArtefact.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxsessionartefact", + "target": "apps_electron_vite_project_src_lib_inboxsessionartefact_parsejsonobject", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxSessionArtefact.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxsessionartefact", + "target": "apps_electron_vite_project_src_lib_inboxsessionartefact_readartefactfromobject", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxSessionArtefact.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxsessionartefact", + "target": "apps_electron_vite_project_src_lib_inboxsessionartefact_resolveinboxsessionartefact", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxSessionArtefact.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxsessionartefact", + "target": "apps_electron_vite_project_src_lib_inboxsessionartefact_sessionimportrequestedaction", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxSessionArtefact.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxsessionartefact", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxSessionArtefact.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxsessionartefact", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxSessionArtefact.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxsessionartefact", + "target": "apps_electron_vite_project_src_utils_validationstate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxSessionArtefact.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxsessionartefact", + "target": "apps_electron_vite_project_src_utils_validationstate_getvalidationstate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxSessionArtefact.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxsessionartefact", + "target": "apps_electron_vite_project_src_utils_validationstate_validationstate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/runBeapSessionAutomation.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_runbeapsessionautomation", + "target": "apps_electron_vite_project_src_lib_inboxsessionartefact", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxSessionArtefact.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxsessionartefact_decodepbeapcapsuleobject", + "target": "apps_electron_vite_project_src_lib_inboxsessionartefact_parsejsonobject", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxSessionArtefact.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxsessionartefact_resolveinboxsessionartefact", + "target": "apps_electron_vite_project_src_lib_inboxsessionartefact_parsejsonobject", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxSessionArtefact.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxsessionartefact_resolveinboxsessionartefact", + "target": "apps_electron_vite_project_src_lib_inboxsessionartefact_decodepbeapcapsuleobject", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxSessionArtefact.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxsessionartefact_resolveinboxsessionartefact", + "target": "apps_electron_vite_project_src_lib_inboxsessionartefact_readartefactfromobject", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxSessionArtefact.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxsessionartefact_resolveinboxsessionartefact", + "target": "apps_electron_vite_project_src_lib_inboxsessionartefact_artefacttosessionrefs", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/runBeapSessionAutomation.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_runbeapsessionautomation", + "target": "apps_electron_vite_project_src_lib_inboxsessionartefact_resolveinboxsessionartefact", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/runBeapSessionAutomation.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_runbeapsessionautomation_runbeapsessionautomationformessage", + "target": "apps_electron_vite_project_src_lib_inboxsessionartefact_resolveinboxsessionartefact" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxSessionArtefact.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxsessionartefact_canshowinboxrunautomation", + "target": "apps_electron_vite_project_src_lib_inboxsessionartefact_issessionautomationvalidationeligible", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/inboxSessionArtefact.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxsessionartefact_issessionautomationvalidationeligible", + "target": "apps_electron_vite_project_src_utils_validationstate_getvalidationstate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/inboxSessionArtefact.ts", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxsessionartefact_inboxvalidationstate", + "target": "apps_electron_vite_project_src_utils_validationstate_getvalidationstate" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxSessionReviewOpen.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxsessionreviewopen_test", + "target": "apps_electron_vite_project_src_lib_inboxsessionreviewopen", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxSessionReviewOpen.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxsessionreviewopen_test", + "target": "apps_electron_vite_project_src_lib_inboxsessionreviewopen_workflowfilterfromsessionreviewrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxSessionReviewOpen.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxsessionreviewopen", + "target": "apps_electron_vite_project_src_lib_inboxsessionreviewopen_sessionreviewmessagerow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxSessionReviewOpen.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxsessionreviewopen", + "target": "apps_electron_vite_project_src_lib_inboxsessionreviewopen_workflowfilterfromsessionreviewrow", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxSessionReviewOpen.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxsessionreviewopen", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxSessionReviewOpen.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxsessionreviewopen", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxfilter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxSortSourceWeighting.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxsortsourceweighting", + "target": "apps_electron_vite_project_src_lib_inboxsortsourceweighting_formatsourceweightingforprompt", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxSortSourceWeighting.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxsortsourceweighting", + "target": "apps_electron_vite_project_src_lib_inboxsortsourceweighting_sortsourceweighting", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inboxSortSourceWeighting.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inboxsortsourceweighting", + "target": "apps_electron_vite_project_src_lib_inboxsortsourceweighting_sortsourceweightingfrommessagerow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_accountkeyfromsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L213", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_clearorchestratorinferenceselection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L749", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_clearpersistedhostaiinferenceselection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L738", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_clearwrchatinferenceselection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L242", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_definitivep2psessionfailurecode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L484", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_emptynonhostrowfields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L276", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_findhostinferencetargetforhandshakeandid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_inferenceselectionkind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_inferenceselectionsource", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_inferkindfromid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L300", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_ishostinferencetargetdefinitivelyinvalidforrestore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L295", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_ishostinferencetargetpendingforrestore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L386", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_ishostinternalselectionstalefororchestratorui", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_legacy_orch_model_key", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_legacyorchscopedkey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_legacywrscoped", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L201", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_migrateunscopedorchhost", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L469", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_orchestratordiaghostrowfields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L224", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_orchestratorhostinferencetargetsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L449", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_orchestratorselectiondiagnostics", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L440", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_orchestratorselectionvalidatereason", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L375", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_orchestratoruihostlistrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_orchv1key", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_parsejson", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_persistorchestratormodelid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L719", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_persistwrchatmodelid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_readorchestratorinferenceselection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L670", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_readwrchatinferenceselection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L263", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_resolvehosthandshakeidfrominferenceselection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_selection_v", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_stampaccount", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_storedinferenceselectionv1", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_tostoredselection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L435", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_validateselectionresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L465", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_validateselectionresultwithdiagnostics", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L651", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_validatestoredselectionfororchestrator", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L499", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_validatestoredselectionfororchestratorwithdiagnostics", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L774", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_validatestoredselectionforwrchat", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L766", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_wrhostish", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_wrv1key", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L217", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_clearorchestratorinferenceselection", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_legacyorchscopedkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L137", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_persistorchestratormodelid", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_legacyorchscopedkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L153", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_readorchestratorinferenceselection", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_legacyorchscopedkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L742", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_clearwrchatinferenceselection", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_legacywrscoped", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L732", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_persistwrchatmodelid", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_legacywrscoped", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L678", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_readwrchatinferenceselection", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_legacywrscoped", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L214", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_clearorchestratorinferenceselection", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_accountkeyfromsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L739", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_clearwrchatinferenceselection", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_accountkeyfromsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_orchv1key", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_accountkeyfromsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L137", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_persistorchestratormodelid", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_accountkeyfromsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L732", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_persistwrchatmodelid", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_accountkeyfromsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L144", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_readorchestratorinferenceselection", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_accountkeyfromsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L671", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_readwrchatinferenceselection", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_accountkeyfromsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_stampaccount", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_accountkeyfromsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L506", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_validatestoredselectionfororchestratorwithdiagnostics", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_accountkeyfromsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L779", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_validatestoredselectionforwrchat", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_accountkeyfromsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_wrv1key", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_accountkeyfromsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L216", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_clearorchestratorinferenceselection", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_orchv1key", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_persistorchestratormodelid", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_orchv1key", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_readorchestratorinferenceselection", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_orchv1key", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L741", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_clearwrchatinferenceselection", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_wrv1key", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L731", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_persistwrchatmodelid", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_wrv1key", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L673", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_readwrchatinferenceselection", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_wrv1key", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L204", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_migrateunscopedorchhost", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_stampaccount", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L134", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_persistorchestratormodelid", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_stampaccount", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L729", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_persistwrchatmodelid", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_stampaccount", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L185", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_readorchestratorinferenceselection", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_stampaccount", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L683", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_readwrchatinferenceselection", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_stampaccount", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_tostoredselection", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_stampaccount", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_readorchestratorinferenceselection", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_parsejson", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L673", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_readwrchatinferenceselection", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_parsejson", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_tostoredselection", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_inferkindfromid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_persistorchestratormodelid", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_tostoredselection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L728", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_persistwrchatmodelid", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_tostoredselection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L166", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_readorchestratorinferenceselection", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_tostoredselection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_persistorchestratormodelid", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_clearorchestratorinferenceselection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L751", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_clearpersistedhostaiinferenceselection", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_readorchestratorinferenceselection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L156", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_readorchestratorinferenceselection", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_migrateunscopedorchhost", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L752", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_clearpersistedhostaiinferenceselection", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_clearorchestratorinferenceselection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L337", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_ishostinferencetargetdefinitivelyinvalidforrestore", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_definitivep2psessionfailurecode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L519", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_validatestoredselectionfororchestratorwithdiagnostics", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_resolvehosthandshakeidfrominferenceselection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L399", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_ishostinternalselectionstalefororchestratorui", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_findhostinferencetargetforhandshakeandid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L536", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_validatestoredselectionfororchestratorwithdiagnostics", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_findhostinferencetargetforhandshakeandid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L402", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_ishostinternalselectionstalefororchestratorui", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_ishostinferencetargetpendingforrestore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L580", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_validatestoredselectionfororchestratorwithdiagnostics", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_ishostinferencetargetpendingforrestore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L556", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_validatestoredselectionfororchestratorwithdiagnostics", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_ishostinferencetargetdefinitivelyinvalidforrestore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L537", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_validatestoredselectionfororchestratorwithdiagnostics", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_orchestratordiaghostrowfields", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L658", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_validatestoredselectionfororchestrator", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_validatestoredselectionfororchestratorwithdiagnostics", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L758", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_clearpersistedhostaiinferenceselection", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_readwrchatinferenceselection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L725", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_persistwrchatmodelid", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_clearwrchatinferenceselection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts", + "source_location": "L759", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_clearpersistedhostaiinferenceselection", + "target": "apps_electron_vite_project_src_lib_inferenceselectionpersistence_clearwrchatinferenceselection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceTargetRefreshLog.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferencetargetrefreshlog", + "target": "apps_electron_vite_project_src_lib_inferencetargetrefreshlog_countmergedmodellist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceTargetRefreshLog.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferencetargetrefreshlog", + "target": "apps_electron_vite_project_src_lib_inferencetargetrefreshlog_countwrchatmerged", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceTargetRefreshLog.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferencetargetrefreshlog", + "target": "apps_electron_vite_project_src_lib_inferencetargetrefreshlog_inferencetargetrefreshreason", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceTargetRefreshLog.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferencetargetrefreshlog", + "target": "apps_electron_vite_project_src_lib_inferencetargetrefreshlog_loginferencetargetrefresh", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceTargetRefreshLog.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferencetargetrefreshlog", + "target": "apps_electron_vite_project_src_lib_inferencetargetrefreshlog_loginferencetargetrefreshfromload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceTargetRefreshLog.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferencetargetrefreshlog", + "target": "apps_electron_vite_project_src_lib_inferencetargetrefreshlog_loginferencetargetrefreshreason", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceTargetRefreshLog.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferencetargetrefreshlog", + "target": "apps_electron_vite_project_src_lib_inferencetargetrefreshlog_loginferencetargetrefreshresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceTargetRefreshLog.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferencetargetrefreshlog", + "target": "apps_electron_vite_project_src_lib_inferencetargetrefreshlog_loginferencetargetrefreshstart", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/refreshHostInferenceTargets.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_refreshhostinferencetargets", + "target": "apps_electron_vite_project_src_lib_inferencetargetrefreshlog", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/selectorModelListFromHostDiscovery.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_selectormodellistfromhostdiscovery", + "target": "apps_electron_vite_project_src_lib_inferencetargetrefreshlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/refreshHostInferenceTargets.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_refreshhostinferencetargets", + "target": "apps_electron_vite_project_src_lib_inferencetargetrefreshlog_inferencetargetrefreshreason", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/selectorModelListFromHostDiscovery.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_selectormodellistfromhostdiscovery", + "target": "apps_electron_vite_project_src_lib_inferencetargetrefreshlog_inferencetargetrefreshreason", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceTargetRefreshLog.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferencetargetrefreshlog_loginferencetargetrefreshfromload", + "target": "apps_electron_vite_project_src_lib_inferencetargetrefreshlog_loginferencetargetrefresh", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/refreshHostInferenceTargets.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_refreshhostinferencetargets", + "target": "apps_electron_vite_project_src_lib_inferencetargetrefreshlog_loginferencetargetrefreshstart", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/refreshHostInferenceTargets.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_refreshhostinferencetargets_refreshhostinferencetargets", + "target": "apps_electron_vite_project_src_lib_inferencetargetrefreshlog_loginferencetargetrefreshstart" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceTargetTypes.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferencetargettypes", + "target": "apps_electron_vite_project_src_lib_inferencetargettypes_displaypairingid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceTargetTypes.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferencetargettypes", + "target": "apps_electron_vite_project_src_lib_inferencetargettypes_hostinferencelistavailability", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceTargetTypes.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferencetargettypes", + "target": "apps_electron_vite_project_src_lib_inferencetargettypes_inferencetarget", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/inferenceTargetTypes.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_inferencetargettypes", + "target": "apps_electron_vite_project_src_lib_inferencetargettypes_ollamainferencetargetid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/ingestAiContextFiles.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_ingestaicontextfiles", + "target": "apps_electron_vite_project_src_lib_ingestaicontextfiles_arraybuffertobase64", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/ingestAiContextFiles.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_ingestaicontextfiles", + "target": "apps_electron_vite_project_src_lib_ingestaicontextfiles_context_pdf_attachment_id", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/ingestAiContextFiles.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_ingestaicontextfiles", + "target": "apps_electron_vite_project_src_lib_ingestaicontextfiles_ingestaicontextfiles", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/ingestAiContextFiles.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_ingestaicontextfiles", + "target": "apps_electron_vite_project_src_stores_useaidraftcontextstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/ingestAiContextFiles.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_ingestaicontextfiles", + "target": "apps_electron_vite_project_src_stores_useaidraftcontextstore_useaidraftcontextstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/ingestAiContextFiles.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_ingestaicontextfiles_ingestaicontextfiles", + "target": "apps_electron_vite_project_src_lib_ingestaicontextfiles_arraybuffertobase64", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/letterTemplateMultiVersion.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_lettertemplatemultiversion", + "target": "apps_electron_vite_project_src_lib_lettertemplatemultiversion_lettertemplatefilledhtml", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/letterTemplateMultiVersion.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_lettertemplatemultiversion", + "target": "apps_electron_vite_project_src_lib_lettertemplatemultiversion_parseletterfilljson", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/letterTemplateMultiVersion.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_lettertemplatemultiversion", + "target": "apps_electron_vite_project_src_lib_lettertemplatemultiversion_wantslettertemplatemultiversion", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/modelSelectorHostRefreshVisibility.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility", + "target": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility_computeshowhostinferencerefresh", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/modelSelectorHostRefreshVisibility.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility", + "target": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility_discoveryhashostinternalrows", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/modelSelectorHostRefreshVisibility.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility", + "target": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility_handshakelocalroleforlog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/modelSelectorHostRefreshVisibility.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility", + "target": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility_handshakelocalroleformodelselectorlog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/modelSelectorHostRefreshVisibility.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility", + "target": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility_hosttargetlike", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/modelSelectorHostRefreshVisibility.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility", + "target": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility_logmodelselectorshowrefresh", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/modelSelectorHostRefreshVisibility.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility", + "target": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility_selectorrowlike", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/orchestratorModeVsHandshake.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_orchestratormodevshandshake", + "target": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/orchestratorModeVsHandshake.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_orchestratormodevshandshake", + "target": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility_handshakelocalroleforlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/orchestratorModeVsHandshake.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_orchestratormodevshandshake", + "target": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility_handshakelocalroleformodelselectorlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/orchestratorModeVsHandshake.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_orchestratormodevshandshake_handshakeroleformodemismatch", + "target": "apps_electron_vite_project_src_lib_modelselectorhostrefreshvisibility_handshakelocalroleformodelselectorlog" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/modelSelectorMerge.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_modelselectormerge", + "target": "apps_electron_vite_project_src_lib_modelselectormerge_maphosttargetstogavmodelentries", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/modelSelectorMerge.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_modelselectormerge", + "target": "apps_electron_vite_project_src_lib_modelselectormerge_ordermodelslocalhostcloud", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/selectorModelListFromHostDiscovery.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_selectormodellistfromhostdiscovery", + "target": "apps_electron_vite_project_src_lib_modelselectormerge", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/selectorModelListFromHostDiscovery.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_selectormodellistfromhostdiscovery", + "target": "apps_electron_vite_project_src_lib_modelselectormerge_ordermodelslocalhostcloud", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/selectorModelListFromHostDiscovery.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_selectormodellistfromhostdiscovery_fetchselectormodellistfromhostdiscovery", + "target": "apps_electron_vite_project_src_lib_modelselectormerge_ordermodelslocalhostcloud" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/selectorModelListFromHostDiscovery.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_selectormodellistfromhostdiscovery", + "target": "apps_electron_vite_project_src_lib_modelselectormerge_maphosttargetstogavmodelentries", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/selectorModelListFromHostDiscovery.ts", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_selectormodellistfromhostdiscovery_fetchselectormodellistfromhostdiscovery", + "target": "apps_electron_vite_project_src_lib_modelselectormerge_maphosttargetstogavmodelentries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/modelSelectorTargetsLog.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_modelselectortargetslog", + "target": "apps_electron_vite_project_src_lib_modelselectortargetslog_logmodelselectortargets", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/modelSelectorTargetsLog.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_modelselectortargetslog", + "target": "apps_electron_vite_project_src_lib_modelselectortargetslog_modelselectorsurface", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/modelSelectorTargetsLog.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_modelselectortargetslog", + "target": "apps_electron_vite_project_src_lib_modelselectortargetslog_scrubvalue", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/modelSelectorTargetsLog.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_modelselectortargetslog_logmodelselectortargets", + "target": "apps_electron_vite_project_src_lib_modelselectortargetslog_scrubvalue", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/openAppExternalUrl.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_openappexternalurl", + "target": "apps_electron_vite_project_src_lib_openappexternalurl_openappexternalurl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/openSessionDisplayGridsFromDashboard.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_opensessiondisplaygridsfromdashboard", + "target": "apps_electron_vite_project_src_lib_opensessiondisplaygridsfromdashboard_opensessiondisplaygridsfromdashboard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/openSessionDisplayGridsFromDashboard.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_opensessiondisplaygridsfromdashboard", + "target": "apps_electron_vite_project_src_lib_opensessiondisplaygridsfromdashboard_sessiongridpresentsource", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/openSessionDisplayGridsFromDashboard.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_opensessiondisplaygridsfromdashboard", + "target": "apps_electron_vite_project_src_lib_orchestratorsessionclient", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/openSessionDisplayGridsFromDashboard.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_opensessiondisplaygridsfromdashboard", + "target": "apps_electron_vite_project_src_lib_orchestratorsessionclient_fetchorchestratorsession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/openSessionDisplayGridsFromDashboard.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_opensessiondisplaygridsfromdashboard", + "target": "apps_electron_vite_project_src_lib_orchestratorsessionclient_orchestratorsessionjson", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/openSessionDisplayGridsFromDashboard.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_opensessiondisplaygridsfromdashboard", + "target": "apps_electron_vite_project_src_lib_wrdeskuievents", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/openSessionDisplayGridsFromDashboard.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_opensessiondisplaygridsfromdashboard", + "target": "apps_electron_vite_project_src_lib_wrdeskuievents_wrdesk_optimization_guard_toast", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator", + "target": "apps_electron_vite_project_src_lib_opensessiondisplaygridsfromdashboard", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/openSessionDisplayGridsFromDashboard.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_opensessiondisplaygridsfromdashboard_opensessiondisplaygridsfromdashboard", + "target": "apps_electron_vite_project_src_lib_orchestratorsessionclient_fetchorchestratorsession" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator", + "target": "apps_electron_vite_project_src_lib_opensessiondisplaygridsfromdashboard_opensessiondisplaygridsfromdashboard", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L232", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator_executeoptimizationrun", + "target": "apps_electron_vite_project_src_lib_opensessiondisplaygridsfromdashboard_opensessiondisplaygridsfromdashboard" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationAgentBoxModel.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationagentboxmodel", + "target": "apps_electron_vite_project_src_lib_optimizationagentboxmodel_logoptimizationagentboxsend", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationAgentBoxModel.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationagentboxmodel", + "target": "apps_electron_vite_project_src_lib_optimizationagentboxmodel_optimization_agent_default_model", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationAgentBoxModel.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationagentboxmodel", + "target": "apps_electron_vite_project_src_lib_optimizationagentboxmodel_optimizationdashboardagentboxsetaiexecutioncontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationAgentBoxModel.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationagentboxmodel", + "target": "apps_electron_vite_project_src_lib_optimizationagentboxmodel_resolveoptimizationagentinference", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationAgentBoxModel.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationagentboxmodel", + "target": "apps_electron_vite_project_src_types_optimizationtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationAgentBoxModel.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationagentboxmodel", + "target": "apps_electron_vite_project_src_types_optimizationtypes_agententry", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationAgentBoxModel.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationagentboxmodel", + "target": "apps_extension_chromium_src_services_processflow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationAgentBoxModel.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationagentboxmodel", + "target": "apps_extension_chromium_src_services_processflow_agentboxinferencedebuglog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationAgentBoxModel.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationagentboxmodel", + "target": "apps_extension_chromium_src_services_processflow_resolveagentboxinference", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationAgentRunner.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationagentrunner", + "target": "apps_electron_vite_project_src_lib_optimizationagentboxmodel", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationChainRunner.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationchainrunner", + "target": "apps_electron_vite_project_src_lib_optimizationagentboxmodel", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator", + "target": "apps_electron_vite_project_src_lib_optimizationagentboxmodel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator", + "target": "apps_electron_vite_project_src_lib_optimizationagentboxmodel_optimization_agent_default_model", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/optimizationAgentBoxModel.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationagentboxmodel_resolveoptimizationagentinference", + "target": "apps_extension_chromium_src_services_processflow_resolveagentboxinference" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationAgentRunner.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationagentrunner", + "target": "apps_electron_vite_project_src_lib_optimizationagentboxmodel_resolveoptimizationagentinference", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/optimizationAgentRunner.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationagentrunner_runagentsparallel", + "target": "apps_electron_vite_project_src_lib_optimizationagentboxmodel_resolveoptimizationagentinference" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationChainRunner.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationchainrunner", + "target": "apps_electron_vite_project_src_lib_optimizationagentboxmodel_resolveoptimizationagentinference", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/optimizationChainRunner.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationchainrunner_runagentssequential", + "target": "apps_electron_vite_project_src_lib_optimizationagentboxmodel_resolveoptimizationagentinference" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationAgentRunner.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationagentrunner", + "target": "apps_electron_vite_project_src_lib_optimizationagentboxmodel_optimizationdashboardagentboxsetaiexecutioncontext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/optimizationAgentRunner.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationagentrunner_runagentsparallel", + "target": "apps_electron_vite_project_src_lib_optimizationagentboxmodel_optimizationdashboardagentboxsetaiexecutioncontext" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationChainRunner.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationchainrunner", + "target": "apps_electron_vite_project_src_lib_optimizationagentboxmodel_optimizationdashboardagentboxsetaiexecutioncontext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/optimizationChainRunner.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationchainrunner_runagentssequential", + "target": "apps_electron_vite_project_src_lib_optimizationagentboxmodel_optimizationdashboardagentboxsetaiexecutioncontext" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/optimizationAgentBoxModel.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationagentboxmodel_logoptimizationagentboxsend", + "target": "apps_extension_chromium_src_services_processflow_agentboxinferencedebuglog" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationAgentRunner.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationagentrunner", + "target": "apps_electron_vite_project_src_lib_optimizationagentboxmodel_logoptimizationagentboxsend", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/optimizationAgentRunner.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationagentrunner_runagentsparallel", + "target": "apps_electron_vite_project_src_lib_optimizationagentboxmodel_logoptimizationagentboxsend" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationChainRunner.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationchainrunner", + "target": "apps_electron_vite_project_src_lib_optimizationagentboxmodel_logoptimizationagentboxsend", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/optimizationChainRunner.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationchainrunner_runagentssequential", + "target": "apps_electron_vite_project_src_lib_optimizationagentboxmodel_logoptimizationagentboxsend" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationAgentRunner.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationagentrunner", + "target": "apps_electron_vite_project_src_lib_optimizationagentrunner_chunkagents", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationAgentRunner.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationagentrunner", + "target": "apps_electron_vite_project_src_lib_optimizationagentrunner_runagentsparallel", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationAgentRunner.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationagentrunner", + "target": "apps_electron_vite_project_src_lib_optimizationpromptbuilder", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationAgentRunner.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationagentrunner", + "target": "apps_electron_vite_project_src_lib_optimizationpromptbuilder_buildmessagesforagent", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationAgentRunner.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationagentrunner", + "target": "apps_electron_vite_project_src_types_optimizationtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationAgentRunner.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationagentrunner", + "target": "apps_electron_vite_project_src_types_optimizationtypes_agententry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationAgentRunner.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationagentrunner", + "target": "apps_electron_vite_project_src_types_optimizationtypes_agentrunresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationAgentRunner.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationagentrunner", + "target": "apps_electron_vite_project_src_types_optimizationtypes_llmsendfn", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationAgentRunner.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationagentrunner", + "target": "apps_electron_vite_project_src_types_optimizationtypes_optimizationcontext", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator", + "target": "apps_electron_vite_project_src_lib_optimizationagentrunner", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationAgentRunner.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationagentrunner_runagentsparallel", + "target": "apps_electron_vite_project_src_lib_optimizationagentrunner_chunkagents", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/optimizationAgentRunner.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationagentrunner_runagentsparallel", + "target": "apps_electron_vite_project_src_lib_optimizationpromptbuilder_buildmessagesforagent" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator", + "target": "apps_electron_vite_project_src_lib_optimizationagentrunner_runagentsparallel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L413", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator_executeoptimizationrun", + "target": "apps_electron_vite_project_src_lib_optimizationagentrunner_runagentsparallel" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationChainRunner.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationchainrunner", + "target": "apps_electron_vite_project_src_lib_optimizationchainrunner_runagentssequential", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationChainRunner.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationchainrunner", + "target": "apps_electron_vite_project_src_lib_optimizationchainrunner_summarizeagentoutput", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationChainRunner.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationchainrunner", + "target": "apps_electron_vite_project_src_lib_optimizationpromptbuilder", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationChainRunner.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationchainrunner", + "target": "apps_electron_vite_project_src_lib_optimizationpromptbuilder_buildmessagesforagent", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationChainRunner.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationchainrunner", + "target": "apps_electron_vite_project_src_types_optimizationtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationChainRunner.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationchainrunner", + "target": "apps_electron_vite_project_src_types_optimizationtypes_agententry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationChainRunner.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationchainrunner", + "target": "apps_electron_vite_project_src_types_optimizationtypes_agentoutputentry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationChainRunner.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationchainrunner", + "target": "apps_electron_vite_project_src_types_optimizationtypes_agentrunresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationChainRunner.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationchainrunner", + "target": "apps_electron_vite_project_src_types_optimizationtypes_llmsendfn", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationChainRunner.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationchainrunner", + "target": "apps_electron_vite_project_src_types_optimizationtypes_optimizationcontext", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator", + "target": "apps_electron_vite_project_src_lib_optimizationchainrunner", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationChainRunner.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationchainrunner_runagentssequential", + "target": "apps_electron_vite_project_src_lib_optimizationchainrunner_summarizeagentoutput", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/optimizationChainRunner.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationchainrunner_runagentssequential", + "target": "apps_electron_vite_project_src_lib_optimizationpromptbuilder_buildmessagesforagent" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator", + "target": "apps_electron_vite_project_src_lib_optimizationchainrunner_runagentssequential", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L411", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator_executeoptimizationrun", + "target": "apps_electron_vite_project_src_lib_optimizationchainrunner_runagentssequential" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationcontextassembler", + "target": "apps_electron_vite_project_src_lib_optimizationcontextassembler_assembleoptimizationcontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationcontextassembler", + "target": "apps_electron_vite_project_src_lib_optimizationcontextassembler_assembleoptimizationcontextparams", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationcontextassembler", + "target": "apps_electron_vite_project_src_lib_optimizationcontextassembler_attachmentsfromproject", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationcontextassembler", + "target": "apps_electron_vite_project_src_lib_optimizationcontextassembler_clonectx", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationcontextassembler", + "target": "apps_electron_vite_project_src_lib_optimizationcontextassembler_estimatecontexttokens", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationcontextassembler", + "target": "apps_electron_vite_project_src_lib_optimizationcontextassembler_estimatetokens", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationcontextassembler", + "target": "apps_electron_vite_project_src_lib_optimizationcontextassembler_mapprojecttosection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L220", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationcontextassembler", + "target": "apps_electron_vite_project_src_lib_optimizationcontextassembler_trimagentexistingboxoutputs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L242", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationcontextassembler", + "target": "apps_electron_vite_project_src_lib_optimizationcontextassembler_trimagentsystemprompts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationcontextassembler", + "target": "apps_electron_vite_project_src_lib_optimizationcontextassembler_trimattachments", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L144", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationcontextassembler", + "target": "apps_electron_vite_project_src_lib_optimizationcontextassembler_trimdomslots", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L212", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationcontextassembler", + "target": "apps_electron_vite_project_src_lib_optimizationcontextassembler_trimmilestonescompleted", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationcontextassembler", + "target": "apps_electron_vite_project_src_lib_optimizationcontextassembler_trimprioroutputs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationcontextassembler", + "target": "apps_electron_vite_project_src_lib_optimizationcontextassembler_trimtotokenbudget", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationcontextassembler", + "target": "apps_electron_vite_project_src_lib_optimizationcontextassembler_trimusermessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationcontextassembler", + "target": "apps_electron_vite_project_src_lib_optimizationcontextassembler_truncatestr", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationcontextassembler", + "target": "apps_electron_vite_project_src_types_optimizationtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationcontextassembler", + "target": "apps_electron_vite_project_src_types_optimizationtypes_agentoutputentry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationcontextassembler", + "target": "apps_electron_vite_project_src_types_optimizationtypes_attachmentssection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationcontextassembler", + "target": "apps_electron_vite_project_src_types_optimizationtypes_domsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationcontextassembler", + "target": "apps_electron_vite_project_src_types_optimizationtypes_optimizationcontext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationcontextassembler", + "target": "apps_electron_vite_project_src_types_optimizationtypes_optimizationsource", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationcontextassembler", + "target": "apps_electron_vite_project_src_types_optimizationtypes_projectsection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationcontextassembler", + "target": "apps_electron_vite_project_src_types_optimizationtypes_sessionsection", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationcontextassembler", + "target": "apps_electron_vite_project_src_types_projecttypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationcontextassembler", + "target": "apps_electron_vite_project_src_types_projecttypes_project", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator", + "target": "apps_electron_vite_project_src_lib_optimizationcontextassembler", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationcontextassembler_assembleoptimizationcontext", + "target": "apps_electron_vite_project_src_lib_optimizationcontextassembler_mapprojecttosection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator", + "target": "apps_electron_vite_project_src_lib_optimizationcontextassembler_attachmentsfromproject", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L397", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator_executeoptimizationrun", + "target": "apps_electron_vite_project_src_lib_optimizationcontextassembler_attachmentsfromproject" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator", + "target": "apps_electron_vite_project_src_lib_optimizationcontextassembler_assembleoptimizationcontext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L393", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator_executeoptimizationrun", + "target": "apps_electron_vite_project_src_lib_optimizationcontextassembler_assembleoptimizationcontext" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationcontextassembler_estimatecontexttokens", + "target": "apps_electron_vite_project_src_lib_optimizationcontextassembler_estimatetokens", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationcontextassembler_trimtotokenbudget", + "target": "apps_electron_vite_project_src_lib_optimizationcontextassembler_estimatecontexttokens", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationcontextassembler_trimtotokenbudget", + "target": "apps_electron_vite_project_src_lib_optimizationcontextassembler_clonectx", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L237", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationcontextassembler_trimagentexistingboxoutputs", + "target": "apps_electron_vite_project_src_lib_optimizationcontextassembler_truncatestr", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L258", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationcontextassembler_trimagentsystemprompts", + "target": "apps_electron_vite_project_src_lib_optimizationcontextassembler_truncatestr", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationcontextassembler_trimattachments", + "target": "apps_electron_vite_project_src_lib_optimizationcontextassembler_truncatestr", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L186", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationcontextassembler_trimprioroutputs", + "target": "apps_electron_vite_project_src_lib_optimizationcontextassembler_truncatestr", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationcontextassembler_trimusermessage", + "target": "apps_electron_vite_project_src_lib_optimizationcontextassembler_truncatestr", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationcontextassembler_trimtotokenbudget", + "target": "apps_electron_vite_project_src_lib_optimizationcontextassembler_trimagentexistingboxoutputs", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationcontextassembler_trimtotokenbudget", + "target": "apps_electron_vite_project_src_lib_optimizationcontextassembler_trimagentsystemprompts", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationcontextassembler_trimtotokenbudget", + "target": "apps_electron_vite_project_src_lib_optimizationcontextassembler_trimattachments", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationcontextassembler_trimtotokenbudget", + "target": "apps_electron_vite_project_src_lib_optimizationcontextassembler_trimdomslots", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationcontextassembler_trimtotokenbudget", + "target": "apps_electron_vite_project_src_lib_optimizationcontextassembler_trimmilestonescompleted", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationcontextassembler_trimtotokenbudget", + "target": "apps_electron_vite_project_src_lib_optimizationcontextassembler_trimprioroutputs", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationcontextassembler_trimtotokenbudget", + "target": "apps_electron_vite_project_src_lib_optimizationcontextassembler_trimusermessage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator", + "target": "apps_electron_vite_project_src_lib_optimizationcontextassembler_trimtotokenbudget", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L402", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator_executeoptimizationrun", + "target": "apps_electron_vite_project_src_lib_optimizationcontextassembler_trimtotokenbudget" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationLlmAdapter.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationllmadapter", + "target": "apps_electron_vite_project_src_lib_optimizationllmadapter_createoptimizationllmsend", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationLlmAdapter.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationllmadapter", + "target": "apps_electron_vite_project_src_lib_optimizationllmadapter_defaultdashboardllmheaders", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationLlmAdapter.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationllmadapter", + "target": "apps_electron_vite_project_src_lib_optimizationllmadapter_optimizationllmadapteroptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationLlmAdapter.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationllmadapter", + "target": "apps_electron_vite_project_src_lib_optimizationllmadapter_readcloudapikeyfromlocalstorage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationLlmAdapter.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationllmadapter", + "target": "apps_electron_vite_project_src_types_optimizationtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationLlmAdapter.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationllmadapter", + "target": "apps_electron_vite_project_src_types_optimizationtypes_llmsendfn", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator", + "target": "apps_electron_vite_project_src_lib_optimizationllmadapter", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/orchestratorSessionClient.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_orchestratorsessionclient_fetchorchestratorsession", + "target": "apps_electron_vite_project_src_lib_optimizationllmadapter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationLlmAdapter.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationllmadapter_createoptimizationllmsend", + "target": "apps_electron_vite_project_src_lib_optimizationllmadapter_readcloudapikeyfromlocalstorage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator", + "target": "apps_electron_vite_project_src_lib_optimizationllmadapter_createoptimizationllmsend", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L405", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator_executeoptimizationrun", + "target": "apps_electron_vite_project_src_lib_optimizationllmadapter_createoptimizationllmsend" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationPromptBuilder.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationpromptbuilder", + "target": "apps_electron_vite_project_src_lib_optimizationpromptbuilder_activemilestonetitle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationPromptBuilder.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationpromptbuilder", + "target": "apps_electron_vite_project_src_lib_optimizationpromptbuilder_buildmessagesforagent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationPromptBuilder.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationpromptbuilder", + "target": "apps_electron_vite_project_src_lib_optimizationpromptbuilder_formatdomblock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationPromptBuilder.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationpromptbuilder", + "target": "apps_electron_vite_project_src_lib_optimizationpromptbuilder_formatmilestonesforadvisor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationPromptBuilder.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationpromptbuilder", + "target": "apps_electron_vite_project_src_lib_optimizationpromptbuilder_formatpriorsummaries", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationPromptBuilder.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationpromptbuilder", + "target": "apps_electron_vite_project_src_lib_optimizationpromptbuilder_formatreferencedocuments", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationPromptBuilder.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationpromptbuilder", + "target": "apps_electron_vite_project_src_types_optimizationtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationPromptBuilder.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationpromptbuilder", + "target": "apps_electron_vite_project_src_types_optimizationtypes_agententry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationPromptBuilder.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationpromptbuilder", + "target": "apps_electron_vite_project_src_types_optimizationtypes_optimizationcontext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationPromptBuilder.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationpromptbuilder_buildmessagesforagent", + "target": "apps_electron_vite_project_src_lib_optimizationpromptbuilder_formatmilestonesforadvisor", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationPromptBuilder.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationpromptbuilder_buildmessagesforagent", + "target": "apps_electron_vite_project_src_lib_optimizationpromptbuilder_formatdomblock", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationPromptBuilder.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationpromptbuilder_buildmessagesforagent", + "target": "apps_electron_vite_project_src_lib_optimizationpromptbuilder_formatreferencedocuments", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationPromptBuilder.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationpromptbuilder_buildmessagesforagent", + "target": "apps_electron_vite_project_src_lib_optimizationpromptbuilder_formatpriorsummaries", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationPromptBuilder.ts", + "source_location": "L134", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationpromptbuilder_buildmessagesforagent", + "target": "apps_electron_vite_project_src_lib_optimizationpromptbuilder_activemilestonetitle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator", + "target": "apps_electron_vite_project_src_lib_optimizationruncoordinator_buildagententries", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L188", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator", + "target": "apps_electron_vite_project_src_lib_optimizationruncoordinator_executeoptimizationrun", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator", + "target": "apps_electron_vite_project_src_lib_optimizationruncoordinator_formatsidebarchatfromsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator", + "target": "apps_electron_vite_project_src_lib_optimizationruncoordinator_logstep", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator", + "target": "apps_electron_vite_project_src_lib_optimizationruncoordinator_looseagent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator", + "target": "apps_electron_vite_project_src_lib_optimizationruncoordinator_orderagentssequential", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator", + "target": "apps_electron_vite_project_src_lib_optimizationruncoordinator_shouldrunsequential", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator", + "target": "apps_electron_vite_project_src_lib_optimizationruncoordinator_triggertooptimizationsource", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L172", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator", + "target": "apps_electron_vite_project_src_lib_optimizationruncoordinator_trydomsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator", + "target": "apps_electron_vite_project_src_lib_orchestratorsessionclient", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator", + "target": "apps_electron_vite_project_src_lib_orchestratorsessionclient_fetchorchestratorsession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator", + "target": "apps_electron_vite_project_src_lib_orchestratorsessionclient_orchestratorsessionjson", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator", + "target": "apps_electron_vite_project_src_lib_wrdeskuievents", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator", + "target": "apps_electron_vite_project_src_lib_wrdeskuievents_wrdesk_auto_optim_activate_sessions", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator", + "target": "apps_electron_vite_project_src_lib_wrdeskuievents_wrdesk_optimization_guard_toast", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator", + "target": "apps_electron_vite_project_src_lib_wrdeskuievents_wrdesk_optimization_run_results", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator", + "target": "apps_electron_vite_project_src_types_optimizationtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator", + "target": "apps_electron_vite_project_src_types_optimizationtypes_agententry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator", + "target": "apps_electron_vite_project_src_types_optimizationtypes_agentrunresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator", + "target": "apps_electron_vite_project_src_types_optimizationtypes_domsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator", + "target": "apps_electron_vite_project_src_types_optimizationtypes_optimizationcontext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator", + "target": "apps_electron_vite_project_src_types_optimizationtypes_optimizationrunresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator", + "target": "apps_electron_vite_project_src_types_optimizationtypes_optimizationsource", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator", + "target": "apps_electron_vite_project_src_types_optimizationtypes_sessionsection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator", + "target": "apps_electron_vite_project_src_types_optimizationtypes_triggersource", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator", + "target": "apps_electron_vite_project_src_types_projecttypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator", + "target": "apps_electron_vite_project_src_types_projecttypes_project", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator", + "target": "apps_extension_chromium_src_services_processflow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator", + "target": "apps_extension_chromium_src_services_processflow_updateagentboxoutput", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L196", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator_executeoptimizationrun", + "target": "apps_electron_vite_project_src_lib_optimizationruncoordinator_logstep", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L193", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator_executeoptimizationrun", + "target": "apps_electron_vite_project_src_lib_optimizationruncoordinator_triggertooptimizationsource", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L392", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator_executeoptimizationrun", + "target": "apps_electron_vite_project_src_lib_optimizationruncoordinator_formatsidebarchatfromsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L351", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator_executeoptimizationrun", + "target": "apps_electron_vite_project_src_lib_optimizationruncoordinator_buildagententries", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L356", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator_executeoptimizationrun", + "target": "apps_electron_vite_project_src_lib_optimizationruncoordinator_shouldrunsequential", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L358", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator_executeoptimizationrun", + "target": "apps_electron_vite_project_src_lib_optimizationruncoordinator_orderagentssequential", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L327", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator_executeoptimizationrun", + "target": "apps_electron_vite_project_src_lib_optimizationruncoordinator_trydomsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L178", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator_trydomsnapshot", + "target": "apps_extension_chromium_src_services_domsnapshotbridge", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L214", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator_executeoptimizationrun", + "target": "apps_electron_vite_project_src_lib_orchestratorsessionclient_fetchorchestratorsession" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L364", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator_executeoptimizationrun", + "target": "apps_extension_chromium_src_services_processflow_updateagentboxoutput" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L271", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator_executeoptimizationrun", + "target": "apps_extension_chromium_src_services_sessionactivationforoptimization", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts", + "source_location": "L306", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_optimizationruncoordinator_executeoptimizationrun", + "target": "apps_extension_chromium_src_stores_chatfocusstore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/orchestratorModeVsHandshake.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_orchestratormodevshandshake", + "target": "apps_electron_vite_project_src_lib_orchestratormodevshandshake_getorchestratormodevshandshakeinfo", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/orchestratorModeVsHandshake.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_orchestratormodevshandshake", + "target": "apps_electron_vite_project_src_lib_orchestratormodevshandshake_handshakeroleformodemismatch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/orchestratorModeVsHandshake.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_orchestratormodevshandshake", + "target": "apps_electron_vite_project_src_lib_orchestratormodevshandshake_logorchestratormodevshandshakemismatch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/orchestratorModeVsHandshake.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_orchestratormodevshandshake", + "target": "apps_electron_vite_project_src_lib_orchestratormodevshandshake_modehandshakemismatchinfo", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/orchestratorSessionClient.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_orchestratorsessionclient", + "target": "apps_electron_vite_project_src_lib_orchestratorsessionclient_fetchorchestratorsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/orchestratorSessionClient.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_orchestratorsessionclient", + "target": "apps_electron_vite_project_src_lib_orchestratorsessionclient_fetchorchestratorsessionresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/orchestratorSessionClient.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_orchestratorsessionclient", + "target": "apps_electron_vite_project_src_lib_orchestratorsessionclient_orchestratorsessionjson", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/projectAssistantAiFieldContracts.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_projectassistantaifieldcontracts_test", + "target": "apps_electron_vite_project_src_lib_projectassistantaifieldcontracts", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/projectAssistantAiFieldContracts.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_projectassistantaifieldcontracts_test", + "target": "apps_electron_vite_project_src_lib_projectassistantaifieldcontracts_project_assistant_data_field_ids", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/projectAssistantAiFieldContracts.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_projectassistantaifieldcontracts_test", + "target": "apps_electron_vite_project_src_lib_projectassistantaifieldcontracts_projectassistantdatafieldselector", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/projectAssistantAiFieldContracts.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_projectassistantaifieldcontracts_test", + "target": "apps_electron_vite_project_src_lib_projectassistantaifieldcontracts_projectassistantmilestoneselector", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/projectAssistantAiFieldContracts.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_projectassistantaifieldcontracts_test", + "target": "apps_electron_vite_project_src_lib_wrdeskuievents", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/projectAssistantAiFieldContracts.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_projectassistantaifieldcontracts_test", + "target": "apps_electron_vite_project_src_lib_wrdeskuievents_wrdesk_focus_ai_chat_event", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/projectAssistantAiFieldContracts.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_projectassistantaifieldcontracts", + "target": "apps_electron_vite_project_src_lib_projectassistantaifieldcontracts_devassertprojectassistantaidomhook", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/projectAssistantAiFieldContracts.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_projectassistantaifieldcontracts", + "target": "apps_electron_vite_project_src_lib_projectassistantaifieldcontracts_project_assistant_data_field_ids", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/projectAssistantAiFieldContracts.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_projectassistantaifieldcontracts", + "target": "apps_electron_vite_project_src_lib_projectassistantaifieldcontracts_projectassistantdatafieldid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/projectAssistantAiFieldContracts.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_projectassistantaifieldcontracts", + "target": "apps_electron_vite_project_src_lib_projectassistantaifieldcontracts_projectassistantdatafieldselector", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/projectAssistantAiFieldContracts.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_projectassistantaifieldcontracts", + "target": "apps_electron_vite_project_src_lib_projectassistantaifieldcontracts_projectassistantmilestoneselector", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/projectAssistantAiFieldContracts.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_projectassistantaifieldcontracts_devassertprojectassistantaidomhook", + "target": "apps_electron_vite_project_src_lib_projectassistantaifieldcontracts_projectassistantdatafieldselector", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/projectAssistantAiFieldContracts.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_projectassistantaifieldcontracts_devassertprojectassistantaidomhook", + "target": "apps_electron_vite_project_src_lib_projectassistantaifieldcontracts_projectassistantmilestoneselector", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/refreshHostInferenceTargets.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_refreshhostinferencetargets", + "target": "apps_electron_vite_project_src_lib_refreshhostinferencetargets_hostinferenceruncontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/refreshHostInferenceTargets.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_refreshhostinferencetargets", + "target": "apps_electron_vite_project_src_lib_refreshhostinferencetargets_refreshhostinferencetargets", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/refreshHostInferenceTargets.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_refreshhostinferencetargets", + "target": "apps_electron_vite_project_src_lib_refreshhostinferencetargets_refreshhostinferencetargetsargs", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/refreshHostInferenceTargets.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_refreshhostinferencetargets_refreshhostinferencetargets", + "target": "apps_electron_vite_project_src_lib_refreshhostinferencetargets_hostinferenceruncontext" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/refreshOrchestratorSessions.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_refreshorchestratorsessions", + "target": "apps_electron_vite_project_src_lib_refreshorchestratorsessions_maprow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/refreshOrchestratorSessions.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_refreshorchestratorsessions", + "target": "apps_electron_vite_project_src_lib_refreshorchestratorsessions_picksessionisodate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/refreshOrchestratorSessions.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_refreshorchestratorsessions", + "target": "apps_electron_vite_project_src_lib_refreshorchestratorsessions_refreshorchestratorsessionsfrombridge", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/refreshOrchestratorSessions.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_refreshorchestratorsessions", + "target": "apps_electron_vite_project_src_stores_useprojectstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/refreshOrchestratorSessions.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_refreshorchestratorsessions", + "target": "apps_electron_vite_project_src_stores_useprojectstore_useprojectstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/refreshOrchestratorSessions.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_refreshorchestratorsessions", + "target": "apps_electron_vite_project_src_types_projecttypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/refreshOrchestratorSessions.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_refreshorchestratorsessions", + "target": "apps_electron_vite_project_src_types_projecttypes_orchestratorsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/refreshOrchestratorSessions.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_refreshorchestratorsessions_maprow", + "target": "apps_electron_vite_project_src_lib_refreshorchestratorsessions_picksessionisodate", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/electron-vite-project/src/lib/refreshOrchestratorSessions.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_refreshorchestratorsessions_refreshorchestratorsessionsfrombridge", + "target": "apps_electron_vite_project_src_lib_refreshorchestratorsessions_maprow", + "confidence_score": 0.5 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/resolveActiveSandboxCloneTargets.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_resolveactivesandboxclonetargets", + "target": "apps_electron_vite_project_src_lib_resolveactivesandboxclonetargets_resolveactivesandboxclonetargets", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/resolveActiveSandboxCloneTargets.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_resolveactivesandboxclonetargets", + "target": "apps_electron_vite_project_src_lib_resolveactivesandboxclonetargets_resolveactivesandboxclonetargetsresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/runBeapSessionAutomation.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_runbeapsessionautomation", + "target": "apps_electron_vite_project_src_lib_runbeapsessionautomation_mapautomationerror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/runBeapSessionAutomation.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_runbeapsessionautomation", + "target": "apps_electron_vite_project_src_lib_runbeapsessionautomation_runbeapsessionautomationformessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/runBeapSessionAutomation.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_runbeapsessionautomation", + "target": "apps_electron_vite_project_src_lib_runbeapsessionautomation_runbeapsessionautomationresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/runBeapSessionAutomation.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_runbeapsessionautomation", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/runBeapSessionAutomation.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_runbeapsessionautomation", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxmessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/runBeapSessionAutomation.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_runbeapsessionautomation_runbeapsessionautomationformessage", + "target": "apps_electron_vite_project_src_lib_runbeapsessionautomation_mapautomationerror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/sandboxCloneFeedbackUi.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_sandbox_clone_copy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/sandboxCloneFeedbackUi.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_sandbox_upgrade_url_fallback", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/sandboxCloneFeedbackUi.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_sandboxclonefeedbackvariant", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/sandboxCloneFeedbackUi.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_sandboxclonefeedbackview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/sandboxCloneFeedbackUi.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_viewsandboxchecking", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/sandboxCloneFeedbackUi.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_viewsandboxcloning", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/sandboxCloneFeedbackUi.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_viewsandboxentitlementrequired", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/sandboxCloneFeedbackUi.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_viewsandboxidentityincomplete", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/sandboxCloneFeedbackUi.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_viewsandboxkeyingincomplete", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/sandboxCloneFeedbackUi.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_viewsandboxlistloadfailed", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/sandboxCloneFeedbackUi.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui", + "target": "apps_electron_vite_project_src_lib_sandboxclonefeedbackui_viewsandboxnoorchestrator", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/selectorModelListFromHostDiscovery.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_selectormodellistfromhostdiscovery", + "target": "apps_electron_vite_project_src_lib_selectormodellistfromhostdiscovery_fetchselectormodellistfromhostdiscovery", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/selectorModelListFromHostDiscovery.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_selectormodellistfromhostdiscovery", + "target": "apps_electron_vite_project_src_lib_selectormodellistfromhostdiscovery_fetchselectormodellistresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/selectorModelListFromHostDiscovery.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_selectormodellistfromhostdiscovery", + "target": "apps_electron_vite_project_src_lib_selectormodellistfromhostdiscovery_hostrowmeta", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/selectorModelListFromHostDiscovery.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_selectormodellistfromhostdiscovery", + "target": "apps_electron_vite_project_src_lib_selectormodellistfromhostdiscovery_selectoravailablemodel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/selectorModelListFromHostDiscovery.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_selectormodellistfromhostdiscovery", + "target": "apps_electron_vite_project_src_lib_selectormodellistfromhostdiscovery_wrchatmodeloptionsfromselectormodels", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/useAnalysisDashboardSnapshot.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_useanalysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_lib_useanalysisdashboardsnapshot_useanalysisdashboardsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/useAnalysisDashboardSnapshot.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_useanalysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/useAnalysisDashboardSnapshot.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_useanalysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/wrChatDashboardBootstrap.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_wrchatdashboardbootstrap", + "target": "apps_electron_vite_project_src_lib_wrchatdashboardbootstrap_ensureorchestratorsessionfordashboard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/wrChatDashboardBootstrap.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_wrchatdashboardbootstrap", + "target": "apps_electron_vite_project_src_lib_wrchatdashboardbootstrap_pickmostrecentsessionkey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/wrChatDashboardBootstrap.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_wrchatdashboardbootstrap", + "target": "apps_electron_vite_project_src_lib_wrchatdashboardbootstrap_sendgetallsessions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/wrChatDashboardBootstrap.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_wrchatdashboardbootstrap", + "target": "apps_electron_vite_project_src_lib_wrchatdashboardbootstrap_sessionsresponse", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/wrChatDashboardBootstrap.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_wrchatdashboardbootstrap", + "target": "apps_electron_vite_project_src_lib_wrchatdashboardlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/wrChatDashboardBootstrap.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_wrchatdashboardbootstrap", + "target": "apps_electron_vite_project_src_lib_wrchatdashboardlog_wrchatdashboarddebug", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/wrChatDashboardBootstrap.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_wrchatdashboardbootstrap", + "target": "apps_electron_vite_project_src_lib_wrchatdashboardlog_wrchatdashboardwarn", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/wrChatDashboardBootstrap.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_wrchatdashboardbootstrap_ensureorchestratorsessionfordashboard", + "target": "apps_electron_vite_project_src_lib_wrchatdashboardbootstrap_sendgetallsessions", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/wrChatDashboardBootstrap.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_wrchatdashboardbootstrap_ensureorchestratorsessionfordashboard", + "target": "apps_electron_vite_project_src_lib_wrchatdashboardbootstrap_pickmostrecentsessionkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/wrChatDashboardBootstrap.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_wrchatdashboardbootstrap_ensureorchestratorsessionfordashboard", + "target": "apps_electron_vite_project_src_lib_wrchatdashboardlog_wrchatdashboarddebug" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/lib/wrChatDashboardBootstrap.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_wrchatdashboardbootstrap_ensureorchestratorsessionfordashboard", + "target": "apps_electron_vite_project_src_lib_wrchatdashboardlog_wrchatdashboardwarn" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/wrChatDashboardConstants.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_wrchatdashboardconstants", + "target": "apps_electron_vite_project_src_lib_wrchatdashboardconstants_wr_chat_dashboard_transcript_key", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/wrChatDashboardLog.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_wrchatdashboardlog", + "target": "apps_electron_vite_project_src_lib_wrchatdashboardlog_wrchatdashboarddebug", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/wrChatDashboardLog.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_wrchatdashboardlog", + "target": "apps_electron_vite_project_src_lib_wrchatdashboardlog_wrchatdashboardwarn", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardChrome.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardchrome", + "target": "apps_electron_vite_project_src_lib_wrchatdashboardlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardChrome.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardchrome", + "target": "apps_electron_vite_project_src_lib_wrchatdashboardlog_wrchatdashboardwarn", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardChrome.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardchrome_getauthheaders", + "target": "apps_electron_vite_project_src_lib_wrchatdashboardlog_wrchatdashboardwarn", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/wrChatDashboardSpeechContext.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_wrchatdashboardspeechcontext", + "target": "apps_electron_vite_project_src_lib_wrchatdashboardspeechcontext_cleardashboardwrchatspeechopenmeta", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/wrChatDashboardSpeechContext.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_wrchatdashboardspeechcontext", + "target": "apps_electron_vite_project_src_lib_wrchatdashboardspeechcontext_dashboardmodekeyfromtriggerfunctionid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/wrChatDashboardSpeechContext.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_wrchatdashboardspeechcontext", + "target": "apps_electron_vite_project_src_lib_wrchatdashboardspeechcontext_dashboardwrchatspeechopenmeta", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/wrChatDashboardSpeechContext.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_wrchatdashboardspeechcontext", + "target": "apps_electron_vite_project_src_lib_wrchatdashboardspeechcontext_peekdashboardwrchatspeechopenmeta", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/wrChatDashboardSpeechContext.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_wrchatdashboardspeechcontext", + "target": "apps_electron_vite_project_src_lib_wrchatdashboardspeechcontext_recorddashboardwrchatspeechiconopen", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/wrChatDashboardSpeechContext.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_wrchatdashboardspeechcontext", + "target": "apps_extension_chromium_src_types_triggertypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/wrChatDashboardSpeechContext.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_wrchatdashboardspeechcontext", + "target": "apps_extension_chromium_src_types_triggertypes_triggerfunctionid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/wrChatRuntimeMode.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_wrchatruntimemode", + "target": "apps_electron_vite_project_src_lib_wrchatruntimemode_getwrchatruntimesurface", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/wrChatRuntimeMode.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_wrchatruntimemode", + "target": "apps_electron_vite_project_src_lib_wrchatruntimemode_iswrchatdashboardsurface", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/wrChatRuntimeMode.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_wrchatruntimemode", + "target": "apps_electron_vite_project_src_lib_wrchatruntimemode_setwrchatruntimesurface", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/wrChatRuntimeMode.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_wrchatruntimemode", + "target": "apps_electron_vite_project_src_lib_wrchatruntimemode_wrchatruntimesurface", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/wrDeskOptimizerHttpBridge.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_wrdeskoptimizerhttpbridge", + "target": "apps_electron_vite_project_src_lib_wrdeskoptimizerhttpbridge_bridgeapi", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/wrDeskOptimizerHttpBridge.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_wrdeskoptimizerhttpbridge", + "target": "apps_electron_vite_project_src_lib_wrdeskoptimizerhttpbridge_bridgefail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/wrDeskOptimizerHttpBridge.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_wrdeskoptimizerhttpbridge", + "target": "apps_electron_vite_project_src_lib_wrdeskoptimizerhttpbridge_bridgeoksnapshot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/wrDeskOptimizerHttpBridge.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_wrdeskoptimizerhttpbridge", + "target": "apps_electron_vite_project_src_lib_wrdeskoptimizerhttpbridge_haslinkedsessionids", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/wrDeskOptimizerHttpBridge.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_wrdeskoptimizerhttpbridge", + "target": "apps_electron_vite_project_src_lib_wrdeskoptimizerhttpbridge_registerwrdeskoptimizerhttpbridge", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/wrDeskOptimizerHttpBridge.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_wrdeskoptimizerhttpbridge", + "target": "apps_electron_vite_project_src_stores_useprojectstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/wrDeskOptimizerHttpBridge.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_wrdeskoptimizerhttpbridge", + "target": "apps_electron_vite_project_src_stores_useprojectstore_useprojectstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/wrDeskOptimizerHttpBridge.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_wrdeskoptimizerhttpbridge", + "target": "apps_electron_vite_project_src_types_optimizationtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/wrDeskOptimizerHttpBridge.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_wrdeskoptimizerhttpbridge", + "target": "apps_electron_vite_project_src_types_optimizationtypes_guardfailcode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/wrdeskUiEvents.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_wrdeskuievents", + "target": "apps_electron_vite_project_src_lib_wrdeskuievents_wrdesk_auto_optim_activate_sessions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/wrdeskUiEvents.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_wrdeskuievents", + "target": "apps_electron_vite_project_src_lib_wrdeskuievents_wrdesk_focus_ai_chat_event", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/wrdeskUiEvents.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_wrdeskuievents", + "target": "apps_electron_vite_project_src_lib_wrdeskuievents_wrdesk_optimization_guard_toast", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/wrdeskUiEvents.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_wrdeskuievents", + "target": "apps_electron_vite_project_src_lib_wrdeskuievents_wrdesk_optimization_run_results", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/wrdeskUiEvents.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_wrdeskuievents", + "target": "apps_electron_vite_project_src_lib_wrdeskuievents_wrdeskautooptimactivatedetail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/wrdeskUiEvents.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_wrdeskuievents", + "target": "apps_electron_vite_project_src_lib_wrdeskuievents_wrdeskoptimizationrunresultsdetail", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/wrdeskUiEvents.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_wrdeskuievents", + "target": "apps_electron_vite_project_src_types_optimizationtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/lib/wrdeskUiEvents.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_lib_wrdeskuievents", + "target": "apps_electron_vite_project_src_types_optimizationtypes_agentrunresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/__tests__/handshakeRpc.acceptX25519.shim.regression.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_tests_handshakerpc_acceptx25519_shim_regression_test", + "target": "apps_electron_vite_project_src_shims_handshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/__tests__/handshakeRpc.acceptX25519.shim.regression.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_tests_handshakerpc_acceptx25519_shim_regression_test", + "target": "apps_electron_vite_project_src_shims_handshakerpc_accepthandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/audit.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_audit", + "target": "apps_electron_vite_project_src_shims_audit_archivebutton", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/audit.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_audit", + "target": "apps_electron_vite_project_src_shims_audit_archivemessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/audit.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_audit", + "target": "apps_electron_vite_project_src_shims_audit_audittrailpanel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/audit.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_audit", + "target": "apps_electron_vite_project_src_shims_audit_buildproofbundle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/audit.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_audit", + "target": "apps_electron_vite_project_src_shims_audit_checkarchiveeligibility", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/audit.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_audit", + "target": "apps_electron_vite_project_src_shims_audit_downloadauditlog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/audit.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_audit", + "target": "apps_electron_vite_project_src_shims_audit_downloadproofbundle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/audit.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_audit", + "target": "apps_electron_vite_project_src_shims_audit_exportauditlog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/audit.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_audit", + "target": "apps_electron_vite_project_src_shims_audit_exportrejectedproof", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/audit.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_audit", + "target": "apps_electron_vite_project_src_shims_audit_getarchiverecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/audit.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_audit", + "target": "apps_electron_vite_project_src_shims_audit_isarchived", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/audit.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_audit", + "target": "apps_electron_vite_project_src_shims_audit_logarchiveevent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/audit.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_audit", + "target": "apps_electron_vite_project_src_shims_audit_logdeliveryevent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/audit.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_audit", + "target": "apps_electron_vite_project_src_shims_audit_logdispatchevent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/audit.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_audit", + "target": "apps_electron_vite_project_src_shims_audit_logexportevent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/audit.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_audit", + "target": "apps_electron_vite_project_src_shims_audit_logimportevent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/audit.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_audit", + "target": "apps_electron_vite_project_src_shims_audit_logreconstructionevent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/audit.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_audit", + "target": "apps_electron_vite_project_src_shims_audit_logverificationevent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/audit.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_audit", + "target": "apps_electron_vite_project_src_shims_audit_storearchiverecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/audit.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_audit", + "target": "apps_electron_vite_project_src_shims_audit_useauditchain", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/audit.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_audit", + "target": "apps_electron_vite_project_src_shims_audit_useauditevents", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/audit.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_audit", + "target": "apps_electron_vite_project_src_shims_audit_useauditstore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/envelope-evaluation.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_envelope_evaluation", + "target": "apps_electron_vite_project_src_shims_envelope_evaluation_createmockincomingmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/envelope-evaluation.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_envelope_evaluation", + "target": "apps_electron_vite_project_src_shims_envelope_evaluation_evaluateincomingmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/envelope-evaluation.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_envelope_evaluation", + "target": "apps_electron_vite_project_src_shims_envelope_evaluation_useverifymessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L240", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_handshakerpc", + "target": "apps_electron_vite_project_src_shims_handshakerpc_accepthandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L430", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_handshakerpc", + "target": "apps_electron_vite_project_src_shims_handshakerpc_ackpendingp2pbeap", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L452", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_handshakerpc", + "target": "apps_electron_vite_project_src_shims_handshakerpc_ackpendingplainemail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L203", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_handshakerpc", + "target": "apps_electron_vite_project_src_shims_handshakerpc_beapdevicepublickeyresultshape", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_handshakerpc", + "target": "apps_electron_vite_project_src_shims_handshakerpc_buildhandshakefordownload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L476", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_handshakerpc", + "target": "apps_electron_vite_project_src_shims_handshakerpc_checkhandshakesendready", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L205", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_handshakerpc", + "target": "apps_electron_vite_project_src_shims_handshakerpc_classifybeapgetdevicepublickeyresultshape", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L409", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_handshakerpc", + "target": "apps_electron_vite_project_src_shims_handshakerpc_deletehandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L190", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_handshakerpc", + "target": "apps_electron_vite_project_src_shims_handshakerpc_extractdevicepublickeyb64", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L137", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_handshakerpc", + "target": "apps_electron_vite_project_src_shims_handshakerpc_gethandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L421", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_handshakerpc", + "target": "apps_electron_vite_project_src_shims_handshakerpc_getpendingp2pbeapmessages", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L443", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_handshakerpc", + "target": "apps_electron_vite_project_src_shims_handshakerpc_getpendingplainemails", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_handshakerpc", + "target": "apps_electron_vite_project_src_shims_handshakerpc_initiatehandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_handshakerpc", + "target": "apps_electron_vite_project_src_shims_handshakerpc_ledgerparty", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_handshakerpc", + "target": "apps_electron_vite_project_src_shims_handshakerpc_listhandshakes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L219", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_handshakerpc", + "target": "apps_electron_vite_project_src_shims_handshakerpc_lognormalacceptx25519shimfailure", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_handshakerpc", + "target": "apps_electron_vite_project_src_shims_handshakerpc_mapledgerhandshaketorpc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L414", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_handshakerpc", + "target": "apps_electron_vite_project_src_shims_handshakerpc_pendingp2pbeapentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L435", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_handshakerpc", + "target": "apps_electron_vite_project_src_shims_handshakerpc_pendingplainemailentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L397", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_handshakerpc", + "target": "apps_electron_vite_project_src_shims_handshakerpc_refreshhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L405", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_handshakerpc", + "target": "apps_electron_vite_project_src_shims_handshakerpc_revokehandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L458", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_handshakerpc", + "target": "apps_electron_vite_project_src_shims_handshakerpc_sendbeapviap2p", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_handshakerpc", + "target": "apps_extension_chromium_src_handshake_rpctypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_handshakerpc", + "target": "apps_extension_chromium_src_handshake_rpctypes_handshakeacceptresponse", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_handshakerpc", + "target": "apps_extension_chromium_src_handshake_rpctypes_handshakebuildfordownloadresponse", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_handshakerpc", + "target": "apps_extension_chromium_src_handshake_rpctypes_handshakeinitiateresponse", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_handshakerpc", + "target": "apps_extension_chromium_src_handshake_rpctypes_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_handshakerpc", + "target": "apps_extension_chromium_src_handshake_rpctypes_handshakerefreshresponse", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_handshakerpc", + "target": "apps_extension_chromium_src_handshake_rpctypes_peerkeymaterialfrombackendrow", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L134", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_handshakerpc_listhandshakes", + "target": "apps_electron_vite_project_src_shims_handshakerpc_mapledgerhandshaketorpc", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_handshakerpc_mapledgerhandshaketorpc", + "target": "apps_extension_chromium_src_handshake_rpctypes_peerkeymaterialfrombackendrow" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L297", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_handshakerpc_accepthandshake", + "target": "apps_electron_vite_project_src_shims_handshakerpc_extractdevicepublickeyb64", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L226", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_handshakerpc_lognormalacceptx25519shimfailure", + "target": "apps_electron_vite_project_src_shims_handshakerpc_classifybeapgetdevicepublickeyresultshape", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L299", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_handshakerpc_accepthandshake", + "target": "apps_electron_vite_project_src_shims_handshakerpc_lognormalacceptx25519shimfailure", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/handshakeRpc.ts", + "source_location": "L334", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_handshakerpc_accepthandshake", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/hsContextProfilesRpc.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_hscontextprofilesrpc", + "target": "apps_electron_vite_project_src_shims_hscontextprofilesrpc_createhsprofile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/hsContextProfilesRpc.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_hscontextprofilesrpc", + "target": "apps_electron_vite_project_src_shims_hscontextprofilesrpc_deletehsprofile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/hsContextProfilesRpc.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_hscontextprofilesrpc", + "target": "apps_electron_vite_project_src_shims_hscontextprofilesrpc_gethsprofile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/hsContextProfilesRpc.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_hscontextprofilesrpc", + "target": "apps_electron_vite_project_src_shims_hscontextprofilesrpc_hscontextprofilesummary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/hsContextProfilesRpc.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_hscontextprofilesrpc", + "target": "apps_electron_vite_project_src_shims_hscontextprofilesrpc_listhsprofiles", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/hsContextProfilesRpc.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_hscontextprofilesrpc", + "target": "apps_electron_vite_project_src_shims_hscontextprofilesrpc_updatehsprofile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/ingress.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_ingress", + "target": "apps_electron_vite_project_src_shims_ingress_importemailmodal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/ingress.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_ingress", + "target": "apps_electron_vite_project_src_shims_ingress_importfilemodal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/ingress.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_ingress", + "target": "apps_electron_vite_project_src_shims_ingress_importmessengermodal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/ingress.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_ingress", + "target": "apps_electron_vite_project_src_shims_ingress_inboximportbar", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/reconstruction.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_reconstruction", + "target": "apps_electron_vite_project_src_shims_reconstruction_canreconstruct", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/reconstruction.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_reconstruction", + "target": "apps_electron_vite_project_src_shims_reconstruction_ispdfiumsupported", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/reconstruction.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_reconstruction", + "target": "apps_electron_vite_project_src_shims_reconstruction_istikasupported", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/reconstruction.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_reconstruction", + "target": "apps_electron_vite_project_src_shims_reconstruction_pdfium_supported_types", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/reconstruction.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_reconstruction", + "target": "apps_electron_vite_project_src_shims_reconstruction_rasterpreview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/reconstruction.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_reconstruction", + "target": "apps_electron_vite_project_src_shims_reconstruction_reconstructionstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/reconstruction.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_reconstruction", + "target": "apps_electron_vite_project_src_shims_reconstruction_runreconstruction", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/reconstruction.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_reconstruction", + "target": "apps_electron_vite_project_src_shims_reconstruction_safepreviewpanel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/reconstruction.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_reconstruction", + "target": "apps_electron_vite_project_src_shims_reconstruction_semanticpreview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/reconstruction.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_reconstruction", + "target": "apps_electron_vite_project_src_shims_reconstruction_tika_supported_types", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/reconstruction.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_reconstruction", + "target": "apps_electron_vite_project_src_shims_reconstruction_useisreconstructed", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/reconstruction.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_reconstruction", + "target": "apps_electron_vite_project_src_shims_reconstruction_userasterrefs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/reconstruction.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_reconstruction", + "target": "apps_electron_vite_project_src_shims_reconstruction_usereconstruction", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/reconstruction.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_reconstruction", + "target": "apps_electron_vite_project_src_shims_reconstruction_usereconstructionstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/reconstruction.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_reconstruction", + "target": "apps_electron_vite_project_src_shims_reconstruction_usereconstructionstore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/reconstruction.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_reconstruction", + "target": "apps_electron_vite_project_src_shims_reconstruction_usesemantictext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/reconstruction.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_reconstruction", + "target": "apps_electron_vite_project_src_shims_reconstruction_validatereconstructionintegrity", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardChrome.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardchrome", + "target": "apps_electron_vite_project_src_shims_wrchatdashboardchrome_buildupdateagentboxoutputrelaydata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardChrome.ts", + "source_location": "L184", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardchrome", + "target": "apps_electron_vite_project_src_shims_wrchatdashboardchrome_clearlasterror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardChrome.ts", + "source_location": "L192", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardchrome", + "target": "apps_electron_vite_project_src_shims_wrchatdashboardchrome_ensurewrdeskchromeshim", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardChrome.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardchrome", + "target": "apps_electron_vite_project_src_shims_wrchatdashboardchrome_getauthheaders", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardChrome.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardchrome", + "target": "apps_electron_vite_project_src_shims_wrchatdashboardchrome_readsessionmirrorsfromlocalstorage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardChrome.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardchrome", + "target": "apps_electron_vite_project_src_shims_wrchatdashboardchrome_readstoragekey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardChrome.ts", + "source_location": "L188", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardchrome", + "target": "apps_electron_vite_project_src_shims_wrchatdashboardchrome_setlasterror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardChrome.ts", + "source_location": "L134", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardchrome", + "target": "apps_electron_vite_project_src_shims_wrchatdashboardchrome_writestorageitems", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardChrome.ts", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardchrome_writestorageitems", + "target": "apps_electron_vite_project_src_shims_wrchatdashboardchrome_getauthheaders", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardChrome.ts", + "source_location": "L622", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardchrome_ensurewrdeskchromeshim", + "target": "apps_electron_vite_project_src_shims_wrchatdashboardmodeinterval", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardChrome.ts", + "source_location": "L621", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardchrome_ensurewrdeskchromeshim", + "target": "apps_extension_chromium_src_services_custommodesclient", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeInterval.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardmodeinterval", + "target": "apps_electron_vite_project_src_shims_wrchatdashboardmodeinterval_clearmodetimer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeInterval.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardmodeinterval", + "target": "apps_electron_vite_project_src_shims_wrchatdashboardmodeinterval_handledashboardmodeintervaltick", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeInterval.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardmodeinterval", + "target": "apps_electron_vite_project_src_shims_wrchatdashboardmodeinterval_intervalsecondsbymodeid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeInterval.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardmodeinterval", + "target": "apps_electron_vite_project_src_shims_wrchatdashboardmodeinterval_schedulemodeintervaltimer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeInterval.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardmodeinterval", + "target": "apps_electron_vite_project_src_shims_wrchatdashboardmodeinterval_syncdashboardmodeintervalschedulers", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeInterval.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardmodeinterval", + "target": "apps_electron_vite_project_src_shims_wrchatdashboardmodeinterval_timersbymodeid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeInterval.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardmodeinterval", + "target": "apps_electron_vite_project_src_shims_wrchatdashboardmoderunbridge", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeInterval.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardmodeinterval", + "target": "apps_electron_vite_project_src_shims_wrchatdashboardmoderunbridge_handledashboardrunmodeallocatedsession", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeInterval.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardmodeinterval", + "target": "apps_extension_chromium_src_services_modeintervalrunner", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeInterval.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardmodeinterval", + "target": "apps_extension_chromium_src_services_modeintervalrunner_sync_mode_interval_schedulers_type", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeInterval.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardmodeinterval", + "target": "apps_extension_chromium_src_services_modeintervalscheduler", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeInterval.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardmodeinterval", + "target": "apps_extension_chromium_src_services_modeintervalscheduler_modeneedsintervalrun", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeInterval.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardmodeinterval", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeInterval.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardmodeinterval", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodedefinition", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeInterval.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardmodeinterval_schedulemodeintervaltimer", + "target": "apps_electron_vite_project_src_shims_wrchatdashboardmodeinterval_clearmodetimer", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeInterval.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardmodeinterval_syncdashboardmodeintervalschedulers", + "target": "apps_electron_vite_project_src_shims_wrchatdashboardmodeinterval_clearmodetimer", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeInterval.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardmodeinterval_handledashboardmodeintervaltick", + "target": "apps_electron_vite_project_src_shims_wrchatdashboardmodeinterval_schedulemodeintervaltimer", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeInterval.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardmodeinterval_syncdashboardmodeintervalschedulers", + "target": "apps_electron_vite_project_src_shims_wrchatdashboardmodeinterval_schedulemodeintervaltimer", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeInterval.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardmodeinterval_handledashboardmodeintervaltick", + "target": "apps_electron_vite_project_src_shims_wrchatdashboardmoderunbridge_handledashboardrunmodeallocatedsession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeInterval.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardmodeinterval_handledashboardmodeintervaltick", + "target": "apps_extension_chromium_src_services_modemodelwarmontrigger", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeInterval.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardmodeinterval_handledashboardmodeintervaltick", + "target": "apps_extension_chromium_src_services_modesessionrunresultreporting", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeInterval.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardmodeinterval_syncdashboardmodeintervalschedulers", + "target": "apps_extension_chromium_src_services_modeintervalscheduler_modeneedsintervalrun" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeRunBridge.ts", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardmoderunbridge", + "target": "apps_electron_vite_project_src_shims_wrchatdashboardmoderunbridge_dashboardmoderundeps", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "confidence": "INFERRED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeRunBridge.ts", + "source_location": "L195", + "weight": 1.0, + "_origin": "ast", + "context": "collection", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardmoderunbridge", + "target": "apps_electron_vite_project_src_shims_wrchatdashboardmoderunbridge_executemodesessionrundirectfordashboard", + "confidence_score": 0.5 + }, + { + "relation": "indirect_call", + "confidence": "INFERRED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeRunBridge.ts", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "context": "collection", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardmoderunbridge", + "target": "apps_electron_vite_project_src_shims_wrchatdashboardmoderunbridge_findopensessionsurfacefordashboard", + "confidence_score": 0.5 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeRunBridge.ts", + "source_location": "L207", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardmoderunbridge", + "target": "apps_electron_vite_project_src_shims_wrchatdashboardmoderunbridge_handledashboardrunmodeallocatedsession", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "confidence": "INFERRED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeRunBridge.ts", + "source_location": "L197", + "weight": 1.0, + "_origin": "ast", + "context": "collection", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardmoderunbridge", + "target": "apps_electron_vite_project_src_shims_wrchatdashboardmoderunbridge_issessionruninflight", + "confidence_score": 0.5 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeRunBridge.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardmoderunbridge", + "target": "apps_electron_vite_project_src_shims_wrchatdashboardmoderunbridge_modesessionexecuteinflight", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeRunBridge.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardmoderunbridge", + "target": "apps_electron_vite_project_src_shims_wrchatdashboardmoderunbridge_pendingmoderunsforextension", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "confidence": "INFERRED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeRunBridge.ts", + "source_location": "L201", + "weight": 1.0, + "_origin": "ast", + "context": "collection", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardmoderunbridge", + "target": "apps_electron_vite_project_src_shims_wrchatdashboardmoderunbridge_presentorchestratordisplaygridformoderun", + "confidence_score": 0.5 + }, + { + "relation": "indirect_call", + "confidence": "INFERRED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeRunBridge.ts", + "source_location": "L193", + "weight": 1.0, + "_origin": "ast", + "context": "collection", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardmoderunbridge", + "target": "apps_electron_vite_project_src_shims_wrchatdashboardmoderunbridge_registerpendingmodesessionrunfordashboard", + "confidence_score": 0.5 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeRunBridge.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardmoderunbridge", + "target": "apps_extension_chromium_src_services_modesessionruninflightexecute", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeRunBridge.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardmoderunbridge", + "target": "apps_extension_chromium_src_services_modesessionruninflightexecute_executemodesessionrunwithinflightguard", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeRunBridge.ts", + "source_location": "L253", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardmoderunbridge", + "target": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeRunBridge.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardmoderunbridge", + "target": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation_modesessionrunexecuteresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeRunBridge.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardmoderunbridge", + "target": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation_run_mode_allocated_session_type", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeRunBridge.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardmoderunbridge", + "target": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation_runmodeallocatedsessionautomationresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeRunBridge.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardmoderunbridge", + "target": "apps_extension_chromium_src_services_sessionsurfaceresolver", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeRunBridge.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardmoderunbridge", + "target": "apps_extension_chromium_src_services_sessionsurfaceresolver_sessionsurface", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeRunBridge.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardmoderunbridge", + "target": "apps_extension_chromium_src_shared_ui_custommoderuntime", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeRunBridge.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardmoderunbridge", + "target": "apps_extension_chromium_src_shared_ui_custommoderuntime_custommoderuntimeconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeRunBridge.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardmoderunbridge_executemodesessionrundirectfordashboard", + "target": "apps_extension_chromium_src_services_modesessionruninflightexecute_executemodesessionrunwithinflightguard", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeRunBridge.ts", + "source_location": "L233", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardmoderunbridge_handledashboardrunmodeallocatedsession", + "target": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/electron-vite-project/src/shims/wrChatDashboardModeRunBridge.ts", + "source_location": "L241", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_shims_wrchatdashboardmoderunbridge_handledashboardrunmodeallocatedsession", + "target": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation_runmodeallocatedsessionautomation" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useAiDraftContextStore.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useaidraftcontextstore", + "target": "apps_electron_vite_project_src_stores_useaidraftcontextstore_actions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useAiDraftContextStore.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useaidraftcontextstore", + "target": "apps_electron_vite_project_src_stores_useaidraftcontextstore_aidraftcontextdoc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useAiDraftContextStore.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useaidraftcontextstore", + "target": "apps_electron_vite_project_src_stores_useaidraftcontextstore_newid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useAiDraftContextStore.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useaidraftcontextstore", + "target": "apps_electron_vite_project_src_stores_useaidraftcontextstore_state", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useAiDraftContextStore.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useaidraftcontextstore", + "target": "apps_electron_vite_project_src_stores_useaidraftcontextstore_useaidraftcontextstore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useDraftRefineStore.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_usedraftrefinestore", + "target": "apps_electron_vite_project_src_stores_usedraftrefinestore_draftrefinestate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useDraftRefineStore.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_usedraftrefinestore", + "target": "apps_electron_vite_project_src_stores_usedraftrefinestore_draftrefinetarget", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useDraftRefineStore.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_usedraftrefinestore", + "target": "apps_electron_vite_project_src_stores_usedraftrefinestore_usedraftrefinestore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L421", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_activeemailaccountidsforsync", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_classifymainrowpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L205", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_coerceinboxworkflowfilter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L790", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_commitarchivetolocalstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L697", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_commitbulkclassifymainresultstolocalstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L786", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_commitclassifymainresulttolocalstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L557", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_commitpendingdeletetolocalstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L608", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_commitpendingreviewtolocalstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L465", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_default_filter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L813", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_derivetabcounts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L545", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_emailinboxset", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L229", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_emailinboxstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L184", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_empty_inbox_tab_counts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L826", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_fetchbulktabcountsserver", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L475", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_filterbyinboxfilter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L407", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_getbridge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L166", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inbox_workflow_filter_keys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxattachment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L155", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxfilter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L660", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxmessageafterclassifymain", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxsourcetype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxtabcounts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L454", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_listbridgeoptionsfromfilter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L445", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_listmessagesbridgeoptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L900", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_loadbulkinboxfirstpagepreservetabcounts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L851", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_loadbulkinboxsnapshotpaginated", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L950", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_loadpagedlistsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L193", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_normalizeinboxtabcounts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_notifyingestionstatusrefresh", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L396", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_pullstatsline", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L220", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_subfocus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L412", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_trackedlistmessages", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L991", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_useemailinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore", + "target": "apps_electron_vite_project_src_types_inboxai", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore", + "target": "apps_electron_vite_project_src_types_inboxai_aioutputs", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore", + "target": "apps_electron_vite_project_src_types_inboxai_normalinboxairesult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/activeEmailAccountIdsForSync.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_activeemailaccountidsforsync_test", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L845", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore_fetchbulktabcountsserver", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_normalizeinboxtabcounts", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L256", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore_emailinboxstate", + "target": "apps_electron_vite_project_src_types_inboxai_aioutputs", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L386", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore_emailinboxstate", + "target": "apps_electron_vite_project_src_types_inboxai_normalinboxairesult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L827", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore_fetchbulktabcountsserver", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_getbridge", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L909", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore_loadbulkinboxfirstpagepreservetabcounts", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_getbridge", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L860", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore_loadbulkinboxsnapshotpaginated", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_getbridge", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L956", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore_loadpagedlistsnapshot", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_getbridge", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L833", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore_fetchbulktabcountsserver", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_trackedlistmessages", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L914", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore_loadbulkinboxfirstpagepreservetabcounts", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_trackedlistmessages", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L865", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore_loadbulkinboxsnapshotpaginated", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_trackedlistmessages", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L963", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore_loadpagedlistsnapshot", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_trackedlistmessages", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/activeEmailAccountIdsForSync.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_activeemailaccountidsforsync_test", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_activeemailaccountidsforsync", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L834", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore_fetchbulktabcountsserver", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_listbridgeoptionsfromfilter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L915", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore_loadbulkinboxfirstpagepreservetabcounts", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_listbridgeoptionsfromfilter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L866", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore_loadbulkinboxsnapshotpaginated", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_listbridgeoptionsfromfilter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L964", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore_loadpagedlistsnapshot", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_listbridgeoptionsfromfilter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L726", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore_commitbulkclassifymainresultstolocalstate", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_filterbyinboxfilter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L587", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore_commitpendingdeletetolocalstate", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_filterbyinboxfilter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L639", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore_commitpendingreviewtolocalstate", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_filterbyinboxfilter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L817", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore_derivetabcounts", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_filterbyinboxfilter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L568", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore_commitpendingdeletetolocalstate", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_fetchbulktabcountsserver", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L620", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore_commitpendingreviewtolocalstate", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_fetchbulktabcountsserver", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L723", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore_commitbulkclassifymainresultstolocalstate", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_inboxmessageafterclassifymain", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L729", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore_commitbulkclassifymainresultstolocalstate", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_fetchbulktabcountsserver", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L787", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore_commitclassifymainresulttolocalstate", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_commitbulkclassifymainresultstolocalstate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L796", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore_commitarchivetolocalstate", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_fetchbulktabcountsserver", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L864", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore_loadbulkinboxsnapshotpaginated", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_fetchbulktabcountsserver", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useEmailInboxStore.ts", + "source_location": "L962", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useemailinboxstore_loadpagedlistsnapshot", + "target": "apps_electron_vite_project_src_stores_useemailinboxstore_fetchbulktabcountsserver", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_builtin_templates", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_builtinlayout", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_builtinletterfields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_builtintemplate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_builtintemplatefield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L264", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_combinedrecipientfieldtext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_companyprofile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L186", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_composesession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L656", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_createlettercomposesession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_default_company_profile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_fieldmode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_fieldtype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L634", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_findtemplatefieldforvaultapply", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L289", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_islegacyrecipientaddressfield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L282", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_islegacyrecipientnamefield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L441", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_islegacysenderaddressfield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L437", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_islegacysendernamefield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L681", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_lettercomposerstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L158", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_letterpage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_lettertemplate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L672", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_lettervaultdata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L575", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_migratecompanyprofilesenderkeys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L395", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_migratecomposesessionsrecipientfieldids", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L541", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_migratecomposesessionssenderfieldids", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L243", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_migratelettertemplatev1", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L210", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_migratetemplatefieldv1", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L304", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_migratetemplatesrecipientfields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L453", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_migratetemplatessenderfields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L274", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_recipientfieldmergemeta", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L644", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_resolvecomposesessionidfortemplate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_scannedletter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L181", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_scannedletterinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L430", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_senderfieldmergemeta", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L206", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_slugifysemanticname", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L201", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_slugifytemplatefieldname", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_templatefield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L621", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_templatefieldmatchesvaultcandidate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L296", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_templatehaslegacyrecipientfields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L445", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_templatehaslegacysenderfields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L154", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_templatesetupstep", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L773", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_uselettercomposerstore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L604", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_vault_apply_field_candidates", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L292", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore_islegacyrecipientaddressfield", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_slugifytemplatefieldname", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L285", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore_islegacyrecipientnamefield", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_slugifytemplatefieldname", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L207", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore_slugifysemanticname", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_slugifytemplatefieldname", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L625", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore_templatefieldmatchesvaultcandidate", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_slugifytemplatefieldname", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L222", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore_migratetemplatefieldv1", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_slugifysemanticname", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L248", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore_migratelettertemplatev1", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_migratetemplatefieldv1", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L587", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore_migratecompanyprofilesenderkeys", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_combinedrecipientfieldtext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L414", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore_migratecomposesessionsrecipientfieldids", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_combinedrecipientfieldtext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L560", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore_migratecomposesessionssenderfieldids", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_combinedrecipientfieldtext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L320", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore_migratetemplatesrecipientfields", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_combinedrecipientfieldtext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L469", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore_migratetemplatessenderfields", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_combinedrecipientfieldtext", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L314", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore_migratetemplatesrecipientfields", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_islegacyrecipientnamefield", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L297", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore_templatehaslegacyrecipientfields", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_islegacyrecipientnamefield", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L315", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore_migratetemplatesrecipientfields", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_islegacyrecipientaddressfield", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L297", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore_templatehaslegacyrecipientfields", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_islegacyrecipientaddressfield", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L310", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore_migratetemplatesrecipientfields", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_templatehaslegacyrecipientfields", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L463", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore_migratetemplatessenderfields", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_islegacysendernamefield", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L446", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore_templatehaslegacysenderfields", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_islegacysendernamefield", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L464", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore_migratetemplatessenderfields", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_islegacysenderaddressfield", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L446", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore_templatehaslegacysenderfields", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_islegacysenderaddressfield", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L459", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore_migratetemplatessenderfields", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_templatehaslegacysenderfields", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useLetterComposerStore.ts", + "source_location": "L638", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_uselettercomposerstore_findtemplatefieldforvaultapply", + "target": "apps_electron_vite_project_src_stores_uselettercomposerstore_templatefieldmatchesvaultcandidate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useProjectSetupChatContextStore.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useprojectsetupchatcontextstore", + "target": "apps_electron_vite_project_src_stores_useprojectsetupchatcontextstore_actions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useProjectSetupChatContextStore.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useprojectsetupchatcontextstore", + "target": "apps_electron_vite_project_src_stores_useprojectsetupchatcontextstore_activemilestonechatcontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useProjectSetupChatContextStore.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useprojectsetupchatcontextstore", + "target": "apps_electron_vite_project_src_stores_useprojectsetupchatcontextstore_initial", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useProjectSetupChatContextStore.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useprojectsetupchatcontextstore", + "target": "apps_electron_vite_project_src_stores_useprojectsetupchatcontextstore_newid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useProjectSetupChatContextStore.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useprojectsetupchatcontextstore", + "target": "apps_electron_vite_project_src_stores_useprojectsetupchatcontextstore_projectsetupchatcontextstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useProjectSetupChatContextStore.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useprojectsetupchatcontextstore", + "target": "apps_electron_vite_project_src_stores_useprojectsetupchatcontextstore_projectsetupchathasbridgeablecontent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useProjectSetupChatContextStore.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useprojectsetupchatcontextstore", + "target": "apps_electron_vite_project_src_stores_useprojectsetupchatcontextstore_projectsetupchatsnippet", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useProjectSetupChatContextStore.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useprojectsetupchatcontextstore", + "target": "apps_electron_vite_project_src_stores_useprojectsetupchatcontextstore_useprojectsetupchatcontextstore", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useProjectStore.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useprojectstore", + "target": "apps_electron_vite_project_src_stores_useprojectsetupchatcontextstore", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useProjectStore.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useprojectstore", + "target": "apps_electron_vite_project_src_stores_useprojectsetupchatcontextstore_projectsetupchatsnippet", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useProjectStore.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useprojectstore", + "target": "apps_electron_vite_project_src_stores_useprojectsetupchatcontextstore_projectsetupchatcontextstate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useProjectStore.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useprojectstore", + "target": "apps_electron_vite_project_src_stores_useprojectsetupchatcontextstore_useprojectsetupchatcontextstore", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useProjectStore.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useprojectstore", + "target": "apps_electron_vite_project_src_stores_useprojectsetupchatcontextstore_projectsetupchathasbridgeablecontent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useProjectStore.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useprojectstore", + "target": "apps_electron_vite_project_src_stores_useprojectstore_composericonsstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useProjectStore.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useprojectstore", + "target": "apps_electron_vite_project_src_stores_useprojectstore_composerid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useProjectStore.ts", + "source_location": "L486", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useprojectstore", + "target": "apps_electron_vite_project_src_stores_useprojectstore_milestonecompletionpct", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useProjectStore.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useprojectstore", + "target": "apps_electron_vite_project_src_stores_useprojectstore_notifycomposershortcutsupdated", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useProjectStore.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useprojectstore", + "target": "apps_electron_vite_project_src_stores_useprojectstore_now", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useProjectStore.ts", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useprojectstore", + "target": "apps_electron_vite_project_src_stores_useprojectstore_patchproject", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useProjectStore.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useprojectstore", + "target": "apps_electron_vite_project_src_stores_useprojectstore_projectactions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useProjectStore.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useprojectstore", + "target": "apps_electron_vite_project_src_stores_useprojectstore_projectstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useProjectStore.ts", + "source_location": "L471", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useprojectstore", + "target": "apps_electron_vite_project_src_stores_useprojectstore_selectactivemilestone", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useProjectStore.ts", + "source_location": "L461", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useprojectstore", + "target": "apps_electron_vite_project_src_stores_useprojectstore_selectactiveproject", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useProjectStore.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useprojectstore", + "target": "apps_electron_vite_project_src_stores_useprojectstore_useprojectstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useProjectStore.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useprojectstore", + "target": "apps_electron_vite_project_src_types_projecttypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useProjectStore.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useprojectstore", + "target": "apps_electron_vite_project_src_types_projecttypes_orchestratorsession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useProjectStore.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useprojectstore", + "target": "apps_electron_vite_project_src_types_projecttypes_project", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useProjectStore.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useprojectstore", + "target": "apps_electron_vite_project_src_types_projecttypes_projectattachment", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useProjectStore.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useprojectstore", + "target": "apps_electron_vite_project_src_types_projecttypes_projectmilestone", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useProjectStore.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useprojectstore", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useProjectStore.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useprojectstore", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrdesk_composer_shortcuts_updated", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useProjectStore.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useprojectstore_projectstate", + "target": "apps_electron_vite_project_src_types_projecttypes_orchestratorsession", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useProjectStore.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useprojectstore_projectstate", + "target": "apps_electron_vite_project_src_types_projecttypes_project", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useProjectStore.ts", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useprojectstore_projectactions", + "target": "apps_electron_vite_project_src_types_projecttypes_orchestratorsession", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useProjectStore.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useprojectstore_projectactions", + "target": "apps_electron_vite_project_src_types_projecttypes_project", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useProjectStore.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useprojectstore_projectactions", + "target": "apps_electron_vite_project_src_types_projecttypes_projectattachment", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useProjectStore.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useprojectstore_projectactions", + "target": "apps_electron_vite_project_src_types_projecttypes_projectmilestone", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/stores/useProjectStore.ts", + "source_location": "L475", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_stores_useprojectstore_selectactivemilestone", + "target": "apps_electron_vite_project_src_stores_useprojectstore_selectactiveproject", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/styles/uiContrastTokens.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_styles_uicontrasttokens", + "target": "apps_electron_vite_project_src_styles_uicontrasttokens_ui_badge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/styles/uiContrastTokens.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_styles_uicontrasttokens", + "target": "apps_electron_vite_project_src_styles_uicontrasttokens_ui_button", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/styles/uiContrastTokens.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_styles_uicontrasttokens", + "target": "apps_electron_vite_project_src_styles_uicontrasttokens_ui_inbox_beap_action", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/styles/uiContrastTokens.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_styles_uicontrasttokens", + "target": "apps_electron_vite_project_src_styles_uicontrasttokens_ui_inbox_beap_list_row", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/styles/uiContrastTokens.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_styles_uicontrasttokens", + "target": "apps_electron_vite_project_src_styles_uicontrasttokens_ui_inbox_message_detail_action", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/styles/uiContrastTokens.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_styles_uicontrasttokens", + "target": "apps_electron_vite_project_src_styles_uicontrasttokens_ui_tab", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/analysisDashboardSnapshot.ts", + "source_location": "L210", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_analysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardautomationmetrics", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/analysisDashboardSnapshot.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_analysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardautosortaisummary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/analysisDashboardSnapshot.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_analysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardautosortmessageref", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/analysisDashboardSnapshot.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_analysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardautosortsection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/analysisDashboardSnapshot.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_analysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardautosortsessionmeta", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/analysisDashboardSnapshot.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_analysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardcategorycount", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/analysisDashboardSnapshot.ts", + "source_location": "L294", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_analysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardhandshakecounts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/analysisDashboardSnapshot.ts", + "source_location": "L299", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_analysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardhandshakesection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/analysisDashboardSnapshot.ts", + "source_location": "L286", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_analysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardhandshakestate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/analysisDashboardSnapshot.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_analysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardinboxtabcounts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/analysisDashboardSnapshot.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_analysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardmessagekindtotals", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/analysisDashboardSnapshot.ts", + "source_location": "L139", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_analysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardpoaehistoryrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/analysisDashboardSnapshot.ts", + "source_location": "L154", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_analysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardpoaesection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/analysisDashboardSnapshot.ts", + "source_location": "L278", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_analysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardprojectsetupsection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/analysisDashboardSnapshot.ts", + "source_location": "L258", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_analysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardqueuevelocity", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/analysisDashboardSnapshot.ts", + "source_location": "L342", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_analysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/analysisDashboardSnapshot.ts", + "source_location": "L183", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_analysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardthreatmetrics", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/analysisDashboardSnapshot.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_analysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardtopsection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/analysisDashboardSnapshot.ts", + "source_location": "L238", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_analysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardtransportratio", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/analysisDashboardSnapshot.ts", + "source_location": "L401", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_analysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_analysisdashboardv1omit", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/analysisDashboardSnapshot.ts", + "source_location": "L308", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_analysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_inboxdashboardsnapshotwire", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/analysisDashboardSnapshot.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_analysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_isodatestring", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/analysisDashboardSnapshot.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_analysisdashboardsnapshot", + "target": "apps_electron_vite_project_src_types_analysisdashboardsnapshot_trustworthycount", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/beapInboxClone.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_beapinboxclone", + "target": "apps_electron_vite_project_src_types_beapinboxclone_beapinboxclonenosandboxdetails", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/beapInboxClone.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_beapinboxclone", + "target": "apps_electron_vite_project_src_types_beapinboxclone_beapinboxcloneprepareerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/beapInboxClone.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_beapinboxclone", + "target": "apps_electron_vite_project_src_types_beapinboxclone_beapinboxcloneprepareok", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/beapInboxClone.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_beapinboxclone", + "target": "apps_electron_vite_project_src_types_beapinboxclone_clonebeaptosandboxipcerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/beapInboxClone.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_beapinboxclone", + "target": "apps_electron_vite_project_src_types_beapinboxclone_clonebeaptosandboxipcresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/beapInboxClone.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_beapinboxclone", + "target": "apps_electron_vite_project_src_types_sandboxorchestratoravailability", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/beapInboxClone.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_beapinboxclone", + "target": "apps_electron_vite_project_src_types_sandboxorchestratoravailability_sandboxorchestratoravailabilitystatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/inboxAi.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_inboxai", + "target": "apps_electron_vite_project_src_types_inboxai_advisoryrecommendedaction", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/inboxAi.ts", + "source_location": "L187", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_inboxai", + "target": "apps_electron_vite_project_src_types_inboxai_aioutputs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/inboxAi.ts", + "source_location": "L151", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_inboxai", + "target": "apps_electron_vite_project_src_types_inboxai_autosortfailurereason", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/inboxAi.ts", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_inboxai", + "target": "apps_electron_vite_project_src_types_inboxai_autosortoutcomekind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/inboxAi.ts", + "source_location": "L144", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_inboxai", + "target": "apps_electron_vite_project_src_types_inboxai_autosortretainkind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/inboxAi.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_inboxai", + "target": "apps_electron_vite_project_src_types_inboxai_bulkairesult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/inboxAi.ts", + "source_location": "L161", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_inboxai", + "target": "apps_electron_vite_project_src_types_inboxai_bulkairesultentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/inboxAi.ts", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_inboxai", + "target": "apps_electron_vite_project_src_types_inboxai_bulkclassification", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/inboxAi.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_inboxai", + "target": "apps_electron_vite_project_src_types_inboxai_bulkrecommendedaction", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/inboxAi.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_inboxai", + "target": "apps_electron_vite_project_src_types_inboxai_normalinboxairesult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/inboxAi.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_inboxai", + "target": "apps_electron_vite_project_src_types_inboxai_normalinboxdraftreply", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/inboxAi.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_inboxai", + "target": "apps_electron_vite_project_src_types_inboxai_scamwatchdogresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/inboxAi.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_inboxai", + "target": "apps_electron_vite_project_src_types_inboxai_scamwatchdogstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/inboxAi.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_inboxai", + "target": "apps_electron_vite_project_src_types_inboxai_sort_categories", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/inboxAi.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_inboxai", + "target": "apps_electron_vite_project_src_types_inboxai_sortcategory", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiJson.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_parseinboxaijson", + "target": "apps_electron_vite_project_src_types_inboxai", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiJson.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_parseinboxaijson", + "target": "apps_electron_vite_project_src_types_inboxai_scamwatchdogresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiJson.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_parseinboxaijson", + "target": "apps_electron_vite_project_src_types_inboxai_normalinboxairesult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/optimizationTypes.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_optimizationtypes", + "target": "apps_electron_vite_project_src_types_optimizationtypes_agententry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/optimizationTypes.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_optimizationtypes", + "target": "apps_electron_vite_project_src_types_optimizationtypes_agentoutputentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/optimizationTypes.ts", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_optimizationtypes", + "target": "apps_electron_vite_project_src_types_optimizationtypes_agentrunresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/optimizationTypes.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_optimizationtypes", + "target": "apps_electron_vite_project_src_types_optimizationtypes_attachmentssection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/optimizationTypes.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_optimizationtypes", + "target": "apps_electron_vite_project_src_types_optimizationtypes_domslotcapture", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/optimizationTypes.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_optimizationtypes", + "target": "apps_electron_vite_project_src_types_optimizationtypes_domsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/optimizationTypes.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_optimizationtypes", + "target": "apps_electron_vite_project_src_types_optimizationtypes_guardfailcode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/optimizationTypes.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_optimizationtypes", + "target": "apps_electron_vite_project_src_types_optimizationtypes_guardfallback", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/optimizationTypes.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_optimizationtypes", + "target": "apps_electron_vite_project_src_types_optimizationtypes_guardresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/optimizationTypes.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_optimizationtypes", + "target": "apps_electron_vite_project_src_types_optimizationtypes_llmsendfn", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/optimizationTypes.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_optimizationtypes", + "target": "apps_electron_vite_project_src_types_optimizationtypes_optimizationcontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/optimizationTypes.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_optimizationtypes", + "target": "apps_electron_vite_project_src_types_optimizationtypes_optimizationrunresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/optimizationTypes.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_optimizationtypes", + "target": "apps_electron_vite_project_src_types_optimizationtypes_optimizationsource", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/optimizationTypes.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_optimizationtypes", + "target": "apps_electron_vite_project_src_types_optimizationtypes_projectsection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/optimizationTypes.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_optimizationtypes", + "target": "apps_electron_vite_project_src_types_optimizationtypes_sessionactivationfail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/optimizationTypes.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_optimizationtypes", + "target": "apps_electron_vite_project_src_types_optimizationtypes_sessionsection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/optimizationTypes.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_optimizationtypes", + "target": "apps_electron_vite_project_src_types_optimizationtypes_triggersource", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/projectTypes.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_projecttypes", + "target": "apps_electron_vite_project_src_types_projecttypes_auto_optimization_intervals", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/projectTypes.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_projecttypes", + "target": "apps_electron_vite_project_src_types_projecttypes_autooptimizationinterval", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/projectTypes.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_projecttypes", + "target": "apps_electron_vite_project_src_types_projecttypes_isodatestring", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/projectTypes.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_projecttypes", + "target": "apps_electron_vite_project_src_types_projecttypes_orchestratorsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/projectTypes.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_projecttypes", + "target": "apps_electron_vite_project_src_types_projecttypes_project", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/projectTypes.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_projecttypes", + "target": "apps_electron_vite_project_src_types_projecttypes_projectattachment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/projectTypes.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_projecttypes", + "target": "apps_electron_vite_project_src_types_projecttypes_projectmilestone", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/sandboxOrchestratorAvailability.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_sandboxorchestratoravailability", + "target": "apps_electron_vite_project_src_types_sandboxorchestratoravailability_authoritativedeviceinternalrole", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/sandboxOrchestratorAvailability.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_sandboxorchestratoravailability", + "target": "apps_electron_vite_project_src_types_sandboxorchestratoravailability_defaultsandboxavailability", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/sandboxOrchestratorAvailability.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_sandboxorchestratoravailability", + "target": "apps_electron_vite_project_src_types_sandboxorchestratoravailability_sandboxorchestratoravailability", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/types/sandboxOrchestratorAvailability.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_types_sandboxorchestratoravailability", + "target": "apps_electron_vite_project_src_types_sandboxorchestratoravailability_sandboxorchestratoravailabilitystatus", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/__tests__/validationState.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_tests_validationstate_test", + "target": "apps_electron_vite_project_src_utils_validationstate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/__tests__/validationState.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_tests_validationstate_test", + "target": "apps_electron_vite_project_src_utils_validationstate_getvalidationstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/contextBlockHash.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_contextblockhash", + "target": "apps_electron_vite_project_src_utils_contextblockhash_computeblockhashclient", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/inboxNewMessagesBackgroundRefresh.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_inboxnewmessagesbackgroundrefresh_test", + "target": "apps_electron_vite_project_src_utils_inboxnewmessagesbackgroundrefresh", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/inboxNewMessagesBackgroundRefresh.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_inboxnewmessagesbackgroundrefresh_test", + "target": "apps_electron_vite_project_src_utils_inboxnewmessagesbackgroundrefresh_subscribeinboxnewmessagesbackgroundrefresh", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/inboxNewMessagesBackgroundRefresh.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_inboxnewmessagesbackgroundrefresh", + "target": "apps_electron_vite_project_src_utils_inboxnewmessagesbackgroundrefresh_inbox_new_messages_background_debounce_ms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/inboxNewMessagesBackgroundRefresh.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_inboxnewmessagesbackgroundrefresh", + "target": "apps_electron_vite_project_src_utils_inboxnewmessagesbackgroundrefresh_subscribeinboxnewmessagesbackgroundrefresh", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/originDeleteFlow.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_origindeleteflow", + "target": "apps_electron_vite_project_src_utils_origindeleteflow_accountbyid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/originDeleteFlow.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_origindeleteflow", + "target": "apps_electron_vite_project_src_utils_origindeleteflow_confirmorigindeleteifneeded", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/originDeleteFlow.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_origindeleteflow", + "target": "apps_electron_vite_project_src_utils_origindeleteflow_marksessionconfirmed", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/originDeleteFlow.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_origindeleteflow", + "target": "apps_electron_vite_project_src_utils_origindeleteflow_messageaccountids", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/originDeleteFlow.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_origindeleteflow", + "target": "apps_electron_vite_project_src_utils_origindeleteflow_needsorigindeleteforselection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/originDeleteFlow.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_origindeleteflow", + "target": "apps_electron_vite_project_src_utils_origindeleteflow_origindeleteaccountrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/originDeleteFlow.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_origindeleteflow", + "target": "apps_electron_vite_project_src_utils_origindeleteflow_origindeleteconfirmedforselection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/originDeleteFlow.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_origindeleteflow", + "target": "apps_electron_vite_project_src_utils_origindeleteflow_sessionconfirmed", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/originDeleteFlow.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_origindeleteflow_confirmorigindeleteifneeded", + "target": "apps_electron_vite_project_src_utils_origindeleteflow_accountbyid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/originDeleteFlow.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_origindeleteflow_needsorigindeleteforselection", + "target": "apps_electron_vite_project_src_utils_origindeleteflow_accountbyid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/originDeleteFlow.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_origindeleteflow_confirmorigindeleteifneeded", + "target": "apps_electron_vite_project_src_utils_origindeleteflow_messageaccountids", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/originDeleteFlow.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_origindeleteflow_needsorigindeleteforselection", + "target": "apps_electron_vite_project_src_utils_origindeleteflow_messageaccountids", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/originDeleteFlow.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_origindeleteflow_origindeleteconfirmedforselection", + "target": "apps_electron_vite_project_src_utils_origindeleteflow_needsorigindeleteforselection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/originDeleteFlow.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_origindeleteflow_confirmorigindeleteifneeded", + "target": "apps_electron_vite_project_src_utils_origindeleteflow_sessionconfirmed", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/originDeleteFlow.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_origindeleteflow_confirmorigindeleteifneeded", + "target": "apps_electron_vite_project_src_utils_origindeleteflow_marksessionconfirmed", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiJson.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_parseinboxaijson_test", + "target": "apps_electron_vite_project_src_utils_parseinboxaijson", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiJson.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_parseinboxaijson_test", + "target": "apps_electron_vite_project_src_utils_parseinboxaijson_extractbalancedjsonobject", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiJson.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_parseinboxaijson_test", + "target": "apps_electron_vite_project_src_utils_parseinboxaijson_repairtrailingcommasinjson", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiJson.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_parseinboxaijson_test", + "target": "apps_electron_vite_project_src_utils_parseinboxaijson_tryparseanalysis", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiJson.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_parseinboxaijson_test", + "target": "apps_electron_vite_project_src_utils_parseinboxaijson_tryparseanalysiswithmeta", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiJson.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_parseinboxaijson_test", + "target": "apps_electron_vite_project_src_utils_parseinboxaijson_tryparsepartialanalysis", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiJson.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_parseinboxaijson", + "target": "apps_electron_vite_project_src_utils_parseinboxaijson_assemblescamwatchdog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiJson.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_parseinboxaijson", + "target": "apps_electron_vite_project_src_utils_parseinboxaijson_defaults", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiJson.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_parseinboxaijson", + "target": "apps_electron_vite_project_src_utils_parseinboxaijson_extractbalancedjsonobject", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiJson.ts", + "source_location": "L189", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_parseinboxaijson", + "target": "apps_electron_vite_project_src_utils_parseinboxaijson_normalinboxaifromparsed", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiJson.ts", + "source_location": "L256", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_parseinboxaijson", + "target": "apps_electron_vite_project_src_utils_parseinboxaijson_normalinboxairesultkey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiJson.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_parseinboxaijson", + "target": "apps_electron_vite_project_src_utils_parseinboxaijson_normalizedraftreplyfield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiJson.ts", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_parseinboxaijson", + "target": "apps_electron_vite_project_src_utils_parseinboxaijson_parserecordfromlenientjson", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiJson.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_parseinboxaijson", + "target": "apps_electron_vite_project_src_utils_parseinboxaijson_repairtrailingcommasinjson", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiJson.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_parseinboxaijson", + "target": "apps_electron_vite_project_src_utils_parseinboxaijson_stripbom", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiJson.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_parseinboxaijson", + "target": "apps_electron_vite_project_src_utils_parseinboxaijson_stripoutermarkdownfence", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiJson.ts", + "source_location": "L226", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_parseinboxaijson", + "target": "apps_electron_vite_project_src_utils_parseinboxaijson_tryparseanalysis", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiJson.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_parseinboxaijson", + "target": "apps_electron_vite_project_src_utils_parseinboxaijson_tryparseanalysismeta", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiJson.ts", + "source_location": "L230", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_parseinboxaijson", + "target": "apps_electron_vite_project_src_utils_parseinboxaijson_tryparseanalysiswithmeta", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiJson.ts", + "source_location": "L262", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_parseinboxaijson", + "target": "apps_electron_vite_project_src_utils_parseinboxaijson_tryparsepartialanalysis", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiScamWatchdog.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_parseinboxaiscamwatchdog_test", + "target": "apps_electron_vite_project_src_utils_parseinboxaijson", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiJson.ts", + "source_location": "L218", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_parseinboxaijson_normalinboxaifromparsed", + "target": "apps_electron_vite_project_src_utils_parseinboxaijson_assemblescamwatchdog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiJson.ts", + "source_location": "L349", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_parseinboxaijson_tryparsepartialanalysis", + "target": "apps_electron_vite_project_src_utils_parseinboxaijson_assemblescamwatchdog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiScamWatchdog.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_parseinboxaiscamwatchdog_test", + "target": "apps_electron_vite_project_src_utils_parseinboxaijson_assemblescamwatchdog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiJson.ts", + "source_location": "L217", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_parseinboxaijson_normalinboxaifromparsed", + "target": "apps_electron_vite_project_src_utils_parseinboxaijson_normalizedraftreplyfield", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiJson.ts", + "source_location": "L150", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_parseinboxaijson_parserecordfromlenientjson", + "target": "apps_electron_vite_project_src_utils_parseinboxaijson_stripbom", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiJson.ts", + "source_location": "L151", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_parseinboxaijson_parserecordfromlenientjson", + "target": "apps_electron_vite_project_src_utils_parseinboxaijson_stripoutermarkdownfence", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiJson.ts", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_parseinboxaijson_parserecordfromlenientjson", + "target": "apps_electron_vite_project_src_utils_parseinboxaijson_extractbalancedjsonobject", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiJson.ts", + "source_location": "L173", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_parseinboxaijson_parserecordfromlenientjson", + "target": "apps_electron_vite_project_src_utils_parseinboxaijson_repairtrailingcommasinjson", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiJson.ts", + "source_location": "L246", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_parseinboxaijson_tryparseanalysiswithmeta", + "target": "apps_electron_vite_project_src_utils_parseinboxaijson_parserecordfromlenientjson", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiJson.ts", + "source_location": "L249", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_parseinboxaijson_tryparseanalysiswithmeta", + "target": "apps_electron_vite_project_src_utils_parseinboxaijson_normalinboxaifromparsed", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiJson.ts", + "source_location": "L227", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_parseinboxaijson_tryparseanalysis", + "target": "apps_electron_vite_project_src_utils_parseinboxaijson_tryparseanalysiswithmeta", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiJson.ts", + "source_location": "L269", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_parseinboxaijson_tryparsepartialanalysis", + "target": "apps_electron_vite_project_src_utils_parseinboxaijson_tryparseanalysis", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiScamWatchdog.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_parseinboxaiscamwatchdog_test", + "target": "apps_electron_vite_project_src_utils_parseinboxaijson_tryparseanalysis", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiScamWatchdog.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_parseinboxaiscamwatchdog_test", + "target": "apps_electron_vite_project_src_utils_parseinboxaijson_tryparsepartialanalysis", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/parseInboxAiScamWatchdog.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_parseinboxaiscamwatchdog_test", + "target": "apps_electron_vite_project_src_utils_parseinboxaiscamwatchdog_test_analysis", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/safeLinks.ts", + "source_location": "L217", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_safelinks", + "target": "apps_electron_vite_project_src_utils_safelinks_beapinboxmessagebodytolinkparts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/safeLinks.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_safelinks", + "target": "apps_electron_vite_project_src_utils_safelinks_block_out_tags", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/safeLinks.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_safelinks", + "target": "apps_electron_vite_project_src_utils_safelinks_ensureabsolutehttpurlforopen", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/safeLinks.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_safelinks", + "target": "apps_electron_vite_project_src_utils_safelinks_extractlinkparts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/safeLinks.ts", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_safelinks", + "target": "apps_electron_vite_project_src_utils_safelinks_extractlinkpartsfromhtml", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/safeLinks.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_safelinks", + "target": "apps_electron_vite_project_src_utils_safelinks_getbuttonlabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/safeLinks.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_safelinks", + "target": "apps_electron_vite_project_src_utils_safelinks_linkpart", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/safeLinks.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_safelinks", + "target": "apps_electron_vite_project_src_utils_safelinks_match", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/safeLinks.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_safelinks", + "target": "apps_electron_vite_project_src_utils_safelinks_rangeoverlaps", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/safeLinks.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_safelinks_extractlinkparts", + "target": "apps_electron_vite_project_src_utils_safelinks_ensureabsolutehttpurlforopen", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/safeLinks.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_safelinks_extractlinkparts", + "target": "apps_electron_vite_project_src_utils_safelinks_getbuttonlabel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/safeLinks.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_safelinks_extractlinkparts", + "target": "apps_electron_vite_project_src_utils_safelinks_rangeoverlaps", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/safeLinks.ts", + "source_location": "L220", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_safelinks_beapinboxmessagebodytolinkparts", + "target": "apps_electron_vite_project_src_utils_safelinks_extractlinkparts", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/safeLinks.ts", + "source_location": "L211", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_safelinks_extractlinkpartsfromhtml", + "target": "apps_electron_vite_project_src_utils_safelinks_extractlinkparts", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/safeLinks.ts", + "source_location": "L219", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_safelinks_beapinboxmessagebodytolinkparts", + "target": "apps_electron_vite_project_src_utils_safelinks_extractlinkpartsfromhtml", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/syncFailureUi.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_syncfailureui_test", + "target": "apps_electron_vite_project_src_utils_syncfailureui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/syncFailureUi.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_syncfailureui_test", + "target": "apps_electron_vite_project_src_utils_syncfailureui_buildtlssyncfailurecopy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/syncFailureUi.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_syncfailureui_test", + "target": "apps_electron_vite_project_src_utils_syncfailureui_classifyingestiontriggersyncmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/syncFailureUi.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_syncfailureui_test", + "target": "apps_electron_vite_project_src_utils_syncfailureui_classifysyncfailuremessage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/syncFailureUi.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_syncfailureui_test", + "target": "apps_electron_vite_project_src_utils_syncfailureui_delegated_sync_marker", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/syncFailureUi.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_syncfailureui_test", + "target": "apps_electron_vite_project_src_utils_syncfailureui_isdelegatedsyncmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/syncFailureUi.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_syncfailureui_test", + "target": "apps_electron_vite_project_src_utils_syncfailureui_parsebracketedaccountsyncmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/syncFailureUi.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_syncfailureui", + "target": "apps_electron_vite_project_src_utils_syncfailureui_buildtlssyncfailurecopy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/syncFailureUi.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_syncfailureui", + "target": "apps_electron_vite_project_src_utils_syncfailureui_classifyingestiontriggersyncmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/syncFailureUi.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_syncfailureui", + "target": "apps_electron_vite_project_src_utils_syncfailureui_classifysyncfailuremessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/syncFailureUi.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_syncfailureui", + "target": "apps_electron_vite_project_src_utils_syncfailureui_delegated_sync_marker", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/syncFailureUi.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_syncfailureui", + "target": "apps_electron_vite_project_src_utils_syncfailureui_isauthsyncfailuremessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/syncFailureUi.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_syncfailureui", + "target": "apps_electron_vite_project_src_utils_syncfailureui_isdelegatedsyncmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/syncFailureUi.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_syncfailureui", + "target": "apps_electron_vite_project_src_utils_syncfailureui_matchesingestiontriggercopy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/syncFailureUi.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_syncfailureui", + "target": "apps_electron_vite_project_src_utils_syncfailureui_parsebracketedaccountsyncmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/syncFailureUi.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_syncfailureui", + "target": "apps_electron_vite_project_src_utils_syncfailureui_providerlabelforsyncbanner", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/syncFailureUi.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_syncfailureui", + "target": "apps_electron_vite_project_src_utils_syncfailureui_syncfailurekind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/syncFailureUi.ts", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_syncfailureui", + "target": "apps_electron_vite_project_src_utils_syncfailureui_tlsbanneraccountcontext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/syncFailureUi.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_syncfailureui_classifysyncfailuremessage", + "target": "apps_electron_vite_project_src_utils_syncfailureui_isauthsyncfailuremessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/syncFailureUi.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_syncfailureui_classifysyncfailuremessage", + "target": "apps_electron_vite_project_src_utils_syncfailureui_isdelegatedsyncmessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/syncFailureUi.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_syncfailureui_classifyingestiontriggersyncmessage", + "target": "apps_electron_vite_project_src_utils_syncfailureui_matchesingestiontriggercopy", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/syncFailureUi.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_syncfailureui_classifysyncfailuremessage", + "target": "apps_electron_vite_project_src_utils_syncfailureui_classifyingestiontriggersyncmessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/syncFailureUi.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_syncfailureui_buildtlssyncfailurecopy", + "target": "apps_electron_vite_project_src_utils_syncfailureui_providerlabelforsyncbanner", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/validationState.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_validationstate", + "target": "apps_electron_vite_project_src_utils_validationstate_conformant_validation_reasons", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/validationState.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_validationstate", + "target": "apps_electron_vite_project_src_utils_validationstate_getvalidationstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/utils/validationState.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_utils_validationstate", + "target": "apps_electron_vite_project_src_utils_validationstate_validationstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/vite-env.d.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_vite_env_d", + "target": "apps_electron_vite_project_src_vite_env_d_analysisdashboardbridge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/vite-env.d.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_vite_env_d", + "target": "apps_electron_vite_project_src_vite_env_d_appshellbridge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/vite-env.d.ts", + "source_location": "L279", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_vite_env_d", + "target": "apps_electron_vite_project_src_vite_env_d_autosortblockreason", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/vite-env.d.ts", + "source_location": "L387", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_vite_env_d", + "target": "apps_electron_vite_project_src_vite_env_d_beapbridge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/vite-env.d.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_vite_env_d", + "target": "apps_electron_vite_project_src_vite_env_d_capturepresetpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/vite-env.d.ts", + "source_location": "L321", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_vite_env_d", + "target": "apps_electron_vite_project_src_vite_env_d_custommodesbridge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/vite-env.d.ts", + "source_location": "L353", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_vite_env_d", + "target": "apps_electron_vite_project_src_vite_env_d_debuglogsbridge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/vite-env.d.ts", + "source_location": "L270", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_vite_env_d", + "target": "apps_electron_vite_project_src_vite_env_d_gpustatusforui", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/vite-env.d.ts", + "source_location": "L258", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_vite_env_d", + "target": "apps_electron_vite_project_src_vite_env_d_inferencecapabilityforui", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/vite-env.d.ts", + "source_location": "L218", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_vite_env_d", + "target": "apps_electron_vite_project_src_vite_env_d_integritybridge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/vite-env.d.ts", + "source_location": "L205", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_vite_env_d", + "target": "apps_electron_vite_project_src_vite_env_d_integritycheck", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/vite-env.d.ts", + "source_location": "L211", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_vite_env_d", + "target": "apps_electron_vite_project_src_vite_env_d_integritystatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/vite-env.d.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_vite_env_d", + "target": "apps_electron_vite_project_src_vite_env_d_lettercomposerbridge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/vite-env.d.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_vite_env_d", + "target": "apps_electron_vite_project_src_vite_env_d_libreofficebridge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/vite-env.d.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_vite_env_d", + "target": "apps_electron_vite_project_src_vite_env_d_lifecyclebridge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/vite-env.d.ts", + "source_location": "L303", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_vite_env_d", + "target": "apps_electron_vite_project_src_vite_env_d_llmbridge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/vite-env.d.ts", + "source_location": "L223", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_vite_env_d", + "target": "apps_electron_vite_project_src_vite_env_d_llmollamastatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/vite-env.d.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_vite_env_d", + "target": "apps_electron_vite_project_src_vite_env_d_lmgtfybridge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/vite-env.d.ts", + "source_location": "L347", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_vite_env_d", + "target": "apps_electron_vite_project_src_vite_env_d_mainprocesslogentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/vite-env.d.ts", + "source_location": "L358", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_vite_env_d", + "target": "apps_electron_vite_project_src_vite_env_d_orchestratorbridge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/vite-env.d.ts", + "source_location": "L288", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_vite_env_d", + "target": "apps_electron_vite_project_src_vite_env_d_resolvedinboxruntime", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/vite-env.d.ts", + "source_location": "L401", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_vite_env_d", + "target": "apps_electron_vite_project_src_vite_env_d_window", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/vite-env.d.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_vite_env_d", + "target": "apps_electron_vite_project_src_vite_env_d_wrchatbridge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/src/vite-env.d.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_src_vite_env_d", + "target": "apps_electron_vite_project_src_vite_env_d_ws", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig", + "target": "apps_electron_vite_project_tsconfig_compileroptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig", + "target": "apps_electron_vite_project_tsconfig_exclude", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig", + "target": "apps_electron_vite_project_tsconfig_include", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig", + "target": "apps_electron_vite_project_tsconfig_references", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_compileroptions", + "target": "apps_electron_vite_project_tsconfig_compileroptions_allowimportingtsextensions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_compileroptions", + "target": "apps_electron_vite_project_tsconfig_compileroptions_baseurl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_compileroptions", + "target": "apps_electron_vite_project_tsconfig_compileroptions_isolatedmodules", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_compileroptions", + "target": "apps_electron_vite_project_tsconfig_compileroptions_jsx", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_compileroptions", + "target": "apps_electron_vite_project_tsconfig_compileroptions_lib", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_compileroptions", + "target": "apps_electron_vite_project_tsconfig_compileroptions_module", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_compileroptions", + "target": "apps_electron_vite_project_tsconfig_compileroptions_moduleresolution", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_compileroptions", + "target": "apps_electron_vite_project_tsconfig_compileroptions_noemit", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_compileroptions", + "target": "apps_electron_vite_project_tsconfig_compileroptions_nofallthroughcasesinswitch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_compileroptions", + "target": "apps_electron_vite_project_tsconfig_compileroptions_nounusedlocals", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_compileroptions", + "target": "apps_electron_vite_project_tsconfig_compileroptions_nounusedparameters", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_compileroptions", + "target": "apps_electron_vite_project_tsconfig_compileroptions_paths", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_compileroptions", + "target": "apps_electron_vite_project_tsconfig_compileroptions_resolvejsonmodule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_compileroptions", + "target": "apps_electron_vite_project_tsconfig_compileroptions_skiplibcheck", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_compileroptions", + "target": "apps_electron_vite_project_tsconfig_compileroptions_strict", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_compileroptions", + "target": "apps_electron_vite_project_tsconfig_compileroptions_target", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_compileroptions", + "target": "apps_electron_vite_project_tsconfig_compileroptions_usedefineforclassfields", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L5", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_compileroptions_lib", + "target": "apps_electron_vite_project_tsconfig_json_ref_dom", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L5", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_compileroptions_lib", + "target": "apps_electron_vite_project_tsconfig_json_ref_dom_iterable", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L5", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_compileroptions_lib", + "target": "apps_electron_vite_project_tsconfig_json_ref_es2020", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_compileroptions_paths", + "target": "apps_electron_vite_project_tsconfig_paths_ext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_compileroptions_paths", + "target": "apps_electron_vite_project_tsconfig_paths_ext_audit", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_compileroptions_paths", + "target": "apps_electron_vite_project_tsconfig_paths_ext_envelope_evaluation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_compileroptions_paths", + "target": "apps_electron_vite_project_tsconfig_paths_ext_handshake_handshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_compileroptions_paths", + "target": "apps_electron_vite_project_tsconfig_paths_ext_ingress", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_compileroptions_paths", + "target": "apps_electron_vite_project_tsconfig_paths_ext_reconstruction", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_compileroptions_paths", + "target": "apps_electron_vite_project_tsconfig_paths_ext_vault_hscontextprofilesrpc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_compileroptions_paths", + "target": "apps_electron_vite_project_tsconfig_paths_repo_shared_beap_ui", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_compileroptions_paths", + "target": "apps_electron_vite_project_tsconfig_paths_shared", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L24", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_paths_shared", + "target": "apps_electron_vite_project_tsconfig_json_ref_packages_shared_src", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L25", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_paths_repo_shared_beap_ui", + "target": "ref_packages_shared_beap_ui_src_index_ts", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L26", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_paths_ext", + "target": "ref_extension_chromium_src", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L27", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_paths_ext_handshake_handshakerpc", + "target": "ref_src_shims_handshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L28", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_paths_ext_vault_hscontextprofilesrpc", + "target": "ref_src_shims_hscontextprofilesrpc", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L29", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_paths_ext_reconstruction", + "target": "ref_src_shims_reconstruction", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L30", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_paths_ext_audit", + "target": "ref_src_shims_audit", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L31", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_paths_ext_envelope_evaluation", + "target": "ref_src_shims_envelope_evaluation", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L32", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_paths_ext_ingress", + "target": "ref_src_shims_ingress", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L35", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_include", + "target": "apps_electron_vite_project_tsconfig_json_ref_electron", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L35", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_include", + "target": "apps_electron_vite_project_tsconfig_json_ref_src", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L35", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_include", + "target": "ref_extension_chromium_src_beap_messages", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L35", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_include", + "target": "ref_extension_chromium_src_handshake", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L35", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_include", + "target": "ref_extension_chromium_src_shared", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L35", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_include", + "target": "ref_extension_chromium_src_vault_hscontextprofilesrpc_ts", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L43", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_exclude", + "target": "apps_electron_vite_project_tsconfig_json_ref_tests", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L43", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_exclude", + "target": "ref_spec_ts", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.json", + "source_location": "L43", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_exclude", + "target": "ref_test_ts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.node.json", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_node", + "target": "apps_electron_vite_project_tsconfig_node_compileroptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.node.json", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_node", + "target": "apps_electron_vite_project_tsconfig_node_include", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.node.json", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_node_compileroptions", + "target": "apps_electron_vite_project_tsconfig_node_compileroptions_allowsyntheticdefaultimports", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.node.json", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_node_compileroptions", + "target": "apps_electron_vite_project_tsconfig_node_compileroptions_composite", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.node.json", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_node_compileroptions", + "target": "apps_electron_vite_project_tsconfig_node_compileroptions_module", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.node.json", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_node_compileroptions", + "target": "apps_electron_vite_project_tsconfig_node_compileroptions_moduleresolution", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.node.json", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_node_compileroptions", + "target": "apps_electron_vite_project_tsconfig_node_compileroptions_skiplibcheck", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.node.json", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_node_compileroptions", + "target": "apps_electron_vite_project_tsconfig_node_compileroptions_strict", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/tsconfig.node.json", + "source_location": "L10", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_electron_vite_project_tsconfig_node_include", + "target": "ref_vite_config_ts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/vite.config.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_vite_config", + "target": "apps_electron_vite_project_vite_config_base_orchestrator_build_stamp", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/vite.config.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_vite_config", + "target": "apps_electron_vite_project_vite_config_build_timestamp_iso", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/vite.config.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_vite_config", + "target": "apps_electron_vite_project_vite_config_dirname", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/vite.config.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_vite_config", + "target": "apps_electron_vite_project_vite_config_extsrc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/vite.config.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_vite_config", + "target": "apps_electron_vite_project_vite_config_gitmetafromclosestrepo", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/vite.config.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_vite_config", + "target": "apps_electron_vite_project_vite_config_gitshorthead", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/vite.config.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_vite_config", + "target": "apps_electron_vite_project_vite_config_onstart", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/vite.config.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_vite_config", + "target": "apps_electron_vite_project_vite_config_readextensionoutdirstamp", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/vite.config.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_vite_config", + "target": "apps_electron_vite_project_vite_config_resolveid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/electron-vite-project/vite.config.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_electron_vite_project_vite_config", + "target": "apps_electron_vite_project_vite_config_runtime_identity_git_meta", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/vite.config.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_vite_config", + "target": "apps_extension_chromium_manifest_config", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_package", + "target": "apps_extension_chromium_package_dependencies", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_package", + "target": "apps_extension_chromium_package_devdependencies", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_package", + "target": "apps_extension_chromium_package_name", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_package", + "target": "apps_extension_chromium_package_private", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_package", + "target": "apps_extension_chromium_package_scripts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_package", + "target": "apps_extension_chromium_package_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_package", + "target": "apps_extension_chromium_package_version", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_package_scripts", + "target": "apps_extension_chromium_package_scripts_build", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_package_scripts", + "target": "apps_extension_chromium_package_scripts_dev", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_package_scripts", + "target": "apps_extension_chromium_package_scripts_preview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_package_scripts", + "target": "apps_extension_chromium_package_scripts_test", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_package_scripts", + "target": "apps_extension_chromium_package_scripts_test_watch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_package_scripts", + "target": "apps_extension_chromium_package_scripts_test_wrchat", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_package_dependencies", + "target": "apps_extension_chromium_package_dependencies_noble_curves", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_package_dependencies", + "target": "apps_extension_chromium_package_dependencies_noble_ed25519", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_package_dependencies", + "target": "apps_extension_chromium_package_dependencies_pdfjs_dist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_package_dependencies", + "target": "apps_extension_chromium_package_dependencies_react", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_package_dependencies", + "target": "apps_extension_chromium_package_dependencies_react_dom", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_package_dependencies", + "target": "apps_extension_chromium_package_dependencies_react_markdown", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_package_dependencies", + "target": "apps_extension_chromium_package_dependencies_tensorflow_tfjs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_package_dependencies", + "target": "apps_extension_chromium_package_dependencies_webextension_polyfill", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_package_dependencies", + "target": "apps_extension_chromium_package_dependencies_wink_eng_lite_web_model", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_package_dependencies", + "target": "apps_extension_chromium_package_dependencies_wink_nlp", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_package_dependencies", + "target": "apps_extension_chromium_package_dependencies_ws", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_package_dependencies", + "target": "apps_extension_chromium_package_dependencies_zod", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_package_dependencies", + "target": "apps_extension_chromium_package_dependencies_zustand", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L15", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_package_dependencies_noble_curves", + "target": "apps_extension_chromium_package_json_noble_curves", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L16", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_package_dependencies_noble_ed25519", + "target": "noble_ed25519", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L17", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_package_dependencies_tensorflow_tfjs", + "target": "tensorflow_tfjs", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L18", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_package_dependencies_react", + "target": "apps_extension_chromium_package_json_react", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L19", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_package_dependencies_react_dom", + "target": "apps_extension_chromium_package_json_react_dom", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L20", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_package_dependencies_react_markdown", + "target": "react_markdown", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L21", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_package_dependencies_webextension_polyfill", + "target": "webextension_polyfill", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L22", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_package_dependencies_wink_eng_lite_web_model", + "target": "wink_eng_lite_web_model", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L23", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_package_dependencies_wink_nlp", + "target": "wink_nlp", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L24", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_package_dependencies_pdfjs_dist", + "target": "apps_extension_chromium_package_json_pdfjs_dist", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L25", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_package_dependencies_ws", + "target": "apps_extension_chromium_package_json_ws", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L26", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_package_dependencies_zod", + "target": "apps_extension_chromium_package_json_zod", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L27", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_package_dependencies_zustand", + "target": "apps_extension_chromium_package_json_zustand", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_package_devdependencies", + "target": "apps_extension_chromium_package_devdependencies_crxjs_vite_plugin", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_package_devdependencies", + "target": "apps_extension_chromium_package_devdependencies_types_chrome", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_package_devdependencies", + "target": "apps_extension_chromium_package_devdependencies_types_react", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_package_devdependencies", + "target": "apps_extension_chromium_package_devdependencies_types_react_dom", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_package_devdependencies", + "target": "apps_extension_chromium_package_devdependencies_typescript", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_package_devdependencies", + "target": "apps_extension_chromium_package_devdependencies_vite", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_package_devdependencies", + "target": "apps_extension_chromium_package_devdependencies_vitejs_plugin_react", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_package_devdependencies", + "target": "apps_extension_chromium_package_devdependencies_vitest", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L30", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_package_devdependencies_crxjs_vite_plugin", + "target": "crxjs_vite_plugin", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L31", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_package_devdependencies_types_chrome", + "target": "apps_extension_chromium_package_json_types_chrome", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L32", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_package_devdependencies_types_react", + "target": "apps_extension_chromium_package_json_types_react", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L33", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_package_devdependencies_types_react_dom", + "target": "apps_extension_chromium_package_json_types_react_dom", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L34", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_package_devdependencies_vitejs_plugin_react", + "target": "apps_extension_chromium_package_json_vitejs_plugin_react", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L35", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_package_devdependencies_typescript", + "target": "apps_extension_chromium_package_json_typescript", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L36", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_package_devdependencies_vite", + "target": "apps_extension_chromium_package_json_vite", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/package.json", + "source_location": "L37", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_package_devdependencies_vitest", + "target": "apps_extension_chromium_package_json_vitest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-display.js", + "source_location": "L337", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_display", + "target": "apps_extension_chromium_public_grid_display_addfullscreenbutton", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-display.js", + "source_location": "L390", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_display", + "target": "apps_extension_chromium_public_grid_display_addmastergridtoggle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-display.js", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_display", + "target": "apps_extension_chromium_public_grid_display_createslots", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-display.js", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_display", + "target": "apps_extension_chromium_public_grid_display_signalgridsurfaceready", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-integration-default-badge.js", + "source_location": "L139", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_integration_default_badge", + "target": "apps_extension_chromium_public_grid_integration_default_badge_attachstoragelisteneronce", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-integration-default-badge.js", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_integration_default_badge", + "target": "apps_extension_chromium_public_grid_integration_default_badge_collectrowsforsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-integration-default-badge.js", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_integration_default_badge", + "target": "apps_extension_chromium_public_grid_integration_default_badge_debugenabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-integration-default-badge.js", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_integration_default_badge", + "target": "apps_extension_chromium_public_grid_integration_default_badge_logdebug", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-integration-default-badge.js", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_integration_default_badge", + "target": "apps_extension_chromium_public_grid_integration_default_badge_logwarn", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-integration-default-badge.js", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_integration_default_badge", + "target": "apps_extension_chromium_public_grid_integration_default_badge_parseroot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-integration-default-badge.js", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_integration_default_badge", + "target": "apps_extension_chromium_public_grid_integration_default_badge_removebadge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-integration-default-badge.js", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_integration_default_badge", + "target": "apps_extension_chromium_public_grid_integration_default_badge_renderbadge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-integration-default-badge.js", + "source_location": "L157", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_integration_default_badge", + "target": "apps_extension_chromium_public_grid_integration_default_badge_resolvebadge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-integration-default-badge.js", + "source_location": "L254", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_integration_default_badge", + "target": "apps_extension_chromium_public_grid_integration_default_badge_tryrender", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-integration-default-badge.js", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_integration_default_badge_logdebug", + "target": "apps_extension_chromium_public_grid_integration_default_badge_debugenabled", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-integration-default-badge.js", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_integration_default_badge_attachstoragelisteneronce", + "target": "apps_extension_chromium_public_grid_integration_default_badge_logdebug", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-integration-default-badge.js", + "source_location": "L161", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_integration_default_badge_resolvebadge", + "target": "apps_extension_chromium_public_grid_integration_default_badge_logdebug", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-integration-default-badge.js", + "source_location": "L256", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_integration_default_badge_tryrender", + "target": "apps_extension_chromium_public_grid_integration_default_badge_logdebug", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-integration-default-badge.js", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_integration_default_badge_renderbadge", + "target": "apps_extension_chromium_public_grid_integration_default_badge_logwarn", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-integration-default-badge.js", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_integration_default_badge_resolvebadge", + "target": "apps_extension_chromium_public_grid_integration_default_badge_logwarn", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-integration-default-badge.js", + "source_location": "L182", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_integration_default_badge_resolvebadge", + "target": "apps_extension_chromium_public_grid_integration_default_badge_parseroot", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-integration-default-badge.js", + "source_location": "L193", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_integration_default_badge_resolvebadge", + "target": "apps_extension_chromium_public_grid_integration_default_badge_collectrowsforsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-integration-default-badge.js", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_integration_default_badge_renderbadge", + "target": "apps_extension_chromium_public_grid_integration_default_badge_removebadge", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-integration-default-badge.js", + "source_location": "L160", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_integration_default_badge_resolvebadge", + "target": "apps_extension_chromium_public_grid_integration_default_badge_removebadge", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-integration-default-badge.js", + "source_location": "L237", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_integration_default_badge_resolvebadge", + "target": "apps_extension_chromium_public_grid_integration_default_badge_renderbadge", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-integration-default-badge.js", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_integration_default_badge_attachstoragelisteneronce", + "target": "apps_extension_chromium_public_grid_integration_default_badge_resolvebadge", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-integration-default-badge.js", + "source_location": "L257", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_integration_default_badge_tryrender", + "target": "apps_extension_chromium_public_grid_integration_default_badge_attachstoragelisteneronce", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-integration-default-badge.js", + "source_location": "L258", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_integration_default_badge_tryrender", + "target": "apps_extension_chromium_public_grid_integration_default_badge_resolvebadge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script-backup.js", + "source_location": "L286", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_backup", + "target": "apps_extension_chromium_public_grid_script_backup_fallbackexitfullscreen", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script-backup.js", + "source_location": "L260", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_backup", + "target": "apps_extension_chromium_public_grid_script_backup_fallbackfullscreen", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script-backup.js", + "source_location": "L560", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_backup", + "target": "apps_extension_chromium_public_grid_script_backup_handlefullscreenclick", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script-backup.js", + "source_location": "L449", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_backup", + "target": "apps_extension_chromium_public_grid_script_backup_handlekeydown", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script-backup.js", + "source_location": "L494", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_backup", + "target": "apps_extension_chromium_public_grid_script_backup_init", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script-backup.js", + "source_location": "L604", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_backup", + "target": "apps_extension_chromium_public_grid_script_backup_initializewebsocket", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script-backup.js", + "source_location": "L160", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_backup", + "target": "apps_extension_chromium_public_grid_script_backup_loadgridconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script-backup.js", + "source_location": "L441", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_backup", + "target": "apps_extension_chromium_public_grid_script_backup_nextslide", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script-backup.js", + "source_location": "L445", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_backup", + "target": "apps_extension_chromium_public_grid_script_backup_prevslide", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script-backup.js", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_backup", + "target": "apps_extension_chromium_public_grid_script_backup_savegridconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script-backup.js", + "source_location": "L329", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_backup", + "target": "apps_extension_chromium_public_grid_script_backup_showfullscreennotification", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script-backup.js", + "source_location": "L422", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_backup", + "target": "apps_extension_chromium_public_grid_script_backup_showslide", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script-backup.js", + "source_location": "L192", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_backup", + "target": "apps_extension_chromium_public_grid_script_backup_togglefullscreen", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script-backup.js", + "source_location": "L380", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_backup", + "target": "apps_extension_chromium_public_grid_script_backup_toggleslidemode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script-backup.js", + "source_location": "L584", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_backup", + "target": "apps_extension_chromium_public_grid_script_backup_tryinit", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script-backup.js", + "source_location": "L312", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_backup", + "target": "apps_extension_chromium_public_grid_script_backup_updatefullscreenbutton", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/extension-chromium/public/grid-script-backup.js", + "source_location": "L510", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_backup_init", + "target": "apps_extension_chromium_public_grid_script_backup_savegridconfig", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script-backup.js", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_backup_savegridconfig", + "target": "apps_extension_chromium_public_grid_script_backup_initializewebsocket", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script-backup.js", + "source_location": "L555", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_backup_init", + "target": "apps_extension_chromium_public_grid_script_backup_loadgridconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script-backup.js", + "source_location": "L577", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_backup_handlefullscreenclick", + "target": "apps_extension_chromium_public_grid_script_backup_togglefullscreen", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script-backup.js", + "source_location": "L233", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_backup_togglefullscreen", + "target": "apps_extension_chromium_public_grid_script_backup_fallbackexitfullscreen", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script-backup.js", + "source_location": "L207", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_backup_togglefullscreen", + "target": "apps_extension_chromium_public_grid_script_backup_fallbackfullscreen", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script-backup.js", + "source_location": "L279", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_backup_fallbackfullscreen", + "target": "apps_extension_chromium_public_grid_script_backup_showfullscreennotification", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script-backup.js", + "source_location": "L282", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_backup_fallbackfullscreen", + "target": "apps_extension_chromium_public_grid_script_backup_updatefullscreenbutton", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script-backup.js", + "source_location": "L305", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_backup_fallbackexitfullscreen", + "target": "apps_extension_chromium_public_grid_script_backup_showfullscreennotification", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script-backup.js", + "source_location": "L308", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_backup_fallbackexitfullscreen", + "target": "apps_extension_chromium_public_grid_script_backup_updatefullscreenbutton", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script-backup.js", + "source_location": "L550", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_backup_init", + "target": "apps_extension_chromium_public_grid_script_backup_toggleslidemode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script-backup.js", + "source_location": "L442", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_backup_nextslide", + "target": "apps_extension_chromium_public_grid_script_backup_showslide", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script-backup.js", + "source_location": "L446", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_backup_prevslide", + "target": "apps_extension_chromium_public_grid_script_backup_showslide", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script-backup.js", + "source_location": "L453", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_backup_handlekeydown", + "target": "apps_extension_chromium_public_grid_script_backup_nextslide", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/extension-chromium/public/grid-script-backup.js", + "source_location": "L538", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_backup_init", + "target": "apps_extension_chromium_public_grid_script_backup_nextslide", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script-backup.js", + "source_location": "L456", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_backup_handlekeydown", + "target": "apps_extension_chromium_public_grid_script_backup_prevslide", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/extension-chromium/public/grid-script-backup.js", + "source_location": "L533", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_backup_init", + "target": "apps_extension_chromium_public_grid_script_backup_prevslide", + "confidence_score": 0.5 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/extension-chromium/public/grid-script-backup.js", + "source_location": "L543", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_backup_init", + "target": "apps_extension_chromium_public_grid_script_backup_handlekeydown", + "confidence_score": 0.5 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/extension-chromium/public/grid-script-backup.js", + "source_location": "L516", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_backup_init", + "target": "apps_extension_chromium_public_grid_script_backup_handlefullscreenclick", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script-backup.js", + "source_location": "L596", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_backup_tryinit", + "target": "apps_extension_chromium_public_grid_script_backup_init", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script-v2.js", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_v2", + "target": "apps_extension_chromium_public_grid_script_v2_calculatenextboxnumber", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script-v2.js", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_v2", + "target": "apps_extension_chromium_public_grid_script_v2_findmaxboxnumber", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script-v2.js", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_v2", + "target": "apps_extension_chromium_public_grid_script_v2_getcurrentsessionkey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script-v2.js", + "source_location": "L831", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_v2", + "target": "apps_extension_chromium_public_grid_script_v2_getgridsessionkeyforclearv2", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script-v2.js", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_v2", + "target": "apps_extension_chromium_public_grid_script_v2_getsessionfromhttpapi", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script-v2.js", + "source_location": "L835", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_v2", + "target": "apps_extension_chromium_public_grid_script_v2_gridslotemptyplaceholderhtmlv2", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script-v2.js", + "source_location": "L823", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_v2", + "target": "apps_extension_chromium_public_grid_script_v2_inlinemarkdown", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script-v2.js", + "source_location": "L772", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_v2", + "target": "apps_extension_chromium_public_grid_script_v2_rendermarkdown", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script-v2.js", + "source_location": "L208", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_v2", + "target": "apps_extension_chromium_public_grid_script_v2_showv2dialog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script-v2.js", + "source_location": "L743", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_v2", + "target": "apps_extension_chromium_public_grid_script_v2_togglefullscreen", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script-v2.js", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_v2", + "target": "apps_extension_chromium_public_grid_script_v2_toprovideridv2", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script-v2.js", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_v2", + "target": "apps_extension_chromium_public_grid_script_v2_toproviderlabelv2", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script-v2.js", + "source_location": "L477", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_v2_rationale_477", + "target": "apps_extension_chromium_public_grid_script_v2", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script-v2.js", + "source_location": "L605", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_v2_showv2dialog", + "target": "apps_extension_chromium_public_grid_script_v2_toprovideridv2", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script-v2.js", + "source_location": "L297", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_v2_showv2dialog", + "target": "apps_extension_chromium_public_grid_script_v2_toproviderlabelv2", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script-v2.js", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_v2_calculatenextboxnumber", + "target": "apps_extension_chromium_public_grid_script_v2_findmaxboxnumber", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script-v2.js", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_v2_calculatenextboxnumber", + "target": "apps_extension_chromium_public_grid_script_v2_getsessionfromhttpapi", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script-v2.js", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_v2_calculatenextboxnumber", + "target": "apps_extension_chromium_public_grid_script_v2_getcurrentsessionkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script-v2.js", + "source_location": "L701", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_v2_showv2dialog", + "target": "apps_extension_chromium_public_grid_script_v2_getcurrentsessionkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script-v2.js", + "source_location": "L803", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_v2_rendermarkdown", + "target": "apps_extension_chromium_public_grid_script_v2_inlinemarkdown", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L1058", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script", + "target": "apps_extension_chromium_public_grid_script_attacheditbuttonlisteners", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L1094", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script", + "target": "apps_extension_chromium_public_grid_script_attachtogglelisteners", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L234", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script", + "target": "apps_extension_chromium_public_grid_script_calculatenextboxnumber", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script", + "target": "apps_extension_chromium_public_grid_script_escopt", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script", + "target": "apps_extension_chromium_public_grid_script_fetchlocalmodelnames", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script", + "target": "apps_extension_chromium_public_grid_script_fillmodelselect", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L172", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script", + "target": "apps_extension_chromium_public_grid_script_findmaxboxnumber", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L1239", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script", + "target": "apps_extension_chromium_public_grid_script_getgridsessionkeyforclear", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L201", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script", + "target": "apps_extension_chromium_public_grid_script_getsessionfromhttpapi", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L1243", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script", + "target": "apps_extension_chromium_public_grid_script_gridslotemptyplaceholderhtml", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L1231", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script", + "target": "apps_extension_chromium_public_grid_script_inlinemarkdown", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script", + "target": "apps_extension_chromium_public_grid_script_modeloptionsstatic", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L636", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script", + "target": "apps_extension_chromium_public_grid_script_openexperteditor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L972", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script", + "target": "apps_extension_chromium_public_grid_script_opentoolcatalog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L966", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script", + "target": "apps_extension_chromium_public_grid_script_parseslotconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L612", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script", + "target": "apps_extension_chromium_public_grid_script_renderexpertslist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L1180", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script", + "target": "apps_extension_chromium_public_grid_script_rendermarkdown", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L485", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script", + "target": "apps_extension_chromium_public_grid_script_rendertools", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L1026", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script", + "target": "apps_extension_chromium_public_grid_script_togglefullscreen", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script", + "target": "apps_extension_chromium_public_grid_script_toprovideridgs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script", + "target": "apps_extension_chromium_public_grid_script_toproviderlabelgs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L892", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script", + "target": "apps_extension_chromium_public_grid_script_tryopenersave", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L969", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script", + "target": "apps_extension_chromium_public_grid_script_writeslotconfig", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L551", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_rationale_551", + "target": "apps_extension_chromium_public_grid_script", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_fillmodelselect", + "target": "apps_extension_chromium_public_grid_script_modeloptionsstatic", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_fillmodelselect", + "target": "apps_extension_chromium_public_grid_script_escopt", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_fillmodelselect", + "target": "apps_extension_chromium_public_grid_script_fetchlocalmodelnames", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L254", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_calculatenextboxnumber", + "target": "apps_extension_chromium_public_grid_script_findmaxboxnumber", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L252", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_calculatenextboxnumber", + "target": "apps_extension_chromium_public_grid_script_getsessionfromhttpapi", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L665", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_openexperteditor", + "target": "apps_extension_chromium_public_grid_script_renderexpertslist", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L1002", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_opentoolcatalog", + "target": "apps_extension_chromium_public_grid_script_parseslotconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L1005", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_opentoolcatalog", + "target": "apps_extension_chromium_public_grid_script_writeslotconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/public/grid-script.js", + "source_location": "L1211", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_public_grid_script_rendermarkdown", + "target": "apps_extension_chromium_public_grid_script_inlinemarkdown", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema", + "target": "apps_extension_chromium_schemas_agent_schema_defs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema", + "target": "apps_extension_chromium_schemas_agent_schema_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema", + "target": "apps_extension_chromium_schemas_agent_schema_id", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema", + "target": "apps_extension_chromium_schemas_agent_schema_properties", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema", + "target": "apps_extension_chromium_schemas_agent_schema_required", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema", + "target": "apps_extension_chromium_schemas_agent_schema_schema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema", + "target": "apps_extension_chromium_schemas_agent_schema_title", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema", + "target": "apps_extension_chromium_schemas_agent_schema_type", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L7", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_required", + "target": "apps_extension_chromium_schemas_agent_schema_json_ref_capabilities", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L7", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_required", + "target": "apps_extension_chromium_schemas_agent_schema_json_ref_enabled", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L7", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_required", + "target": "apps_extension_chromium_schemas_agent_schema_json_ref_id", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L7", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_required", + "target": "apps_extension_chromium_schemas_agent_schema_json_ref_name", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L7", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_required", + "target": "apps_extension_chromium_schemas_agent_schema_json_ref_schemaversion", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L7", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_required", + "target": "ref_contextsettings", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L7", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_required", + "target": "ref_memorysettings", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L174", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_required", + "target": "apps_extension_chromium_schemas_agent_schema_json_ref_id", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L174", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_required", + "target": "apps_extension_chromium_schemas_agent_schema_json_ref_enabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L165", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_agentcontextfiles", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_capabilities", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_contextsettings", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_enabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L160", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_executionsections", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_exportedat", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_helper", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_icon", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_id", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_listening", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_memorysettings", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_name", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_number", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L155", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_reasoningsections", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_schema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_schemainfo", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_schemaversion", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_source", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_schema", + "target": "apps_extension_chromium_schemas_agent_schema_schema_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_schema", + "target": "apps_extension_chromium_schemas_agent_schema_schema_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_schemaversion", + "target": "apps_extension_chromium_schemas_agent_schema_schemaversion_const", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_schemaversion", + "target": "apps_extension_chromium_schemas_agent_schema_schemaversion_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_schemaversion", + "target": "apps_extension_chromium_schemas_agent_schema_schemaversion_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_exportedat", + "target": "apps_extension_chromium_schemas_agent_schema_exportedat_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_exportedat", + "target": "apps_extension_chromium_schemas_agent_schema_exportedat_format", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_exportedat", + "target": "apps_extension_chromium_schemas_agent_schema_exportedat_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_source", + "target": "apps_extension_chromium_schemas_agent_schema_source_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_source", + "target": "apps_extension_chromium_schemas_agent_schema_source_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_helper", + "target": "apps_extension_chromium_schemas_agent_schema_helper_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_helper", + "target": "apps_extension_chromium_schemas_agent_schema_helper_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_schemainfo", + "target": "apps_extension_chromium_schemas_agent_schema_schemainfo_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_schemainfo", + "target": "apps_extension_chromium_schemas_agent_schema_schemainfo_properties", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_schemainfo", + "target": "apps_extension_chromium_schemas_agent_schema_schemainfo_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_schemainfo_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_deprecatedfields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_schemainfo_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_enums", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_schemainfo_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_numericfields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_enums", + "target": "apps_extension_chromium_schemas_agent_schema_enums_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_numericfields", + "target": "apps_extension_chromium_schemas_agent_schema_numericfields_items", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_numericfields", + "target": "apps_extension_chromium_schemas_agent_schema_numericfields_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_numericfields_items", + "target": "apps_extension_chromium_schemas_agent_schema_items_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L592", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_acceptfrom_items", + "target": "apps_extension_chromium_schemas_agent_schema_items_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L534", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_allowedsenders_items", + "target": "apps_extension_chromium_schemas_agent_schema_items_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L563", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_applyforlist_items", + "target": "apps_extension_chromium_schemas_agent_schema_items_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L282", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_buttonselectors_items", + "target": "apps_extension_chromium_schemas_agent_schema_items_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_capabilities_items", + "target": "apps_extension_chromium_schemas_agent_schema_items_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L582", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_custom_items", + "target": "apps_extension_chromium_schemas_agent_schema_items_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_deprecatedfields_items", + "target": "apps_extension_chromium_schemas_agent_schema_items_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L322", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_inputselectors_items", + "target": "apps_extension_chromium_schemas_agent_schema_items_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L535", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_keywords_items", + "target": "apps_extension_chromium_schemas_agent_schema_items_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L383", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_metaselectors_items", + "target": "apps_extension_chromium_schemas_agent_schema_items_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L484", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_miniappconditions_items", + "target": "apps_extension_chromium_schemas_agent_schema_items_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L472", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_miniappuielements_items", + "target": "apps_extension_chromium_schemas_agent_schema_items_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L336", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_outputselectors_items", + "target": "apps_extension_chromium_schemas_agent_schema_items_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L537", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_patterns_items", + "target": "apps_extension_chromium_schemas_agent_schema_items_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L277", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_sitefilters_items", + "target": "apps_extension_chromium_schemas_agent_schema_items_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_sources_items", + "target": "apps_extension_chromium_schemas_agent_schema_items_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_tags_items", + "target": "apps_extension_chromium_schemas_agent_schema_items_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_deprecatedfields", + "target": "apps_extension_chromium_schemas_agent_schema_deprecatedfields_items", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_deprecatedfields", + "target": "apps_extension_chromium_schemas_agent_schema_deprecatedfields_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L178", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_id", + "target": "apps_extension_chromium_schemas_agent_schema_id_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L177", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_id", + "target": "apps_extension_chromium_schemas_agent_schema_id_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L176", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_id", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L475", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_items_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_name", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_name", + "target": "apps_extension_chromium_schemas_agent_schema_name_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_name", + "target": "apps_extension_chromium_schemas_agent_schema_name_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_description", + "target": "apps_extension_chromium_schemas_agent_schema_description_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_description", + "target": "apps_extension_chromium_schemas_agent_schema_description_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_icon", + "target": "apps_extension_chromium_schemas_agent_schema_icon_default", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_icon", + "target": "apps_extension_chromium_schemas_agent_schema_icon_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_icon", + "target": "apps_extension_chromium_schemas_agent_schema_icon_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_number", + "target": "apps_extension_chromium_schemas_agent_schema_number_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_number", + "target": "apps_extension_chromium_schemas_agent_schema_number_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L188", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_enabled", + "target": "apps_extension_chromium_schemas_agent_schema_enabled_default", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L187", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_enabled", + "target": "apps_extension_chromium_schemas_agent_schema_enabled_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L186", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_enabled", + "target": "apps_extension_chromium_schemas_agent_schema_enabled_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L185", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_enabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_capabilities", + "target": "apps_extension_chromium_schemas_agent_schema_capabilities_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_capabilities", + "target": "apps_extension_chromium_schemas_agent_schema_capabilities_items", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_capabilities", + "target": "apps_extension_chromium_schemas_agent_schema_capabilities_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_capabilities", + "target": "apps_extension_chromium_schemas_agent_schema_capabilities_uniqueitems", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_capabilities_items", + "target": "apps_extension_chromium_schemas_agent_schema_items_enum", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L137", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_items_enum", + "target": "apps_extension_chromium_schemas_agent_schema_json_ref_agent", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L137", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_items_enum", + "target": "apps_extension_chromium_schemas_agent_schema_json_ref_all", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L137", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_items_enum", + "target": "apps_extension_chromium_schemas_agent_schema_json_ref_api", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L137", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_items_enum", + "target": "apps_extension_chromium_schemas_agent_schema_json_ref_chat", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L137", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_items_enum", + "target": "apps_extension_chromium_schemas_agent_schema_json_ref_docs", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L137", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_items_enum", + "target": "apps_extension_chromium_schemas_agent_schema_json_ref_dom", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L137", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_items_enum", + "target": "apps_extension_chromium_schemas_agent_schema_json_ref_email", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L71", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_items_enum", + "target": "apps_extension_chromium_schemas_agent_schema_json_ref_execution", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L71", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_items_enum", + "target": "apps_extension_chromium_schemas_agent_schema_json_ref_listening", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L137", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_items_enum", + "target": "apps_extension_chromium_schemas_agent_schema_json_ref_pdf", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L71", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_items_enum", + "target": "apps_extension_chromium_schemas_agent_schema_json_ref_reasoning", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L137", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_items_enum", + "target": "apps_extension_chromium_schemas_agent_schema_json_ref_screenshot", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L137", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_items_enum", + "target": "apps_extension_chromium_schemas_agent_schema_json_ref_stream", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L137", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_items_enum", + "target": "apps_extension_chromium_schemas_agent_schema_json_ref_video", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L137", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_items_enum", + "target": "apps_extension_chromium_schemas_agent_schema_json_ref_voice", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L137", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_items_enum", + "target": "apps_extension_chromium_schemas_agent_schema_json_ref_voicememo", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L137", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_items_enum", + "target": "apps_extension_chromium_schemas_agent_schema_json_ref_whatsapp", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L137", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_items_enum", + "target": "apps_extension_chromium_schemas_agent_schema_json_ref_workflow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L137", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_sources_items", + "target": "apps_extension_chromium_schemas_agent_schema_items_enum", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_contextsettings", + "target": "apps_extension_chromium_schemas_agent_schema_contextsettings_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_contextsettings", + "target": "apps_extension_chromium_schemas_agent_schema_contextsettings_properties", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_contextsettings", + "target": "apps_extension_chromium_schemas_agent_schema_contextsettings_required", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_contextsettings", + "target": "apps_extension_chromium_schemas_agent_schema_contextsettings_type", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L78", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_contextsettings_required", + "target": "ref_accountcontext", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L78", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_contextsettings_required", + "target": "ref_agentcontext", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L78", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_contextsettings_required", + "target": "ref_sessioncontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_contextsettings_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_accountcontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_contextsettings_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_agentcontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_contextsettings_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_sessioncontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_agentcontext", + "target": "apps_extension_chromium_schemas_agent_schema_agentcontext_default", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_agentcontext", + "target": "apps_extension_chromium_schemas_agent_schema_agentcontext_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_agentcontext", + "target": "apps_extension_chromium_schemas_agent_schema_agentcontext_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_sessioncontext", + "target": "apps_extension_chromium_schemas_agent_schema_sessioncontext_default", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_sessioncontext", + "target": "apps_extension_chromium_schemas_agent_schema_sessioncontext_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_sessioncontext", + "target": "apps_extension_chromium_schemas_agent_schema_sessioncontext_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_accountcontext", + "target": "apps_extension_chromium_schemas_agent_schema_accountcontext_default", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_accountcontext", + "target": "apps_extension_chromium_schemas_agent_schema_accountcontext_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_accountcontext", + "target": "apps_extension_chromium_schemas_agent_schema_accountcontext_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_memorysettings", + "target": "apps_extension_chromium_schemas_agent_schema_memorysettings_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_memorysettings", + "target": "apps_extension_chromium_schemas_agent_schema_memorysettings_properties", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_memorysettings", + "target": "apps_extension_chromium_schemas_agent_schema_memorysettings_required", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_memorysettings", + "target": "apps_extension_chromium_schemas_agent_schema_memorysettings_type", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L100", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_memorysettings_required", + "target": "ref_accountenabled", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L100", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_memorysettings_required", + "target": "ref_agentenabled", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L100", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_memorysettings_required", + "target": "ref_sessionenabled", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L597", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_memorycontext_required", + "target": "ref_agentenabled", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L597", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_memorycontext_required", + "target": "ref_sessionenabled", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L597", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_memorycontext_required", + "target": "ref_accountenabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_memorysettings_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_accountenabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_memorysettings_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_agentenabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_memorysettings_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_sessionenabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L599", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_memorycontext_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_agentenabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_agentenabled", + "target": "apps_extension_chromium_schemas_agent_schema_agentenabled_default", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_agentenabled", + "target": "apps_extension_chromium_schemas_agent_schema_agentenabled_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_agentenabled", + "target": "apps_extension_chromium_schemas_agent_schema_agentenabled_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_sessionenabled", + "target": "apps_extension_chromium_schemas_agent_schema_sessionenabled_default", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_sessionenabled", + "target": "apps_extension_chromium_schemas_agent_schema_sessionenabled_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_sessionenabled", + "target": "apps_extension_chromium_schemas_agent_schema_sessionenabled_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_accountenabled", + "target": "apps_extension_chromium_schemas_agent_schema_accountenabled_default", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_accountenabled", + "target": "apps_extension_chromium_schemas_agent_schema_accountenabled_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_accountenabled", + "target": "apps_extension_chromium_schemas_agent_schema_accountenabled_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_listening", + "target": "apps_extension_chromium_schemas_agent_schema_listening_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_listening", + "target": "apps_extension_chromium_schemas_agent_schema_listening_properties", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_listening", + "target": "apps_extension_chromium_schemas_agent_schema_listening_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_listening_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_examplefiles", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_listening_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_expectedcontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_listening_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_sources", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_listening_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_tags", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L144", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_listening_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_unifiedtriggers", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_listening_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_website", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L210", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_expectedcontext", + "target": "apps_extension_chromium_schemas_agent_schema_expectedcontext_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L209", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_expectedcontext", + "target": "apps_extension_chromium_schemas_agent_schema_expectedcontext_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L208", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_expectedcontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_tags", + "target": "apps_extension_chromium_schemas_agent_schema_tags_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_tags", + "target": "apps_extension_chromium_schemas_agent_schema_tags_items", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_tags", + "target": "apps_extension_chromium_schemas_agent_schema_tags_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L134", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_sources", + "target": "apps_extension_chromium_schemas_agent_schema_sources_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_sources", + "target": "apps_extension_chromium_schemas_agent_schema_sources_items", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_sources", + "target": "apps_extension_chromium_schemas_agent_schema_sources_type", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L182", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_type_enum", + "target": "apps_extension_chromium_schemas_agent_schema_json_ref_agent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L142", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_website", + "target": "apps_extension_chromium_schemas_agent_schema_website_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_website", + "target": "apps_extension_chromium_schemas_agent_schema_website_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_unifiedtriggers", + "target": "apps_extension_chromium_schemas_agent_schema_unifiedtriggers_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_unifiedtriggers", + "target": "apps_extension_chromium_schemas_agent_schema_unifiedtriggers_items", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_unifiedtriggers", + "target": "apps_extension_chromium_schemas_agent_schema_unifiedtriggers_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_unifiedtriggers_items", + "target": "apps_extension_chromium_schemas_agent_schema_items_ref", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L220", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_conditions_items", + "target": "apps_extension_chromium_schemas_agent_schema_items_ref", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L206", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_eventtagconditions_items", + "target": "apps_extension_chromium_schemas_agent_schema_items_ref", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_executionsections_items", + "target": "apps_extension_chromium_schemas_agent_schema_items_ref", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L158", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_reasoningsections_items", + "target": "apps_extension_chromium_schemas_agent_schema_items_ref", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L151", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_examplefiles", + "target": "apps_extension_chromium_schemas_agent_schema_examplefiles_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L150", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_examplefiles", + "target": "apps_extension_chromium_schemas_agent_schema_examplefiles_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L157", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_reasoningsections", + "target": "apps_extension_chromium_schemas_agent_schema_reasoningsections_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L158", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_reasoningsections", + "target": "apps_extension_chromium_schemas_agent_schema_reasoningsections_items", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L156", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_reasoningsections", + "target": "apps_extension_chromium_schemas_agent_schema_reasoningsections_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_executionsections", + "target": "apps_extension_chromium_schemas_agent_schema_executionsections_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_executionsections", + "target": "apps_extension_chromium_schemas_agent_schema_executionsections_items", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L161", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_executionsections", + "target": "apps_extension_chromium_schemas_agent_schema_executionsections_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_agentcontextfiles", + "target": "apps_extension_chromium_schemas_agent_schema_agentcontextfiles_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L166", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_agentcontextfiles", + "target": "apps_extension_chromium_schemas_agent_schema_agentcontextfiles_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L524", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_defs", + "target": "apps_extension_chromium_schemas_agent_schema_defs_eventtagcondition", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L555", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_defs", + "target": "apps_extension_chromium_schemas_agent_schema_defs_reasoningsection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L171", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_defs", + "target": "apps_extension_chromium_schemas_agent_schema_defs_trigger", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L540", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_defs", + "target": "apps_extension_chromium_schemas_agent_schema_defs_triggercondition", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L173", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_defs_trigger", + "target": "apps_extension_chromium_schemas_agent_schema_trigger_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_defs_trigger", + "target": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_defs_trigger", + "target": "apps_extension_chromium_schemas_agent_schema_trigger_required", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L172", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_defs_trigger", + "target": "apps_extension_chromium_schemas_agent_schema_trigger_type", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L174", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_required", + "target": "apps_extension_chromium_schemas_agent_schema_json_ref_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L518", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_allowedactions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L293", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_autodetected", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L288", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_autodetectselectors", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L284", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_buttonselector", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L279", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_buttonselectors", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L314", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_captureinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L328", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_captureoutput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L375", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_capturepagetitle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L370", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_captureurl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_channel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L493", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_command", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L217", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_conditions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L227", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_domevent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L251", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_domparserenabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L400", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_domparserrules", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L270", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_domparseselector", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L266", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_domparsetarget", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L247", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_dompayloadparsed", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L235", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_dompayloadselection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L239", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_dompayloadsnippet", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L243", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_dompayloadurl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L223", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_domselector", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L231", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_domurlfilter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L497", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_emails", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L309", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_enterkeyignoreshift", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L203", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_eventtagconditions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L324", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_inputselector", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L319", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_inputselectors", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L501", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_keywords", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L357", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_maxwaittimems", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L380", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_metaselectors", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L480", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_miniappconditions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L464", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_miniappid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L468", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_miniappuielements", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L338", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_outputselector", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L333", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_outputselectors", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L366", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_outputwaitdelay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L362", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_outputwaitmethod", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L413", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_overlaybuttonlabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L409", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_overlaymodebutton", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L421", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_overlaymodeelement", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L417", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_overlaymodeempty", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L426", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_overlaymodeselection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L446", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_overlaypayloadcontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L454", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_overlaypayloadcoords", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L442", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_overlaypayloadselection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L450", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_overlaypayloadurl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L430", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_overlayphrases", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L405", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_overlaytriggername", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L434", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_overlayurlpattern", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L438", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_overlaywrcodeonly", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L261", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_parserinterval", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L256", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_parsertrigger", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L348", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_quietperiodms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L342", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_responsereadymode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L353", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_responsesignalselector", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L395", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_sanitizeremoveboilerplate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L390", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_sanitizestripmarkdown", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L385", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_sanitizetrim", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L514", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_sensorworkflows", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L274", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_sitefilters", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L459", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_sourceagent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_tag", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L195", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_tagname", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L304", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_triggeronenterkey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L180", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L505", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_websitefilter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L213", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_workflowid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L509", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_wrcodematch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L528", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_eventtagcondition_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L474", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_items_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L531", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_type", + "target": "apps_extension_chromium_schemas_agent_schema_type_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L530", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_type", + "target": "apps_extension_chromium_schemas_agent_schema_type_enum", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L529", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_type", + "target": "apps_extension_chromium_schemas_agent_schema_type_type", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L182", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_type_enum", + "target": "apps_extension_chromium_schemas_agent_schema_json_ref_augmented_overlay", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L182", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_type_enum", + "target": "apps_extension_chromium_schemas_agent_schema_json_ref_direct_tag", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L182", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_type_enum", + "target": "apps_extension_chromium_schemas_agent_schema_json_ref_dom_event", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L182", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_type_enum", + "target": "apps_extension_chromium_schemas_agent_schema_json_ref_dom_parser", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L182", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_type_enum", + "target": "apps_extension_chromium_schemas_agent_schema_json_ref_manual", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L182", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_type_enum", + "target": "apps_extension_chromium_schemas_agent_schema_json_ref_miniapp", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L182", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_type_enum", + "target": "apps_extension_chromium_schemas_agent_schema_json_ref_tag_and_condition", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L182", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_type_enum", + "target": "apps_extension_chromium_schemas_agent_schema_json_ref_workflow_condition", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L530", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_type_enum", + "target": "ref_body_keywords", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L530", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_type_enum", + "target": "ref_sender_whitelist", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L530", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_type_enum", + "target": "ref_website_filter", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L530", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_type_enum", + "target": "ref_wrcode_valid", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L258", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_parsertrigger_enum", + "target": "apps_extension_chromium_schemas_agent_schema_json_ref_manual", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L193", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_tag", + "target": "apps_extension_chromium_schemas_agent_schema_tag_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L551", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_tag", + "target": "apps_extension_chromium_schemas_agent_schema_tag_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L551", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_triggercondition_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_tag", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L197", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_tagname", + "target": "apps_extension_chromium_schemas_agent_schema_tagname_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L196", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_tagname", + "target": "apps_extension_chromium_schemas_agent_schema_tagname_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L201", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_channel", + "target": "apps_extension_chromium_schemas_agent_schema_channel_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_channel", + "target": "apps_extension_chromium_schemas_agent_schema_channel_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L205", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_eventtagconditions", + "target": "apps_extension_chromium_schemas_agent_schema_eventtagconditions_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L206", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_eventtagconditions", + "target": "apps_extension_chromium_schemas_agent_schema_eventtagconditions_items", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L204", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_eventtagconditions", + "target": "apps_extension_chromium_schemas_agent_schema_eventtagconditions_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L215", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_workflowid", + "target": "apps_extension_chromium_schemas_agent_schema_workflowid_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L214", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_workflowid", + "target": "apps_extension_chromium_schemas_agent_schema_workflowid_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L219", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_conditions", + "target": "apps_extension_chromium_schemas_agent_schema_conditions_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L220", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_conditions", + "target": "apps_extension_chromium_schemas_agent_schema_conditions_items", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L218", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_conditions", + "target": "apps_extension_chromium_schemas_agent_schema_conditions_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L225", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_domselector", + "target": "apps_extension_chromium_schemas_agent_schema_domselector_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L224", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_domselector", + "target": "apps_extension_chromium_schemas_agent_schema_domselector_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L229", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_domevent", + "target": "apps_extension_chromium_schemas_agent_schema_domevent_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L228", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_domevent", + "target": "apps_extension_chromium_schemas_agent_schema_domevent_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L233", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_domurlfilter", + "target": "apps_extension_chromium_schemas_agent_schema_domurlfilter_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L232", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_domurlfilter", + "target": "apps_extension_chromium_schemas_agent_schema_domurlfilter_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L237", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_dompayloadselection", + "target": "apps_extension_chromium_schemas_agent_schema_dompayloadselection_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L236", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_dompayloadselection", + "target": "apps_extension_chromium_schemas_agent_schema_dompayloadselection_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L241", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_dompayloadsnippet", + "target": "apps_extension_chromium_schemas_agent_schema_dompayloadsnippet_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L240", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_dompayloadsnippet", + "target": "apps_extension_chromium_schemas_agent_schema_dompayloadsnippet_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L245", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_dompayloadurl", + "target": "apps_extension_chromium_schemas_agent_schema_dompayloadurl_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L244", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_dompayloadurl", + "target": "apps_extension_chromium_schemas_agent_schema_dompayloadurl_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L249", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_dompayloadparsed", + "target": "apps_extension_chromium_schemas_agent_schema_dompayloadparsed_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L248", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_dompayloadparsed", + "target": "apps_extension_chromium_schemas_agent_schema_dompayloadparsed_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L253", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_domparserenabled", + "target": "apps_extension_chromium_schemas_agent_schema_domparserenabled_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L252", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_domparserenabled", + "target": "apps_extension_chromium_schemas_agent_schema_domparserenabled_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L259", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_parsertrigger", + "target": "apps_extension_chromium_schemas_agent_schema_parsertrigger_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L258", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_parsertrigger", + "target": "apps_extension_chromium_schemas_agent_schema_parsertrigger_enum", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L257", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_parsertrigger", + "target": "apps_extension_chromium_schemas_agent_schema_parsertrigger_type", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L258", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_parsertrigger_enum", + "target": "apps_extension_chromium_schemas_agent_schema_json_ref_button_click", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L258", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_parsertrigger_enum", + "target": "apps_extension_chromium_schemas_agent_schema_json_ref_dom_change", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L258", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_parsertrigger_enum", + "target": "apps_extension_chromium_schemas_agent_schema_json_ref_interval", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L258", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_parsertrigger_enum", + "target": "apps_extension_chromium_schemas_agent_schema_json_ref_page_load", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L263", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_parserinterval", + "target": "apps_extension_chromium_schemas_agent_schema_parserinterval_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L264", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_parserinterval", + "target": "apps_extension_chromium_schemas_agent_schema_parserinterval_minimum", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L262", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_parserinterval", + "target": "apps_extension_chromium_schemas_agent_schema_parserinterval_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L268", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_domparsetarget", + "target": "apps_extension_chromium_schemas_agent_schema_domparsetarget_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L267", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_domparsetarget", + "target": "apps_extension_chromium_schemas_agent_schema_domparsetarget_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L272", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_domparseselector", + "target": "apps_extension_chromium_schemas_agent_schema_domparseselector_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L271", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_domparseselector", + "target": "apps_extension_chromium_schemas_agent_schema_domparseselector_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L276", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_sitefilters", + "target": "apps_extension_chromium_schemas_agent_schema_sitefilters_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L277", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_sitefilters", + "target": "apps_extension_chromium_schemas_agent_schema_sitefilters_items", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L275", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_sitefilters", + "target": "apps_extension_chromium_schemas_agent_schema_sitefilters_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L281", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_buttonselectors", + "target": "apps_extension_chromium_schemas_agent_schema_buttonselectors_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L282", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_buttonselectors", + "target": "apps_extension_chromium_schemas_agent_schema_buttonselectors_items", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L280", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_buttonselectors", + "target": "apps_extension_chromium_schemas_agent_schema_buttonselectors_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L286", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_buttonselector", + "target": "apps_extension_chromium_schemas_agent_schema_buttonselector_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L285", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_buttonselector", + "target": "apps_extension_chromium_schemas_agent_schema_buttonselector_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L291", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_autodetectselectors", + "target": "apps_extension_chromium_schemas_agent_schema_autodetectselectors_default", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L290", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_autodetectselectors", + "target": "apps_extension_chromium_schemas_agent_schema_autodetectselectors_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L289", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_autodetectselectors", + "target": "apps_extension_chromium_schemas_agent_schema_autodetectselectors_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L295", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_autodetected", + "target": "apps_extension_chromium_schemas_agent_schema_autodetected_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L296", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_autodetected", + "target": "apps_extension_chromium_schemas_agent_schema_autodetected_properties", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L294", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_autodetected", + "target": "apps_extension_chromium_schemas_agent_schema_autodetected_type", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L294", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_autodetected_type", + "target": "ref_null", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L294", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_autodetected_type", + "target": "ref_object", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L298", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_autodetected_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_button", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L301", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_autodetected_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_context", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L299", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_autodetected_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_input", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L300", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_autodetected_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_output", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L297", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_autodetected_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_sitefilter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L297", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_sitefilter", + "target": "apps_extension_chromium_schemas_agent_schema_sitefilter_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L298", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_button", + "target": "apps_extension_chromium_schemas_agent_schema_button_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L299", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_input", + "target": "apps_extension_chromium_schemas_agent_schema_input_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L300", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_output", + "target": "apps_extension_chromium_schemas_agent_schema_output_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L301", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_context", + "target": "apps_extension_chromium_schemas_agent_schema_context_items", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L301", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_context", + "target": "apps_extension_chromium_schemas_agent_schema_context_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L307", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_triggeronenterkey", + "target": "apps_extension_chromium_schemas_agent_schema_triggeronenterkey_default", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L306", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_triggeronenterkey", + "target": "apps_extension_chromium_schemas_agent_schema_triggeronenterkey_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L305", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_triggeronenterkey", + "target": "apps_extension_chromium_schemas_agent_schema_triggeronenterkey_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L312", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_enterkeyignoreshift", + "target": "apps_extension_chromium_schemas_agent_schema_enterkeyignoreshift_default", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L311", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_enterkeyignoreshift", + "target": "apps_extension_chromium_schemas_agent_schema_enterkeyignoreshift_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L310", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_enterkeyignoreshift", + "target": "apps_extension_chromium_schemas_agent_schema_enterkeyignoreshift_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L317", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_captureinput", + "target": "apps_extension_chromium_schemas_agent_schema_captureinput_default", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L316", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_captureinput", + "target": "apps_extension_chromium_schemas_agent_schema_captureinput_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L315", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_captureinput", + "target": "apps_extension_chromium_schemas_agent_schema_captureinput_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L321", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_inputselectors", + "target": "apps_extension_chromium_schemas_agent_schema_inputselectors_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L322", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_inputselectors", + "target": "apps_extension_chromium_schemas_agent_schema_inputselectors_items", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L320", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_inputselectors", + "target": "apps_extension_chromium_schemas_agent_schema_inputselectors_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L326", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_inputselector", + "target": "apps_extension_chromium_schemas_agent_schema_inputselector_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L325", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_inputselector", + "target": "apps_extension_chromium_schemas_agent_schema_inputselector_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L331", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_captureoutput", + "target": "apps_extension_chromium_schemas_agent_schema_captureoutput_default", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L330", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_captureoutput", + "target": "apps_extension_chromium_schemas_agent_schema_captureoutput_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L329", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_captureoutput", + "target": "apps_extension_chromium_schemas_agent_schema_captureoutput_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L335", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_outputselectors", + "target": "apps_extension_chromium_schemas_agent_schema_outputselectors_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L336", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_outputselectors", + "target": "apps_extension_chromium_schemas_agent_schema_outputselectors_items", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L334", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_outputselectors", + "target": "apps_extension_chromium_schemas_agent_schema_outputselectors_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L340", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_outputselector", + "target": "apps_extension_chromium_schemas_agent_schema_outputselector_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L339", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_outputselector", + "target": "apps_extension_chromium_schemas_agent_schema_outputselector_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L346", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_responsereadymode", + "target": "apps_extension_chromium_schemas_agent_schema_responsereadymode_default", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L345", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_responsereadymode", + "target": "apps_extension_chromium_schemas_agent_schema_responsereadymode_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L344", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_responsereadymode", + "target": "apps_extension_chromium_schemas_agent_schema_responsereadymode_enum", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L343", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_responsereadymode", + "target": "apps_extension_chromium_schemas_agent_schema_responsereadymode_type", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L344", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_responsereadymode_enum", + "target": "apps_extension_chromium_schemas_agent_schema_json_ref_first_change", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L344", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_responsereadymode_enum", + "target": "apps_extension_chromium_schemas_agent_schema_json_ref_quiet_period", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L344", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_responsereadymode_enum", + "target": "apps_extension_chromium_schemas_agent_schema_json_ref_selector_signal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L351", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_quietperiodms", + "target": "apps_extension_chromium_schemas_agent_schema_quietperiodms_default", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L350", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_quietperiodms", + "target": "apps_extension_chromium_schemas_agent_schema_quietperiodms_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L349", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_quietperiodms", + "target": "apps_extension_chromium_schemas_agent_schema_quietperiodms_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L355", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_responsesignalselector", + "target": "apps_extension_chromium_schemas_agent_schema_responsesignalselector_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L354", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_responsesignalselector", + "target": "apps_extension_chromium_schemas_agent_schema_responsesignalselector_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L360", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_maxwaittimems", + "target": "apps_extension_chromium_schemas_agent_schema_maxwaittimems_default", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L359", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_maxwaittimems", + "target": "apps_extension_chromium_schemas_agent_schema_maxwaittimems_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L358", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_maxwaittimems", + "target": "apps_extension_chromium_schemas_agent_schema_maxwaittimems_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L364", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_outputwaitmethod", + "target": "apps_extension_chromium_schemas_agent_schema_outputwaitmethod_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L363", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_outputwaitmethod", + "target": "apps_extension_chromium_schemas_agent_schema_outputwaitmethod_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L368", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_outputwaitdelay", + "target": "apps_extension_chromium_schemas_agent_schema_outputwaitdelay_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L367", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_outputwaitdelay", + "target": "apps_extension_chromium_schemas_agent_schema_outputwaitdelay_type", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L367", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_outputwaitdelay_type", + "target": "ref_integer", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L367", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_outputwaitdelay_type", + "target": "ref_string", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L373", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_captureurl", + "target": "apps_extension_chromium_schemas_agent_schema_captureurl_default", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L372", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_captureurl", + "target": "apps_extension_chromium_schemas_agent_schema_captureurl_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L371", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_captureurl", + "target": "apps_extension_chromium_schemas_agent_schema_captureurl_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L378", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_capturepagetitle", + "target": "apps_extension_chromium_schemas_agent_schema_capturepagetitle_default", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L377", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_capturepagetitle", + "target": "apps_extension_chromium_schemas_agent_schema_capturepagetitle_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L376", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_capturepagetitle", + "target": "apps_extension_chromium_schemas_agent_schema_capturepagetitle_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L382", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_metaselectors", + "target": "apps_extension_chromium_schemas_agent_schema_metaselectors_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L383", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_metaselectors", + "target": "apps_extension_chromium_schemas_agent_schema_metaselectors_items", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L381", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_metaselectors", + "target": "apps_extension_chromium_schemas_agent_schema_metaselectors_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L388", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_sanitizetrim", + "target": "apps_extension_chromium_schemas_agent_schema_sanitizetrim_default", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L387", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_sanitizetrim", + "target": "apps_extension_chromium_schemas_agent_schema_sanitizetrim_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L386", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_sanitizetrim", + "target": "apps_extension_chromium_schemas_agent_schema_sanitizetrim_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L393", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_sanitizestripmarkdown", + "target": "apps_extension_chromium_schemas_agent_schema_sanitizestripmarkdown_default", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L392", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_sanitizestripmarkdown", + "target": "apps_extension_chromium_schemas_agent_schema_sanitizestripmarkdown_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L391", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_sanitizestripmarkdown", + "target": "apps_extension_chromium_schemas_agent_schema_sanitizestripmarkdown_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L398", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_sanitizeremoveboilerplate", + "target": "apps_extension_chromium_schemas_agent_schema_sanitizeremoveboilerplate_default", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L397", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_sanitizeremoveboilerplate", + "target": "apps_extension_chromium_schemas_agent_schema_sanitizeremoveboilerplate_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L396", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_sanitizeremoveboilerplate", + "target": "apps_extension_chromium_schemas_agent_schema_sanitizeremoveboilerplate_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L402", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_domparserrules", + "target": "apps_extension_chromium_schemas_agent_schema_domparserrules_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L401", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_domparserrules", + "target": "apps_extension_chromium_schemas_agent_schema_domparserrules_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L407", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_overlaytriggername", + "target": "apps_extension_chromium_schemas_agent_schema_overlaytriggername_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L406", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_overlaytriggername", + "target": "apps_extension_chromium_schemas_agent_schema_overlaytriggername_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L411", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_overlaymodebutton", + "target": "apps_extension_chromium_schemas_agent_schema_overlaymodebutton_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L410", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_overlaymodebutton", + "target": "apps_extension_chromium_schemas_agent_schema_overlaymodebutton_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L415", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_overlaybuttonlabel", + "target": "apps_extension_chromium_schemas_agent_schema_overlaybuttonlabel_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L414", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_overlaybuttonlabel", + "target": "apps_extension_chromium_schemas_agent_schema_overlaybuttonlabel_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L419", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_overlaymodeempty", + "target": "apps_extension_chromium_schemas_agent_schema_overlaymodeempty_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L418", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_overlaymodeempty", + "target": "apps_extension_chromium_schemas_agent_schema_overlaymodeempty_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L424", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_overlaymodeelement", + "target": "apps_extension_chromium_schemas_agent_schema_overlaymodeelement_default", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L423", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_overlaymodeelement", + "target": "apps_extension_chromium_schemas_agent_schema_overlaymodeelement_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L422", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_overlaymodeelement", + "target": "apps_extension_chromium_schemas_agent_schema_overlaymodeelement_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L428", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_overlaymodeselection", + "target": "apps_extension_chromium_schemas_agent_schema_overlaymodeselection_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L427", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_overlaymodeselection", + "target": "apps_extension_chromium_schemas_agent_schema_overlaymodeselection_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L432", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_overlayphrases", + "target": "apps_extension_chromium_schemas_agent_schema_overlayphrases_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L431", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_overlayphrases", + "target": "apps_extension_chromium_schemas_agent_schema_overlayphrases_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L436", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_overlayurlpattern", + "target": "apps_extension_chromium_schemas_agent_schema_overlayurlpattern_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L435", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_overlayurlpattern", + "target": "apps_extension_chromium_schemas_agent_schema_overlayurlpattern_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L440", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_overlaywrcodeonly", + "target": "apps_extension_chromium_schemas_agent_schema_overlaywrcodeonly_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L439", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_overlaywrcodeonly", + "target": "apps_extension_chromium_schemas_agent_schema_overlaywrcodeonly_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L444", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_overlaypayloadselection", + "target": "apps_extension_chromium_schemas_agent_schema_overlaypayloadselection_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L443", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_overlaypayloadselection", + "target": "apps_extension_chromium_schemas_agent_schema_overlaypayloadselection_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L448", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_overlaypayloadcontext", + "target": "apps_extension_chromium_schemas_agent_schema_overlaypayloadcontext_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L447", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_overlaypayloadcontext", + "target": "apps_extension_chromium_schemas_agent_schema_overlaypayloadcontext_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L452", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_overlaypayloadurl", + "target": "apps_extension_chromium_schemas_agent_schema_overlaypayloadurl_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L451", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_overlaypayloadurl", + "target": "apps_extension_chromium_schemas_agent_schema_overlaypayloadurl_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L456", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_overlaypayloadcoords", + "target": "apps_extension_chromium_schemas_agent_schema_overlaypayloadcoords_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L455", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_overlaypayloadcoords", + "target": "apps_extension_chromium_schemas_agent_schema_overlaypayloadcoords_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L461", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_sourceagent", + "target": "apps_extension_chromium_schemas_agent_schema_sourceagent_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L460", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_sourceagent", + "target": "apps_extension_chromium_schemas_agent_schema_sourceagent_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L466", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_miniappid", + "target": "apps_extension_chromium_schemas_agent_schema_miniappid_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L465", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_miniappid", + "target": "apps_extension_chromium_schemas_agent_schema_miniappid_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L470", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_miniappuielements", + "target": "apps_extension_chromium_schemas_agent_schema_miniappuielements_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L471", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_miniappuielements", + "target": "apps_extension_chromium_schemas_agent_schema_miniappuielements_items", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L469", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_miniappuielements", + "target": "apps_extension_chromium_schemas_agent_schema_miniappuielements_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L473", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_miniappuielements_items", + "target": "apps_extension_chromium_schemas_agent_schema_items_properties", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L583", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_custom_items", + "target": "apps_extension_chromium_schemas_agent_schema_items_properties", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L486", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_items_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_field", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L584", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_items_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_key", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L476", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_items_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_label", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L487", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_items_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_op", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L585", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_items_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_value", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L485", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_miniappconditions_items", + "target": "apps_extension_chromium_schemas_agent_schema_items_properties", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L482", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_miniappconditions", + "target": "apps_extension_chromium_schemas_agent_schema_miniappconditions_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L483", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_miniappconditions", + "target": "apps_extension_chromium_schemas_agent_schema_miniappconditions_items", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L481", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_miniappconditions", + "target": "apps_extension_chromium_schemas_agent_schema_miniappconditions_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L548", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_field", + "target": "apps_extension_chromium_schemas_agent_schema_field_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L548", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_triggercondition_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_field", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L549", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_op", + "target": "apps_extension_chromium_schemas_agent_schema_op_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L549", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_triggercondition_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_op", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L550", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_value", + "target": "apps_extension_chromium_schemas_agent_schema_value_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L550", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_triggercondition_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_value", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L495", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_command", + "target": "apps_extension_chromium_schemas_agent_schema_command_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L494", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_command", + "target": "apps_extension_chromium_schemas_agent_schema_command_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L499", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_emails", + "target": "apps_extension_chromium_schemas_agent_schema_emails_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L498", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_emails", + "target": "apps_extension_chromium_schemas_agent_schema_emails_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L535", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_eventtagcondition_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_keywords", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L503", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_keywords", + "target": "apps_extension_chromium_schemas_agent_schema_keywords_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L535", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_keywords", + "target": "apps_extension_chromium_schemas_agent_schema_keywords_items", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L535", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_keywords", + "target": "apps_extension_chromium_schemas_agent_schema_keywords_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L507", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_websitefilter", + "target": "apps_extension_chromium_schemas_agent_schema_websitefilter_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L506", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_websitefilter", + "target": "apps_extension_chromium_schemas_agent_schema_websitefilter_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L511", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_wrcodematch", + "target": "apps_extension_chromium_schemas_agent_schema_wrcodematch_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L510", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_wrcodematch", + "target": "apps_extension_chromium_schemas_agent_schema_wrcodematch_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L516", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_sensorworkflows", + "target": "apps_extension_chromium_schemas_agent_schema_sensorworkflows_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L515", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_sensorworkflows", + "target": "apps_extension_chromium_schemas_agent_schema_sensorworkflows_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L520", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_allowedactions", + "target": "apps_extension_chromium_schemas_agent_schema_allowedactions_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L519", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_allowedactions", + "target": "apps_extension_chromium_schemas_agent_schema_allowedactions_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L526", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_defs_eventtagcondition", + "target": "apps_extension_chromium_schemas_agent_schema_eventtagcondition_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L527", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_defs_eventtagcondition", + "target": "apps_extension_chromium_schemas_agent_schema_eventtagcondition_properties", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L525", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_defs_eventtagcondition", + "target": "apps_extension_chromium_schemas_agent_schema_eventtagcondition_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L534", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_eventtagcondition_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_allowedsenders", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L536", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_eventtagcondition_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_caseinsensitive", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L537", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_eventtagcondition_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_patterns", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L533", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_eventtagcondition_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_required", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L533", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_required", + "target": "apps_extension_chromium_schemas_agent_schema_required_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L534", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_allowedsenders", + "target": "apps_extension_chromium_schemas_agent_schema_allowedsenders_items", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L534", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_allowedsenders", + "target": "apps_extension_chromium_schemas_agent_schema_allowedsenders_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L536", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_caseinsensitive", + "target": "apps_extension_chromium_schemas_agent_schema_caseinsensitive_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L537", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_patterns", + "target": "apps_extension_chromium_schemas_agent_schema_patterns_items", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L537", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_patterns", + "target": "apps_extension_chromium_schemas_agent_schema_patterns_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L542", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_defs_triggercondition", + "target": "apps_extension_chromium_schemas_agent_schema_triggercondition_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L543", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_defs_triggercondition", + "target": "apps_extension_chromium_schemas_agent_schema_triggercondition_properties", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L541", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_defs_triggercondition", + "target": "apps_extension_chromium_schemas_agent_schema_triggercondition_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L544", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_triggercondition_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_conditiontype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L552", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_triggercondition_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_signal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L546", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_conditiontype", + "target": "apps_extension_chromium_schemas_agent_schema_conditiontype_enum", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L545", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_conditiontype", + "target": "apps_extension_chromium_schemas_agent_schema_conditiontype_type", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L546", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_conditiontype_enum", + "target": "ref_boolean", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L546", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_conditiontype_enum", + "target": "ref_signal", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L546", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_conditiontype_enum", + "target": "ref_tag", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L552", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_signal", + "target": "apps_extension_chromium_schemas_agent_schema_signal_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L557", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_defs_reasoningsection", + "target": "apps_extension_chromium_schemas_agent_schema_reasoningsection_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L559", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_defs_reasoningsection", + "target": "apps_extension_chromium_schemas_agent_schema_reasoningsection_properties", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L558", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_defs_reasoningsection", + "target": "apps_extension_chromium_schemas_agent_schema_reasoningsection_required", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L556", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_defs_reasoningsection", + "target": "apps_extension_chromium_schemas_agent_schema_reasoningsection_type", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L558", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_reasoningsection_required", + "target": "apps_extension_chromium_schemas_agent_schema_json_ref_applyforlist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L589", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_reasoningsection_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_acceptfrom", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L560", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_reasoningsection_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_applyforlist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L578", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_reasoningsection_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_custom", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L566", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_reasoningsection_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_goals", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L594", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_reasoningsection_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_memorycontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L570", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_reasoningsection_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_role", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L574", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_reasoningsection_properties", + "target": "apps_extension_chromium_schemas_agent_schema_properties_rules", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L562", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_applyforlist", + "target": "apps_extension_chromium_schemas_agent_schema_applyforlist_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L563", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_applyforlist", + "target": "apps_extension_chromium_schemas_agent_schema_applyforlist_items", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L564", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_applyforlist", + "target": "apps_extension_chromium_schemas_agent_schema_applyforlist_minitems", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L561", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_applyforlist", + "target": "apps_extension_chromium_schemas_agent_schema_applyforlist_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L568", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_goals", + "target": "apps_extension_chromium_schemas_agent_schema_goals_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L567", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_goals", + "target": "apps_extension_chromium_schemas_agent_schema_goals_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L572", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_role", + "target": "apps_extension_chromium_schemas_agent_schema_role_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L571", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_role", + "target": "apps_extension_chromium_schemas_agent_schema_role_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L576", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_rules", + "target": "apps_extension_chromium_schemas_agent_schema_rules_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L575", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_rules", + "target": "apps_extension_chromium_schemas_agent_schema_rules_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L580", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_custom", + "target": "apps_extension_chromium_schemas_agent_schema_custom_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L581", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_custom", + "target": "apps_extension_chromium_schemas_agent_schema_custom_items", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L579", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_custom", + "target": "apps_extension_chromium_schemas_agent_schema_custom_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L591", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_acceptfrom", + "target": "apps_extension_chromium_schemas_agent_schema_acceptfrom_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L592", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_acceptfrom", + "target": "apps_extension_chromium_schemas_agent_schema_acceptfrom_items", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L590", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_acceptfrom", + "target": "apps_extension_chromium_schemas_agent_schema_acceptfrom_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L596", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_memorycontext", + "target": "apps_extension_chromium_schemas_agent_schema_memorycontext_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L598", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_memorycontext", + "target": "apps_extension_chromium_schemas_agent_schema_memorycontext_properties", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L597", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_memorycontext", + "target": "apps_extension_chromium_schemas_agent_schema_memorycontext_required", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.schema.json", + "source_location": "L595", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_schema_properties_memorycontext", + "target": "apps_extension_chromium_schemas_agent_schema_memorycontext_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L152", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template", + "target": "apps_extension_chromium_schemas_agent_template_agentcontextfiles", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template", + "target": "apps_extension_chromium_schemas_agent_template_capabilities", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template", + "target": "apps_extension_chromium_schemas_agent_template_contextsettings", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template", + "target": "apps_extension_chromium_schemas_agent_template_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template", + "target": "apps_extension_chromium_schemas_agent_template_enabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template", + "target": "apps_extension_chromium_schemas_agent_template_executionsections", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template", + "target": "apps_extension_chromium_schemas_agent_template_exportedat", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template", + "target": "apps_extension_chromium_schemas_agent_template_helper", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template", + "target": "apps_extension_chromium_schemas_agent_template_icon", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template", + "target": "apps_extension_chromium_schemas_agent_template_id", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template", + "target": "apps_extension_chromium_schemas_agent_template_listening", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template", + "target": "apps_extension_chromium_schemas_agent_template_memorysettings", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template", + "target": "apps_extension_chromium_schemas_agent_template_name", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template", + "target": "apps_extension_chromium_schemas_agent_template_number", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template", + "target": "apps_extension_chromium_schemas_agent_template_reasoningsections", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template", + "target": "apps_extension_chromium_schemas_agent_template_schema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L154", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template", + "target": "apps_extension_chromium_schemas_agent_template_schemainfo", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template", + "target": "apps_extension_chromium_schemas_agent_template_schemaversion", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template", + "target": "apps_extension_chromium_schemas_agent_template_source", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L14", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_capabilities", + "target": "apps_extension_chromium_schemas_agent_template_json_ref_execution", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L14", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_capabilities", + "target": "apps_extension_chromium_schemas_agent_template_json_ref_listening", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L14", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_capabilities", + "target": "apps_extension_chromium_schemas_agent_template_json_ref_reasoning", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_contextsettings", + "target": "apps_extension_chromium_schemas_agent_template_contextsettings_accountcontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_contextsettings", + "target": "apps_extension_chromium_schemas_agent_template_contextsettings_agentcontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_contextsettings", + "target": "apps_extension_chromium_schemas_agent_template_contextsettings_sessioncontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_memorysettings", + "target": "apps_extension_chromium_schemas_agent_template_memorysettings_accountenabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_memorysettings", + "target": "apps_extension_chromium_schemas_agent_template_memorysettings_agentenabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_memorysettings", + "target": "apps_extension_chromium_schemas_agent_template_memorysettings_sessionenabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_listening", + "target": "apps_extension_chromium_schemas_agent_template_listening_examplefiles", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_listening", + "target": "apps_extension_chromium_schemas_agent_template_listening_expectedcontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_listening", + "target": "apps_extension_chromium_schemas_agent_template_listening_sources", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_listening", + "target": "apps_extension_chromium_schemas_agent_template_listening_tags", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_listening", + "target": "apps_extension_chromium_schemas_agent_template_listening_unifiedtriggers", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_listening", + "target": "apps_extension_chromium_schemas_agent_template_listening_website", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L31", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_listening_sources", + "target": "apps_extension_chromium_schemas_agent_template_json_ref_dom", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L159", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_enums_listening_sources", + "target": "apps_extension_chromium_schemas_agent_template_json_ref_dom", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_schemainfo", + "target": "apps_extension_chromium_schemas_agent_template_schemainfo_deprecatedfields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L155", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_schemainfo", + "target": "apps_extension_chromium_schemas_agent_template_schemainfo_enums", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_schemainfo", + "target": "apps_extension_chromium_schemas_agent_template_schemainfo_numericfields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L161", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_schemainfo_enums", + "target": "apps_extension_chromium_schemas_agent_template_enums_destination_kind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L160", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_schemainfo_enums", + "target": "apps_extension_chromium_schemas_agent_template_enums_executionsection_executionmode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L159", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_schemainfo_enums", + "target": "apps_extension_chromium_schemas_agent_template_enums_listening_sources", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L157", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_schemainfo_enums", + "target": "apps_extension_chromium_schemas_agent_template_enums_trigger_parsertrigger", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L158", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_schemainfo_enums", + "target": "apps_extension_chromium_schemas_agent_template_enums_trigger_responsereadymode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L156", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_schemainfo_enums", + "target": "apps_extension_chromium_schemas_agent_template_enums_trigger_type", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L156", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_enums_trigger_type", + "target": "apps_extension_chromium_schemas_agent_template_json_ref_agent", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L156", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_enums_trigger_type", + "target": "apps_extension_chromium_schemas_agent_template_json_ref_augmented_overlay", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L156", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_enums_trigger_type", + "target": "apps_extension_chromium_schemas_agent_template_json_ref_direct_tag", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L156", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_enums_trigger_type", + "target": "apps_extension_chromium_schemas_agent_template_json_ref_dom_event", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L156", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_enums_trigger_type", + "target": "apps_extension_chromium_schemas_agent_template_json_ref_dom_parser", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L156", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_enums_trigger_type", + "target": "apps_extension_chromium_schemas_agent_template_json_ref_manual", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L156", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_enums_trigger_type", + "target": "apps_extension_chromium_schemas_agent_template_json_ref_miniapp", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L156", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_enums_trigger_type", + "target": "apps_extension_chromium_schemas_agent_template_json_ref_tag_and_condition", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L156", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_enums_trigger_type", + "target": "apps_extension_chromium_schemas_agent_template_json_ref_workflow_condition", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L159", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_enums_listening_sources", + "target": "apps_extension_chromium_schemas_agent_template_json_ref_agent", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L157", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_enums_trigger_parsertrigger", + "target": "apps_extension_chromium_schemas_agent_template_json_ref_manual", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L157", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_enums_trigger_parsertrigger", + "target": "apps_extension_chromium_schemas_agent_template_json_ref_button_click", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L157", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_enums_trigger_parsertrigger", + "target": "apps_extension_chromium_schemas_agent_template_json_ref_dom_change", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L157", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_enums_trigger_parsertrigger", + "target": "apps_extension_chromium_schemas_agent_template_json_ref_interval", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L157", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_enums_trigger_parsertrigger", + "target": "apps_extension_chromium_schemas_agent_template_json_ref_page_load", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L158", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_enums_trigger_responsereadymode", + "target": "apps_extension_chromium_schemas_agent_template_json_ref_first_change", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L158", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_enums_trigger_responsereadymode", + "target": "apps_extension_chromium_schemas_agent_template_json_ref_quiet_period", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L158", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_enums_trigger_responsereadymode", + "target": "apps_extension_chromium_schemas_agent_template_json_ref_selector_signal", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L159", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_enums_listening_sources", + "target": "apps_extension_chromium_schemas_agent_template_json_ref_all", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L159", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_enums_listening_sources", + "target": "apps_extension_chromium_schemas_agent_template_json_ref_api", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L159", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_enums_listening_sources", + "target": "apps_extension_chromium_schemas_agent_template_json_ref_chat", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L159", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_enums_listening_sources", + "target": "apps_extension_chromium_schemas_agent_template_json_ref_docs", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L159", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_enums_listening_sources", + "target": "apps_extension_chromium_schemas_agent_template_json_ref_email", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L159", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_enums_listening_sources", + "target": "apps_extension_chromium_schemas_agent_template_json_ref_pdf", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L159", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_enums_listening_sources", + "target": "apps_extension_chromium_schemas_agent_template_json_ref_screenshot", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L159", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_enums_listening_sources", + "target": "apps_extension_chromium_schemas_agent_template_json_ref_stream", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L159", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_enums_listening_sources", + "target": "apps_extension_chromium_schemas_agent_template_json_ref_video", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L159", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_enums_listening_sources", + "target": "apps_extension_chromium_schemas_agent_template_json_ref_voice", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L159", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_enums_listening_sources", + "target": "apps_extension_chromium_schemas_agent_template_json_ref_voicememo", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L159", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_enums_listening_sources", + "target": "apps_extension_chromium_schemas_agent_template_json_ref_whatsapp", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L159", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_enums_listening_sources", + "target": "apps_extension_chromium_schemas_agent_template_json_ref_workflow", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L161", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_enums_destination_kind", + "target": "apps_extension_chromium_schemas_agent_template_json_ref_chat", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L161", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_enums_destination_kind", + "target": "apps_extension_chromium_schemas_agent_template_json_ref_email", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L160", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_enums_executionsection_executionmode", + "target": "apps_extension_chromium_schemas_agent_template_json_ref_agent_workflow", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L160", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_enums_executionsection_executionmode", + "target": "apps_extension_chromium_schemas_agent_template_json_ref_direct_response", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L160", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_enums_executionsection_executionmode", + "target": "apps_extension_chromium_schemas_agent_template_json_ref_hybrid", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L160", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_enums_executionsection_executionmode", + "target": "apps_extension_chromium_schemas_agent_template_json_ref_workflow_only", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L161", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_enums_destination_kind", + "target": "apps_extension_chromium_schemas_agent_template_json_ref_agentbox", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L161", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_enums_destination_kind", + "target": "apps_extension_chromium_schemas_agent_template_json_ref_notification", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L161", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_enums_destination_kind", + "target": "apps_extension_chromium_schemas_agent_template_json_ref_storage", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L161", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_enums_destination_kind", + "target": "apps_extension_chromium_schemas_agent_template_json_ref_webhook", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L163", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_schemainfo_numericfields", + "target": "apps_extension_chromium_schemas_agent_template_json_ref_maxwaittimems", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L163", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_schemainfo_numericfields", + "target": "apps_extension_chromium_schemas_agent_template_json_ref_number", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L163", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_schemainfo_numericfields", + "target": "apps_extension_chromium_schemas_agent_template_json_ref_parserinterval", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L163", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_schemainfo_numericfields", + "target": "apps_extension_chromium_schemas_agent_template_json_ref_quietperiodms", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L164", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_schemainfo_deprecatedfields", + "target": "ref_buttonselector", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L164", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_schemainfo_deprecatedfields", + "target": "ref_inputselector", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L164", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_schemainfo_deprecatedfields", + "target": "ref_outputselector", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L164", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_schemainfo_deprecatedfields", + "target": "ref_outputwaitdelay", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L164", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_schemainfo_deprecatedfields", + "target": "ref_outputwaitmethod", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agent.template.json", + "source_location": "L164", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agent_template_schemainfo_deprecatedfields", + "target": "ref_tagname", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L139", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema", + "target": "apps_extension_chromium_schemas_agentbox_schema_defs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema", + "target": "apps_extension_chromium_schemas_agentbox_schema_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema", + "target": "apps_extension_chromium_schemas_agentbox_schema_id", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema", + "target": "apps_extension_chromium_schemas_agentbox_schema_properties", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema", + "target": "apps_extension_chromium_schemas_agentbox_schema_required", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema", + "target": "apps_extension_chromium_schemas_agentbox_schema_schema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L188", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema", + "target": "apps_extension_chromium_schemas_agentbox_schema_schemainfo", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema", + "target": "apps_extension_chromium_schemas_agentbox_schema_title", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema", + "target": "apps_extension_chromium_schemas_agentbox_schema_type", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L7", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_required", + "target": "apps_extension_chromium_schemas_agentbox_schema_json_ref_agentnumber", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L7", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_required", + "target": "apps_extension_chromium_schemas_agentbox_schema_json_ref_boxnumber", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L7", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_required", + "target": "apps_extension_chromium_schemas_agentbox_schema_json_ref_enabled", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L7", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_required", + "target": "apps_extension_chromium_schemas_agentbox_schema_json_ref_id", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L7", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_required", + "target": "apps_extension_chromium_schemas_agentbox_schema_json_ref_identifier", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L7", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_required", + "target": "apps_extension_chromium_schemas_agentbox_schema_json_ref_schemaversion", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L7", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_required", + "target": "apps_extension_chromium_schemas_agentbox_schema_json_ref_title", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L194", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_schemainfo_numericfields", + "target": "apps_extension_chromium_schemas_agentbox_schema_json_ref_boxnumber", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L194", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_schemainfo_numericfields", + "target": "apps_extension_chromium_schemas_agentbox_schema_json_ref_agentnumber", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties", + "target": "apps_extension_chromium_schemas_agentbox_schema_properties_agentid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties", + "target": "apps_extension_chromium_schemas_agentbox_schema_properties_agentnumber", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties", + "target": "apps_extension_chromium_schemas_agentbox_schema_properties_boxnumber", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties", + "target": "apps_extension_chromium_schemas_agentbox_schema_properties_color", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties", + "target": "apps_extension_chromium_schemas_agentbox_schema_properties_enabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties", + "target": "apps_extension_chromium_schemas_agentbox_schema_properties_exportedat", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties", + "target": "apps_extension_chromium_schemas_agentbox_schema_properties_gridsessionid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties", + "target": "apps_extension_chromium_schemas_agentbox_schema_properties_helper", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties", + "target": "apps_extension_chromium_schemas_agentbox_schema_properties_id", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties", + "target": "apps_extension_chromium_schemas_agentbox_schema_properties_identifier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties", + "target": "apps_extension_chromium_schemas_agentbox_schema_properties_locationid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties", + "target": "apps_extension_chromium_schemas_agentbox_schema_properties_locationlabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties", + "target": "apps_extension_chromium_schemas_agentbox_schema_properties_mastertabid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties", + "target": "apps_extension_chromium_schemas_agentbox_schema_properties_model", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties", + "target": "apps_extension_chromium_schemas_agentbox_schema_properties_number", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties", + "target": "apps_extension_chromium_schemas_agentbox_schema_properties_outputid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties", + "target": "apps_extension_chromium_schemas_agentbox_schema_properties_provider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties", + "target": "apps_extension_chromium_schemas_agentbox_schema_properties_schema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties", + "target": "apps_extension_chromium_schemas_agentbox_schema_properties_schemaversion", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties", + "target": "apps_extension_chromium_schemas_agentbox_schema_properties_side", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties", + "target": "apps_extension_chromium_schemas_agentbox_schema_properties_slotid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties", + "target": "apps_extension_chromium_schemas_agentbox_schema_properties_source", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties", + "target": "apps_extension_chromium_schemas_agentbox_schema_properties_tabindex", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties", + "target": "apps_extension_chromium_schemas_agentbox_schema_properties_taburl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties", + "target": "apps_extension_chromium_schemas_agentbox_schema_properties_title", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties", + "target": "apps_extension_chromium_schemas_agentbox_schema_properties_tools", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_schema", + "target": "apps_extension_chromium_schemas_agentbox_schema_schema_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_schema", + "target": "apps_extension_chromium_schemas_agentbox_schema_schema_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_schemaversion", + "target": "apps_extension_chromium_schemas_agentbox_schema_schemaversion_const", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_schemaversion", + "target": "apps_extension_chromium_schemas_agentbox_schema_schemaversion_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_schemaversion", + "target": "apps_extension_chromium_schemas_agentbox_schema_schemaversion_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_exportedat", + "target": "apps_extension_chromium_schemas_agentbox_schema_exportedat_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_exportedat", + "target": "apps_extension_chromium_schemas_agentbox_schema_exportedat_format", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_exportedat", + "target": "apps_extension_chromium_schemas_agentbox_schema_exportedat_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_source", + "target": "apps_extension_chromium_schemas_agentbox_schema_source_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_source", + "target": "apps_extension_chromium_schemas_agentbox_schema_source_enum", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_source", + "target": "apps_extension_chromium_schemas_agentbox_schema_source_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_helper", + "target": "apps_extension_chromium_schemas_agentbox_schema_helper_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_helper", + "target": "apps_extension_chromium_schemas_agentbox_schema_helper_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_id", + "target": "apps_extension_chromium_schemas_agentbox_schema_id_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_id", + "target": "apps_extension_chromium_schemas_agentbox_schema_id_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_boxnumber", + "target": "apps_extension_chromium_schemas_agentbox_schema_boxnumber_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_boxnumber", + "target": "apps_extension_chromium_schemas_agentbox_schema_boxnumber_maximum", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_boxnumber", + "target": "apps_extension_chromium_schemas_agentbox_schema_boxnumber_minimum", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_boxnumber", + "target": "apps_extension_chromium_schemas_agentbox_schema_boxnumber_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_agentnumber", + "target": "apps_extension_chromium_schemas_agentbox_schema_agentnumber_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_agentnumber", + "target": "apps_extension_chromium_schemas_agentbox_schema_agentnumber_maximum", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_agentnumber", + "target": "apps_extension_chromium_schemas_agentbox_schema_agentnumber_minimum", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_agentnumber", + "target": "apps_extension_chromium_schemas_agentbox_schema_agentnumber_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_identifier", + "target": "apps_extension_chromium_schemas_agentbox_schema_identifier_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_identifier", + "target": "apps_extension_chromium_schemas_agentbox_schema_identifier_pattern", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_identifier", + "target": "apps_extension_chromium_schemas_agentbox_schema_identifier_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_agentid", + "target": "apps_extension_chromium_schemas_agentbox_schema_agentid_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_agentid", + "target": "apps_extension_chromium_schemas_agentbox_schema_agentid_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_title", + "target": "apps_extension_chromium_schemas_agentbox_schema_title_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_title", + "target": "apps_extension_chromium_schemas_agentbox_schema_title_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_color", + "target": "apps_extension_chromium_schemas_agentbox_schema_color_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_color", + "target": "apps_extension_chromium_schemas_agentbox_schema_color_pattern", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_color", + "target": "apps_extension_chromium_schemas_agentbox_schema_color_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_enabled", + "target": "apps_extension_chromium_schemas_agentbox_schema_enabled_default", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_enabled", + "target": "apps_extension_chromium_schemas_agentbox_schema_enabled_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_enabled", + "target": "apps_extension_chromium_schemas_agentbox_schema_enabled_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L144", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_llmprovider_properties", + "target": "apps_extension_chromium_schemas_agentbox_schema_properties_provider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_provider", + "target": "apps_extension_chromium_schemas_agentbox_schema_provider_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_provider", + "target": "apps_extension_chromium_schemas_agentbox_schema_provider_enum", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_provider", + "target": "apps_extension_chromium_schemas_agentbox_schema_provider_type", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L146", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_provider_enum", + "target": "apps_extension_chromium_schemas_agentbox_schema_json_ref_claude", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L146", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_provider_enum", + "target": "apps_extension_chromium_schemas_agentbox_schema_json_ref_gemini", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L146", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_provider_enum", + "target": "apps_extension_chromium_schemas_agentbox_schema_json_ref_grok", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L146", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_provider_enum", + "target": "apps_extension_chromium_schemas_agentbox_schema_json_ref_image_ai", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L146", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_provider_enum", + "target": "apps_extension_chromium_schemas_agentbox_schema_json_ref_local_ai", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L146", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_provider_enum", + "target": "apps_extension_chromium_schemas_agentbox_schema_json_ref_openai", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L190", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_enums_provider", + "target": "apps_extension_chromium_schemas_agentbox_schema_json_ref_openai", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L190", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_enums_provider", + "target": "apps_extension_chromium_schemas_agentbox_schema_json_ref_claude", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L190", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_enums_provider", + "target": "apps_extension_chromium_schemas_agentbox_schema_json_ref_gemini", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L190", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_enums_provider", + "target": "apps_extension_chromium_schemas_agentbox_schema_json_ref_grok", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L190", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_enums_provider", + "target": "apps_extension_chromium_schemas_agentbox_schema_json_ref_local_ai", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L190", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_enums_provider", + "target": "apps_extension_chromium_schemas_agentbox_schema_json_ref_image_ai", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_model", + "target": "apps_extension_chromium_schemas_agentbox_schema_model_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_model", + "target": "apps_extension_chromium_schemas_agentbox_schema_model_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_tools", + "target": "apps_extension_chromium_schemas_agentbox_schema_tools_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_tools", + "target": "apps_extension_chromium_schemas_agentbox_schema_tools_items", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_tools", + "target": "apps_extension_chromium_schemas_agentbox_schema_tools_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_tools_items", + "target": "apps_extension_chromium_schemas_agentbox_schema_items_type", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L90", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_source_enum", + "target": "apps_extension_chromium_schemas_agentbox_schema_json_ref_display_grid", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L90", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_source_enum", + "target": "apps_extension_chromium_schemas_agentbox_schema_json_ref_master_tab", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L191", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_enums_source", + "target": "apps_extension_chromium_schemas_agentbox_schema_json_ref_master_tab", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L191", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_enums_source", + "target": "apps_extension_chromium_schemas_agentbox_schema_json_ref_display_grid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_mastertabid", + "target": "apps_extension_chromium_schemas_agentbox_schema_mastertabid_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_mastertabid", + "target": "apps_extension_chromium_schemas_agentbox_schema_mastertabid_pattern", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_mastertabid", + "target": "apps_extension_chromium_schemas_agentbox_schema_mastertabid_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_tabindex", + "target": "apps_extension_chromium_schemas_agentbox_schema_tabindex_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_tabindex", + "target": "apps_extension_chromium_schemas_agentbox_schema_tabindex_minimum", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_tabindex", + "target": "apps_extension_chromium_schemas_agentbox_schema_tabindex_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_side", + "target": "apps_extension_chromium_schemas_agentbox_schema_side_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_side", + "target": "apps_extension_chromium_schemas_agentbox_schema_side_enum", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_side", + "target": "apps_extension_chromium_schemas_agentbox_schema_side_type", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L105", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_side_enum", + "target": "apps_extension_chromium_schemas_agentbox_schema_json_ref_left", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L105", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_side_enum", + "target": "apps_extension_chromium_schemas_agentbox_schema_json_ref_right", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L192", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_enums_side", + "target": "apps_extension_chromium_schemas_agentbox_schema_json_ref_left", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L192", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_enums_side", + "target": "apps_extension_chromium_schemas_agentbox_schema_json_ref_right", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_taburl", + "target": "apps_extension_chromium_schemas_agentbox_schema_taburl_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_taburl", + "target": "apps_extension_chromium_schemas_agentbox_schema_taburl_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_slotid", + "target": "apps_extension_chromium_schemas_agentbox_schema_slotid_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_slotid", + "target": "apps_extension_chromium_schemas_agentbox_schema_slotid_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_gridsessionid", + "target": "apps_extension_chromium_schemas_agentbox_schema_gridsessionid_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_gridsessionid", + "target": "apps_extension_chromium_schemas_agentbox_schema_gridsessionid_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_locationid", + "target": "apps_extension_chromium_schemas_agentbox_schema_locationid_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_locationid", + "target": "apps_extension_chromium_schemas_agentbox_schema_locationid_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_locationlabel", + "target": "apps_extension_chromium_schemas_agentbox_schema_locationlabel_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_locationlabel", + "target": "apps_extension_chromium_schemas_agentbox_schema_locationlabel_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_outputid", + "target": "apps_extension_chromium_schemas_agentbox_schema_outputid_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_outputid", + "target": "apps_extension_chromium_schemas_agentbox_schema_outputid_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_number", + "target": "apps_extension_chromium_schemas_agentbox_schema_number_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_number", + "target": "apps_extension_chromium_schemas_agentbox_schema_number_minimum", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L134", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_number", + "target": "apps_extension_chromium_schemas_agentbox_schema_number_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_defs", + "target": "apps_extension_chromium_schemas_agentbox_schema_defs_llmprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L142", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_defs_llmprovider", + "target": "apps_extension_chromium_schemas_agentbox_schema_llmprovider_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_defs_llmprovider", + "target": "apps_extension_chromium_schemas_agentbox_schema_llmprovider_properties", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_defs_llmprovider", + "target": "apps_extension_chromium_schemas_agentbox_schema_llmprovider_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_llmprovider_properties", + "target": "apps_extension_chromium_schemas_agentbox_schema_properties_models", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L151", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_models", + "target": "apps_extension_chromium_schemas_agentbox_schema_models_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L152", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_models", + "target": "apps_extension_chromium_schemas_agentbox_schema_models_properties", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L150", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_models", + "target": "apps_extension_chromium_schemas_agentbox_schema_models_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L158", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_models_properties", + "target": "apps_extension_chromium_schemas_agentbox_schema_properties_claude", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_models_properties", + "target": "apps_extension_chromium_schemas_agentbox_schema_properties_gemini", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L168", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_models_properties", + "target": "apps_extension_chromium_schemas_agentbox_schema_properties_grok", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L178", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_models_properties", + "target": "apps_extension_chromium_schemas_agentbox_schema_properties_image_ai", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L173", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_models_properties", + "target": "apps_extension_chromium_schemas_agentbox_schema_properties_local_ai", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L153", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_models_properties", + "target": "apps_extension_chromium_schemas_agentbox_schema_properties_openai", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L156", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_openai", + "target": "apps_extension_chromium_schemas_agentbox_schema_openai_default", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L155", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_openai", + "target": "apps_extension_chromium_schemas_agentbox_schema_openai_items", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L154", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_openai", + "target": "apps_extension_chromium_schemas_agentbox_schema_openai_type", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L156", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_openai_default", + "target": "ref_auto", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L156", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_openai_default", + "target": "ref_gpt_4o", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L156", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_openai_default", + "target": "ref_gpt_4o_mini", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L161", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_claude_default", + "target": "ref_auto", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L166", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_gemini_default", + "target": "ref_auto", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L171", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_grok_default", + "target": "ref_auto", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L176", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_local_ai_default", + "target": "ref_auto", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L161", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_claude", + "target": "apps_extension_chromium_schemas_agentbox_schema_claude_default", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L160", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_claude", + "target": "apps_extension_chromium_schemas_agentbox_schema_claude_items", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L159", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_claude", + "target": "apps_extension_chromium_schemas_agentbox_schema_claude_type", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L161", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_claude_default", + "target": "ref_claude_3_5_sonnet", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L161", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_claude_default", + "target": "ref_claude_3_opus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L166", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_gemini", + "target": "apps_extension_chromium_schemas_agentbox_schema_gemini_default", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L165", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_gemini", + "target": "apps_extension_chromium_schemas_agentbox_schema_gemini_items", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_gemini", + "target": "apps_extension_chromium_schemas_agentbox_schema_gemini_type", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L166", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_gemini_default", + "target": "ref_gemini_1_5_flash", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L166", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_gemini_default", + "target": "ref_gemini_1_5_pro", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L171", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_grok", + "target": "apps_extension_chromium_schemas_agentbox_schema_grok_default", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_grok", + "target": "apps_extension_chromium_schemas_agentbox_schema_grok_items", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L169", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_grok", + "target": "apps_extension_chromium_schemas_agentbox_schema_grok_type", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L171", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_grok_default", + "target": "ref_grok_2", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L171", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_grok_default", + "target": "ref_grok_2_mini", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L176", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_local_ai", + "target": "apps_extension_chromium_schemas_agentbox_schema_local_ai_default", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_local_ai", + "target": "apps_extension_chromium_schemas_agentbox_schema_local_ai_items", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_local_ai", + "target": "apps_extension_chromium_schemas_agentbox_schema_local_ai_type", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L176", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_local_ai_default", + "target": "ref_llama3_2", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L176", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_local_ai_default", + "target": "ref_mistral_7b_instruct_q4_0", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L176", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_local_ai_default", + "target": "ref_tinyllama", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L181", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_image_ai", + "target": "apps_extension_chromium_schemas_agentbox_schema_image_ai_default", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L180", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_image_ai", + "target": "apps_extension_chromium_schemas_agentbox_schema_image_ai_items", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L179", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_properties_image_ai", + "target": "apps_extension_chromium_schemas_agentbox_schema_image_ai_type", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L181", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_image_ai_default", + "target": "ref_dall_e_3", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L181", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_image_ai_default", + "target": "ref_flux_schnell", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L181", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_image_ai_default", + "target": "ref_nano_banana_pro", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L195", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_schemainfo", + "target": "apps_extension_chromium_schemas_agentbox_schema_schemainfo_deprecatedfields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L189", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_schemainfo", + "target": "apps_extension_chromium_schemas_agentbox_schema_schemainfo_enums", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L194", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_schemainfo", + "target": "apps_extension_chromium_schemas_agentbox_schema_schemainfo_numericfields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L190", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_schemainfo_enums", + "target": "apps_extension_chromium_schemas_agentbox_schema_enums_provider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L192", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_schemainfo_enums", + "target": "apps_extension_chromium_schemas_agentbox_schema_enums_side", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_schemainfo_enums", + "target": "apps_extension_chromium_schemas_agentbox_schema_enums_source", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L194", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_schemainfo_numericfields", + "target": "apps_extension_chromium_schemas_agentbox_schema_json_ref_number", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L194", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_schemainfo_numericfields", + "target": "ref_tabindex", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.schema.json", + "source_location": "L195", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_schema_schemainfo_deprecatedfields", + "target": "apps_extension_chromium_schemas_agentbox_schema_json_ref_number", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.template.json", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_template", + "target": "apps_extension_chromium_schemas_agentbox_template_agentid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.template.json", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_template", + "target": "apps_extension_chromium_schemas_agentbox_template_agentnumber", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.template.json", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_template", + "target": "apps_extension_chromium_schemas_agentbox_template_boxnumber", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.template.json", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_template", + "target": "apps_extension_chromium_schemas_agentbox_template_color", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.template.json", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_template", + "target": "apps_extension_chromium_schemas_agentbox_template_enabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.template.json", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_template", + "target": "apps_extension_chromium_schemas_agentbox_template_gridsessionid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.template.json", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_template", + "target": "apps_extension_chromium_schemas_agentbox_template_helper", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.template.json", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_template", + "target": "apps_extension_chromium_schemas_agentbox_template_id", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.template.json", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_template", + "target": "apps_extension_chromium_schemas_agentbox_template_identifier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.template.json", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_template", + "target": "apps_extension_chromium_schemas_agentbox_template_locationid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.template.json", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_template", + "target": "apps_extension_chromium_schemas_agentbox_template_locationlabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.template.json", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_template", + "target": "apps_extension_chromium_schemas_agentbox_template_mastertabid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.template.json", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_template", + "target": "apps_extension_chromium_schemas_agentbox_template_model", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.template.json", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_template", + "target": "apps_extension_chromium_schemas_agentbox_template_provider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.template.json", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_template", + "target": "apps_extension_chromium_schemas_agentbox_template_schema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.template.json", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_template", + "target": "apps_extension_chromium_schemas_agentbox_template_schemaversion", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.template.json", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_template", + "target": "apps_extension_chromium_schemas_agentbox_template_side", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.template.json", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_template", + "target": "apps_extension_chromium_schemas_agentbox_template_slotid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.template.json", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_template", + "target": "apps_extension_chromium_schemas_agentbox_template_source", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.template.json", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_template", + "target": "apps_extension_chromium_schemas_agentbox_template_tabindex", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.template.json", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_template", + "target": "apps_extension_chromium_schemas_agentbox_template_title", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/agentbox.template.json", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_agentbox_template", + "target": "apps_extension_chromium_schemas_agentbox_template_tools", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent", + "target": "apps_extension_chromium_schemas_example_agent_agentcontextfiles", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent", + "target": "apps_extension_chromium_schemas_example_agent_capabilities", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent", + "target": "apps_extension_chromium_schemas_example_agent_contextsettings", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent", + "target": "apps_extension_chromium_schemas_example_agent_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent", + "target": "apps_extension_chromium_schemas_example_agent_enabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent", + "target": "apps_extension_chromium_schemas_example_agent_executionsections", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent", + "target": "apps_extension_chromium_schemas_example_agent_exportedat", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent", + "target": "apps_extension_chromium_schemas_example_agent_helper", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent", + "target": "apps_extension_chromium_schemas_example_agent_icon", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent", + "target": "apps_extension_chromium_schemas_example_agent_id", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent", + "target": "apps_extension_chromium_schemas_example_agent_listening", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent", + "target": "apps_extension_chromium_schemas_example_agent_memorysettings", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent", + "target": "apps_extension_chromium_schemas_example_agent_name", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent", + "target": "apps_extension_chromium_schemas_example_agent_number", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent", + "target": "apps_extension_chromium_schemas_example_agent_reasoningsections", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent", + "target": "apps_extension_chromium_schemas_example_agent_schema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent", + "target": "apps_extension_chromium_schemas_example_agent_schemainfo", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent", + "target": "apps_extension_chromium_schemas_example_agent_schemaversion", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent", + "target": "apps_extension_chromium_schemas_example_agent_source", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L13", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_capabilities", + "target": "apps_extension_chromium_schemas_example_agent_json_ref_execution", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L13", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_capabilities", + "target": "apps_extension_chromium_schemas_example_agent_json_ref_listening", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L13", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_capabilities", + "target": "apps_extension_chromium_schemas_example_agent_json_ref_reasoning", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L131", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_schemainfo_deprecatedfields", + "target": "apps_extension_chromium_schemas_example_agent_json_ref_reasoning", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L131", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_schemainfo_deprecatedfields", + "target": "apps_extension_chromium_schemas_example_agent_json_ref_execution", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_contextsettings", + "target": "apps_extension_chromium_schemas_example_agent_contextsettings_accountcontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_contextsettings", + "target": "apps_extension_chromium_schemas_example_agent_contextsettings_agentcontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_contextsettings", + "target": "apps_extension_chromium_schemas_example_agent_contextsettings_sessioncontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_memorysettings", + "target": "apps_extension_chromium_schemas_example_agent_memorysettings_accountenabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_memorysettings", + "target": "apps_extension_chromium_schemas_example_agent_memorysettings_agentenabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_memorysettings", + "target": "apps_extension_chromium_schemas_example_agent_memorysettings_sessionenabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_listening", + "target": "apps_extension_chromium_schemas_example_agent_listening_examplefiles", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_listening", + "target": "apps_extension_chromium_schemas_example_agent_listening_expectedcontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_listening", + "target": "apps_extension_chromium_schemas_example_agent_listening_sources", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_listening", + "target": "apps_extension_chromium_schemas_example_agent_listening_tags", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_listening", + "target": "apps_extension_chromium_schemas_example_agent_listening_unifiedtriggers", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_listening", + "target": "apps_extension_chromium_schemas_example_agent_listening_website", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L26", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_listening_tags", + "target": "ref_analysis", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L26", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_listening_tags", + "target": "ref_knowledge", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L27", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_listening_sources", + "target": "apps_extension_chromium_schemas_example_agent_json_ref_dom", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L123", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_enums_listening_sources", + "target": "apps_extension_chromium_schemas_example_agent_json_ref_dom", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_schemainfo", + "target": "apps_extension_chromium_schemas_example_agent_schemainfo_deprecatedfields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_schemainfo", + "target": "apps_extension_chromium_schemas_example_agent_schemainfo_enums", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_schemainfo", + "target": "apps_extension_chromium_schemas_example_agent_schemainfo_numericfields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_schemainfo_enums", + "target": "apps_extension_chromium_schemas_example_agent_enums_destination_kind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_schemainfo_enums", + "target": "apps_extension_chromium_schemas_example_agent_enums_executionsection_executionmode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_schemainfo_enums", + "target": "apps_extension_chromium_schemas_example_agent_enums_listening_sources", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_schemainfo_enums", + "target": "apps_extension_chromium_schemas_example_agent_enums_trigger_parsertrigger", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_schemainfo_enums", + "target": "apps_extension_chromium_schemas_example_agent_enums_trigger_responsereadymode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_schemainfo_enums", + "target": "apps_extension_chromium_schemas_example_agent_enums_trigger_type", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L123", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_enums_listening_sources", + "target": "apps_extension_chromium_schemas_example_agent_json_ref_agent", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L123", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_enums_listening_sources", + "target": "apps_extension_chromium_schemas_example_agent_json_ref_all", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L123", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_enums_listening_sources", + "target": "apps_extension_chromium_schemas_example_agent_json_ref_api", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L123", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_enums_listening_sources", + "target": "apps_extension_chromium_schemas_example_agent_json_ref_chat", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L123", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_enums_listening_sources", + "target": "apps_extension_chromium_schemas_example_agent_json_ref_docs", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L123", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_enums_listening_sources", + "target": "apps_extension_chromium_schemas_example_agent_json_ref_email", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L123", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_enums_listening_sources", + "target": "apps_extension_chromium_schemas_example_agent_json_ref_pdf", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L123", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_enums_listening_sources", + "target": "apps_extension_chromium_schemas_example_agent_json_ref_screenshot", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L123", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_enums_listening_sources", + "target": "apps_extension_chromium_schemas_example_agent_json_ref_stream", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L123", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_enums_listening_sources", + "target": "apps_extension_chromium_schemas_example_agent_json_ref_video", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L123", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_enums_listening_sources", + "target": "apps_extension_chromium_schemas_example_agent_json_ref_voice", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L123", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_enums_listening_sources", + "target": "apps_extension_chromium_schemas_example_agent_json_ref_voicememo", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L123", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_enums_listening_sources", + "target": "apps_extension_chromium_schemas_example_agent_json_ref_whatsapp", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L123", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_enums_listening_sources", + "target": "apps_extension_chromium_schemas_example_agent_json_ref_workflow", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L128", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_enums_destination_kind", + "target": "apps_extension_chromium_schemas_example_agent_json_ref_chat", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L128", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_enums_destination_kind", + "target": "apps_extension_chromium_schemas_example_agent_json_ref_email", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L125", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_enums_trigger_type", + "target": "apps_extension_chromium_schemas_example_agent_json_ref_agent", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L124", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_enums_executionsection_executionmode", + "target": "apps_extension_chromium_schemas_example_agent_json_ref_agent_workflow", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L124", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_enums_executionsection_executionmode", + "target": "apps_extension_chromium_schemas_example_agent_json_ref_direct_response", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L124", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_enums_executionsection_executionmode", + "target": "apps_extension_chromium_schemas_example_agent_json_ref_hybrid", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L124", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_enums_executionsection_executionmode", + "target": "apps_extension_chromium_schemas_example_agent_json_ref_workflow_only", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L125", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_enums_trigger_type", + "target": "apps_extension_chromium_schemas_example_agent_json_ref_augmented_overlay", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L125", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_enums_trigger_type", + "target": "apps_extension_chromium_schemas_example_agent_json_ref_direct_tag", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L125", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_enums_trigger_type", + "target": "apps_extension_chromium_schemas_example_agent_json_ref_dom_event", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L125", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_enums_trigger_type", + "target": "apps_extension_chromium_schemas_example_agent_json_ref_dom_parser", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L125", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_enums_trigger_type", + "target": "apps_extension_chromium_schemas_example_agent_json_ref_manual", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L125", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_enums_trigger_type", + "target": "apps_extension_chromium_schemas_example_agent_json_ref_miniapp", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L125", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_enums_trigger_type", + "target": "apps_extension_chromium_schemas_example_agent_json_ref_tag_and_condition", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L125", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_enums_trigger_type", + "target": "apps_extension_chromium_schemas_example_agent_json_ref_workflow_condition", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L126", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_enums_trigger_parsertrigger", + "target": "apps_extension_chromium_schemas_example_agent_json_ref_manual", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L126", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_enums_trigger_parsertrigger", + "target": "apps_extension_chromium_schemas_example_agent_json_ref_button_click", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L126", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_enums_trigger_parsertrigger", + "target": "apps_extension_chromium_schemas_example_agent_json_ref_dom_change", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L126", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_enums_trigger_parsertrigger", + "target": "apps_extension_chromium_schemas_example_agent_json_ref_interval", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L126", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_enums_trigger_parsertrigger", + "target": "apps_extension_chromium_schemas_example_agent_json_ref_page_load", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L127", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_enums_trigger_responsereadymode", + "target": "apps_extension_chromium_schemas_example_agent_json_ref_first_change", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L127", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_enums_trigger_responsereadymode", + "target": "apps_extension_chromium_schemas_example_agent_json_ref_quiet_period", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L127", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_enums_trigger_responsereadymode", + "target": "apps_extension_chromium_schemas_example_agent_json_ref_selector_signal", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L128", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_enums_destination_kind", + "target": "apps_extension_chromium_schemas_example_agent_json_ref_agentbox", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L128", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_enums_destination_kind", + "target": "apps_extension_chromium_schemas_example_agent_json_ref_notification", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L128", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_enums_destination_kind", + "target": "apps_extension_chromium_schemas_example_agent_json_ref_storage", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L128", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_enums_destination_kind", + "target": "apps_extension_chromium_schemas_example_agent_json_ref_webhook", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L130", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_schemainfo_numericfields", + "target": "apps_extension_chromium_schemas_example_agent_json_ref_maxwaittimems", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L130", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_schemainfo_numericfields", + "target": "apps_extension_chromium_schemas_example_agent_json_ref_number", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L130", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_schemainfo_numericfields", + "target": "apps_extension_chromium_schemas_example_agent_json_ref_parserinterval", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L130", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_schemainfo_numericfields", + "target": "apps_extension_chromium_schemas_example_agent_json_ref_quietperiodms", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L131", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_schemainfo_deprecatedfields", + "target": "ref_activeenabled", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L131", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_schemainfo_deprecatedfields", + "target": "ref_applyfor", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L131", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_schemainfo_deprecatedfields", + "target": "ref_passiveenabled", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L131", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_schemainfo_deprecatedfields", + "target": "ref_specialdestinations", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L131", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_schemainfo_deprecatedfields", + "target": "ref_triggers", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/example-agent.json", + "source_location": "L131", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_example_agent_schemainfo_deprecatedfields", + "target": "ref_workflows", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema", + "target": "apps_extension_chromium_schemas_optimando_schema_defs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema", + "target": "apps_extension_chromium_schemas_optimando_schema_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema", + "target": "apps_extension_chromium_schemas_optimando_schema_id", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema", + "target": "apps_extension_chromium_schemas_optimando_schema_properties", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema", + "target": "apps_extension_chromium_schemas_optimando_schema_schema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L377", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema", + "target": "apps_extension_chromium_schemas_optimando_schema_schemainfo", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema", + "target": "apps_extension_chromium_schemas_optimando_schema_title", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema", + "target": "apps_extension_chromium_schemas_optimando_schema_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_agentboxes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_agents", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_connectioninfo", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_exportedat", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_helper", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_miniapps", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_schema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_schemaversion", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_source", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_schema", + "target": "apps_extension_chromium_schemas_optimando_schema_schema_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_schema", + "target": "apps_extension_chromium_schemas_optimando_schema_schema_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_schemaversion", + "target": "apps_extension_chromium_schemas_optimando_schema_schemaversion_const", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_schemaversion", + "target": "apps_extension_chromium_schemas_optimando_schema_schemaversion_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_schemaversion", + "target": "apps_extension_chromium_schemas_optimando_schema_schemaversion_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_exportedat", + "target": "apps_extension_chromium_schemas_optimando_schema_exportedat_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_exportedat", + "target": "apps_extension_chromium_schemas_optimando_schema_exportedat_format", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_exportedat", + "target": "apps_extension_chromium_schemas_optimando_schema_exportedat_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L210", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_agentbox_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_source", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_source", + "target": "apps_extension_chromium_schemas_optimando_schema_source_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L212", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_source", + "target": "apps_extension_chromium_schemas_optimando_schema_source_enum", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L211", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_source", + "target": "apps_extension_chromium_schemas_optimando_schema_source_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_helper", + "target": "apps_extension_chromium_schemas_optimando_schema_helper_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_helper", + "target": "apps_extension_chromium_schemas_optimando_schema_helper_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L357", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_destination_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_agents", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L359", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_agents", + "target": "apps_extension_chromium_schemas_optimando_schema_agents_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L360", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_agents", + "target": "apps_extension_chromium_schemas_optimando_schema_agents_items", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L358", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_agents", + "target": "apps_extension_chromium_schemas_optimando_schema_agents_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L360", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_agents_items", + "target": "apps_extension_chromium_schemas_optimando_schema_items_pattern", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_agents_items", + "target": "apps_extension_chromium_schemas_optimando_schema_items_ref", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L360", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_agents_items", + "target": "apps_extension_chromium_schemas_optimando_schema_items_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_agentboxes_items", + "target": "apps_extension_chromium_schemas_optimando_schema_items_ref", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L339", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_destinations_items", + "target": "apps_extension_chromium_schemas_optimando_schema_items_ref", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_executionsections_items", + "target": "apps_extension_chromium_schemas_optimando_schema_items_ref", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L343", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_executionworkflows_items", + "target": "apps_extension_chromium_schemas_optimando_schema_items_ref", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_miniapps_items", + "target": "apps_extension_chromium_schemas_optimando_schema_items_ref", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_reasoningsections_items", + "target": "apps_extension_chromium_schemas_optimando_schema_items_ref", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L318", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_reasoningworkflows_items", + "target": "apps_extension_chromium_schemas_optimando_schema_items_ref", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_agentboxes", + "target": "apps_extension_chromium_schemas_optimando_schema_agentboxes_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_agentboxes", + "target": "apps_extension_chromium_schemas_optimando_schema_agentboxes_items", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_agentboxes", + "target": "apps_extension_chromium_schemas_optimando_schema_agentboxes_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_miniapps", + "target": "apps_extension_chromium_schemas_optimando_schema_miniapps_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_miniapps", + "target": "apps_extension_chromium_schemas_optimando_schema_miniapps_items", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_miniapps", + "target": "apps_extension_chromium_schemas_optimando_schema_miniapps_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_connectioninfo", + "target": "apps_extension_chromium_schemas_optimando_schema_connectioninfo_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_connectioninfo", + "target": "apps_extension_chromium_schemas_optimando_schema_connectioninfo_properties", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_connectioninfo", + "target": "apps_extension_chromium_schemas_optimando_schema_connectioninfo_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_connectioninfo_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_agenttoboxmapping", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_agenttoboxmapping", + "target": "apps_extension_chromium_schemas_optimando_schema_agenttoboxmapping_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_agenttoboxmapping", + "target": "apps_extension_chromium_schemas_optimando_schema_agenttoboxmapping_items", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_agenttoboxmapping", + "target": "apps_extension_chromium_schemas_optimando_schema_agenttoboxmapping_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_agenttoboxmapping_items", + "target": "apps_extension_chromium_schemas_optimando_schema_items_properties", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_agenttoboxmapping_items", + "target": "apps_extension_chromium_schemas_optimando_schema_items_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L309", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_acceptfrom_items", + "target": "apps_extension_chromium_schemas_optimando_schema_items_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L329", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_applyforlist_items", + "target": "apps_extension_chromium_schemas_optimando_schema_items_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L267", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_buttonselectors_items", + "target": "apps_extension_chromium_schemas_optimando_schema_items_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_capabilities_items", + "target": "apps_extension_chromium_schemas_optimando_schema_items_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L308", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_custom_items", + "target": "apps_extension_chromium_schemas_optimando_schema_items_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L272", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_inputselectors_items", + "target": "apps_extension_chromium_schemas_optimando_schema_items_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L284", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_metaselectors_items", + "target": "apps_extension_chromium_schemas_optimando_schema_items_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L274", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_outputselectors_items", + "target": "apps_extension_chromium_schemas_optimando_schema_items_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L266", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_sitefilters_items", + "target": "apps_extension_chromium_schemas_optimando_schema_items_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L207", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_tools_items", + "target": "apps_extension_chromium_schemas_optimando_schema_items_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_items_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_agentid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_items_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_agentnumber", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_items_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_boxidentifiers", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L168", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_agentbox_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_agentnumber", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_agentnumber", + "target": "apps_extension_chromium_schemas_optimando_schema_agentnumber_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L172", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_agentnumber", + "target": "apps_extension_chromium_schemas_optimando_schema_agentnumber_maximum", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L171", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_agentnumber", + "target": "apps_extension_chromium_schemas_optimando_schema_agentnumber_minimum", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L169", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_agentnumber", + "target": "apps_extension_chromium_schemas_optimando_schema_agentnumber_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L179", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_agentbox_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_agentid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L181", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_agentid", + "target": "apps_extension_chromium_schemas_optimando_schema_agentid_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L180", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_agentid", + "target": "apps_extension_chromium_schemas_optimando_schema_agentid_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_defs", + "target": "apps_extension_chromium_schemas_optimando_schema_defs_agent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L153", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_defs", + "target": "apps_extension_chromium_schemas_optimando_schema_defs_agentbox", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L348", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_defs", + "target": "apps_extension_chromium_schemas_optimando_schema_defs_destination", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L322", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_defs", + "target": "apps_extension_chromium_schemas_optimando_schema_defs_executionsection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L229", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_defs", + "target": "apps_extension_chromium_schemas_optimando_schema_defs_miniapp", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L296", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_defs", + "target": "apps_extension_chromium_schemas_optimando_schema_defs_reasoningsection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L242", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_defs", + "target": "apps_extension_chromium_schemas_optimando_schema_defs_trigger", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L367", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_defs", + "target": "apps_extension_chromium_schemas_optimando_schema_defs_workflow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_defs_agent", + "target": "apps_extension_chromium_schemas_optimando_schema_agent_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_defs_agent", + "target": "apps_extension_chromium_schemas_optimando_schema_agent_properties", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_defs_agent", + "target": "apps_extension_chromium_schemas_optimando_schema_agent_required", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_defs_agent", + "target": "apps_extension_chromium_schemas_optimando_schema_agent_type", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L73", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_agent_required", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_capabilities", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L73", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_agent_required", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_enabled", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L73", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_agent_required", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_id", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L73", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_agent_required", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_name", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L156", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_agentbox_required", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_id", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L245", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_trigger_required", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_id", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L156", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_agentbox_required", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_enabled", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L245", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_trigger_required", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_enabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_agent_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_capabilities", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_agent_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_contextsettings", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_agent_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_agent_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_enabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_agent_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_executionsections", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_agent_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_icon", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_agent_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_id", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_agent_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_listening", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_agent_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_memorysettings", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_agent_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_name", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_agent_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_number", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_agent_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_reasoningsections", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L158", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_agentbox_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_id", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L233", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_miniapp_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_id", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L247", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_id", + "target": "apps_extension_chromium_schemas_optimando_schema_id_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L247", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_id", + "target": "apps_extension_chromium_schemas_optimando_schema_id_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L247", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_id", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L234", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_miniapp_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_name", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_name", + "target": "apps_extension_chromium_schemas_optimando_schema_name_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L234", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_name", + "target": "apps_extension_chromium_schemas_optimando_schema_name_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L235", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_miniapp_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_description", + "target": "apps_extension_chromium_schemas_optimando_schema_description_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L235", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_description", + "target": "apps_extension_chromium_schemas_optimando_schema_description_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_icon", + "target": "apps_extension_chromium_schemas_optimando_schema_icon_default", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_icon", + "target": "apps_extension_chromium_schemas_optimando_schema_icon_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_icon", + "target": "apps_extension_chromium_schemas_optimando_schema_icon_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_number", + "target": "apps_extension_chromium_schemas_optimando_schema_number_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_number", + "target": "apps_extension_chromium_schemas_optimando_schema_number_maximum", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_number", + "target": "apps_extension_chromium_schemas_optimando_schema_number_minimum", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_number", + "target": "apps_extension_chromium_schemas_optimando_schema_number_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L192", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_agentbox_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_enabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L236", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_miniapp_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_enabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L253", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_enabled", + "target": "apps_extension_chromium_schemas_optimando_schema_enabled_default", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L253", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_enabled", + "target": "apps_extension_chromium_schemas_optimando_schema_enabled_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L253", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_enabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_capabilities", + "target": "apps_extension_chromium_schemas_optimando_schema_capabilities_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_capabilities", + "target": "apps_extension_chromium_schemas_optimando_schema_capabilities_items", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_capabilities", + "target": "apps_extension_chromium_schemas_optimando_schema_capabilities_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_capabilities_items", + "target": "apps_extension_chromium_schemas_optimando_schema_items_enum", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L104", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_items_enum", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_execution", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L104", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_items_enum", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_listening", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L104", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_items_enum", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_reasoning", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L379", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_enums_agent_capabilities", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_listening", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L379", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_enums_agent_capabilities", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_reasoning", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L379", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_enums_agent_capabilities", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_execution", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_contextsettings", + "target": "apps_extension_chromium_schemas_optimando_schema_contextsettings_properties", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_contextsettings", + "target": "apps_extension_chromium_schemas_optimando_schema_contextsettings_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_contextsettings_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_accountcontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_contextsettings_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_agentcontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_contextsettings_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_sessioncontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_agentcontext", + "target": "apps_extension_chromium_schemas_optimando_schema_agentcontext_default", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_agentcontext", + "target": "apps_extension_chromium_schemas_optimando_schema_agentcontext_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_sessioncontext", + "target": "apps_extension_chromium_schemas_optimando_schema_sessioncontext_default", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_sessioncontext", + "target": "apps_extension_chromium_schemas_optimando_schema_sessioncontext_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_accountcontext", + "target": "apps_extension_chromium_schemas_optimando_schema_accountcontext_default", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_accountcontext", + "target": "apps_extension_chromium_schemas_optimando_schema_accountcontext_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_memorysettings", + "target": "apps_extension_chromium_schemas_optimando_schema_memorysettings_properties", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_memorysettings", + "target": "apps_extension_chromium_schemas_optimando_schema_memorysettings_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_memorysettings_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_accountenabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_memorysettings_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_agentenabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_memorysettings_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_sessionenabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L313", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_memorycontext_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_agentenabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L313", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_agentenabled", + "target": "apps_extension_chromium_schemas_optimando_schema_agentenabled_default", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L313", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_agentenabled", + "target": "apps_extension_chromium_schemas_optimando_schema_agentenabled_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L314", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_memorycontext_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_sessionenabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L314", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_sessionenabled", + "target": "apps_extension_chromium_schemas_optimando_schema_sessionenabled_default", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L314", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_sessionenabled", + "target": "apps_extension_chromium_schemas_optimando_schema_sessionenabled_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L315", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_memorycontext_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_accountenabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L315", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_accountenabled", + "target": "apps_extension_chromium_schemas_optimando_schema_accountenabled_default", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L315", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_accountenabled", + "target": "apps_extension_chromium_schemas_optimando_schema_accountenabled_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_listening", + "target": "apps_extension_chromium_schemas_optimando_schema_listening_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_listening", + "target": "apps_extension_chromium_schemas_optimando_schema_listening_properties", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_listening", + "target": "apps_extension_chromium_schemas_optimando_schema_listening_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_listening_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_expectedcontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_listening_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_sources", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_listening_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_tags", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L134", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_listening_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_unifiedtriggers", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_listening_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_website", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_expectedcontext", + "target": "apps_extension_chromium_schemas_optimando_schema_expectedcontext_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_tags", + "target": "apps_extension_chromium_schemas_optimando_schema_tags_items", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_tags", + "target": "apps_extension_chromium_schemas_optimando_schema_tags_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_sources", + "target": "apps_extension_chromium_schemas_optimando_schema_sources_items", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_sources", + "target": "apps_extension_chromium_schemas_optimando_schema_sources_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_website", + "target": "apps_extension_chromium_schemas_optimando_schema_website_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_unifiedtriggers", + "target": "apps_extension_chromium_schemas_optimando_schema_unifiedtriggers_items", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_unifiedtriggers", + "target": "apps_extension_chromium_schemas_optimando_schema_unifiedtriggers_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L142", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_reasoningsections", + "target": "apps_extension_chromium_schemas_optimando_schema_reasoningsections_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_reasoningsections", + "target": "apps_extension_chromium_schemas_optimando_schema_reasoningsections_items", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_reasoningsections", + "target": "apps_extension_chromium_schemas_optimando_schema_reasoningsections_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_executionsections", + "target": "apps_extension_chromium_schemas_optimando_schema_executionsections_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_executionsections", + "target": "apps_extension_chromium_schemas_optimando_schema_executionsections_items", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_executionsections", + "target": "apps_extension_chromium_schemas_optimando_schema_executionsections_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L155", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_defs_agentbox", + "target": "apps_extension_chromium_schemas_optimando_schema_agentbox_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L157", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_defs_agentbox", + "target": "apps_extension_chromium_schemas_optimando_schema_agentbox_properties", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L156", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_defs_agentbox", + "target": "apps_extension_chromium_schemas_optimando_schema_agentbox_required", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L154", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_defs_agentbox", + "target": "apps_extension_chromium_schemas_optimando_schema_agentbox_type", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L156", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_agentbox_required", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_agentnumber", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L156", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_agentbox_required", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_boxnumber", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L156", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_agentbox_required", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_identifier", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L156", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_agentbox_required", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_title", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_agentbox_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_boxnumber", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L187", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_agentbox_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_color", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_agentbox_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_identifier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L214", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_agentbox_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_mastertabid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L201", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_agentbox_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_model", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L196", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_agentbox_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_provider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L222", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_agentbox_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_side", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L218", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_agentbox_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_tabindex", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L183", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_agentbox_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_title", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L205", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_agentbox_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_tools", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_boxnumber", + "target": "apps_extension_chromium_schemas_optimando_schema_boxnumber_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L166", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_boxnumber", + "target": "apps_extension_chromium_schemas_optimando_schema_boxnumber_maximum", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L165", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_boxnumber", + "target": "apps_extension_chromium_schemas_optimando_schema_boxnumber_minimum", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_boxnumber", + "target": "apps_extension_chromium_schemas_optimando_schema_boxnumber_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L176", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_identifier", + "target": "apps_extension_chromium_schemas_optimando_schema_identifier_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L177", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_identifier", + "target": "apps_extension_chromium_schemas_optimando_schema_identifier_pattern", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_identifier", + "target": "apps_extension_chromium_schemas_optimando_schema_identifier_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L185", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_title", + "target": "apps_extension_chromium_schemas_optimando_schema_title_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L184", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_title", + "target": "apps_extension_chromium_schemas_optimando_schema_title_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L189", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_color", + "target": "apps_extension_chromium_schemas_optimando_schema_color_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L190", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_color", + "target": "apps_extension_chromium_schemas_optimando_schema_color_pattern", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L188", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_color", + "target": "apps_extension_chromium_schemas_optimando_schema_color_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_provider", + "target": "apps_extension_chromium_schemas_optimando_schema_provider_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L198", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_provider", + "target": "apps_extension_chromium_schemas_optimando_schema_provider_enum", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L197", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_provider", + "target": "apps_extension_chromium_schemas_optimando_schema_provider_type", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L198", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_provider_enum", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_claude", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L198", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_provider_enum", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_gemini", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L198", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_provider_enum", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_grok", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L198", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_provider_enum", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_image_ai", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L198", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_provider_enum", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_local_ai", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L198", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_provider_enum", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_openai", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L386", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_enums_agentbox_provider", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_openai", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L386", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_enums_agentbox_provider", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_claude", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L386", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_enums_agentbox_provider", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_gemini", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L386", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_enums_agentbox_provider", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_grok", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L386", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_enums_agentbox_provider", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_local_ai", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L386", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_enums_agentbox_provider", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_image_ai", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L203", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_model", + "target": "apps_extension_chromium_schemas_optimando_schema_model_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L202", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_model", + "target": "apps_extension_chromium_schemas_optimando_schema_model_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L208", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_tools", + "target": "apps_extension_chromium_schemas_optimando_schema_tools_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L207", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_tools", + "target": "apps_extension_chromium_schemas_optimando_schema_tools_items", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L206", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_tools", + "target": "apps_extension_chromium_schemas_optimando_schema_tools_type", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L212", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_source_enum", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_display_grid", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L212", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_source_enum", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_master_tab", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L387", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_enums_agentbox_source", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_master_tab", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L387", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_enums_agentbox_source", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_display_grid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L216", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_mastertabid", + "target": "apps_extension_chromium_schemas_optimando_schema_mastertabid_pattern", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L215", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_mastertabid", + "target": "apps_extension_chromium_schemas_optimando_schema_mastertabid_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L220", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_tabindex", + "target": "apps_extension_chromium_schemas_optimando_schema_tabindex_minimum", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L219", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_tabindex", + "target": "apps_extension_chromium_schemas_optimando_schema_tabindex_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L224", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_side", + "target": "apps_extension_chromium_schemas_optimando_schema_side_enum", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L223", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_side", + "target": "apps_extension_chromium_schemas_optimando_schema_side_type", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L224", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_side_enum", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_left", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L224", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_side_enum", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_right", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L388", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_enums_agentbox_side", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_left", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L388", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_enums_agentbox_side", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_right", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L231", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_defs_miniapp", + "target": "apps_extension_chromium_schemas_optimando_schema_miniapp_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L232", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_defs_miniapp", + "target": "apps_extension_chromium_schemas_optimando_schema_miniapp_properties", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L230", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_defs_miniapp", + "target": "apps_extension_chromium_schemas_optimando_schema_miniapp_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L238", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_miniapp_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_config", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L237", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_miniapp_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L251", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_type", + "target": "apps_extension_chromium_schemas_optimando_schema_type_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L370", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_type", + "target": "apps_extension_chromium_schemas_optimando_schema_type_enum", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L370", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_type", + "target": "apps_extension_chromium_schemas_optimando_schema_type_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L248", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L370", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_workflow_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L372", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_config", + "target": "apps_extension_chromium_schemas_optimando_schema_config_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L372", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_workflow_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_config", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L244", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_defs_trigger", + "target": "apps_extension_chromium_schemas_optimando_schema_trigger_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L246", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_defs_trigger", + "target": "apps_extension_chromium_schemas_optimando_schema_trigger_properties", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L245", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_defs_trigger", + "target": "apps_extension_chromium_schemas_optimando_schema_trigger_required", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L243", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_defs_trigger", + "target": "apps_extension_chromium_schemas_optimando_schema_trigger_type", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L245", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_trigger_required", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L268", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_autodetectselectors", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L267", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_buttonselectors", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L271", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_captureinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L273", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_captureoutput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L283", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_capturepagetitle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L282", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_captureurl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L255", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_channel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L257", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_domevent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L265", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_domparseselector", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L264", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_domparsetarget", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L256", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_domselector", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L258", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_domurlfilter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L270", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_enterkeyignoreshift", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L272", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_inputselectors", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L281", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_maxwaittimems", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L284", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_metaselectors", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L274", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_outputselectors", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L289", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_overlaymodebutton", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L291", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_overlaymodeelement", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L290", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_overlaymodeempty", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L292", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_overlaymodeselection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L288", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_overlaytriggername", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L263", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_parserinterval", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L259", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_parsertrigger", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L279", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_quietperiodms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L275", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_responsereadymode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L280", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_responsesignalselector", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L287", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_sanitizeremoveboilerplate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L286", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_sanitizestripmarkdown", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L285", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_sanitizetrim", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L266", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_sitefilters", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L254", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_tag", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L269", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_trigger_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_triggeronenterkey", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L250", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_type_enum", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_agent", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L250", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_type_enum", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_augmented_overlay", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L250", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_type_enum", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_direct_tag", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L250", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_type_enum", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_dom_event", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L250", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_type_enum", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_dom_parser", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L250", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_type_enum", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_manual", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L250", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_type_enum", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_miniapp", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L250", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_type_enum", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_tag_and_condition", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L250", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_type_enum", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_workflow_condition", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L370", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_type_enum", + "target": "ref_external", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L370", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_type_enum", + "target": "ref_internal", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L381", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_enums_trigger_type", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_direct_tag", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L381", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_enums_trigger_type", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_tag_and_condition", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L381", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_enums_trigger_type", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_workflow_condition", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L381", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_enums_trigger_type", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_dom_event", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L381", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_enums_trigger_type", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_dom_parser", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L381", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_enums_trigger_type", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_augmented_overlay", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L380", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_enums_agent_listening_sources", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_agent", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L381", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_enums_trigger_type", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_agent", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L381", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_enums_trigger_type", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_miniapp", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L382", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_enums_trigger_parsertrigger", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_manual", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L381", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_enums_trigger_type", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_manual", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L261", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_parsertrigger_enum", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_manual", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L254", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_tag", + "target": "apps_extension_chromium_schemas_optimando_schema_tag_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L255", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_channel", + "target": "apps_extension_chromium_schemas_optimando_schema_channel_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L256", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_domselector", + "target": "apps_extension_chromium_schemas_optimando_schema_domselector_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L257", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_domevent", + "target": "apps_extension_chromium_schemas_optimando_schema_domevent_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L258", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_domurlfilter", + "target": "apps_extension_chromium_schemas_optimando_schema_domurlfilter_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L261", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_parsertrigger", + "target": "apps_extension_chromium_schemas_optimando_schema_parsertrigger_enum", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L260", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_parsertrigger", + "target": "apps_extension_chromium_schemas_optimando_schema_parsertrigger_type", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L261", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_parsertrigger_enum", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_button_click", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L261", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_parsertrigger_enum", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_dom_change", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L261", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_parsertrigger_enum", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_interval", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L261", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_parsertrigger_enum", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_page_load", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L382", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_enums_trigger_parsertrigger", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_page_load", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L382", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_enums_trigger_parsertrigger", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_dom_change", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L382", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_enums_trigger_parsertrigger", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_interval", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L382", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_enums_trigger_parsertrigger", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_button_click", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L263", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_parserinterval", + "target": "apps_extension_chromium_schemas_optimando_schema_parserinterval_default", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L263", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_parserinterval", + "target": "apps_extension_chromium_schemas_optimando_schema_parserinterval_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L264", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_domparsetarget", + "target": "apps_extension_chromium_schemas_optimando_schema_domparsetarget_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L265", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_domparseselector", + "target": "apps_extension_chromium_schemas_optimando_schema_domparseselector_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L266", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_sitefilters", + "target": "apps_extension_chromium_schemas_optimando_schema_sitefilters_items", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L266", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_sitefilters", + "target": "apps_extension_chromium_schemas_optimando_schema_sitefilters_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L267", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_buttonselectors", + "target": "apps_extension_chromium_schemas_optimando_schema_buttonselectors_items", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L267", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_buttonselectors", + "target": "apps_extension_chromium_schemas_optimando_schema_buttonselectors_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L268", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_autodetectselectors", + "target": "apps_extension_chromium_schemas_optimando_schema_autodetectselectors_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L269", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_triggeronenterkey", + "target": "apps_extension_chromium_schemas_optimando_schema_triggeronenterkey_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L270", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_enterkeyignoreshift", + "target": "apps_extension_chromium_schemas_optimando_schema_enterkeyignoreshift_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L271", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_captureinput", + "target": "apps_extension_chromium_schemas_optimando_schema_captureinput_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L272", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_inputselectors", + "target": "apps_extension_chromium_schemas_optimando_schema_inputselectors_items", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L272", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_inputselectors", + "target": "apps_extension_chromium_schemas_optimando_schema_inputselectors_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L273", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_captureoutput", + "target": "apps_extension_chromium_schemas_optimando_schema_captureoutput_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L274", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_outputselectors", + "target": "apps_extension_chromium_schemas_optimando_schema_outputselectors_items", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L274", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_outputselectors", + "target": "apps_extension_chromium_schemas_optimando_schema_outputselectors_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L277", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_responsereadymode", + "target": "apps_extension_chromium_schemas_optimando_schema_responsereadymode_enum", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L276", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_responsereadymode", + "target": "apps_extension_chromium_schemas_optimando_schema_responsereadymode_type", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L277", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_responsereadymode_enum", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_first_change", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L277", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_responsereadymode_enum", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_quiet_period", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L277", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_responsereadymode_enum", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_selector_signal", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L383", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_enums_trigger_responsereadymode", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_first_change", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L383", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_enums_trigger_responsereadymode", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_quiet_period", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L383", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_enums_trigger_responsereadymode", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_selector_signal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L279", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_quietperiodms", + "target": "apps_extension_chromium_schemas_optimando_schema_quietperiodms_default", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L279", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_quietperiodms", + "target": "apps_extension_chromium_schemas_optimando_schema_quietperiodms_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L280", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_responsesignalselector", + "target": "apps_extension_chromium_schemas_optimando_schema_responsesignalselector_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L281", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_maxwaittimems", + "target": "apps_extension_chromium_schemas_optimando_schema_maxwaittimems_default", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L281", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_maxwaittimems", + "target": "apps_extension_chromium_schemas_optimando_schema_maxwaittimems_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L282", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_captureurl", + "target": "apps_extension_chromium_schemas_optimando_schema_captureurl_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L283", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_capturepagetitle", + "target": "apps_extension_chromium_schemas_optimando_schema_capturepagetitle_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L284", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_metaselectors", + "target": "apps_extension_chromium_schemas_optimando_schema_metaselectors_items", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L284", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_metaselectors", + "target": "apps_extension_chromium_schemas_optimando_schema_metaselectors_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L285", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_sanitizetrim", + "target": "apps_extension_chromium_schemas_optimando_schema_sanitizetrim_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L286", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_sanitizestripmarkdown", + "target": "apps_extension_chromium_schemas_optimando_schema_sanitizestripmarkdown_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L287", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_sanitizeremoveboilerplate", + "target": "apps_extension_chromium_schemas_optimando_schema_sanitizeremoveboilerplate_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L288", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_overlaytriggername", + "target": "apps_extension_chromium_schemas_optimando_schema_overlaytriggername_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L289", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_overlaymodebutton", + "target": "apps_extension_chromium_schemas_optimando_schema_overlaymodebutton_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L290", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_overlaymodeempty", + "target": "apps_extension_chromium_schemas_optimando_schema_overlaymodeempty_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L291", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_overlaymodeelement", + "target": "apps_extension_chromium_schemas_optimando_schema_overlaymodeelement_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L292", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_overlaymodeselection", + "target": "apps_extension_chromium_schemas_optimando_schema_overlaymodeselection_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L298", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_defs_reasoningsection", + "target": "apps_extension_chromium_schemas_optimando_schema_reasoningsection_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L299", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_defs_reasoningsection", + "target": "apps_extension_chromium_schemas_optimando_schema_reasoningsection_properties", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L297", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_defs_reasoningsection", + "target": "apps_extension_chromium_schemas_optimando_schema_reasoningsection_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L309", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_reasoningsection_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_acceptfrom", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L300", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_reasoningsection_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_applyforlist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L308", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_reasoningsection_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_custom", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L305", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_reasoningsection_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_goals", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L310", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_reasoningsection_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_memorycontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L318", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_reasoningsection_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_reasoningworkflows", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L306", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_reasoningsection_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_role", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L307", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_reasoningsection_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_rules", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L327", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_executionsection_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_applyforlist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L330", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_applyforlist", + "target": "apps_extension_chromium_schemas_optimando_schema_applyforlist_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L329", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_applyforlist", + "target": "apps_extension_chromium_schemas_optimando_schema_applyforlist_items", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L328", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_applyforlist", + "target": "apps_extension_chromium_schemas_optimando_schema_applyforlist_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L305", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_goals", + "target": "apps_extension_chromium_schemas_optimando_schema_goals_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L305", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_goals", + "target": "apps_extension_chromium_schemas_optimando_schema_goals_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L306", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_role", + "target": "apps_extension_chromium_schemas_optimando_schema_role_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L306", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_role", + "target": "apps_extension_chromium_schemas_optimando_schema_role_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L307", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_rules", + "target": "apps_extension_chromium_schemas_optimando_schema_rules_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L307", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_rules", + "target": "apps_extension_chromium_schemas_optimando_schema_rules_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L308", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_custom", + "target": "apps_extension_chromium_schemas_optimando_schema_custom_items", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L308", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_custom", + "target": "apps_extension_chromium_schemas_optimando_schema_custom_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L309", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_acceptfrom", + "target": "apps_extension_chromium_schemas_optimando_schema_acceptfrom_items", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L309", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_acceptfrom", + "target": "apps_extension_chromium_schemas_optimando_schema_acceptfrom_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L312", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_memorycontext", + "target": "apps_extension_chromium_schemas_optimando_schema_memorycontext_properties", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L311", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_memorycontext", + "target": "apps_extension_chromium_schemas_optimando_schema_memorycontext_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L318", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_reasoningworkflows", + "target": "apps_extension_chromium_schemas_optimando_schema_reasoningworkflows_items", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L318", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_reasoningworkflows", + "target": "apps_extension_chromium_schemas_optimando_schema_reasoningworkflows_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L324", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_defs_executionsection", + "target": "apps_extension_chromium_schemas_optimando_schema_executionsection_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L326", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_defs_executionsection", + "target": "apps_extension_chromium_schemas_optimando_schema_executionsection_properties", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L325", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_defs_executionsection", + "target": "apps_extension_chromium_schemas_optimando_schema_executionsection_required", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L323", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_defs_executionsection", + "target": "apps_extension_chromium_schemas_optimando_schema_executionsection_type", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L325", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_executionsection_required", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_applyforlist", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L325", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_executionsection_required", + "target": "ref_executionmode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L337", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_executionsection_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_destinations", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L332", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_executionsection_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_executionmode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L341", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_executionsection_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_executionworkflows", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L335", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_executionmode", + "target": "apps_extension_chromium_schemas_optimando_schema_executionmode_default", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L334", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_executionmode", + "target": "apps_extension_chromium_schemas_optimando_schema_executionmode_enum", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L333", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_executionmode", + "target": "apps_extension_chromium_schemas_optimando_schema_executionmode_type", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L334", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_executionmode_enum", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_agent_workflow", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L334", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_executionmode_enum", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_direct_response", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L334", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_executionmode_enum", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_hybrid", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L334", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_executionmode_enum", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_workflow_only", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L384", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_enums_executionsection_executionmode", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_agent_workflow", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L384", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_enums_executionsection_executionmode", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_direct_response", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L384", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_enums_executionsection_executionmode", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_workflow_only", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L384", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_enums_executionsection_executionmode", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_hybrid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L339", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_destinations", + "target": "apps_extension_chromium_schemas_optimando_schema_destinations_items", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L338", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_destinations", + "target": "apps_extension_chromium_schemas_optimando_schema_destinations_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L343", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_executionworkflows", + "target": "apps_extension_chromium_schemas_optimando_schema_executionworkflows_items", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L342", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_executionworkflows", + "target": "apps_extension_chromium_schemas_optimando_schema_executionworkflows_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L350", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_defs_destination", + "target": "apps_extension_chromium_schemas_optimando_schema_destination_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L352", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_defs_destination", + "target": "apps_extension_chromium_schemas_optimando_schema_destination_properties", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L351", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_defs_destination", + "target": "apps_extension_chromium_schemas_optimando_schema_destination_required", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L349", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_defs_destination", + "target": "apps_extension_chromium_schemas_optimando_schema_destination_type", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L351", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_destination_required", + "target": "ref_kind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L362", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_destination_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_email", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L353", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_destination_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_kind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L363", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_destination_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_webhook", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L355", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_kind", + "target": "apps_extension_chromium_schemas_optimando_schema_kind_enum", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L354", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_kind", + "target": "apps_extension_chromium_schemas_optimando_schema_kind_type", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L355", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_kind_enum", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_agentbox", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L355", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_kind_enum", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_chat", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L355", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_kind_enum", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_email", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L355", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_kind_enum", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_notification", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L355", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_kind_enum", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_storage", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L355", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_kind_enum", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_webhook", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L385", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_enums_destination_kind", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_agentbox", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L380", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_enums_agent_listening_sources", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_chat", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L385", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_enums_destination_kind", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_chat", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L380", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_enums_agent_listening_sources", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_email", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L385", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_enums_destination_kind", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_email", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L385", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_enums_destination_kind", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_webhook", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L385", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_enums_destination_kind", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_storage", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L385", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_enums_destination_kind", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_notification", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L362", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_email", + "target": "apps_extension_chromium_schemas_optimando_schema_email_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L363", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_webhook", + "target": "apps_extension_chromium_schemas_optimando_schema_webhook_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L369", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_defs_workflow", + "target": "apps_extension_chromium_schemas_optimando_schema_workflow_properties", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L368", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_defs_workflow", + "target": "apps_extension_chromium_schemas_optimando_schema_workflow_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L371", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_workflow_properties", + "target": "apps_extension_chromium_schemas_optimando_schema_properties_workflowid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L371", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_properties_workflowid", + "target": "apps_extension_chromium_schemas_optimando_schema_workflowid_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L391", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_schemainfo", + "target": "apps_extension_chromium_schemas_optimando_schema_schemainfo_connectionlogic", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L378", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_schemainfo", + "target": "apps_extension_chromium_schemas_optimando_schema_schemainfo_enums", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L392", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_schemainfo", + "target": "apps_extension_chromium_schemas_optimando_schema_schemainfo_identifierformat", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L390", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_schemainfo", + "target": "apps_extension_chromium_schemas_optimando_schema_schemainfo_numericfields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L379", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_schemainfo_enums", + "target": "apps_extension_chromium_schemas_optimando_schema_enums_agent_capabilities", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L380", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_schemainfo_enums", + "target": "apps_extension_chromium_schemas_optimando_schema_enums_agent_listening_sources", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L386", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_schemainfo_enums", + "target": "apps_extension_chromium_schemas_optimando_schema_enums_agentbox_provider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L388", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_schemainfo_enums", + "target": "apps_extension_chromium_schemas_optimando_schema_enums_agentbox_side", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L387", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_schemainfo_enums", + "target": "apps_extension_chromium_schemas_optimando_schema_enums_agentbox_source", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L385", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_schemainfo_enums", + "target": "apps_extension_chromium_schemas_optimando_schema_enums_destination_kind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L384", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_schemainfo_enums", + "target": "apps_extension_chromium_schemas_optimando_schema_enums_executionsection_executionmode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L382", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_schemainfo_enums", + "target": "apps_extension_chromium_schemas_optimando_schema_enums_trigger_parsertrigger", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L383", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_schemainfo_enums", + "target": "apps_extension_chromium_schemas_optimando_schema_enums_trigger_responsereadymode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L381", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_schemainfo_enums", + "target": "apps_extension_chromium_schemas_optimando_schema_enums_trigger_type", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L380", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_enums_agent_listening_sources", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_all", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L380", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_enums_agent_listening_sources", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_api", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L380", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_enums_agent_listening_sources", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_docs", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L380", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_enums_agent_listening_sources", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_dom", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L380", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_enums_agent_listening_sources", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_pdf", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L380", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_enums_agent_listening_sources", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_screenshot", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L380", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_enums_agent_listening_sources", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_stream", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L380", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_enums_agent_listening_sources", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_video", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L380", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_enums_agent_listening_sources", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_voice", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L380", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_enums_agent_listening_sources", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_voicememo", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L380", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_enums_agent_listening_sources", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_whatsapp", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L380", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_enums_agent_listening_sources", + "target": "apps_extension_chromium_schemas_optimando_schema_json_ref_workflow", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L390", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_schemainfo_numericfields", + "target": "ref_agent_number", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L390", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_schemainfo_numericfields", + "target": "ref_agentbox_agentnumber", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L390", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_schemainfo_numericfields", + "target": "ref_agentbox_boxnumber", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L390", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_schemainfo_numericfields", + "target": "ref_trigger_maxwaittimems", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L390", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_schemainfo_numericfields", + "target": "ref_trigger_parserinterval", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.schema.json", + "source_location": "L390", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_schema_schemainfo_numericfields", + "target": "ref_trigger_quietperiodms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_template", + "target": "apps_extension_chromium_schemas_optimando_template_agentboxes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_template", + "target": "apps_extension_chromium_schemas_optimando_template_agents", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_template", + "target": "apps_extension_chromium_schemas_optimando_template_connectioninfo", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_template", + "target": "apps_extension_chromium_schemas_optimando_template_exportedat", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_template", + "target": "apps_extension_chromium_schemas_optimando_template_helper", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_template", + "target": "apps_extension_chromium_schemas_optimando_template_miniapps", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_template", + "target": "apps_extension_chromium_schemas_optimando_template_schema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L142", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_template", + "target": "apps_extension_chromium_schemas_optimando_template_schemainfo", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_template", + "target": "apps_extension_chromium_schemas_optimando_template_schemaversion", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_template", + "target": "apps_extension_chromium_schemas_optimando_template_source", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_template_connectioninfo", + "target": "apps_extension_chromium_schemas_optimando_template_connectioninfo_agenttoboxmapping", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L151", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_template_schemainfo", + "target": "apps_extension_chromium_schemas_optimando_template_schemainfo_connectionlogic", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_template_schemainfo", + "target": "apps_extension_chromium_schemas_optimando_template_schemainfo_enums", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_template_schemainfo_enums", + "target": "apps_extension_chromium_schemas_optimando_template_enums_agentbox_provider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_template_schemainfo_enums", + "target": "apps_extension_chromium_schemas_optimando_template_enums_destination_kind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_template_schemainfo_enums", + "target": "apps_extension_chromium_schemas_optimando_template_enums_executionsection_executionmode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_template_schemainfo_enums", + "target": "apps_extension_chromium_schemas_optimando_template_enums_trigger_parsertrigger", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_template_schemainfo_enums", + "target": "apps_extension_chromium_schemas_optimando_template_enums_trigger_responsereadymode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L144", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_template_schemainfo_enums", + "target": "apps_extension_chromium_schemas_optimando_template_enums_trigger_type", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L144", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_template_enums_trigger_type", + "target": "apps_extension_chromium_schemas_optimando_template_json_ref_agent", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L144", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_template_enums_trigger_type", + "target": "apps_extension_chromium_schemas_optimando_template_json_ref_augmented_overlay", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L144", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_template_enums_trigger_type", + "target": "apps_extension_chromium_schemas_optimando_template_json_ref_direct_tag", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L144", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_template_enums_trigger_type", + "target": "apps_extension_chromium_schemas_optimando_template_json_ref_dom_event", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L144", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_template_enums_trigger_type", + "target": "apps_extension_chromium_schemas_optimando_template_json_ref_dom_parser", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L144", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_template_enums_trigger_type", + "target": "apps_extension_chromium_schemas_optimando_template_json_ref_manual", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L144", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_template_enums_trigger_type", + "target": "apps_extension_chromium_schemas_optimando_template_json_ref_miniapp", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L144", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_template_enums_trigger_type", + "target": "apps_extension_chromium_schemas_optimando_template_json_ref_tag_and_condition", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L144", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_template_enums_trigger_type", + "target": "apps_extension_chromium_schemas_optimando_template_json_ref_workflow_condition", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L145", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_template_enums_trigger_parsertrigger", + "target": "apps_extension_chromium_schemas_optimando_template_json_ref_manual", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L145", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_template_enums_trigger_parsertrigger", + "target": "apps_extension_chromium_schemas_optimando_template_json_ref_button_click", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L145", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_template_enums_trigger_parsertrigger", + "target": "apps_extension_chromium_schemas_optimando_template_json_ref_dom_change", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L145", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_template_enums_trigger_parsertrigger", + "target": "apps_extension_chromium_schemas_optimando_template_json_ref_interval", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L145", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_template_enums_trigger_parsertrigger", + "target": "apps_extension_chromium_schemas_optimando_template_json_ref_page_load", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L146", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_template_enums_trigger_responsereadymode", + "target": "apps_extension_chromium_schemas_optimando_template_json_ref_first_change", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L146", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_template_enums_trigger_responsereadymode", + "target": "apps_extension_chromium_schemas_optimando_template_json_ref_quiet_period", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L146", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_template_enums_trigger_responsereadymode", + "target": "apps_extension_chromium_schemas_optimando_template_json_ref_selector_signal", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L147", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_template_enums_executionsection_executionmode", + "target": "apps_extension_chromium_schemas_optimando_template_json_ref_agent_workflow", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L147", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_template_enums_executionsection_executionmode", + "target": "apps_extension_chromium_schemas_optimando_template_json_ref_direct_response", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L147", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_template_enums_executionsection_executionmode", + "target": "apps_extension_chromium_schemas_optimando_template_json_ref_hybrid", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L147", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_template_enums_executionsection_executionmode", + "target": "apps_extension_chromium_schemas_optimando_template_json_ref_workflow_only", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L148", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_template_enums_destination_kind", + "target": "apps_extension_chromium_schemas_optimando_template_json_ref_agentbox", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L148", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_template_enums_destination_kind", + "target": "apps_extension_chromium_schemas_optimando_template_json_ref_chat", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L148", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_template_enums_destination_kind", + "target": "apps_extension_chromium_schemas_optimando_template_json_ref_email", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L148", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_template_enums_destination_kind", + "target": "apps_extension_chromium_schemas_optimando_template_json_ref_notification", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L148", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_template_enums_destination_kind", + "target": "apps_extension_chromium_schemas_optimando_template_json_ref_storage", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L148", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_template_enums_destination_kind", + "target": "apps_extension_chromium_schemas_optimando_template_json_ref_webhook", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L149", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_template_enums_agentbox_provider", + "target": "apps_extension_chromium_schemas_optimando_template_json_ref_claude", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L149", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_template_enums_agentbox_provider", + "target": "apps_extension_chromium_schemas_optimando_template_json_ref_gemini", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L149", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_template_enums_agentbox_provider", + "target": "apps_extension_chromium_schemas_optimando_template_json_ref_grok", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L149", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_template_enums_agentbox_provider", + "target": "apps_extension_chromium_schemas_optimando_template_json_ref_image_ai", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L149", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_template_enums_agentbox_provider", + "target": "apps_extension_chromium_schemas_optimando_template_json_ref_local_ai", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/schemas/optimando.template.json", + "source_location": "L149", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_schemas_optimando_template_enums_agentbox_provider", + "target": "apps_extension_chromium_schemas_optimando_template_json_ref_openai", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/agent-manager-v2.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_agent_manager_v2", + "target": "apps_extension_chromium_src_agent_manager_v2_addagent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/agent-manager-v2.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_agent_manager_v2", + "target": "apps_extension_chromium_src_agent_manager_v2_agentevent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/agent-manager-v2.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_agent_manager_v2", + "target": "apps_extension_chromium_src_agent_manager_v2_agentv2", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "confidence": "INFERRED", + "source_file": "apps/extension-chromium/src/agent-manager-v2.ts", + "source_location": "L230", + "weight": 1.0, + "_origin": "ast", + "context": "argument", + "source": "apps_extension_chromium_src_agent_manager_v2", + "target": "apps_extension_chromium_src_agent_manager_v2_boot", + "confidence_score": 0.5 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/agent-manager-v2.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_agent_manager_v2", + "target": "apps_extension_chromium_src_agent_manager_v2_ensureactivesession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/agent-manager-v2.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_agent_manager_v2", + "target": "apps_extension_chromium_src_agent_manager_v2_ensureui", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/agent-manager-v2.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_agent_manager_v2", + "target": "apps_extension_chromium_src_agent_manager_v2_getcurrentsessionkey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/agent-manager-v2.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_agent_manager_v2", + "target": "apps_extension_chromium_src_agent_manager_v2_openoverlay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/agent-manager-v2.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_agent_manager_v2", + "target": "apps_extension_chromium_src_agent_manager_v2_persistsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/agent-manager-v2.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_agent_manager_v2", + "target": "apps_extension_chromium_src_agent_manager_v2_removeagent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/agent-manager-v2.ts", + "source_location": "L165", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_agent_manager_v2", + "target": "apps_extension_chromium_src_agent_manager_v2_renderlist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/agent-manager-v2.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_agent_manager_v2", + "target": "apps_extension_chromium_src_agent_manager_v2_setcurrentsessionkey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/agent-manager-v2.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_agent_manager_v2", + "target": "apps_extension_chromium_src_agent_manager_v2_toggleagent", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_agent_manager_v2", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/agent-manager-v2.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_agent_manager_v2_ensureactivesession", + "target": "apps_extension_chromium_src_agent_manager_v2_getcurrentsessionkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L4989", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script_initializeextension", + "target": "apps_extension_chromium_src_agent_manager_v2_getcurrentsessionkey" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/agent-manager-v2.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_agent_manager_v2_ensureactivesession", + "target": "apps_extension_chromium_src_agent_manager_v2_setcurrentsessionkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L36551", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script_initializeextension", + "target": "apps_extension_chromium_src_agent_manager_v2_setcurrentsessionkey" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/agent-manager-v2.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_agent_manager_v2_addagent", + "target": "apps_extension_chromium_src_agent_manager_v2_ensureactivesession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/agent-manager-v2.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_agent_manager_v2_ensureactivesession", + "target": "apps_extension_chromium_src_storage_storagewrapper", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/agent-manager-v2.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_agent_manager_v2_removeagent", + "target": "apps_extension_chromium_src_agent_manager_v2_ensureactivesession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/agent-manager-v2.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_agent_manager_v2_renderlist", + "target": "apps_extension_chromium_src_agent_manager_v2_ensureactivesession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/agent-manager-v2.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_agent_manager_v2_toggleagent", + "target": "apps_extension_chromium_src_agent_manager_v2_ensureactivesession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/agent-manager-v2.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_agent_manager_v2_addagent", + "target": "apps_extension_chromium_src_agent_manager_v2_persistsession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/agent-manager-v2.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_agent_manager_v2_persistsession", + "target": "apps_extension_chromium_src_storage_storagewrapper", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/agent-manager-v2.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_agent_manager_v2_removeagent", + "target": "apps_extension_chromium_src_agent_manager_v2_persistsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/agent-manager-v2.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_agent_manager_v2_toggleagent", + "target": "apps_extension_chromium_src_agent_manager_v2_persistsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/agent-manager-v2.ts", + "source_location": "L159", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_agent_manager_v2_openoverlay", + "target": "apps_extension_chromium_src_agent_manager_v2_addagent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/agent-manager-v2.ts", + "source_location": "L205", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_agent_manager_v2_renderlist", + "target": "apps_extension_chromium_src_agent_manager_v2_removeagent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/agent-manager-v2.ts", + "source_location": "L198", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_agent_manager_v2_renderlist", + "target": "apps_extension_chromium_src_agent_manager_v2_toggleagent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/agent-manager-v2.ts", + "source_location": "L223", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_agent_manager_v2_boot", + "target": "apps_extension_chromium_src_agent_manager_v2_ensureui", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/agent-manager-v2.ts", + "source_location": "L225", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_agent_manager_v2_boot", + "target": "apps_extension_chromium_src_agent_manager_v2_openoverlay", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/agent-manager-v2.ts", + "source_location": "L159", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_agent_manager_v2_openoverlay", + "target": "apps_extension_chromium_src_agent_manager_v2_renderlist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/archivalService.ts", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_archivalservice", + "target": "apps_extension_chromium_src_audit_archivalservice_archivemessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/archivalService.ts", + "source_location": "L267", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_archivalservice", + "target": "apps_extension_chromium_src_audit_archivalservice_archiverecords", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/archivalService.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_archivalservice", + "target": "apps_extension_chromium_src_audit_archivalservice_checkarchiveeligibility", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/archivalService.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_archivalservice", + "target": "apps_extension_chromium_src_audit_archivalservice_computehash", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/archivalService.ts", + "source_location": "L279", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_archivalservice", + "target": "apps_extension_chromium_src_audit_archivalservice_getarchiverecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/archivalService.ts", + "source_location": "L286", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_archivalservice", + "target": "apps_extension_chromium_src_audit_archivalservice_isarchived", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/archivalService.ts", + "source_location": "L272", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_archivalservice", + "target": "apps_extension_chromium_src_audit_archivalservice_storearchiverecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/archivalService.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_archivalservice", + "target": "apps_extension_chromium_src_audit_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/archivalService.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_archivalservice", + "target": "apps_extension_chromium_src_audit_types_archiveeligibility", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/archivalService.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_archivalservice", + "target": "apps_extension_chromium_src_audit_types_archiverecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/archivalService.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_archivalservice", + "target": "apps_extension_chromium_src_audit_types_auditrefs", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/archivalService.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_archivalservice", + "target": "apps_extension_chromium_src_audit_useauditstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/archivalService.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_archivalservice", + "target": "apps_extension_chromium_src_audit_useauditstore_logarchiveevent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/archivalService.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_archivalservice", + "target": "apps_extension_chromium_src_audit_useauditstore_useauditstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/archivalService.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_archivalservice", + "target": "apps_extension_chromium_src_beap_messages_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/archivalService.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_archivalservice", + "target": "apps_extension_chromium_src_beap_messages_types_beapmessageui", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/archivalService.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_archivalservice", + "target": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/archivalService.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_archivalservice", + "target": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_usebeapmessagesstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/archivalService.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_archivalservice", + "target": "apps_extension_chromium_src_ingress_useingressstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/archivalService.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_archivalservice", + "target": "apps_extension_chromium_src_ingress_useingressstore_useingressstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/archivalService.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_archivalservice", + "target": "apps_extension_chromium_src_reconstruction_usereconstructionstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/archivalService.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_archivalservice", + "target": "apps_extension_chromium_src_reconstruction_usereconstructionstore_usereconstructionstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/components/ArchiveButton.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_components_archivebutton", + "target": "apps_extension_chromium_src_audit_archivalservice", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/exportService.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_exportservice", + "target": "apps_extension_chromium_src_audit_archivalservice", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/index.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_index", + "target": "apps_extension_chromium_src_audit_archivalservice", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/archivalService.ts", + "source_location": "L168", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_archivalservice_archivemessage", + "target": "apps_extension_chromium_src_audit_archivalservice_computehash", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/archivalService.ts", + "source_location": "L150", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_archivalservice_archivemessage", + "target": "apps_extension_chromium_src_audit_archivalservice_checkarchiveeligibility", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/components/ArchiveButton.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_components_archivebutton", + "target": "apps_extension_chromium_src_audit_archivalservice_checkarchiveeligibility", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/audit/components/ArchiveButton.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_components_archivebutton_archivebutton", + "target": "apps_extension_chromium_src_audit_archivalservice_checkarchiveeligibility" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/index.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_index", + "target": "apps_extension_chromium_src_audit_archivalservice_checkarchiveeligibility", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/audit/archivalService.ts", + "source_location": "L237", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_archivalservice_archivemessage", + "target": "apps_extension_chromium_src_audit_useauditstore_logarchiveevent" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/components/ArchiveButton.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_components_archivebutton", + "target": "apps_extension_chromium_src_audit_archivalservice_archivemessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/audit/components/ArchiveButton.tsx", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_components_archivebutton_archivebutton", + "target": "apps_extension_chromium_src_audit_archivalservice_archivemessage" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/index.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_index", + "target": "apps_extension_chromium_src_audit_archivalservice_archivemessage", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/index.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_index", + "target": "apps_extension_chromium_src_audit_archivalservice_storearchiverecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/exportService.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_exportservice", + "target": "apps_extension_chromium_src_audit_archivalservice_getarchiverecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/audit/exportService.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_exportservice_buildproofbundle", + "target": "apps_extension_chromium_src_audit_archivalservice_getarchiverecord" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/index.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_index", + "target": "apps_extension_chromium_src_audit_archivalservice_getarchiverecord", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/index.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_index", + "target": "apps_extension_chromium_src_audit_archivalservice_isarchived", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/components/ArchiveButton.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_components_archivebutton", + "target": "apps_extension_chromium_src_audit_components_archivebutton_archivebutton", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/components/ArchiveButton.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_components_archivebutton", + "target": "apps_extension_chromium_src_audit_components_archivebutton_archivebuttonprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/components/ArchiveButton.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_components_archivebutton", + "target": "apps_extension_chromium_src_beap_messages_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/components/ArchiveButton.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_components_archivebutton", + "target": "apps_extension_chromium_src_beap_messages_types_beapmessageui", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/components/index.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_components_index", + "target": "apps_extension_chromium_src_audit_components_archivebutton", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/components/ArchiveButton.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_components_archivebutton_archivebuttonprops", + "target": "apps_extension_chromium_src_beap_messages_types_beapmessageui", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/components/index.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_components_index", + "target": "apps_extension_chromium_src_audit_components_archivebutton_archivebutton", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/index.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_index", + "target": "apps_extension_chromium_src_audit_components_archivebutton_archivebutton", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/InboxMessagePreview.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_inboxmessagepreview", + "target": "apps_extension_chromium_src_audit_components_archivebutton_archivebutton", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/components/AuditTrailPanel.tsx", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_components_audittrailpanel", + "target": "apps_extension_chromium_src_audit_components_audittrailpanel_audittrailpanel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/components/AuditTrailPanel.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_components_audittrailpanel", + "target": "apps_extension_chromium_src_audit_components_audittrailpanel_audittrailpanelprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/components/AuditTrailPanel.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_components_audittrailpanel", + "target": "apps_extension_chromium_src_audit_components_audittrailpanel_event_type_config", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/components/AuditTrailPanel.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_components_audittrailpanel", + "target": "apps_extension_chromium_src_audit_exportservice", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/components/AuditTrailPanel.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_components_audittrailpanel", + "target": "apps_extension_chromium_src_audit_exportservice_downloadauditlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/components/AuditTrailPanel.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_components_audittrailpanel", + "target": "apps_extension_chromium_src_audit_exportservice_downloadproofbundle", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/components/AuditTrailPanel.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_components_audittrailpanel", + "target": "apps_extension_chromium_src_audit_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/components/AuditTrailPanel.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_components_audittrailpanel", + "target": "apps_extension_chromium_src_audit_types_auditevent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/components/AuditTrailPanel.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_components_audittrailpanel", + "target": "apps_extension_chromium_src_audit_types_auditeventtype", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/components/AuditTrailPanel.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_components_audittrailpanel", + "target": "apps_extension_chromium_src_audit_useauditstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/components/AuditTrailPanel.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_components_audittrailpanel", + "target": "apps_extension_chromium_src_audit_useauditstore_useauditstore", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/components/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_components_index", + "target": "apps_extension_chromium_src_audit_components_audittrailpanel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/audit/components/AuditTrailPanel.tsx", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_components_audittrailpanel_audittrailpanel", + "target": "apps_extension_chromium_src_audit_exportservice_downloadauditlog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/audit/components/AuditTrailPanel.tsx", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_components_audittrailpanel_audittrailpanel", + "target": "apps_extension_chromium_src_audit_exportservice_downloadproofbundle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/audit/components/AuditTrailPanel.tsx", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_components_audittrailpanel_audittrailpanel", + "target": "apps_extension_chromium_src_audit_useauditstore_useauditstore" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/components/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_components_index", + "target": "apps_extension_chromium_src_audit_components_audittrailpanel_audittrailpanel", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/index.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_index", + "target": "apps_extension_chromium_src_audit_components_audittrailpanel_audittrailpanel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/InboxMessagePreview.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_inboxmessagepreview", + "target": "apps_extension_chromium_src_audit_components_audittrailpanel_audittrailpanel", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/index.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_index", + "target": "apps_extension_chromium_src_audit_components_index", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/exportService.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_exportservice", + "target": "apps_extension_chromium_src_audit_exportservice_buildproofbundle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/exportService.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_exportservice", + "target": "apps_extension_chromium_src_audit_exportservice_computehash", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/exportService.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_exportservice", + "target": "apps_extension_chromium_src_audit_exportservice_downloadauditlog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/exportService.ts", + "source_location": "L314", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_exportservice", + "target": "apps_extension_chromium_src_audit_exportservice_downloadproofbundle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/exportService.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_exportservice", + "target": "apps_extension_chromium_src_audit_exportservice_exportauditlog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/exportService.ts", + "source_location": "L355", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_exportservice", + "target": "apps_extension_chromium_src_audit_exportservice_exportrejectedproof", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/exportService.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_exportservice", + "target": "apps_extension_chromium_src_audit_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/exportService.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_exportservice", + "target": "apps_extension_chromium_src_audit_types_auditevent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/exportService.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_exportservice", + "target": "apps_extension_chromium_src_audit_types_auditlogexport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/exportService.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_exportservice", + "target": "apps_extension_chromium_src_audit_types_proofbundlemanifest", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/exportService.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_exportservice", + "target": "apps_extension_chromium_src_audit_types_rejectedproofbundle", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/exportService.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_exportservice", + "target": "apps_extension_chromium_src_audit_useauditstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/exportService.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_exportservice", + "target": "apps_extension_chromium_src_audit_useauditstore_logexportevent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/exportService.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_exportservice", + "target": "apps_extension_chromium_src_audit_useauditstore_useauditstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/exportService.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_exportservice", + "target": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/exportService.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_exportservice", + "target": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_usebeapmessagesstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/exportService.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_exportservice", + "target": "apps_extension_chromium_src_reconstruction_usereconstructionstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/exportService.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_exportservice", + "target": "apps_extension_chromium_src_reconstruction_usereconstructionstore_usereconstructionstore", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/index.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_index", + "target": "apps_extension_chromium_src_audit_exportservice", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/exportService.ts", + "source_location": "L172", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_exportservice_buildproofbundle", + "target": "apps_extension_chromium_src_audit_exportservice_computehash", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/exportService.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_exportservice_exportauditlog", + "target": "apps_extension_chromium_src_audit_exportservice_computehash", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/exportService.ts", + "source_location": "L399", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_exportservice_exportrejectedproof", + "target": "apps_extension_chromium_src_audit_exportservice_computehash", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/exportService.ts", + "source_location": "L152", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_exportservice_buildproofbundle", + "target": "apps_extension_chromium_src_audit_exportservice_exportauditlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/exportService.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_exportservice_downloadauditlog", + "target": "apps_extension_chromium_src_audit_exportservice_exportauditlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/audit/exportService.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_exportservice_exportauditlog", + "target": "apps_extension_chromium_src_audit_useauditstore_logexportevent" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/exportService.ts", + "source_location": "L376", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_exportservice_exportrejectedproof", + "target": "apps_extension_chromium_src_audit_exportservice_exportauditlog", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/index.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_index", + "target": "apps_extension_chromium_src_audit_exportservice_exportauditlog", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/index.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_index", + "target": "apps_extension_chromium_src_audit_exportservice_downloadauditlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/audit/exportService.ts", + "source_location": "L298", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_exportservice_buildproofbundle", + "target": "apps_extension_chromium_src_audit_useauditstore_logexportevent" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/exportService.ts", + "source_location": "L315", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_exportservice_downloadproofbundle", + "target": "apps_extension_chromium_src_audit_exportservice_buildproofbundle", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/index.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_index", + "target": "apps_extension_chromium_src_audit_exportservice_buildproofbundle", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/index.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_index", + "target": "apps_extension_chromium_src_audit_exportservice_downloadproofbundle", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/index.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_index", + "target": "apps_extension_chromium_src_audit_exportservice_exportrejectedproof", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_index", + "target": "apps_extension_chromium_src_audit_types", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_index", + "target": "apps_extension_chromium_src_audit_types_archiveeligibility", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_index", + "target": "apps_extension_chromium_src_audit_types_archiverecord", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_index", + "target": "apps_extension_chromium_src_audit_types_auditactor", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_index", + "target": "apps_extension_chromium_src_audit_types_auditchain", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_index", + "target": "apps_extension_chromium_src_audit_types_auditevent", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_index", + "target": "apps_extension_chromium_src_audit_types_auditeventtype", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_index", + "target": "apps_extension_chromium_src_audit_types_auditlogexport", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_index", + "target": "apps_extension_chromium_src_audit_types_auditrefs", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_index", + "target": "apps_extension_chromium_src_audit_types_proofbundlemanifest", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_index", + "target": "apps_extension_chromium_src_audit_types_rejectedproofbundle", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/index.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_index", + "target": "apps_extension_chromium_src_audit_useauditstore", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/index.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_index", + "target": "apps_extension_chromium_src_audit_useauditstore_logarchiveevent", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/index.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_index", + "target": "apps_extension_chromium_src_audit_useauditstore_logdeliveryevent", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/index.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_index", + "target": "apps_extension_chromium_src_audit_useauditstore_logdispatchevent", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/index.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_index", + "target": "apps_extension_chromium_src_audit_useauditstore_logexportevent", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/index.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_index", + "target": "apps_extension_chromium_src_audit_useauditstore_logimportevent", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/index.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_index", + "target": "apps_extension_chromium_src_audit_useauditstore_logreconstructionevent", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/index.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_index", + "target": "apps_extension_chromium_src_audit_useauditstore_logverificationevent", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/index.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_index", + "target": "apps_extension_chromium_src_audit_useauditstore_useauditchain", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/index.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_index", + "target": "apps_extension_chromium_src_audit_useauditstore_useauditevents", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/index.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_index", + "target": "apps_extension_chromium_src_audit_useauditstore_useauditstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/InboxMessagePreview.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_inboxmessagepreview", + "target": "apps_extension_chromium_src_audit_index", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/CommandChatView.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_commandchatview", + "target": "apps_extension_chromium_src_audit_index", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/types.ts", + "source_location": "L303", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_types", + "target": "apps_extension_chromium_src_audit_types_archiveeligibility", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/types.ts", + "source_location": "L153", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_types", + "target": "apps_extension_chromium_src_audit_types_archiverecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/types.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_types", + "target": "apps_extension_chromium_src_audit_types_auditactor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/types.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_types", + "target": "apps_extension_chromium_src_audit_types_auditchain", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/types.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_types", + "target": "apps_extension_chromium_src_audit_types_auditevent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/types.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_types", + "target": "apps_extension_chromium_src_audit_types_auditeventtype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/types.ts", + "source_location": "L221", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_types", + "target": "apps_extension_chromium_src_audit_types_auditlogexport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/types.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_types", + "target": "apps_extension_chromium_src_audit_types_auditrefs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/types.ts", + "source_location": "L248", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_types", + "target": "apps_extension_chromium_src_audit_types_proofbundlemanifest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/types.ts", + "source_location": "L284", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_types", + "target": "apps_extension_chromium_src_audit_types_rejectedproofbundle", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/useAuditStore.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_useauditstore", + "target": "apps_extension_chromium_src_audit_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/useAuditStore.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_useauditstore", + "target": "apps_extension_chromium_src_audit_types_auditeventtype", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/useAuditStore.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_useauditstore_auditstorestate", + "target": "apps_extension_chromium_src_audit_types_auditeventtype", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/useAuditStore.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_useauditstore", + "target": "apps_extension_chromium_src_audit_types_auditactor", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/useAuditStore.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_useauditstore_auditstorestate", + "target": "apps_extension_chromium_src_audit_types_auditactor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/useAuditStore.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_useauditstore", + "target": "apps_extension_chromium_src_audit_types_auditrefs", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/useAuditStore.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_useauditstore_auditstorestate", + "target": "apps_extension_chromium_src_audit_types_auditrefs", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/useAuditStore.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_useauditstore", + "target": "apps_extension_chromium_src_audit_types_auditevent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/useAuditStore.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_useauditstore_auditstorestate", + "target": "apps_extension_chromium_src_audit_types_auditevent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/useAuditStore.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_useauditstore", + "target": "apps_extension_chromium_src_audit_types_auditchain", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/useAuditStore.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_useauditstore_auditstorestate", + "target": "apps_extension_chromium_src_audit_types_auditchain", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/useAuditStore.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_useauditstore", + "target": "apps_extension_chromium_src_audit_useauditstore_auditstorestate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/useAuditStore.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_useauditstore", + "target": "apps_extension_chromium_src_audit_useauditstore_computeeventhash", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/useAuditStore.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_useauditstore", + "target": "apps_extension_chromium_src_audit_useauditstore_computehash", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/useAuditStore.ts", + "source_location": "L372", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_useauditstore", + "target": "apps_extension_chromium_src_audit_useauditstore_logarchiveevent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/useAuditStore.ts", + "source_location": "L323", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_useauditstore", + "target": "apps_extension_chromium_src_audit_useauditstore_logdeliveryevent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/useAuditStore.ts", + "source_location": "L306", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_useauditstore", + "target": "apps_extension_chromium_src_audit_useauditstore_logdispatchevent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/useAuditStore.ts", + "source_location": "L388", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_useauditstore", + "target": "apps_extension_chromium_src_audit_useauditstore_logexportevent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/useAuditStore.ts", + "source_location": "L269", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_useauditstore", + "target": "apps_extension_chromium_src_audit_useauditstore_logimportevent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/useAuditStore.ts", + "source_location": "L343", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_useauditstore", + "target": "apps_extension_chromium_src_audit_useauditstore_logreconstructionevent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/useAuditStore.ts", + "source_location": "L286", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_useauditstore", + "target": "apps_extension_chromium_src_audit_useauditstore_logverificationevent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/useAuditStore.ts", + "source_location": "L411", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_useauditstore", + "target": "apps_extension_chromium_src_audit_useauditstore_useauditchain", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/useAuditStore.ts", + "source_location": "L408", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_useauditstore", + "target": "apps_extension_chromium_src_audit_useauditstore_useauditevents", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/useAuditStore.ts", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_useauditstore", + "target": "apps_extension_chromium_src_audit_useauditstore_useauditstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/useAuditStore.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_useauditstore_computeeventhash", + "target": "apps_extension_chromium_src_audit_useauditstore_computehash", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/useAuditStore.ts", + "source_location": "L412", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_useauditstore_useauditchain", + "target": "apps_extension_chromium_src_audit_useauditstore_useauditstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/audit/useAuditStore.ts", + "source_location": "L409", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_audit_useauditstore_useauditevents", + "target": "apps_extension_chromium_src_audit_useauditstore_useauditstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/CommandChatView.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_commandchatview", + "target": "apps_extension_chromium_src_audit_useauditstore_logimportevent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/CommandChatView.tsx", + "source_location": "L160", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_commandchatview_commandchatview", + "target": "apps_extension_chromium_src_audit_useauditstore_logimportevent" + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/index.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_index", + "target": "apps_extension_chromium_src_automation_listenermanager", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager", + "target": "apps_extension_chromium_src_automation_conditions_conditionengine", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager", + "target": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager", + "target": "apps_extension_chromium_src_automation_conditions_eventtagmatcher", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager", + "target": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L622", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager", + "target": "apps_extension_chromium_src_automation_listenermanager_listenermanager", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager", + "target": "apps_extension_chromium_src_automation_listenermanager_reasoningcallback", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager", + "target": "apps_extension_chromium_src_automation_triggers_triggerregistry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager", + "target": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager", + "target": "apps_extension_chromium_src_automation_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager", + "target": "apps_extension_chromium_src_automation_types_actionresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager", + "target": "apps_extension_chromium_src_automation_types_automationconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager", + "target": "apps_extension_chromium_src_automation_types_condition", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager", + "target": "apps_extension_chromium_src_automation_types_modality", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager", + "target": "apps_extension_chromium_src_automation_types_normalizedevent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager", + "target": "apps_extension_chromium_src_automation_types_processingresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager", + "target": "apps_extension_chromium_src_automation_types_triggerscope", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager", + "target": "apps_extension_chromium_src_automation_types_triggersource", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager", + "target": "apps_extension_chromium_src_automation_types_unifiedtriggerconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager", + "target": "apps_extension_chromium_src_automation_types_workflowcontext", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager", + "target": "apps_extension_chromium_src_automation_workflows_workflowregistry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager", + "target": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager", + "target": "apps_extension_chromium_src_automation_workflows_workflowrunner", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager", + "target": "apps_extension_chromium_src_automation_workflows_workflowrunner_workflowrunner", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/__tests__/ListenerManager.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_tests_listenermanager_test", + "target": "apps_extension_chromium_src_automation_listenermanager", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/index.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_index", + "target": "apps_extension_chromium_src_automation_listenermanager_listenermanager", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager", + "target": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager", + "target": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L613", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager", + "target": "apps_extension_chromium_src_automation_listenermanager_listenermanager_clear", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager", + "target": "apps_extension_chromium_src_automation_listenermanager_listenermanager_constructor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager", + "target": "apps_extension_chromium_src_automation_listenermanager_listenermanager_evaluateunifiedtrigger", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L472", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager", + "target": "apps_extension_chromium_src_automation_listenermanager_listenermanager_extractmentions", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L229", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager", + "target": "apps_extension_chromium_src_automation_listenermanager_listenermanager_get", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L238", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager", + "target": "apps_extension_chromium_src_automation_listenermanager_listenermanager_getall", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L194", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager", + "target": "apps_extension_chromium_src_automation_listenermanager_listenermanager_geteventtagmatcher", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L309", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager", + "target": "apps_extension_chromium_src_automation_listenermanager_listenermanager_getisrunning", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L347", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager", + "target": "apps_extension_chromium_src_automation_listenermanager_listenermanager_getmatchingautomations", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L254", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager", + "target": "apps_extension_chromium_src_automation_listenermanager_listenermanager_gettriggerregistry", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L261", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager", + "target": "apps_extension_chromium_src_automation_listenermanager_listenermanager_getworkflowregistry", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L372", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager", + "target": "apps_extension_chromium_src_automation_listenermanager_listenermanager_matchautomation", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L481", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager", + "target": "apps_extension_chromium_src_automation_listenermanager_listenermanager_matchexpectedcontext", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L461", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager", + "target": "apps_extension_chromium_src_automation_listenermanager_listenermanager_matchmodalities", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L443", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager", + "target": "apps_extension_chromium_src_automation_listenermanager_listenermanager_matchscope", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L436", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager", + "target": "apps_extension_chromium_src_automation_listenermanager_listenermanager_matchsource", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L493", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager", + "target": "apps_extension_chromium_src_automation_listenermanager_listenermanager_processautomation", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L319", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager", + "target": "apps_extension_chromium_src_automation_listenermanager_listenermanager_processevent", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L203", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager", + "target": "apps_extension_chromium_src_automation_listenermanager_listenermanager_register", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L247", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager", + "target": "apps_extension_chromium_src_automation_listenermanager_listenermanager_setreasoningcallback", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L270", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager", + "target": "apps_extension_chromium_src_automation_listenermanager_listenermanager_start", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L289", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager", + "target": "apps_extension_chromium_src_automation_listenermanager_listenermanager_stop", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L217", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager", + "target": "apps_extension_chromium_src_automation_listenermanager_listenermanager_unregister", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager", + "target": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager", + "target": "apps_extension_chromium_src_automation_types_automationconfig", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager", + "target": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager", + "target": "apps_extension_chromium_src_automation_workflows_workflowrunner_workflowrunner", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/__tests__/ListenerManager.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_tests_listenermanager_test", + "target": "apps_extension_chromium_src_automation_listenermanager_listenermanager", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_automation_listenermanager_listenermanager", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager_constructor", + "target": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager_constructor", + "target": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager_evaluateunifiedtrigger", + "target": "apps_extension_chromium_src_automation_types_normalizedevent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager_evaluateunifiedtrigger", + "target": "apps_extension_chromium_src_automation_types_unifiedtriggerconfig", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L194", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager_geteventtagmatcher", + "target": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L203", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager_register", + "target": "apps_extension_chromium_src_automation_types_automationconfig", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L229", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager_get", + "target": "apps_extension_chromium_src_automation_types_automationconfig", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L238", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager_getall", + "target": "apps_extension_chromium_src_automation_types_automationconfig", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L254", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager_gettriggerregistry", + "target": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L261", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager_getworkflowregistry", + "target": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L277", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager_start", + "target": "apps_extension_chromium_src_automation_listenermanager_listenermanager_processevent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L280", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager_start", + "target": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_startall" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L276", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager_start", + "target": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_subscribe" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L300", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager_stop", + "target": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_stopall" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L323", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager_processevent", + "target": "apps_extension_chromium_src_automation_listenermanager_listenermanager_getmatchingautomations", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L334", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager_processevent", + "target": "apps_extension_chromium_src_automation_listenermanager_listenermanager_processautomation", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L319", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager_processevent", + "target": "apps_extension_chromium_src_automation_types_normalizedevent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L319", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager_processevent", + "target": "apps_extension_chromium_src_automation_types_processingresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L357", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager_getmatchingautomations", + "target": "apps_extension_chromium_src_automation_listenermanager_listenermanager_matchautomation", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L347", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager_getmatchingautomations", + "target": "apps_extension_chromium_src_automation_types_automationconfig", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L347", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager_getmatchingautomations", + "target": "apps_extension_chromium_src_automation_types_normalizedevent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L400", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager_matchautomation", + "target": "apps_extension_chromium_src_automation_listenermanager_listenermanager_extractmentions", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L420", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager_matchautomation", + "target": "apps_extension_chromium_src_automation_listenermanager_listenermanager_matchexpectedcontext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L387", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager_matchautomation", + "target": "apps_extension_chromium_src_automation_listenermanager_listenermanager_matchmodalities", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L382", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager_matchautomation", + "target": "apps_extension_chromium_src_automation_listenermanager_listenermanager_matchscope", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L377", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager_matchautomation", + "target": "apps_extension_chromium_src_automation_listenermanager_listenermanager_matchsource", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L372", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager_matchautomation", + "target": "apps_extension_chromium_src_automation_types_automationconfig", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L372", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager_matchautomation", + "target": "apps_extension_chromium_src_automation_types_normalizedevent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L436", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager_matchsource", + "target": "apps_extension_chromium_src_automation_types_triggersource", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L443", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager_matchscope", + "target": "apps_extension_chromium_src_automation_types_automationconfig", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L443", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager_matchscope", + "target": "apps_extension_chromium_src_automation_types_normalizedevent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L461", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager_matchmodalities", + "target": "apps_extension_chromium_src_automation_types_modality", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L493", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager_processautomation", + "target": "apps_extension_chromium_src_automation_types_automationconfig", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L493", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager_processautomation", + "target": "apps_extension_chromium_src_automation_types_normalizedevent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/ListenerManager.ts", + "source_location": "L493", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_listenermanager_listenermanager_processautomation", + "target": "apps_extension_chromium_src_automation_types_processingresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/__tests__/ConditionEngine.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_tests_conditionengine_test", + "target": "apps_extension_chromium_src_automation_conditions_conditionengine", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/__tests__/ConditionEngine.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_tests_conditionengine_test", + "target": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/__tests__/ConditionEngine.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_tests_conditionengine_test", + "target": "apps_extension_chromium_src_automation_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/__tests__/ConditionEngine.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_tests_conditionengine_test", + "target": "apps_extension_chromium_src_automation_types_condition", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/__tests__/ConditionEngine.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_tests_conditionengine_test", + "target": "apps_extension_chromium_src_automation_types_fieldcondition", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/__tests__/LegacyConfigAdapter.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_tests_legacyconfigadapter_test", + "target": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/__tests__/LegacyConfigAdapter.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_tests_legacyconfigadapter_test", + "target": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_adaptlegacyconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/__tests__/LegacyConfigAdapter.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_tests_legacyconfigadapter_test", + "target": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_adaptlegacysource", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/__tests__/LegacyConfigAdapter.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_tests_legacyconfigadapter_test", + "target": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_legacyconfigadapter", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/__tests__/LegacyConfigAdapter.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_tests_legacyconfigadapter_test", + "target": "apps_extension_chromium_src_automation_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/__tests__/LegacyConfigAdapter.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_tests_legacyconfigadapter_test", + "target": "apps_extension_chromium_src_automation_types_automationconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/__tests__/LegacyConfigAdapter.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_tests_legacyconfigadapter_test", + "target": "apps_extension_chromium_src_automation_types_legacyagentconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/__tests__/ListenerManager.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_tests_listenermanager_test", + "target": "apps_extension_chromium_src_automation_triggers_chattrigger", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/__tests__/ListenerManager.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_tests_listenermanager_test", + "target": "apps_extension_chromium_src_automation_triggers_chattrigger_chattrigger", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/__tests__/ListenerManager.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_tests_listenermanager_test", + "target": "apps_extension_chromium_src_automation_triggers_triggerregistry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/__tests__/ListenerManager.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_tests_listenermanager_test", + "target": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/__tests__/ListenerManager.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_tests_listenermanager_test", + "target": "apps_extension_chromium_src_automation_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/__tests__/ListenerManager.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_tests_listenermanager_test", + "target": "apps_extension_chromium_src_automation_types_automationconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/__tests__/ListenerManager.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_tests_listenermanager_test", + "target": "apps_extension_chromium_src_automation_types_condition", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/__tests__/ListenerManager.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_tests_listenermanager_test", + "target": "apps_extension_chromium_src_automation_types_normalizedevent", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/__tests__/ListenerManager.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_tests_listenermanager_test", + "target": "apps_extension_chromium_src_automation_workflows_workflowregistry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/__tests__/ListenerManager.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_tests_listenermanager_test", + "target": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/__tests__/TriggerRegistry.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_tests_triggerregistry_test", + "target": "apps_extension_chromium_src_automation_triggers_chattrigger", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/__tests__/TriggerRegistry.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_tests_triggerregistry_test", + "target": "apps_extension_chromium_src_automation_triggers_chattrigger_chattrigger", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/__tests__/TriggerRegistry.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_tests_triggerregistry_test", + "target": "apps_extension_chromium_src_automation_triggers_crontrigger", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/__tests__/TriggerRegistry.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_tests_triggerregistry_test", + "target": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/__tests__/TriggerRegistry.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_tests_triggerregistry_test", + "target": "apps_extension_chromium_src_automation_triggers_triggerregistry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/__tests__/TriggerRegistry.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_tests_triggerregistry_test", + "target": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/__tests__/TriggerRegistry.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_tests_triggerregistry_test", + "target": "apps_extension_chromium_src_automation_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/__tests__/TriggerRegistry.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_tests_triggerregistry_test", + "target": "apps_extension_chromium_src_automation_types_normalizedevent", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/__tests__/WorkflowRunner.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_tests_workflowrunner_test", + "target": "apps_extension_chromium_src_automation_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/__tests__/WorkflowRunner.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_tests_workflowrunner_test", + "target": "apps_extension_chromium_src_automation_types_normalizedevent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/__tests__/WorkflowRunner.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_tests_workflowrunner_test", + "target": "apps_extension_chromium_src_automation_types_workflowcontext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/__tests__/WorkflowRunner.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_tests_workflowrunner_test", + "target": "apps_extension_chromium_src_automation_types_workflowdefinition", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/__tests__/WorkflowRunner.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_tests_workflowrunner_test", + "target": "apps_extension_chromium_src_automation_workflows_actionworkflow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/__tests__/WorkflowRunner.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_tests_workflowrunner_test", + "target": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/__tests__/WorkflowRunner.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_tests_workflowrunner_test", + "target": "apps_extension_chromium_src_automation_workflows_sensorworkflow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/__tests__/WorkflowRunner.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_tests_workflowrunner_test", + "target": "apps_extension_chromium_src_automation_workflows_sensorworkflow_sensorworkflow", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/__tests__/WorkflowRunner.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_tests_workflowrunner_test", + "target": "apps_extension_chromium_src_automation_workflows_workflowregistry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/__tests__/WorkflowRunner.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_tests_workflowrunner_test", + "target": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/__tests__/WorkflowRunner.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_tests_workflowrunner_test", + "target": "apps_extension_chromium_src_automation_workflows_workflowrunner", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/__tests__/WorkflowRunner.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_tests_workflowrunner_test", + "target": "apps_extension_chromium_src_automation_workflows_workflowrunner_workflowrunner", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_index", + "target": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/LegacyConfigAdapter.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter", + "target": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_adaptlegacyconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/LegacyConfigAdapter.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter", + "target": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_adaptlegacysource", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/LegacyConfigAdapter.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter", + "target": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_extractpatterns", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/LegacyConfigAdapter.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter", + "target": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_infermodalities", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/LegacyConfigAdapter.ts", + "source_location": "L283", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter", + "target": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_legacyadapter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/LegacyConfigAdapter.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter", + "target": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_legacyconfigadapter", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/LegacyConfigAdapter.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter", + "target": "apps_extension_chromium_src_automation_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/LegacyConfigAdapter.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter", + "target": "apps_extension_chromium_src_automation_types_automationconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/LegacyConfigAdapter.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter", + "target": "apps_extension_chromium_src_automation_types_legacyagentconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/LegacyConfigAdapter.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter", + "target": "apps_extension_chromium_src_automation_types_legacylisteningconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/LegacyConfigAdapter.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter", + "target": "apps_extension_chromium_src_automation_types_legacytrigger", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/LegacyConfigAdapter.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter", + "target": "apps_extension_chromium_src_automation_types_listenermode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/LegacyConfigAdapter.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter", + "target": "apps_extension_chromium_src_automation_types_modality", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/LegacyConfigAdapter.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter", + "target": "apps_extension_chromium_src_automation_types_triggerconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/LegacyConfigAdapter.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter", + "target": "apps_extension_chromium_src_automation_types_triggerscope", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/LegacyConfigAdapter.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter", + "target": "apps_extension_chromium_src_automation_types_triggersource", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/index.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_index", + "target": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_index", + "target": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_adaptlegacysource", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/LegacyConfigAdapter.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_adaptlegacyconfig", + "target": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_adaptlegacysource", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/LegacyConfigAdapter.ts", + "source_location": "L276", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_legacyconfigadapter_migratesource", + "target": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_adaptlegacysource", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/LegacyConfigAdapter.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_adaptlegacyconfig", + "target": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_infermodalities", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/LegacyConfigAdapter.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_adaptlegacyconfig", + "target": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_extractpatterns", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_index", + "target": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_adaptlegacyconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/LegacyConfigAdapter.ts", + "source_location": "L172", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_legacyconfigadapter_adapt", + "target": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_adaptlegacyconfig", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_index", + "target": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_legacyconfigadapter", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/LegacyConfigAdapter.ts", + "source_location": "L171", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_legacyconfigadapter", + "target": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_legacyconfigadapter_adapt", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/LegacyConfigAdapter.ts", + "source_location": "L181", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_legacyconfigadapter", + "target": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_legacyconfigadapter_adaptmany", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/LegacyConfigAdapter.ts", + "source_location": "L241", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_legacyconfigadapter", + "target": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_legacyconfigadapter_ensurenewformat", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/LegacyConfigAdapter.ts", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_legacyconfigadapter", + "target": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_legacyconfigadapter_islegacyconfig", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/LegacyConfigAdapter.ts", + "source_location": "L217", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_legacyconfigadapter", + "target": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_legacyconfigadapter_isnewconfig", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/LegacyConfigAdapter.ts", + "source_location": "L275", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_legacyconfigadapter", + "target": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_legacyconfigadapter_migratesource", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/index.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_index", + "target": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_legacyconfigadapter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_legacyconfigadapter", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/LegacyConfigAdapter.ts", + "source_location": "L171", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_legacyconfigadapter_adapt", + "target": "apps_extension_chromium_src_automation_types_automationconfig", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/LegacyConfigAdapter.ts", + "source_location": "L171", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_legacyconfigadapter_adapt", + "target": "apps_extension_chromium_src_automation_types_legacyagentconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/LegacyConfigAdapter.ts", + "source_location": "L182", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_legacyconfigadapter_adaptmany", + "target": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_legacyconfigadapter_adapt", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/LegacyConfigAdapter.ts", + "source_location": "L247", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_legacyconfigadapter_ensurenewformat", + "target": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_legacyconfigadapter_adapt", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/LegacyConfigAdapter.ts", + "source_location": "L181", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_legacyconfigadapter_adaptmany", + "target": "apps_extension_chromium_src_automation_types_automationconfig", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/LegacyConfigAdapter.ts", + "source_location": "L181", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_legacyconfigadapter_adaptmany", + "target": "apps_extension_chromium_src_automation_types_legacyagentconfig", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/extension-chromium/src/automation/adapters/LegacyConfigAdapter.ts", + "source_location": "L182", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_legacyconfigadapter_adaptmany", + "target": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_agent" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/LegacyConfigAdapter.ts", + "source_location": "L246", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_legacyconfigadapter_ensurenewformat", + "target": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_legacyconfigadapter_islegacyconfig", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/LegacyConfigAdapter.ts", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_legacyconfigadapter_islegacyconfig", + "target": "apps_extension_chromium_src_automation_types_legacyagentconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/LegacyConfigAdapter.ts", + "source_location": "L242", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_legacyconfigadapter_ensurenewformat", + "target": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_legacyconfigadapter_isnewconfig", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/LegacyConfigAdapter.ts", + "source_location": "L217", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_legacyconfigadapter_isnewconfig", + "target": "apps_extension_chromium_src_automation_types_automationconfig", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/LegacyConfigAdapter.ts", + "source_location": "L241", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_legacyconfigadapter_ensurenewformat", + "target": "apps_extension_chromium_src_automation_types_automationconfig", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/LegacyConfigAdapter.ts", + "source_location": "L275", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_legacyconfigadapter_legacyconfigadapter_migratesource", + "target": "apps_extension_chromium_src_automation_types_triggersource", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/TriggerMigration.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_triggermigration", + "target": "apps_extension_chromium_src_automation_adapters_triggermigration_listeningmigrationresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/TriggerMigration.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_triggermigration", + "target": "apps_extension_chromium_src_automation_adapters_triggermigration_migrationresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/TriggerMigration.ts", + "source_location": "L348", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_triggermigration", + "target": "apps_extension_chromium_src_automation_adapters_triggermigration_triggermigration", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/TriggerMigration.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_triggermigration", + "target": "apps_extension_chromium_src_automation_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/TriggerMigration.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_triggermigration", + "target": "apps_extension_chromium_src_automation_types_eventchannel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/TriggerMigration.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_triggermigration", + "target": "apps_extension_chromium_src_automation_types_eventtagcondition", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/TriggerMigration.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_triggermigration", + "target": "apps_extension_chromium_src_automation_types_legacylisteningconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/TriggerMigration.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_triggermigration", + "target": "apps_extension_chromium_src_automation_types_legacytrigger", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/TriggerMigration.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_triggermigration", + "target": "apps_extension_chromium_src_automation_types_unifiedtriggerconfig", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/index.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_index", + "target": "apps_extension_chromium_src_automation_adapters_triggermigration", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/TriggerMigration.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_triggermigration_migrationresult", + "target": "apps_extension_chromium_src_automation_types_unifiedtriggerconfig", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/TriggerMigration.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_triggermigration_listeningmigrationresult", + "target": "apps_extension_chromium_src_automation_types_unifiedtriggerconfig", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/TriggerMigration.ts", + "source_location": "L322", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_triggermigration_triggermigration", + "target": "apps_extension_chromium_src_automation_adapters_triggermigration_triggermigration_generateid", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/TriggerMigration.ts", + "source_location": "L299", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_triggermigration_triggermigration", + "target": "apps_extension_chromium_src_automation_adapters_triggermigration_triggermigration_inferchannel", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/TriggerMigration.ts", + "source_location": "L233", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_triggermigration_triggermigration", + "target": "apps_extension_chromium_src_automation_adapters_triggermigration_triggermigration_migratelegacytrigger", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/TriggerMigration.ts", + "source_location": "L183", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_triggermigration_triggermigration", + "target": "apps_extension_chromium_src_automation_adapters_triggermigration_triggermigration_migratelisteningconfig", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/TriggerMigration.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_triggermigration_triggermigration", + "target": "apps_extension_chromium_src_automation_adapters_triggermigration_triggermigration_migratetrigger", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/TriggerMigration.ts", + "source_location": "L332", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_triggermigration_triggermigration", + "target": "apps_extension_chromium_src_automation_adapters_triggermigration_triggermigration_needsmigration", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/index.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_index", + "target": "apps_extension_chromium_src_automation_adapters_triggermigration_triggermigration", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/TriggerMigration.ts", + "source_location": "L192", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_triggermigration_triggermigration_migratelisteningconfig", + "target": "apps_extension_chromium_src_automation_adapters_triggermigration_triggermigration_migratetrigger", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/TriggerMigration.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_triggermigration_triggermigration_migratetrigger", + "target": "apps_extension_chromium_src_automation_adapters_triggermigration_triggermigration_generateid", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/TriggerMigration.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_triggermigration_triggermigration_migratetrigger", + "target": "apps_extension_chromium_src_automation_types_unifiedtriggerconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/TriggerMigration.ts", + "source_location": "L203", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_triggermigration_triggermigration_migratelisteningconfig", + "target": "apps_extension_chromium_src_automation_adapters_triggermigration_triggermigration_migratelegacytrigger", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/TriggerMigration.ts", + "source_location": "L183", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_triggermigration_triggermigration_migratelisteningconfig", + "target": "apps_extension_chromium_src_automation_types_legacylisteningconfig", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/TriggerMigration.ts", + "source_location": "L183", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_triggermigration_triggermigration_migratelisteningconfig", + "target": "apps_extension_chromium_src_automation_types_unifiedtriggerconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/TriggerMigration.ts", + "source_location": "L245", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_triggermigration_triggermigration_migratelegacytrigger", + "target": "apps_extension_chromium_src_automation_adapters_triggermigration_triggermigration_generateid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/TriggerMigration.ts", + "source_location": "L250", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_triggermigration_triggermigration_migratelegacytrigger", + "target": "apps_extension_chromium_src_automation_adapters_triggermigration_triggermigration_inferchannel", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/TriggerMigration.ts", + "source_location": "L233", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_triggermigration_triggermigration_migratelegacytrigger", + "target": "apps_extension_chromium_src_automation_types_legacylisteningconfig", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/TriggerMigration.ts", + "source_location": "L233", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_triggermigration_triggermigration_migratelegacytrigger", + "target": "apps_extension_chromium_src_automation_types_legacytrigger", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/TriggerMigration.ts", + "source_location": "L299", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_triggermigration_triggermigration_inferchannel", + "target": "apps_extension_chromium_src_automation_types_eventchannel", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/adapters/TriggerMigration.ts", + "source_location": "L332", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_adapters_triggermigration_triggermigration_needsmigration", + "target": "apps_extension_chromium_src_automation_types_unifiedtriggerconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine", + "target": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine", + "target": "apps_extension_chromium_src_automation_conditions_conditionengine_isallcondition", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine", + "target": "apps_extension_chromium_src_automation_conditions_conditionengine_isanycondition", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine", + "target": "apps_extension_chromium_src_automation_conditions_conditionengine_isfieldcondition", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine", + "target": "apps_extension_chromium_src_automation_conditions_conditionengine_isnotcondition", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine", + "target": "apps_extension_chromium_src_automation_conditions_operators", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine", + "target": "apps_extension_chromium_src_automation_conditions_operators_evaluateoperator", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine", + "target": "apps_extension_chromium_src_automation_conditions_operators_getnestedvalue", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine", + "target": "apps_extension_chromium_src_automation_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine", + "target": "apps_extension_chromium_src_automation_types_allcondition", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine", + "target": "apps_extension_chromium_src_automation_types_anycondition", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine", + "target": "apps_extension_chromium_src_automation_types_condition", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine", + "target": "apps_extension_chromium_src_automation_types_fieldcondition", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine", + "target": "apps_extension_chromium_src_automation_types_notcondition", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine", + "target": "apps_extension_chromium_src_automation_types_validationresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_index", + "target": "apps_extension_chromium_src_automation_conditions_conditionengine", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/index.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_index", + "target": "apps_extension_chromium_src_automation_conditions_conditionengine", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_evaluatecondition", + "target": "apps_extension_chromium_src_automation_conditions_conditionengine_isallcondition", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L172", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_validatecondition", + "target": "apps_extension_chromium_src_automation_conditions_conditionengine_isallcondition", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_evaluatecondition", + "target": "apps_extension_chromium_src_automation_conditions_conditionengine_isanycondition", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L183", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_validatecondition", + "target": "apps_extension_chromium_src_automation_conditions_conditionengine_isanycondition", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_evaluatecondition", + "target": "apps_extension_chromium_src_automation_conditions_conditionengine_isnotcondition", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L194", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_validatecondition", + "target": "apps_extension_chromium_src_automation_conditions_conditionengine_isnotcondition", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_evaluatecondition", + "target": "apps_extension_chromium_src_automation_conditions_conditionengine_isfieldcondition", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L203", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_validatecondition", + "target": "apps_extension_chromium_src_automation_conditions_conditionengine_isfieldcondition", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L262", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine", + "target": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_all", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L269", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine", + "target": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_any", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L241", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine", + "target": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_contains", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L227", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine", + "target": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_eq", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine", + "target": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_evaluate", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine", + "target": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_evaluateall", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine", + "target": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_evaluateany", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine", + "target": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_evaluatecondition", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L137", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine", + "target": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_evaluatefield", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine", + "target": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_evaluatenot", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L283", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine", + "target": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_exists", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L248", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine", + "target": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_gt", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L304", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine", + "target": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_in", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L255", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine", + "target": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_lt", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L234", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine", + "target": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_ne", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L276", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine", + "target": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_not", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L290", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine", + "target": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_notexists", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L297", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine", + "target": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_regex", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine", + "target": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_validate", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine", + "target": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_validatecondition", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_index", + "target": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/index.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_index", + "target": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_evaluate", + "target": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_evaluatecondition", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_evaluate", + "target": "apps_extension_chromium_src_automation_types_condition", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_evaluateall", + "target": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_evaluatecondition", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_evaluateany", + "target": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_evaluatecondition", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_evaluatecondition", + "target": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_evaluatefield", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_evaluatecondition", + "target": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_evaluatenot", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_evaluatecondition", + "target": "apps_extension_chromium_src_automation_types_condition", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_evaluateall", + "target": "apps_extension_chromium_src_automation_types_condition", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_evaluateany", + "target": "apps_extension_chromium_src_automation_types_condition", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_evaluatenot", + "target": "apps_extension_chromium_src_automation_types_condition", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_evaluatefield", + "target": "apps_extension_chromium_src_automation_conditions_operators_evaluateoperator" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L139", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_evaluatefield", + "target": "apps_extension_chromium_src_automation_conditions_operators_getnestedvalue" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L137", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_evaluatefield", + "target": "apps_extension_chromium_src_automation_types_fieldcondition", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L156", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_validate", + "target": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_validatecondition", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_validate", + "target": "apps_extension_chromium_src_automation_types_condition", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_validate", + "target": "apps_extension_chromium_src_automation_types_validationresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_validatecondition", + "target": "apps_extension_chromium_src_automation_types_condition", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L227", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_eq", + "target": "apps_extension_chromium_src_automation_types_fieldcondition", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L234", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_ne", + "target": "apps_extension_chromium_src_automation_types_fieldcondition", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L241", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_contains", + "target": "apps_extension_chromium_src_automation_types_fieldcondition", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L248", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_gt", + "target": "apps_extension_chromium_src_automation_types_fieldcondition", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L255", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_lt", + "target": "apps_extension_chromium_src_automation_types_fieldcondition", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L262", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_all", + "target": "apps_extension_chromium_src_automation_types_allcondition", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L262", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_all", + "target": "apps_extension_chromium_src_automation_types_condition", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L269", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_any", + "target": "apps_extension_chromium_src_automation_types_anycondition", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L269", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_any", + "target": "apps_extension_chromium_src_automation_types_condition", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L276", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_not", + "target": "apps_extension_chromium_src_automation_types_condition", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L276", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_not", + "target": "apps_extension_chromium_src_automation_types_notcondition", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L283", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_exists", + "target": "apps_extension_chromium_src_automation_types_fieldcondition", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L290", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_notexists", + "target": "apps_extension_chromium_src_automation_types_fieldcondition", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L297", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_regex", + "target": "apps_extension_chromium_src_automation_types_fieldcondition", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts", + "source_location": "L304", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_conditionengine_conditionengine_in", + "target": "apps_extension_chromium_src_automation_types_fieldcondition", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L527", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher", + "target": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher", + "target": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_matchresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher", + "target": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_triggervalidationresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher", + "target": "apps_extension_chromium_src_automation_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher", + "target": "apps_extension_chromium_src_automation_types_bodykeywordscondition", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher", + "target": "apps_extension_chromium_src_automation_types_eventchannel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher", + "target": "apps_extension_chromium_src_automation_types_eventtagcondition", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher", + "target": "apps_extension_chromium_src_automation_types_normalizedevent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher", + "target": "apps_extension_chromium_src_automation_types_senderwhitelistcondition", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher", + "target": "apps_extension_chromium_src_automation_types_unifiedtriggerconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher", + "target": "apps_extension_chromium_src_automation_types_websitefiltercondition", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher", + "target": "apps_extension_chromium_src_automation_types_wrcodecondition", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/index.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_index", + "target": "apps_extension_chromium_src_automation_conditions_eventtagmatcher", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher", + "target": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_evaluate", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L370", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher", + "target": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_evaluatebodykeywords", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L290", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher", + "target": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_evaluatecondition", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L338", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher", + "target": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_evaluatesenderwhitelist", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L406", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher", + "target": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_evaluatewebsitefilter", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L319", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher", + "target": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_evaluatewrcode", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L481", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher", + "target": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_extracttags", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L471", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher", + "target": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_isvalidemail", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L258", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher", + "target": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_matchchannel", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L265", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher", + "target": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_matchtag", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L442", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher", + "target": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_matchurlpattern", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L492", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher", + "target": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_normalizeemailevent", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L216", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher", + "target": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_validatecondition", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L173", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher", + "target": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_validatetrigger", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/index.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_index", + "target": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_evaluate", + "target": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_evaluatebodykeywords", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_evaluate", + "target": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_evaluatecondition", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_evaluate", + "target": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_evaluatewebsitefilter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_evaluate", + "target": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_matchchannel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_evaluate", + "target": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_matchtag", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_evaluate", + "target": "apps_extension_chromium_src_automation_types_normalizedevent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_evaluate", + "target": "apps_extension_chromium_src_automation_types_unifiedtriggerconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L194", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_validatetrigger", + "target": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_validatecondition", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L173", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_validatetrigger", + "target": "apps_extension_chromium_src_automation_types_unifiedtriggerconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L229", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_validatecondition", + "target": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_isvalidemail", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L216", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_validatecondition", + "target": "apps_extension_chromium_src_automation_types_eventtagcondition", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L258", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_matchchannel", + "target": "apps_extension_chromium_src_automation_types_eventchannel", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L265", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_matchtag", + "target": "apps_extension_chromium_src_automation_types_normalizedevent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L302", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_evaluatecondition", + "target": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_evaluatebodykeywords", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L299", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_evaluatecondition", + "target": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_evaluatesenderwhitelist", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L305", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_evaluatecondition", + "target": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_evaluatewebsitefilter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L296", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_evaluatecondition", + "target": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_evaluatewrcode", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L290", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_evaluatecondition", + "target": "apps_extension_chromium_src_automation_types_eventtagcondition", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L290", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_evaluatecondition", + "target": "apps_extension_chromium_src_automation_types_normalizedevent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L319", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_evaluatewrcode", + "target": "apps_extension_chromium_src_automation_types_normalizedevent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L319", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_evaluatewrcode", + "target": "apps_extension_chromium_src_automation_types_wrcodecondition", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L338", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_evaluatesenderwhitelist", + "target": "apps_extension_chromium_src_automation_types_normalizedevent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L338", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_evaluatesenderwhitelist", + "target": "apps_extension_chromium_src_automation_types_senderwhitelistcondition", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L370", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_evaluatebodykeywords", + "target": "apps_extension_chromium_src_automation_types_bodykeywordscondition", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L370", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_evaluatebodykeywords", + "target": "apps_extension_chromium_src_automation_types_normalizedevent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L426", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_evaluatewebsitefilter", + "target": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_matchurlpattern", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L406", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_evaluatewebsitefilter", + "target": "apps_extension_chromium_src_automation_types_normalizedevent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L406", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_evaluatewebsitefilter", + "target": "apps_extension_chromium_src_automation_types_websitefiltercondition", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L516", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_normalizeemailevent", + "target": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_extracttags" + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts", + "source_location": "L492", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_eventtagmatcher_eventtagmatcher_normalizeemailevent", + "target": "apps_extension_chromium_src_automation_types_normalizedevent", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/index.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_index", + "target": "apps_extension_chromium_src_automation_conditions_operators", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/index.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_index", + "target": "apps_extension_chromium_src_automation_conditions_operators_evaluateoperator", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/index.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_index", + "target": "apps_extension_chromium_src_automation_conditions_operators_getnestedvalue", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/operators.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_operators", + "target": "apps_extension_chromium_src_automation_conditions_operators_evaluateoperator", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/operators.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_operators", + "target": "apps_extension_chromium_src_automation_conditions_operators_getnestedvalue", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/operators.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_operators", + "target": "apps_extension_chromium_src_automation_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/conditions/operators.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_conditions_operators", + "target": "apps_extension_chromium_src_automation_types_conditionoperator", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/index.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_index", + "target": "apps_extension_chromium_src_automation_triggers_basetrigger", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/index.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_index", + "target": "apps_extension_chromium_src_automation_triggers_basetrigger_basetrigger", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/index.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_index", + "target": "apps_extension_chromium_src_automation_triggers_chattrigger", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/index.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_index", + "target": "apps_extension_chromium_src_automation_triggers_chattrigger_chattrigger", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/index.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_index", + "target": "apps_extension_chromium_src_automation_triggers_crontrigger", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/index.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_index", + "target": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/index.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_index", + "target": "apps_extension_chromium_src_automation_triggers_triggerregistry", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/index.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_index", + "target": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/index.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_index", + "target": "apps_extension_chromium_src_automation_types", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/index.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_index", + "target": "apps_extension_chromium_src_automation_workflows_workflowregistry", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/index.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_index", + "target": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/index.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_index", + "target": "apps_extension_chromium_src_automation_workflows_workflowrunner", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/index.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_index", + "target": "apps_extension_chromium_src_automation_workflows_workflowrunner_workflowrunner", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_automation_index", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/BaseTrigger.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_basetrigger", + "target": "apps_extension_chromium_src_automation_triggers_basetrigger_basetrigger", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/BaseTrigger.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_basetrigger", + "target": "apps_extension_chromium_src_automation_triggers_basetrigger_triggercallback", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/BaseTrigger.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_basetrigger", + "target": "apps_extension_chromium_src_automation_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/BaseTrigger.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_basetrigger", + "target": "apps_extension_chromium_src_automation_types_modality", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/BaseTrigger.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_basetrigger", + "target": "apps_extension_chromium_src_automation_types_normalizedevent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/BaseTrigger.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_basetrigger", + "target": "apps_extension_chromium_src_automation_types_triggerscope", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/BaseTrigger.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_basetrigger", + "target": "apps_extension_chromium_src_automation_types_triggersource", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/ChatTrigger.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_chattrigger", + "target": "apps_extension_chromium_src_automation_triggers_basetrigger", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/CronTrigger.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_crontrigger", + "target": "apps_extension_chromium_src_automation_triggers_basetrigger", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/index.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_index", + "target": "apps_extension_chromium_src_automation_triggers_basetrigger", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_triggerregistry", + "target": "apps_extension_chromium_src_automation_triggers_basetrigger", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/BaseTrigger.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_basetrigger_basetrigger", + "target": "apps_extension_chromium_src_automation_triggers_basetrigger_basetrigger_constructor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/BaseTrigger.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_basetrigger_basetrigger", + "target": "apps_extension_chromium_src_automation_triggers_basetrigger_basetrigger_createevent", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/BaseTrigger.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_basetrigger_basetrigger", + "target": "apps_extension_chromium_src_automation_triggers_basetrigger_basetrigger_emit", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/BaseTrigger.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_basetrigger_basetrigger", + "target": "apps_extension_chromium_src_automation_triggers_basetrigger_basetrigger_getid", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/BaseTrigger.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_basetrigger_basetrigger", + "target": "apps_extension_chromium_src_automation_triggers_basetrigger_basetrigger_getisactive", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/BaseTrigger.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_basetrigger_basetrigger", + "target": "apps_extension_chromium_src_automation_triggers_basetrigger_basetrigger_getsource", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/BaseTrigger.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_basetrigger_basetrigger", + "target": "apps_extension_chromium_src_automation_triggers_basetrigger_basetrigger_subscribe", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/BaseTrigger.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_basetrigger_basetrigger", + "target": "apps_extension_chromium_src_automation_types_triggersource", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/ChatTrigger.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_chattrigger", + "target": "apps_extension_chromium_src_automation_triggers_basetrigger_basetrigger", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/ChatTrigger.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_chattrigger_chattrigger", + "target": "apps_extension_chromium_src_automation_triggers_basetrigger_basetrigger", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/CronTrigger.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_crontrigger", + "target": "apps_extension_chromium_src_automation_triggers_basetrigger_basetrigger", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/CronTrigger.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger", + "target": "apps_extension_chromium_src_automation_triggers_basetrigger_basetrigger", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/index.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_index", + "target": "apps_extension_chromium_src_automation_triggers_basetrigger_basetrigger", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_triggerregistry", + "target": "apps_extension_chromium_src_automation_triggers_basetrigger_basetrigger", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry", + "target": "apps_extension_chromium_src_automation_triggers_basetrigger_basetrigger", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_getalltriggers", + "target": "apps_extension_chromium_src_automation_triggers_basetrigger_basetrigger", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_gettriggers", + "target": "apps_extension_chromium_src_automation_triggers_basetrigger_basetrigger", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_registertrigger", + "target": "apps_extension_chromium_src_automation_triggers_basetrigger_basetrigger", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L205", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_startall", + "target": "apps_extension_chromium_src_automation_triggers_basetrigger_basetrigger" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L235", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_startsource", + "target": "apps_extension_chromium_src_automation_triggers_basetrigger_basetrigger" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L219", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_stopall", + "target": "apps_extension_chromium_src_automation_triggers_basetrigger_basetrigger" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L249", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_stopsource", + "target": "apps_extension_chromium_src_automation_triggers_basetrigger_basetrigger" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_unregistertrigger", + "target": "apps_extension_chromium_src_automation_triggers_basetrigger_basetrigger" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_registertrigger", + "target": "apps_extension_chromium_src_automation_triggers_basetrigger_basetrigger_getid" + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/BaseTrigger.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_basetrigger_basetrigger_getsource", + "target": "apps_extension_chromium_src_automation_types_triggersource", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_registertrigger", + "target": "apps_extension_chromium_src_automation_triggers_basetrigger_basetrigger_getsource" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L204", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_startall", + "target": "apps_extension_chromium_src_automation_triggers_basetrigger_basetrigger_getisactive" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L234", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_startsource", + "target": "apps_extension_chromium_src_automation_triggers_basetrigger_basetrigger_getisactive" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L218", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_stopall", + "target": "apps_extension_chromium_src_automation_triggers_basetrigger_basetrigger_getisactive" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L248", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_stopsource", + "target": "apps_extension_chromium_src_automation_triggers_basetrigger_basetrigger_getisactive" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/BaseTrigger.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_basetrigger_basetrigger_emit", + "target": "apps_extension_chromium_src_automation_types_normalizedevent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/BaseTrigger.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_basetrigger_basetrigger_createevent", + "target": "apps_extension_chromium_src_automation_types_modality", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/BaseTrigger.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_basetrigger_basetrigger_createevent", + "target": "apps_extension_chromium_src_automation_types_normalizedevent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/BaseTrigger.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_basetrigger_basetrigger_createevent", + "target": "apps_extension_chromium_src_automation_types_triggerscope", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/ChatTrigger.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_chattrigger", + "target": "apps_extension_chromium_src_automation_triggers_chattrigger_chatinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/ChatTrigger.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_chattrigger", + "target": "apps_extension_chromium_src_automation_triggers_chattrigger_chattrigger", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/ChatTrigger.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_chattrigger", + "target": "apps_extension_chromium_src_automation_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/ChatTrigger.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_chattrigger", + "target": "apps_extension_chromium_src_automation_types_modality", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/ChatTrigger.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_chattrigger", + "target": "apps_extension_chromium_src_automation_types_triggerscope", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/ChatTrigger.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_chattrigger", + "target": "apps_extension_chromium_src_automation_types_triggersource", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_index", + "target": "apps_extension_chromium_src_automation_triggers_chattrigger", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/ChatTrigger.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_chattrigger_chattrigger", + "target": "apps_extension_chromium_src_automation_triggers_chattrigger_chattrigger_constructor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/ChatTrigger.ts", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_chattrigger_chattrigger", + "target": "apps_extension_chromium_src_automation_triggers_chattrigger_chattrigger_extractmentions", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/ChatTrigger.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_chattrigger_chattrigger", + "target": "apps_extension_chromium_src_automation_triggers_chattrigger_chattrigger_handlemessage", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/ChatTrigger.ts", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_chattrigger_chattrigger", + "target": "apps_extension_chromium_src_automation_triggers_chattrigger_chattrigger_hasmention", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/ChatTrigger.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_chattrigger_chattrigger", + "target": "apps_extension_chromium_src_automation_triggers_chattrigger_chattrigger_start", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/ChatTrigger.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_chattrigger_chattrigger", + "target": "apps_extension_chromium_src_automation_triggers_chattrigger_chattrigger_stop", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/ChatTrigger.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_chattrigger_chattrigger", + "target": "apps_extension_chromium_src_automation_types_triggersource", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_index", + "target": "apps_extension_chromium_src_automation_triggers_chattrigger_chattrigger", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_automation_triggers_chattrigger_chattrigger", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/automation/triggers/ChatTrigger.ts", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_chattrigger_chattrigger_hasmention", + "target": "apps_extension_chromium_src_automation_triggers_chattrigger_chattrigger_extractmentions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/CronTrigger.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_crontrigger", + "target": "apps_extension_chromium_src_automation_triggers_crontrigger_cronschedule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/CronTrigger.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_crontrigger", + "target": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/CronTrigger.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_crontrigger", + "target": "apps_extension_chromium_src_automation_triggers_crontrigger_scheduledjob", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/CronTrigger.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_crontrigger", + "target": "apps_extension_chromium_src_automation_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/CronTrigger.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_crontrigger", + "target": "apps_extension_chromium_src_automation_types_triggerscope", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/CronTrigger.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_crontrigger", + "target": "apps_extension_chromium_src_automation_types_triggersource", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/index.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_index", + "target": "apps_extension_chromium_src_automation_triggers_crontrigger", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/CronTrigger.ts", + "source_location": "L173", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger", + "target": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger_checkjobs", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/CronTrigger.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger", + "target": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger_constructor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/CronTrigger.ts", + "source_location": "L166", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger", + "target": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger_getjobs", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/CronTrigger.ts", + "source_location": "L305", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger", + "target": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger_getnextrun", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/CronTrigger.ts", + "source_location": "L238", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger", + "target": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger_parsecronexpression", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/CronTrigger.ts", + "source_location": "L262", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger", + "target": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger_parsefield", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/CronTrigger.ts", + "source_location": "L209", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger", + "target": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger_runjob", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/CronTrigger.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger", + "target": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger_schedule", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/CronTrigger.ts", + "source_location": "L186", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger", + "target": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger_shouldrun", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/CronTrigger.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger", + "target": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger_start", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/CronTrigger.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger", + "target": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger_stop", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/CronTrigger.ts", + "source_location": "L340", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger", + "target": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger_triggernow", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/CronTrigger.ts", + "source_location": "L157", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger", + "target": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger_unschedule", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/CronTrigger.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger", + "target": "apps_extension_chromium_src_automation_types_triggersource", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/index.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_index", + "target": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/CronTrigger.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger_start", + "target": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger_checkjobs", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/CronTrigger.ts", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger_schedule", + "target": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger_parsecronexpression", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/CronTrigger.ts", + "source_location": "L178", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger_checkjobs", + "target": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger_runjob", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/CronTrigger.ts", + "source_location": "L177", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger_checkjobs", + "target": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger_shouldrun", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/CronTrigger.ts", + "source_location": "L347", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger_triggernow", + "target": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger_runjob", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/CronTrigger.ts", + "source_location": "L246", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger_parsecronexpression", + "target": "apps_extension_chromium_src_automation_triggers_crontrigger_crontrigger_parsefield", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_index", + "target": "apps_extension_chromium_src_automation_triggers_triggerregistry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L269", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_triggerregistry", + "target": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_triggerregistry", + "target": "apps_extension_chromium_src_automation_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_triggerregistry", + "target": "apps_extension_chromium_src_automation_types_eventsubscriber", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_triggerregistry", + "target": "apps_extension_chromium_src_automation_types_modality", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_triggerregistry", + "target": "apps_extension_chromium_src_automation_types_normalizedevent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_triggerregistry", + "target": "apps_extension_chromium_src_automation_types_triggerscope", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_triggerregistry", + "target": "apps_extension_chromium_src_automation_types_triggersource", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_index", + "target": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L257", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry", + "target": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_clear", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L165", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry", + "target": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_createandemit", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L156", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry", + "target": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_emit", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry", + "target": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_emitevent", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry", + "target": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_getalltriggers", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry", + "target": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_gettriggers", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry", + "target": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_registertrigger", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L201", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry", + "target": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_startall", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L231", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry", + "target": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_startsource", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L215", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry", + "target": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_stopall", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L245", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry", + "target": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_stopsource", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry", + "target": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_subscribe", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry", + "target": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_unregistertrigger", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry", + "target": "apps_extension_chromium_src_automation_types_eventsubscriber", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry", + "target": "apps_extension_chromium_src_automation_types_triggersource", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_registertrigger", + "target": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_emitevent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_registertrigger", + "target": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_subscribe", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_gettriggers", + "target": "apps_extension_chromium_src_automation_types_triggersource", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_getalltriggers", + "target": "apps_extension_chromium_src_automation_types_triggersource", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_subscribe", + "target": "apps_extension_chromium_src_automation_types_eventsubscriber", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L194", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_createandemit", + "target": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_emitevent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L157", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_emit", + "target": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_emitevent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_emitevent", + "target": "apps_extension_chromium_src_automation_types_normalizedevent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L156", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_emit", + "target": "apps_extension_chromium_src_automation_types_normalizedevent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L165", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_createandemit", + "target": "apps_extension_chromium_src_automation_types_modality", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L165", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_createandemit", + "target": "apps_extension_chromium_src_automation_types_normalizedevent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L165", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_createandemit", + "target": "apps_extension_chromium_src_automation_types_triggerscope", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L165", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_createandemit", + "target": "apps_extension_chromium_src_automation_types_triggersource", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L258", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_clear", + "target": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_stopall", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L231", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_startsource", + "target": "apps_extension_chromium_src_automation_types_triggersource", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts", + "source_location": "L245", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_triggers_triggerregistry_triggerregistry_stopsource", + "target": "apps_extension_chromium_src_automation_types_triggersource", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L756", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_types", + "target": "apps_extension_chromium_src_automation_types_actionresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L426", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_types", + "target": "apps_extension_chromium_src_automation_types_allcondition", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L433", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_types", + "target": "apps_extension_chromium_src_automation_types_anycondition", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L488", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_types", + "target": "apps_extension_chromium_src_automation_types_automationconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L165", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_types", + "target": "apps_extension_chromium_src_automation_types_bodykeywordscondition", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L465", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_types", + "target": "apps_extension_chromium_src_automation_types_condition", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L394", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_types", + "target": "apps_extension_chromium_src_automation_types_conditionoperator", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_types", + "target": "apps_extension_chromium_src_automation_types_eventchannel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L782", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_types", + "target": "apps_extension_chromium_src_automation_types_eventsubscriber", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L186", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_types", + "target": "apps_extension_chromium_src_automation_types_eventtagcondition", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_types", + "target": "apps_extension_chromium_src_automation_types_eventtagconditiontype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L1078", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_types", + "target": "apps_extension_chromium_src_automation_types_eventtagroutingbatch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L1042", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_types", + "target": "apps_extension_chromium_src_automation_types_eventtagroutinginput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L980", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_types", + "target": "apps_extension_chromium_src_automation_types_eventtagroutingresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L212", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_types", + "target": "apps_extension_chromium_src_automation_types_eventtagtriggerconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L412", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_types", + "target": "apps_extension_chromium_src_automation_types_fieldcondition", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L828", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_types", + "target": "apps_extension_chromium_src_automation_types_legacyagentconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L809", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_types", + "target": "apps_extension_chromium_src_automation_types_legacylisteningconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L799", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_types", + "target": "apps_extension_chromium_src_automation_types_legacytrigger", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L480", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_types", + "target": "apps_extension_chromium_src_automation_types_listenermode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L331", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_types", + "target": "apps_extension_chromium_src_automation_types_memorycontextsettings", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_types", + "target": "apps_extension_chromium_src_automation_types_modality", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L616", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_types", + "target": "apps_extension_chromium_src_automation_types_normalizedevent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L440", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_types", + "target": "apps_extension_chromium_src_automation_types_notcondition", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L856", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_types", + "target": "apps_extension_chromium_src_automation_types_outputdestination", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L724", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_types", + "target": "apps_extension_chromium_src_automation_types_processingresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L958", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_types", + "target": "apps_extension_chromium_src_automation_types_resolvedexecutionconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L902", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_types", + "target": "apps_extension_chromium_src_automation_types_resolvedimageconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L876", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_types", + "target": "apps_extension_chromium_src_automation_types_resolvedllmconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L931", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_types", + "target": "apps_extension_chromium_src_automation_types_resolvedreasoningconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L155", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_types", + "target": "apps_extension_chromium_src_automation_types_senderwhitelistcondition", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_types", + "target": "apps_extension_chromium_src_automation_types_triggerconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L777", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_types", + "target": "apps_extension_chromium_src_automation_types_triggerhandler", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_types", + "target": "apps_extension_chromium_src_automation_types_triggerscope", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_types", + "target": "apps_extension_chromium_src_automation_types_triggersource", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_types", + "target": "apps_extension_chromium_src_automation_types_triggertype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L353", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_types", + "target": "apps_extension_chromium_src_automation_types_unifiedlisteningconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L367", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_types", + "target": "apps_extension_chromium_src_automation_types_unifiedreasoningconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L245", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_types", + "target": "apps_extension_chromium_src_automation_types_unifiedtriggerconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L787", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_types", + "target": "apps_extension_chromium_src_automation_types_validationresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L177", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_types", + "target": "apps_extension_chromium_src_automation_types_websitefiltercondition", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L701", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_types", + "target": "apps_extension_chromium_src_automation_types_workflowcontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L585", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_types", + "target": "apps_extension_chromium_src_automation_types_workflowdefinition", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L557", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_types", + "target": "apps_extension_chromium_src_automation_types_workflowstep", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L543", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_types", + "target": "apps_extension_chromium_src_automation_types_workflowsteptype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L580", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_types", + "target": "apps_extension_chromium_src_automation_types_workflowtype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/types.ts", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_types", + "target": "apps_extension_chromium_src_automation_types_wrcodecondition", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_actionworkflow", + "target": "apps_extension_chromium_src_automation_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/SensorWorkflow.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_sensorworkflow", + "target": "apps_extension_chromium_src_automation_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRegistry.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowregistry", + "target": "apps_extension_chromium_src_automation_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRunner.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowrunner", + "target": "apps_extension_chromium_src_automation_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator", + "target": "apps_extension_chromium_src_automation_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator", + "target": "apps_extension_chromium_src_automation_types_eventchannel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator", + "target": "apps_extension_chromium_src_automation_types_triggertype", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator", + "target": "apps_extension_chromium_src_automation_types_eventtagcondition", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator", + "target": "apps_extension_chromium_src_automation_types_unifiedtriggerconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_automation_types_automationconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_actionworkflow", + "target": "apps_extension_chromium_src_automation_types_workflowsteptype", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_step", + "target": "apps_extension_chromium_src_automation_types_workflowsteptype", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/SensorWorkflow.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_sensorworkflow", + "target": "apps_extension_chromium_src_automation_types_workflowsteptype", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/SensorWorkflow.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_sensorworkflow_sensorstepconfig", + "target": "apps_extension_chromium_src_automation_types_workflowsteptype", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/SensorWorkflow.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_sensorworkflow_sensorworkflow_step", + "target": "apps_extension_chromium_src_automation_types_workflowsteptype", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRunner.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowrunner", + "target": "apps_extension_chromium_src_automation_types_workflowsteptype", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRunner.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowrunner_workflowrunner", + "target": "apps_extension_chromium_src_automation_types_workflowsteptype", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRunner.ts", + "source_location": "L185", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowrunner_workflowrunner_registerhandler", + "target": "apps_extension_chromium_src_automation_types_workflowsteptype", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_actionworkflow", + "target": "apps_extension_chromium_src_automation_types_workflowstep", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/SensorWorkflow.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_sensorworkflow", + "target": "apps_extension_chromium_src_automation_types_workflowstep", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRunner.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowrunner", + "target": "apps_extension_chromium_src_automation_types_workflowstep", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRegistry.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowregistry", + "target": "apps_extension_chromium_src_automation_types_workflowtype", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRegistry.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry_getbytype", + "target": "apps_extension_chromium_src_automation_types_workflowtype", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_actionworkflow", + "target": "apps_extension_chromium_src_automation_types_workflowdefinition", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow", + "target": "apps_extension_chromium_src_automation_types_workflowdefinition", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts", + "source_location": "L239", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_build", + "target": "apps_extension_chromium_src_automation_types_workflowdefinition", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/SensorWorkflow.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_sensorworkflow", + "target": "apps_extension_chromium_src_automation_types_workflowdefinition", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/SensorWorkflow.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_sensorworkflow_sensorworkflow", + "target": "apps_extension_chromium_src_automation_types_workflowdefinition", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/SensorWorkflow.ts", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_sensorworkflow_sensorworkflow_build", + "target": "apps_extension_chromium_src_automation_types_workflowdefinition", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRegistry.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowregistry", + "target": "apps_extension_chromium_src_automation_types_workflowdefinition", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRegistry.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry", + "target": "apps_extension_chromium_src_automation_types_workflowdefinition", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRegistry.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry_get", + "target": "apps_extension_chromium_src_automation_types_workflowdefinition", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRegistry.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry_getactionworkflows", + "target": "apps_extension_chromium_src_automation_types_workflowdefinition", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRegistry.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry_getall", + "target": "apps_extension_chromium_src_automation_types_workflowdefinition", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRegistry.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry_getbytype", + "target": "apps_extension_chromium_src_automation_types_workflowdefinition", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRegistry.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry_getsensorworkflows", + "target": "apps_extension_chromium_src_automation_types_workflowdefinition", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRegistry.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry_register", + "target": "apps_extension_chromium_src_automation_types_workflowdefinition", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRegistry.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry_validate", + "target": "apps_extension_chromium_src_automation_types_workflowdefinition", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRunner.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowrunner", + "target": "apps_extension_chromium_src_automation_types_workflowdefinition", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRunner.ts", + "source_location": "L251", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowrunner_workflowrunner_execute", + "target": "apps_extension_chromium_src_automation_types_workflowdefinition", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRunner.ts", + "source_location": "L291", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowrunner_workflowrunner_executestep", + "target": "apps_extension_chromium_src_automation_types_workflowdefinition", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_automation_types_normalizedevent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_actionworkflow", + "target": "apps_extension_chromium_src_automation_types_workflowcontext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts", + "source_location": "L207", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_agent", + "target": "apps_extension_chromium_src_automation_types_workflowcontext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts", + "source_location": "L166", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_condition", + "target": "apps_extension_chromium_src_automation_types_workflowcontext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts", + "source_location": "L182", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_loop", + "target": "apps_extension_chromium_src_automation_types_workflowcontext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts", + "source_location": "L150", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_store", + "target": "apps_extension_chromium_src_automation_types_workflowcontext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/SensorWorkflow.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_sensorworkflow", + "target": "apps_extension_chromium_src_automation_types_workflowcontext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/SensorWorkflow.ts", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_sensorworkflow_sensorworkflow_condition", + "target": "apps_extension_chromium_src_automation_types_workflowcontext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/SensorWorkflow.ts", + "source_location": "L178", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_sensorworkflow_sensorworkflow_store", + "target": "apps_extension_chromium_src_automation_types_workflowcontext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRunner.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowrunner", + "target": "apps_extension_chromium_src_automation_types_workflowcontext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRunner.ts", + "source_location": "L251", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowrunner_workflowrunner_execute", + "target": "apps_extension_chromium_src_automation_types_workflowcontext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRunner.ts", + "source_location": "L291", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowrunner_workflowrunner_executestep", + "target": "apps_extension_chromium_src_automation_types_workflowcontext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRunner.ts", + "source_location": "L224", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowrunner_workflowrunner_runaction", + "target": "apps_extension_chromium_src_automation_types_workflowcontext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRunner.ts", + "source_location": "L197", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowrunner_workflowrunner_runsensor", + "target": "apps_extension_chromium_src_automation_types_workflowcontext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRegistry.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowregistry", + "target": "apps_extension_chromium_src_automation_types_validationresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRegistry.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry_validate", + "target": "apps_extension_chromium_src_automation_types_validationresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator", + "target": "apps_extension_chromium_src_automation_types_outputdestination", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator", + "target": "apps_extension_chromium_src_automation_types_resolvedllmconfig", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L1469", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_resolvellmfromagentbox", + "target": "apps_extension_chromium_src_automation_types_resolvedllmconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator", + "target": "apps_extension_chromium_src_automation_types_resolvedreasoningconfig", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L1505", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_resolvereasoningconfig", + "target": "apps_extension_chromium_src_automation_types_resolvedreasoningconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator", + "target": "apps_extension_chromium_src_automation_types_resolvedexecutionconfig", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L1550", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_resolveexecutionconfig", + "target": "apps_extension_chromium_src_automation_types_resolvedexecutionconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator", + "target": "apps_extension_chromium_src_automation_types_eventtagroutingresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L1326", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_evaluateeventtagconditions", + "target": "apps_extension_chromium_src_automation_types_eventtagroutingresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_automation_types_eventtagroutingresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator", + "target": "apps_extension_chromium_src_automation_types_eventtagroutinginput", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L207", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_checktriggerkeywords", + "target": "apps_extension_chromium_src_automation_types_eventtagroutinginput" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L1685", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_collectsensorcontext", + "target": "apps_extension_chromium_src_automation_types_eventtagroutinginput", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L1326", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_evaluateeventtagconditions", + "target": "apps_extension_chromium_src_automation_types_eventtagroutinginput", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_extracttriggerpatterns", + "target": "apps_extension_chromium_src_automation_types_eventtagroutinginput" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L159", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_matchesexpectedcontext", + "target": "apps_extension_chromium_src_automation_types_eventtagroutinginput" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L1550", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_resolveexecutionconfig", + "target": "apps_extension_chromium_src_automation_types_eventtagroutinginput", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L1469", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_resolvellmfromagentbox", + "target": "apps_extension_chromium_src_automation_types_eventtagroutinginput", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L1117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_routeeventtagtrigger", + "target": "apps_extension_chromium_src_automation_types_eventtagroutinginput", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L773", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_routetoagents", + "target": "apps_extension_chromium_src_automation_types_eventtagroutinginput" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator", + "target": "apps_extension_chromium_src_automation_types_eventtagroutingbatch", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L1723", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_generateroutingsummary", + "target": "apps_extension_chromium_src_automation_types_eventtagroutingbatch", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L1117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_routeeventtagtrigger", + "target": "apps_extension_chromium_src_automation_types_eventtagroutingbatch", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_automation_types_eventtagroutingbatch", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_automation_types_eventtagroutingbatch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_actionworkflow", + "target": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts", + "source_location": "L257", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_actionworkflow", + "target": "apps_extension_chromium_src_automation_workflows_actionworkflow_commonactionworkflows", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/index.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_index", + "target": "apps_extension_chromium_src_automation_workflows_actionworkflow", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts", + "source_location": "L207", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow", + "target": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_agent", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow", + "target": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_api", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts", + "source_location": "L239", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow", + "target": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_build", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts", + "source_location": "L166", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow", + "target": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_condition", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow", + "target": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_constructor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow", + "target": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_create", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow", + "target": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_description", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts", + "source_location": "L182", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow", + "target": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_loop", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow", + "target": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_name", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow", + "target": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_notify", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts", + "source_location": "L220", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow", + "target": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_onerror", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts", + "source_location": "L196", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow", + "target": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_parallel", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow", + "target": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_step", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts", + "source_location": "L150", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow", + "target": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_store", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts", + "source_location": "L139", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow", + "target": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_wait", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/index.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_index", + "target": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts", + "source_location": "L212", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_agent", + "target": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_step", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_api", + "target": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_step", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts", + "source_location": "L172", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_condition", + "target": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_step", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts", + "source_location": "L187", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_loop", + "target": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_step", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_notify", + "target": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_step", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts", + "source_location": "L197", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_parallel", + "target": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_step", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts", + "source_location": "L155", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_store", + "target": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_step", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_wait", + "target": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_step", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L992", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_routeclassifiedinput", + "target": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_agent" + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L1146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_routeeventtagtrigger", + "target": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_agent" + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L787", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_routetoagents", + "target": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_agent" + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L875", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_routetoagentsformoderun", + "target": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_agent" + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L917", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow_generatesystemstatusresponse", + "target": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_agent" + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L813", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow_matchinputtoagents", + "target": "apps_extension_chromium_src_automation_workflows_actionworkflow_actionworkflow_agent" + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_index", + "target": "apps_extension_chromium_src_automation_workflows_sensorworkflow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/SensorWorkflow.ts", + "source_location": "L209", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_sensorworkflow", + "target": "apps_extension_chromium_src_automation_workflows_sensorworkflow_commonsensorworkflows", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/SensorWorkflow.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_sensorworkflow", + "target": "apps_extension_chromium_src_automation_workflows_sensorworkflow_sensorstepconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/SensorWorkflow.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_sensorworkflow", + "target": "apps_extension_chromium_src_automation_workflows_sensorworkflow_sensorworkflow", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_index", + "target": "apps_extension_chromium_src_automation_workflows_sensorworkflow_sensorworkflow", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/SensorWorkflow.ts", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_sensorworkflow_sensorworkflow", + "target": "apps_extension_chromium_src_automation_workflows_sensorworkflow_sensorworkflow_build", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/SensorWorkflow.ts", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_sensorworkflow_sensorworkflow", + "target": "apps_extension_chromium_src_automation_workflows_sensorworkflow_sensorworkflow_condition", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/SensorWorkflow.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_sensorworkflow_sensorworkflow", + "target": "apps_extension_chromium_src_automation_workflows_sensorworkflow_sensorworkflow_constructor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/SensorWorkflow.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_sensorworkflow_sensorworkflow", + "target": "apps_extension_chromium_src_automation_workflows_sensorworkflow_sensorworkflow_create", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/SensorWorkflow.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_sensorworkflow_sensorworkflow", + "target": "apps_extension_chromium_src_automation_workflows_sensorworkflow_sensorworkflow_description", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/SensorWorkflow.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_sensorworkflow_sensorworkflow", + "target": "apps_extension_chromium_src_automation_workflows_sensorworkflow_sensorworkflow_fetch", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/SensorWorkflow.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_sensorworkflow_sensorworkflow", + "target": "apps_extension_chromium_src_automation_workflows_sensorworkflow_sensorworkflow_name", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/SensorWorkflow.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_sensorworkflow_sensorworkflow", + "target": "apps_extension_chromium_src_automation_workflows_sensorworkflow_sensorworkflow_step", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/SensorWorkflow.ts", + "source_location": "L178", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_sensorworkflow_sensorworkflow", + "target": "apps_extension_chromium_src_automation_workflows_sensorworkflow_sensorworkflow_store", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/SensorWorkflow.ts", + "source_location": "L137", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_sensorworkflow_sensorworkflow", + "target": "apps_extension_chromium_src_automation_workflows_sensorworkflow_sensorworkflow_transform", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/SensorWorkflow.ts", + "source_location": "L150", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_sensorworkflow_sensorworkflow", + "target": "apps_extension_chromium_src_automation_workflows_sensorworkflow_sensorworkflow_wait", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/SensorWorkflow.ts", + "source_location": "L168", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_sensorworkflow_sensorworkflow_condition", + "target": "apps_extension_chromium_src_automation_workflows_sensorworkflow_sensorworkflow_step", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/SensorWorkflow.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_sensorworkflow_sensorworkflow_fetch", + "target": "apps_extension_chromium_src_automation_workflows_sensorworkflow_sensorworkflow_step", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/SensorWorkflow.ts", + "source_location": "L183", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_sensorworkflow_sensorworkflow_store", + "target": "apps_extension_chromium_src_automation_workflows_sensorworkflow_sensorworkflow_step", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/SensorWorkflow.ts", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_sensorworkflow_sensorworkflow_transform", + "target": "apps_extension_chromium_src_automation_workflows_sensorworkflow_sensorworkflow_step", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/SensorWorkflow.ts", + "source_location": "L151", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_sensorworkflow_sensorworkflow_wait", + "target": "apps_extension_chromium_src_automation_workflows_sensorworkflow_sensorworkflow_step", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_index", + "target": "apps_extension_chromium_src_automation_workflows_workflowregistry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRegistry.ts", + "source_location": "L198", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowregistry", + "target": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRunner.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowrunner", + "target": "apps_extension_chromium_src_automation_workflows_workflowregistry", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_index", + "target": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRegistry.ts", + "source_location": "L182", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry", + "target": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry_clear", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRegistry.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry", + "target": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry_get", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRegistry.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry", + "target": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry_getactionworkflows", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRegistry.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry", + "target": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry_getall", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRegistry.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry", + "target": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry_getbytype", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRegistry.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry", + "target": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry_getsensorworkflows", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRegistry.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry", + "target": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry_has", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRegistry.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry", + "target": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry_register", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRegistry.ts", + "source_location": "L190", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry", + "target": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry_size", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRegistry.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry", + "target": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry_unregister", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRegistry.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry", + "target": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry_validate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRunner.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowrunner", + "target": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRunner.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowrunner_workflowrunner", + "target": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRunner.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowrunner_workflowrunner_constructor", + "target": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRegistry.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry_register", + "target": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry_validate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRunner.ts", + "source_location": "L229", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowrunner_workflowrunner_runaction", + "target": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry_get" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRunner.ts", + "source_location": "L202", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowrunner_workflowrunner_runsensor", + "target": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry_get" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRegistry.ts", + "source_location": "L153", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry_validate", + "target": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry_has", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRegistry.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry_getactionworkflows", + "target": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry_getbytype", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRegistry.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry_getsensorworkflows", + "target": "apps_extension_chromium_src_automation_workflows_workflowregistry_workflowregistry_getbytype", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/index.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_index", + "target": "apps_extension_chromium_src_automation_workflows_workflowrunner", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRunner.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowrunner", + "target": "apps_extension_chromium_src_automation_workflows_workflowrunner_executionoptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRunner.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowrunner", + "target": "apps_extension_chromium_src_automation_workflows_workflowrunner_stephandler", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRunner.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowrunner", + "target": "apps_extension_chromium_src_automation_workflows_workflowrunner_workflowrunner", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/index.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_index", + "target": "apps_extension_chromium_src_automation_workflows_workflowrunner_workflowrunner", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRunner.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowrunner_workflowrunner", + "target": "apps_extension_chromium_src_automation_workflows_workflowrunner_workflowrunner_constructor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRunner.ts", + "source_location": "L251", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowrunner_workflowrunner", + "target": "apps_extension_chromium_src_automation_workflows_workflowrunner_workflowrunner_execute", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRunner.ts", + "source_location": "L291", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowrunner_workflowrunner", + "target": "apps_extension_chromium_src_automation_workflows_workflowrunner_workflowrunner_executestep", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRunner.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowrunner_workflowrunner", + "target": "apps_extension_chromium_src_automation_workflows_workflowrunner_workflowrunner_registerdefaulthandlers", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRunner.ts", + "source_location": "L185", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowrunner_workflowrunner", + "target": "apps_extension_chromium_src_automation_workflows_workflowrunner_workflowrunner_registerhandler", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRunner.ts", + "source_location": "L224", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowrunner_workflowrunner", + "target": "apps_extension_chromium_src_automation_workflows_workflowrunner_workflowrunner_runaction", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRunner.ts", + "source_location": "L197", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowrunner_workflowrunner", + "target": "apps_extension_chromium_src_automation_workflows_workflowrunner_workflowrunner_runsensor", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRunner.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowrunner_workflowrunner_constructor", + "target": "apps_extension_chromium_src_automation_workflows_workflowrunner_workflowrunner_registerdefaulthandlers", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRunner.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowrunner_workflowrunner_registerdefaulthandlers", + "target": "apps_extension_chromium_src_automation_workflows_workflowrunner_workflowrunner_registerhandler", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRunner.ts", + "source_location": "L213", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowrunner_workflowrunner_runsensor", + "target": "apps_extension_chromium_src_automation_workflows_workflowrunner_workflowrunner_execute", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRunner.ts", + "source_location": "L240", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowrunner_workflowrunner_runaction", + "target": "apps_extension_chromium_src_automation_workflows_workflowrunner_workflowrunner_execute", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRunner.ts", + "source_location": "L266", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowrunner_workflowrunner_execute", + "target": "apps_extension_chromium_src_automation_workflows_workflowrunner_workflowrunner_executestep", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/extension-chromium/src/automation/workflows/WorkflowRunner.ts", + "source_location": "L346", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_automation_workflows_workflowrunner_workflowrunner_executestep", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebeapmessageai_nextid" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L448", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_audit_export_allowed_pages", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L451", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_audit_export_result_version", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L454", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_auditexporterrorcode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L525", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_auditexportlog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L743", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_authstatusresponsepayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_beap_grid_surface_ready", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L569", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_cachevsbt", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L1040", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_calculatebackoff", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L2346", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_checkandlaunchelectronapp", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L885", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_checkelectronintegrity", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L315", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_commandcenterpopupurlsdiffer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L836", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_compressdataurlforstorage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L1366", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_connecttowebsocketserver", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L790", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_dedupeagentboxesbystablekey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L865", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_default_retry_config", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L415", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_effectivecbcooldownms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L411", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_effectivecbthreshold", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L413", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_effectivecbwindowms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L407", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_effectivemaxpermin", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L409", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_effectivewindowms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L821", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_electronheaders", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L1250", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_electronoauthrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L1057", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_electronrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L2060", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_ensureconnection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L1027", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_ensureelectronrunning", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L554", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_ensurelaunchsecret", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_executemodesessionruncore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_executemodesessionrundirectfororchestrator", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L1271", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_fetchwithelectronautostart", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L777", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_findagentboxindexbystablekey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L688", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_getconnectionstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L165", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_handlemodeintervalalarmtick", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L975", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_iselectronready", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L936", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_iselectronrunning", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L471", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_isextensionuicontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_issessionruninflight", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L499", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_isvaultunlocked", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L2518", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_launchelectronapp", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L2466", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_launchelectronappdirect", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L371", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_max_webmcp_per_min", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_modesessionexecuteinflight", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L925", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_oauth_retry_config", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L2249", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_openwrdeskhomeifneeded", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_pendingsessionrun", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_pendingsessionruns", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_pendingsessionrunsource", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L633", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_performhealthcheck", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L424", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_recordwebmcpreject", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_registerpendingbeaprun", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_registerpendingmodesessionrun", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_registerpendingsessionrun", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L1347", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_retrysyncifpending", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L401", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_safepositiveint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L1281", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_setapikeysyncpending", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L2161", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_setupkeepalive", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L760", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_stableagentboxkey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L2110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_startautoconnect", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L615", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_starthealthmonitor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L2081", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_startheartbeat", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L2102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_stopheartbeat", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L1294", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_syncapikeystoelectron", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L2210", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_tabdisplaygridsactive", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L305", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_tabsidebarstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L2129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_togglesidebars", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L265", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_triggerpendingbeaprun", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L197", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_triggerpendingsessionrun", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L349", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_vsbt_max_age_ms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L388", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_webmcp_cb_cooldown_ms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L384", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_webmcp_cb_threshold", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L386", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_webmcp_cb_window_ms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L391", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_webmcpcbrejects", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L374", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_background_webmcpglobaltimestamps", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_rpc_electronrpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_rpc_electronrpc_electronrpcrequest", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_rpc_electronrpc_handleelectronrpc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_services_modeintervalscheduler", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_services_modeintervalscheduler_parsemodeidfromintervalalarm", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_services_modeintervalscheduler_reschedulemodeintervalalarm", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_services_modeintervalscheduler_syncmodeintervalschedulers", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_services_modeintervalscheduler_syncmodeintervalschedulersfromstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_services_presentorchestratordisplaygridsession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_services_presentorchestratordisplaygridsession_maybepresentorchestratordisplaygridsession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation_run_mode_allocated_session_type", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_services_sessionactivationforoptimization", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_services_sessionactivationforoptimization_activatesessionforoptimization", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_services_sessionsurfaceresolver", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_services_sessionsurfaceresolver_findopensessionsurface", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_shared_ui_custommoderuntime", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_shared_ui_custommoderuntime_custommoderuntimeconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_utils_watchdogdomextract", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_utils_watchdogdomextract_extractalltabsdom", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_vault_autofill_webmcpadapter_bgwebmcperrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_vault_autofill_webmcpconstants", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background", + "target": "apps_extension_chromium_src_vault_autofill_webmcpconstants_webmcp_result_version", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L1021", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_rationale_1021", + "target": "apps_extension_chromium_src_background", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L2455", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_rationale_2455", + "target": "apps_extension_chromium_src_background", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L2457", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_rationale_2457", + "target": "apps_extension_chromium_src_background", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L2515", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_rationale_2515", + "target": "apps_extension_chromium_src_background", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L3421", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_rationale_3421", + "target": "apps_extension_chromium_src_background", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "collection", + "confidence": "INFERRED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L178", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_handlemodeintervalalarmtick", + "target": "apps_extension_chromium_src_background_issessionruninflight", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_registerpendingbeaprun", + "target": "apps_extension_chromium_src_background_registerpendingsessionrun", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_registerpendingmodesessionrun", + "target": "apps_extension_chromium_src_background_registerpendingsessionrun", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L1948", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_connecttowebsocketserver", + "target": "apps_extension_chromium_src_background_registerpendingbeaprun", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L1904", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_connecttowebsocketserver", + "target": "apps_extension_chromium_src_background_registerpendingmodesessionrun", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "collection", + "confidence": "INFERRED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L176", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_handlemodeintervalalarmtick", + "target": "apps_extension_chromium_src_background_registerpendingmodesessionrun", + "confidence_score": 0.5 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_executemodesessionruncore", + "target": "apps_extension_chromium_src_services_modesessionruninflightexecute", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_executemodesessionrundirectfororchestrator", + "target": "apps_extension_chromium_src_background_executemodesessionruncore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L212", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_triggerpendingsessionrun", + "target": "apps_extension_chromium_src_background_executemodesessionruncore", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "collection", + "confidence": "INFERRED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L177", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_handlemodeintervalalarmtick", + "target": "apps_extension_chromium_src_background_executemodesessionrundirectfororchestrator", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L190", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_handlemodeintervalalarmtick", + "target": "apps_extension_chromium_src_services_modeintervalscheduler_reschedulemodeintervalalarm", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_handlemodeintervalalarmtick", + "target": "apps_extension_chromium_src_services_modemodelwarmontrigger", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L184", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_handlemodeintervalalarmtick", + "target": "apps_extension_chromium_src_services_modesessionrunresultreporting", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_handlemodeintervalalarmtick", + "target": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L173", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_handlemodeintervalalarmtick", + "target": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation_runmodeallocatedsessionautomation" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L1919", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_connecttowebsocketserver", + "target": "apps_extension_chromium_src_background_triggerpendingsessionrun", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L266", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_triggerpendingbeaprun", + "target": "apps_extension_chromium_src_background_triggerpendingsessionrun", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L1810", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_connecttowebsocketserver", + "target": "apps_extension_chromium_src_background_commandcenterpopupurlsdiffer", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L415", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_effectivecbcooldownms", + "target": "apps_extension_chromium_src_background_safepositiveint", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L411", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_effectivecbthreshold", + "target": "apps_extension_chromium_src_background_safepositiveint", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L413", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_effectivecbwindowms", + "target": "apps_extension_chromium_src_background_safepositiveint", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L407", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_effectivemaxpermin", + "target": "apps_extension_chromium_src_background_safepositiveint", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L409", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_effectivewindowms", + "target": "apps_extension_chromium_src_background_safepositiveint", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L426", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_recordwebmcpreject", + "target": "apps_extension_chromium_src_background_effectivecbthreshold", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L425", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_recordwebmcpreject", + "target": "apps_extension_chromium_src_background_effectivecbwindowms", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L427", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_recordwebmcpreject", + "target": "apps_extension_chromium_src_background_effectivecbcooldownms", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L503", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_isvaultunlocked", + "target": "apps_extension_chromium_src_background_cachevsbt", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L530", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_auditexportlog", + "target": "apps_extension_chromium_src_vault_autofill_hardening", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L558", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_ensurelaunchsecret", + "target": "apps_extension_chromium_src_background_connecttowebsocketserver", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L1310", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_syncapikeystoelectron", + "target": "apps_extension_chromium_src_background_ensurelaunchsecret", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L2032", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_connecttowebsocketserver", + "target": "apps_extension_chromium_src_background_cachevsbt", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L622", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_starthealthmonitor", + "target": "apps_extension_chromium_src_background_performhealthcheck", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L649", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_performhealthcheck", + "target": "apps_extension_chromium_src_background_electronheaders", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L676", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_performhealthcheck", + "target": "apps_extension_chromium_src_background_ensureelectronrunning", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L793", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_dedupeagentboxesbystablekey", + "target": "apps_extension_chromium_src_background_stableagentboxkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L778", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_findagentboxindexbystablekey", + "target": "apps_extension_chromium_src_background_stableagentboxkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L2364", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_checkandlaunchelectronapp", + "target": "apps_extension_chromium_src_background_electronheaders", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L892", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_checkelectronintegrity", + "target": "apps_extension_chromium_src_background_electronheaders", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L984", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_iselectronready", + "target": "apps_extension_chromium_src_background_electronheaders", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L945", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_iselectronrunning", + "target": "apps_extension_chromium_src_background_electronheaders", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L2536", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_launchelectronapp", + "target": "apps_extension_chromium_src_background_electronheaders", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L2350", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_checkandlaunchelectronapp", + "target": "apps_extension_chromium_src_background_iselectronrunning", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L1117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_electronrequest", + "target": "apps_extension_chromium_src_background_iselectronrunning", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L1029", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_ensureelectronrunning", + "target": "apps_extension_chromium_src_background_iselectronrunning", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L2469", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_launchelectronappdirect", + "target": "apps_extension_chromium_src_background_iselectronrunning", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L1100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_electronrequest", + "target": "apps_extension_chromium_src_background_iselectronready", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L1089", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_electronrequest", + "target": "apps_extension_chromium_src_background_ensureelectronrunning", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L1034", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_ensureelectronrunning", + "target": "apps_extension_chromium_src_background_launchelectronappdirect", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L1113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_electronrequest", + "target": "apps_extension_chromium_src_background_calculatebackoff", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L1261", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_electronoauthrequest", + "target": "apps_extension_chromium_src_background_electronrequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L1278", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_fetchwithelectronautostart", + "target": "apps_extension_chromium_src_background_electronrequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L1328", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_syncapikeystoelectron", + "target": "apps_extension_chromium_src_background_electronrequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L1313", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_syncapikeystoelectron", + "target": "apps_extension_chromium_src_background_setapikeysyncpending", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L1358", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_retrysyncifpending", + "target": "apps_extension_chromium_src_background_syncapikeystoelectron", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L1490", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_connecttowebsocketserver", + "target": "apps_extension_chromium_src_background_retrysyncifpending", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L2354", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_checkandlaunchelectronapp", + "target": "apps_extension_chromium_src_background_connecttowebsocketserver", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L1434", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_connecttowebsocketserver", + "target": "apps_extension_chromium_src_background_startheartbeat", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L2034", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_connecttowebsocketserver", + "target": "apps_extension_chromium_src_background_stopheartbeat", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L1514", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_connecttowebsocketserver", + "target": "apps_extension_chromium_src_services_modeintervalscheduler_syncmodeintervalschedulers", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L1645", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_connecttowebsocketserver", + "target": "apps_extension_chromium_src_services_presentorchestratordisplaygridsession_maybepresentorchestratordisplaygridsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L1912", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_connecttowebsocketserver", + "target": "apps_extension_chromium_src_services_sessionsurfaceresolver_findopensessionsurface", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L1564", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_connecttowebsocketserver", + "target": "apps_extension_chromium_src_utils_watchdogdomextract_extractalltabsdom", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L2066", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_ensureconnection", + "target": "apps_extension_chromium_src_background_connecttowebsocketserver", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L2526", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_launchelectronapp", + "target": "apps_extension_chromium_src_background_connecttowebsocketserver", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L2114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_startautoconnect", + "target": "apps_extension_chromium_src_background_connecttowebsocketserver", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L2083", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_startheartbeat", + "target": "apps_extension_chromium_src_background_stopheartbeat", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L2383", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_checkandlaunchelectronapp", + "target": "apps_extension_chromium_src_background_launchelectronappdirect", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/background.ts", + "source_location": "L2521", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_background_launchelectronapp", + "target": "apps_extension_chromium_src_background_launchelectronappdirect", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/buildSessionImportArtefact.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_tests_buildsessionimportartefact_test", + "target": "apps_extension_chromium_src_beap_builder_buildsessionimportartefact", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/buildSessionImportArtefact.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_tests_buildsessionimportartefact_test", + "target": "apps_extension_chromium_src_beap_builder_buildsessionimportartefact_buildsessionimportartefact", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/buildSessionImportArtefact.test.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_tests_buildsessionimportartefact_test", + "target": "apps_extension_chromium_src_beap_builder_tests_buildsessionimportartefact_test_file_export_field_set", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/buildSessionImportArtefact.test.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_tests_buildsessionimportartefact_test", + "target": "apps_extension_chromium_src_beap_builder_tests_buildsessionimportartefact_test_makefullsessionblob", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/buildSessionImportArtefact.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_tests_buildsessionimportartefact_test", + "target": "apps_extension_chromium_src_services_sessionimportartefactunwrap", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/buildSessionImportArtefact.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_tests_buildsessionimportartefact_test", + "target": "apps_extension_chromium_src_services_sessionimportartefactunwrap_isfullsessionexportcontent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/buildSessionImportArtefact.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_tests_buildsessionimportartefact_test", + "target": "apps_extension_chromium_src_services_sessionimportartefactunwrap_issessionimportartefactwrapper", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/buildSessionImportArtefact.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_tests_buildsessionimportartefact_test", + "target": "apps_extension_chromium_src_services_sessionimportartefactunwrap_unwrapsessionimportpayloadfortab", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/buildSessionImportArtefact.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_tests_buildsessionimportartefact_test", + "target": "apps_extension_chromium_src_services_sessionimportcore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/buildSessionImportArtefact.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_tests_buildsessionimportartefact_test", + "target": "apps_extension_chromium_src_services_sessionimportcore_normalizeimportedsessionpayload", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/draftAttachmentAutoParse.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_tests_draftattachmentautoparse_test", + "target": "apps_extension_chromium_src_beap_builder_canonical_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/draftAttachmentAutoParse.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_tests_draftattachmentautoparse_test", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_capsuleattachment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/draftAttachmentAutoParse.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_tests_draftattachmentautoparse_test", + "target": "apps_extension_chromium_src_beap_builder_draftattachmentautoparse", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/draftAttachmentAutoParse.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_tests_draftattachmentautoparse_test", + "target": "apps_extension_chromium_src_beap_builder_draftattachmentautoparse_draftattachmentparserejectedupdate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/draftAttachmentAutoParse.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_tests_draftattachmentautoparse_test", + "target": "apps_extension_chromium_src_beap_builder_draftattachmentautoparse_rundraftattachmentparsewithfallback", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/draftAttachmentAutoParse.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_tests_draftattachmentautoparse_test", + "target": "apps_extension_chromium_src_beap_builder_parserservice", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/draftAttachmentAutoParse.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_tests_draftattachmentautoparse_test", + "target": "apps_extension_chromium_src_beap_builder_parserservice_processattachmentforparsing", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/draftAttachmentAutoParse.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_tests_draftattachmentautoparse_test", + "target": "apps_extension_chromium_src_beap_builder_tests_draftattachmentautoparse_test_capsule", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/handshakeRefresh.test.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_tests_handshakerefresh_test", + "target": "apps_extension_chromium_src_beap_builder_handshakerefresh", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/handshakeRefresh.test.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_tests_handshakerefresh_test", + "target": "apps_extension_chromium_src_beap_builder_handshakerefresh_buildcontextblocks", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/handshakeRefresh.test.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_tests_handshakerefresh_test", + "target": "apps_extension_chromium_src_beap_builder_handshakerefresh_sendviahandshakerefresh", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/handshakeRefresh.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_tests_handshakerefresh_test", + "target": "apps_extension_chromium_src_beap_builder_tests_handshakerefresh_test_mocksendmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/parserService.test.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_tests_parserservice_test", + "target": "apps_extension_chromium_src_beap_builder_canonical_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/parserService.test.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_tests_parserservice_test", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_capsuleattachment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/parserService.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_tests_parserservice_test", + "target": "apps_extension_chromium_src_beap_builder_parserservice", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/parserService.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_tests_parserservice_test", + "target": "apps_extension_chromium_src_beap_builder_parserservice_assertnosemanticcontentintransport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/parserService.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_tests_parserservice_test", + "target": "apps_extension_chromium_src_beap_builder_parserservice_getsafeattachmentinfo", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/parserService.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_tests_parserservice_test", + "target": "apps_extension_chromium_src_beap_builder_parserservice_isparseableformat", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/parserService.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_tests_parserservice_test", + "target": "apps_extension_chromium_src_beap_builder_parserservice_processattachmentforparsing", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/parserService.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_tests_parserservice_test", + "target": "apps_extension_chromium_src_beap_builder_parserservice_processattachmentforrasterization", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/parserService.test.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_tests_parserservice_test", + "target": "apps_extension_chromium_src_beap_builder_tests_parserservice_test_createmockattachment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/pr41OrchestratorReads.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_tests_pr41orchestratorreads_test", + "target": "apps_extension_chromium_src_beap_builder_buildsessionimportartefact", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/pr41OrchestratorReads.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_tests_pr41orchestratorreads_test", + "target": "apps_extension_chromium_src_beap_builder_buildsessionimportartefact_buildartefactinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/pr41OrchestratorReads.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_tests_pr41orchestratorreads_test", + "target": "apps_extension_chromium_src_beap_builder_buildsessionimportartefact_buildsessionimportartefact", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/pr41OrchestratorReads.test.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_tests_pr41orchestratorreads_test", + "target": "apps_extension_chromium_src_beap_builder_tests_pr41orchestratorreads_test_extractartefactinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/pr41OrchestratorReads.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_tests_pr41orchestratorreads_test", + "target": "apps_extension_chromium_src_beap_builder_tests_pr41orchestratorreads_test_makeorchestratorsessionresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/pr41OrchestratorReads.test.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_tests_pr41orchestratorreads_test", + "target": "apps_extension_chromium_src_beap_builder_tests_pr41orchestratorreads_test_makeorchestratorsessionslistresponse", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/pr4SenderPlumbing.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_tests_pr4senderplumbing_test", + "target": "apps_extension_chromium_src_beap_builder_buildsessionimportartefact", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/pr4SenderPlumbing.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_tests_pr4senderplumbing_test", + "target": "apps_extension_chromium_src_beap_builder_buildsessionimportartefact_buildartefactinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/pr4SenderPlumbing.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_tests_pr4senderplumbing_test", + "target": "apps_extension_chromium_src_beap_builder_buildsessionimportartefact_buildsessionimportartefact", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/pr4SenderPlumbing.test.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_tests_pr4senderplumbing_test", + "target": "apps_extension_chromium_src_beap_builder_tests_pr4senderplumbing_test_base_blob", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/pr4SenderPlumbing.test.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_tests_pr4senderplumbing_test", + "target": "apps_extension_chromium_src_beap_builder_tests_pr4senderplumbing_test_baseinput", + "confidence_score": 1.0 + }, + { + "relation": "cites", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/pr4SenderPlumbing.test.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_tests_pr4senderplumbing_test", + "target": "apps_extension_chromium_src_beap_builder_tests_pr4senderplumbing_test_ts_docref_rfc_3339", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/pr4SenderPlumbing.test.ts", + "source_location": "L201", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_tests_pr4senderplumbing_test_rationale_201", + "target": "apps_extension_chromium_src_beap_builder_tests_pr4senderplumbing_test", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/__tests__/pr4SenderPlumbing.test.ts", + "source_location": "L297", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_tests_pr4senderplumbing_test_rationale_297", + "target": "apps_extension_chromium_src_beap_builder_tests_pr4senderplumbing_test", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/anthropicApiKeyStorage.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_anthropicapikeystorage", + "target": "apps_extension_chromium_src_beap_builder_anthropicapikeystorage_getanthropicapikey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/anthropicApiKeyStorage.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_anthropicapikeystorage", + "target": "apps_extension_chromium_src_beap_builder_anthropicapikeystorage_hasanthropicapikey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/anthropicApiKeyStorage.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_anthropicapikeystorage", + "target": "apps_extension_chromium_src_beap_builder_anthropicapikeystorage_removeanthropicapikey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/anthropicApiKeyStorage.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_anthropicapikeystorage", + "target": "apps_extension_chromium_src_beap_builder_anthropicapikeystorage_saveanthropicapikey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/anthropicApiKeyStorage.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_anthropicapikeystorage", + "target": "apps_extension_chromium_src_beap_builder_anthropicapikeystorage_validateanthropicapikey", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/VisionFallbackButton.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_visionfallbackbutton", + "target": "apps_extension_chromium_src_beap_builder_anthropicapikeystorage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/draftAttachmentAutoParse.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_draftattachmentautoparse", + "target": "apps_extension_chromium_src_beap_builder_anthropicapikeystorage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/VisionFallbackButton.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_visionfallbackbutton", + "target": "apps_extension_chromium_src_beap_builder_anthropicapikeystorage_hasanthropicapikey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-builder/components/VisionFallbackButton.tsx", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_visionfallbackbutton_visionfallbackbutton", + "target": "apps_extension_chromium_src_beap_builder_anthropicapikeystorage_hasanthropicapikey" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/VisionFallbackButton.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_visionfallbackbutton", + "target": "apps_extension_chromium_src_beap_builder_anthropicapikeystorage_getanthropicapikey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-builder/components/VisionFallbackButton.tsx", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_visionfallbackbutton_visionfallbackbutton", + "target": "apps_extension_chromium_src_beap_builder_anthropicapikeystorage_getanthropicapikey" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/draftAttachmentAutoParse.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_draftattachmentautoparse", + "target": "apps_extension_chromium_src_beap_builder_anthropicapikeystorage_getanthropicapikey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-builder/draftAttachmentAutoParse.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_draftattachmentautoparse_rundraftattachmentparsewithfallback", + "target": "apps_extension_chromium_src_beap_builder_anthropicapikeystorage_getanthropicapikey" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/VisionFallbackButton.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_visionfallbackbutton", + "target": "apps_extension_chromium_src_beap_builder_anthropicapikeystorage_saveanthropicapikey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-builder/components/VisionFallbackButton.tsx", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_visionfallbackbutton_visionfallbackbutton", + "target": "apps_extension_chromium_src_beap_builder_anthropicapikeystorage_saveanthropicapikey" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/VisionFallbackButton.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_visionfallbackbutton", + "target": "apps_extension_chromium_src_beap_builder_anthropicapikeystorage_validateanthropicapikey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-builder/components/VisionFallbackButton.tsx", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_visionfallbackbutton_visionfallbackbutton", + "target": "apps_extension_chromium_src_beap_builder_anthropicapikeystorage_validateanthropicapikey" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/boundary-types.ts", + "source_location": "L304", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_boundary_types", + "target": "apps_extension_chromium_src_beap_builder_boundary_types_createdefaultboundary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/boundary-types.ts", + "source_location": "L238", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_boundary_types", + "target": "apps_extension_chromium_src_beap_builder_boundary_types_egress_destination_types", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/boundary-types.ts", + "source_location": "L184", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_boundary_types", + "target": "apps_extension_chromium_src_beap_builder_boundary_types_egress_preset_config", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/boundary-types.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_boundary_types", + "target": "apps_extension_chromium_src_beap_builder_boundary_types_egressdeclaration", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/boundary-types.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_boundary_types", + "target": "apps_extension_chromium_src_beap_builder_boundary_types_egressdestination", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/boundary-types.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_boundary_types", + "target": "apps_extension_chromium_src_beap_builder_boundary_types_egressdestinationtype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/boundary-types.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_boundary_types", + "target": "apps_extension_chromium_src_beap_builder_boundary_types_egresspreset", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/boundary-types.ts", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_boundary_types", + "target": "apps_extension_chromium_src_beap_builder_boundary_types_envelopedisplaysummary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/boundary-types.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_boundary_types", + "target": "apps_extension_chromium_src_beap_builder_boundary_types_executionboundary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/boundary-types.ts", + "source_location": "L261", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_boundary_types", + "target": "apps_extension_chromium_src_beap_builder_boundary_types_generateegresssummary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/boundary-types.ts", + "source_location": "L282", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_boundary_types", + "target": "apps_extension_chromium_src_beap_builder_boundary_types_generateingresssummary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/boundary-types.ts", + "source_location": "L216", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_boundary_types", + "target": "apps_extension_chromium_src_beap_builder_boundary_types_ingress_preset_config", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/boundary-types.ts", + "source_location": "L246", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_boundary_types", + "target": "apps_extension_chromium_src_beap_builder_boundary_types_ingress_source_types", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/boundary-types.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_boundary_types", + "target": "apps_extension_chromium_src_beap_builder_boundary_types_ingressdeclaration", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/boundary-types.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_boundary_types", + "target": "apps_extension_chromium_src_beap_builder_boundary_types_ingresspreset", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/boundary-types.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_boundary_types", + "target": "apps_extension_chromium_src_beap_builder_boundary_types_ingresssource", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/boundary-types.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_boundary_types", + "target": "apps_extension_chromium_src_beap_builder_boundary_types_ingresssourcetype", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/ExecutionBoundaryPanel.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_executionboundarypanel", + "target": "apps_extension_chromium_src_beap_builder_boundary_types", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_boundary_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useenvelopegenerator", + "target": "apps_extension_chromium_src_beap_builder_boundary_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/ExecutionBoundaryPanel.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_executionboundarypanel", + "target": "apps_extension_chromium_src_beap_builder_boundary_types_egresspreset", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useenvelopegenerator", + "target": "apps_extension_chromium_src_beap_builder_boundary_types_egresspreset", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_envelopegeneratorstate", + "target": "apps_extension_chromium_src_beap_builder_boundary_types_egresspreset", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/ExecutionBoundaryPanel.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_executionboundarypanel", + "target": "apps_extension_chromium_src_beap_builder_boundary_types_egressdestinationtype", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useenvelopegenerator", + "target": "apps_extension_chromium_src_beap_builder_boundary_types_egressdestination", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_envelopegeneratorstate", + "target": "apps_extension_chromium_src_beap_builder_boundary_types_egressdestination", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useenvelopegenerator", + "target": "apps_extension_chromium_src_beap_builder_boundary_types_egressdeclaration", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/ExecutionBoundaryPanel.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_executionboundarypanel", + "target": "apps_extension_chromium_src_beap_builder_boundary_types_ingresspreset", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useenvelopegenerator", + "target": "apps_extension_chromium_src_beap_builder_boundary_types_ingresspreset", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_envelopegeneratorstate", + "target": "apps_extension_chromium_src_beap_builder_boundary_types_ingresspreset", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/ExecutionBoundaryPanel.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_executionboundarypanel", + "target": "apps_extension_chromium_src_beap_builder_boundary_types_ingresssourcetype", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useenvelopegenerator", + "target": "apps_extension_chromium_src_beap_builder_boundary_types_ingresssource", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_envelopegeneratorstate", + "target": "apps_extension_chromium_src_beap_builder_boundary_types_ingresssource", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useenvelopegenerator", + "target": "apps_extension_chromium_src_beap_builder_boundary_types_ingressdeclaration", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useenvelopegenerator", + "target": "apps_extension_chromium_src_beap_builder_boundary_types_executionboundary", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_envelopegeneratorstate", + "target": "apps_extension_chromium_src_beap_builder_boundary_types_executionboundary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useenvelopegenerator", + "target": "apps_extension_chromium_src_beap_builder_boundary_types_envelopedisplaysummary", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_envelopegeneratorstate", + "target": "apps_extension_chromium_src_beap_builder_boundary_types_envelopedisplaysummary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/ExecutionBoundaryPanel.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_executionboundarypanel", + "target": "apps_extension_chromium_src_beap_builder_boundary_types_egress_preset_config", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/ExecutionBoundaryPanel.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_executionboundarypanel", + "target": "apps_extension_chromium_src_beap_builder_boundary_types_ingress_preset_config", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/ExecutionBoundaryPanel.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_executionboundarypanel", + "target": "apps_extension_chromium_src_beap_builder_boundary_types_egress_destination_types", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-builder/components/ExecutionBoundaryPanel.tsx", + "source_location": "L257", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_executionboundarypanel_executionboundarypanel", + "target": "apps_extension_chromium_src_beap_builder_boundary_types_egress_destination_types" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/ExecutionBoundaryPanel.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_executionboundarypanel", + "target": "apps_extension_chromium_src_beap_builder_boundary_types_ingress_source_types", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-builder/components/ExecutionBoundaryPanel.tsx", + "source_location": "L496", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_executionboundarypanel_executionboundarypanel", + "target": "apps_extension_chromium_src_beap_builder_boundary_types_ingress_source_types" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/boundary-types.ts", + "source_location": "L309", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_boundary_types_createdefaultboundary", + "target": "apps_extension_chromium_src_beap_builder_boundary_types_generateegresssummary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useenvelopegenerator", + "target": "apps_extension_chromium_src_beap_builder_boundary_types_generateegresssummary", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/boundary-types.ts", + "source_location": "L315", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_boundary_types_createdefaultboundary", + "target": "apps_extension_chromium_src_beap_builder_boundary_types_generateingresssummary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useenvelopegenerator", + "target": "apps_extension_chromium_src_beap_builder_boundary_types_generateingresssummary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useenvelopegenerator", + "target": "apps_extension_chromium_src_beap_builder_boundary_types_createdefaultboundary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/buildSessionImportArtefact.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_buildsessionimportartefact", + "target": "apps_extension_chromium_src_beap_builder_buildsessionimportartefact_buildartefactinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/buildSessionImportArtefact.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_buildsessionimportartefact", + "target": "apps_extension_chromium_src_beap_builder_buildsessionimportartefact_buildartefactresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/buildSessionImportArtefact.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_buildsessionimportartefact", + "target": "apps_extension_chromium_src_beap_builder_buildsessionimportartefact_buildsessionimportartefact", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/buildSessionImportArtefact.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_buildsessionimportartefact", + "target": "apps_extension_chromium_src_beap_builder_canonical_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/buildSessionImportArtefact.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_buildsessionimportartefact", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_capabilityclass", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/buildSessionImportArtefact.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_buildsessionimportartefact", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_fullsessionexportcontent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/buildSessionImportArtefact.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_buildsessionimportartefact", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_sessionimportartefact", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer", + "target": "apps_extension_chromium_src_beap_builder_buildsessionimportartefact", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr6ReplyPath.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_pr6replypath_test", + "target": "apps_extension_chromium_src_beap_builder_buildsessionimportartefact", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_beap_builder_buildsessionimportartefact", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_beap_builder_buildsessionimportartefact", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/buildSessionImportArtefact.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_buildsessionimportartefact_buildartefactinput", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_capabilityclass", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer", + "target": "apps_extension_chromium_src_beap_builder_buildsessionimportartefact_buildartefactinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr6ReplyPath.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_pr6replypath_test", + "target": "apps_extension_chromium_src_beap_builder_buildsessionimportartefact_buildartefactinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_beap_builder_buildsessionimportartefact_buildartefactinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_beap_builder_buildsessionimportartefact_buildartefactinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer", + "target": "apps_extension_chromium_src_beap_builder_buildsessionimportartefact_buildsessionimportartefact", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L441", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_usereplycomposer", + "target": "apps_extension_chromium_src_beap_builder_buildsessionimportartefact_buildsessionimportartefact" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr6ReplyPath.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_pr6replypath_test", + "target": "apps_extension_chromium_src_beap_builder_buildsessionimportartefact_buildsessionimportartefact", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr6ReplyPath.test.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_pr6replypath_test_buildreplyartefact", + "target": "apps_extension_chromium_src_beap_builder_buildsessionimportartefact_buildsessionimportartefact", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_beap_builder_buildsessionimportartefact_buildsessionimportartefact", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L893", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat_popupchatapp", + "target": "apps_extension_chromium_src_beap_builder_buildsessionimportartefact_buildsessionimportartefact", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_beap_builder_buildsessionimportartefact_buildsessionimportartefact", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L859", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_beap_builder_buildsessionimportartefact_buildsessionimportartefact", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L397", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_canonical_types", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_applyresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L655", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_canonical_types", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_artefactpolicy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L536", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_canonical_types", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_artefactpurpose", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L636", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_canonical_types", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_artefactsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L226", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_canonical_types", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_beapcapsule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_canonical_types", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_beapenvelope", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L368", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_canonical_types", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_builderrequiredreason", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L379", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_canonical_types", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_builderrequiredresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L268", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_canonical_types", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_buildersource", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_canonical_types", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_capabilityclass", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L178", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_canonical_types", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_capsuleattachment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L277", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_canonical_types", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_capsulebuildercontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L341", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_canonical_types", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_capsulebuilderstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L321", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_canonical_types", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_capsulestate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L301", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_canonical_types", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_envelopestate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_canonical_types", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_envelopesummary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L603", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_canonical_types", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_fullsessionexportcontent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L525", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_canonical_types", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_handshakebinding", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_canonical_types", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_networkconstraints", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L552", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_canonical_types", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_orchestratorsessioncontent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L642", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_canonical_types", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_processingevent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L498", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_canonical_types", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_purposeidentifier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L463", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_canonical_types", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_quarantineclonetransportmetadata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_canonical_types", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_rasterproof", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L669", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_canonical_types", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_requestedaction", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L513", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_canonical_types", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_scopeconstraints", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L683", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_canonical_types", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_sensitivesubcapsuleref", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L703", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_canonical_types", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_sessionimportartefact", + "confidence_score": 1.0 + }, + { + "relation": "cites", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L528", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_canonical_types", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_ts_docref_rfc_3339", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_canonical_types", + "target": "apps_extension_chromium_src_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_canonical_types", + "target": "apps_extension_chromium_src_handshake_types_handshake", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_canonical_types", + "target": "apps_extension_chromium_src_types_canonicalagentboxconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_canonical_types", + "target": "apps_extension_chromium_src_types_canonicalagentboxconfig_canonicalagentboxconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_canonical_types", + "target": "apps_extension_chromium_src_types_canonicalagentconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_canonical_types", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_canonicalagentconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_canonical_types", + "target": "apps_extension_chromium_src_types_canonicaldisplaygridconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_canonical_types", + "target": "apps_extension_chromium_src_types_canonicaldisplaygridconfig_canonicaldisplaygridconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/EnvelopeSection.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_envelopesection", + "target": "apps_extension_chromium_src_beap_builder_canonical_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/ExecutionBoundarySection.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_executionboundarysection", + "target": "apps_extension_chromium_src_beap_builder_canonical_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/VisionFallbackButton.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_visionfallbackbutton", + "target": "apps_extension_chromium_src_beap_builder_canonical_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/dispatch-types.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_dispatch_types", + "target": "apps_extension_chromium_src_beap_builder_canonical_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/draftAttachmentAutoParse.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_draftattachmentautoparse", + "target": "apps_extension_chromium_src_beap_builder_canonical_types", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_canonical_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/parserService.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_parserservice", + "target": "apps_extension_chromium_src_beap_builder_canonical_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/requiresBuilder.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_requiresbuilder", + "target": "apps_extension_chromium_src_beap_builder_canonical_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useenvelopegenerator", + "target": "apps_extension_chromium_src_beap_builder_canonical_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sanitisedPackageToBeapMessage.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sanitisedpackagetobeapmessage", + "target": "apps_extension_chromium_src_beap_builder_canonical_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_builder_canonical_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/stripAgentBoxesFromGrids.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_stripagentboxesfromgrids", + "target": "apps_extension_chromium_src_beap_builder_canonical_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/sessionImportArtefact.test.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_sessionimportartefact_test", + "target": "apps_extension_chromium_src_beap_builder_canonical_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/transportChannelSafety.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_transportchannelsafety_test", + "target": "apps_extension_chromium_src_beap_builder_canonical_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr5InboxWiring.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_pr5inboxwiring_test", + "target": "apps_extension_chromium_src_beap_builder_canonical_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr7BulkInbox.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_pr7bulkinbox_test", + "target": "apps_extension_chromium_src_beap_builder_canonical_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/EnvelopeSection.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_envelopesection", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_capabilityclass", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/EnvelopeSection.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_envelopesection_envelopesectionprops", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_capabilityclass", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useenvelopegenerator", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_capabilityclass", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/ExecutionBoundarySection.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_executionboundarysection", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_networkconstraints", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/ExecutionBoundarySection.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_executionboundarysection_executionboundarysectionprops", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_networkconstraints", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/requiresBuilder.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_requiresbuilder", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_networkconstraints", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useenvelopegenerator", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_networkconstraints", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/dispatch-types.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_dispatch_types", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_beapenvelope", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/dispatch-types.ts", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_dispatch_types_sendresult", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_beapenvelope", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useenvelopegenerator", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_beapenvelope", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_envelopegeneratorstate", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_beapenvelope", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/EnvelopeSection.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_envelopesection", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_envelopesummary", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/EnvelopeSection.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_envelopesection_envelopesectionprops", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_envelopesummary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/parserService.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_parserservice", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_rasterproof", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_rasterproof", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_rasterproof", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/VisionFallbackButton.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_visionfallbackbutton", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_capsuleattachment", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/VisionFallbackButton.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_visionfallbackbutton_visionfallbackbuttonprops", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_capsuleattachment", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/draftAttachmentAutoParse.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_draftattachmentautoparse", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_capsuleattachment", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/parserService.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_parserservice", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_capsuleattachment", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/requiresBuilder.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_requiresbuilder", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_capsuleattachment", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/requiresBuilder.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_requiresbuilder_builderdecisioncontext", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_capsuleattachment", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_capsuleattachment", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L326", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beappackageconfig", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_capsuleattachment", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/transportChannelSafety.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_transportchannelsafety_test", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_capsuleattachment", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_capsuleattachment", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_capsuleattachment", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/dispatch-types.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_dispatch_types", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_beapcapsule", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/dispatch-types.ts", + "source_location": "L165", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_dispatch_types_sendresult", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_beapcapsule", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L282", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_canonical_types_capsulebuildercontext", + "target": "apps_extension_chromium_src_handshake_types_handshake", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/dispatch-types.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_dispatch_types", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_capsulebuildercontext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/requiresBuilder.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_requiresbuilder", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_builderrequiredreason", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/requiresBuilder.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_requiresbuilder", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_builderrequiredresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_quarantineclonetransportmetadata", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L364", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beappackageconfig", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_quarantineclonetransportmetadata", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L569", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_canonical_types_orchestratorsessioncontent", + "target": "apps_extension_chromium_src_types_canonicalagentboxconfig_canonicalagentboxconfig", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L563", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_canonical_types_orchestratorsessioncontent", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_canonicalagentconfig", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/canonical-types.ts", + "source_location": "L575", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_canonical_types_orchestratorsessioncontent", + "target": "apps_extension_chromium_src_types_canonicaldisplaygridconfig_canonicaldisplaygridconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/stripAgentBoxesFromGrids.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_stripagentboxesfromgrids", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_orchestratorsessioncontent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/sessionImportArtefact.test.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_sessionimportartefact_test", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_orchestratorsessioncontent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/stripAgentBoxesFromGrids.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_stripagentboxesfromgrids", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_fullsessionexportcontent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sanitisedPackageToBeapMessage.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sanitisedpackagetobeapmessage", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_sessionimportartefact", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_sessionimportartefact", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L453", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beappackageconfig", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_sessionimportartefact", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/stripAgentBoxesFromGrids.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_stripagentboxesfromgrids", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_sessionimportartefact", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/sessionImportArtefact.test.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_sessionimportartefact_test", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_sessionimportartefact", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr5InboxWiring.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_pr5inboxwiring_test", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_sessionimportartefact", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr7BulkInbox.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_pr7bulkinbox_test", + "target": "apps_extension_chromium_src_beap_builder_canonical_types_sessionimportartefact", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/AttachmentStatusBadge.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_attachmentstatusbadge", + "target": "apps_extension_chromium_src_beap_builder_components_attachmentstatusbadge_attachmentparsestatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/AttachmentStatusBadge.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_attachmentstatusbadge", + "target": "apps_extension_chromium_src_beap_builder_components_attachmentstatusbadge_attachmentstatusbadge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/AttachmentStatusBadge.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_attachmentstatusbadge", + "target": "apps_extension_chromium_src_beap_builder_components_attachmentstatusbadge_attachmentstatusbadgeprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/AttachmentStatusBadge.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_attachmentstatusbadge", + "target": "apps_extension_chromium_src_beap_builder_components_attachmentstatusbadge_configs", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/index.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_index", + "target": "apps_extension_chromium_src_beap_builder_components_attachmentstatusbadge", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/index.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_index", + "target": "apps_extension_chromium_src_beap_builder_components_attachmentstatusbadge_attachmentparsestatus", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/index.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_index", + "target": "apps_extension_chromium_src_beap_builder_components_attachmentstatusbadge_attachmentstatusbadge", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_beap_builder_components_attachmentstatusbadge_attachmentstatusbadge", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_beap_builder_components_attachmentstatusbadge_attachmentstatusbadge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/BeapDocumentReaderModal.tsx", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_beapdocumentreadermodal", + "target": "apps_extension_chromium_src_beap_builder_components_beapdocumentreadermodal_beapdocumentreadermodal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/BeapDocumentReaderModal.tsx", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_beapdocumentreadermodal", + "target": "apps_extension_chromium_src_beap_builder_components_beapdocumentreadermodal_beapdocumentreadermodalprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/BeapDocumentReaderModal.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_beapdocumentreadermodal", + "target": "apps_extension_chromium_src_beap_builder_components_beapdocumentreadermodal_splittosyntheticpages", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/index.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_index", + "target": "apps_extension_chromium_src_beap_builder_components_beapdocumentreadermodal", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_builder_components_beapdocumentreadermodal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/BeapDocumentReaderModal.tsx", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_beapdocumentreadermodal_beapdocumentreadermodal", + "target": "apps_extension_chromium_src_beap_builder_components_beapdocumentreadermodal_splittosyntheticpages", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/index.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_index", + "target": "apps_extension_chromium_src_beap_builder_components_beapdocumentreadermodal_beapdocumentreadermodal", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_builder_components_beapdocumentreadermodal_beapdocumentreadermodal", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_beap_builder_components_beapdocumentreadermodal_beapdocumentreadermodal", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_beap_builder_components_beapdocumentreadermodal_beapdocumentreadermodal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/DeliveryOptions.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_deliveryoptions", + "target": "apps_extension_chromium_src_beap_builder_components_deliveryoptions_delivery_methods", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/DeliveryOptions.tsx", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_deliveryoptions", + "target": "apps_extension_chromium_src_beap_builder_components_deliveryoptions_deliveryoptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/DeliveryOptions.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_deliveryoptions", + "target": "apps_extension_chromium_src_beap_builder_components_deliveryoptions_deliveryoptionsprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/DeliveryOptions.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_deliveryoptions", + "target": "apps_extension_chromium_src_beap_builder_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/DeliveryOptions.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_deliveryoptions", + "target": "apps_extension_chromium_src_beap_builder_types_deliveryconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/DeliveryOptions.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_deliveryoptions", + "target": "apps_extension_chromium_src_beap_builder_types_deliverymethod", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_index", + "target": "apps_extension_chromium_src_beap_builder_components_deliveryoptions", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_components_deliveryoptions", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/DeliveryOptions.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_deliveryoptions_deliveryoptionsprops", + "target": "apps_extension_chromium_src_beap_builder_types_deliveryconfig", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_index", + "target": "apps_extension_chromium_src_beap_builder_components_deliveryoptions_deliveryoptions", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_components_deliveryoptions_deliveryoptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/EnvelopeSection.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_envelopesection", + "target": "apps_extension_chromium_src_beap_builder_components_envelopesection_envelopesection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/EnvelopeSection.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_envelopesection", + "target": "apps_extension_chromium_src_beap_builder_components_envelopesection_envelopesectionprops", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/index.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_index", + "target": "apps_extension_chromium_src_beap_builder_components_envelopesection", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/index.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_index", + "target": "apps_extension_chromium_src_beap_builder_components_envelopesection_envelopesection", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_components_envelopesection_envelopesection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/EnvelopeSummaryPanel.tsx", + "source_location": "L290", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_envelopesummarypanel", + "target": "apps_extension_chromium_src_beap_builder_components_envelopesummarypanel_envelopebadge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/EnvelopeSummaryPanel.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_envelopesummarypanel", + "target": "apps_extension_chromium_src_beap_builder_components_envelopesummarypanel_envelopesummarypanel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/EnvelopeSummaryPanel.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_envelopesummarypanel", + "target": "apps_extension_chromium_src_beap_builder_components_envelopesummarypanel_envelopesummarypanelprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/EnvelopeSummaryPanel.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_envelopesummarypanel", + "target": "apps_extension_chromium_src_beap_builder_useenvelopegenerator", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/EnvelopeSummaryPanel.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_envelopesummarypanel", + "target": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_useenvelopedisplaysummary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/EnvelopeSummaryPanel.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_envelopesummarypanel", + "target": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_useenvelopegenerator", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/EnvelopeSummaryPanel.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_envelopesummarypanel", + "target": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_usegenerationcount", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/index.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_index", + "target": "apps_extension_chromium_src_beap_builder_components_envelopesummarypanel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-builder/components/EnvelopeSummaryPanel.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_envelopesummarypanel_envelopesummarypanel", + "target": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_useenvelopedisplaysummary" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-builder/components/EnvelopeSummaryPanel.tsx", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_envelopesummarypanel_envelopesummarypanel", + "target": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_useenvelopegenerator" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-builder/components/EnvelopeSummaryPanel.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_envelopesummarypanel_envelopesummarypanel", + "target": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_usegenerationcount" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/index.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_index", + "target": "apps_extension_chromium_src_beap_builder_components_envelopesummarypanel_envelopesummarypanel", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_components_envelopesummarypanel_envelopesummarypanel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-builder/components/EnvelopeSummaryPanel.tsx", + "source_location": "L293", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_envelopesummarypanel_envelopebadge", + "target": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_useenvelopedisplaysummary" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-builder/components/EnvelopeSummaryPanel.tsx", + "source_location": "L294", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_envelopesummarypanel_envelopebadge", + "target": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_useenvelopegenerator" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/index.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_index", + "target": "apps_extension_chromium_src_beap_builder_components_envelopesummarypanel_envelopebadge", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_components_envelopesummarypanel_envelopebadge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/ExecutionBoundaryPanel.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_executionboundarypanel", + "target": "apps_extension_chromium_src_beap_builder_components_executionboundarypanel_executionboundarypanel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/ExecutionBoundaryPanel.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_executionboundarypanel", + "target": "apps_extension_chromium_src_beap_builder_components_executionboundarypanel_executionboundarypanelprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/ExecutionBoundaryPanel.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_executionboundarypanel", + "target": "apps_extension_chromium_src_beap_builder_useenvelopegenerator", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/ExecutionBoundaryPanel.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_executionboundarypanel", + "target": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_useenvelopegenerator", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/index.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_index", + "target": "apps_extension_chromium_src_beap_builder_components_executionboundarypanel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-builder/components/ExecutionBoundaryPanel.tsx", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_executionboundarypanel_executionboundarypanel", + "target": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_useenvelopegenerator" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/index.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_index", + "target": "apps_extension_chromium_src_beap_builder_components_executionboundarypanel_executionboundarypanel", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_components_executionboundarypanel_executionboundarypanel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/ExecutionBoundarySection.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_executionboundarysection", + "target": "apps_extension_chromium_src_beap_builder_components_executionboundarysection_executionboundarysection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/ExecutionBoundarySection.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_executionboundarysection", + "target": "apps_extension_chromium_src_beap_builder_components_executionboundarysection_executionboundarysectionprops", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/index.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_index", + "target": "apps_extension_chromium_src_beap_builder_components_executionboundarysection", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/index.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_index", + "target": "apps_extension_chromium_src_beap_builder_components_executionboundarysection_executionboundarysection", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_components_executionboundarysection_executionboundarysection", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_index", + "target": "apps_extension_chromium_src_beap_builder_components_visionfallbackbutton", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/VisionFallbackButton.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_visionfallbackbutton", + "target": "apps_extension_chromium_src_beap_builder_components_visionfallbackbutton_visionfallbackbutton", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/VisionFallbackButton.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_visionfallbackbutton", + "target": "apps_extension_chromium_src_beap_builder_components_visionfallbackbutton_visionfallbackbuttonprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/VisionFallbackButton.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_visionfallbackbutton", + "target": "apps_extension_chromium_src_beap_builder_visionextractionservice", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/VisionFallbackButton.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_visionfallbackbutton", + "target": "apps_extension_chromium_src_beap_builder_visionextractionservice_extractpdftextwithvision", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/components/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_index", + "target": "apps_extension_chromium_src_beap_builder_components_visionfallbackbutton_visionfallbackbutton", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-builder/components/VisionFallbackButton.tsx", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_components_visionfallbackbutton_visionfallbackbutton", + "target": "apps_extension_chromium_src_beap_builder_visionextractionservice_extractpdftextwithvision" + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_components_index", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_beap_builder_components_index", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_beap_builder_components_index", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/dispatch-types.ts", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_dispatch_types", + "target": "apps_extension_chromium_src_beap_builder_dispatch_types_chatdeliveryconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/dispatch-types.ts", + "source_location": "L187", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_dispatch_types", + "target": "apps_extension_chromium_src_beap_builder_dispatch_types_deliveryattempt", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/dispatch-types.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_dispatch_types", + "target": "apps_extension_chromium_src_beap_builder_dispatch_types_deliveryconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/dispatch-types.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_dispatch_types", + "target": "apps_extension_chromium_src_beap_builder_dispatch_types_deliverymethod", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/dispatch-types.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_dispatch_types", + "target": "apps_extension_chromium_src_beap_builder_dispatch_types_deliverystatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/dispatch-types.ts", + "source_location": "L261", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_dispatch_types", + "target": "apps_extension_chromium_src_beap_builder_dispatch_types_dispatchresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/dispatch-types.ts", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_dispatch_types", + "target": "apps_extension_chromium_src_beap_builder_dispatch_types_downloaddeliveryconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/dispatch-types.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_dispatch_types", + "target": "apps_extension_chromium_src_beap_builder_dispatch_types_emaildeliveryconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/dispatch-types.ts", + "source_location": "L281", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_dispatch_types", + "target": "apps_extension_chromium_src_beap_builder_dispatch_types_manualconfirmaction", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/dispatch-types.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_dispatch_types", + "target": "apps_extension_chromium_src_beap_builder_dispatch_types_messengerdeliveryconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/dispatch-types.ts", + "source_location": "L201", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_dispatch_types", + "target": "apps_extension_chromium_src_beap_builder_dispatch_types_outboxentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/dispatch-types.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_dispatch_types", + "target": "apps_extension_chromium_src_beap_builder_dispatch_types_sendattachment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/dispatch-types.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_dispatch_types", + "target": "apps_extension_chromium_src_beap_builder_dispatch_types_sendcontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/dispatch-types.ts", + "source_location": "L154", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_dispatch_types", + "target": "apps_extension_chromium_src_beap_builder_dispatch_types_sendresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/dispatch-types.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_dispatch_types", + "target": "apps_extension_chromium_src_beap_builder_dispatch_types_sendsessionref", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/dispatch-types.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_dispatch_types", + "target": "apps_extension_chromium_src_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/dispatch-types.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_dispatch_types", + "target": "apps_extension_chromium_src_handshake_types_handshake", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_dispatch_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useOutboxStore.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useoutboxstore", + "target": "apps_extension_chromium_src_beap_builder_dispatch_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useOutboxStore.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useoutboxstore", + "target": "apps_extension_chromium_src_beap_builder_dispatch_types_deliverymethod", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useOutboxStore.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useoutboxstore_outboxstate", + "target": "apps_extension_chromium_src_beap_builder_dispatch_types_deliverymethod", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useOutboxStore.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useoutboxstore", + "target": "apps_extension_chromium_src_beap_builder_dispatch_types_deliverystatus", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useOutboxStore.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useoutboxstore_outboxstate", + "target": "apps_extension_chromium_src_beap_builder_dispatch_types_deliverystatus", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/dispatch-types.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_dispatch_types_sendcontext", + "target": "apps_extension_chromium_src_handshake_types_handshake", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useOutboxStore.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useoutboxstore", + "target": "apps_extension_chromium_src_beap_builder_dispatch_types_deliveryattempt", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useOutboxStore.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useoutboxstore_outboxstate", + "target": "apps_extension_chromium_src_beap_builder_dispatch_types_deliveryattempt", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useOutboxStore.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useoutboxstore", + "target": "apps_extension_chromium_src_beap_builder_dispatch_types_outboxentry", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useOutboxStore.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useoutboxstore_outboxstate", + "target": "apps_extension_chromium_src_beap_builder_dispatch_types_outboxentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/draftAttachmentAutoParse.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_draftattachmentautoparse", + "target": "apps_extension_chromium_src_beap_builder_draftattachmentautoparse_draftattachmentparseitem", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/draftAttachmentAutoParse.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_draftattachmentautoparse", + "target": "apps_extension_chromium_src_beap_builder_draftattachmentautoparse_draftattachmentparserejectedupdate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/draftAttachmentAutoParse.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_draftattachmentautoparse", + "target": "apps_extension_chromium_src_beap_builder_draftattachmentautoparse_draftattachmentparseupdate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/draftAttachmentAutoParse.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_draftattachmentautoparse", + "target": "apps_extension_chromium_src_beap_builder_draftattachmentautoparse_rundraftattachmentparsewithfallback", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/draftAttachmentAutoParse.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_draftattachmentautoparse", + "target": "apps_extension_chromium_src_beap_builder_parserservice", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/draftAttachmentAutoParse.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_draftattachmentautoparse", + "target": "apps_extension_chromium_src_beap_builder_parserservice_processattachmentforparsing", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/draftAttachmentAutoParse.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_draftattachmentautoparse", + "target": "apps_extension_chromium_src_beap_builder_visionextractionservice", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/draftAttachmentAutoParse.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_draftattachmentautoparse", + "target": "apps_extension_chromium_src_beap_builder_visionextractionservice_extractpdftextwithvision", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_draftattachmentautoparse", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_draftattachmentautoparse_draftattachmentparseitem", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_draftattachmentautoparse_draftattachmentparseupdate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/draftAttachmentAutoParse.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_draftattachmentautoparse_rundraftattachmentparsewithfallback", + "target": "apps_extension_chromium_src_beap_builder_draftattachmentautoparse_draftattachmentparserejectedupdate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_draftattachmentautoparse_draftattachmentparserejectedupdate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_beap_builder_draftattachmentautoparse_draftattachmentparserejectedupdate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L1531", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat_popupchatapp", + "target": "apps_extension_chromium_src_beap_builder_draftattachmentautoparse_draftattachmentparserejectedupdate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_beap_builder_draftattachmentautoparse_draftattachmentparserejectedupdate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L7163", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_beap_builder_draftattachmentautoparse_draftattachmentparserejectedupdate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-builder/draftAttachmentAutoParse.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_draftattachmentautoparse_rundraftattachmentparsewithfallback", + "target": "apps_extension_chromium_src_beap_builder_parserservice_processattachmentforparsing" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-builder/draftAttachmentAutoParse.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_draftattachmentautoparse_rundraftattachmentparsewithfallback", + "target": "apps_extension_chromium_src_beap_builder_visionextractionservice_extractpdftextwithvision" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_draftattachmentautoparse_rundraftattachmentparsewithfallback", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_beap_builder_draftattachmentautoparse_rundraftattachmentparsewithfallback", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L1531", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat_popupchatapp", + "target": "apps_extension_chromium_src_beap_builder_draftattachmentautoparse_rundraftattachmentparsewithfallback", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_beap_builder_draftattachmentautoparse_rundraftattachmentparsewithfallback", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L7148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_beap_builder_draftattachmentautoparse_rundraftattachmentparsewithfallback", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/handshakeRefresh.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_handshakerefresh", + "target": "apps_extension_chromium_src_beap_builder_handshakerefresh_buildcontextblockproofs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/handshakeRefresh.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_handshakerefresh", + "target": "apps_extension_chromium_src_beap_builder_handshakerefresh_buildcontextblocks", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/handshakeRefresh.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_handshakerefresh", + "target": "apps_extension_chromium_src_beap_builder_handshakerefresh_computeblockhash", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/handshakeRefresh.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_handshakerefresh", + "target": "apps_extension_chromium_src_beap_builder_handshakerefresh_generateblockid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/handshakeRefresh.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_handshakerefresh", + "target": "apps_extension_chromium_src_beap_builder_handshakerefresh_handshakerefreshresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/handshakeRefresh.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_handshakerefresh", + "target": "apps_extension_chromium_src_beap_builder_handshakerefresh_sendviahandshakerefresh", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/handshakeRefresh.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_handshakerefresh", + "target": "apps_extension_chromium_src_beap_builder_handshakerefresh_usermessage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/handshakeRefresh.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_handshakerefresh", + "target": "apps_extension_chromium_src_handshake_handshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/handshakeRefresh.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_handshakerefresh", + "target": "apps_extension_chromium_src_handshake_handshakerpc_refreshhandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/handshakeRefresh.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_handshakerefresh", + "target": "apps_extension_chromium_src_handshake_rpctypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/handshakeRefresh.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_handshakerefresh", + "target": "apps_extension_chromium_src_handshake_rpctypes_contextblockproof", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_handshakerefresh", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_beap_builder_handshakerefresh", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_beap_builder_handshakerefresh", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_handshakerefresh_usermessage", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_handshakerefresh_handshakerefreshresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/handshakeRefresh.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_handshakerefresh_buildcontextblockproofs", + "target": "apps_extension_chromium_src_beap_builder_handshakerefresh_generateblockid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/handshakeRefresh.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_handshakerefresh_buildcontextblockproofs", + "target": "apps_extension_chromium_src_beap_builder_handshakerefresh_computeblockhash", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/handshakeRefresh.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_handshakerefresh_sendviahandshakerefresh", + "target": "apps_extension_chromium_src_beap_builder_handshakerefresh_buildcontextblockproofs", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_handshakerefresh_buildcontextblockproofs", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_handshakerefresh_buildcontextblocks", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-builder/handshakeRefresh.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_handshakerefresh_sendviahandshakerefresh", + "target": "apps_extension_chromium_src_handshake_handshakerpc_refreshhandshake" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_handshakerefresh_sendviahandshakerefresh", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_beap_builder_handshakerefresh_sendviahandshakerefresh", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L832", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat_popupchatapp", + "target": "apps_extension_chromium_src_beap_builder_handshakerefresh_sendviahandshakerefresh", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_beap_builder_handshakerefresh_sendviahandshakerefresh", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L803", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_beap_builder_handshakerefresh_sendviahandshakerefresh", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_parserservice", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_parserservice_assertnosemanticcontentintransport", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_parserservice_extractpdftext", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_parserservice_getsafeattachmentinfo", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_parserservice_isparseableformat", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_parserservice_isparserserviceavailable", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_parserservice_parserprovenance", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_parserservice_parserresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_parserservice_processattachmentforparsing", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_parserservice_processattachmentforrasterization", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_parserservice_rasterizepdf", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_parserservice_rasterpagedata", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_parserservice_rasterresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_requiresbuilder", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_requiresbuilder_builderdecisioncontext", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_requiresbuilder_cansendsilently", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_requiresbuilder_getbuilderrequiredreasons", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_requiresbuilder_requiresbeapbuilder", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_types", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_types_beapbuildresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_types_builderattachment", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_types_buildercontext", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_types_buildermode", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_types_builderstate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_types_explicitbuildrequest", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_types_explicitmodereason", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_types_modetriggerresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_types_silentbuildrequest", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_useenvelopegenerator", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_useegressdeclaration", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_useenvelopedisplaysummary", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_useenvelopegenerator", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_useexecutionboundary", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_usegenerationcount", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_useingressdeclaration", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_useisenveloperegenerating", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_useoutboxstore", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_useoutboxstore_useoutboxentries", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_useoutboxstore_useoutboxentry", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_useoutboxstore_useoutboxstatuscounts", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_useoutboxstore_useoutboxstore", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/index.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_index", + "target": "apps_extension_chromium_src_beap_builder_useoutboxstore_usependingoutboxentries", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_beap_builder_index", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_beap_builder_index", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/parserService.ts", + "source_location": "L605", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_parserservice", + "target": "apps_extension_chromium_src_beap_builder_parserservice_assertnosemanticcontentintransport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/parserService.ts", + "source_location": "L267", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_parserservice", + "target": "apps_extension_chromium_src_beap_builder_parserservice_extractpdftext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/parserService.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_parserservice", + "target": "apps_extension_chromium_src_beap_builder_parserservice_extractpdftextbrowser", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/parserService.ts", + "source_location": "L228", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_parserservice", + "target": "apps_extension_chromium_src_beap_builder_parserservice_extractpdftextelectron", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/parserService.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_parserservice", + "target": "apps_extension_chromium_src_beap_builder_parserservice_getlaunchheaders", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/parserService.ts", + "source_location": "L630", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_parserservice", + "target": "apps_extension_chromium_src_beap_builder_parserservice_getsafeattachmentinfo", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/parserService.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_parserservice", + "target": "apps_extension_chromium_src_beap_builder_parserservice_initpdfjs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/parserService.ts", + "source_location": "L221", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_parserservice", + "target": "apps_extension_chromium_src_beap_builder_parserservice_isparseableformat", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/parserService.ts", + "source_location": "L402", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_parserservice", + "target": "apps_extension_chromium_src_beap_builder_parserservice_isparserserviceavailable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/parserService.ts", + "source_location": "L212", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_parserservice", + "target": "apps_extension_chromium_src_beap_builder_parserservice_parseable_formats", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/parserService.ts", + "source_location": "L160", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_parserservice", + "target": "apps_extension_chromium_src_beap_builder_parserservice_parserprovenance", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/parserService.ts", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_parserservice", + "target": "apps_extension_chromium_src_beap_builder_parserservice_parserresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/parserService.ts", + "source_location": "L304", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_parserservice", + "target": "apps_extension_chromium_src_beap_builder_parserservice_processattachmentforparsing", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/parserService.ts", + "source_location": "L480", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_parserservice", + "target": "apps_extension_chromium_src_beap_builder_parserservice_processattachmentforrasterization", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/parserService.ts", + "source_location": "L429", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_parserservice", + "target": "apps_extension_chromium_src_beap_builder_parserservice_rasterizepdf", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/parserService.ts", + "source_location": "L172", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_parserservice", + "target": "apps_extension_chromium_src_beap_builder_parserservice_rasterpagedata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/parserService.ts", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_parserservice", + "target": "apps_extension_chromium_src_beap_builder_parserservice_rasterresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/parserService.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_parserservice", + "target": "apps_extension_chromium_src_beap_builder_parserservice_resolveextensionpdfworkersrc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/parserService.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_parserservice", + "target": "apps_extension_chromium_src_beap_builder_parserservice_safeatob", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_builder_parserservice", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/parserService.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_parserservice_extractpdftextbrowser", + "target": "apps_extension_chromium_src_beap_builder_parserservice_safeatob", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/parserService.ts", + "source_location": "L233", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_parserservice_extractpdftextelectron", + "target": "apps_extension_chromium_src_beap_builder_parserservice_getlaunchheaders", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/parserService.ts", + "source_location": "L435", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_parserservice_rasterizepdf", + "target": "apps_extension_chromium_src_beap_builder_parserservice_getlaunchheaders", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/parserService.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_parserservice_initpdfjs", + "target": "apps_extension_chromium_src_beap_builder_parserservice_resolveextensionpdfworkersrc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/parserService.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_parserservice_extractpdftextbrowser", + "target": "apps_extension_chromium_src_beap_builder_parserservice_initpdfjs", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/parserService.ts", + "source_location": "L272", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_parserservice_extractpdftext", + "target": "apps_extension_chromium_src_beap_builder_parserservice_extractpdftextbrowser", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_beap_builder_parserservice_rasterpagedata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_beap_builder_parserservice_rasterpagedata", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-builder/parserService.ts", + "source_location": "L222", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_parserservice_isparseableformat", + "target": "apps_extension_chromium_src_beap_builder_parserservice_parseable_formats" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/parserService.ts", + "source_location": "L313", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_parserservice_processattachmentforparsing", + "target": "apps_extension_chromium_src_beap_builder_parserservice_isparseableformat", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/parserService.ts", + "source_location": "L279", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_parserservice_extractpdftext", + "target": "apps_extension_chromium_src_beap_builder_parserservice_extractpdftextelectron", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/parserService.ts", + "source_location": "L331", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_parserservice_processattachmentforparsing", + "target": "apps_extension_chromium_src_beap_builder_parserservice_extractpdftext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/parserService.ts", + "source_location": "L501", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_parserservice_processattachmentforrasterization", + "target": "apps_extension_chromium_src_beap_builder_parserservice_rasterizepdf", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_builder_parserservice_assertnosemanticcontentintransport", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1014", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_checkqbeaptransportchannelsafety", + "target": "apps_extension_chromium_src_beap_builder_parserservice_assertnosemanticcontentintransport" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/requiresBuilder.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_requiresbuilder", + "target": "apps_extension_chromium_src_beap_builder_requiresbuilder_builderdecisioncontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/requiresBuilder.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_requiresbuilder", + "target": "apps_extension_chromium_src_beap_builder_requiresbuilder_cansendsilently", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/requiresBuilder.ts", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_requiresbuilder", + "target": "apps_extension_chromium_src_beap_builder_requiresbuilder_getbuilderrequiredreasons", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/requiresBuilder.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_requiresbuilder", + "target": "apps_extension_chromium_src_beap_builder_requiresbuilder_requiresbeapbuilder", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/requiresBuilder.ts", + "source_location": "L137", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_requiresbuilder_getbuilderrequiredreasons", + "target": "apps_extension_chromium_src_beap_builder_requiresbuilder_requiresbeapbuilder", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/types.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_types", + "target": "apps_extension_chromium_src_beap_builder_types_beapbuildresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/types.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_types", + "target": "apps_extension_chromium_src_beap_builder_types_builderattachment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/types.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_types", + "target": "apps_extension_chromium_src_beap_builder_types_buildercontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/types.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_types", + "target": "apps_extension_chromium_src_beap_builder_types_buildermode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/types.ts", + "source_location": "L223", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_types", + "target": "apps_extension_chromium_src_beap_builder_types_builderstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/types.ts", + "source_location": "L193", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_types", + "target": "apps_extension_chromium_src_beap_builder_types_deliveryconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/types.ts", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_types", + "target": "apps_extension_chromium_src_beap_builder_types_deliverymethod", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/types.ts", + "source_location": "L142", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_types", + "target": "apps_extension_chromium_src_beap_builder_types_explicitbuildrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/types.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_types", + "target": "apps_extension_chromium_src_beap_builder_types_explicitmodereason", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/types.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_types", + "target": "apps_extension_chromium_src_beap_builder_types_modetriggerresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/types.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_types", + "target": "apps_extension_chromium_src_beap_builder_types_silentbuildrequest", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/types.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_types", + "target": "apps_extension_chromium_src_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/types.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_types", + "target": "apps_extension_chromium_src_handshake_types_handshake", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/types.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_types", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_canonicalpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/types.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_types", + "target": "apps_extension_chromium_src_policy_schema_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_builder_types", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/types.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_types_buildercontext", + "target": "apps_extension_chromium_src_handshake_types_handshake", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/types.ts", + "source_location": "L142", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_types_explicitbuildrequest", + "target": "apps_extension_chromium_src_beap_builder_types_silentbuildrequest", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/types.ts", + "source_location": "L154", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_types_explicitbuildrequest", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_canonicalpolicy", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/types.ts", + "source_location": "L181", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_types_beapbuildresult", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_canonicalpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_builder_types_beapbuildresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/types.ts", + "source_location": "L242", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_types_builderstate", + "target": "apps_extension_chromium_src_handshake_types_handshake", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/types.ts", + "source_location": "L245", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_types_builderstate", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_canonicalpolicy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useenvelopegenerator", + "target": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_envelopegeneratorstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L445", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useenvelopegenerator", + "target": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_generatedisplaysummary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L375", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useenvelopegenerator", + "target": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_generateenvelopefromboundary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L468", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useenvelopegenerator", + "target": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_simplehash", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L494", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useenvelopegenerator", + "target": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_useegressdeclaration", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L488", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useenvelopegenerator", + "target": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_useenvelopedisplaysummary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useenvelopegenerator", + "target": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_useenvelopegenerator", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L485", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useenvelopegenerator", + "target": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_useexecutionboundary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L500", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useenvelopegenerator", + "target": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_usegenerationcount", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L497", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useenvelopegenerator", + "target": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_useingressdeclaration", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L491", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useenvelopegenerator", + "target": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_useisenveloperegenerating", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useenvelopegenerator", + "target": "apps_extension_chromium_src_handshake_fingerprint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useenvelopegenerator", + "target": "apps_extension_chromium_src_handshake_fingerprint_generatemockfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L495", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_useegressdeclaration", + "target": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_useenvelopegenerator", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L489", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_useenvelopedisplaysummary", + "target": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_useenvelopegenerator", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L486", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_useexecutionboundary", + "target": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_useenvelopegenerator", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L501", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_usegenerationcount", + "target": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_useenvelopegenerator", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L498", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_useingressdeclaration", + "target": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_useenvelopegenerator", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L492", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_useisenveloperegenerating", + "target": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_useenvelopegenerator", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L423", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_generateenvelopefromboundary", + "target": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_simplehash", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts", + "source_location": "L379", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useenvelopegenerator_generateenvelopefromboundary", + "target": "apps_extension_chromium_src_handshake_fingerprint_generatemockfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useOutboxStore.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useoutboxstore", + "target": "apps_extension_chromium_src_beap_builder_useoutboxstore_outboxstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useOutboxStore.ts", + "source_location": "L301", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useoutboxstore", + "target": "apps_extension_chromium_src_beap_builder_useoutboxstore_useoutboxentries", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useOutboxStore.ts", + "source_location": "L310", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useoutboxstore", + "target": "apps_extension_chromium_src_beap_builder_useoutboxstore_useoutboxentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useOutboxStore.ts", + "source_location": "L307", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useoutboxstore", + "target": "apps_extension_chromium_src_beap_builder_useoutboxstore_useoutboxstatuscounts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useOutboxStore.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useoutboxstore", + "target": "apps_extension_chromium_src_beap_builder_useoutboxstore_useoutboxstore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useOutboxStore.ts", + "source_location": "L304", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useoutboxstore", + "target": "apps_extension_chromium_src_beap_builder_useoutboxstore_usependingoutboxentries", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useOutboxStore.ts", + "source_location": "L302", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useoutboxstore_useoutboxentries", + "target": "apps_extension_chromium_src_beap_builder_useoutboxstore_useoutboxstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useOutboxStore.ts", + "source_location": "L311", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useoutboxstore_useoutboxentry", + "target": "apps_extension_chromium_src_beap_builder_useoutboxstore_useoutboxstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useOutboxStore.ts", + "source_location": "L308", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useoutboxstore_useoutboxstatuscounts", + "target": "apps_extension_chromium_src_beap_builder_useoutboxstore_useoutboxstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/useOutboxStore.ts", + "source_location": "L305", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_useoutboxstore_usependingoutboxentries", + "target": "apps_extension_chromium_src_beap_builder_useoutboxstore_useoutboxstore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/visionExtractionService.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_visionextractionservice", + "target": "apps_extension_chromium_src_beap_builder_visionextractionservice_extract_prompt", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/visionExtractionService.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_visionextractionservice", + "target": "apps_extension_chromium_src_beap_builder_visionextractionservice_extractpagewithvision", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/visionExtractionService.ts", + "source_location": "L176", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_visionextractionservice", + "target": "apps_extension_chromium_src_beap_builder_visionextractionservice_extractpdftextwithvision", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/visionExtractionService.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_visionextractionservice", + "target": "apps_extension_chromium_src_beap_builder_visionextractionservice_initpdfjs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/visionExtractionService.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_visionextractionservice", + "target": "apps_extension_chromium_src_beap_builder_visionextractionservice_renderpagetopng", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/visionExtractionService.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_visionextractionservice", + "target": "apps_extension_chromium_src_beap_builder_visionextractionservice_resolveextensionpdfworkersrc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/visionExtractionService.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_visionextractionservice", + "target": "apps_extension_chromium_src_beap_builder_visionextractionservice_safeatob", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/visionExtractionService.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_visionextractionservice", + "target": "apps_extension_chromium_src_beap_builder_visionextractionservice_visionextractionoptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/visionExtractionService.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_visionextractionservice", + "target": "apps_extension_chromium_src_beap_builder_visionextractionservice_visionextractionresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/visionExtractionService.ts", + "source_location": "L189", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_visionextractionservice_extractpdftextwithvision", + "target": "apps_extension_chromium_src_beap_builder_visionextractionservice_safeatob", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/visionExtractionService.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_visionextractionservice_initpdfjs", + "target": "apps_extension_chromium_src_beap_builder_visionextractionservice_resolveextensionpdfworkersrc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/visionExtractionService.ts", + "source_location": "L188", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_visionextractionservice_extractpdftextwithvision", + "target": "apps_extension_chromium_src_beap_builder_visionextractionservice_initpdfjs", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/visionExtractionService.ts", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_visionextractionservice_extractpdftextwithvision", + "target": "apps_extension_chromium_src_beap_builder_visionextractionservice_renderpagetopng", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-builder/visionExtractionService.ts", + "source_location": "L201", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_builder_visionextractionservice_extractpdftextwithvision", + "target": "apps_extension_chromium_src_beap_builder_visionextractionservice_extractpagewithvision", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/activationPipeline.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_activationpipeline_test", + "target": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/activationPipeline.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_activationpipeline_test", + "target": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge_beap_inbox_present_grid_type", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/activationPipeline.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_activationpipeline_test", + "target": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge_beap_run_automation_type", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/activationPipeline.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_activationpipeline_test", + "target": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge_requestbeapinboxpresentgrid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/activationPipeline.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_activationpipeline_test", + "target": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge_requestbeaprunautomationinactivetab", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/activationPipeline.test.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_activationpipeline_test", + "target": "apps_extension_chromium_src_beap_messages_tests_activationpipeline_test_chromemock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/activationPipeline.test.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_activationpipeline_test", + "target": "apps_extension_chromium_src_beap_messages_tests_activationpipeline_test_makechromemock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/activationPipeline.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_activationpipeline_test", + "target": "apps_extension_chromium_src_beap_messages_tests_activationpipeline_test_makefullexportartefact", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/attachmentPickerLimits.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_attachmentpickerlimits_test", + "target": "apps_extension_chromium_src_beap_messages_attachmentpickerlimits", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/attachmentPickerLimits.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_attachmentpickerlimits_test", + "target": "apps_extension_chromium_src_beap_messages_attachmentpickerlimits_formatoversizeattachmentrejection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/attachmentPickerLimits.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_attachmentpickerlimits_test", + "target": "apps_extension_chromium_src_beap_messages_attachmentpickerlimits_max_beap_draft_attachment_bytes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b81InboxPagination.test.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_b81inboxpagination_test", + "target": "apps_extension_chromium_src_beap_messages_tests_b81inboxpagination_test_getstore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b81InboxPagination.test.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_b81inboxpagination_test", + "target": "apps_extension_chromium_src_beap_messages_tests_b81inboxpagination_test_makerow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b81InboxPagination.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_b81inboxpagination_test", + "target": "apps_extension_chromium_src_beap_messages_tests_b81inboxpagination_test_mockgetbeapinboxmessages", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b81InboxPagination.test.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_b81inboxpagination_test", + "target": "apps_extension_chromium_src_beap_messages_tests_b81inboxpagination_test_mocklist", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b81InboxPagination.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_b81inboxpagination_test", + "target": "apps_extension_chromium_src_handshake_handshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b81InboxPagination.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_b81inboxpagination_test", + "target": "apps_extension_chromium_src_handshake_handshakerpc_beapinboxlistresponse", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b81InboxPagination.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_b81inboxpagination_test", + "target": "apps_extension_chromium_src_handshake_handshakerpc_beapinboxrow", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b81InboxPagination.test.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_b81inboxpagination_test_getstore", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b82PatchMode.test.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_b82patchmode_test", + "target": "apps_extension_chromium_src_beap_messages_tests_b82patchmode_test_getstore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b82PatchMode.test.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_b82patchmode_test", + "target": "apps_extension_chromium_src_beap_messages_tests_b82patchmode_test_makerow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b82PatchMode.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_b82patchmode_test", + "target": "apps_extension_chromium_src_beap_messages_tests_b82patchmode_test_mockbeapinboxarchive", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b82PatchMode.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_b82patchmode_test", + "target": "apps_extension_chromium_src_beap_messages_tests_b82patchmode_test_mockbeapinboxclassify", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b82PatchMode.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_b82patchmode_test", + "target": "apps_extension_chromium_src_beap_messages_tests_b82patchmode_test_mockbeapinboxmarkread", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b82PatchMode.test.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_b82patchmode_test", + "target": "apps_extension_chromium_src_beap_messages_tests_b82patchmode_test_mockbeapinboxseturgency", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b82PatchMode.test.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_b82patchmode_test", + "target": "apps_extension_chromium_src_beap_messages_tests_b82patchmode_test_mockbeapinboxunarchive", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b82PatchMode.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_b82patchmode_test", + "target": "apps_extension_chromium_src_beap_messages_tests_b82patchmode_test_mockgetbeapinboxmany", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b82PatchMode.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_b82patchmode_test", + "target": "apps_extension_chromium_src_beap_messages_tests_b82patchmode_test_mockgetbeapinboxmessages", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b82PatchMode.test.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_b82patchmode_test", + "target": "apps_extension_chromium_src_beap_messages_tests_b82patchmode_test_mocklist", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b82PatchMode.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_b82patchmode_test", + "target": "apps_extension_chromium_src_handshake_handshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b82PatchMode.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_b82patchmode_test", + "target": "apps_extension_chromium_src_handshake_handshakerpc_beapinboxlistresponse", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b82PatchMode.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_b82patchmode_test", + "target": "apps_extension_chromium_src_handshake_handshakerpc_beapinboxrow", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b82PatchMode.test.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_b82patchmode_test_getstore", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b8InboxStoreMirror.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_b8inboxstoremirror_test", + "target": "apps_extension_chromium_src_beap_messages_inboxrowtobeapmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b8InboxStoreMirror.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_b8inboxstoremirror_test", + "target": "apps_extension_chromium_src_beap_messages_inboxrowtobeapmessage_inboxrowtobeapmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b8InboxStoreMirror.test.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_b8inboxstoremirror_test", + "target": "apps_extension_chromium_src_beap_messages_tests_b8inboxstoremirror_test_getstore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b8InboxStoreMirror.test.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_b8inboxstoremirror_test", + "target": "apps_extension_chromium_src_beap_messages_tests_b8inboxstoremirror_test_makerow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b8InboxStoreMirror.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_b8inboxstoremirror_test", + "target": "apps_extension_chromium_src_beap_messages_tests_b8inboxstoremirror_test_mockbeapinboxarchive", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b8InboxStoreMirror.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_b8inboxstoremirror_test", + "target": "apps_extension_chromium_src_beap_messages_tests_b8inboxstoremirror_test_mockbeapinboxclassify", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b8InboxStoreMirror.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_b8inboxstoremirror_test", + "target": "apps_extension_chromium_src_beap_messages_tests_b8inboxstoremirror_test_mockbeapinboxmarkread", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b8InboxStoreMirror.test.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_b8inboxstoremirror_test", + "target": "apps_extension_chromium_src_beap_messages_tests_b8inboxstoremirror_test_mockbeapinboxseturgency", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b8InboxStoreMirror.test.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_b8inboxstoremirror_test", + "target": "apps_extension_chromium_src_beap_messages_tests_b8inboxstoremirror_test_mockbeapinboxunarchive", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b8InboxStoreMirror.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_b8inboxstoremirror_test", + "target": "apps_extension_chromium_src_beap_messages_tests_b8inboxstoremirror_test_mockgetbeapinboxmany", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b8InboxStoreMirror.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_b8inboxstoremirror_test", + "target": "apps_extension_chromium_src_beap_messages_tests_b8inboxstoremirror_test_mockgetbeapinboxmessages", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b8InboxStoreMirror.test.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_b8inboxstoremirror_test", + "target": "apps_extension_chromium_src_beap_messages_tests_b8inboxstoremirror_test_mocklist", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b8InboxStoreMirror.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_b8inboxstoremirror_test", + "target": "apps_extension_chromium_src_handshake_handshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b8InboxStoreMirror.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_b8inboxstoremirror_test", + "target": "apps_extension_chromium_src_handshake_handshakerpc_beapinboxlistresponse", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b8InboxStoreMirror.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_b8inboxstoremirror_test", + "target": "apps_extension_chromium_src_handshake_handshakerpc_beapinboxrow", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/b8InboxStoreMirror.test.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_b8inboxstoremirror_test_getstore", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/beapInboxBridges.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_beapinboxbridges_test", + "target": "apps_extension_chromium_src_beap_messages_beapsessioneditbridge", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/beapInboxBridges.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_beapinboxbridges_test", + "target": "apps_extension_chromium_src_beap_messages_beapsessioneditbridge_beap_edit_session_import_type", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/beapInboxBridges.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_beapinboxbridges_test", + "target": "apps_extension_chromium_src_beap_messages_beapsessioneditbridge_requestbeapsessioneditinactivetab", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/beapInboxBridges.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_beapinboxbridges_test", + "target": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/beapInboxBridges.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_beapinboxbridges_test", + "target": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge_beap_run_automation_type", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/beapInboxBridges.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_beapinboxbridges_test", + "target": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge_requestbeaprunautomationinactivetab", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/beapInboxBridges.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_beapinboxbridges_test", + "target": "apps_extension_chromium_src_beap_messages_tests_beapinboxbridges_test_tabpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/beapModeRunEligibility.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_beapmoderuneligibility_test", + "target": "apps_extension_chromium_src_beap_messages_tests_beapmoderuneligibility_test_baseagent", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/beapModeRunEligibility.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_beapmoderuneligibility_test", + "target": "apps_extension_chromium_src_services_processflow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/beapModeRunEligibility.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_beapmoderuneligibility_test", + "target": "apps_extension_chromium_src_services_processflow_agentconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/beapModeRunEligibility.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_beapmoderuneligibility_test", + "target": "apps_extension_chromium_src_services_processflow_matchagentsformoderun", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/beapSessionBridgeGuards.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_beapsessionbridgeguards_test", + "target": "apps_extension_chromium_src_beap_messages_beapsessionbridgeguards", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/beapSessionBridgeGuards.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_beapsessionbridgeguards_test", + "target": "apps_extension_chromium_src_beap_messages_beapsessionbridgeguards_assertbeaptabimportpayload", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/beapSessionBridgeGuards.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_beapsessionbridgeguards_test", + "target": "apps_extension_chromium_src_beap_messages_beapsessionbridgeguards_narrowbeapfallbackmodel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/beapSessionBridgeGuards.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_beapsessionbridgeguards_test", + "target": "apps_extension_chromium_src_beap_messages_beapsessionbridgeguards_narrowbeapimportpayloadforbridge", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/integrationDefaultAutomationMetadata.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_integrationdefaultautomationmetadata_test", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/integrationDefaultAutomationMetadata.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_integrationdefaultautomationmetadata_test", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/integrationDefaultAutomationMetadata.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_integrationdefaultautomationmetadata_test", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/integrationDefaultAutomationMetadata.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_integrationdefaultautomationmetadata_test", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_beap_integration_default_automation_storage_key", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/integrationDefaultAutomationMetadata.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_integrationdefaultautomationmetadata_test", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_beapintegrationdefaultautomationentryv1", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/integrationDefaultAutomationMetadata.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_integrationdefaultautomationmetadata_test", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_beapintegrationidentityfrommessage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/integrationDefaultAutomationMetadata.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_integrationdefaultautomationmetadata_test", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_beapintegrationstablekey", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/integrationDefaultAutomationMetadata.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_integrationdefaultautomationmetadata_test", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_emptybeapintegrationdefaultautomationroot", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/integrationDefaultAutomationMetadata.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_integrationdefaultautomationmetadata_test", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_parsebeapintegrationdefaultautomationroot", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/integrationDefaultAutomationMetadata.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_integrationdefaultautomationmetadata_test", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_serializebeapintegrationdefaultautomationroot", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/integrationDefaultAutomationMetadata.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_integrationdefaultautomationmetadata_test", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_upsertbeapintegrationdefaultautomationentry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/integrationDefaultAutomationMetadata.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_integrationdefaultautomationmetadata_test", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_validatebeapintegrationidentity", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/integrationDefaultAutomationMetadata.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_integrationdefaultautomationmetadata_test", + "target": "apps_extension_chromium_src_beap_messages_tests_integrationdefaultautomationmetadata_test_msg", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/modeRunExecutionPipeline.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_moderunexecutionpipeline_test", + "target": "apps_extension_chromium_src_beap_messages_tests_moderunexecutionpipeline_test_makerunresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/modeRunExecutionPipeline.test.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_moderunexecutionpipeline_test", + "target": "apps_extension_chromium_src_beap_messages_tests_moderunexecutionpipeline_test_simulatetrigger", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/modeRunExecutionPipeline.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_moderunexecutionpipeline_test", + "target": "apps_extension_chromium_src_services_beaprunautomationresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/modeRunExecutionPipeline.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_moderunexecutionpipeline_test", + "target": "apps_extension_chromium_src_services_beaprunautomationresult_beap_automation_no_mode_trigger_msg", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/modeRunExecutionPipeline.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_moderunexecutionpipeline_test", + "target": "apps_extension_chromium_src_services_beaprunautomationresult_interpretbeapautomationmoderun", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/modeRunExecutionPipeline.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_moderunexecutionpipeline_test", + "target": "apps_extension_chromium_src_services_moderunexecution", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/modeRunExecutionPipeline.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_moderunexecutionpipeline_test", + "target": "apps_extension_chromium_src_services_moderunexecution_executemoderunagentsresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr5InboxWiring.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_pr5inboxwiring_test", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr5InboxWiring.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_pr5inboxwiring_test", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapattachment", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr5InboxWiring.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_pr5inboxwiring_test", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr5InboxWiring.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_pr5inboxwiring_test", + "target": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr5InboxWiring.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_pr5inboxwiring_test", + "target": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver_resolvebeapsessionimportpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr5InboxWiring.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_pr5inboxwiring_test", + "target": "apps_extension_chromium_src_beap_messages_tests_pr5inboxwiring_test_baseattachment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr5InboxWiring.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_pr5inboxwiring_test", + "target": "apps_extension_chromium_src_beap_messages_tests_pr5inboxwiring_test_basemessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr5InboxWiring.test.ts", + "source_location": "L194", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_pr5inboxwiring_test", + "target": "apps_extension_chromium_src_beap_messages_tests_pr5inboxwiring_test_gatevalidated", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr5InboxWiring.test.ts", + "source_location": "L243", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_pr5inboxwiring_test", + "target": "apps_extension_chromium_src_beap_messages_tests_pr5inboxwiring_test_getartefactsessionrefs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr5InboxWiring.test.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_pr5inboxwiring_test", + "target": "apps_extension_chromium_src_beap_messages_tests_pr5inboxwiring_test_minimalartefact", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr5InboxWiring.test.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_pr5inboxwiring_test", + "target": "apps_extension_chromium_src_beap_messages_tests_pr5inboxwiring_test_minimalv1attachment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr5InboxWiring.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_pr5inboxwiring_test", + "target": "apps_extension_chromium_src_beap_messages_validationstate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr5InboxWiring.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_pr5inboxwiring_test", + "target": "apps_extension_chromium_src_beap_messages_validationstate_getvalidationstate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr5InboxWiring.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_pr5inboxwiring_test", + "target": "apps_extension_chromium_src_beap_messages_validationstate_validationstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr6ReplyPath.test.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_pr6replypath_test", + "target": "apps_extension_chromium_src_beap_messages_tests_pr6replypath_test_buildreplyartefact", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr6ReplyPath.test.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_pr6replypath_test", + "target": "apps_extension_chromium_src_beap_messages_tests_pr6replypath_test_makehandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr6ReplyPath.test.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_pr6replypath_test", + "target": "apps_extension_chromium_src_beap_messages_tests_pr6replypath_test_makesessiondata", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr6ReplyPath.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_pr6replypath_test", + "target": "apps_extension_chromium_src_handshake_rpctypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr6ReplyPath.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_pr6replypath_test", + "target": "apps_extension_chromium_src_handshake_rpctypes_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr6ReplyPath.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_pr6replypath_test", + "target": "apps_extension_chromium_src_handshake_rpctypes_handshakerecordtorecipient", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr6ReplyPath.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_pr6replypath_test", + "target": "apps_extension_chromium_src_handshake_rpctypes_hashandshakekeymaterial", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr6ReplyPath.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_pr6replypath_test", + "target": "apps_extension_chromium_src_handshake_rpctypes_selectedhandshakerecipient", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr7BulkInbox.test.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_pr7bulkinbox_test", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr7BulkInbox.test.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_pr7bulkinbox_test", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapattachment", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr7BulkInbox.test.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_pr7bulkinbox_test", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr7BulkInbox.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_pr7bulkinbox_test", + "target": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr7BulkInbox.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_pr7bulkinbox_test", + "target": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver_resolvebeapsessionimportpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr7BulkInbox.test.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_pr7bulkinbox_test", + "target": "apps_extension_chromium_src_beap_messages_tests_pr7bulkinbox_test_baseattachment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr7BulkInbox.test.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_pr7bulkinbox_test", + "target": "apps_extension_chromium_src_beap_messages_tests_pr7bulkinbox_test_basemessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr7BulkInbox.test.ts", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_pr7bulkinbox_test", + "target": "apps_extension_chromium_src_beap_messages_tests_pr7bulkinbox_test_computehassessionindicator", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr7BulkInbox.test.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_pr7bulkinbox_test", + "target": "apps_extension_chromium_src_beap_messages_tests_pr7bulkinbox_test_makeartefact", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr7BulkInbox.test.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_pr7bulkinbox_test", + "target": "apps_extension_chromium_src_beap_messages_tests_pr7bulkinbox_test_makehandshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr7BulkInbox.test.ts", + "source_location": "L294", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_pr7bulkinbox_test", + "target": "apps_extension_chromium_src_beap_messages_tests_pr7bulkinbox_test_simulatebatchwithonefail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr7BulkInbox.test.ts", + "source_location": "L333", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_pr7bulkinbox_test", + "target": "apps_extension_chromium_src_beap_messages_tests_pr7bulkinbox_test_simulatesendsingleitemguardfail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr7BulkInbox.test.ts", + "source_location": "L285", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_pr7bulkinbox_test", + "target": "apps_extension_chromium_src_beap_messages_tests_pr7bulkinbox_test_simulatesendsingleitemhandshakefetchfail", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr7BulkInbox.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_pr7bulkinbox_test", + "target": "apps_extension_chromium_src_beap_messages_validationstate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr7BulkInbox.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_pr7bulkinbox_test", + "target": "apps_extension_chromium_src_beap_messages_validationstate_getvalidationstate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr7BulkInbox.test.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_pr7bulkinbox_test", + "target": "apps_extension_chromium_src_handshake_rpctypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr7BulkInbox.test.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_pr7bulkinbox_test", + "target": "apps_extension_chromium_src_handshake_rpctypes_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr7BulkInbox.test.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_pr7bulkinbox_test", + "target": "apps_extension_chromium_src_handshake_rpctypes_handshakerecordtorecipient", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr7BulkInbox.test.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_pr7bulkinbox_test", + "target": "apps_extension_chromium_src_handshake_rpctypes_hashandshakekeymaterial", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr7BulkInbox.test.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_pr7bulkinbox_test", + "target": "apps_extension_chromium_src_handshake_rpctypes_selectedhandshakerecipient", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr7BulkInbox.test.ts", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_pr7bulkinbox_test_computehassessionindicator", + "target": "apps_extension_chromium_src_beap_messages_validationstate_getvalidationstate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr7BulkInbox.test.ts", + "source_location": "L298", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_pr7bulkinbox_test_simulatebatchwithonefail", + "target": "apps_extension_chromium_src_beap_messages_tests_pr7bulkinbox_test_simulatesendsingleitemhandshakefetchfail", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/pr7BulkInbox.test.ts", + "source_location": "L336", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_pr7bulkinbox_test_simulatesendsingleitemguardfail", + "target": "apps_extension_chromium_src_handshake_rpctypes_hashandshakekeymaterial" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/sessionImportPayloadResolver.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_sessionimportpayloadresolver_test", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/sessionImportPayloadResolver.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_sessionimportpayloadresolver_test", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapattachment", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/sessionImportPayloadResolver.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_sessionimportpayloadresolver_test", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/sessionImportPayloadResolver.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_sessionimportpayloadresolver_test", + "target": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/sessionImportPayloadResolver.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_sessionimportpayloadresolver_test", + "target": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver_beapsessionimportactionsenabled", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/sessionImportPayloadResolver.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_sessionimportpayloadresolver_test", + "target": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver_resolvebeapsessionimportpayload", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/sessionImportPayloadResolver.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_sessionimportpayloadresolver_test", + "target": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver_sessionjsonhasimportablesubstance", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/sessionImportPayloadResolver.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_sessionimportpayloadresolver_test", + "target": "apps_extension_chromium_src_beap_messages_tests_sessionimportpayloadresolver_test_baseattachment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/sessionImportPayloadResolver.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_sessionimportpayloadresolver_test", + "target": "apps_extension_chromium_src_beap_messages_tests_sessionimportpayloadresolver_test_basemessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/__tests__/sessionImportPayloadResolver.test.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_tests_sessionimportpayloadresolver_test", + "target": "apps_extension_chromium_src_beap_messages_tests_sessionimportpayloadresolver_test_minimalv1export", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/attachmentPickerLimits.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_attachmentpickerlimits", + "target": "apps_extension_chromium_src_beap_messages_attachmentpickerlimits_formatoversizeattachmentrejection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/attachmentPickerLimits.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_attachmentpickerlimits", + "target": "apps_extension_chromium_src_beap_messages_attachmentpickerlimits_max_beap_draft_attachment_bytes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_beap_messages_attachmentpickerlimits", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_beap_messages_attachmentpickerlimits", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_beap_messages_attachmentpickerlimits_max_beap_draft_attachment_bytes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_beap_messages_attachmentpickerlimits_max_beap_draft_attachment_bytes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_beap_messages_attachmentpickerlimits_formatoversizeattachmentrejection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L1531", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat_popupchatapp", + "target": "apps_extension_chromium_src_beap_messages_attachmentpickerlimits_formatoversizeattachmentrejection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_beap_messages_attachmentpickerlimits_formatoversizeattachmentrejection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L7102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_beap_messages_attachmentpickerlimits_formatoversizeattachmentrejection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/beapInboxTypes.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_beapinboxtypes", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_aiclassification", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/beapInboxTypes.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_beapinboxtypes", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapattachment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/beapInboxTypes.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_beapinboxtypes", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapencoding", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/beapInboxTypes.ts", + "source_location": "L160", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_beapinboxtypes", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/beapInboxTypes.ts", + "source_location": "L348", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_beapinboxtypes", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_bulkviewpage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/beapInboxTypes.ts", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_beapinboxtypes", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_deletionschedule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/beapInboxTypes.ts", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_beapinboxtypes", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_draftreply", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/beapInboxTypes.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_beapinboxtypes", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_replymode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/beapInboxTypes.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_beapinboxtypes", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_trustlevel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/beapInboxTypes.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_beapinboxtypes", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_urgencylevel", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/beapInboxTypes.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_beapinboxtypes", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/beapInboxTypes.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_beapinboxtypes", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_processingeventoffer", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapAttachmentReader.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapattachmentreader", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxSidebar.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapMessageAi.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebeapmessageai", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapSessionImportResolution.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebeapsessionimportresolution", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkClassification.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkSend.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulksend", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useInboxKeyboardNav.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_useinboxkeyboardnav", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useViewOriginalArtefact.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usevieworiginalartefact", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/inboxRowToBeapMessage.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_inboxrowtobeapmessage", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/integrationDefaultAutomationMetadata.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sanitisedPackageToBeapMessage.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sanitisedpackagetobeapmessage", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapReplyAiProvider.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapreplyaiprovider", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sessionImportPayloadResolver.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapinboxstore", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeDetailsPanel.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakedetailspanel", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_trustlevel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxSidebar.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_trustlevel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_trustlevel", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_trustlevel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sanitisedPackageToBeapMessage.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sanitisedpackagetobeapmessage", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_trustlevel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_urgencylevel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxSidebar.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_urgencylevel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/inboxRowToBeapMessage.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_inboxrowtobeapmessage", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_urgencylevel", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_urgencylevel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_urgencylevel", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L139", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_aiclassificationresponse", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_urgencylevel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapReplyAiProvider.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapreplyaiprovider", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_urgencylevel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapinboxstore", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_urgencylevel", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L186", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_beapinboxstate", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_urgencylevel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_replymode", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_replycomposerstate", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_replymode", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L139", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_sendresult", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_replymode", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_replymode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sanitisedPackageToBeapMessage.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sanitisedpackagetobeapmessage", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapencoding", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapAttachmentReader.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapattachmentreader", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapattachment", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapAttachmentReader.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapattachmentreader_beapattachmentreaderprops", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapattachment", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapattachment", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L596", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_messagepaircellprops", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapattachment", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapattachment", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L1130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_attachmentrowprops", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapattachment", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L228", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_messagecontentpanelprops", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapattachment", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useViewOriginalArtefact.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usevieworiginalartefact", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapattachment", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useViewOriginalArtefact.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usevieworiginalartefact_usevieworiginalartefactresult", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapattachment", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/inboxRowToBeapMessage.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_inboxrowtobeapmessage", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapattachment", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapattachment", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sanitisedPackageToBeapMessage.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sanitisedpackagetobeapmessage", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapattachment", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sessionImportPayloadResolver.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapattachment", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/inboxRowToBeapMessage.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_inboxrowtobeapmessage", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_aiclassification", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_aiclassification", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_aiclassification", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_classificationresult", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_aiclassification", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapinboxstore", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_aiclassification", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L176", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_beapinboxstate", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_aiclassification", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkSend.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulksend", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_draftreply", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_draftreply", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_draftreply", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapinboxstore", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_draftreply", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L196", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_beapinboxstate", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_draftreply", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_deletionschedule", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/beapInboxTypes.ts", + "source_location": "L231", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapmessage", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_processingeventoffer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapmessage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L582", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_messagepaircellprops", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxSidebar.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapmessage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxSidebar.tsx", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar_beapinboxlistitemprops", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapmessage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxSidebar.tsx", + "source_location": "L586", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar_groupedlistprops", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapmessage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L218", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_messagecontentpanelprops", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapMessageAi.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebeapmessageai", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapmessage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapMessageAi.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebeapmessageai_usebeapmessageaireturn", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapSessionImportResolution.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebeapsessionimportresolution", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkClassification.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapmessage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkClassification.ts", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification_usebulkclassificationreturn", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkSend.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulksend", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapmessage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkSend.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulksend_usebulksendreturn", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useInboxKeyboardNav.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_useinboxkeyboardnav", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapmessage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useInboxKeyboardNav.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_useinboxkeyboardnav_useinboxkeyboardnavoptions", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/inboxRowToBeapMessage.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_inboxrowtobeapmessage", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapmessage", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/integrationDefaultAutomationMetadata.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sanitisedPackageToBeapMessage.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sanitisedpackagetobeapmessage", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapmessage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_classificationcontext", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sessionImportPayloadResolver.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapinboxstore", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapmessage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_beapinboxstate", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeDetailsPanel.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakedetailspanel", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapmessage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeDetailsPanel.tsx", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakedetailspanel_handshakemessagerowprops", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_beapmessage", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_bulkviewpage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapinboxstore", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_bulkviewpage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_beapinboxstate", + "target": "apps_extension_chromium_src_beap_messages_beapinboxtypes_bulkviewpage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/beapSessionBridgeGuards.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_beapsessionbridgeguards", + "target": "apps_extension_chromium_src_beap_messages_beapsessionbridgeguards_assertbeaptabimportpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/beapSessionBridgeGuards.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_beapsessionbridgeguards", + "target": "apps_extension_chromium_src_beap_messages_beapsessionbridgeguards_beapimportpayloadguardresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/beapSessionBridgeGuards.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_beapsessionbridgeguards", + "target": "apps_extension_chromium_src_beap_messages_beapsessionbridgeguards_narrowbeapfallbackmodel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/beapSessionBridgeGuards.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_beapsessionbridgeguards", + "target": "apps_extension_chromium_src_beap_messages_beapsessionbridgeguards_narrowbeapimportpayloadforbridge", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/beapSessionBridgeGuards.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_beapsessionbridgeguards", + "target": "apps_extension_chromium_src_services_sessionimportartefactunwrap", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/beapSessionBridgeGuards.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_beapsessionbridgeguards", + "target": "apps_extension_chromium_src_services_sessionimportartefactunwrap_unwrapsessionimportpayloadfortab", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/beapSessionEditBridge.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_beapsessioneditbridge", + "target": "apps_extension_chromium_src_beap_messages_beapsessionbridgeguards", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/beapSessionRunBridge.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge", + "target": "apps_extension_chromium_src_beap_messages_beapsessionbridgeguards", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_beapsessionbridgeguards", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_beap_messages_beapsessionbridgeguards", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_beapsessionbridgeguards_beapimportpayloadguardresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/beapSessionBridgeGuards.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_beapsessionbridgeguards_assertbeaptabimportpayload", + "target": "apps_extension_chromium_src_beap_messages_beapsessionbridgeguards_narrowbeapimportpayloadforbridge", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/beapSessionBridgeGuards.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_beapsessionbridgeguards_narrowbeapimportpayloadforbridge", + "target": "apps_extension_chromium_src_services_sessionimportartefactunwrap_unwrapsessionimportpayloadfortab" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/beapSessionEditBridge.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_beapsessioneditbridge", + "target": "apps_extension_chromium_src_beap_messages_beapsessionbridgeguards_narrowbeapimportpayloadforbridge", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/beapSessionEditBridge.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_beapsessioneditbridge_requestbeapsessioneditinactivetab", + "target": "apps_extension_chromium_src_beap_messages_beapsessionbridgeguards_narrowbeapimportpayloadforbridge" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/beapSessionRunBridge.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge", + "target": "apps_extension_chromium_src_beap_messages_beapsessionbridgeguards_narrowbeapimportpayloadforbridge", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/beapSessionRunBridge.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge_requestbeaprunautomationinactivetab", + "target": "apps_extension_chromium_src_beap_messages_beapsessionbridgeguards_narrowbeapimportpayloadforbridge" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_beapsessionbridgeguards_narrowbeapimportpayloadforbridge", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/beapSessionRunBridge.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge", + "target": "apps_extension_chromium_src_beap_messages_beapsessionbridgeguards_narrowbeapfallbackmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/beapSessionRunBridge.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge_requestbeaprunautomationinactivetab", + "target": "apps_extension_chromium_src_beap_messages_beapsessionbridgeguards_narrowbeapfallbackmodel" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_beapsessionbridgeguards_narrowbeapfallbackmodel", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_beapsessionbridgeguards_assertbeaptabimportpayload", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_beap_messages_beapsessionbridgeguards_assertbeaptabimportpayload", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L44768", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script_initializeextension", + "target": "apps_extension_chromium_src_beap_messages_beapsessionbridgeguards_assertbeaptabimportpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/beapSessionEditBridge.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_beapsessioneditbridge", + "target": "apps_extension_chromium_src_beap_messages_beapsessioneditbridge_beap_edit_session_import_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/beapSessionEditBridge.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_beapsessioneditbridge", + "target": "apps_extension_chromium_src_beap_messages_beapsessioneditbridge_beapsessioneditimportresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/beapSessionEditBridge.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_beapsessioneditbridge", + "target": "apps_extension_chromium_src_beap_messages_beapsessioneditbridge_requestbeapsessioneditinactivetab", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_messages_beapsessioneditbridge", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_beapsessioneditbridge", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_beap_messages_beapsessioneditbridge", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_beapsessioneditbridge_beap_edit_session_import_type", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_beap_messages_beapsessioneditbridge_beap_edit_session_import_type", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_beapsessioneditbridge_beapsessioneditimportresponse", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_messages_beapsessioneditbridge_requestbeapsessioneditinactivetab", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L353", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_messagecontentpanel", + "target": "apps_extension_chromium_src_beap_messages_beapsessioneditbridge_requestbeapsessioneditinactivetab", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_beapsessioneditbridge_requestbeapsessioneditinactivetab", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/beapSessionRunBridge.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge", + "target": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge_beap_inbox_present_grid_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/beapSessionRunBridge.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge", + "target": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge_beap_run_automation_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/beapSessionRunBridge.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge", + "target": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge_beapinboxpresentgridresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/beapSessionRunBridge.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge", + "target": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge_beaprunautomationfailure", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/beapSessionRunBridge.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge", + "target": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge_beaprunautomationresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/beapSessionRunBridge.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge", + "target": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge_beaprunautomationsuccess", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/beapSessionRunBridge.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge", + "target": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge_readbeaprunfallbackllmmodel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/beapSessionRunBridge.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge", + "target": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge_requestbeapinboxpresentgrid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/beapSessionRunBridge.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge", + "target": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge_requestbeaprunautomationinactivetab", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation", + "target": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge_beap_run_automation_type", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge_beap_run_automation_type", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge_requestbeapinboxpresentgrid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L397", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_messagecontentpanel", + "target": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge_requestbeapinboxpresentgrid", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge_beaprunautomationfailure", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge_beaprunautomationsuccess", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge_beaprunautomationresponse", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/beapSessionRunBridge.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge_requestbeaprunautomationinactivetab", + "target": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge_readbeaprunfallbackllmmodel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge_readbeaprunfallbackllmmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L398", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_messagecontentpanel", + "target": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge_readbeaprunfallbackllmmodel", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge_readbeaprunfallbackllmmodel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation", + "target": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge_readbeaprunfallbackllmmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation_resolvemodeallocatedsessionrun", + "target": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge_readbeaprunfallbackllmmodel" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_beapsessionrunbridge_requestbeaprunautomationinactivetab", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/ActiveHandshakesView.tsx", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_activehandshakesview", + "target": "apps_extension_chromium_src_beap_messages_components_activehandshakesview_activehandshakesview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/ActiveHandshakesView.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_activehandshakesview", + "target": "apps_extension_chromium_src_beap_messages_components_activehandshakesview_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/ActiveHandshakesView.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_activehandshakesview", + "target": "apps_extension_chromium_src_beap_messages_components_activehandshakesview_statuspill", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/ActiveHandshakesView.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_activehandshakesview", + "target": "apps_extension_chromium_src_handshake_handshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/ActiveHandshakesView.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_activehandshakesview", + "target": "apps_extension_chromium_src_handshake_handshakerpc_listhandshakes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/ActiveHandshakesView.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_activehandshakesview", + "target": "apps_extension_chromium_src_handshake_handshakerpc_revokehandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/ActiveHandshakesView.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_activehandshakesview", + "target": "apps_extension_chromium_src_handshake_rpctypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/ActiveHandshakesView.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_activehandshakesview", + "target": "apps_extension_chromium_src_handshake_rpctypes_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/ActiveHandshakesView.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_activehandshakesview", + "target": "apps_extension_chromium_src_handshake_rpctypes_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/components/ActiveHandshakesView.tsx", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_activehandshakesview_activehandshakesview", + "target": "apps_extension_chromium_src_handshake_handshakerpc_listhandshakes" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/components/ActiveHandshakesView.tsx", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_activehandshakesview_activehandshakesview", + "target": "apps_extension_chromium_src_handshake_handshakerpc_revokehandshake" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/AiEntryContent.tsx", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_aientrycontent", + "target": "apps_extension_chromium_src_beap_messages_components_aientrycontent_aientrycontent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/AiEntryContent.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_aientrycontent", + "target": "apps_extension_chromium_src_beap_messages_components_aientrycontent_aientrycontentprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/AiEntryContent.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_aientrycontent", + "target": "apps_extension_chromium_src_beap_messages_components_aientrycontent_renderchartastable", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/AiEntryContent.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_aientrycontent", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebeapmessageai", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/AiEntryContent.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_aientrycontent", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebeapmessageai_aioutputentry", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "target": "apps_extension_chromium_src_beap_messages_components_aientrycontent", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_messages_components_aientrycontent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/AiEntryContent.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_aientrycontent_aientrycontentprops", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebeapmessageai_aioutputentry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/AiEntryContent.tsx", + "source_location": "L209", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_aientrycontent_aientrycontent", + "target": "apps_extension_chromium_src_beap_messages_components_aientrycontent_renderchartastable", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "target": "apps_extension_chromium_src_beap_messages_components_aientrycontent_aientrycontent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_messages_components_aientrycontent_aientrycontent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapAttachmentReader.tsx", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapattachmentreader", + "target": "apps_extension_chromium_src_beap_messages_components_beapattachmentreader_beapattachmentreader", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapAttachmentReader.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapattachmentreader", + "target": "apps_extension_chromium_src_beap_messages_components_beapattachmentreader_beapattachmentreaderprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapAttachmentReader.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapattachmentreader", + "target": "apps_extension_chromium_src_beap_messages_components_beapattachmentreader_formatbytes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "target": "apps_extension_chromium_src_beap_messages_components_beapattachmentreader", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/index.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_index", + "target": "apps_extension_chromium_src_beap_messages_components_beapattachmentreader", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapAttachmentReader.tsx", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapattachmentreader_beapattachmentreader", + "target": "apps_extension_chromium_src_beap_messages_components_beapattachmentreader_formatbytes", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/index.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_index", + "target": "apps_extension_chromium_src_beap_messages_components_beapattachmentreader_beapattachmentreaderprops", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "target": "apps_extension_chromium_src_beap_messages_components_beapattachmentreader_beapattachmentreader", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/index.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_index", + "target": "apps_extension_chromium_src_beap_messages_components_beapattachmentreader_beapattachmentreader", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "target": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_aiaction", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L1115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "target": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_aientrymini", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L158", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "target": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_aireducer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L333", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "target": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_batchtoolbar", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L308", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "target": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_batchtoolbarprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L1172", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "target": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_beapbulkinbox", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "target": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_beapbulkinboxhandle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "target": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_beapbulkinboxprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L242", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "target": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_formatms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L225", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "target": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_formatrelative", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L237", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "target": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_getpreview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L600", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "target": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_messagepaircell", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L581", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "target": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_messagepaircellprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L221", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "target": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_nextentryid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L142", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "target": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_pairaistate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L511", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "target": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_pendingdeleteoverlay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L502", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "target": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_pendingdeleteoverlayprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L252", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "target": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_toggleswitch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "target": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_trust_badge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "target": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_urgency_border", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "target": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_urgency_glow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "target": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_urgency_label", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "target": "apps_extension_chromium_src_beap_messages_components_beapreplycomposer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "target": "apps_extension_chromium_src_beap_messages_components_beapreplycomposer_beapreplycomposer", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebeapmessageai", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebeapmessageai_aioutputentry", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification_usebulkclassification", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebulksend", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebulksend_usebulksend", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "target": "apps_extension_chromium_src_beap_messages_hooks_usemediaquery", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "target": "apps_extension_chromium_src_beap_messages_hooks_usemediaquery_bulk_grid_1col", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "target": "apps_extension_chromium_src_beap_messages_hooks_usemediaquery_bulk_grid_3col", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "target": "apps_extension_chromium_src_beap_messages_hooks_usemediaquery_usemediaquery", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "target": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "target": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_usereplycomposer", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "target": "apps_extension_chromium_src_beap_messages_hooks_usevieworiginalartefact", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "target": "apps_extension_chromium_src_beap_messages_hooks_usevieworiginalartefact_usevieworiginalartefact", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_usebeapinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "target": "apps_extension_chromium_src_beap_messages_validationstate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "target": "apps_extension_chromium_src_beap_messages_validationstate_getvalidationstate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "target": "apps_extension_chromium_src_handshake_usependingp2pbeapingestion", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "target": "apps_extension_chromium_src_handshake_usependingp2pbeapingestion_usependingp2pbeapingestion", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/index.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_index", + "target": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/index.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_index", + "target": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_beapbulkinboxprops", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_beapbulkinboxprops", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_beapbulkinboxhandle", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebeapmessageai_aioutputentry", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/index.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_index", + "target": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_beapbulkinboxhandle", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_beapbulkinboxhandle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_beapbulkinboxhandle", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_pairaistate", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebeapmessageai_aioutputentry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L767", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_messagepaircell", + "target": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_formatrelative", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L645", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_messagepaircell", + "target": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_getpreview", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L549", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_pendingdeleteoverlay", + "target": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_formatms", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L622", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_messagepaircell", + "target": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_usereplycomposer", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx", + "source_location": "L630", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_messagepaircell", + "target": "apps_extension_chromium_src_beap_messages_validationstate_getvalidationstate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/index.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_index", + "target": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_beapbulkinbox", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_beapbulkinbox", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_beap_messages_components_beapbulkinbox_beapbulkinbox", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapDraftComposer.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapdraftcomposer", + "target": "apps_extension_chromium_src_beap_messages_components_beapdraftcomposer_beapdraftcomposer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapDraftComposer.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapdraftcomposer", + "target": "apps_extension_chromium_src_beap_messages_components_beapdraftcomposer_beapdraftcomposerprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapDraftComposer.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapdraftcomposer", + "target": "apps_extension_chromium_src_beap_messages_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapDraftComposer.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapdraftcomposer", + "target": "apps_extension_chromium_src_beap_messages_types_beapattachment", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapDraftComposer.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapdraftcomposer", + "target": "apps_extension_chromium_src_beap_messages_types_beapmessageui", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapDraftComposer.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapdraftcomposer", + "target": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapDraftComposer.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapdraftcomposer", + "target": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_usebeapmessagesstore", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/index.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_index", + "target": "apps_extension_chromium_src_beap_messages_components_beapdraftcomposer", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapDraftComposer.tsx", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapdraftcomposer_beapdraftcomposer", + "target": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_usebeapmessagesstore" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/index.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_index", + "target": "apps_extension_chromium_src_beap_messages_components_beapdraftcomposer_beapdraftcomposer", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_components_beapdraftcomposer_beapdraftcomposer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxSidebar.tsx", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar", + "target": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar_beapinboxlistitem", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxSidebar.tsx", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar", + "target": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar_beapinboxlistitemprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxSidebar.tsx", + "source_location": "L359", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar", + "target": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar_beapinboxsidebar", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxSidebar.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar", + "target": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar_beapinboxsidebarprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxSidebar.tsx", + "source_location": "L683", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar", + "target": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar_emptystate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxSidebar.tsx", + "source_location": "L674", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar", + "target": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar_emptystateprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxSidebar.tsx", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar", + "target": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar_filter_labels", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxSidebar.tsx", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar", + "target": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar_formatrelativetime", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxSidebar.tsx", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar", + "target": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar_getcontentpreview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxSidebar.tsx", + "source_location": "L585", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar", + "target": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar_groupedlistprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxSidebar.tsx", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar", + "target": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar_inboxfilter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxSidebar.tsx", + "source_location": "L596", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar", + "target": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar_messagegroupedlist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxSidebar.tsx", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar", + "target": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar_trust_badge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxSidebar.tsx", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar", + "target": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar_urgency_dot", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxSidebar.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxSidebar.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_usebeapinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxView.tsx", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapinboxview", + "target": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/index.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_index", + "target": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxSidebar.tsx", + "source_location": "L245", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar_beapinboxlistitem", + "target": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar_formatrelativetime", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxSidebar.tsx", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar_beapinboxlistitem", + "target": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar_getcontentpreview", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxSidebar.tsx", + "source_location": "L378", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar_beapinboxsidebar", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_usebeapinboxstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxView.tsx", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapinboxview", + "target": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar_beapinboxsidebar", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/index.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_index", + "target": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar_beapinboxsidebar", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_components_beapinboxsidebar_beapinboxsidebar", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxView.tsx", + "source_location": "L194", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapinboxview", + "target": "apps_extension_chromium_src_beap_messages_components_beapinboxview_beapinboxview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxView.tsx", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapinboxview", + "target": "apps_extension_chromium_src_beap_messages_components_beapinboxview_beapinboxviewhandle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxView.tsx", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapinboxview", + "target": "apps_extension_chromium_src_beap_messages_components_beapinboxview_beapinboxviewprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxView.tsx", + "source_location": "L165", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapinboxview", + "target": "apps_extension_chromium_src_beap_messages_components_beapinboxview_errorbanner", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxView.tsx", + "source_location": "L153", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapinboxview", + "target": "apps_extension_chromium_src_beap_messages_components_beapinboxview_inboxskeleton", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxView.tsx", + "source_location": "L415", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapinboxview", + "target": "apps_extension_chromium_src_beap_messages_components_beapinboxview_nomessageselected", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxView.tsx", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapinboxview", + "target": "apps_extension_chromium_src_beap_messages_components_beapinboxview_skeletonrow", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxView.tsx", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapinboxview", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxView.tsx", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapinboxview", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_beapmessagedetailpanel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxView.tsx", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapinboxview", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_beapmessagedetailpanelhandle", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxView.tsx", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapinboxview", + "target": "apps_extension_chromium_src_beap_messages_hooks_useinboxkeyboardnav", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxView.tsx", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapinboxview", + "target": "apps_extension_chromium_src_beap_messages_hooks_useinboxkeyboardnav_useinboxkeyboardnav", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxView.tsx", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapinboxview", + "target": "apps_extension_chromium_src_beap_messages_hooks_usemediaquery", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxView.tsx", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapinboxview", + "target": "apps_extension_chromium_src_beap_messages_hooks_usemediaquery_narrow_viewport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxView.tsx", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapinboxview", + "target": "apps_extension_chromium_src_beap_messages_hooks_usemediaquery_usemediaquery", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxView.tsx", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapinboxview", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxView.tsx", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapinboxview", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_usebeapinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxView.tsx", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapinboxview", + "target": "apps_extension_chromium_src_handshake_usependingp2pbeapingestion", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapInboxView.tsx", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapinboxview", + "target": "apps_extension_chromium_src_handshake_usependingp2pbeapingestion_usependingp2pbeapingestion", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/index.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_index", + "target": "apps_extension_chromium_src_beap_messages_components_beapinboxview", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_beap_messages_components_beapinboxview", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/index.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_index", + "target": "apps_extension_chromium_src_beap_messages_components_beapinboxview_beapinboxviewprops", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/index.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_index", + "target": "apps_extension_chromium_src_beap_messages_components_beapinboxview_beapinboxviewhandle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_beap_messages_components_beapinboxview_beapinboxviewhandle", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/index.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_index", + "target": "apps_extension_chromium_src_beap_messages_components_beapinboxview_beapinboxview", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_beap_messages_components_beapinboxview_beapinboxview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L1484", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_aientrycard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L1476", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_aientrycardprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L1294", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_aioutputpanel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L1287", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_aioutputpanelprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L1143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_attachmentrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L1129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_attachmentrowprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L1642", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_beapmessagedetailpanel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_beapmessagedetailpanelhandle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_beapmessagedetailpanelprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L156", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_formatbytes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_formatfulltime", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_mapbeaprunerror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L236", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_messagecontentpanel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L217", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_messagecontentpanelprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L1605", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_nomessageselected", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L171", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_resizedivider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L166", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_resizedividerprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_trust_badge", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_messages_components_beapreplycomposer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_messages_components_beapreplycomposer_beapreplycomposer", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_messages_components_protectedaccesswarningdialog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_messages_components_protectedaccesswarningdialog_protectedaccesswarningdialog", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebeapmessageai", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebeapmessageai_aioutputentry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebeapmessageai_usebeapmessageai", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_usereplycomposer", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_messages_hooks_usevieworiginalartefact", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_messages_hooks_usevieworiginalartefact_usevieworiginalartefact", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_beapintegrationdefaultautomationentryv1", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_beapintegrationidentityfrommessage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_beapintegrationstablekey", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_getbeapintegrationdefaultautomationentry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_upsertbeapintegrationdefaultautomationentry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_validatebeapintegrationidentity", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver_beapsessionimportactionsenabled", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver_resolvebeapsessionimportpayload", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_usebeapinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_messages_validationstate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "target": "apps_extension_chromium_src_beap_messages_validationstate_getvalidationstate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/index.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_index", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeDetailsPanel.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakedetailspanel", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/index.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_index", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_beapmessagedetailpanelprops", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_beapmessagedetailpanelprops", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_beapmessagedetailpanelhandle", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebeapmessageai_aioutputentry", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/index.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_index", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_beapmessagedetailpanelhandle", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_beapmessagedetailpanelhandle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeDetailsPanel.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakedetailspanel", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_beapmessagedetailpanelhandle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L413", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_messagecontentpanel", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_mapbeaprunerror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L558", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_messagecontentpanel", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_formatfulltime", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L1212", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_attachmentrow", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_formatbytes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L306", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_messagecontentpanel", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_beapintegrationidentityfrommessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L317", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_messagecontentpanel", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_beapintegrationstablekey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L332", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_messagecontentpanel", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_getbeapintegrationdefaultautomationentry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L443", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_messagecontentpanel", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_upsertbeapintegrationdefaultautomationentry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L308", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_messagecontentpanel", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_validatebeapintegrationidentity", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L288", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_messagecontentpanel", + "target": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver_beapsessionimportactionsenabled", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L287", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_messagecontentpanel", + "target": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver_resolvebeapsessionimportpayload", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L293", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_messagecontentpanel", + "target": "apps_extension_chromium_src_beap_messages_validationstate_getvalidationstate", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L1288", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_aioutputpanelprops", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebeapmessageai_aioutputentry", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx", + "source_location": "L1477", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_aientrycardprops", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebeapmessageai_aioutputentry", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/index.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_index", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_beapmessagedetailpanel", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_beapmessagedetailpanel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeDetailsPanel.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakedetailspanel", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagedetailpanel_beapmessagedetailpanel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageListView.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagelistview", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagelistview_beapmessagelistview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageListView.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagelistview", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagelistview_beapmessagelistviewprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageListView.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagelistview", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagepreview", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageListView.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagelistview", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagepreview_beapmessagepreview", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageListView.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagelistview", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagerow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageListView.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagelistview", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagerow_beapmessagerow", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageListView.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagelistview", + "target": "apps_extension_chromium_src_beap_messages_components_inboxmessagepreview", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageListView.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagelistview", + "target": "apps_extension_chromium_src_beap_messages_components_inboxmessagepreview_inboxmessagepreview", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageListView.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagelistview", + "target": "apps_extension_chromium_src_beap_messages_components_outboxmessagepreview", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageListView.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagelistview", + "target": "apps_extension_chromium_src_beap_messages_components_outboxmessagepreview_outboxmessagepreview", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageListView.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagelistview", + "target": "apps_extension_chromium_src_beap_messages_components_rejectedmessagepreview", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageListView.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagelistview", + "target": "apps_extension_chromium_src_beap_messages_components_rejectedmessagepreview_rejectedmessagepreview", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageListView.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagelistview", + "target": "apps_extension_chromium_src_beap_messages_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageListView.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagelistview", + "target": "apps_extension_chromium_src_beap_messages_types_beapfolder", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageListView.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagelistview", + "target": "apps_extension_chromium_src_beap_messages_types_beapmessageui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageListView.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagelistview", + "target": "apps_extension_chromium_src_beap_messages_types_folder_configs", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageListView.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagelistview", + "target": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageListView.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagelistview", + "target": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_usebeapmessagesstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageListView.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagelistview", + "target": "apps_extension_chromium_src_envelope_evaluation_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageListView.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagelistview", + "target": "apps_extension_chromium_src_envelope_evaluation_useverifymessage_useverifymessage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageListView.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagelistview", + "target": "apps_extension_chromium_src_ingress_components_inboximportbar_inboximportbar", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageListView.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagelistview", + "target": "apps_extension_chromium_src_ingress_index", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/index.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_index", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagelistview", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageListView.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagelistview_beapmessagelistviewprops", + "target": "apps_extension_chromium_src_beap_messages_types_beapfolder", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageListView.tsx", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagelistview_beapmessagelistview", + "target": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_usebeapmessagesstore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageListView.tsx", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagelistview_beapmessagelistview", + "target": "apps_extension_chromium_src_envelope_evaluation_useverifymessage_useverifymessage" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/index.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_index", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagelistview_beapmessagelistview", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagelistview_beapmessagelistview", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagelistview_beapmessagelistview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessagePreview.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagepreview", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagepreview_beapmessagepreview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessagePreview.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagepreview", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagepreview_beapmessagepreviewprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessagePreview.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagepreview", + "target": "apps_extension_chromium_src_beap_messages_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessagePreview.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagepreview", + "target": "apps_extension_chromium_src_beap_messages_types_beapfolder", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessagePreview.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagepreview", + "target": "apps_extension_chromium_src_beap_messages_types_beapmessageui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessagePreview.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagepreview", + "target": "apps_extension_chromium_src_beap_messages_types_delivery_method_config", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessagePreview.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagepreview", + "target": "apps_extension_chromium_src_beap_messages_types_status_config", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_index", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagepreview", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessagePreview.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagepreview_beapmessagepreviewprops", + "target": "apps_extension_chromium_src_beap_messages_types_beapfolder", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessagePreview.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagepreview_beapmessagepreviewprops", + "target": "apps_extension_chromium_src_beap_messages_types_beapmessageui", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_index", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagepreview_beapmessagepreview", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagepreview_beapmessagepreview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageRow.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagerow", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagerow_beapmessagerow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageRow.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagerow", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagerow_beapmessagerowprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageRow.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagerow", + "target": "apps_extension_chromium_src_beap_messages_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageRow.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagerow", + "target": "apps_extension_chromium_src_beap_messages_types_beapmessageui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageRow.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagerow", + "target": "apps_extension_chromium_src_beap_messages_types_delivery_method_config", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageRow.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagerow", + "target": "apps_extension_chromium_src_beap_messages_types_status_config", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/index.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_index", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagerow", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapMessageRow.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapmessagerow_beapmessagerowprops", + "target": "apps_extension_chromium_src_beap_messages_types_beapmessageui", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/index.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_index", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagerow_beapmessagerow", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_components_beapmessagerow_beapmessagerow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapReplyComposer.tsx", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapreplycomposer", + "target": "apps_extension_chromium_src_beap_messages_components_beapreplycomposer_attachmentchip", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapReplyComposer.tsx", + "source_location": "L195", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapreplycomposer", + "target": "apps_extension_chromium_src_beap_messages_components_beapreplycomposer_beapreplycomposer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapReplyComposer.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapreplycomposer", + "target": "apps_extension_chromium_src_beap_messages_components_beapreplycomposer_beapreplycomposerprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapReplyComposer.tsx", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapreplycomposer", + "target": "apps_extension_chromium_src_beap_messages_components_beapreplycomposer_modebadge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapReplyComposer.tsx", + "source_location": "L172", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapreplycomposer", + "target": "apps_extension_chromium_src_beap_messages_components_beapreplycomposer_signaturepreview", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapReplyComposer.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapreplycomposer", + "target": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapReplyComposer.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapreplycomposer", + "target": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_email_signature", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapReplyComposer.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapreplycomposer", + "target": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_replyattachment", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapReplyComposer.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapreplycomposer", + "target": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_replycomposeractions", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapReplyComposer.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapreplycomposer", + "target": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_replycomposerstate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/index.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_index", + "target": "apps_extension_chromium_src_beap_messages_components_beapreplycomposer", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapReplyComposer.tsx", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapreplycomposer_beapreplycomposerprops", + "target": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_replycomposeractions", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/BeapReplyComposer.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_beapreplycomposer_beapreplycomposerprops", + "target": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_replycomposerstate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/index.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_index", + "target": "apps_extension_chromium_src_beap_messages_components_beapreplycomposer_beapreplycomposerprops", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_components_beapreplycomposer_beapreplycomposerprops", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/index.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_index", + "target": "apps_extension_chromium_src_beap_messages_components_beapreplycomposer_beapreplycomposer", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_components_beapreplycomposer_beapreplycomposer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/DeliveryMethodPanel.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_deliverymethodpanel", + "target": "apps_extension_chromium_src_beap_messages_components_deliverymethodpanel_deliverymethod", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/DeliveryMethodPanel.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_deliverymethodpanel", + "target": "apps_extension_chromium_src_beap_messages_components_deliverymethodpanel_deliverymethodpanel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/DeliveryMethodPanel.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_deliverymethodpanel", + "target": "apps_extension_chromium_src_beap_messages_components_deliverymethodpanel_deliverymethodpanelprops", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/DeliveryMethodPanel.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_deliverymethodpanel", + "target": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect_selectedrecipient", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/DeliveryMethodPanel.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_deliverymethodpanel", + "target": "apps_extension_chromium_src_beap_messages_components_recipientmodeswitch", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/DeliveryMethodPanel.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_deliverymethodpanel", + "target": "apps_extension_chromium_src_beap_messages_components_recipientmodeswitch_recipientmode", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/index.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_index", + "target": "apps_extension_chromium_src_beap_messages_components_deliverymethodpanel", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_components_deliverymethodpanel", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/index.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_index", + "target": "apps_extension_chromium_src_beap_messages_components_deliverymethodpanel_deliverymethod", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapDraftActions.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebeapdraftactions", + "target": "apps_extension_chromium_src_beap_messages_components_deliverymethodpanel_deliverymethod", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapDraftActions.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebeapdraftactions_beapdraftactions", + "target": "apps_extension_chromium_src_beap_messages_components_deliverymethodpanel_deliverymethod", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapDraftActions.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebeapdraftactions_beapdraftstate", + "target": "apps_extension_chromium_src_beap_messages_components_deliverymethodpanel_deliverymethod", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_components_deliverymethodpanel_deliverymethod", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_components_deliverymethodpanel_deliverymethod", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L656", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beappackage", + "target": "apps_extension_chromium_src_beap_messages_components_deliverymethodpanel_deliverymethod", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L303", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beappackageconfig", + "target": "apps_extension_chromium_src_beap_messages_components_deliverymethodpanel_deliverymethod", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_beap_messages_components_deliverymethodpanel_deliverymethod", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_beap_messages_components_deliverymethodpanel_deliverymethod", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/DeliveryMethodPanel.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_deliverymethodpanel_deliverymethodpanelprops", + "target": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect_selectedrecipient", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/DeliveryMethodPanel.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_deliverymethodpanel_deliverymethodpanelprops", + "target": "apps_extension_chromium_src_beap_messages_components_recipientmodeswitch_recipientmode", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/index.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_index", + "target": "apps_extension_chromium_src_beap_messages_components_deliverymethodpanel_deliverymethodpanelprops", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/index.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_index", + "target": "apps_extension_chromium_src_beap_messages_components_deliverymethodpanel_deliverymethodpanel", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_components_deliverymethodpanel_deliverymethodpanel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_beap_messages_components_deliverymethodpanel_deliverymethodpanel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_beap_messages_components_deliverymethodpanel_deliverymethodpanel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/InboxErrorBoundary.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_inboxerrorboundary", + "target": "apps_extension_chromium_src_beap_messages_components_inboxerrorboundary_inboxerrorboundary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/InboxErrorBoundary.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_inboxerrorboundary", + "target": "apps_extension_chromium_src_beap_messages_components_inboxerrorboundary_inboxerrorboundaryprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/InboxErrorBoundary.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_inboxerrorboundary", + "target": "apps_extension_chromium_src_beap_messages_components_inboxerrorboundary_inboxerrorboundarystate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/index.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_index", + "target": "apps_extension_chromium_src_beap_messages_components_inboxerrorboundary", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeDetailsPanel.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakedetailspanel", + "target": "apps_extension_chromium_src_beap_messages_components_inboxerrorboundary", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_beap_messages_components_inboxerrorboundary", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/InboxErrorBoundary.tsx", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_inboxerrorboundary_inboxerrorboundary", + "target": "apps_extension_chromium_src_beap_messages_components_inboxerrorboundary_inboxerrorboundary_componentdidcatch", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/InboxErrorBoundary.tsx", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_inboxerrorboundary_inboxerrorboundary", + "target": "apps_extension_chromium_src_beap_messages_components_inboxerrorboundary_inboxerrorboundary_constructor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/InboxErrorBoundary.tsx", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_inboxerrorboundary_inboxerrorboundary", + "target": "apps_extension_chromium_src_beap_messages_components_inboxerrorboundary_inboxerrorboundary_getderivedstatefromerror", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/InboxErrorBoundary.tsx", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_inboxerrorboundary_inboxerrorboundary", + "target": "apps_extension_chromium_src_beap_messages_components_inboxerrorboundary_inboxerrorboundary_handleretry", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/InboxErrorBoundary.tsx", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_inboxerrorboundary_inboxerrorboundary", + "target": "apps_extension_chromium_src_beap_messages_components_inboxerrorboundary_inboxerrorboundary_handletoggledetails", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/InboxErrorBoundary.tsx", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_inboxerrorboundary_inboxerrorboundary", + "target": "apps_extension_chromium_src_beap_messages_components_inboxerrorboundary_inboxerrorboundary_render", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/index.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_index", + "target": "apps_extension_chromium_src_beap_messages_components_inboxerrorboundary_inboxerrorboundary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeDetailsPanel.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakedetailspanel", + "target": "apps_extension_chromium_src_beap_messages_components_inboxerrorboundary_inboxerrorboundary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_beap_messages_components_inboxerrorboundary_inboxerrorboundary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/InboxMessagePreview.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_inboxmessagepreview", + "target": "apps_extension_chromium_src_beap_messages_components_inboxmessagepreview_inboxmessagepreview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/InboxMessagePreview.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_inboxmessagepreview", + "target": "apps_extension_chromium_src_beap_messages_components_inboxmessagepreview_inboxmessagepreviewprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/InboxMessagePreview.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_inboxmessagepreview", + "target": "apps_extension_chromium_src_beap_messages_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/InboxMessagePreview.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_inboxmessagepreview", + "target": "apps_extension_chromium_src_beap_messages_types_beapmessageui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/InboxMessagePreview.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_inboxmessagepreview", + "target": "apps_extension_chromium_src_beap_messages_types_delivery_method_config", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/InboxMessagePreview.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_inboxmessagepreview", + "target": "apps_extension_chromium_src_beap_messages_types_status_config", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/InboxMessagePreview.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_inboxmessagepreview", + "target": "apps_extension_chromium_src_reconstruction_components_safepreviewpanel_safepreviewpanel", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/InboxMessagePreview.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_inboxmessagepreview", + "target": "apps_extension_chromium_src_reconstruction_index", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/index.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_index", + "target": "apps_extension_chromium_src_beap_messages_components_inboxmessagepreview", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/InboxMessagePreview.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_inboxmessagepreview_inboxmessagepreviewprops", + "target": "apps_extension_chromium_src_beap_messages_types_beapmessageui", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/index.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_index", + "target": "apps_extension_chromium_src_beap_messages_components_inboxmessagepreview_inboxmessagepreview", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/index.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_index", + "target": "apps_extension_chromium_src_beap_messages_components_outboxmessagepreview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/OutboxMessagePreview.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_outboxmessagepreview", + "target": "apps_extension_chromium_src_beap_messages_components_outboxmessagepreview_outboxmessagepreview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/OutboxMessagePreview.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_outboxmessagepreview", + "target": "apps_extension_chromium_src_beap_messages_components_outboxmessagepreview_outboxmessagepreviewprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/OutboxMessagePreview.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_outboxmessagepreview", + "target": "apps_extension_chromium_src_beap_messages_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/OutboxMessagePreview.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_outboxmessagepreview", + "target": "apps_extension_chromium_src_beap_messages_types_beapmessageui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/OutboxMessagePreview.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_outboxmessagepreview", + "target": "apps_extension_chromium_src_beap_messages_types_delivery_method_config", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/OutboxMessagePreview.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_outboxmessagepreview", + "target": "apps_extension_chromium_src_beap_messages_types_status_config", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/OutboxMessagePreview.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_outboxmessagepreview_outboxmessagepreviewprops", + "target": "apps_extension_chromium_src_beap_messages_types_beapmessageui", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/index.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_index", + "target": "apps_extension_chromium_src_beap_messages_components_outboxmessagepreview_outboxmessagepreview", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_components_outboxmessagepreview_outboxmessagepreview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/ProtectedAccessWarningDialog.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_protectedaccesswarningdialog", + "target": "apps_extension_chromium_src_beap_messages_components_protectedaccesswarningdialog_link_copy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/ProtectedAccessWarningDialog.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_protectedaccesswarningdialog", + "target": "apps_extension_chromium_src_beap_messages_components_protectedaccesswarningdialog_original_copy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/ProtectedAccessWarningDialog.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_protectedaccesswarningdialog", + "target": "apps_extension_chromium_src_beap_messages_components_protectedaccesswarningdialog_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/ProtectedAccessWarningDialog.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_protectedaccesswarningdialog", + "target": "apps_extension_chromium_src_beap_messages_components_protectedaccesswarningdialog_protectedaccesswarningdialog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/ProtectedAccessWarningDialog.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_protectedaccesswarningdialog", + "target": "apps_extension_chromium_src_beap_messages_components_protectedaccesswarningdialog_protecteddialogkind", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/index.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_index", + "target": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/RecipientHandshakeSelect.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect", + "target": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect_formatexpiry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/RecipientHandshakeSelect.tsx", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect", + "target": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect_formatexpiryabsolute", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/RecipientHandshakeSelect.tsx", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect", + "target": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect_recipienthandshakeselect", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/RecipientHandshakeSelect.tsx", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect", + "target": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect_recipienthandshakeselectprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/RecipientHandshakeSelect.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect", + "target": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect_selectedrecipient", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/RecipientHandshakeSelect.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect", + "target": "apps_extension_chromium_src_handshake_rpctypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/RecipientHandshakeSelect.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect", + "target": "apps_extension_chromium_src_handshake_rpctypes_handshakekeymaterialstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/RecipientHandshakeSelect.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect", + "target": "apps_extension_chromium_src_handshake_rpctypes_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/RecipientHandshakeSelect.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect", + "target": "apps_extension_chromium_src_handshake_rpctypes_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/RecipientHandshakeSelect.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect", + "target": "apps_extension_chromium_src_handshake_rpctypes_hashandshakekeymaterial", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/RecipientHandshakeSelect.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect", + "target": "apps_extension_chromium_src_handshake_rpctypes_selectedhandshakerecipient", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/RecipientHandshakeSelect.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect", + "target": "packages_shared_src_handshake_internalidentityui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/RecipientHandshakeSelect.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect", + "target": "packages_shared_src_handshake_internalidentityui_formatinternalbeaptargetsummary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/RecipientHandshakeSelect.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect", + "target": "packages_shared_src_handshake_internalidentityui_formatinternalpairingidline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/RecipientHandshakeSelect.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect", + "target": "packages_shared_src_handshake_internalidentityui_formatinternalprimaryline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/RecipientHandshakeSelect.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect", + "target": "packages_shared_src_handshake_internalidentityui_isinternalhandshake", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/RecipientModeSwitch.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_recipientmodeswitch", + "target": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/index.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_index", + "target": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect_selectedrecipient", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/RecipientModeSwitch.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_recipientmodeswitch", + "target": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect_selectedrecipient", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapDraftActions.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebeapdraftactions", + "target": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect_selectedrecipient", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapDraftActions.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebeapdraftactions_beapdraftactions", + "target": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect_selectedrecipient", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapDraftActions.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebeapdraftactions_beapdraftstate", + "target": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect_selectedrecipient", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect_selectedrecipient", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect_selectedrecipient", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L304", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beappackageconfig", + "target": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect_selectedrecipient", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect_selectedrecipient", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect_selectedrecipient", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/RecipientHandshakeSelect.tsx", + "source_location": "L283", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect_recipienthandshakeselect", + "target": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect_formatexpiry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/RecipientHandshakeSelect.tsx", + "source_location": "L284", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect_recipienthandshakeselect", + "target": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect_formatexpiryabsolute", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/index.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_index", + "target": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect_recipienthandshakeselectprops", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/RecipientHandshakeSelect.tsx", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect_recipienthandshakeselectprops", + "target": "apps_extension_chromium_src_handshake_rpctypes_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/RecipientHandshakeSelect.tsx", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect_recipienthandshakeselectprops", + "target": "apps_extension_chromium_src_handshake_rpctypes_selectedhandshakerecipient", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/index.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_index", + "target": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect_recipienthandshakeselect", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/components/RecipientHandshakeSelect.tsx", + "source_location": "L281", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect_recipienthandshakeselect", + "target": "apps_extension_chromium_src_handshake_rpctypes_handshakekeymaterialstatus" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/components/RecipientHandshakeSelect.tsx", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect_recipienthandshakeselect", + "target": "apps_extension_chromium_src_handshake_rpctypes_hashandshakekeymaterial" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/components/RecipientHandshakeSelect.tsx", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect_recipienthandshakeselect", + "target": "packages_shared_src_handshake_internalidentityui_formatinternalbeaptargetsummary" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/components/RecipientHandshakeSelect.tsx", + "source_location": "L287", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect_recipienthandshakeselect", + "target": "packages_shared_src_handshake_internalidentityui_formatinternalpairingidline" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/components/RecipientHandshakeSelect.tsx", + "source_location": "L286", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect_recipienthandshakeselect", + "target": "packages_shared_src_handshake_internalidentityui_formatinternalprimaryline" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/components/RecipientHandshakeSelect.tsx", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect_recipienthandshakeselect", + "target": "packages_shared_src_handshake_internalidentityui_isinternalhandshake" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect_recipienthandshakeselect", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect_recipienthandshakeselect", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_beap_messages_components_recipienthandshakeselect_recipienthandshakeselect", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/index.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_index", + "target": "apps_extension_chromium_src_beap_messages_components_recipientmodeswitch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/RecipientModeSwitch.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_recipientmodeswitch", + "target": "apps_extension_chromium_src_beap_messages_components_recipientmodeswitch_recipientmode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/RecipientModeSwitch.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_recipientmodeswitch", + "target": "apps_extension_chromium_src_beap_messages_components_recipientmodeswitch_recipientmodeswitch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/RecipientModeSwitch.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_recipientmodeswitch", + "target": "apps_extension_chromium_src_beap_messages_components_recipientmodeswitch_recipientmodeswitchprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_components_recipientmodeswitch", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/index.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_index", + "target": "apps_extension_chromium_src_beap_messages_components_recipientmodeswitch_recipientmode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapDraftActions.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebeapdraftactions", + "target": "apps_extension_chromium_src_beap_messages_components_recipientmodeswitch_recipientmode", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapDraftActions.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebeapdraftactions_beapdraftactions", + "target": "apps_extension_chromium_src_beap_messages_components_recipientmodeswitch_recipientmode", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapDraftActions.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebeapdraftactions_beapdraftstate", + "target": "apps_extension_chromium_src_beap_messages_components_recipientmodeswitch_recipientmode", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_components_recipientmodeswitch_recipientmode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_components_recipientmodeswitch_recipientmode", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L302", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beappackageconfig", + "target": "apps_extension_chromium_src_beap_messages_components_recipientmodeswitch_recipientmode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_beap_messages_components_recipientmodeswitch_recipientmode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_beap_messages_components_recipientmodeswitch_recipientmode", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/index.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_index", + "target": "apps_extension_chromium_src_beap_messages_components_recipientmodeswitch_recipientmodeswitchprops", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/index.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_index", + "target": "apps_extension_chromium_src_beap_messages_components_recipientmodeswitch_recipientmodeswitch", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_components_recipientmodeswitch_recipientmodeswitch", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_beap_messages_components_recipientmodeswitch_recipientmodeswitch", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_beap_messages_components_recipientmodeswitch_recipientmodeswitch", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/index.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_index", + "target": "apps_extension_chromium_src_beap_messages_components_rejectedmessagepreview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/RejectedMessagePreview.tsx", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_rejectedmessagepreview", + "target": "apps_extension_chromium_src_beap_messages_components_rejectedmessagepreview_getfailedstepdisplay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/RejectedMessagePreview.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_rejectedmessagepreview", + "target": "apps_extension_chromium_src_beap_messages_components_rejectedmessagepreview_getrejectioncodeconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/RejectedMessagePreview.tsx", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_rejectedmessagepreview", + "target": "apps_extension_chromium_src_beap_messages_components_rejectedmessagepreview_rejectedmessagepreview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/RejectedMessagePreview.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_rejectedmessagepreview", + "target": "apps_extension_chromium_src_beap_messages_components_rejectedmessagepreview_rejectedmessagepreviewprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/RejectedMessagePreview.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_rejectedmessagepreview", + "target": "apps_extension_chromium_src_beap_messages_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/RejectedMessagePreview.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_rejectedmessagepreview", + "target": "apps_extension_chromium_src_beap_messages_types_beapmessageui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/RejectedMessagePreview.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_rejectedmessagepreview", + "target": "apps_extension_chromium_src_beap_messages_types_delivery_method_config", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/RejectedMessagePreview.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_rejectedmessagepreview_rejectedmessagepreviewprops", + "target": "apps_extension_chromium_src_beap_messages_types_beapmessageui", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/RejectedMessagePreview.tsx", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_rejectedmessagepreview_rejectedmessagepreview", + "target": "apps_extension_chromium_src_beap_messages_components_rejectedmessagepreview_getrejectioncodeconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/RejectedMessagePreview.tsx", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_rejectedmessagepreview_rejectedmessagepreview", + "target": "apps_extension_chromium_src_beap_messages_components_rejectedmessagepreview_getfailedstepdisplay", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/components/index.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_components_index", + "target": "apps_extension_chromium_src_beap_messages_components_rejectedmessagepreview_rejectedmessagepreview", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapDraftActions.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebeapdraftactions", + "target": "apps_extension_chromium_src_beap_messages_components_index", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_components_index", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebeapdraftactions", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebeapdraftactions_beapdraftactions", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebeapdraftactions_beapdraftstate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebeapdraftactions_beapdraftvalidation", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebeapdraftactions_usebeapdraftactions", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebeapdraftactions_usebeapdraftactionsoptions", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/index.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebeapmessageai", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/index.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebeapmessageai_aioutputentry", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/index.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebeapmessageai_aioutputtype", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/index.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebeapmessageai_usebeapmessageai", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/index.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebeapsessionimportresolution", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/index.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebeapsessionimportresolution_usebeapsessionimportresolution", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/index.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/index.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification_messageclassificationstate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/index.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification_messageclassificationstatus", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/index.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification_usebulkclassification", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/index.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification_usebulkclassificationconfig", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/index.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification_usebulkclassificationreturn", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/index.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebulksend", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/index.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebulksend_bulksenditem", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/index.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebulksend_bulksenditemstatus", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/index.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebulksend_bulksendprogress", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/index.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebulksend_usebulksend", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/index.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebulksend_usebulksendconfig", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/index.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebulksend_usebulksendreturn", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/index.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_useinboxkeyboardnav", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/index.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_useinboxkeyboardnav_beap_focus_reply_event", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/index.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_useinboxkeyboardnav_beap_send_reply_event", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/index.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_useinboxkeyboardnav_beap_toggle_ai_event", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/index.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_useinboxkeyboardnav_beapmessageeventdetail", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/index.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_useinboxkeyboardnav_onbeapfocusreply", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/index.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_useinboxkeyboardnav_onbeapsendreply", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/index.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_useinboxkeyboardnav_onbeaptoggleai", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/index.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_useinboxkeyboardnav_useinboxkeyboardnav", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/index.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_useinboxkeyboardnav_useinboxkeyboardnavoptions", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/index.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usemediaquery", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/index.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usemediaquery_bulk_grid_1col", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/index.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usemediaquery_bulk_grid_3col", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/index.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usemediaquery_narrow_viewport", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/index.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usemediaquery_usemediaquery", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/index.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/index.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_derivereplysubject", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/index.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_email_signature", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/index.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_getresponsemode", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/index.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_replyattachment", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/index.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_replycomposeractions", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/index.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_replycomposerstate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/index.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_sendresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/index.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_usereplycomposer", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/index.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_usereplycomposerconfig", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_index", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapDraftActions.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebeapdraftactions", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebeapdraftactions_beapdraftactions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapDraftActions.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebeapdraftactions", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebeapdraftactions_beapdraftstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapDraftActions.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebeapdraftactions", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebeapdraftactions_beapdraftvalidation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapDraftActions.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebeapdraftactions", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebeapdraftactions_usebeapdraftactions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapDraftActions.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebeapdraftactions", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebeapdraftactions_usebeapdraftactionsoptions", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapDraftActions.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebeapdraftactions", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beappackageconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapDraftActions.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebeapdraftactions", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_canbuildpackage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapDraftActions.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebeapdraftactions", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_deliveryresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapDraftActions.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebeapdraftactions", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_executedeliveryaction", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapDraftActions.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebeapdraftactions", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_validatepackageconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapDraftActions.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebeapdraftactions", + "target": "apps_extension_chromium_src_beap_messages_services_index", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapDraftActions.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebeapdraftactions", + "target": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapDraftActions.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebeapdraftactions", + "target": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_usebeapmessagesstore", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebeapdraftactions_beapdraftstate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebeapdraftactions_beapdraftvalidation", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapDraftActions.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebeapdraftactions_beapdraftactions", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_deliveryresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebeapdraftactions_beapdraftactions", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapDraftActions.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebeapdraftactions_usebeapdraftactionsoptions", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_deliveryresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebeapdraftactions_usebeapdraftactionsoptions", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapDraftActions.ts", + "source_location": "L212", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebeapdraftactions_usebeapdraftactions", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_executedeliveryaction" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapDraftActions.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebeapdraftactions_usebeapdraftactions", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_validatepackageconfig" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapDraftActions.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebeapdraftactions_usebeapdraftactions", + "target": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_usebeapmessagesstore" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebeapdraftactions_usebeapdraftactions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapMessageAi.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebeapmessageai", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebeapmessageai_aioutputentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapMessageAi.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebeapmessageai", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebeapmessageai_aioutputtype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapMessageAi.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebeapmessageai", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebeapmessageai_nextid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapMessageAi.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebeapmessageai", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebeapmessageai_usebeapmessageai", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapMessageAi.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebeapmessageai", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebeapmessageai_usebeapmessageaireturn", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebeapmessageai_aioutputtype", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebeapmessageai_aioutputentry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapMessageAi.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebeapmessageai_usebeapmessageai", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebeapmessageai_nextid", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebeapmessageai_usebeapmessageai", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapSessionImportResolution.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebeapsessionimportresolution", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebeapsessionimportresolution_usebeapsessionimportresolution", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapSessionImportResolution.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebeapsessionimportresolution", + "target": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapSessionImportResolution.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebeapsessionimportresolution", + "target": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver_beapsessionimportresolution", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapSessionImportResolution.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebeapsessionimportresolution", + "target": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver_resolvebeapsessionimportpayload", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBeapSessionImportResolution.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebeapsessionimportresolution_usebeapsessionimportresolution", + "target": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver_resolvebeapsessionimportpayload" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebeapsessionimportresolution_usebeapsessionimportresolution", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkClassification.ts", + "source_location": "L156", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification_default_config", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkClassification.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification_messageclassificationstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkClassification.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification_messageclassificationstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkClassification.ts", + "source_location": "L168", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification_resolveconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkClassification.ts", + "source_location": "L202", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification_usebulkclassification", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkClassification.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification_usebulkclassificationconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkClassification.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification_usebulkclassificationreturn", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkClassification.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkClassification.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_aiprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkClassification.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_classificationengineconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkClassification.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_classificationresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkClassification.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_classifybatch", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkClassification.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_selectmessagesforautodeletion", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkClassification.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_tostoreclassificationmap", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkClassification.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkClassification.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_default_capability_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkClassification.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_receivercapabilitypolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkClassification.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkClassification.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_usebeapinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkClassification.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification_rationale_74", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification_messageclassificationstatus", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkClassification.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification_messageclassificationstate", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_classificationresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification_messageclassificationstate", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkClassification.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification_usebulkclassificationconfig", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_aiprovider", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkClassification.ts", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification_usebulkclassificationconfig", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_classificationengineconfig", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkClassification.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification_usebulkclassificationconfig", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_receivercapabilitypolicy", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification_usebulkclassificationconfig", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkClassification.ts", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification_usebulkclassificationreturn", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_classificationresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification_usebulkclassificationreturn", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkClassification.ts", + "source_location": "L205", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification_usebulkclassification", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification_resolveconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkClassification.ts", + "source_location": "L304", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification_usebulkclassification", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_classifybatch" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkClassification.ts", + "source_location": "L310", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification_usebulkclassification", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_selectmessagesforautodeletion" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkClassification.ts", + "source_location": "L208", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification_usebulkclassification", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_usebeapinboxstore" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebulkclassification_usebulkclassification", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkSend.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulksend", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebulksend_bulksenditem", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkSend.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulksend", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebulksend_bulksenditemstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkSend.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulksend", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebulksend_bulksendprogress", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkSend.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulksend", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebulksend_usebulksend", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkSend.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulksend", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebulksend_usebulksendconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkSend.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulksend", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebulksend_usebulksendreturn", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkSend.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulksend", + "target": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkSend.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulksend", + "target": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_derivereplysubject", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkSend.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulksend", + "target": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_email_signature", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkSend.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulksend", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beappackageconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkSend.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulksend", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildpackage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkSend.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulksend", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_executeemailaction", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkSend.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulksend", + "target": "apps_extension_chromium_src_beap_messages_services_index", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkSend.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulksend", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkSend.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulksend", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_usebeapinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkSend.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulksend", + "target": "apps_extension_chromium_src_handshake_handshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkSend.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulksend", + "target": "apps_extension_chromium_src_handshake_handshakerpc_gethandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkSend.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulksend", + "target": "apps_extension_chromium_src_handshake_rpctypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkSend.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulksend", + "target": "apps_extension_chromium_src_handshake_rpctypes_handshakerecordtorecipient", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkSend.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulksend", + "target": "apps_extension_chromium_src_handshake_rpctypes_hashandshakekeymaterial", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebulksend_bulksenditemstatus", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebulksend_bulksenditem", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebulksend_bulksendprogress", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkSend.ts", + "source_location": "L307", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulksend_usebulksend", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebulksend_usebulksendconfig" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebulksend_usebulksendconfig", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebulksend_usebulksendreturn", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useBulkSend.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usebulksend_usebulksend", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_usebeapinboxstore" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usebulksend_usebulksend", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useInboxKeyboardNav.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_useinboxkeyboardnav", + "target": "apps_extension_chromium_src_beap_messages_hooks_useinboxkeyboardnav_beap_focus_reply_event", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useInboxKeyboardNav.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_useinboxkeyboardnav", + "target": "apps_extension_chromium_src_beap_messages_hooks_useinboxkeyboardnav_beap_send_reply_event", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useInboxKeyboardNav.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_useinboxkeyboardnav", + "target": "apps_extension_chromium_src_beap_messages_hooks_useinboxkeyboardnav_beap_toggle_ai_event", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useInboxKeyboardNav.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_useinboxkeyboardnav", + "target": "apps_extension_chromium_src_beap_messages_hooks_useinboxkeyboardnav_beapmessageeventdetail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useInboxKeyboardNav.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_useinboxkeyboardnav", + "target": "apps_extension_chromium_src_beap_messages_hooks_useinboxkeyboardnav_dispatchbeapevent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useInboxKeyboardNav.ts", + "source_location": "L198", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_useinboxkeyboardnav", + "target": "apps_extension_chromium_src_beap_messages_hooks_useinboxkeyboardnav_onbeapfocusreply", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useInboxKeyboardNav.ts", + "source_location": "L216", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_useinboxkeyboardnav", + "target": "apps_extension_chromium_src_beap_messages_hooks_useinboxkeyboardnav_onbeapsendreply", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useInboxKeyboardNav.ts", + "source_location": "L207", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_useinboxkeyboardnav", + "target": "apps_extension_chromium_src_beap_messages_hooks_useinboxkeyboardnav_onbeaptoggleai", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useInboxKeyboardNav.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_useinboxkeyboardnav", + "target": "apps_extension_chromium_src_beap_messages_hooks_useinboxkeyboardnav_useinboxkeyboardnav", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useInboxKeyboardNav.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_useinboxkeyboardnav", + "target": "apps_extension_chromium_src_beap_messages_hooks_useinboxkeyboardnav_useinboxkeyboardnavoptions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useInboxKeyboardNav.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_useinboxkeyboardnav", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useInboxKeyboardNav.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_useinboxkeyboardnav", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_usebeapinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useInboxKeyboardNav.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_useinboxkeyboardnav_useinboxkeyboardnav", + "target": "apps_extension_chromium_src_beap_messages_hooks_useinboxkeyboardnav_dispatchbeapevent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useInboxKeyboardNav.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_useinboxkeyboardnav_useinboxkeyboardnav", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_usebeapinboxstore" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useMediaQuery.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usemediaquery", + "target": "apps_extension_chromium_src_beap_messages_hooks_usemediaquery_bulk_grid_1col", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useMediaQuery.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usemediaquery", + "target": "apps_extension_chromium_src_beap_messages_hooks_usemediaquery_bulk_grid_3col", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useMediaQuery.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usemediaquery", + "target": "apps_extension_chromium_src_beap_messages_hooks_usemediaquery_narrow_viewport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useMediaQuery.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usemediaquery", + "target": "apps_extension_chromium_src_beap_messages_hooks_usemediaquery_usemediaquery", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L236", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer", + "target": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_buildsyntheticcapsuleforgate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer", + "target": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_derivereplysubject", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer", + "target": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_email_signature", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer", + "target": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_getresponsemode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L259", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer", + "target": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_nextattachmentid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer", + "target": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_replyattachment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L194", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer", + "target": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_replycomposeractions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer", + "target": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_replycomposerstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer", + "target": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_replysessionoption", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer", + "target": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_sendresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L276", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer", + "target": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_usereplycomposer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer", + "target": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_usereplycomposerconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_aiprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_classificationengineconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_projectcontent", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptedcapsulepayload", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beappackageconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildpackage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_deliveryresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_executeemailaction", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer", + "target": "apps_extension_chromium_src_beap_messages_services_index", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_default_capability_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_gatecontext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_receivercapabilitypolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_runstage61gate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_usebeapinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer", + "target": "apps_extension_chromium_src_handshake_handshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer", + "target": "apps_extension_chromium_src_handshake_handshakerpc_gethandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer", + "target": "apps_extension_chromium_src_handshake_rpctypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer", + "target": "apps_extension_chromium_src_handshake_rpctypes_handshakerecordtorecipient", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer", + "target": "apps_extension_chromium_src_handshake_rpctypes_hashandshakekeymaterial", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_email_signature", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L468", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_usereplycomposer", + "target": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_derivereplysubject", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_derivereplysubject", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L282", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_usereplycomposer", + "target": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_getresponsemode", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_getresponsemode", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_replyattachment", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_replycomposerstate", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L142", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_sendresult", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_deliveryresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_sendresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L512", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_usereplycomposer", + "target": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_usereplycomposerconfig" + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L158", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_usereplycomposerconfig", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_aiprovider", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_usereplycomposerconfig", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_gatecontext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L152", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_usereplycomposerconfig", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_receivercapabilitypolicy", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_usereplycomposerconfig", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_replycomposeractions", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L597", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_usereplycomposer", + "target": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_buildsyntheticcapsuleforgate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L359", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_usereplycomposer", + "target": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_nextattachmentid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L617", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_usereplycomposer", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_projectcontent" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L479", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_usereplycomposer", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildpackage" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L490", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_usereplycomposer", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_executeemailaction" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L598", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_usereplycomposer", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_runstage61gate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L280", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_usereplycomposer", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_usebeapinboxstore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L454", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_usereplycomposer", + "target": "apps_extension_chromium_src_handshake_handshakerpc_gethandshake" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L460", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_usereplycomposer", + "target": "apps_extension_chromium_src_handshake_rpctypes_handshakerecordtorecipient" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts", + "source_location": "L455", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_usereplycomposer", + "target": "apps_extension_chromium_src_handshake_rpctypes_hashandshakekeymaterial" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_hooks_usereplycomposer_usereplycomposer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useViewOriginalArtefact.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usevieworiginalartefact", + "target": "apps_extension_chromium_src_beap_messages_hooks_usevieworiginalartefact_triggerdownload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useViewOriginalArtefact.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usevieworiginalartefact", + "target": "apps_extension_chromium_src_beap_messages_hooks_usevieworiginalartefact_usevieworiginalartefact", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useViewOriginalArtefact.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usevieworiginalartefact", + "target": "apps_extension_chromium_src_beap_messages_hooks_usevieworiginalartefact_usevieworiginalartefactresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useViewOriginalArtefact.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usevieworiginalartefact", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_getoriginalartefact", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useViewOriginalArtefact.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usevieworiginalartefact", + "target": "apps_extension_chromium_src_beap_messages_services_index", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useViewOriginalArtefact.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usevieworiginalartefact", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useViewOriginalArtefact.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usevieworiginalartefact", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_usebeapinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useViewOriginalArtefact.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usevieworiginalartefact_usevieworiginalartefact", + "target": "apps_extension_chromium_src_beap_messages_hooks_usevieworiginalartefact_triggerdownload", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useViewOriginalArtefact.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usevieworiginalartefact_usevieworiginalartefact", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_getoriginalartefact" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/hooks/useViewOriginalArtefact.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_hooks_usevieworiginalartefact_usevieworiginalartefact", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_usebeapinboxstore" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/inboxRowToBeapMessage.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_inboxrowtobeapmessage", + "target": "apps_extension_chromium_src_beap_messages_inboxrowtobeapmessage_default_processing_events_local", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/inboxRowToBeapMessage.ts", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_inboxrowtobeapmessage", + "target": "apps_extension_chromium_src_beap_messages_inboxrowtobeapmessage_extractcanonicalcontent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/inboxRowToBeapMessage.ts", + "source_location": "L137", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_inboxrowtobeapmessage", + "target": "apps_extension_chromium_src_beap_messages_inboxrowtobeapmessage_inboxrowtobeapmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/inboxRowToBeapMessage.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_inboxrowtobeapmessage", + "target": "apps_extension_chromium_src_beap_messages_inboxrowtobeapmessage_mapattachmentsfromrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/inboxRowToBeapMessage.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_inboxrowtobeapmessage", + "target": "apps_extension_chromium_src_beap_messages_inboxrowtobeapmessage_parseaiclassification", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/inboxRowToBeapMessage.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_inboxrowtobeapmessage", + "target": "apps_extension_chromium_src_beap_messages_inboxrowtobeapmessage_scoretourgency", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/inboxRowToBeapMessage.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_inboxrowtobeapmessage", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/inboxRowToBeapMessage.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_inboxrowtobeapmessage", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_processingeventoffer", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/inboxRowToBeapMessage.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_inboxrowtobeapmessage", + "target": "apps_extension_chromium_src_handshake_handshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/inboxRowToBeapMessage.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_inboxrowtobeapmessage", + "target": "apps_extension_chromium_src_handshake_handshakerpc_beapinboxrow", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapinboxstore", + "target": "apps_extension_chromium_src_beap_messages_inboxrowtobeapmessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/inboxRowToBeapMessage.ts", + "source_location": "L142", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_inboxrowtobeapmessage_inboxrowtobeapmessage", + "target": "apps_extension_chromium_src_beap_messages_inboxrowtobeapmessage_scoretourgency", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/inboxRowToBeapMessage.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_inboxrowtobeapmessage_parseaiclassification", + "target": "apps_extension_chromium_src_beap_messages_inboxrowtobeapmessage_scoretourgency", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/inboxRowToBeapMessage.ts", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_inboxrowtobeapmessage_inboxrowtobeapmessage", + "target": "apps_extension_chromium_src_beap_messages_inboxrowtobeapmessage_parseaiclassification", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/inboxRowToBeapMessage.ts", + "source_location": "L157", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_inboxrowtobeapmessage_inboxrowtobeapmessage", + "target": "apps_extension_chromium_src_beap_messages_inboxrowtobeapmessage_mapattachmentsfromrow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/inboxRowToBeapMessage.ts", + "source_location": "L139", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_inboxrowtobeapmessage_inboxrowtobeapmessage", + "target": "apps_extension_chromium_src_beap_messages_inboxrowtobeapmessage_extractcanonicalcontent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapinboxstore", + "target": "apps_extension_chromium_src_beap_messages_inboxrowtobeapmessage_inboxrowtobeapmessage", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L203", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_initbeappqauth", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L203", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_initbeappqauth_initbeappqauth", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_beap_integration_default_automation_storage_key", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_beapintegrationdefaultautomationentryv1", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_beapintegrationdefaultautomationrootv1", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_beapintegrationidentityfrommessage", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_beapintegrationidentityv1", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_beapintegrationstablekey", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_emptybeapintegrationdefaultautomationroot", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_getbeapintegrationdefaultautomationentry", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_loadbeapintegrationdefaultautomationroot", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_parsebeapintegrationdefaultautomationroot", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_savebeapintegrationdefaultautomationroot", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_serializebeapintegrationdefaultautomationroot", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_upsertbeapintegrationdefaultautomationentry", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_validatebeapintegrationidentity", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_sanitisedpackagetobeapmessage", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_sanitisedpackagetobeapmessage_sanitisedpackagetobeapmessage", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_seeddata", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_seeddata_getseedmessagesbyfolder", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_seeddata_seed_messages", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_aiclassificationresponse", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_aiprovider", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_classificationcontext", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_classificationengineconfig", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_classificationprogressevent", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_classificationresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_classifybatch", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_heuristicclassify", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_projectcontent", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_projectedcontent", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_selectmessagesforautodeletion", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_tostoreclassificationmap", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L202", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_setpqauthheadersprovider", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beapcanonviolationerror", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beappackage", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beappackageconfig", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildpackage", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_canbuildpackage", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_deliveryresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_executedeliveryaction", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_executedownloadaction", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_executeemailaction", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_executemessengeraction", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_packagebuildresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_validatepackageconfig", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_validationresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_services_index", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver_beapsessionimportactionsenabled", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver_beapsessionimportresolution", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver_beapsessionimportresolutioninvalid", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver_beapsessionimportresolutionnone", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver_beapsessionimportresolutionvalid", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver_beapsessionimportuihint", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver_islikelysessionjsonattachment", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver_resolvebeapsessionimportpayload", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver_sessionjsonhasimportablesubstance", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_types", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_usebeapinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_usebulkviewpage", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_usehandshakemessages", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_useinboxview", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_usependingdeletionmessages", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_useselectedbeapmessage", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_useurgentmessages", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_usearchivedmessages", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_usebeapmessagesstore", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_useinboxmessages", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_useoutboxmessages", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_userejectedmessages", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_usesearchquery", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/index.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_index", + "target": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_useselectedmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_beap_messages_index", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_beap_messages_index", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/initBeapPqAuth.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_initbeappqauth", + "target": "apps_extension_chromium_src_beap_messages_initbeappqauth_initbeappqauth", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/initBeapPqAuth.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_initbeappqauth", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/initBeapPqAuth.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_initbeappqauth", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_setpqauthheadersprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/initBeapPqAuth.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_initbeappqauth_initbeappqauth", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_setpqauthheadersprovider" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_beap_messages_initbeappqauth_initbeappqauth", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L203", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat_popupchatapp", + "target": "apps_extension_chromium_src_beap_messages_initbeappqauth_initbeappqauth", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_beap_messages_initbeappqauth_initbeappqauth", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L298", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_beap_messages_initbeappqauth_initbeappqauth", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/integrationDefaultAutomationMetadata.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_beap_integration_default_automation_storage_key", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/integrationDefaultAutomationMetadata.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_beapintegrationdefaultautomationentryv1", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/integrationDefaultAutomationMetadata.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_beapintegrationdefaultautomationrootv1", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/integrationDefaultAutomationMetadata.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_beapintegrationidentityfrommessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/integrationDefaultAutomationMetadata.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_beapintegrationidentityv1", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/integrationDefaultAutomationMetadata.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_beapintegrationstablekey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/integrationDefaultAutomationMetadata.ts", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_emptybeapintegrationdefaultautomationroot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/integrationDefaultAutomationMetadata.ts", + "source_location": "L171", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_getbeapintegrationdefaultautomationentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/integrationDefaultAutomationMetadata.ts", + "source_location": "L137", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_loadbeapintegrationdefaultautomationroot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/integrationDefaultAutomationMetadata.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_parsebeapintegrationdefaultautomationroot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/integrationDefaultAutomationMetadata.ts", + "source_location": "L153", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_savebeapintegrationdefaultautomationroot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/integrationDefaultAutomationMetadata.ts", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_serializebeapintegrationdefaultautomationroot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/integrationDefaultAutomationMetadata.ts", + "source_location": "L181", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_upsertbeapintegrationdefaultautomationentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/integrationDefaultAutomationMetadata.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_validatebeapintegrationidentity", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/integrationDefaultAutomationMetadata.ts", + "source_location": "L186", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_upsertbeapintegrationdefaultautomationentry", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_validatebeapintegrationidentity", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/integrationDefaultAutomationMetadata.ts", + "source_location": "L190", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_upsertbeapintegrationdefaultautomationentry", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_beapintegrationstablekey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/integrationDefaultAutomationMetadata.ts", + "source_location": "L142", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_loadbeapintegrationdefaultautomationroot", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_emptybeapintegrationdefaultautomationroot", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/integrationDefaultAutomationMetadata.ts", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_parsebeapintegrationdefaultautomationroot", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_emptybeapintegrationdefaultautomationroot", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/integrationDefaultAutomationMetadata.ts", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_loadbeapintegrationdefaultautomationroot", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_parsebeapintegrationdefaultautomationroot", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/integrationDefaultAutomationMetadata.ts", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_getbeapintegrationdefaultautomationentry", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_loadbeapintegrationdefaultautomationroot", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/integrationDefaultAutomationMetadata.ts", + "source_location": "L194", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_upsertbeapintegrationdefaultautomationentry", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_loadbeapintegrationdefaultautomationroot", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/integrationDefaultAutomationMetadata.ts", + "source_location": "L205", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_upsertbeapintegrationdefaultautomationentry", + "target": "apps_extension_chromium_src_beap_messages_integrationdefaultautomationmetadata_savebeapintegrationdefaultautomationroot", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/index.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_index", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/index.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_index", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient_sandboxclient", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/index.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_index", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient_sandboxdepackage", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_index", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_index", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_decryptedpackageheader", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_index", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_hextouint8array", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_index", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_ismatchingsandboxresponse", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_index", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_issandboxack", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_index", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_issandboxfailure", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_index", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_issandboxsuccess", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_index", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sandbox_depackage_timeout_ms", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_index", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sandbox_memory_limit_bytes", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_index", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sandboxack", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_index", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sandboxdecryptoptions", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_index", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sandboxfailure", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_index", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sandboxfailurestage", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_index", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sandboxrequest", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_index", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sandboxresponse", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_index", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sandboxsuccess", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_index", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sanitiseddecryptedpackage", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_index", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_serializedknownreceiver", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_index", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_serializedlocalhandshake", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_index", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_serializedsenderidentity", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_index", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_uint8arraytohex", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline", + "target": "apps_extension_chromium_src_beap_messages_sandbox_index", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L344", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandbox", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandbox_buildfailure", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandbox", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandbox_buildtimeoutpromise", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L378", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandbox", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandbox_checkmemorybudget", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L361", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandbox", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandbox_classifyfailurestage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L218", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandbox", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandbox_deserialiseoptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L150", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandbox", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandbox_handledepackage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandbox", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandbox_handledepackagewithtimeout", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandbox", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandbox_handlemessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandbox", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandbox_initsandbox", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandbox", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandbox_isvalidsandboxrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L284", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandbox", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandbox_sanitisepackage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandbox", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandbox", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_decryptedpackageheader", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandbox", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_hextouint8array", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandbox", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_issandboxfailure", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandbox", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sandbox_depackage_timeout_ms", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandbox", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sandbox_memory_limit_bytes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandbox", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sandboxack", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandbox", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sandboxdecryptoptions", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandbox", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sandboxfailure", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandbox", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sandboxrequest", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandbox", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sandboxresponse", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandbox", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sandboxsuccess", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandbox", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sanitiseddecryptedpackage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandbox", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptbeappackage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandbox", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptedpackage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandbox", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_parsebeapfile", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandbox", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beapenvelopeheader", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandbox", + "target": "apps_extension_chromium_src_beap_messages_services_eligibilitycheck_localhandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandbox", + "target": "apps_extension_chromium_src_beap_messages_services_index", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandbox_initsandbox", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandbox_handlemessage", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandbox_handlemessage", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandbox_buildfailure", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandbox_handlemessage", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandbox_handledepackagewithtimeout", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandbox_handlemessage", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandbox_isvalidsandboxrequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandbox_handledepackagewithtimeout", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandbox_buildtimeoutpromise", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandbox_handledepackagewithtimeout", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandbox_handledepackage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandbox_buildtimeoutpromise", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandbox_buildfailure", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L159", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandbox_handledepackage", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandbox_buildfailure", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L189", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandbox_handledepackage", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandbox_checkmemorybudget", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L182", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandbox_handledepackage", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandbox_classifyfailurestage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L166", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandbox_handledepackage", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandbox_deserialiseoptions", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L194", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandbox_handledepackage", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandbox_sanitisepackage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L178", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandbox_handledepackage", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptbeappackage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L157", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandbox_handledepackage", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_parsebeapfile", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts", + "source_location": "L226", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandbox_deserialiseoptions", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_hextouint8array", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxClient.ts", + "source_location": "L310", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient_generaterequestid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxClient.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient_getsandboxpageurl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxClient.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient_sandboxclient", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxClient.ts", + "source_location": "L333", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient_sandboxdepackage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxClient.ts", + "source_location": "L285", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient_waitforiframeload", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxClient.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxClient.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_ismatchingsandboxresponse", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxClient.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_issandboxack", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxClient.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_issandboxfailure", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxClient.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_issandboxsuccess", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxClient.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sandbox_depackage_timeout_ms", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxClient.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sandboxdecryptoptions", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxClient.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sandboxfailure", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxClient.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sandboxrequest", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxClient.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sandboxresponse", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxClient.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sandboxsuccess", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxClient.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient_sandboxclient_create", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient_getsandboxpageurl", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxClient.ts", + "source_location": "L264", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient_sandboxclient", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient_sandboxclient_buildclientfailure", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxClient.ts", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient_sandboxclient", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient_sandboxclient_constructor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxClient.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient_sandboxclient", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient_sandboxclient_create", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxClient.ts", + "source_location": "L161", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient_sandboxclient", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient_sandboxclient_depackage", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxClient.ts", + "source_location": "L210", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient_sandboxclient", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient_sandboxclient_dispose", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxClient.ts", + "source_location": "L233", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient_sandboxclient", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient_sandboxclient_handlemessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxClient.ts", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient_sandboxclient_create", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient_waitforiframeload", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxClient.ts", + "source_location": "L340", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient_sandboxdepackage", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient_sandboxclient_create" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxClient.ts", + "source_location": "L170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient_sandboxclient_depackage", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient_generaterequestid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxClient.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient_sandboxclient_depackage", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient_sandboxclient_buildclientfailure", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxClient.ts", + "source_location": "L161", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient_sandboxclient_depackage", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sandboxdecryptoptions", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxClient.ts", + "source_location": "L161", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient_sandboxclient_depackage", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sandboxfailure", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxClient.ts", + "source_location": "L161", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient_sandboxclient_depackage", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sandboxsuccess", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxClient.ts", + "source_location": "L341", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient_sandboxdepackage", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient_sandboxclient_depackage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxClient.ts", + "source_location": "L219", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient_sandboxclient_dispose", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient_sandboxclient_buildclientfailure", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxClient.ts", + "source_location": "L352", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient_sandboxdepackage", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient_sandboxclient_dispose", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxClient.ts", + "source_location": "L242", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient_sandboxclient_handlemessage", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_ismatchingsandboxresponse" + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxClient.ts", + "source_location": "L264", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient_sandboxclient_buildclientfailure", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sandboxfailure", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient_sandboxdepackage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L604", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline_verifyimportedmessage", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxclient_sandboxdepackage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L257", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_decryptedpackageheader", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L387", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_hextouint8array", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L361", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_ismatchingsandboxresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L342", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_issandboxack", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L350", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_issandboxfailure", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L346", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_issandboxsuccess", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sandbox_depackage_timeout_ms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sandbox_memory_limit_bytes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sandbox_message_origin", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L281", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sandboxack", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sandboxdecryptoptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L305", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sandboxfailure", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L326", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sandboxfailurestage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sandboxrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L336", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sandboxresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L290", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sandboxsuccess", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L192", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sanitiseddecryptedpackage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_serializedknownreceiver", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_serializedlocalhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_serializedsenderidentity", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L380", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_uint8arraytohex", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptedartefact", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptedcapsulepayload", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol", + "target": "apps_extension_chromium_src_beap_messages_services_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol", + "target": "apps_extension_chromium_src_beap_messages_services_outerenvelope_innerenvelopemetadata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol", + "target": "apps_extension_chromium_src_beap_messages_services_poae_poaerlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol", + "target": "apps_extension_chromium_src_beap_messages_services_poae_poaeverificationresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_authorizedprocessingresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sanitisedPackageToBeapMessage.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sanitisedpackagetobeapmessage", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapinboxstore", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/electronDepackagedSync.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_electrondepackagedsync", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sandboxdecryptoptions", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L464", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline_importfromfile", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sandboxdecryptoptions" + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sanitiseddecryptedpackage", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptedartefact", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L197", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sanitiseddecryptedpackage", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptedcapsulepayload", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L231", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sanitiseddecryptedpackage", + "target": "apps_extension_chromium_src_beap_messages_services_outerenvelope_innerenvelopemetadata", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L237", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sanitiseddecryptedpackage", + "target": "apps_extension_chromium_src_beap_messages_services_poae_poaerlog", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L234", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sanitiseddecryptedpackage", + "target": "apps_extension_chromium_src_beap_messages_services_poae_poaeverificationresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts", + "source_location": "L228", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sanitiseddecryptedpackage", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_authorizedprocessingresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sanitisedPackageToBeapMessage.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sanitisedpackagetobeapmessage", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sanitiseddecryptedpackage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapinboxstore", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sanitiseddecryptedpackage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_beapinboxstate", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sanitiseddecryptedpackage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/electronDepackagedSync.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_electrondepackagedsync", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sanitiseddecryptedpackage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sanitiseddecryptedpackage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline_verifyimportedmessageresult", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_sanitiseddecryptedpackage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_issandboxsuccess", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L627", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline_verifyimportedmessage", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_issandboxsuccess" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_issandboxfailure", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L661", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline_verifyimportedmessage", + "target": "apps_extension_chromium_src_beap_messages_sandbox_sandboxprotocol_issandboxfailure" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sanitisedPackageToBeapMessage.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sanitisedpackagetobeapmessage", + "target": "apps_extension_chromium_src_beap_messages_sanitisedpackagetobeapmessage_default_processing_events_local", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sanitisedPackageToBeapMessage.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sanitisedpackagetobeapmessage", + "target": "apps_extension_chromium_src_beap_messages_sanitisedpackagetobeapmessage_derivemessageid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sanitisedPackageToBeapMessage.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sanitisedpackagetobeapmessage", + "target": "apps_extension_chromium_src_beap_messages_sanitisedpackagetobeapmessage_derivesenderemail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sanitisedPackageToBeapMessage.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sanitisedpackagetobeapmessage", + "target": "apps_extension_chromium_src_beap_messages_sanitisedpackagetobeapmessage_derivetrustlevel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sanitisedPackageToBeapMessage.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sanitisedpackagetobeapmessage", + "target": "apps_extension_chromium_src_beap_messages_sanitisedpackagetobeapmessage_mapattachments", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sanitisedPackageToBeapMessage.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sanitisedpackagetobeapmessage", + "target": "apps_extension_chromium_src_beap_messages_sanitisedpackagetobeapmessage_sanitisedpackagetobeapmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sanitisedPackageToBeapMessage.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sanitisedpackagetobeapmessage", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sanitisedPackageToBeapMessage.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sanitisedpackagetobeapmessage", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_processingeventoffer", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sanitisedPackageToBeapMessage.ts", + "source_location": "L153", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sanitisedpackagetobeapmessage_sanitisedpackagetobeapmessage", + "target": "apps_extension_chromium_src_beap_messages_sanitisedpackagetobeapmessage_derivetrustlevel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sanitisedPackageToBeapMessage.ts", + "source_location": "L182", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sanitisedpackagetobeapmessage_sanitisedpackagetobeapmessage", + "target": "apps_extension_chromium_src_beap_messages_sanitisedpackagetobeapmessage_mapattachments", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sanitisedPackageToBeapMessage.ts", + "source_location": "L173", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sanitisedpackagetobeapmessage_sanitisedpackagetobeapmessage", + "target": "apps_extension_chromium_src_beap_messages_sanitisedpackagetobeapmessage_derivemessageid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sanitisedPackageToBeapMessage.ts", + "source_location": "L175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sanitisedpackagetobeapmessage_sanitisedpackagetobeapmessage", + "target": "apps_extension_chromium_src_beap_messages_sanitisedpackagetobeapmessage_derivesenderemail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/seedData.ts", + "source_location": "L388", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_seeddata", + "target": "apps_extension_chromium_src_beap_messages_seeddata_getseedmessagesbyfolder", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/seedData.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_seeddata", + "target": "apps_extension_chromium_src_beap_messages_seeddata_mockfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/seedData.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_seeddata", + "target": "apps_extension_chromium_src_beap_messages_seeddata_seed_messages", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/seedData.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_seeddata", + "target": "apps_extension_chromium_src_beap_messages_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/seedData.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_seeddata", + "target": "apps_extension_chromium_src_beap_messages_types_beapmessageui", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapMessagesStore.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore", + "target": "apps_extension_chromium_src_beap_messages_seeddata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapMessagesStore.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore", + "target": "apps_extension_chromium_src_beap_messages_seeddata_seed_messages", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_beapsignature", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_buildenvelopeaadfields", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_canonicalserializeaad", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_capsulepayloadenc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_computecontenthash", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_computepolicyhash", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_computesigningdata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_computetemplatehash", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_createbeapsignature", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_derivebeapkeys", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptartefactwithaad", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptcapsulepayloadchunked", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptedartefact", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptoriginalartefactwithaad", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_generateenvelopesalt", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_getsigningkeypair", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_hmacsha256", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqencapsulate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqkemsupported", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqkemsupportedasync", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqnotavailableerror", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_resetdebugaadstats", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_setdebugaadtrackingenabled", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_sha256hex", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_tobase64", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L914", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_automationmetadata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L571", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beapartefact", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L586", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beapartefactencrypted", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beapcanonviolationerror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L456", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beapenvelopeheader", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L611", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beappackage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L301", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beappackageconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L926", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildautomationmetadata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L261", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildcompliancenotes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L2045", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_builddraftemailpackage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L2075", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildemailtransportcontract", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1984", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildpackage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1821", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildpbeappackage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1046", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildqbeappackage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L784", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_canbuildpackage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1009", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_checkqbeaptransportchannelsafety", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L691", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_deliveryresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L286", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_draftbuildpolicy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L2058", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_emailtransportcontract", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L2592", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_executedeliveryaction", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L2246", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_executedownloadaction", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L2121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_executeemailaction", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L2196", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_executemessengeraction", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L2310", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_executep2paction", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L888", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_extractautomationtags", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L144", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_isbeapdebugvalidateenabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_ispostquantumavailable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L202", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_ispostquantumavailableasync", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1025", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_ispqserviceconnectivityerror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L682", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_packagebuildresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L2283", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_packagetop2pjsonstring", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L210", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_pqmetadata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L803", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_resolveprocessingeventoffer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L861", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_safebase64encode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L232", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_sizelimits", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L2024", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_tobeapbuildresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L740", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_validatepackageconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L978", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_validateqbeappolicy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L734", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_validationresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_outerenvelope", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_outerenvelope_artefacttopology", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_outerenvelope_artefacttopologyentry", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_outerenvelope_buildartefacttopology", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_outerenvelope_encryptinnerenvelope", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_outerenvelope_innerenvelopemetadata", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_outerenvelope_outerenvelopeheader", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_poae", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_poae_generatepoaerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_poae_poaerecord", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_builddefaultprocessingoffer", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_buildlocalsemanticoffer", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_buildremotesemanticoffer", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_coercedeclarationtononeifunboundable", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_consentselectableoffer", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_consentselectableofferset", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_getdeclarationforclass", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_getprovideridsforclass", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_getretentionforclass", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_isprocessingpermitted", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_mergewithnonedefaults", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_processingboundary", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_processingeventclass", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_processingeventdeclaration", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_processingeventoffer", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_processingprovider", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_processingretention", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_processingscope", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_validateofferset", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_validateprocessingeventoffer", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_stripagentboxesfromgrids", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_stripagentboxesfromgrids_stripagentboxesfromgrids", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_urlnormalizer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_urlnormalizer_extractedurl", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_urlnormalizer_normalizeurls", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_derivesharedsecretx25519", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_getdevicex25519publickey", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_hasvalidx25519key", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_handshake_handshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_handshake_handshakerpc_clientsendfailuredebug", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_handshake_handshakerpc_outboundrequestdebugsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_handshake_handshakerpc_sendbeapviap2presult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_handshake_rpctypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "target": "apps_extension_chromium_src_handshake_rpctypes_selectedhandshakerecipient", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/BeapPackageBuilder.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_beappackagebuilder_test", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/executeP2PAction.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_executep2paction_test", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/sessionImportArtefact.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_sessionimportartefact_test", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/transportChannelSafety.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_transportchannelsafety_test", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/validation/beapBuildValidation.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_validation_beapbuildvalidation", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beapcanonviolationerror", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beapcanonviolationerror_constructor", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beapcanonviolationerror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1051", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildqbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_isbeapdebugvalidateenabled", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L192", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_ispostquantumavailable", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqkemsupported" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_ispostquantumavailable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1085", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildqbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_ispostquantumavailableasync", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L203", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_ispostquantumavailableasync", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqkemsupportedasync" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_ispostquantumavailableasync", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_pqmetadata", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_sizelimits", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1633", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildqbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildcompliancenotes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/BeapPackageBuilder.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_beappackagebuilder_test", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_draftbuildpolicy", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L436", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beappackageconfig", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_processingeventdeclaration", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L436", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beappackageconfig", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_processingeventoffer", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beappackageconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/BeapPackageBuilder.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_beappackagebuilder_test", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beappackageconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/executeP2PAction.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_executep2paction_test", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beappackageconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/sessionImportArtefact.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_sessionimportartefact_test", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beappackageconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beappackageconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beappackageconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beapenvelopeheader", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptedpackage", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beapenvelopeheader", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L558", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beapenvelopeheader", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_processingeventoffer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beapenvelopeheader", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beapenvelopeheader", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beapartefact", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beapartefact", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beapartefactencrypted", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beapartefactencrypted", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beappackage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L166", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptedpackage", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beappackage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L655", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beappackage", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_beapsignature", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L651", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beappackage", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_capsulepayloadenc", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L679", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beappackage", + "target": "apps_extension_chromium_src_beap_messages_services_poae_poaerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beappackage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L258", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_pipelineinput", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beappackage", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beappackage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/executeP2PAction.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_executep2paction_test", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beappackage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/validation/beapBuildValidation.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_validation_beapbuildvalidation", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_beappackage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L904", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_extractautomationtags", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_packagebuildresult" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_packagebuildresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L720", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_deliveryresult", + "target": "apps_extension_chromium_src_handshake_handshakerpc_clientsendfailuredebug", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L710", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_deliveryresult", + "target": "apps_extension_chromium_src_handshake_handshakerpc_outboundrequestdebugsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_deliveryresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_validationresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1985", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildpackage", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_validatepackageconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L785", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_canbuildpackage", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_validatepackageconfig", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_validatepackageconfig", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_canbuildpackage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1842", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildpbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_resolveprocessingeventoffer", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1139", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildqbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_resolveprocessingeventoffer", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L808", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_resolveprocessingeventoffer", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_builddefaultprocessingoffer", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L813", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_resolveprocessingeventoffer", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_mergewithnonedefaults", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L836", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_resolveprocessingeventoffer", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_validateofferset", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L814", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_resolveprocessingeventoffer", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_validateprocessingeventoffer", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1914", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildpbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_safebase64encode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L930", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildautomationmetadata", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_extractautomationtags", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L992", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_validateqbeappolicy", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_extractautomationtags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/BeapPackageBuilder.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_beappackagebuilder_test", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_extractautomationtags", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildqbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildautomationmetadata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildqbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_validateqbeappolicy", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildqbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_checkqbeaptransportchannelsafety", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/transportChannelSafety.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_transportchannelsafety_test", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_checkqbeaptransportchannelsafety", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1308", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildqbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_ispqserviceconnectivityerror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1997", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildpackage", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildqbeappackage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1522", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildqbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_buildenvelopeaadfields", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1523", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildqbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_canonicalserializeaad", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1153", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildqbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_computecontenthash", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1152", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildqbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_computepolicyhash", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1731", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildqbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_computesigningdata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1151", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildqbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_computetemplatehash", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1738", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildqbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_createbeapsignature", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1339", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildqbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_derivebeapkeys", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1566", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildqbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptartefactwithaad", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1547", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildqbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptcapsulepayloadchunked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1577", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildqbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptoriginalartefactwithaad", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1169", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildqbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_generateenvelopesalt", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1583", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildqbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_getsigningkeypair", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1365", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildqbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_hmacsha256", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1305", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildqbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqencapsulate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1054", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildqbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_resetdebugaadstats", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1053", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildqbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_setdebugaadtrackingenabled", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1538", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildqbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_sha256hex", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildqbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_tobase64", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1677", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildqbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_outerenvelope_buildartefacttopology", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1698", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildqbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_outerenvelope_encryptinnerenvelope", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1774", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildqbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_poae_generatepoaerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1770", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildqbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_isprocessingpermitted", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1414", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildqbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_stripagentboxesfromgrids_stripagentboxesfromgrids", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildqbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_urlnormalizer_normalizeurls", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1287", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildqbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_derivesharedsecretx25519", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1219", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildqbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_getdevicex25519publickey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1067", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildqbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_hasvalidx25519key", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1799", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildqbeappackage", + "target": "apps_extension_chromium_src_beap_messages_validation_beapbuildvalidation", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L2001", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildpackage", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildpbeappackage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1944", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildpbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_buildenvelopeaadfields", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1945", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildpbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_canonicalserializeaad", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1833", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildpbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_computecontenthash", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1832", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildpbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_computepolicyhash", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1923", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildpbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_computesigningdata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1831", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildpbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_computetemplatehash", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1930", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildpbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_createbeapsignature", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1849", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildpbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_getsigningkeypair", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1946", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildpbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_poae_generatepoaerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1940", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildpbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_isprocessingpermitted", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1911", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildpbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_stripagentboxesfromgrids_stripagentboxesfromgrids", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L1825", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildpbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_urlnormalizer_normalizeurls", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L2046", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_builddraftemailpackage", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildpackage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L2632", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_executedeliveryaction", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildpackage", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildpackage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/BeapPackageBuilder.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_beappackagebuilder_test", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildpackage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/sessionImportArtefact.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_sessionimportartefact_test", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildpackage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L2047", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_builddraftemailpackage", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_tobeapbuildresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/BeapPackageBuilder.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_beappackagebuilder_test", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_builddraftemailpackage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L2138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_executeemailaction", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_buildemailtransportcontract", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L2665", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_executedeliveryaction", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_executeemailaction", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L2184", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_executeemailaction", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_executedownloadaction", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_executeemailaction", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_executemessengeraction", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L2667", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_executedeliveryaction", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_executedownloadaction", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_executedownloadaction", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L2340", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_executep2paction", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_packagetop2pjsonstring", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L2669", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_executedeliveryaction", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_executep2paction", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L2366", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_executep2paction", + "target": "apps_extension_chromium_src_handshake_handshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L2371", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_executep2paction", + "target": "apps_extension_chromium_src_handshake_handshakerpc_sendbeapviap2p" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/executeP2PAction.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_executep2paction_test", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_executep2paction", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L2597", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_executedeliveryaction", + "target": "apps_extension_chromium_src_handshake_handshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts", + "source_location": "L2598", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_executedeliveryaction", + "target": "apps_extension_chromium_src_handshake_handshakerpc_checkhandshakesendready" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_executedeliveryaction", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/BeapPackageBuilder.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_beappackagebuilder_test", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_executedeliveryaction", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_executedeliveryaction", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L928", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat_popupchatapp", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_executedeliveryaction", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_executedeliveryaction", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L890", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_beap_messages_services_beappackagebuilder_executedeliveryaction", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/BeapPackageBuilder.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_beappackagebuilder_test", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/BeapPackageBuilder.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_beappackagebuilder_test", + "target": "apps_extension_chromium_src_beap_messages_services_tests_beappackagebuilder_test_createbaseconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/BeapPackageBuilder.test.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_beappackagebuilder_test", + "target": "apps_extension_chromium_src_beap_messages_services_tests_beappackagebuilder_test_createprivateconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/BeapPackageBuilder.test.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_beappackagebuilder_test", + "target": "apps_extension_chromium_src_beap_messages_services_tests_beappackagebuilder_test_createpublicconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/BeapPackageBuilder.test.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_beappackagebuilder_test", + "target": "apps_extension_chromium_src_beap_messages_services_tests_beappackagebuilder_test_mockkemct", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/BeapPackageBuilder.test.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_beappackagebuilder_test", + "target": "apps_extension_chromium_src_beap_messages_services_tests_beappackagebuilder_test_mockmlkemss", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/BeapPackageBuilder.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_beappackagebuilder_test", + "target": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/BeapPackageBuilder.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_beappackagebuilder_test", + "target": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_hasvalidx25519key", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/BeapPackageBuilder.test.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_beappackagebuilder_test_createprivateconfig", + "target": "apps_extension_chromium_src_beap_messages_services_tests_beappackagebuilder_test_createbaseconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/BeapPackageBuilder.test.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_beappackagebuilder_test_createpublicconfig", + "target": "apps_extension_chromium_src_beap_messages_services_tests_beappackagebuilder_test_createbaseconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/beapCrypto.test.ts", + "source_location": "L273", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_beapcrypto_test", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/beapCrypto.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_beapcrypto_test", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_aeaddecrypt", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/beapCrypto.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_beapcrypto_test", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_aeadencrypt", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/beapCrypto.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_beapcrypto_test", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_bytestostring", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/beapCrypto.test.ts", + "source_location": "L273", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_beapcrypto_test", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_clearsigningkeypair", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/beapCrypto.test.ts", + "source_location": "L273", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_beapcrypto_test", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_computecontenthash", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/beapCrypto.test.ts", + "source_location": "L273", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_beapcrypto_test", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_computepolicyhash", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/beapCrypto.test.ts", + "source_location": "L273", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_beapcrypto_test", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_computesigningdata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/beapCrypto.test.ts", + "source_location": "L273", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_beapcrypto_test", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_computetemplatehash", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/beapCrypto.test.ts", + "source_location": "L273", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_beapcrypto_test", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_createbeapsignature", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/beapCrypto.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_beapcrypto_test", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_decryptartefact", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/beapCrypto.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_beapcrypto_test", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_decryptcapsulepayload", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/beapCrypto.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_beapcrypto_test", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_derivebeapkeys", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/beapCrypto.test.ts", + "source_location": "L273", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_beapcrypto_test", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_ed25519sign", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/beapCrypto.test.ts", + "source_location": "L273", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_beapcrypto_test", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_ed25519verify", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/beapCrypto.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_beapcrypto_test", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptartefact", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/beapCrypto.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_beapcrypto_test", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptcapsulepayload", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/beapCrypto.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_beapcrypto_test", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_frombase64", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/beapCrypto.test.ts", + "source_location": "L273", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_beapcrypto_test", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_generateed25519keypair", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/beapCrypto.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_beapcrypto_test", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_generateenvelopesalt", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/beapCrypto.test.ts", + "source_location": "L273", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_beapcrypto_test", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_getsigningkeypair", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/beapCrypto.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_beapcrypto_test", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_hkdfsha256", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/beapCrypto.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_beapcrypto_test", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_randombytes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/beapCrypto.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_beapcrypto_test", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_sha256", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/beapCrypto.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_beapcrypto_test", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_stringtobytes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/beapCrypto.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_beapcrypto_test", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_tobase64", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/beapCrypto.test.ts", + "source_location": "L273", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_beapcrypto_test", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_verifybeapsignature", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/executeP2PAction.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_executep2paction_test", + "target": "apps_extension_chromium_src_handshake_handshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/executeP2PAction.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_executep2paction_test", + "target": "apps_extension_chromium_src_handshake_handshakerpc_sendbeapviap2p", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/sessionImportArtefact.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_sessionimportartefact_test", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/sessionImportArtefact.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_sessionimportartefact_test", + "target": "apps_extension_chromium_src_beap_messages_services_stripagentboxesfromgrids", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/sessionImportArtefact.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_sessionimportartefact_test", + "target": "apps_extension_chromium_src_beap_messages_services_stripagentboxesfromgrids_stripagentboxesfromgrids", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/sessionImportArtefact.test.ts", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_sessionimportartefact_test", + "target": "apps_extension_chromium_src_beap_messages_services_tests_sessionimportartefact_test_base_private_config", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/sessionImportArtefact.test.ts", + "source_location": "L142", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_sessionimportartefact_test", + "target": "apps_extension_chromium_src_beap_messages_services_tests_sessionimportartefact_test_decodepbeappayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/sessionImportArtefact.test.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_sessionimportartefact_test", + "target": "apps_extension_chromium_src_beap_messages_services_tests_sessionimportartefact_test_makegrid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/sessionImportArtefact.test.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_sessionimportartefact_test", + "target": "apps_extension_chromium_src_beap_messages_services_tests_sessionimportartefact_test_makesession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/sessionImportArtefact.test.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_sessionimportartefact_test", + "target": "apps_extension_chromium_src_beap_messages_services_tests_sessionimportartefact_test_mockkemct", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/sessionImportArtefact.test.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_sessionimportartefact_test", + "target": "apps_extension_chromium_src_beap_messages_services_tests_sessionimportartefact_test_mockmlkemss", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/sessionImportArtefact.test.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_sessionimportartefact_test", + "target": "apps_extension_chromium_src_beap_messages_services_tests_sessionimportartefact_test_privateconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/sessionImportArtefact.test.ts", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_sessionimportartefact_test", + "target": "apps_extension_chromium_src_beap_messages_services_tests_sessionimportartefact_test_publicconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/sessionImportArtefact.test.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_sessionimportartefact_test", + "target": "apps_extension_chromium_src_beap_messages_services_tests_sessionimportartefact_test_validartefact", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/sessionImportArtefact.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_sessionimportartefact_test", + "target": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/sessionImportArtefact.test.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_sessionimportartefact_test", + "target": "apps_extension_chromium_src_types_canonicaldisplaygridconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/sessionImportArtefact.test.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_sessionimportartefact_test", + "target": "apps_extension_chromium_src_types_canonicaldisplaygridconfig_canonicaldisplaygridconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/sessionImportArtefact.test.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_sessionimportartefact_test_makesession", + "target": "apps_extension_chromium_src_beap_messages_services_tests_sessionimportartefact_test_makegrid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/sessionImportArtefact.test.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_sessionimportartefact_test_validartefact", + "target": "apps_extension_chromium_src_beap_messages_services_tests_sessionimportartefact_test_makesession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/__tests__/transportChannelSafety.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_tests_transportchannelsafety_test", + "target": "apps_extension_chromium_src_beap_messages_services_tests_transportchannelsafety_test_emptyatt", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L242", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_action_signals", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_aiclassificationresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_aiprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L704", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_buildgatecontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L457", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_buildsyntheticcapsule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_classificationcontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L157", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_classificationengineconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_classificationprogressevent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_classificationresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L722", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_classifybatch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L535", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_classifysinglemessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L371", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_defaultaction", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L519", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_gatemessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L284", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_heuristicclassify", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L259", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_irrelevant_signals", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L392", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_projectcontent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_projectedcontent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L488", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_resolveauthorizedscope", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L689", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_resolveconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L499", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_resolveprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L813", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_selectmessagesforautodeletion", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L362", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_summarise", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L840", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_tostoreclassificationmap", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L273", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_trust_weight", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L227", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_urgent_signals", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_authorizedprocessingresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_default_capability_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_gatecontext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_gatingauditstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_receivercapabilitypolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_runstage61gate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_processingscope", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L453", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_rationale_453", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapReplyAiProvider.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapreplyaiprovider", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L301", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_classificationresult", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_authorizedprocessingresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L301", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_classificationresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_projectedcontent", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_processingscope", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapReplyAiProvider.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapreplyaiprovider", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_projectedcontent", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L301", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_projectedcontent", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_aiprovider", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_aiprovider_classify", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapReplyAiProvider.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapreplyaiprovider", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_aiprovider", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L301", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_aiprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L638", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_classifysinglemessage", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_aiprovider_classify", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapReplyAiProvider.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapreplyaiprovider", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_classificationcontext", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L301", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_classificationcontext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapReplyAiProvider.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapreplyaiprovider", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_aiclassificationresponse", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L301", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_aiclassificationresponse", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L301", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_classificationprogressevent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L219", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_classificationengineconfig", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_gatecontext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L172", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_classificationengineconfig", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_gatingauditstore", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L166", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_classificationengineconfig", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_receivercapabilitypolicy", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L301", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_classificationengineconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L543", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_classifysinglemessage", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_heuristicclassify", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L346", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_heuristicclassify", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_defaultaction", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L345", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_heuristicclassify", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_summarise", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L301", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_heuristicclassify", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L542", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_classifysinglemessage", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_projectcontent", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L301", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_projectcontent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L524", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_gatemessage", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_buildsyntheticcapsule", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L609", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_classifysinglemessage", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_resolveauthorizedscope", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L616", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_classifysinglemessage", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_resolveprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L562", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_classifysinglemessage", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_gatemessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L525", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_gatemessage", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_runstage61gate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts", + "source_location": "L726", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_classifybatch", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_resolveconfig", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L301", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_classifybatch", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L301", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_selectmessagesforautodeletion", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L301", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapclassificationengine_tostoreclassificationmap", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_aeadciphertext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L760", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_aeaddecrypt", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L713", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_aeadencrypt", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L161", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_asbuffersource", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_beapcryptometadata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_beappqmetadata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1398", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_beapsignature", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L480", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_buildenvelopeaadfields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L333", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_bytestostring", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L414", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_canonicalserializeaad", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_capsulepayloadenc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L259", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_capturedebugsigningdata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L822", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_chunkbytes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_chunkingmetadata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1787", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_clearsigningkeypair", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1575", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_computecontenthash", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L541", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_computeenvelopeaad", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L842", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_computemerkleroot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1616", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_computepolicyhash", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1674", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_computesigningdata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1598", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_computetemplatehash", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1554", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_constanttimeequal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1473", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_createbeapsignature", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1321", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_decryptartefact", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1040", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_decryptcapsulepayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L913", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_decryptchunks", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L662", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_derivebeapkeys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L640", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_derivehandshakesecret_deprecated", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L619", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_derivehandshakesecretx25519", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1809", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_detectandmigrateephemeralkey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1386", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_ed25519keypair", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1439", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_ed25519sign", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1456", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_ed25519verify", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1059", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptartefact", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1192", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptartefactwithaad", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L954", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptcapsulepayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L979", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptcapsulepayloadchunked", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L862", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptchunks", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptedartefact", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptedchunk", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptoriginalartefact", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1259", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptoriginalartefactwithaad", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1901", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_ensurepqhttpauthready", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L424", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_envelopeheaderforaad", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L304", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_frombase64", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1414", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_generateed25519keypair", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L798", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_generateenvelopesalt", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L195", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_getdebugaadstats", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L243", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_getdebuglastsigningdata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1886", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_getpqheaders", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1747", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_getsigningkeypair", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L603", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_handshakesecretresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L559", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_hkdfsha256", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1533", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_hmacsha256", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1921", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_invalidatepqavailabilitycache", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L596", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_keyderivationmethod", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1649", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_payloadcommitment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1925", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqcachettlfor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L2123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqdecapsulate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1857", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqdecapsulationresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L2063", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqencapsulate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1846", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqencapsulationresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L2000", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqkemgeneratekeypair", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1940", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqkemsupported", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1960", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqkemsupportedasync", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1865", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqnotavailableerror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L271", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_randombytes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L207", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_resetdebugaadstats", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L251", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_resetdebugsigningdata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L280", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_safeatob", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L187", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_setdebugaadtrackingenabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1882", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_setpqauthheadersprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L340", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_sha256", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1512", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_sha256hex", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1519", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_sha256string", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L942", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_shouldchunk", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L367", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_stablecanonicalize", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L326", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_stringtobytes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L292", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_tobase64", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L219", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_trackaadusage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1494", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_verifybeapsignature", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1001", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_rationale_1001", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/eligibilityCheck.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_eligibilitycheck", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/outerEnvelope.ts", + "source_location": "L597", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_outerenvelope", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/x25519KeyAgreement.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/validation/beapBuildValidation.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_validation_beapbuildvalidation", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeService.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakeservice", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeService.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakeservice_getouridentity", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_beappqmetadata", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_beapcryptometadata", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptedchunk", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_chunkingmetadata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptedartefact", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptedartefact", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_capsulepayloadenc", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_capsulepayloadenc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L772", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_aeaddecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_asbuffersource", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L728", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_aeadencrypt", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_asbuffersource", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L651", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_derivehandshakesecret_deprecated", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_asbuffersource", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L567", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_hkdfsha256", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_asbuffersource", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1536", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_hmacsha256", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_asbuffersource", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L341", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_sha256", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_asbuffersource", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_setdebugaadtrackingenabled", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_getdebugaadstats", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/validation/beapBuildValidation.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_validation_beapbuildvalidation", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_getdebugaadstats", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/validation/beapBuildValidation.ts", + "source_location": "L206", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_validation_beapbuildvalidation_validatebuiltqbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_getdebugaadstats" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L210", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_resetdebugaadstats", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_resetdebugsigningdata", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_resetdebugaadstats", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L720", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_aeadencrypt", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_trackaadusage", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_getdebuglastsigningdata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/validation/beapBuildValidation.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_validation_beapbuildvalidation", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_getdebuglastsigningdata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/validation/beapBuildValidation.ts", + "source_location": "L226", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_validation_beapbuildvalidation_validatebuiltqbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_getdebuglastsigningdata" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1716", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_computesigningdata", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_capturedebugsigningdata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L724", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_aeadencrypt", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_randombytes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1416", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_generateed25519keypair", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_randombytes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L799", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_generateenvelopesalt", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_randombytes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L309", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_frombase64", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_safeatob", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/x25519KeyAgreement.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_safeatob", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/x25519KeyAgreement.ts", + "source_location": "L186", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_derivesharedsecretx25519", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_safeatob" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/x25519KeyAgreement.ts", + "source_location": "L204", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_frombase64", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_safeatob", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/x25519KeyAgreement.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_getpersisteddevicex25519publickeyb64fromchromestorage", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_safeatob" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/validation/beapBuildValidation.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_validation_beapbuildvalidation", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_safeatob", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/validation/beapBuildValidation.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_validation_beapbuildvalidation_validatebuiltqbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_safeatob" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L745", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_aeadencrypt", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_tobase64", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1361", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_decryptartefact", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_tobase64", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1445", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_ed25519sign", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_tobase64", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1426", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_generateed25519keypair", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_tobase64", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_tobase64", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_tobase64", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/outerEnvelope.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_outerenvelope", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_tobase64", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_tobase64", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L500", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae_generatepoaerecord", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_tobase64" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L695", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae_generatepoaerlog", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_tobase64" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L767", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_aeaddecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_frombase64", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1443", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_ed25519sign", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_frombase64", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1461", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_ed25519verify", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_frombase64", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1074", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptartefact", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_frombase64", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1208", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptartefactwithaad", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_frombase64", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1003", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptcapsulepayloadchunked", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_frombase64", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L879", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptchunks", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_frombase64", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptoriginalartefact", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_frombase64", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1270", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptoriginalartefactwithaad", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_frombase64", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L2159", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqdecapsulate", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_frombase64", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L2099", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqencapsulate", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_frombase64", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_frombase64", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L754", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptqbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_frombase64" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_frombase64", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L665", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate3ciphertextintegrity", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_frombase64" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L861", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate4decryption", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_frombase64" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/eligibilityCheck.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_eligibilitycheck", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_frombase64", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/eligibilityCheck.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_eligibilitycheck_evaluaterecipienteligibility", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_frombase64" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/outerEnvelope.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_outerenvelope", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_frombase64", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_frombase64", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L598", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae_verifypoaerecord", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_frombase64" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeService.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakeservice", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_frombase64", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/handshakeService.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakeservice_derivefingerprintfromx25519", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_frombase64" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L417", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_canonicalserializeaad", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_stringtobytes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L846", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_computemerkleroot", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_stringtobytes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1721", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_computesigningdata", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_stringtobytes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L650", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_derivehandshakesecret_deprecated", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_stringtobytes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L958", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptcapsulepayload", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_stringtobytes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L986", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptcapsulepayloadchunked", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_stringtobytes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L578", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_hkdfsha256", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_stringtobytes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1520", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_sha256string", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_stringtobytes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_stringtobytes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L668", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate3ciphertextintegrity", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_stringtobytes" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L973", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate4decryption", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_stringtobytes" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L1183", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate6templatehash", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_stringtobytes" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_stringtobytes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L496", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae_generatepoaerecord", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_stringtobytes" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L693", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae_generatepoaerlog", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_stringtobytes" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L397", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae_localanchorprovider_verify", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_stringtobytes" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L599", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae_verifypoaerecord", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_stringtobytes" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1049", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_decryptcapsulepayload", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_bytestostring", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L847", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_computemerkleroot", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_sha256", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1721", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_computesigningdata", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_sha256", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptartefact", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_sha256", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1236", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptartefactwithaad", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_sha256", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L989", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptcapsulepayloadchunked", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_sha256", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L880", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptchunks", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_sha256", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptoriginalartefact", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_sha256", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1273", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptoriginalartefactwithaad", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_sha256", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1422", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_generateed25519keypair", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_sha256", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1513", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_sha256hex", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_sha256", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1520", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_sha256string", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_sha256", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_sha256", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L415", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_canonicalserializeaad", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_stablecanonicalize", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_stablecanonicalize", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/outerEnvelope.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_outerenvelope", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_stablecanonicalize", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/outerEnvelope.ts", + "source_location": "L517", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_outerenvelope_encryptinnerenvelope", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_stablecanonicalize" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_stablecanonicalize", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L437", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae_computepoaecommitment", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_stablecanonicalize" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_stablecanonicalize", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L1129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate_computepolicyfingerprint", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_stablecanonicalize", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L1202", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate_generategatingartefacts", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_stablecanonicalize" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L543", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_computeenvelopeaad", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_canonicalserializeaad", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_canonicalserializeaad", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L1399", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_canonicalserializeaad" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_canonicalserializeaad", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L542", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_computeenvelopeaad", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_buildenvelopeaadfields", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_buildenvelopeaadfields", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L1400", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_buildenvelopeaadfields" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_buildenvelopeaadfields", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_computeenvelopeaad", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L666", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_derivebeapkeys", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_hkdfsha256", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_hkdfsha256", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L623", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_derivehandshakesecretx25519", + "target": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_derivebeapkeys", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L754", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptqbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_derivebeapkeys" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_derivebeapkeys", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L922", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate4decryption", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_derivebeapkeys" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptartefact", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_aeadencrypt", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1234", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptartefactwithaad", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_aeadencrypt", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L959", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptcapsulepayload", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_aeadencrypt", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1002", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptcapsulepayloadchunked", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_aeadencrypt", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L878", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptchunks", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_aeadencrypt", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1163", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptoriginalartefact", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_aeadencrypt", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1300", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptoriginalartefactwithaad", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_aeadencrypt", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/outerEnvelope.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_outerenvelope", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_aeadencrypt", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/outerEnvelope.ts", + "source_location": "L520", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_outerenvelope_encryptinnerenvelope", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_aeadencrypt" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1345", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_decryptartefact", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_aeaddecrypt", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1044", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_decryptcapsulepayload", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_aeaddecrypt", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L923", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_decryptchunks", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_aeaddecrypt", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_aeaddecrypt", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L948", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate4decryption", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_aeaddecrypt" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/outerEnvelope.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_outerenvelope", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_aeaddecrypt", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/outerEnvelope.ts", + "source_location": "L562", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_outerenvelope_decryptinnerenvelope", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_aeaddecrypt" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L994", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptcapsulepayloadchunked", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_chunkbytes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L871", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptchunks", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_chunkbytes", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_chunkbytes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1018", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptcapsulepayloadchunked", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_computemerkleroot", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L893", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptchunks", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_computemerkleroot", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_computemerkleroot", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/validation/beapBuildValidation.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_validation_beapbuildvalidation", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_computemerkleroot", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/validation/beapBuildValidation.ts", + "source_location": "L196", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_validation_beapbuildvalidation_validatebuiltqbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_computemerkleroot" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1091", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptartefact", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptchunks", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1225", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptartefactwithaad", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptchunks", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1154", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptoriginalartefact", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptchunks", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1291", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptoriginalartefactwithaad", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptchunks", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptchunks", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1342", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_decryptartefact", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_decryptchunks", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_decryptchunks", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1090", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptartefact", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_shouldchunk", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1224", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptartefactwithaad", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_shouldchunk", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1153", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptoriginalartefact", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_shouldchunk", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1290", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptoriginalartefactwithaad", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_shouldchunk", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_shouldchunk", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptcapsulepayloadchunked", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_decryptcapsulepayload", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L757", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptqbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_decryptcapsulepayload" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptartefactwithaad", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_encryptoriginalartefactwithaad", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_decryptartefact", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L776", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptqbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_decryptartefact" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L1040", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptqbeappackagefromcontext", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_decryptartefact", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_beapsignature", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_beapsignature", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1776", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_getsigningkeypair", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_generateed25519keypair", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1477", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_createbeapsignature", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_ed25519sign", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_ed25519sign", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L499", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae_generatepoaerecord", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_ed25519sign" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L694", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae_generatepoaerlog", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_ed25519sign" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1502", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_verifybeapsignature", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_ed25519verify", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_ed25519verify", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L600", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae_verifypoaerecord", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_ed25519verify" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_verifybeapsignature", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L675", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_verifypackagesignature", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_verifybeapsignature" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_verifybeapsignature", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L1100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate5signatureverification", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_verifybeapsignature" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_sha256hex", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L666", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate3ciphertextintegrity", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_sha256hex" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_sha256hex", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L476", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae_generatepoaerecord", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_sha256hex" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeService.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakeservice", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_sha256hex", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/handshakeService.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakeservice_derivefingerprintfromx25519", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_sha256hex" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/handshakeService.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakeservice_getouridentity", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_sha256hex" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1588", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_computecontenthash", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_sha256string", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1629", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_computepolicyhash", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_sha256string", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1607", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_computetemplatehash", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_sha256string", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_sha256string", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L678", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate3ciphertextintegrity", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_sha256string" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L972", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate4decryption", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_sha256string" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_sha256string", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L754", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae_computecapsulehash", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_sha256string" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L439", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae_computepoaecommitment", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_sha256string" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L477", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae_generatepoaerecord", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_sha256string" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_sha256string", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L1130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate_computepolicyfingerprint", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_sha256string", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L1201", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate_generategatingartefacts", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_sha256string" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_hmacsha256", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/eligibilityCheck.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_eligibilitycheck", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_hmacsha256", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/eligibilityCheck.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_eligibilitycheck_deriveeligibilitymaterial", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_hmacsha256" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_hmacsha256", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_constanttimeequal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L667", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate3ciphertextintegrity", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_constanttimeequal" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L973", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate4decryption", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_constanttimeequal" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L1183", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate6templatehash", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_constanttimeequal" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/eligibilityCheck.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_eligibilitycheck", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_constanttimeequal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/eligibilityCheck.ts", + "source_location": "L194", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_eligibilitycheck_evaluaterecipienteligibility", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_constanttimeequal" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_constanttimeequal", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_constanttimeequal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L396", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae_localanchorprovider_verify", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_constanttimeequal" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_payloadcommitment", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_computesigningdata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L668", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_verifypackagesignature", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_computesigningdata" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_computesigningdata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L1094", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate5signatureverification", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_computesigningdata" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1755", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_getsigningkeypair", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_getsigningkeypair", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L474", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae_generatepoaerecord", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_getsigningkeypair" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L672", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae_generatepoaerlog", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_getsigningkeypair" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1819", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_detectandmigrateephemeralkey", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_detectandmigrateephemeralkey", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqencapsulationresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqdecapsulationresult", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1866", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqnotavailableerror", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqnotavailableerror_constructor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqnotavailableerror", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqnotavailableerror", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_setpqauthheadersprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L2138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqdecapsulate", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_getpqheaders", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L2078", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqencapsulate", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_getpqheaders", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L2019", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqkemgeneratekeypair", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_getpqheaders", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1969", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqkemsupportedasync", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_getpqheaders", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L2130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqdecapsulate", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_ensurepqhttpauthready", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L2070", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqencapsulate", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_ensurepqhttpauthready", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L2011", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqkemgeneratekeypair", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_ensurepqhttpauthready", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_invalidatepqavailabilitycache", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1943", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqkemsupported", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqcachettlfor", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L1963", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqkemsupportedasync", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqcachettlfor", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqkemsupported", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L2125", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqdecapsulate", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqkemsupportedasync", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L2065", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqencapsulate", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqkemsupportedasync", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts", + "source_location": "L2006", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqkemgeneratekeypair", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqkemsupportedasync", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqkemsupportedasync", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqkemsupportedasync", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc_getkeyagreementforhandshake", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqkemsupportedasync", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqkemgeneratekeypair", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqkemgeneratekeypair", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc_getkeyagreementforhandshake", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqkemgeneratekeypair", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqencapsulate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqdecapsulate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L894", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate4decryption", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqdecapsulate" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqdecapsulate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqdecapsulate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L758", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline_augmentverifyoptionsforqbeap", + "target": "apps_extension_chromium_src_beap_messages_services_beapcrypto_pqdecapsulate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L541", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_checkrecipienteligibility", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L861", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decodepbeappackage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L1097", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decodepbeappackagefromcontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L1193", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptbeappackage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptedartefact", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptedcapsulepayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptedpackage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L244", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptionresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L718", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptqbeappackage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L1009", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptqbeappackagefromcontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L317", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_default_receiver_policy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L384", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_evaluateprocessingeventgate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L1566", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_getartefactbyref", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L1580", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_getartefactsforattachment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L1594", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_getoriginalartefact", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L1610", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_getrasterartefacts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L1527", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_parsebeapfile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L329", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_processinggateresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L263", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_receiverprocessingpolicy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L233", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_verificationresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L569", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_verifyenvelopeintegrity", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L643", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_verifypackagesignature", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate6context", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gateresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_knownreceiver", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_pipelineinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_pipelineresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_rundepackagingpipeline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_senderidentity", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_eligibilitycheck", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_eligibilitycheck_eligibilitycheckresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_eligibilitycheck_evaluatelegacyeligibility", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_eligibilitycheck_evaluaterecipienteligibility", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_eligibilitycheck_localhandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_outerenvelope", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_outerenvelope_decryptinnerenvelope", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_outerenvelope_innerenvelopemetadata", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_poae", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_poae_computecapsulehash", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_poae_generatepoaerlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_poae_poaeanchorprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_poae_poaerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_poae_poaerlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_poae_poaeverificationresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_poae_verifypoaerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_authorizedprocessingresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_default_capability_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_receivercapabilitypolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_runstage61gate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_getdeclarationforclass", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_isprocessingpermitted", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_processingboundary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_processingeventoffer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_processingscope", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_urlnormalizer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_urlnormalizer_extractedurl", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_urlnormalizer_urlnormalizationverification", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_urlnormalizer_verifyurlnormalization", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "target": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_derivesharedsecretx25519", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L139", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptedcapsulepayload", + "target": "apps_extension_chromium_src_beap_messages_services_urlnormalizer_urlnormalizationverification", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptedcapsulepayload", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptedcapsulepayload", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptedartefact", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptedartefact", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L205", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptedpackage", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_pipelineresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L194", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptedpackage", + "target": "apps_extension_chromium_src_beap_messages_services_outerenvelope_innerenvelopemetadata", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L227", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptedpackage", + "target": "apps_extension_chromium_src_beap_messages_services_poae_poaerlog", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L216", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptedpackage", + "target": "apps_extension_chromium_src_beap_messages_services_poae_poaeverificationresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L183", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptedpackage", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_authorizedprocessingresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptedpackage", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_verificationresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptionresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L280", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_receiverprocessingpolicy", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_processingboundary", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_receiverprocessingpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_receiverprocessingpolicy", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate_receivercapabilitypolicy", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_receiverprocessingpolicy", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_default_receiver_policy", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L336", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_processinggateresult", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_processingboundary", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L336", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_processinggateresult", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_processingscope", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_processinggateresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_processinggateresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L250", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate_authorizedprocessingresult", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_processinggateresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L391", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_evaluateprocessingeventgate", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_getdeclarationforclass" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_evaluateprocessingeventgate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L1290", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate_runstage61gate", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_evaluateprocessingeventgate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L551", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_checkrecipienteligibility", + "target": "apps_extension_chromium_src_beap_messages_services_eligibilitycheck_evaluatelegacyeligibility" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_checkrecipienteligibility", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_verifyenvelopeintegrity", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L927", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decodepbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_verifypackagesignature", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L782", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptqbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_verifypackagesignature", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_verifypackagesignature", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L753", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptqbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_derivesharedsecretx25519" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptqbeappackage", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decodepbeappackage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L1435", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptqbeappackagefromcontext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L1024", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptqbeappackagefromcontext", + "target": "apps_extension_chromium_src_beap_messages_services_urlnormalizer_verifyurlnormalization", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L1111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decodepbeappackagefromcontext", + "target": "apps_extension_chromium_src_beap_messages_services_urlnormalizer_verifyurlnormalization", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L1437", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decodepbeappackagefromcontext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L1324", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_rundepackagingpipeline" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L1403", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_outerenvelope_decryptinnerenvelope" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L1475", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_poae_computecapsulehash" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L1479", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_poae_generatepoaerlog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L1357", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_poae_verifypoaerecord" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts", + "source_location": "L1449", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptbeappackage", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_runstage61gate" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_decryptbeappackage", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_parsebeapfile", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_parsebeapfile", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L712", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline_augmentverifyoptionsforqbeap", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_parsebeapfile", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_getartefactbyref", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_getartefactsforattachment", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_getoriginalartefact", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_beapdecrypt_getrasterartefacts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapReplyAiProvider.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapreplyaiprovider", + "target": "apps_extension_chromium_src_beap_messages_services_beapreplyaiprovider_createbeapreplyaiprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapReplyAiProvider.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapreplyaiprovider", + "target": "apps_extension_chromium_src_beap_messages_services_beapreplyaiprovider_llmgeneratefn", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapReplyAiProvider.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapreplyaiprovider", + "target": "apps_extension_chromium_src_beap_messages_services_beapreplyaiprovider_parseclassificationresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/beapReplyAiProvider.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapreplyaiprovider", + "target": "apps_extension_chromium_src_beap_messages_services_beapreplyaiprovider_valid_urgency", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_beap_messages_services_beapreplyaiprovider", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/beapReplyAiProvider.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_beapreplyaiprovider_parseclassificationresponse", + "target": "apps_extension_chromium_src_beap_messages_services_beapreplyaiprovider_valid_urgency" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_beap_messages_services_beapreplyaiprovider_createbeapreplyaiprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L604", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_beap_messages_services_beapreplyaiprovider_createbeapreplyaiprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_accepted_encodings", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_accepted_versions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L165", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate1context", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L409", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate1senderidentity", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L179", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate2context", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L509", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate2receiveridentity", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L622", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate3ciphertextintegrity", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L187", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate3context", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L206", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate4context", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L794", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate4decryption", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L226", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate5context", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L1054", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate5signatureverification", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L236", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate6context", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L1149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate6templatehash", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gateresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_knownreceiver", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L379", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_nondisclosingerror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L256", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_pipelineinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L330", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_pipelineresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L1265", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_rundepackagingpipeline", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_senderidentity", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline", + "target": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline", + "target": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_derivesharedsecretx25519", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L179", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate2context", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate1context", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate1context", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L187", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate3context", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate2context", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate2context", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L206", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate4context", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate3context", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate3context", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L226", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate5context", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate4context", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate4context", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L236", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate6context", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate5context", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate5context", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_pipelineinput", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L418", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate1senderidentity", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_nondisclosingerror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L529", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate2receiveridentity", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_nondisclosingerror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L632", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate3ciphertextintegrity", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_nondisclosingerror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L808", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate4decryption", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_nondisclosingerror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L1066", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate5signatureverification", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_nondisclosingerror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L1161", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate6templatehash", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_nondisclosingerror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L1271", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_rundepackagingpipeline", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate1senderidentity", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate1senderidentity", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L1278", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_rundepackagingpipeline", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate2receiveridentity", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate2receiveridentity", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L1285", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_rundepackagingpipeline", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate3ciphertextintegrity", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate3ciphertextintegrity", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L872", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate4decryption", + "target": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_derivesharedsecretx25519" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L1292", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_rundepackagingpipeline", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate4decryption", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate4decryption", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L1299", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_rundepackagingpipeline", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate5signatureverification", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate5signatureverification", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts", + "source_location": "L1306", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_rundepackagingpipeline", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate6templatehash", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_gate6templatehash", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_depackagingpipeline_rundepackagingpipeline", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/eligibilityCheck.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_eligibilitycheck", + "target": "apps_extension_chromium_src_beap_messages_services_eligibilitycheck_deriveeligibilitymaterial", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/eligibilityCheck.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_eligibilitycheck", + "target": "apps_extension_chromium_src_beap_messages_services_eligibilitycheck_eligibilitycheckresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/eligibilityCheck.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_eligibilitycheck", + "target": "apps_extension_chromium_src_beap_messages_services_eligibilitycheck_eligibilityoutcome", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/eligibilityCheck.ts", + "source_location": "L234", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_eligibilitycheck", + "target": "apps_extension_chromium_src_beap_messages_services_eligibilitycheck_evaluatelegacyeligibility", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/eligibilityCheck.ts", + "source_location": "L155", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_eligibilitycheck", + "target": "apps_extension_chromium_src_beap_messages_services_eligibilitycheck_evaluaterecipienteligibility", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/eligibilityCheck.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_eligibilitycheck", + "target": "apps_extension_chromium_src_beap_messages_services_eligibilitycheck_localhandshake", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/eligibilityCheck.ts", + "source_location": "L227", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_eligibilitycheck_rationale_227", + "target": "apps_extension_chromium_src_beap_messages_services_eligibilitycheck", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_eligibilitycheck", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_eligibilitycheck_eligibilityoutcome", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/eligibilityCheck.ts", + "source_location": "L183", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_eligibilitycheck_evaluaterecipienteligibility", + "target": "apps_extension_chromium_src_beap_messages_services_eligibilitycheck_deriveeligibilitymaterial", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_eligibilitycheck_deriveeligibilitymaterial", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_eligibilitycheck_evaluaterecipienteligibility", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_eligibilitycheck_evaluatelegacyeligibility", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_outerenvelope", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_outerenvelope_artefacttopology", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_outerenvelope_artefacttopologyentry", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_outerenvelope_buildartefacttopology", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_outerenvelope_decryptinnerenvelope", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_outerenvelope_encryptinnerenvelope", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_outerenvelope_innerenvelopemetadata", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_outerenvelope_outerenvelopeheader", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_outerenvelope_validateinnerenvelopeschema", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L234", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_poae", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L234", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_poae_computecapsulehash", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L234", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_poae_computepoaecommitment", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L234", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_poae_generatepoaerecord", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L234", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_poae_generatepoaerlog", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L234", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_poae_generatepoaerlogparams", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L234", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_poae_generateuuid", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L234", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_poae_localanchorprovider", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L234", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_poae_poaeanchorerror", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L234", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_poae_poaeanchorprovider", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L234", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_poae_poaeanchorreference", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L234", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_poae_poaeanchortype", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L234", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_poae_poaerecord", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L234", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_poae_poaerlog", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L234", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_poae_poaerlogstore", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L234", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_poae_poaeverificationresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L234", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_poae_verifypoaerecord", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_accessscope", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_alignimpliedwithdeclarations", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_authorizedprocessingresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_capabilitytoken", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_classconsentstatus", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_consentbindingcontext", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_consentrecord", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_consentresolutionresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_dataclass", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_default_capability_policy", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_evaluatecapabilitytokens", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_extractimpliedevents", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_gatecontext", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_gatedecision", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_gatingartefact", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_gatingauditstore", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_generategatingartefacts", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_impliedprocessingevent", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_receivercapabilitypolicy", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_resolveconsentrequirements", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_runstage61gate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L263", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L263", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_deletesigningkeyvault", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L263", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_getorcreatesigningkeypair", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L263", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_keyrotationresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L263", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_listarchivedsigningkeyids", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L263", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_loadarchivedsigningkeypair", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L263", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_loadsigningkeypair", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L263", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_migrateephemeralsigningkey", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L263", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_migrationresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L263", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_persisteded25519keypair", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L263", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_rotatesigningkeypair", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L263", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_signingkeyexists", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L263", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_storesigningkeypair", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L263", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_touchsigningkeylastused", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L289", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_urlnormalizer", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L289", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_urlnormalizer_extractedurl", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L289", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_urlnormalizer_normalizeurls", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L289", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_urlnormalizer_urlnormalizationresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L289", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_urlnormalizer_urlnormalizationverification", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L289", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_urlnormalizer_verifyurlnormalization", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L216", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L216", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_derivesharedsecretx25519", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L216", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_getdevicex25519publickey", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L216", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_hasvalidx25519key", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L216", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_validatex25519publickey", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L216", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_x25519ecdh", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L216", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_x25519keyagreementresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/index.ts", + "source_location": "L216", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_index", + "target": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_x25519keypair", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/outerEnvelope.ts", + "source_location": "L175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_outerenvelope", + "target": "apps_extension_chromium_src_beap_messages_services_outerenvelope_artefacttopology", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/outerEnvelope.ts", + "source_location": "L193", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_outerenvelope", + "target": "apps_extension_chromium_src_beap_messages_services_outerenvelope_artefacttopologyentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/outerEnvelope.ts", + "source_location": "L423", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_outerenvelope", + "target": "apps_extension_chromium_src_beap_messages_services_outerenvelope_buildartefacttopology", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/outerEnvelope.ts", + "source_location": "L486", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_outerenvelope", + "target": "apps_extension_chromium_src_beap_messages_services_outerenvelope_decodeinnerenvelopeblob", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/outerEnvelope.ts", + "source_location": "L546", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_outerenvelope", + "target": "apps_extension_chromium_src_beap_messages_services_outerenvelope_decryptinnerenvelope", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/outerEnvelope.ts", + "source_location": "L478", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_outerenvelope", + "target": "apps_extension_chromium_src_beap_messages_services_outerenvelope_encodeinnerenvelopeblob", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/outerEnvelope.ts", + "source_location": "L512", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_outerenvelope", + "target": "apps_extension_chromium_src_beap_messages_services_outerenvelope_encryptinnerenvelope", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/outerEnvelope.ts", + "source_location": "L236", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_outerenvelope", + "target": "apps_extension_chromium_src_beap_messages_services_outerenvelope_innerenvelopemetadata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/outerEnvelope.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_outerenvelope", + "target": "apps_extension_chromium_src_beap_messages_services_outerenvelope_outerenvelopeheader", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/outerEnvelope.ts", + "source_location": "L311", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_outerenvelope", + "target": "apps_extension_chromium_src_beap_messages_services_outerenvelope_validateinnerenvelopeschema", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/outerEnvelope.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_outerenvelope", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/outerEnvelope.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_outerenvelope", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_processingeventoffer", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/outerEnvelope.ts", + "source_location": "L160", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_outerenvelope_outerenvelopeheader", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_processingeventoffer", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/outerEnvelope.ts", + "source_location": "L250", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_outerenvelope_innerenvelopemetadata", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_processingeventoffer", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/outerEnvelope.ts", + "source_location": "L583", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_outerenvelope_decryptinnerenvelope", + "target": "apps_extension_chromium_src_beap_messages_services_outerenvelope_validateinnerenvelopeschema", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/outerEnvelope.ts", + "source_location": "L521", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_outerenvelope_encryptinnerenvelope", + "target": "apps_extension_chromium_src_beap_messages_services_outerenvelope_encodeinnerenvelopeblob", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/outerEnvelope.ts", + "source_location": "L552", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_outerenvelope_decryptinnerenvelope", + "target": "apps_extension_chromium_src_beap_messages_services_outerenvelope_decodeinnerenvelopeblob", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L753", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae", + "target": "apps_extension_chromium_src_beap_messages_services_poae_computecapsulehash", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L434", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae", + "target": "apps_extension_chromium_src_beap_messages_services_poae_computepoaecommitment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L466", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae", + "target": "apps_extension_chromium_src_beap_messages_services_poae_generatepoaerecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L671", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae", + "target": "apps_extension_chromium_src_beap_messages_services_poae_generatepoaerlog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L631", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae", + "target": "apps_extension_chromium_src_beap_messages_services_poae_generatepoaerlogparams", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L416", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae", + "target": "apps_extension_chromium_src_beap_messages_services_poae_generateuuid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L340", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae", + "target": "apps_extension_chromium_src_beap_messages_services_poae_localanchorentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L356", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae", + "target": "apps_extension_chromium_src_beap_messages_services_poae_localanchorprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L322", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae", + "target": "apps_extension_chromium_src_beap_messages_services_poae_poaeanchorerror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L285", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae", + "target": "apps_extension_chromium_src_beap_messages_services_poae_poaeanchorprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae", + "target": "apps_extension_chromium_src_beap_messages_services_poae_poaeanchorreference", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae", + "target": "apps_extension_chromium_src_beap_messages_services_poae_poaeanchortype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae", + "target": "apps_extension_chromium_src_beap_messages_services_poae_poaerecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L193", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae", + "target": "apps_extension_chromium_src_beap_messages_services_poae_poaerlog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L725", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae", + "target": "apps_extension_chromium_src_beap_messages_services_poae_poaerlogstore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L528", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae", + "target": "apps_extension_chromium_src_beap_messages_services_poae_poaeverificationresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L568", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae", + "target": "apps_extension_chromium_src_beap_messages_services_poae_verifypoaerecord", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L356", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae_localanchorprovider", + "target": "apps_extension_chromium_src_beap_messages_services_poae_poaeanchorprovider", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L297", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae_poaeanchorprovider", + "target": "apps_extension_chromium_src_beap_messages_services_poae_poaeanchorprovider_anchor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L316", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae_poaeanchorprovider", + "target": "apps_extension_chromium_src_beap_messages_services_poae_poaeanchorprovider_retrieve", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L308", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae_poaeanchorprovider", + "target": "apps_extension_chromium_src_beap_messages_services_poae_poaeanchorprovider_verify", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L323", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae_poaeanchorerror", + "target": "apps_extension_chromium_src_beap_messages_services_poae_poaeanchorerror_constructor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L374", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae_localanchorprovider", + "target": "apps_extension_chromium_src_beap_messages_services_poae_localanchorprovider_anchor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L368", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae_localanchorprovider", + "target": "apps_extension_chromium_src_beap_messages_services_poae_localanchorprovider_constructor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L402", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae_localanchorprovider", + "target": "apps_extension_chromium_src_beap_messages_services_poae_localanchorprovider_retrieve", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L392", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae_localanchorprovider", + "target": "apps_extension_chromium_src_beap_messages_services_poae_localanchorprovider_verify", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L510", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae_generatepoaerecord", + "target": "apps_extension_chromium_src_beap_messages_services_poae_localanchorprovider_anchor", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L705", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae_generatepoaerlog", + "target": "apps_extension_chromium_src_beap_messages_services_poae_localanchorprovider_anchor", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L375", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae_localanchorprovider_anchor", + "target": "apps_extension_chromium_src_beap_messages_services_poae_generateuuid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L613", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae_verifypoaerecord", + "target": "apps_extension_chromium_src_beap_messages_services_poae_localanchorprovider_verify", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L479", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae_generatepoaerecord", + "target": "apps_extension_chromium_src_beap_messages_services_poae_generateuuid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L674", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae_generatepoaerlog", + "target": "apps_extension_chromium_src_beap_messages_services_poae_generateuuid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L495", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae_generatepoaerecord", + "target": "apps_extension_chromium_src_beap_messages_services_poae_computepoaecommitment", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L692", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae_generatepoaerlog", + "target": "apps_extension_chromium_src_beap_messages_services_poae_computepoaecommitment", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L590", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae_verifypoaerecord", + "target": "apps_extension_chromium_src_beap_messages_services_poae_computepoaecommitment", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L740", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae_poaerlogstore", + "target": "apps_extension_chromium_src_beap_messages_services_poae_poaerlogstore_listlogsforcapsule", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L730", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae_poaerlogstore", + "target": "apps_extension_chromium_src_beap_messages_services_poae_poaerlogstore_persistlog", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/poae.ts", + "source_location": "L735", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_poae_poaerlogstore", + "target": "apps_extension_chromium_src_beap_messages_services_poae_poaerlogstore_retrievelog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_accessscope", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L445", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_alignimpliedwithdeclarations", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L242", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_authorizedprocessingresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_capabilitytoken", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L669", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_classconsentstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L1113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_computepolicyfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L573", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_consentbindingcontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L608", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_consentrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L701", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_consentresolutionresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_dataclass", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L171", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_default_capability_policy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L510", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_evaluatecapabilitytokens", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L329", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_extractimpliedevents", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L723", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_findmatchingconsentrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L1220", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_gatecontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L229", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_gatedecision", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L1011", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_gatingartefact", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L1097", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_gatingauditstore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L1137", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_generateartefactid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L1159", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_generategatingartefacts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L195", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_impliedprocessingevent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_receivercapabilitypolicy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L796", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_resolveconsentrequirements", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L1270", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_runstage61gate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_getdeclarationforclass", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_processingboundary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_processingeventclass", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_processingeventoffer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_processingscope", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L212", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate_impliedprocessingevent", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_processingboundary", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L197", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate_impliedprocessingevent", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_processingeventclass", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L215", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate_impliedprocessingevent", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_processingscope", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L1278", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate_runstage61gate", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_extractimpliedevents", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L455", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate_alignimpliedwithdeclarations", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_getdeclarationforclass" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L1281", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate_runstage61gate", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_alignimpliedwithdeclarations", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L1284", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate_runstage61gate", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_evaluatecapabilitytokens", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L578", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate_consentbindingcontext", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_processingeventclass", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L637", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate_consentrecord", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_processingboundary", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L631", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate_consentrecord", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_processingeventclass", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L643", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate_consentrecord", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_processingscope", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L890", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate_resolveconsentrequirements", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_findmatchingconsentrecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L818", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate_resolveconsentrequirements", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_getdeclarationforclass" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L1293", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate_runstage61gate", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_resolveconsentrequirements", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L1022", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate_gatingartefact", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_processingboundary", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L1016", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate_gatingartefact", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_processingeventclass", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L1025", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate_gatingartefact", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_processingscope", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L1103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate_gatingauditstore", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_gatingauditstore_persistgatingartefacts", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L1339", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate_runstage61gate", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_gatingauditstore_persistgatingartefacts", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L1170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate_generategatingartefacts", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_computepolicyfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L1178", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate_generategatingartefacts", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_generateartefactid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L1175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate_generategatingartefacts", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_getdeclarationforclass" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts", + "source_location": "L1330", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingeventgate_runstage61gate", + "target": "apps_extension_chromium_src_beap_messages_services_processingeventgate_generategatingartefacts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L707", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingevents", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_builddefaultprocessingoffer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L743", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingevents", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_buildlocalsemanticoffer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L791", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingevents", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_buildremotesemanticoffer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L594", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingevents", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_coercedeclarationtononeifunboundable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L278", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingevents", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_consentselectableoffer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L333", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingevents", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_consentselectableofferset", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L878", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingevents", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_getdeclarationforclass", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L910", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingevents", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_getprovideridsforclass", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L923", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingevents", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_getretentionforclass", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L899", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingevents", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_isprocessingpermitted", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L839", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingevents", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_mergewithnonedefaults", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingevents", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_processingboundary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingevents", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_processingeventclass", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L142", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingevents", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_processingeventdeclaration", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L227", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingevents", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_processingeventoffer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L342", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingevents", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_processingeventvalidationerror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingevents", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_processingprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingevents", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_processingretention", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingevents", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_processingscope", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L374", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingevents", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_valid_boundaries", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L373", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingevents", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_valid_classes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L376", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingevents", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_valid_retentions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L375", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingevents", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_valid_scopes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L634", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingevents", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_validateofferset", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L433", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingevents", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_validateprocessingeventoffer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L382", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingevents", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_validateprovider", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L631", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingevents_rationale_631", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L462", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingevents_validateprocessingeventoffer", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_valid_classes" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L499", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingevents_validateprocessingeventoffer", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_valid_retentions" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L540", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingevents_validateprocessingeventoffer", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_validateprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L673", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingevents_validateofferset", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_validateprocessingeventoffer", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L855", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingevents_mergewithnonedefaults", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_coercedeclarationtononeifunboundable", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L750", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingevents_buildlocalsemanticoffer", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_builddefaultprocessingoffer", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L799", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingevents_buildremotesemanticoffer", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_builddefaultprocessingoffer", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L914", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingevents_getprovideridsforclass", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_getdeclarationforclass", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L927", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingevents_getretentionforclass", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_getdeclarationforclass", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/processingEvents.ts", + "source_location": "L903", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_processingevents_isprocessingpermitted", + "target": "apps_extension_chromium_src_beap_messages_services_processingevents_getdeclarationforclass", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_archivedvaultrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L280", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_decryptkeypair", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L569", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_deletesigningkeyvault", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L202", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_deriveencryptionkey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L261", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_encryptkeypair", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L171", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_frombase64vault", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L348", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_generaterawed25519", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L232", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_getorcreatefallbackikm", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L444", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_getorcreatesigningkeypair", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L178", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_getrandombytesvault", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_keyrotationresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L531", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_listarchivedsigningkeyids", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L545", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_loadarchivedsigningkeypair", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L421", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_loadsigningkeypair", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L597", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_migrateephemeralsigningkey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L144", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_migrationresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_persisteded25519keypair", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L321", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_readarchive", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L300", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_readvaultrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L488", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_rotatesigningkeypair", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_safeatobvault", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L184", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_sha256vault", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L386", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_signingkeyexists", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L397", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_storesigningkeypair", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L155", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_tobase64vault", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L463", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_touchsigningkeylastused", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_vaultarchive", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_vaultrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L334", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_writearchive", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L313", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_writevaultrecord", + "confidence_score": 1.0 + }, + { + "relation": "cites", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L214", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault", + "target": "docref_rfc_5869", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_rationale_52", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_archivedvaultrecord", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_vaultrecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L275", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_encryptkeypair", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_tobase64vault", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L371", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_generaterawed25519", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_tobase64vault", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L246", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_getorcreatefallbackikm", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_tobase64vault", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L172", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_frombase64vault", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_safeatobvault", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L284", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_decryptkeypair", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_frombase64vault", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L242", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_getorcreatefallbackikm", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_frombase64vault", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L266", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_encryptkeypair", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_getrandombytesvault", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L364", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_generaterawed25519", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_getrandombytesvault", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L245", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_getorcreatefallbackikm", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_getrandombytesvault", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L366", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_generaterawed25519", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_sha256vault", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L203", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_deriveencryptionkey", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_getorcreatefallbackikm", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L553", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_loadarchivedsigningkeypair", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_deriveencryptionkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L426", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_loadsigningkeypair", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_deriveencryptionkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L494", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_rotatesigningkeypair", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_deriveencryptionkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L400", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_storesigningkeypair", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_deriveencryptionkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L495", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_rotatesigningkeypair", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_encryptkeypair", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L401", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_storesigningkeypair", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_encryptkeypair", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L554", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_loadarchivedsigningkeypair", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_decryptkeypair", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L427", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_loadsigningkeypair", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_decryptkeypair", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L422", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_loadsigningkeypair", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_readvaultrecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L387", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_signingkeyexists", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_readvaultrecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L412", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_storesigningkeypair", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_writevaultrecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L532", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_listarchivedsigningkeyids", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_readarchive", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L548", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_loadarchivedsigningkeypair", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_readarchive", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L493", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_rotatesigningkeypair", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_readarchive", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L509", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_rotatesigningkeypair", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_writearchive", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L451", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_getorcreatesigningkeypair", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_generaterawed25519", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L490", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_rotatesigningkeypair", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_generaterawed25519", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L452", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_getorcreatesigningkeypair", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_storesigningkeypair", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L621", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_migrateephemeralsigningkey", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_storesigningkeypair", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L512", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_rotatesigningkeypair", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_storesigningkeypair", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L468", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_touchsigningkeylastused", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_storesigningkeypair", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L445", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_getorcreatesigningkeypair", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_loadsigningkeypair", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L603", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_migrateephemeralsigningkey", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_loadsigningkeypair", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L465", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_touchsigningkeylastused", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_loadsigningkeypair", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts", + "source_location": "L489", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_rotatesigningkeypair", + "target": "apps_extension_chromium_src_beap_messages_services_signingkeyvault_getorcreatesigningkeypair", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/stripAgentBoxesFromGrids.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_stripagentboxesfromgrids", + "target": "apps_extension_chromium_src_beap_messages_services_stripagentboxesfromgrids_stripagentboxesfromgrids", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/stripAgentBoxesFromGrids.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_stripagentboxesfromgrids", + "target": "apps_extension_chromium_src_beap_messages_services_stripagentboxesfromgrids_stripfromsession", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/extension-chromium/src/beap-messages/services/stripAgentBoxesFromGrids.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_stripagentboxesfromgrids_stripagentboxesfromgrids", + "target": "apps_extension_chromium_src_beap_messages_services_stripagentboxesfromgrids_stripfromsession", + "confidence_score": 0.5 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/urlNormalizer.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_urlnormalizer", + "target": "apps_extension_chromium_src_beap_messages_services_urlnormalizer_extractedurl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/urlNormalizer.ts", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_urlnormalizer", + "target": "apps_extension_chromium_src_beap_messages_services_urlnormalizer_normalizesingleurl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/urlNormalizer.ts", + "source_location": "L227", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_urlnormalizer", + "target": "apps_extension_chromium_src_beap_messages_services_urlnormalizer_normalizeurls", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/urlNormalizer.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_urlnormalizer", + "target": "apps_extension_chromium_src_beap_messages_services_urlnormalizer_safedecodeurl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/urlNormalizer.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_urlnormalizer", + "target": "apps_extension_chromium_src_beap_messages_services_urlnormalizer_tracking_params", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/urlNormalizer.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_urlnormalizer", + "target": "apps_extension_chromium_src_beap_messages_services_urlnormalizer_urlnormalizationresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/urlNormalizer.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_urlnormalizer", + "target": "apps_extension_chromium_src_beap_messages_services_urlnormalizer_urlnormalizationverification", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/urlNormalizer.ts", + "source_location": "L311", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_urlnormalizer", + "target": "apps_extension_chromium_src_beap_messages_services_urlnormalizer_verifyurlnormalization", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/beap-messages/services/urlNormalizer.ts", + "source_location": "L166", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_urlnormalizer_normalizesingleurl", + "target": "apps_extension_chromium_src_beap_messages_services_urlnormalizer_tracking_params" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/urlNormalizer.ts", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_urlnormalizer_normalizesingleurl", + "target": "apps_extension_chromium_src_beap_messages_services_urlnormalizer_safedecodeurl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/urlNormalizer.ts", + "source_location": "L261", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_urlnormalizer_normalizeurls", + "target": "apps_extension_chromium_src_beap_messages_services_urlnormalizer_normalizesingleurl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/urlNormalizer.ts", + "source_location": "L316", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_urlnormalizer_verifyurlnormalization", + "target": "apps_extension_chromium_src_beap_messages_services_urlnormalizer_normalizeurls", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/x25519KeyAgreement.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement", + "target": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_beap_x25519_device_keypair_storage_key", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/x25519KeyAgreement.ts", + "source_location": "L161", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement", + "target": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_derivesharedsecretx25519", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/x25519KeyAgreement.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement", + "target": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_devicekeynotfounderror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/x25519KeyAgreement.ts", + "source_location": "L203", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement", + "target": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_frombase64", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/x25519KeyAgreement.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement", + "target": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_getdevicex25519publickey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/x25519KeyAgreement.ts", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement", + "target": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_getpersisteddevicex25519publickeyb64fromchromestorage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/x25519KeyAgreement.ts", + "source_location": "L232", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement", + "target": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_hasvalidx25519key", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/x25519KeyAgreement.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement", + "target": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_sendbeaprpc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/x25519KeyAgreement.ts", + "source_location": "L246", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement", + "target": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_validatex25519publickey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/x25519KeyAgreement.ts", + "source_location": "L214", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement", + "target": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_x25519ecdh", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/x25519KeyAgreement.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement", + "target": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_x25519keyagreementresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/x25519KeyAgreement.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement", + "target": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_x25519keypair", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc", + "target": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeService.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakeservice", + "target": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/__tests__/handshakeRpc.test.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_tests_handshakerpc_test", + "target": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline", + "target": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/x25519KeyAgreement.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_devicekeynotfounderror", + "target": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_devicekeynotfounderror_constructor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc", + "target": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_getdevicex25519publickey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc_getkeyagreementforhandshake", + "target": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_getdevicex25519publickey", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeService.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakeservice", + "target": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_getdevicex25519publickey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/handshakeService.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakeservice_getouridentity", + "target": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_getdevicex25519publickey" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/__tests__/handshakeRpc.test.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_tests_handshakerpc_test", + "target": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_getdevicex25519publickey", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc", + "target": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_getpersisteddevicex25519publickeyb64fromchromestorage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L322", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc_accepthandshake", + "target": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_getpersisteddevicex25519publickeyb64fromchromestorage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/__tests__/handshakeRpc.test.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_tests_handshakerpc_test", + "target": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_getpersisteddevicex25519publickeyb64fromchromestorage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline", + "target": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_derivesharedsecretx25519", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L757", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline_augmentverifyoptionsforqbeap", + "target": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_derivesharedsecretx25519", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/x25519KeyAgreement.ts", + "source_location": "L235", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_hasvalidx25519key", + "target": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_frombase64", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/x25519KeyAgreement.ts", + "source_location": "L250", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_validatex25519publickey", + "target": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_frombase64", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/services/x25519KeyAgreement.ts", + "source_location": "L218", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_x25519ecdh", + "target": "apps_extension_chromium_src_beap_messages_services_x25519keyagreement_frombase64", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sessionImportPayloadResolver.ts", + "source_location": "L301", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver", + "target": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver_beapsessionimportactionsenabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sessionImportPayloadResolver.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver", + "target": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver_beapsessionimportresolution", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sessionImportPayloadResolver.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver", + "target": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver_beapsessionimportresolutioninvalid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sessionImportPayloadResolver.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver", + "target": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver_beapsessionimportresolutionnone", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sessionImportPayloadResolver.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver", + "target": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver_beapsessionimportresolutionvalid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sessionImportPayloadResolver.ts", + "source_location": "L306", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver", + "target": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver_beapsessionimportuihint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sessionImportPayloadResolver.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver", + "target": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver_islikelysessionjsonattachment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sessionImportPayloadResolver.ts", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver", + "target": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver_parsesemanticjson", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sessionImportPayloadResolver.ts", + "source_location": "L232", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver", + "target": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver_resolvebeapsessionimportpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sessionImportPayloadResolver.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver", + "target": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver_sessionjsonhasimportablesubstance", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sessionImportPayloadResolver.ts", + "source_location": "L137", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver", + "target": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver_tryattachment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sessionImportPayloadResolver.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver", + "target": "apps_extension_chromium_src_services_sessionimportcore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sessionImportPayloadResolver.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver", + "target": "apps_extension_chromium_src_services_sessionimportcore_normalizedsessionimport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sessionImportPayloadResolver.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver", + "target": "apps_extension_chromium_src_services_sessionimportcore_safenormalizeimportedsessionpayload", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sessionImportPayloadResolver.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver_beapsessionimportresolutionvalid", + "target": "apps_extension_chromium_src_services_sessionimportcore_normalizedsessionimport", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sessionImportPayloadResolver.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver_tryattachment", + "target": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver_islikelysessionjsonattachment", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sessionImportPayloadResolver.ts", + "source_location": "L181", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver_tryattachment", + "target": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver_sessionjsonhasimportablesubstance", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sessionImportPayloadResolver.ts", + "source_location": "L144", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver_tryattachment", + "target": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver_parsesemanticjson", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sessionImportPayloadResolver.ts", + "source_location": "L277", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver_resolvebeapsessionimportpayload", + "target": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver_tryattachment", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/sessionImportPayloadResolver.ts", + "source_location": "L194", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_sessionimportpayloadresolver_tryattachment", + "target": "apps_extension_chromium_src_services_sessionimportcore_safenormalizeimportedsessionpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/types.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_types", + "target": "apps_extension_chromium_src_beap_messages_types_beapattachment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/types.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_types", + "target": "apps_extension_chromium_src_beap_messages_types_beapdeliverymethod", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/types.ts", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_types", + "target": "apps_extension_chromium_src_beap_messages_types_beapdeliverystatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/types.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_types", + "target": "apps_extension_chromium_src_beap_messages_types_beapdirection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/types.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_types", + "target": "apps_extension_chromium_src_beap_messages_types_beapfolder", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/types.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_types", + "target": "apps_extension_chromium_src_beap_messages_types_beapmessagestatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/types.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_types", + "target": "apps_extension_chromium_src_beap_messages_types_beapmessageui", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/types.ts", + "source_location": "L260", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_types", + "target": "apps_extension_chromium_src_beap_messages_types_capsulemetadataui", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/types.ts", + "source_location": "L354", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_types", + "target": "apps_extension_chromium_src_beap_messages_types_delivery_method_config", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/types.ts", + "source_location": "L186", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_types", + "target": "apps_extension_chromium_src_beap_messages_types_deliveryattempt", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/types.ts", + "source_location": "L228", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_types", + "target": "apps_extension_chromium_src_beap_messages_types_envelopesummaryui", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/types.ts", + "source_location": "L294", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_types", + "target": "apps_extension_chromium_src_beap_messages_types_folder_configs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/types.ts", + "source_location": "L284", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_types", + "target": "apps_extension_chromium_src_beap_messages_types_folderconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/types.ts", + "source_location": "L208", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_types", + "target": "apps_extension_chromium_src_beap_messages_types_rejectionreasonui", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/types.ts", + "source_location": "L337", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_types", + "target": "apps_extension_chromium_src_beap_messages_types_status_config", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/types.ts", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_types", + "target": "apps_extension_chromium_src_beap_messages_types_verificationstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapMessagesStore.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore", + "target": "apps_extension_chromium_src_beap_messages_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/useVerifyMessage.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_useverifymessage", + "target": "apps_extension_chromium_src_beap_messages_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/components/SafePreviewPanel.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_components_safepreviewpanel", + "target": "apps_extension_chromium_src_beap_messages_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapMessagesStore.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore", + "target": "apps_extension_chromium_src_beap_messages_types_beapfolder", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapMessagesStore.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_beapmessagesstate", + "target": "apps_extension_chromium_src_beap_messages_types_beapfolder", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapMessagesStore.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore", + "target": "apps_extension_chromium_src_beap_messages_types_beapmessagestatus", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapMessagesStore.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore", + "target": "apps_extension_chromium_src_beap_messages_types_beapmessageui", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapMessagesStore.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_beapmessagesstate", + "target": "apps_extension_chromium_src_beap_messages_types_beapmessageui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/components/SafePreviewPanel.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_components_safepreviewpanel", + "target": "apps_extension_chromium_src_beap_messages_types_beapmessageui", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/components/SafePreviewPanel.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_components_safepreviewpanel_safepreviewpanelprops", + "target": "apps_extension_chromium_src_beap_messages_types_beapmessageui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapMessagesStore.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore", + "target": "apps_extension_chromium_src_beap_messages_types_beapdeliverystatus", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapMessagesStore.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_beapmessagesstate", + "target": "apps_extension_chromium_src_beap_messages_types_beapdeliverystatus", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapMessagesStore.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore", + "target": "apps_extension_chromium_src_beap_messages_types_deliveryattempt", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapMessagesStore.ts", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_beapmessagesstate", + "target": "apps_extension_chromium_src_beap_messages_types_deliveryattempt", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapMessagesStore.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore", + "target": "apps_extension_chromium_src_beap_messages_types_verificationstatus", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapMessagesStore.ts", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_beapmessagesstate", + "target": "apps_extension_chromium_src_beap_messages_types_verificationstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapMessagesStore.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore", + "target": "apps_extension_chromium_src_beap_messages_types_rejectionreasonui", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapMessagesStore.ts", + "source_location": "L142", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_beapmessagesstate", + "target": "apps_extension_chromium_src_beap_messages_types_rejectionreasonui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/useVerifyMessage.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_useverifymessage", + "target": "apps_extension_chromium_src_beap_messages_types_rejectionreasonui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapMessagesStore.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore", + "target": "apps_extension_chromium_src_beap_messages_types_envelopesummaryui", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapMessagesStore.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_beapmessagesstate", + "target": "apps_extension_chromium_src_beap_messages_types_envelopesummaryui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/useVerifyMessage.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_useverifymessage", + "target": "apps_extension_chromium_src_beap_messages_types_envelopesummaryui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapMessagesStore.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore", + "target": "apps_extension_chromium_src_beap_messages_types_capsulemetadataui", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapMessagesStore.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_beapmessagesstate", + "target": "apps_extension_chromium_src_beap_messages_types_capsulemetadataui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/useVerifyMessage.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_useverifymessage", + "target": "apps_extension_chromium_src_beap_messages_types_capsulemetadataui", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapinboxstore", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_beapinboxstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapinboxstore", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_mutationresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapinboxstore", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_refreshmode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L223", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapinboxstore", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_sortbytimestampdesc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L227", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapinboxstore", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_updatemessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L240", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapinboxstore", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_urgencytoscore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L255", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapinboxstore", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_usebeapinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L599", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapinboxstore", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_usebulkviewpage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L596", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapinboxstore", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_usehandshakemessages", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L593", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapinboxstore", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_useinboxview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L602", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapinboxstore", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_usependingdeletionmessages", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L608", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapinboxstore", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_useselectedbeapmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L605", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapinboxstore", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_useurgentmessages", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapinboxstore", + "target": "apps_extension_chromium_src_handshake_handshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapinboxstore", + "target": "apps_extension_chromium_src_handshake_handshakerpc_beapinboxarchive", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapinboxstore", + "target": "apps_extension_chromium_src_handshake_handshakerpc_beapinboxclassify", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapinboxstore", + "target": "apps_extension_chromium_src_handshake_handshakerpc_beapinboxmarkread", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapinboxstore", + "target": "apps_extension_chromium_src_handshake_handshakerpc_beapinboxseturgency", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapinboxstore", + "target": "apps_extension_chromium_src_handshake_handshakerpc_beapinboxunarchive", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapinboxstore", + "target": "apps_extension_chromium_src_handshake_handshakerpc_getbeapinboxmany", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapinboxstore", + "target": "apps_extension_chromium_src_handshake_handshakerpc_getbeapinboxmessages", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeDetailsPanel.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakedetailspanel", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/pendingP2PBeapQueue.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_pendingp2pbeapqueue", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/usePendingP2PBeapIngestion.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_usependingp2pbeapingestion", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L600", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_usebulkviewpage", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_usebeapinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L597", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_usehandshakemessages", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_usebeapinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L594", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_useinboxview", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_usebeapinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L603", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_usependingdeletionmessages", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_usebeapinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L609", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_useselectedbeapmessage", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_usebeapinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts", + "source_location": "L606", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_useurgentmessages", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_usebeapinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeDetailsPanel.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakedetailspanel", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_usebeapinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeDetailsPanel.tsx", + "source_location": "L214", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakedetailspanel_handshakedetailspanel", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_usebeapinboxstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/pendingP2PBeapQueue.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_pendingp2pbeapqueue", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_usebeapinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/usePendingP2PBeapIngestion.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_usependingp2pbeapingestion", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_usebeapinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_usebeapinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_usebeapinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_beap_messages_usebeapinboxstore_usebeapinboxstore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapMessagesStore.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore", + "target": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_beapmessagesstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapMessagesStore.ts", + "source_location": "L435", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore", + "target": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_usearchivedmessages", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapMessagesStore.ts", + "source_location": "L158", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore", + "target": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_usebeapmessagesstore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapMessagesStore.ts", + "source_location": "L429", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore", + "target": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_useinboxmessages", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapMessagesStore.ts", + "source_location": "L432", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore", + "target": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_useoutboxmessages", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapMessagesStore.ts", + "source_location": "L438", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore", + "target": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_userejectedmessages", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapMessagesStore.ts", + "source_location": "L444", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore", + "target": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_usesearchquery", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapMessagesStore.ts", + "source_location": "L441", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore", + "target": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_useselectedmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/useVerifyMessage.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_useverifymessage", + "target": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline", + "target": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/useReconstruction.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_usereconstruction", + "target": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapMessagesStore.ts", + "source_location": "L436", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_usearchivedmessages", + "target": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_usebeapmessagesstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapMessagesStore.ts", + "source_location": "L430", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_useinboxmessages", + "target": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_usebeapmessagesstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapMessagesStore.ts", + "source_location": "L433", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_useoutboxmessages", + "target": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_usebeapmessagesstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapMessagesStore.ts", + "source_location": "L439", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_userejectedmessages", + "target": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_usebeapmessagesstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapMessagesStore.ts", + "source_location": "L445", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_usesearchquery", + "target": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_usebeapmessagesstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/useBeapMessagesStore.ts", + "source_location": "L442", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_useselectedmessage", + "target": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_usebeapmessagesstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/useVerifyMessage.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_useverifymessage", + "target": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_usebeapmessagesstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/envelope-evaluation/useVerifyMessage.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_useverifymessage_useverifymessage", + "target": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_usebeapmessagesstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline", + "target": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_usebeapmessagesstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/useReconstruction.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_usereconstruction", + "target": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_usebeapmessagesstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/reconstruction/useReconstruction.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_usereconstruction_usereconstruction", + "target": "apps_extension_chromium_src_beap_messages_usebeapmessagesstore_usebeapmessagesstore" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/validation/beapBuildValidation.ts", + "source_location": "L276", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_validation_beapbuildvalidation", + "target": "apps_extension_chromium_src_beap_messages_validation_beapbuildvalidation_runbuildvalidation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/validation/beapBuildValidation.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_validation_beapbuildvalidation", + "target": "apps_extension_chromium_src_beap_messages_validation_beapbuildvalidation_validatebuiltqbeappackage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/validation/beapBuildValidation.ts", + "source_location": "L277", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_validation_beapbuildvalidation_runbuildvalidation", + "target": "apps_extension_chromium_src_beap_messages_validation_beapbuildvalidation_validatebuiltqbeappackage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/validationState.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_validationstate", + "target": "apps_extension_chromium_src_beap_messages_validationstate_conformant_validation_reasons", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/validationState.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_validationstate", + "target": "apps_extension_chromium_src_beap_messages_validationstate_getvalidationstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/beap-messages/validationState.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_beap_messages_validationstate", + "target": "apps_extension_chromium_src_beap_messages_validationstate_validationstate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/components/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_components_index", + "target": "apps_extension_chromium_src_bundled_tools_components_thirdpartylicensesview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/components/ThirdPartyLicensesView.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_components_thirdpartylicensesview", + "target": "apps_extension_chromium_src_bundled_tools_components_thirdpartylicensesview_thirdpartylicensesview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/components/ThirdPartyLicensesView.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_components_thirdpartylicensesview", + "target": "apps_extension_chromium_src_bundled_tools_components_thirdpartylicensesview_thirdpartylicensesviewprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/components/ThirdPartyLicensesView.tsx", + "source_location": "L229", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_components_thirdpartylicensesview", + "target": "apps_extension_chromium_src_bundled_tools_components_thirdpartylicensesview_toollicensecard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/components/ThirdPartyLicensesView.tsx", + "source_location": "L220", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_components_thirdpartylicensesview", + "target": "apps_extension_chromium_src_bundled_tools_components_thirdpartylicensesview_toollicensecardprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/components/ThirdPartyLicensesView.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_components_thirdpartylicensesview", + "target": "apps_extension_chromium_src_bundled_tools_licenses", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/components/ThirdPartyLicensesView.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_components_thirdpartylicensesview", + "target": "apps_extension_chromium_src_bundled_tools_licenses_bundled_tool_licenses", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/components/ThirdPartyLicensesView.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_components_thirdpartylicensesview", + "target": "apps_extension_chromium_src_bundled_tools_licenses_bundledtoollicenseentry", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/components/ThirdPartyLicensesView.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_components_thirdpartylicensesview", + "target": "apps_extension_chromium_src_bundled_tools_registry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/components/ThirdPartyLicensesView.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_components_thirdpartylicensesview", + "target": "apps_extension_chromium_src_bundled_tools_registry_exporttoolinfo", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/components/ThirdPartyLicensesView.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_components_thirdpartylicensesview", + "target": "apps_extension_chromium_src_bundled_tools_registry_gettoolregistry", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/components/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_components_index", + "target": "apps_extension_chromium_src_bundled_tools_components_thirdpartylicensesview_thirdpartylicensesview", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/bundled-tools/components/ThirdPartyLicensesView.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_components_thirdpartylicensesview_thirdpartylicensesview", + "target": "apps_extension_chromium_src_bundled_tools_registry_exporttoolinfo" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/index.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_index", + "target": "apps_extension_chromium_src_bundled_tools_components_thirdpartylicensesview_thirdpartylicensesview", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_bundled_tools_components_thirdpartylicensesview_thirdpartylicensesview", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/components/ThirdPartyLicensesView.tsx", + "source_location": "L221", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_components_thirdpartylicensesview_toollicensecardprops", + "target": "apps_extension_chromium_src_bundled_tools_licenses_bundledtoollicenseentry", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/index.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_index", + "target": "apps_extension_chromium_src_bundled_tools_components_index", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_executor", + "target": "apps_extension_chromium_src_bundled_tools_executor_asserttoolavailable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_executor", + "target": "apps_extension_chromium_src_bundled_tools_executor_asserttoolsready", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_executor", + "target": "apps_extension_chromium_src_bundled_tools_executor_canparse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L182", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_executor", + "target": "apps_extension_chromium_src_bundled_tools_executor_canrasterize", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L303", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_executor", + "target": "apps_extension_chromium_src_bundled_tools_executor_clearexecutionlog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_executor", + "target": "apps_extension_chromium_src_bundled_tools_executor_executeparser", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_executor", + "target": "apps_extension_chromium_src_bundled_tools_executor_executerasterizer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L266", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_executor", + "target": "apps_extension_chromium_src_bundled_tools_executor_executionlog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L254", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_executor", + "target": "apps_extension_chromium_src_bundled_tools_executor_executionlogentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L296", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_executor", + "target": "apps_extension_chromium_src_bundled_tools_executor_getexecutionlog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_executor", + "target": "apps_extension_chromium_src_bundled_tools_executor_getsupportedparseformats", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L271", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_executor", + "target": "apps_extension_chromium_src_bundled_tools_executor_logexecution", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L195", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_executor", + "target": "apps_extension_chromium_src_bundled_tools_executor_parsedocument", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L223", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_executor", + "target": "apps_extension_chromium_src_bundled_tools_executor_rasterizepage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_executor", + "target": "apps_extension_chromium_src_bundled_tools_registry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_executor", + "target": "apps_extension_chromium_src_bundled_tools_registry_aretoolsready", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_executor", + "target": "apps_extension_chromium_src_bundled_tools_registry_getparser", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_executor", + "target": "apps_extension_chromium_src_bundled_tools_registry_getrasterizer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_executor", + "target": "apps_extension_chromium_src_bundled_tools_registry_gettool", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_executor", + "target": "apps_extension_chromium_src_bundled_tools_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_executor", + "target": "apps_extension_chromium_src_bundled_tools_types_parserrequest", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_executor", + "target": "apps_extension_chromium_src_bundled_tools_types_parserresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_executor", + "target": "apps_extension_chromium_src_bundled_tools_types_rasterizerrequest", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_executor", + "target": "apps_extension_chromium_src_bundled_tools_types_rasterizerresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_executor", + "target": "apps_extension_chromium_src_bundled_tools_types_supportedformat", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_executor_rationale_129", + "target": "apps_extension_chromium_src_bundled_tools_executor", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_executor_rationale_58", + "target": "apps_extension_chromium_src_bundled_tools_executor", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/index.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_index", + "target": "apps_extension_chromium_src_bundled_tools_executor", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_executor_asserttoolsready", + "target": "apps_extension_chromium_src_bundled_tools_registry_aretoolsready", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_executor_asserttoolavailable", + "target": "apps_extension_chromium_src_bundled_tools_registry_gettool", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_executor_executeparser", + "target": "apps_extension_chromium_src_bundled_tools_executor_asserttoolavailable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_executor_executerasterizer", + "target": "apps_extension_chromium_src_bundled_tools_executor_asserttoolavailable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_executor_executeparser", + "target": "apps_extension_chromium_src_bundled_tools_registry_gettool" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L211", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_executor_parsedocument", + "target": "apps_extension_chromium_src_bundled_tools_executor_executeparser", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/index.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_index", + "target": "apps_extension_chromium_src_bundled_tools_executor_executeparser", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_executor_canparse", + "target": "apps_extension_chromium_src_bundled_tools_registry_getparser" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/index.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_index", + "target": "apps_extension_chromium_src_bundled_tools_executor_canparse", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_executor_getsupportedparseformats", + "target": "apps_extension_chromium_src_bundled_tools_registry_getparser" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/index.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_index", + "target": "apps_extension_chromium_src_bundled_tools_executor_getsupportedparseformats", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L142", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_executor_executerasterizer", + "target": "apps_extension_chromium_src_bundled_tools_registry_gettool" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L240", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_executor_rasterizepage", + "target": "apps_extension_chromium_src_bundled_tools_executor_executerasterizer", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/index.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_index", + "target": "apps_extension_chromium_src_bundled_tools_executor_executerasterizer", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L183", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_executor_canrasterize", + "target": "apps_extension_chromium_src_bundled_tools_registry_getrasterizer" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/index.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_index", + "target": "apps_extension_chromium_src_bundled_tools_executor_canrasterize", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_executor_parsedocument", + "target": "apps_extension_chromium_src_bundled_tools_registry_getparser" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/index.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_index", + "target": "apps_extension_chromium_src_bundled_tools_executor_parsedocument", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/bundled-tools/executor.ts", + "source_location": "L228", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_executor_rasterizepage", + "target": "apps_extension_chromium_src_bundled_tools_registry_getrasterizer" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/index.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_index", + "target": "apps_extension_chromium_src_bundled_tools_executor_rasterizepage", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/index.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_index", + "target": "apps_extension_chromium_src_bundled_tools_executor_logexecution", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/index.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_index", + "target": "apps_extension_chromium_src_bundled_tools_executor_getexecutionlog", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/index.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_index", + "target": "apps_extension_chromium_src_bundled_tools_executor_clearexecutionlog", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/index.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_index", + "target": "apps_extension_chromium_src_bundled_tools_licenses", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/index.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_index", + "target": "apps_extension_chromium_src_bundled_tools_licenses_apache_tika_license", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/index.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_index", + "target": "apps_extension_chromium_src_bundled_tools_licenses_bundled_tool_licenses", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/index.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_index", + "target": "apps_extension_chromium_src_bundled_tools_licenses_bundledtoollicenseentry", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/index.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_index", + "target": "apps_extension_chromium_src_bundled_tools_licenses_getlicensefortool", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/index.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_index", + "target": "apps_extension_chromium_src_bundled_tools_licenses_ispermissivelicense", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/index.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_index", + "target": "apps_extension_chromium_src_bundled_tools_licenses_license_templates", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/index.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_index", + "target": "apps_extension_chromium_src_bundled_tools_licenses_pdfium_license", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/index.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_index", + "target": "apps_extension_chromium_src_bundled_tools_registry", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/index.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_index", + "target": "apps_extension_chromium_src_bundled_tools_registry_aretoolsready", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/index.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_index", + "target": "apps_extension_chromium_src_bundled_tools_registry_exporttoolinfo", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/index.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_index", + "target": "apps_extension_chromium_src_bundled_tools_registry_generatediagnosticreport", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/index.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_index", + "target": "apps_extension_chromium_src_bundled_tools_registry_getparser", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/index.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_index", + "target": "apps_extension_chromium_src_bundled_tools_registry_getrasterizer", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/index.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_index", + "target": "apps_extension_chromium_src_bundled_tools_registry_gettool", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/index.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_index", + "target": "apps_extension_chromium_src_bundled_tools_registry_gettooldiagnostic", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/index.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_index", + "target": "apps_extension_chromium_src_bundled_tools_registry_gettoolregistry", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/index.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_index", + "target": "apps_extension_chromium_src_bundled_tools_registry_gettoolsbycategory", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/index.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_index", + "target": "apps_extension_chromium_src_bundled_tools_registry_isformatsupported", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/index.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_index", + "target": "apps_extension_chromium_src_bundled_tools_registry_loadregistry", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/index.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_index", + "target": "apps_extension_chromium_src_bundled_tools_registry_registertool", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/index.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_index", + "target": "apps_extension_chromium_src_bundled_tools_registry_registry_version", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/index.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_index", + "target": "apps_extension_chromium_src_bundled_tools_registry_resetregistry", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/index.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_index", + "target": "apps_extension_chromium_src_bundled_tools_registry_third_party_path", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/index.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_index", + "target": "apps_extension_chromium_src_bundled_tools_registry_verifyalltools", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/index.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_index", + "target": "apps_extension_chromium_src_bundled_tools_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_bundled_tools_index", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/licenses.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_licenses", + "target": "apps_extension_chromium_src_bundled_tools_licenses_apache_2_0_text", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/licenses.ts", + "source_location": "L204", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_licenses", + "target": "apps_extension_chromium_src_bundled_tools_licenses_apache_tika_license", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/licenses.ts", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_licenses", + "target": "apps_extension_chromium_src_bundled_tools_licenses_bsd_3_clause_text", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/licenses.ts", + "source_location": "L251", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_licenses", + "target": "apps_extension_chromium_src_bundled_tools_licenses_bundled_tool_licenses", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/licenses.ts", + "source_location": "L227", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_licenses", + "target": "apps_extension_chromium_src_bundled_tools_licenses_bundledtoollicenseentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/licenses.ts", + "source_location": "L273", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_licenses", + "target": "apps_extension_chromium_src_bundled_tools_licenses_getlicensefortool", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/licenses.ts", + "source_location": "L282", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_licenses", + "target": "apps_extension_chromium_src_bundled_tools_licenses_ispermissivelicense", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/licenses.ts", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_licenses", + "target": "apps_extension_chromium_src_bundled_tools_licenses_license_templates", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/licenses.ts", + "source_location": "L215", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_licenses", + "target": "apps_extension_chromium_src_bundled_tools_licenses_pdfium_license", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/licenses.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_licenses", + "target": "apps_extension_chromium_src_bundled_tools_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/licenses.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_licenses", + "target": "apps_extension_chromium_src_bundled_tools_types_licenseidentifier", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/licenses.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_licenses", + "target": "apps_extension_chromium_src_bundled_tools_types_licenseinfo", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_registry", + "target": "apps_extension_chromium_src_bundled_tools_licenses", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/licenses.ts", + "source_location": "L244", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_licenses_bundledtoollicenseentry", + "target": "apps_extension_chromium_src_bundled_tools_types_licenseinfo", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/bundled-tools/licenses.ts", + "source_location": "L274", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_licenses_getlicensefortool", + "target": "apps_extension_chromium_src_bundled_tools_licenses_bundled_tool_licenses" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_registry", + "target": "apps_extension_chromium_src_bundled_tools_licenses_bundled_tool_licenses", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_registry", + "target": "apps_extension_chromium_src_bundled_tools_registry_apache_tika_tool", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L151", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_registry", + "target": "apps_extension_chromium_src_bundled_tools_registry_aretoolsready", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_registry", + "target": "apps_extension_chromium_src_bundled_tools_registry_currentregistry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L280", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_registry", + "target": "apps_extension_chromium_src_bundled_tools_registry_exporttoolinfo", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L258", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_registry", + "target": "apps_extension_chromium_src_bundled_tools_registry_generatediagnosticreport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_registry", + "target": "apps_extension_chromium_src_bundled_tools_registry_getparser", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L134", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_registry", + "target": "apps_extension_chromium_src_bundled_tools_registry_getrasterizer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_registry", + "target": "apps_extension_chromium_src_bundled_tools_registry_gettool", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L240", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_registry", + "target": "apps_extension_chromium_src_bundled_tools_registry_gettooldiagnostic", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_registry", + "target": "apps_extension_chromium_src_bundled_tools_registry_gettoolregistry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_registry", + "target": "apps_extension_chromium_src_bundled_tools_registry_gettoolsbycategory", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L142", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_registry", + "target": "apps_extension_chromium_src_bundled_tools_registry_isformatsupported", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L322", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_registry", + "target": "apps_extension_chromium_src_bundled_tools_registry_loadregistry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_registry", + "target": "apps_extension_chromium_src_bundled_tools_registry_pdfium_tool", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L307", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_registry", + "target": "apps_extension_chromium_src_bundled_tools_registry_persistregistry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_registry", + "target": "apps_extension_chromium_src_bundled_tools_registry_registertool", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_registry", + "target": "apps_extension_chromium_src_bundled_tools_registry_registry_version", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L343", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_registry", + "target": "apps_extension_chromium_src_bundled_tools_registry_resetregistry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_registry", + "target": "apps_extension_chromium_src_bundled_tools_registry_third_party_path", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_registry", + "target": "apps_extension_chromium_src_bundled_tools_registry_verifyalltools", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_registry", + "target": "apps_extension_chromium_src_bundled_tools_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_registry", + "target": "apps_extension_chromium_src_bundled_tools_types_bundledtool", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_registry", + "target": "apps_extension_chromium_src_bundled_tools_types_supportedformat", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_registry", + "target": "apps_extension_chromium_src_bundled_tools_types_toolcategory", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_registry", + "target": "apps_extension_chromium_src_bundled_tools_types_tooldiagnosticinfo", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_registry", + "target": "apps_extension_chromium_src_bundled_tools_types_tooldiagnosticreport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_registry", + "target": "apps_extension_chromium_src_bundled_tools_types_toolregistry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_registry", + "target": "apps_extension_chromium_src_bundled_tools_types_toolstatus", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_registry_getparser", + "target": "apps_extension_chromium_src_bundled_tools_registry_gettoolsbycategory", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_registry_getrasterizer", + "target": "apps_extension_chromium_src_bundled_tools_registry_gettoolsbycategory", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_registry_isformatsupported", + "target": "apps_extension_chromium_src_bundled_tools_registry_getparser", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L189", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_registry_registertool", + "target": "apps_extension_chromium_src_bundled_tools_registry_persistregistry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/registry.ts", + "source_location": "L228", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_registry_verifyalltools", + "target": "apps_extension_chromium_src_bundled_tools_registry_persistregistry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/types.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_types", + "target": "apps_extension_chromium_src_bundled_tools_types_bundledtool", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/types.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_types", + "target": "apps_extension_chromium_src_bundled_tools_types_licenseidentifier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/types.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_types", + "target": "apps_extension_chromium_src_bundled_tools_types_licenseinfo", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/types.ts", + "source_location": "L152", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_types", + "target": "apps_extension_chromium_src_bundled_tools_types_parserrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/types.ts", + "source_location": "L169", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_types", + "target": "apps_extension_chromium_src_bundled_tools_types_parserresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/types.ts", + "source_location": "L195", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_types", + "target": "apps_extension_chromium_src_bundled_tools_types_rasterizerrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/types.ts", + "source_location": "L218", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_types", + "target": "apps_extension_chromium_src_bundled_tools_types_rasterizerresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/types.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_types", + "target": "apps_extension_chromium_src_bundled_tools_types_rasteroutputformat", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/types.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_types", + "target": "apps_extension_chromium_src_bundled_tools_types_supportedformat", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/types.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_types", + "target": "apps_extension_chromium_src_bundled_tools_types_toolcategory", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/types.ts", + "source_location": "L254", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_types", + "target": "apps_extension_chromium_src_bundled_tools_types_tooldiagnosticinfo", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/types.ts", + "source_location": "L280", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_types", + "target": "apps_extension_chromium_src_bundled_tools_types_tooldiagnosticreport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/types.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_types", + "target": "apps_extension_chromium_src_bundled_tools_types_toolregistry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/bundled-tools/types.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_bundled_tools_types", + "target": "apps_extension_chromium_src_bundled_tools_types_toolstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/backend-config-lightbox-init.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backend_config_lightbox_init", + "target": "apps_extension_chromium_src_components_backendconfiglightbox", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendconfiglightbox", + "target": "apps_extension_chromium_src_components_backendconfiglightbox_backendconfiglightbox", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendconfiglightbox", + "target": "apps_extension_chromium_src_components_backendconfiglightbox_backendconfiglightboxprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendconfiglightbox", + "target": "apps_extension_chromium_src_components_backendconfiglightbox_errorboundary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendconfiglightbox", + "target": "apps_extension_chromium_src_components_backendconfiglightbox_postgresconnectionconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendconfiglightbox", + "target": "apps_extension_chromium_src_components_backendconfiglightbox_rpcdata", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendconfiglightbox", + "target": "apps_extension_chromium_src_components_imageenginesettings", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendconfiglightbox", + "target": "apps_extension_chromium_src_components_imageenginesettings_imageenginesettings", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendconfiglightbox", + "target": "apps_extension_chromium_src_components_llmsettings", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendconfiglightbox", + "target": "apps_extension_chromium_src_components_llmsettings_llmsettings", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendconfiglightbox", + "target": "apps_extension_chromium_src_rpc_electronrpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendconfiglightbox", + "target": "apps_extension_chromium_src_rpc_electronrpc_electronrpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendconfiglightbox", + "target": "apps_extension_chromium_src_rpc_electronrpc_electronrpcresponse", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_bodystyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_cardstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_closebuttonstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_getthemetokens", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headermaintitlestyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headerstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headersubtitlestyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headertitlestyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_inputstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_labelstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_overlaystyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_panelstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_primarybuttonstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_secondarybuttonstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_tabbarstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_tabstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_toaststyle", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L165", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendconfiglightbox_rationale_165", + "target": "apps_extension_chromium_src_components_backendconfiglightbox", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L171", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendconfiglightbox_rationale_171", + "target": "apps_extension_chromium_src_components_backendconfiglightbox", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendconfiglightbox_errorboundary", + "target": "apps_extension_chromium_src_components_backendconfiglightbox_errorboundary_componentdidcatch", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendconfiglightbox_errorboundary", + "target": "apps_extension_chromium_src_components_backendconfiglightbox_errorboundary_constructor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendconfiglightbox_errorboundary", + "target": "apps_extension_chromium_src_components_backendconfiglightbox_errorboundary_getderivedstatefromerror", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendconfiglightbox_errorboundary", + "target": "apps_extension_chromium_src_components_backendconfiglightbox_errorboundary_render", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/backend-config-lightbox-init.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backend_config_lightbox_init", + "target": "apps_extension_chromium_src_components_backendconfiglightbox_backendconfiglightbox", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L247", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendconfiglightbox_backendconfiglightbox", + "target": "apps_extension_chromium_src_rpc_electronrpc_electronrpc" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L385", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendconfiglightbox_backendconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_bodystyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L536", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendconfiglightbox_backendconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_cardstyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L353", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendconfiglightbox_backendconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_closebuttonstyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L337", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendconfiglightbox_backendconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_getthemetokens" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L347", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendconfiglightbox_backendconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headermaintitlestyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L343", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendconfiglightbox_backendconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headerstyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L348", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendconfiglightbox_backendconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headersubtitlestyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L344", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendconfiglightbox_backendconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headertitlestyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L461", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendconfiglightbox_backendconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_inputstyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L458", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendconfiglightbox_backendconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_labelstyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L340", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendconfiglightbox_backendconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_overlaystyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L341", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendconfiglightbox_backendconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_panelstyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L420", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendconfiglightbox_backendconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_primarybuttonstyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L578", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendconfiglightbox_backendconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_secondarybuttonstyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L362", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendconfiglightbox_backendconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_tabbarstyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L376", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendconfiglightbox_backendconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_tabstyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/components/BackendConfigLightbox.tsx", + "source_location": "L682", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendconfiglightbox_backendconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_toaststyle" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/BackendSwitcher.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendswitcher", + "target": "apps_extension_chromium_src_components_backendswitcher_backendswitcher", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/BackendSwitcher.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendswitcher", + "target": "apps_extension_chromium_src_components_backendswitcher_backendswitcherprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/BackendSwitcher.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendswitcher", + "target": "apps_extension_chromium_src_components_backendswitcher_postgresconnectionconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/BackendSwitcher.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendswitcher", + "target": "apps_extension_chromium_src_components_imageenginesettings", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/BackendSwitcher.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendswitcher", + "target": "apps_extension_chromium_src_components_imageenginesettings_imageenginesettings", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/BackendSwitcher.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendswitcher", + "target": "apps_extension_chromium_src_components_llmsettings", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/BackendSwitcher.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendswitcher", + "target": "apps_extension_chromium_src_components_llmsettings_llmsettings", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/BackendSwitcherInline.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendswitcherinline", + "target": "apps_extension_chromium_src_components_backendswitcherinline_authstatusresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/BackendSwitcherInline.tsx", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendswitcherinline", + "target": "apps_extension_chromium_src_components_backendswitcherinline_backendswitcherinline", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/BackendSwitcherInline.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendswitcherinline", + "target": "apps_extension_chromium_src_components_backendswitcherinline_backendswitcherinlineprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/BackendSwitcherInline.tsx", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendswitcherinline", + "target": "apps_extension_chromium_src_components_backendswitcherinline_chevrondownicon", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/BackendSwitcherInline.tsx", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendswitcherinline", + "target": "apps_extension_chromium_src_components_backendswitcherinline_logouticon", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/BackendSwitcherInline.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendswitcherinline", + "target": "apps_extension_chromium_src_components_backendswitcherinline_text_scales", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/BackendSwitcherInline.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendswitcherinline", + "target": "apps_extension_chromium_src_components_backendswitcherinline_textsize", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/BackendSwitcherInline.tsx", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendswitcherinline", + "target": "apps_extension_chromium_src_components_backendswitcherinline_usericon", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_components_backendswitcherinline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_components_backendswitcherinline_backendswitcherinline", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/BackendSwitcherNew.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendswitchernew", + "target": "apps_extension_chromium_src_components_backendswitchernew_backendswitcher", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/BackendSwitcherNew.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendswitchernew", + "target": "apps_extension_chromium_src_components_backendswitchernew_backendswitcherprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/BackendSwitcherNew.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backendswitchernew", + "target": "apps_extension_chromium_src_components_backendswitchernew_postgresconnectionconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/DevTools.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_devtools", + "target": "apps_extension_chromium_src_components_devtools_devtools", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/DevTools.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_devtools", + "target": "apps_extension_chromium_src_components_devtools_devtoolsprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/HardwareWarningDialog.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_hardwarewarningdialog", + "target": "apps_extension_chromium_src_components_hardwarewarningdialog_hardwarewarningdialog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/HardwareWarningDialog.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_hardwarewarningdialog", + "target": "apps_extension_chromium_src_components_hardwarewarningdialog_hardwarewarningprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/ImageEngineSettings.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_imageenginesettings", + "target": "apps_extension_chromium_src_components_imageenginesettings_imageenginesettings", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/ImageEngineSettings.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_imageenginesettings", + "target": "apps_extension_chromium_src_components_imageenginesettings_imageenginesettingsprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/ImageEngineSettings.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_imageenginesettings", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/ImageEngineSettings.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_imageenginesettings", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_getthemetokens", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/ImageEngineSettings.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_imageenginesettings", + "target": "apps_extension_chromium_src_types_imageproviders", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/ImageEngineSettings.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_imageenginesettings", + "target": "apps_extension_chromium_src_types_imageproviders_cloudimageproviderconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/ImageEngineSettings.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_imageenginesettings", + "target": "apps_extension_chromium_src_types_imageproviders_default_cloud_providers", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/ImageEngineSettings.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_imageenginesettings", + "target": "apps_extension_chromium_src_types_imageproviders_imageprovidersconfig", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/ImageEngineSettings.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_imageenginesettings_rationale_5", + "target": "apps_extension_chromium_src_components_imageenginesettings", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/components/ImageEngineSettings.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_imageenginesettings_imageenginesettings", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_getthemetokens" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L178", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_llmsettings", + "target": "apps_extension_chromium_src_components_llmsettings_fallback_catalog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_llmsettings", + "target": "apps_extension_chromium_src_components_llmsettings_hardwareinfo", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_llmsettings", + "target": "apps_extension_chromium_src_components_llmsettings_installedmodel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_llmsettings", + "target": "apps_extension_chromium_src_components_llmsettings_isbinarystatusentity", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L159", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_llmsettings", + "target": "apps_extension_chromium_src_components_llmsettings_iscatalogentity", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_llmsettings", + "target": "apps_extension_chromium_src_components_llmsettings_ishardwareentity", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_llmsettings", + "target": "apps_extension_chromium_src_components_llmsettings_islocalllmstatusentity", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_llmsettings", + "target": "apps_extension_chromium_src_components_llmsettings_isserverconfigviewentity", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_llmsettings", + "target": "apps_extension_chromium_src_components_llmsettings_llamaserverbinaryinstallprogress", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_llmsettings", + "target": "apps_extension_chromium_src_components_llmsettings_llamaserverbinarystatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_llmsettings", + "target": "apps_extension_chromium_src_components_llmsettings_llmmodelconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_llmsettings", + "target": "apps_extension_chromium_src_components_llmsettings_llmserverconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_llmsettings", + "target": "apps_extension_chromium_src_components_llmsettings_llmserverconfigview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L214", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_llmsettings", + "target": "apps_extension_chromium_src_components_llmsettings_llmsettings", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_llmsettings", + "target": "apps_extension_chromium_src_components_llmsettings_llmsettingsprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_llmsettings", + "target": "apps_extension_chromium_src_components_llmsettings_localllmstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_llmsettings", + "target": "apps_extension_chromium_src_components_llmsettings_orchestratormodeconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_llmsettings", + "target": "apps_extension_chromium_src_components_llmsettings_performanceestimate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_llmsettings", + "target": "apps_extension_chromium_src_components_llmsettings_rpc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L137", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_llmsettings", + "target": "apps_extension_chromium_src_components_llmsettings_unwrapllmenvelope", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_llmsettings", + "target": "apps_extension_chromium_src_rpc_electronrpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_llmsettings", + "target": "apps_extension_chromium_src_rpc_electronrpc_electronrpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_llmsettings", + "target": "apps_extension_chromium_src_rpc_electronrpc_llmlocalruntimeinfo", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_llmsettings", + "target": "apps_extension_chromium_src_rpc_electronrpc_rpcmethod", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_llmsettings", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_llmsettings", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_getthemetokens", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_llmsettings_localllmstatus", + "target": "apps_extension_chromium_src_rpc_electronrpc_llmlocalruntimeinfo", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L280", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_llmsettings_llmsettings", + "target": "apps_extension_chromium_src_components_llmsettings_rpc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_llmsettings_rpc", + "target": "apps_extension_chromium_src_rpc_electronrpc_electronrpc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L397", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_llmsettings_llmsettings", + "target": "apps_extension_chromium_src_components_llmsettings_unwrapllmenvelope", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L397", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_llmsettings_llmsettings", + "target": "apps_extension_chromium_src_components_llmsettings_ishardwareentity", + "confidence_score": 0.5 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L399", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_llmsettings_llmsettings", + "target": "apps_extension_chromium_src_components_llmsettings_islocalllmstatusentity", + "confidence_score": 0.5 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L401", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_llmsettings_llmsettings", + "target": "apps_extension_chromium_src_components_llmsettings_iscatalogentity", + "confidence_score": 0.5 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L404", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_llmsettings_llmsettings", + "target": "apps_extension_chromium_src_components_llmsettings_isbinarystatusentity", + "confidence_score": 0.5 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L406", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_llmsettings_llmsettings", + "target": "apps_extension_chromium_src_components_llmsettings_isserverconfigviewentity", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/components/LlmSettings.tsx", + "source_location": "L749", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_llmsettings_llmsettings", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_getthemetokens" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/P2pOutboundDebugModal.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_p2poutbounddebugmodal", + "target": "apps_extension_chromium_src_components_p2poutbounddebugmodal_p2pdebugmodalpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/P2pOutboundDebugModal.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_p2poutbounddebugmodal", + "target": "apps_extension_chromium_src_components_p2poutbounddebugmodal_p2poutbounddebugmodal", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/P2pOutboundDebugModal.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_p2poutbounddebugmodal", + "target": "apps_extension_chromium_src_handshake_handshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/P2pOutboundDebugModal.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_p2poutbounddebugmodal", + "target": "apps_extension_chromium_src_handshake_handshakerpc_clientsendfailuredebug", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/P2pOutboundDebugModal.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_p2poutbounddebugmodal", + "target": "apps_extension_chromium_src_handshake_handshakerpc_outboundrequestdebugsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/backend-config-lightbox-init.tsx", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backend_config_lightbox_init", + "target": "apps_extension_chromium_src_components_backend_config_lightbox_init_closebackendconfiglightbox", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/components/backend-config-lightbox-init.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_components_backend_config_lightbox_init", + "target": "apps_extension_chromium_src_components_backend_config_lightbox_init_openbackendconfiglightbox", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/constants/providers.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_constants_providers", + "target": "apps_extension_chromium_src_constants_providers_cloud_default_models", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/constants/providers.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_constants_providers", + "target": "apps_extension_chromium_src_constants_providers_iscloudprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/constants/providers.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_constants_providers", + "target": "apps_extension_chromium_src_constants_providers_islocalprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/constants/providers.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_constants_providers", + "target": "apps_extension_chromium_src_constants_providers_label_to_id", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/constants/providers.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_constants_providers", + "target": "apps_extension_chromium_src_constants_providers_provider_api_key_names", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/constants/providers.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_constants_providers", + "target": "apps_extension_chromium_src_constants_providers_provider_ids", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/constants/providers.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_constants_providers", + "target": "apps_extension_chromium_src_constants_providers_provider_labels", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/constants/providers.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_constants_providers", + "target": "apps_extension_chromium_src_constants_providers_provider_map_for_grid_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/constants/providers.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_constants_providers", + "target": "apps_extension_chromium_src_constants_providers_providerid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/constants/providers.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_constants_providers", + "target": "apps_extension_chromium_src_constants_providers_toproviderid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/constants/providers.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_constants_providers", + "target": "apps_extension_chromium_src_constants_providers_toproviderlabel", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_constants_providers", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_constants_providers", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_constants_providers_provider_ids", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_constants_providers_providerid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/constants/providers.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_constants_providers_iscloudprovider", + "target": "apps_extension_chromium_src_constants_providers_toproviderid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/constants/providers.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_constants_providers_islocalprovider", + "target": "apps_extension_chromium_src_constants_providers_toproviderid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_constants_providers_toproviderid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L6325", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script_initializeextension", + "target": "apps_extension_chromium_src_constants_providers_toproviderid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_constants_providers_toproviderid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1430", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow_resolvemodelforagent", + "target": "apps_extension_chromium_src_constants_providers_toproviderid" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_constants_providers_toproviderlabel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L6709", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script_initializeextension", + "target": "apps_extension_chromium_src_constants_providers_toproviderlabel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_constants_providers_toproviderlabel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1665", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow_buildllmrequestbody", + "target": "apps_extension_chromium_src_constants_providers_toproviderlabel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1475", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow_resolvemodelforagent", + "target": "apps_extension_chromium_src_constants_providers_toproviderlabel" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_constants_providers_cloud_default_models", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_constants_providers_provider_api_key_names", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script-globals.d.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script_globals_d", + "target": "apps_extension_chromium_src_content_script_globals_d_window", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L253", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_content_script_bootstate", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "confidence": "INFERRED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L45071", + "weight": 1.0, + "_origin": "ast", + "context": "argument", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_content_script_checkforelectrongridconfig", + "confidence_score": 0.5 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L349", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_content_script_connectioncheckinterval", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_content_script_csagentformui", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_content_script_cstheme", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L2236", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_content_script_deactivateextension", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L197", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_content_script_dedicatedrole", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L2306", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_content_script_getsessiondisplaylabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L2282", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_content_script_getstoragewrapper", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L267", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_content_script_globallightboxfunctions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L44975", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_content_script_handleelectrongridsave", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L2316", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_content_script_initializeextension", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_content_script_optimandotabstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L201", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_content_script_readoptimandostate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L2245", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_content_script_safeappendtobody", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L369", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_content_script_savedstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L1575", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_content_script_showtriggerpromptinchat", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L2290", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_content_script_storageget", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L2300", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_content_script_storageremove", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L2295", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_content_script_storageset", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L338", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_content_script_testextensionconnection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L223", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_content_script_writeoptimandostate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_globalsessioncontextstoragekeys", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_logglobalcontextsessionkey", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_readorchestratorsessionhintsfromchromestorage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_resolveorchestratorsessionkeyforinferenceasync", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_rpc_electronrpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_rpc_electronrpc_electronrpc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_services_beaprunautomationresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_services_beaprunautomationresult_interpretbeapautomationmoderun", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_services_localollamamodels", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_services_localollamamodels_escapehtmlattr", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_services_localollamamodels_fetchinstalledlocalmodelnames", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_services_sessionimportcore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_services_sessionimportcore_activateimportedsession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_services_sessionimportcore_createnewimportsessionkey", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_services_sessionimportcore_normalizeimportedsessionpayload", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_services_sessionimportcore_persistimportedsessionrecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_services_sessionimportcore_runcanonicalsessionimport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_services_sessionimportcore_sessionimportactivationhost", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_initautofill", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_teardownautofill", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_vault_autofill_index", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script", + "target": "apps_extension_chromium_src_vault_autofill_webmcpadapter_handlewebmcpfillpreviewrequest", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L1533", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script_rationale_1533", + "target": "apps_extension_chromium_src_content_script", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L1536", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script_rationale_1536", + "target": "apps_extension_chromium_src_content_script", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L18234", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script_rationale_18234", + "target": "apps_extension_chromium_src_content_script", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L20413", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script_rationale_20413", + "target": "apps_extension_chromium_src_content_script", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script_rationale_30", + "target": "apps_extension_chromium_src_content_script", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L3632", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script_rationale_3632", + "target": "apps_extension_chromium_src_content_script", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L39212", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script_rationale_39212", + "target": "apps_extension_chromium_src_content_script", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L41202", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script_rationale_41202", + "target": "apps_extension_chromium_src_content_script", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L41205", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script_rationale_41205", + "target": "apps_extension_chromium_src_content_script", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L41244", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script_rationale_41244", + "target": "apps_extension_chromium_src_content_script", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L41247", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script_rationale_41247", + "target": "apps_extension_chromium_src_content_script", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L42159", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script_rationale_42159", + "target": "apps_extension_chromium_src_content_script", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L42160", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script_rationale_42160", + "target": "apps_extension_chromium_src_content_script", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L42181", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script_rationale_42181", + "target": "apps_extension_chromium_src_content_script", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L42182", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script_rationale_42182", + "target": "apps_extension_chromium_src_content_script", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L4466", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script_rationale_4466", + "target": "apps_extension_chromium_src_content_script", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L4976", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script_rationale_4976", + "target": "apps_extension_chromium_src_content_script", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L44956", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script_checkforelectrongridconfig", + "target": "apps_extension_chromium_src_content_script_cstheme", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script_csagentformui", + "target": "apps_extension_chromium_src_content_script_cstheme", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L45059", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script_handleelectrongridsave", + "target": "apps_extension_chromium_src_content_script_cstheme", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L7974", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script_initializeextension", + "target": "apps_extension_chromium_src_content_script_cstheme", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L1650", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script_showtriggerpromptinchat", + "target": "apps_extension_chromium_src_content_script_cstheme", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L227", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script_writeoptimandostate", + "target": "apps_extension_chromium_src_content_script_readoptimandostate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L2490", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script_initializeextension", + "target": "apps_extension_chromium_src_content_script_writeoptimandostate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L2284", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script_getstoragewrapper", + "target": "apps_extension_chromium_src_storage_storagewrapper", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L2291", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script_storageget", + "target": "apps_extension_chromium_src_content_script_getstoragewrapper", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L2301", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script_storageremove", + "target": "apps_extension_chromium_src_content_script_getstoragewrapper", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L2296", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script_storageset", + "target": "apps_extension_chromium_src_content_script_getstoragewrapper", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L44897", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script_checkforelectrongridconfig", + "target": "apps_extension_chromium_src_content_script_storageget", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L45006", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script_handleelectrongridsave", + "target": "apps_extension_chromium_src_content_script_storageget", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L36483", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script_initializeextension", + "target": "apps_extension_chromium_src_content_script_storageget", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L44933", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script_checkforelectrongridconfig", + "target": "apps_extension_chromium_src_content_script_storageset", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L45042", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script_handleelectrongridsave", + "target": "apps_extension_chromium_src_content_script_storageset", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L36673", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script_initializeextension", + "target": "apps_extension_chromium_src_content_script_storageset", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L2392", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script_initializeextension", + "target": "apps_extension_chromium_src_content_script_getsessiondisplaylabel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L26037", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script_initializeextension", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_globalsessioncontextstoragekeys", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L26034", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script_initializeextension", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_logglobalcontextsessionkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L26023", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script_initializeextension", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_readorchestratorsessionhintsfromchromestorage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L26024", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script_initializeextension", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_resolveorchestratorsessionkeyforinferenceasync", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L32307", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script_initializeextension", + "target": "apps_extension_chromium_src_rpc_electronrpc_electronrpc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L44832", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script_initializeextension", + "target": "apps_extension_chromium_src_services_beaprunautomationresult_interpretbeapautomationmoderun", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L6034", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script_initializeextension", + "target": "apps_extension_chromium_src_services_localollamamodels_escapehtmlattr", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L5966", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script_initializeextension", + "target": "apps_extension_chromium_src_services_localollamamodels_fetchinstalledlocalmodelnames", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L44822", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script_initializeextension", + "target": "apps_extension_chromium_src_services_moderunexecution", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L42142", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script_initializeextension", + "target": "apps_extension_chromium_src_services_sessionimportcore_activateimportedsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L42033", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script_initializeextension", + "target": "apps_extension_chromium_src_services_sessionimportcore_createnewimportsessionkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L42034", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script_initializeextension", + "target": "apps_extension_chromium_src_services_sessionimportcore_normalizeimportedsessionpayload", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L42043", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script_initializeextension", + "target": "apps_extension_chromium_src_services_sessionimportcore_persistimportedsessionrecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content-script.tsx", + "source_location": "L44769", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_script_initializeextension", + "target": "apps_extension_chromium_src_services_sessionimportcore_runcanonicalsessionimport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/index.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_index", + "target": "apps_extension_chromium_src_content_index_bootstrap", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/index.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_index", + "target": "apps_extension_chromium_src_content_index_default_options", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/index.ts", + "source_location": "L202", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_index", + "target": "apps_extension_chromium_src_content_index_getframeoverlay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/index.ts", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_index", + "target": "apps_extension_chromium_src_content_index_getsitespecificoptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/index.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_index", + "target": "apps_extension_chromium_src_content_index_initializeoverlay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/index.ts", + "source_location": "L180", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_index", + "target": "apps_extension_chromium_src_content_index_mountframeoverlay", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "confidence": "INFERRED", + "source_file": "apps/extension-chromium/src/content/index.ts", + "source_location": "L302", + "weight": 1.0, + "_origin": "ast", + "context": "argument", + "source": "apps_extension_chromium_src_content_index", + "target": "apps_extension_chromium_src_content_index_safeinit", + "confidence_score": 0.5 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/index.ts", + "source_location": "L246", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_index", + "target": "apps_extension_chromium_src_content_index_setupdebugutilities", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/index.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_index", + "target": "apps_extension_chromium_src_content_index_setuplifecyclehandlers", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/index.ts", + "source_location": "L207", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_index", + "target": "apps_extension_chromium_src_content_index_setupmessagehandlers", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/index.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_index", + "target": "apps_extension_chromium_src_content_index_shutdownoverlay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/index.ts", + "source_location": "L190", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_index", + "target": "apps_extension_chromium_src_content_index_unmountframeoverlay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/index.ts", + "source_location": "L194", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_index", + "target": "apps_extension_chromium_src_content_index_updateframeoverlay", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_index", + "target": "apps_extension_chromium_src_content_types_d", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_index", + "target": "apps_extension_chromium_src_content_types_d_frameoptions", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/index.ts", + "source_location": "L305", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_index", + "target": "apps_extension_chromium_src_content_ui_frameoverlay", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/index.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_index", + "target": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/index.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_index_bootstrap", + "target": "apps_extension_chromium_src_content_index_initializeoverlay", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/index.ts", + "source_location": "L186", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_index_mountframeoverlay", + "target": "apps_extension_chromium_src_content_index_initializeoverlay", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/index.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_index_setuplifecyclehandlers", + "target": "apps_extension_chromium_src_content_index_initializeoverlay", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/index.ts", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_index_setuplifecyclehandlers", + "target": "apps_extension_chromium_src_content_index_shutdownoverlay", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/index.ts", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_index_unmountframeoverlay", + "target": "apps_extension_chromium_src_content_index_shutdownoverlay", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/index.ts", + "source_location": "L294", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_index_safeinit", + "target": "apps_extension_chromium_src_content_index_bootstrap", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/index.ts", + "source_location": "L291", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_index_safeinit", + "target": "apps_extension_chromium_src_content_index_setuplifecyclehandlers", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/index.ts", + "source_location": "L181", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_index_mountframeoverlay", + "target": "apps_extension_chromium_src_content_index_getsitespecificoptions", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/index.ts", + "source_location": "L255", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_index_setupdebugutilities", + "target": "apps_extension_chromium_src_content_index_mountframeoverlay", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/index.ts", + "source_location": "L215", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_index_setupmessagehandlers", + "target": "apps_extension_chromium_src_content_index_mountframeoverlay", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/index.ts", + "source_location": "L253", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_index_setupdebugutilities", + "target": "apps_extension_chromium_src_content_index_unmountframeoverlay", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/index.ts", + "source_location": "L220", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_index_setupmessagehandlers", + "target": "apps_extension_chromium_src_content_index_unmountframeoverlay", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/index.ts", + "source_location": "L225", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_index_setupmessagehandlers", + "target": "apps_extension_chromium_src_content_index_updateframeoverlay", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/index.ts", + "source_location": "L292", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_index_safeinit", + "target": "apps_extension_chromium_src_content_index_setupmessagehandlers", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/index.ts", + "source_location": "L293", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_index_safeinit", + "target": "apps_extension_chromium_src_content_index_setupdebugutilities", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/overlay.ts", + "source_location": "L214", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_overlay", + "target": "apps_extension_chromium_src_content_overlay_bootstrap", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/overlay.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_overlay", + "target": "apps_extension_chromium_src_content_overlay_default_layout", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/overlay.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_overlay", + "target": "apps_extension_chromium_src_content_overlay_isdisabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/overlay.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_overlay", + "target": "apps_extension_chromium_src_content_overlay_layout", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/overlay.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_overlay", + "target": "apps_extension_chromium_src_content_overlay_makestyle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/overlay.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_overlay", + "target": "apps_extension_chromium_src_content_overlay_mountoverlay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/overlay.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_overlay", + "target": "apps_extension_chromium_src_content_overlay_readlayout", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/overlay.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_overlay", + "target": "apps_extension_chromium_src_content_overlay_savelayout", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/overlay.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_overlay", + "target": "apps_extension_chromium_src_content_overlay_storage_key_layout", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/overlay.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_overlay", + "target": "apps_extension_chromium_src_content_overlay_toggledisabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/overlay.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_overlay", + "target": "apps_extension_chromium_src_content_overlay_window", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/overlay.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_overlay_readlayout", + "target": "apps_extension_chromium_src_content_overlay_storage_key_layout", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/overlay.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_overlay_savelayout", + "target": "apps_extension_chromium_src_content_overlay_storage_key_layout", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/overlay.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_overlay_mountoverlay", + "target": "apps_extension_chromium_src_content_overlay_readlayout", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/overlay.ts", + "source_location": "L219", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_overlay_bootstrap", + "target": "apps_extension_chromium_src_content_overlay_isdisabled", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/overlay.ts", + "source_location": "L226", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_overlay_bootstrap", + "target": "apps_extension_chromium_src_content_overlay_toggledisabled", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/overlay.ts", + "source_location": "L198", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_overlay_mountoverlay", + "target": "apps_extension_chromium_src_content_overlay_toggledisabled", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/overlay.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_overlay_mountoverlay", + "target": "apps_extension_chromium_src_content_overlay_makestyle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/overlay.ts", + "source_location": "L223", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_overlay_bootstrap", + "target": "apps_extension_chromium_src_content_overlay_mountoverlay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/types.d.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_types_d", + "target": "apps_extension_chromium_src_content_types_d_frameoptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/types.d.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_types_d", + "target": "apps_extension_chromium_src_content_types_d_frameoverlayinterface", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/types.d.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_types_d", + "target": "apps_extension_chromium_src_content_types_d_railelement", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/types.d.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_types_d", + "target": "apps_extension_chromium_src_content_types_d_railposition", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay", + "target": "apps_extension_chromium_src_content_types_d", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay", + "target": "apps_extension_chromium_src_content_types_d_frameoptions", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay", + "target": "apps_extension_chromium_src_content_types_d_frameoptions", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L231", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_applyoptions", + "target": "apps_extension_chromium_src_content_types_d_frameoptions", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L361", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_getcurrentoptions", + "target": "apps_extension_chromium_src_content_types_d_frameoptions", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_mount", + "target": "apps_extension_chromium_src_content_types_d_frameoptions", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_update", + "target": "apps_extension_chromium_src_content_types_d_frameoptions", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/types.d.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_types_d_frameoverlayinterface", + "target": "apps_extension_chromium_src_content_types_d_frameoverlayinterface_mount", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/types.d.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_types_d_frameoverlayinterface", + "target": "apps_extension_chromium_src_content_types_d_frameoverlayinterface_unmount", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/types.d.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_types_d_frameoverlayinterface", + "target": "apps_extension_chromium_src_content_types_d_frameoverlayinterface_update", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay", + "target": "apps_extension_chromium_src_content_types_d_frameoverlayinterface", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay", + "target": "apps_extension_chromium_src_content_types_d_frameoverlayinterface", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay", + "target": "apps_extension_chromium_src_content_types_d_railposition", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay", + "target": "apps_extension_chromium_src_content_types_d_railposition", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L357", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_getrailelement", + "target": "apps_extension_chromium_src_content_types_d_railposition", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay", + "target": "apps_extension_chromium_src_content_types_d_railelement", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay", + "target": "apps_extension_chromium_src_content_types_d_railelement", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L357", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_getrailelement", + "target": "apps_extension_chromium_src_content_types_d_railelement", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay", + "target": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay", + "target": "apps_extension_chromium_src_content_ui_framestyles", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay", + "target": "apps_extension_chromium_src_content_ui_framestyles_createframestylesheet", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay", + "target": "apps_extension_chromium_src_content_ui_framestyles_togglerailvisibility", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay", + "target": "apps_extension_chromium_src_content_ui_framestyles_updaterailsizes", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L180", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay", + "target": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_adddemocontrols", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L231", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay", + "target": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_applyoptions", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L251", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay", + "target": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_attachtodom", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L172", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay", + "target": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_createcenterguides", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L157", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay", + "target": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_createrails", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay", + "target": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_createroot", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay", + "target": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_createshadowdom", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L307", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay", + "target": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_disablecompatmodeb", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L269", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay", + "target": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_enablecompatmodeb", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L339", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay", + "target": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_fullscreenobserver", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L361", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay", + "target": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_getcurrentoptions", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L357", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay", + "target": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_getrailelement", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L365", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay", + "target": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_isincompatmode", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay", + "target": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_mount", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L338", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay", + "target": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_setupfullscreenhandling", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L328", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay", + "target": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_startwatchdog", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L258", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay", + "target": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_togglecenterguides", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L264", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay", + "target": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_togglemode", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay", + "target": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_unmount", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay", + "target": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_update", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_mount", + "target": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_adddemocontrols", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_mount", + "target": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_applyoptions", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_mount", + "target": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_attachtodom", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_mount", + "target": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_createcenterguides", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_mount", + "target": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_createrails", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_mount", + "target": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_createroot", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_mount", + "target": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_createshadowdom", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_mount", + "target": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_enablecompatmodeb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_mount", + "target": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_setupfullscreenhandling", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_mount", + "target": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_startwatchdog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_mount", + "target": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_unmount", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L266", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_togglemode", + "target": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_update", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_update", + "target": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_applyoptions", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_update", + "target": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_disablecompatmodeb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_update", + "target": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_enablecompatmodeb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_unmount", + "target": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_disablecompatmodeb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_createshadowdom", + "target": "apps_extension_chromium_src_content_ui_framestyles_createframestylesheet" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L198", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_adddemocontrols", + "target": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_togglecenterguides", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L205", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_adddemocontrols", + "target": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_togglemode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L241", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_applyoptions", + "target": "apps_extension_chromium_src_content_ui_framestyles_togglerailvisibility" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L236", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_applyoptions", + "target": "apps_extension_chromium_src_content_ui_framestyles_updaterailsizes" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/FrameOverlay.ts", + "source_location": "L333", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_startwatchdog", + "target": "apps_extension_chromium_src_content_ui_frameoverlay_frameoverlay_attachtodom", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/frameStyles.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_framestyles", + "target": "apps_extension_chromium_src_content_ui_framestyles_createframestylesheet", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/frameStyles.ts", + "source_location": "L257", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_framestyles", + "target": "apps_extension_chromium_src_content_ui_framestyles_togglerailvisibility", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/content/ui/frameStyles.ts", + "source_location": "L237", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_content_ui_framestyles", + "target": "apps_extension_chromium_src_content_ui_framestyles_updaterailsizes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/evaluateEnvelope.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope", + "target": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope_boundarycheckresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/evaluateEnvelope.ts", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope", + "target": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope_checkboundaries", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/evaluateEnvelope.ts", + "source_location": "L334", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope", + "target": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope_createenvelopesummary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/evaluateEnvelope.ts", + "source_location": "L481", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope", + "target": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope_createmockincomingmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/evaluateEnvelope.ts", + "source_location": "L299", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope", + "target": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope_createrejection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/evaluateEnvelope.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope", + "target": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope_envelopeverificationresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/evaluateEnvelope.ts", + "source_location": "L385", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope", + "target": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope_evaluateincomingmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/evaluateEnvelope.ts", + "source_location": "L186", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope", + "target": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope_evaluatewrguardintersection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/evaluateEnvelope.ts", + "source_location": "L317", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope", + "target": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope_extractdomain", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/evaluateEnvelope.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope", + "target": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope_verifyenvelope", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/evaluateEnvelope.ts", + "source_location": "L171", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope", + "target": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope_wrguardintersectionresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/evaluateEnvelope.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope", + "target": "apps_extension_chromium_src_envelope_evaluation_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/evaluateEnvelope.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope", + "target": "apps_extension_chromium_src_envelope_evaluation_types_beapenvelope", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/evaluateEnvelope.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope", + "target": "apps_extension_chromium_src_envelope_evaluation_types_capsulemetadata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/evaluateEnvelope.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope", + "target": "apps_extension_chromium_src_envelope_evaluation_types_envelopesummarydisplay", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/evaluateEnvelope.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope", + "target": "apps_extension_chromium_src_envelope_evaluation_types_evaluationresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/evaluateEnvelope.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope", + "target": "apps_extension_chromium_src_envelope_evaluation_types_incomingbeapmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/evaluateEnvelope.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope", + "target": "apps_extension_chromium_src_envelope_evaluation_types_rejectioncode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/evaluateEnvelope.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope", + "target": "apps_extension_chromium_src_envelope_evaluation_types_rejectionreason", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/evaluateEnvelope.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope", + "target": "apps_extension_chromium_src_wrguard_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/evaluateEnvelope.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope", + "target": "apps_extension_chromium_src_wrguard_usewrguardstore_usewrguardstore", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/evaluateEnvelope.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope_rationale_46", + "target": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_index", + "target": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/useVerifyMessage.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_useverifymessage", + "target": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/evaluateEnvelope.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope_envelopeverificationresult", + "target": "apps_extension_chromium_src_envelope_evaluation_types_rejectionreason", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/evaluateEnvelope.ts", + "source_location": "L410", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope_evaluateincomingmessage", + "target": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope_verifyenvelope", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/evaluateEnvelope.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope_verifyenvelope", + "target": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope_createrejection", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/evaluateEnvelope.ts", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope_boundarycheckresult", + "target": "apps_extension_chromium_src_envelope_evaluation_types_rejectionreason", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/evaluateEnvelope.ts", + "source_location": "L139", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope_checkboundaries", + "target": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope_createrejection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/evaluateEnvelope.ts", + "source_location": "L424", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope_evaluateincomingmessage", + "target": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope_checkboundaries", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/evaluateEnvelope.ts", + "source_location": "L173", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope_wrguardintersectionresult", + "target": "apps_extension_chromium_src_envelope_evaluation_types_rejectionreason", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/evaluateEnvelope.ts", + "source_location": "L438", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope_evaluateincomingmessage", + "target": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope_evaluatewrguardintersection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/evaluateEnvelope.ts", + "source_location": "L198", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope_evaluatewrguardintersection", + "target": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope_createrejection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/evaluateEnvelope.ts", + "source_location": "L236", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope_evaluatewrguardintersection", + "target": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope_extractdomain", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/evaluateEnvelope.ts", + "source_location": "L398", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope_evaluateincomingmessage", + "target": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope_createrejection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/evaluateEnvelope.ts", + "source_location": "L416", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope_evaluateincomingmessage", + "target": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope_createenvelopesummary", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_index", + "target": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope_evaluateincomingmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/useVerifyMessage.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_useverifymessage", + "target": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope_evaluateincomingmessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/envelope-evaluation/useVerifyMessage.ts", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_useverifymessage_useverifymessage", + "target": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope_evaluateincomingmessage" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_index", + "target": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope_createmockincomingmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/useVerifyMessage.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_useverifymessage", + "target": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope_createmockincomingmessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/envelope-evaluation/useVerifyMessage.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_useverifymessage_useverifymessage", + "target": "apps_extension_chromium_src_envelope_evaluation_evaluateenvelope_createmockincomingmessage" + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/index.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_index", + "target": "apps_extension_chromium_src_envelope_evaluation_types", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/index.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_index", + "target": "apps_extension_chromium_src_envelope_evaluation_useverifymessage", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/index.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_index", + "target": "apps_extension_chromium_src_envelope_evaluation_useverifymessage_useverifymessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/types.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_types", + "target": "apps_extension_chromium_src_envelope_evaluation_types_beapenvelope", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/types.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_types", + "target": "apps_extension_chromium_src_envelope_evaluation_types_capsulemetadata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/types.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_types", + "target": "apps_extension_chromium_src_envelope_evaluation_types_egressdeclaration", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/types.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_types", + "target": "apps_extension_chromium_src_envelope_evaluation_types_egresstype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/types.ts", + "source_location": "L228", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_types", + "target": "apps_extension_chromium_src_envelope_evaluation_types_envelopesummarydisplay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/types.ts", + "source_location": "L198", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_types", + "target": "apps_extension_chromium_src_envelope_evaluation_types_evaluationresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/types.ts", + "source_location": "L264", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_types", + "target": "apps_extension_chromium_src_envelope_evaluation_types_incomingbeapmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/types.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_types", + "target": "apps_extension_chromium_src_envelope_evaluation_types_ingresschannel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/types.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_types", + "target": "apps_extension_chromium_src_envelope_evaluation_types_ingressdeclaration", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/types.ts", + "source_location": "L156", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_types", + "target": "apps_extension_chromium_src_envelope_evaluation_types_rejectioncode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/types.ts", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_types", + "target": "apps_extension_chromium_src_envelope_evaluation_types_rejectionreason", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/types.ts", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_types", + "target": "apps_extension_chromium_src_envelope_evaluation_types_verificationstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/useVerifyMessage.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_useverifymessage", + "target": "apps_extension_chromium_src_envelope_evaluation_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/useVerifyMessage.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_useverifymessage", + "target": "apps_extension_chromium_src_envelope_evaluation_types_beapenvelope", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/useVerifyMessage.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_useverifymessage", + "target": "apps_extension_chromium_src_envelope_evaluation_types_capsulemetadata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/useVerifyMessage.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_useverifymessage", + "target": "apps_extension_chromium_src_envelope_evaluation_types_evaluationresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/useVerifyMessage.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_useverifymessage_useverifymessagereturn", + "target": "apps_extension_chromium_src_envelope_evaluation_types_evaluationresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/useVerifyMessage.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_useverifymessage", + "target": "apps_extension_chromium_src_envelope_evaluation_types_incomingbeapmessage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/useVerifyMessage.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_useverifymessage_useverifymessagereturn", + "target": "apps_extension_chromium_src_envelope_evaluation_types_incomingbeapmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/useVerifyMessage.ts", + "source_location": "L208", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_useverifymessage", + "target": "apps_extension_chromium_src_envelope_evaluation_useverifymessage_createenvelopefrommessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/useVerifyMessage.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_useverifymessage", + "target": "apps_extension_chromium_src_envelope_evaluation_useverifymessage_tocapsulemetadataui", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/useVerifyMessage.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_useverifymessage", + "target": "apps_extension_chromium_src_envelope_evaluation_useverifymessage_toenvelopesummaryui", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/useVerifyMessage.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_useverifymessage", + "target": "apps_extension_chromium_src_envelope_evaluation_useverifymessage_torejectionreasonui", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/useVerifyMessage.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_useverifymessage", + "target": "apps_extension_chromium_src_envelope_evaluation_useverifymessage_useverifymessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/useVerifyMessage.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_useverifymessage", + "target": "apps_extension_chromium_src_envelope_evaluation_useverifymessage_useverifymessagereturn", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/useVerifyMessage.ts", + "source_location": "L144", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_useverifymessage_useverifymessage", + "target": "apps_extension_chromium_src_envelope_evaluation_useverifymessage_toenvelopesummaryui", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/useVerifyMessage.ts", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_useverifymessage_useverifymessage", + "target": "apps_extension_chromium_src_envelope_evaluation_useverifymessage_tocapsulemetadataui", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/useVerifyMessage.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_useverifymessage_useverifymessage", + "target": "apps_extension_chromium_src_envelope_evaluation_useverifymessage_torejectionreasonui", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/envelope-evaluation/useVerifyMessage.ts", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_envelope_evaluation_useverifymessage_useverifymessage", + "target": "apps_extension_chromium_src_envelope_evaluation_useverifymessage_createenvelopefrommessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/fix-buttons.mjs", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_fix_buttons", + "target": "apps_extension_chromium_src_fix_buttons_rep", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/fix-buttons.mjs", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_fix_buttons", + "target": "apps_extension_chromium_src_fix_buttons_s", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/fix-context-memory.mjs", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_fix_context_memory", + "target": "apps_extension_chromium_src_fix_context_memory_rep", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/fix-context-memory.mjs", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_fix_context_memory", + "target": "apps_extension_chromium_src_fix_context_memory_s", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/grid-content-script.ts", + "source_location": "L226", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_grid_content_script", + "target": "apps_extension_chromium_src_grid_content_script_applyconfiguration", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/grid-content-script.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_grid_content_script", + "target": "apps_extension_chromium_src_grid_content_script_initgridcontentscript", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/grid-content-script.ts", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_grid_content_script", + "target": "apps_extension_chromium_src_grid_content_script_loadgridconfiguration", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/grid-content-script.ts", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_grid_content_script", + "target": "apps_extension_chromium_src_grid_content_script_savegridconfiguration", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/grid-content-script.ts", + "source_location": "L260", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_grid_content_script", + "target": "apps_extension_chromium_src_grid_content_script_showerrornotification", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/grid-content-script.ts", + "source_location": "L243", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_grid_content_script", + "target": "apps_extension_chromium_src_grid_content_script_showsuccessnotification", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/grid-content-script.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_grid_content_script_initgridcontentscript", + "target": "apps_extension_chromium_src_grid_content_script_loadgridconfiguration", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/extension-chromium/src/grid-content-script.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_grid_content_script_initgridcontentscript", + "target": "apps_extension_chromium_src_grid_content_script_savegridconfiguration", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/grid-content-script.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_grid_content_script_savegridconfiguration", + "target": "apps_extension_chromium_src_grid_content_script_showerrornotification", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/grid-content-script.ts", + "source_location": "L177", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_grid_content_script_savegridconfiguration", + "target": "apps_extension_chromium_src_grid_content_script_showsuccessnotification", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/grid-content-script.ts", + "source_location": "L219", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_grid_content_script_loadgridconfiguration", + "target": "apps_extension_chromium_src_grid_content_script_applyconfiguration", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/__tests__/buildInitiateContextOptions.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_tests_buildinitiatecontextoptions_test", + "target": "apps_extension_chromium_src_handshake_buildinitiatecontextoptions", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/__tests__/buildInitiateContextOptions.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_tests_buildinitiatecontextoptions_test", + "target": "apps_extension_chromium_src_handshake_buildinitiatecontextoptions_buildinitiatecontextoptions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/__tests__/handshakeRpc.test.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_tests_handshakerpc_test", + "target": "apps_extension_chromium_src_handshake_handshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/__tests__/handshakeRpc.test.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_tests_handshakerpc_test", + "target": "apps_extension_chromium_src_handshake_handshakerpc_accepthandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/__tests__/handshakeRpc.test.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_tests_handshakerpc_test", + "target": "apps_extension_chromium_src_handshake_handshakerpc_gethandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/__tests__/handshakeRpc.test.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_tests_handshakerpc_test", + "target": "apps_extension_chromium_src_handshake_handshakerpc_initiatehandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/__tests__/handshakeRpc.test.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_tests_handshakerpc_test", + "target": "apps_extension_chromium_src_handshake_handshakerpc_listhandshakes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/__tests__/handshakeRpc.test.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_tests_handshakerpc_test", + "target": "apps_extension_chromium_src_handshake_handshakerpc_normalizerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/__tests__/handshakeRpc.test.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_tests_handshakerpc_test", + "target": "apps_extension_chromium_src_handshake_handshakerpc_refreshhandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/__tests__/handshakeRpc.test.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_tests_handshakerpc_test", + "target": "apps_extension_chromium_src_handshake_handshakerpc_revokehandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/__tests__/handshakeRpc.test.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_tests_handshakerpc_test", + "target": "apps_extension_chromium_src_handshake_handshakerpc_sendbeapviap2p", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/__tests__/handshakeRpc.test.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_tests_handshakerpc_test", + "target": "apps_extension_chromium_src_handshake_rpctypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/__tests__/handshakeRpc.test.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_tests_handshakerpc_test", + "target": "apps_extension_chromium_src_handshake_rpctypes_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/__tests__/handshakeRpc.test.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_tests_handshakerpc_test", + "target": "apps_extension_chromium_src_handshake_tests_handshakerpc_test_mockrpcerror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/__tests__/handshakeRpc.test.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_tests_handshakerpc_test", + "target": "apps_extension_chromium_src_handshake_tests_handshakerpc_test_mockrpcresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/__tests__/migration.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_tests_migration_test", + "target": "apps_extension_chromium_src_handshake_tests_migration_test_ext_src", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/__tests__/migration.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_tests_migration_test", + "target": "apps_extension_chromium_src_handshake_tests_migration_test_readfile", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/__tests__/pendingP2PBeapQueue.batched-refresh.test.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_tests_pendingp2pbeapqueue_batched_refresh_test", + "target": "apps_extension_chromium_src_handshake_pendingp2pbeapqueue", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/__tests__/pendingP2PBeapQueue.batched-refresh.test.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_tests_pendingp2pbeapqueue_batched_refresh_test", + "target": "apps_extension_chromium_src_handshake_pendingp2pbeapqueue_processpendingp2pbeapqueue", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/__tests__/pendingP2PBeapQueue.batched-refresh.test.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_tests_pendingp2pbeapqueue_batched_refresh_test", + "target": "apps_extension_chromium_src_handshake_tests_pendingp2pbeapqueue_batched_refresh_test_fake_pkg", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/__tests__/pendingP2PBeapQueue.batched-refresh.test.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_tests_pendingp2pbeapqueue_batched_refresh_test", + "target": "apps_extension_chromium_src_handshake_tests_pendingp2pbeapqueue_batched_refresh_test_makeimportsuccess", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/__tests__/pendingP2PBeapQueue.batched-refresh.test.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_tests_pendingp2pbeapqueue_batched_refresh_test", + "target": "apps_extension_chromium_src_handshake_tests_pendingp2pbeapqueue_batched_refresh_test_makependingitem", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/__tests__/pendingP2PBeapQueue.batched-refresh.test.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_tests_pendingp2pbeapqueue_batched_refresh_test", + "target": "apps_extension_chromium_src_handshake_tests_pendingp2pbeapqueue_batched_refresh_test_makeverifysuccess", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/__tests__/pendingP2PBeapQueue.batched-refresh.test.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_tests_pendingp2pbeapqueue_batched_refresh_test", + "target": "apps_extension_chromium_src_handshake_tests_pendingp2pbeapqueue_batched_refresh_test_mockackpendingp2pbeap", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/__tests__/pendingP2PBeapQueue.batched-refresh.test.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_tests_pendingp2pbeapqueue_batched_refresh_test", + "target": "apps_extension_chromium_src_handshake_tests_pendingp2pbeapqueue_batched_refresh_test_mockcachepackage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/__tests__/pendingP2PBeapQueue.batched-refresh.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_tests_pendingp2pbeapqueue_batched_refresh_test", + "target": "apps_extension_chromium_src_handshake_tests_pendingp2pbeapqueue_batched_refresh_test_mockgethandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/__tests__/pendingP2PBeapQueue.batched-refresh.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_tests_pendingp2pbeapqueue_batched_refresh_test", + "target": "apps_extension_chromium_src_handshake_tests_pendingp2pbeapqueue_batched_refresh_test_mockgetpendingp2pbeapmessages", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/__tests__/pendingP2PBeapQueue.batched-refresh.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_tests_pendingp2pbeapqueue_batched_refresh_test", + "target": "apps_extension_chromium_src_handshake_tests_pendingp2pbeapqueue_batched_refresh_test_mockimportbeapmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/__tests__/pendingP2PBeapQueue.batched-refresh.test.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_tests_pendingp2pbeapqueue_batched_refresh_test", + "target": "apps_extension_chromium_src_handshake_tests_pendingp2pbeapqueue_batched_refresh_test_mockmergedepackagedtoelectron", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/__tests__/pendingP2PBeapQueue.batched-refresh.test.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_tests_pendingp2pbeapqueue_batched_refresh_test", + "target": "apps_extension_chromium_src_handshake_tests_pendingp2pbeapqueue_batched_refresh_test_mockrefreshfrommain", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/__tests__/pendingP2PBeapQueue.batched-refresh.test.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_tests_pendingp2pbeapqueue_batched_refresh_test", + "target": "apps_extension_chromium_src_handshake_tests_pendingp2pbeapqueue_batched_refresh_test_mockverifyimportedmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/buildInitiateContextOptions.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_buildinitiatecontextoptions", + "target": "apps_extension_chromium_src_handshake_buildinitiatecontextoptions_buildacceptcontextoptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/buildInitiateContextOptions.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_buildinitiatecontextoptions", + "target": "apps_extension_chromium_src_handshake_buildinitiatecontextoptions_buildacceptcontextoptionsparams", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/buildInitiateContextOptions.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_buildinitiatecontextoptions", + "target": "apps_extension_chromium_src_handshake_buildinitiatecontextoptions_buildinitiatecontextoptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/buildInitiateContextOptions.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_buildinitiatecontextoptions", + "target": "apps_extension_chromium_src_handshake_buildinitiatecontextoptions_buildinitiatecontextoptionsparams", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/buildInitiateContextOptions.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_buildinitiatecontextoptions", + "target": "apps_extension_chromium_src_utils_contextblockhash", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/buildInitiateContextOptions.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_buildinitiatecontextoptions", + "target": "apps_extension_chromium_src_utils_contextblockhash_computeblockhashclient", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/buildInitiateContextOptions.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_buildinitiatecontextoptions", + "target": "packages_shared_src_handshake_policyutils", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/buildInitiateContextOptions.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_buildinitiatecontextoptions", + "target": "packages_shared_src_handshake_policyutils_parsepolicytomode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/buildInitiateContextOptions.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_buildinitiatecontextoptions", + "target": "packages_shared_src_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/buildInitiateContextOptions.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_buildinitiatecontextoptions", + "target": "packages_shared_src_handshake_types_aiprocessingmode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/buildInitiateContextOptions.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_buildinitiatecontextoptions", + "target": "packages_shared_src_handshake_types_contextblockwithpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/buildInitiateContextOptions.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_buildinitiatecontextoptions", + "target": "packages_shared_src_handshake_types_profilecontextitem", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal", + "target": "apps_extension_chromium_src_handshake_buildinitiatecontextoptions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeRequestForm.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakerequestform", + "target": "apps_extension_chromium_src_handshake_buildinitiatecontextoptions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/InitiateHandshakeDialog.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_initiatehandshakedialog", + "target": "apps_extension_chromium_src_handshake_buildinitiatecontextoptions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/SendHandshakeDelivery.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery", + "target": "apps_extension_chromium_src_handshake_buildinitiatecontextoptions", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/buildInitiateContextOptions.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_buildinitiatecontextoptions_buildinitiatecontextoptionsparams", + "target": "packages_shared_src_handshake_types_aiprocessingmode", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/buildInitiateContextOptions.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_buildinitiatecontextoptions_buildinitiatecontextoptionsparams", + "target": "packages_shared_src_handshake_types_profilecontextitem", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/buildInitiateContextOptions.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_buildinitiatecontextoptions_buildinitiatecontextoptions", + "target": "apps_extension_chromium_src_utils_contextblockhash_computeblockhashclient" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/buildInitiateContextOptions.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_buildinitiatecontextoptions_buildinitiatecontextoptions", + "target": "packages_shared_src_handshake_policyutils_parsepolicytomode" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeRequestForm.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakerequestform", + "target": "apps_extension_chromium_src_handshake_buildinitiatecontextoptions_buildinitiatecontextoptions", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeRequestForm.tsx", + "source_location": "L189", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakerequestform_handshakerequestform", + "target": "apps_extension_chromium_src_handshake_buildinitiatecontextoptions_buildinitiatecontextoptions" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/InitiateHandshakeDialog.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_initiatehandshakedialog", + "target": "apps_extension_chromium_src_handshake_buildinitiatecontextoptions_buildinitiatecontextoptions", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/components/InitiateHandshakeDialog.tsx", + "source_location": "L183", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_initiatehandshakedialog_initiatehandshakedialog", + "target": "apps_extension_chromium_src_handshake_buildinitiatecontextoptions_buildinitiatecontextoptions" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/SendHandshakeDelivery.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery", + "target": "apps_extension_chromium_src_handshake_buildinitiatecontextoptions_buildinitiatecontextoptions", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/components/SendHandshakeDelivery.tsx", + "source_location": "L418", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery_sendhandshakedelivery", + "target": "apps_extension_chromium_src_handshake_buildinitiatecontextoptions_buildinitiatecontextoptions" + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/buildInitiateContextOptions.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_buildinitiatecontextoptions_buildacceptcontextoptionsparams", + "target": "packages_shared_src_handshake_types_aiprocessingmode", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/buildInitiateContextOptions.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_buildinitiatecontextoptions_buildacceptcontextoptionsparams", + "target": "packages_shared_src_handshake_types_profilecontextitem", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/buildInitiateContextOptions.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_buildinitiatecontextoptions_buildacceptcontextoptions", + "target": "apps_extension_chromium_src_utils_contextblockhash_computeblockhashclient" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/buildInitiateContextOptions.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_buildinitiatecontextoptions_buildacceptcontextoptions", + "target": "packages_shared_src_handshake_policyutils_parsepolicytomode" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal", + "target": "apps_extension_chromium_src_handshake_buildinitiatecontextoptions_buildacceptcontextoptions", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal_handshakeacceptmodal", + "target": "apps_extension_chromium_src_handshake_buildinitiatecontextoptions_buildacceptcontextoptions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal", + "target": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal_handshakeacceptmodal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal", + "target": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal_handshakeacceptmodalprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal", + "target": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal_sharingmode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal", + "target": "apps_extension_chromium_src_handshake_components_handshakecontextprofilepicker", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal", + "target": "apps_extension_chromium_src_handshake_components_handshakecontextprofilepicker_handshakecontextprofilepicker", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal", + "target": "apps_extension_chromium_src_handshake_handshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal", + "target": "apps_extension_chromium_src_handshake_handshakerpc_accepthandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal", + "target": "apps_extension_chromium_src_handshake_handshakerpc_revokehandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal", + "target": "apps_extension_chromium_src_handshake_rpctypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal", + "target": "apps_extension_chromium_src_handshake_rpctypes_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_bodystyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_cardstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_closebuttonstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_getthemetokens", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headermaintitlestyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headerstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headersubtitlestyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headertitlestyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_inputstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_labelstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_notificationstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_overlaystyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_panelstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_primarybuttonstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_secondarybuttonstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal", + "target": "apps_extension_chromium_src_vault_api", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal", + "target": "apps_extension_chromium_src_vault_api_getvaultstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal", + "target": "packages_shared_src_handshake_receiveremailvalidation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal", + "target": "packages_shared_src_handshake_receiveremailvalidation_issameaccounthandshakeemails", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal", + "target": "packages_shared_src_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal", + "target": "packages_shared_src_handshake_types_profilecontextitem", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeManagementPanel.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakemanagementpanel", + "target": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/index.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_index", + "target": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal_handshakeacceptmodalprops", + "target": "apps_extension_chromium_src_handshake_rpctypes_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal_handshakeacceptmodal", + "target": "apps_extension_chromium_src_handshake_handshakerpc_accepthandshake" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx", + "source_location": "L154", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal_handshakeacceptmodal", + "target": "apps_extension_chromium_src_handshake_handshakerpc_revokehandshake" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx", + "source_location": "L193", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal_handshakeacceptmodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_bodystyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx", + "source_location": "L196", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal_handshakeacceptmodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_cardstyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx", + "source_location": "L183", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal_handshakeacceptmodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_closebuttonstyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal_handshakeacceptmodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_getthemetokens" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx", + "source_location": "L176", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal_handshakeacceptmodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headermaintitlestyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx", + "source_location": "L177", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal_handshakeacceptmodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headersubtitlestyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx", + "source_location": "L173", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal_handshakeacceptmodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headertitlestyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx", + "source_location": "L464", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal_handshakeacceptmodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_notificationstyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx", + "source_location": "L170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal_handshakeacceptmodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_panelstyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx", + "source_location": "L539", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal_handshakeacceptmodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_secondarybuttonstyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal_handshakeacceptmodal", + "target": "apps_extension_chromium_src_vault_api_getvaultstatus" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal_handshakeacceptmodal", + "target": "packages_shared_src_handshake_receiveremailvalidation_issameaccounthandshakeemails" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeManagementPanel.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakemanagementpanel", + "target": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal_handshakeacceptmodal", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/index.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_index", + "target": "apps_extension_chromium_src_handshake_components_handshakeacceptmodal_handshakeacceptmodal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeContextProfilePicker.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakecontextprofilepicker", + "target": "apps_extension_chromium_src_handshake_components_handshakecontextprofilepicker_default_policy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeContextProfilePicker.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakecontextprofilepicker", + "target": "apps_extension_chromium_src_handshake_components_handshakecontextprofilepicker_handshakecontextprofilepicker", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeContextProfilePicker.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakecontextprofilepicker", + "target": "apps_extension_chromium_src_handshake_components_handshakecontextprofilepicker_handshakecontextprofilepickerprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeContextProfilePicker.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakecontextprofilepicker", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeContextProfilePicker.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakecontextprofilepicker", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_hscontextprofilesummary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeContextProfilePicker.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakecontextprofilepicker", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_listhsprofiles", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeRequestForm.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakerequestform", + "target": "apps_extension_chromium_src_handshake_components_handshakecontextprofilepicker", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/InitiateHandshakeDialog.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_initiatehandshakedialog", + "target": "apps_extension_chromium_src_handshake_components_handshakecontextprofilepicker", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/SendHandshakeDelivery.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery", + "target": "apps_extension_chromium_src_handshake_components_handshakecontextprofilepicker", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeContextProfilePicker.tsx", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakecontextprofilepicker_handshakecontextprofilepicker", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_listhsprofiles" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeRequestForm.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakerequestform", + "target": "apps_extension_chromium_src_handshake_components_handshakecontextprofilepicker_handshakecontextprofilepicker", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/InitiateHandshakeDialog.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_initiatehandshakedialog", + "target": "apps_extension_chromium_src_handshake_components_handshakecontextprofilepicker_handshakecontextprofilepicker", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/SendHandshakeDelivery.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery", + "target": "apps_extension_chromium_src_handshake_components_handshakecontextprofilepicker_handshakecontextprofilepicker", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeDetailsPanel.tsx", + "source_location": "L678", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakedetailspanel", + "target": "apps_extension_chromium_src_handshake_components_handshakedetailspanel_detailrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeDetailsPanel.tsx", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakedetailspanel", + "target": "apps_extension_chromium_src_handshake_components_handshakedetailspanel_formatrelativetime", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeDetailsPanel.tsx", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakedetailspanel", + "target": "apps_extension_chromium_src_handshake_components_handshakedetailspanel_getcontentpreview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeDetailsPanel.tsx", + "source_location": "L193", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakedetailspanel", + "target": "apps_extension_chromium_src_handshake_components_handshakedetailspanel_handshakedetailspanel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeDetailsPanel.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakedetailspanel", + "target": "apps_extension_chromium_src_handshake_components_handshakedetailspanel_handshakedetailspanelprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeDetailsPanel.tsx", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakedetailspanel", + "target": "apps_extension_chromium_src_handshake_components_handshakedetailspanel_handshakemessagerow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeDetailsPanel.tsx", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakedetailspanel", + "target": "apps_extension_chromium_src_handshake_components_handshakedetailspanel_handshakemessagerowprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeDetailsPanel.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakedetailspanel", + "target": "apps_extension_chromium_src_handshake_components_handshakedetailspanel_paneltab", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeDetailsPanel.tsx", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakedetailspanel", + "target": "apps_extension_chromium_src_handshake_components_handshakedetailspanel_state_config", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeDetailsPanel.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakedetailspanel", + "target": "apps_extension_chromium_src_handshake_rpctypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeDetailsPanel.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakedetailspanel", + "target": "apps_extension_chromium_src_handshake_rpctypes_handshakedetailsstatusprefix", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeDetailsPanel.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakedetailspanel", + "target": "apps_extension_chromium_src_handshake_rpctypes_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeDetailsPanel.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakedetailspanel", + "target": "apps_extension_chromium_src_handshake_rpctypes_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeManagementPanel.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakemanagementpanel", + "target": "apps_extension_chromium_src_handshake_components_handshakedetailspanel", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/index.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_index", + "target": "apps_extension_chromium_src_handshake_components_handshakedetailspanel", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeDetailsPanel.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakedetailspanel_handshakedetailspanelprops", + "target": "apps_extension_chromium_src_handshake_rpctypes_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeDetailsPanel.tsx", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakedetailspanel_handshakemessagerow", + "target": "apps_extension_chromium_src_handshake_components_handshakedetailspanel_formatrelativetime", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeDetailsPanel.tsx", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakedetailspanel_handshakemessagerow", + "target": "apps_extension_chromium_src_handshake_components_handshakedetailspanel_getcontentpreview", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeDetailsPanel.tsx", + "source_location": "L468", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakedetailspanel_handshakedetailspanel", + "target": "apps_extension_chromium_src_handshake_rpctypes_handshakedetailsstatusprefix" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeManagementPanel.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakemanagementpanel", + "target": "apps_extension_chromium_src_handshake_components_handshakedetailspanel_handshakedetailspanel", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/index.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_index", + "target": "apps_extension_chromium_src_handshake_components_handshakedetailspanel_handshakedetailspanel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeManagementPanel.tsx", + "source_location": "L313", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakemanagementpanel", + "target": "apps_extension_chromium_src_handshake_components_handshakemanagementpanel_handshakelistitem", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeManagementPanel.tsx", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakemanagementpanel", + "target": "apps_extension_chromium_src_handshake_components_handshakemanagementpanel_handshakemanagementpanel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeManagementPanel.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakemanagementpanel", + "target": "apps_extension_chromium_src_handshake_components_handshakemanagementpanel_handshakemanagementpanelprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeManagementPanel.tsx", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakemanagementpanel", + "target": "apps_extension_chromium_src_handshake_components_handshakemanagementpanel_itemsforstategroup", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeManagementPanel.tsx", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakemanagementpanel", + "target": "apps_extension_chromium_src_handshake_components_handshakemanagementpanel_state_labels", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeManagementPanel.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakemanagementpanel", + "target": "apps_extension_chromium_src_handshake_components_handshakemanagementpanel_state_order", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeManagementPanel.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakemanagementpanel", + "target": "apps_extension_chromium_src_handshake_components_initiatehandshakedialog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeManagementPanel.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakemanagementpanel", + "target": "apps_extension_chromium_src_handshake_components_initiatehandshakedialog_initiatehandshakedialog", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeManagementPanel.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakemanagementpanel", + "target": "apps_extension_chromium_src_handshake_handshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeManagementPanel.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakemanagementpanel", + "target": "apps_extension_chromium_src_handshake_handshakerpc_deletehandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeManagementPanel.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakemanagementpanel", + "target": "apps_extension_chromium_src_handshake_rpctypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeManagementPanel.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakemanagementpanel", + "target": "apps_extension_chromium_src_handshake_rpctypes_handshakelistrowicon", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeManagementPanel.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakemanagementpanel", + "target": "apps_extension_chromium_src_handshake_rpctypes_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeManagementPanel.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakemanagementpanel", + "target": "apps_extension_chromium_src_handshake_rpctypes_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeManagementPanel.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakemanagementpanel", + "target": "apps_extension_chromium_src_handshake_rpctypes_hashandshakekeymaterial", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeManagementPanel.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakemanagementpanel", + "target": "apps_extension_chromium_src_handshake_usehandshakes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeManagementPanel.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakemanagementpanel", + "target": "apps_extension_chromium_src_handshake_usehandshakes_usehandshakes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeManagementPanel.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakemanagementpanel", + "target": "apps_extension_chromium_src_vault_api", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeManagementPanel.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakemanagementpanel", + "target": "apps_extension_chromium_src_vault_api_getvaultstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeManagementPanel.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakemanagementpanel", + "target": "apps_extension_chromium_src_wrguard_usewrguardstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeManagementPanel.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakemanagementpanel", + "target": "apps_extension_chromium_src_wrguard_usewrguardstore_usewrguardstore", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/index.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_index", + "target": "apps_extension_chromium_src_handshake_components_handshakemanagementpanel", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_handshake_components_handshakemanagementpanel", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_handshake_components_handshakemanagementpanel", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/WRGuardWorkspace.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_wrguardworkspace", + "target": "apps_extension_chromium_src_handshake_components_handshakemanagementpanel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeManagementPanel.tsx", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakemanagementpanel_handshakemanagementpanel", + "target": "apps_extension_chromium_src_handshake_components_handshakemanagementpanel_itemsforstategroup", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeManagementPanel.tsx", + "source_location": "L275", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakemanagementpanel_handshakemanagementpanel", + "target": "apps_extension_chromium_src_handshake_handshakerpc_deletehandshake" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeManagementPanel.tsx", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakemanagementpanel_handshakemanagementpanel", + "target": "apps_extension_chromium_src_handshake_usehandshakes_usehandshakes" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeManagementPanel.tsx", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakemanagementpanel_handshakemanagementpanel", + "target": "apps_extension_chromium_src_vault_api_getvaultstatus" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeManagementPanel.tsx", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakemanagementpanel_handshakemanagementpanel", + "target": "apps_extension_chromium_src_wrguard_usewrguardstore_usewrguardstore" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/index.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_index", + "target": "apps_extension_chromium_src_handshake_components_handshakemanagementpanel_handshakemanagementpanel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_handshake_components_handshakemanagementpanel_handshakemanagementpanel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_handshake_components_handshakemanagementpanel_handshakemanagementpanel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/WRGuardWorkspace.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_wrguardworkspace", + "target": "apps_extension_chromium_src_handshake_components_handshakemanagementpanel_handshakemanagementpanel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeManagementPanel.tsx", + "source_location": "L345", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakemanagementpanel_handshakelistitem", + "target": "apps_extension_chromium_src_handshake_rpctypes_handshakelistrowicon", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeManagementPanel.tsx", + "source_location": "L362", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakemanagementpanel_handshakelistitem", + "target": "apps_extension_chromium_src_handshake_rpctypes_hashandshakekeymaterial", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeRequestForm.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakerequestform", + "target": "apps_extension_chromium_src_handshake_components_handshakerequestform_emailaccount", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeRequestForm.tsx", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakerequestform", + "target": "apps_extension_chromium_src_handshake_components_handshakerequestform_handshakerequestform", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeRequestForm.tsx", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakerequestform", + "target": "apps_extension_chromium_src_handshake_components_handshakerequestform_handshakerequestformprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeRequestForm.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakerequestform", + "target": "apps_extension_chromium_src_handshake_fingerprint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeRequestForm.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakerequestform", + "target": "apps_extension_chromium_src_handshake_fingerprint_formatfingerprintgrouped", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeRequestForm.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakerequestform", + "target": "apps_extension_chromium_src_handshake_fingerprint_formatfingerprintshort", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeRequestForm.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakerequestform", + "target": "apps_extension_chromium_src_handshake_handshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeRequestForm.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakerequestform", + "target": "apps_extension_chromium_src_handshake_handshakerpc_initiatehandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeRequestForm.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakerequestform", + "target": "apps_extension_chromium_src_handshake_microcopy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeRequestForm.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakerequestform", + "target": "apps_extension_chromium_src_handshake_microcopy_policy_notes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeRequestForm.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakerequestform", + "target": "apps_extension_chromium_src_handshake_microcopy_tooltips", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeRequestForm.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakerequestform", + "target": "apps_extension_chromium_src_shared_email_pickdefaultaccountrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeRequestForm.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakerequestform", + "target": "apps_extension_chromium_src_shared_email_pickdefaultaccountrow_pickdefaultemailaccountrowid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeRequestForm.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakerequestform", + "target": "apps_extension_chromium_src_vault_api", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeRequestForm.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakerequestform", + "target": "apps_extension_chromium_src_vault_api_getvaultstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeRequestForm.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakerequestform", + "target": "packages_shared_src_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeRequestForm.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakerequestform", + "target": "packages_shared_src_handshake_types_profilecontextitem", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_handshake_components_handshakerequestform", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_handshake_components_handshakerequestform", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeRequestForm.tsx", + "source_location": "L365", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakerequestform_handshakerequestform", + "target": "apps_extension_chromium_src_handshake_fingerprint_formatfingerprintgrouped" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeRequestForm.tsx", + "source_location": "L368", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakerequestform_handshakerequestform", + "target": "apps_extension_chromium_src_handshake_fingerprint_formatfingerprintshort" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeRequestForm.tsx", + "source_location": "L198", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakerequestform_handshakerequestform", + "target": "apps_extension_chromium_src_handshake_handshakerpc_initiatehandshake" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeRequestForm.tsx", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakerequestform_handshakerequestform", + "target": "apps_extension_chromium_src_shared_email_pickdefaultaccountrow_pickdefaultemailaccountrowid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeRequestForm.tsx", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakerequestform_handshakerequestform", + "target": "apps_extension_chromium_src_vault_api_getvaultstatus" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_handshake_components_handshakerequestform_handshakerequestform", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_handshake_components_handshakerequestform_handshakerequestform", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeSelectItem.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeselectitem", + "target": "apps_extension_chromium_src_handshake_components_handshakeselectitem_automation_colors", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeSelectItem.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeselectitem", + "target": "apps_extension_chromium_src_handshake_components_handshakeselectitem_automation_icons", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeSelectItem.tsx", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeselectitem", + "target": "apps_extension_chromium_src_handshake_components_handshakeselectitem_handshakeselectitem", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeSelectItem.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeselectitem", + "target": "apps_extension_chromium_src_handshake_components_handshakeselectitem_handshakeselectitemprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeSelectItem.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeselectitem", + "target": "apps_extension_chromium_src_handshake_microcopy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeSelectItem.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeselectitem", + "target": "apps_extension_chromium_src_handshake_microcopy_automation_labels", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeSelectItem.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeselectitem", + "target": "apps_extension_chromium_src_handshake_microcopy_badge_text", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeSelectItem.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeselectitem", + "target": "apps_extension_chromium_src_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeSelectItem.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeselectitem", + "target": "apps_extension_chromium_src_handshake_types_automationmode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeSelectItem.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeselectitem", + "target": "apps_extension_chromium_src_handshake_types_handshake", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_index", + "target": "apps_extension_chromium_src_handshake_components_handshakeselectitem", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/HandshakeSelectItem.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_handshakeselectitem_handshakeselectitemprops", + "target": "apps_extension_chromium_src_handshake_types_handshake", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_index", + "target": "apps_extension_chromium_src_handshake_components_handshakeselectitem_handshakeselectitem", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/index.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_index", + "target": "apps_extension_chromium_src_handshake_components_initiatehandshakedialog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/InitiateHandshakeDialog.tsx", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_initiatehandshakedialog", + "target": "apps_extension_chromium_src_handshake_components_initiatehandshakedialog_initiatehandshakedialog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/InitiateHandshakeDialog.tsx", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_initiatehandshakedialog", + "target": "apps_extension_chromium_src_handshake_components_initiatehandshakedialog_initiatehandshakedialogprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/InitiateHandshakeDialog.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_initiatehandshakedialog", + "target": "apps_extension_chromium_src_handshake_handshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/InitiateHandshakeDialog.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_initiatehandshakedialog", + "target": "apps_extension_chromium_src_handshake_handshakerpc_initiatehandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/InitiateHandshakeDialog.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_initiatehandshakedialog", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/InitiateHandshakeDialog.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_initiatehandshakedialog", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_bodystyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/InitiateHandshakeDialog.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_initiatehandshakedialog", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_closebuttonstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/InitiateHandshakeDialog.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_initiatehandshakedialog", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_getthemetokens", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/InitiateHandshakeDialog.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_initiatehandshakedialog", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headermaintitlestyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/InitiateHandshakeDialog.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_initiatehandshakedialog", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headerstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/InitiateHandshakeDialog.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_initiatehandshakedialog", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headersubtitlestyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/InitiateHandshakeDialog.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_initiatehandshakedialog", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headertitlestyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/InitiateHandshakeDialog.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_initiatehandshakedialog", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_inputstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/InitiateHandshakeDialog.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_initiatehandshakedialog", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_labelstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/InitiateHandshakeDialog.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_initiatehandshakedialog", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_notificationstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/InitiateHandshakeDialog.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_initiatehandshakedialog", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_overlaystyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/InitiateHandshakeDialog.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_initiatehandshakedialog", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_panelstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/InitiateHandshakeDialog.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_initiatehandshakedialog", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_primarybuttonstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/InitiateHandshakeDialog.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_initiatehandshakedialog", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_secondarybuttonstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/InitiateHandshakeDialog.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_initiatehandshakedialog", + "target": "apps_extension_chromium_src_vault_api", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/InitiateHandshakeDialog.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_initiatehandshakedialog", + "target": "apps_extension_chromium_src_vault_api_getvaultstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/InitiateHandshakeDialog.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_initiatehandshakedialog", + "target": "packages_shared_src_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/InitiateHandshakeDialog.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_initiatehandshakedialog", + "target": "packages_shared_src_handshake_types_profilecontextitem", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/index.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_index", + "target": "apps_extension_chromium_src_handshake_components_initiatehandshakedialog_initiatehandshakedialog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/components/InitiateHandshakeDialog.tsx", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_initiatehandshakedialog_initiatehandshakedialog", + "target": "apps_extension_chromium_src_handshake_handshakerpc_initiatehandshake" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/components/InitiateHandshakeDialog.tsx", + "source_location": "L261", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_initiatehandshakedialog_initiatehandshakedialog", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_bodystyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/components/InitiateHandshakeDialog.tsx", + "source_location": "L251", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_initiatehandshakedialog_initiatehandshakedialog", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_closebuttonstyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/components/InitiateHandshakeDialog.tsx", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_initiatehandshakedialog_initiatehandshakedialog", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_getthemetokens" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/components/InitiateHandshakeDialog.tsx", + "source_location": "L244", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_initiatehandshakedialog_initiatehandshakedialog", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headermaintitlestyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/components/InitiateHandshakeDialog.tsx", + "source_location": "L245", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_initiatehandshakedialog_initiatehandshakedialog", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headersubtitlestyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/components/InitiateHandshakeDialog.tsx", + "source_location": "L241", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_initiatehandshakedialog_initiatehandshakedialog", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headertitlestyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/components/InitiateHandshakeDialog.tsx", + "source_location": "L483", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_initiatehandshakedialog_initiatehandshakedialog", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_notificationstyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/components/InitiateHandshakeDialog.tsx", + "source_location": "L221", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_initiatehandshakedialog_initiatehandshakedialog", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_panelstyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/components/InitiateHandshakeDialog.tsx", + "source_location": "L229", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_initiatehandshakedialog_initiatehandshakedialog", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_primarybuttonstyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/components/InitiateHandshakeDialog.tsx", + "source_location": "L733", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_initiatehandshakedialog_initiatehandshakedialog", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_secondarybuttonstyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/components/InitiateHandshakeDialog.tsx", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_initiatehandshakedialog_initiatehandshakedialog", + "target": "apps_extension_chromium_src_vault_api_getvaultstatus" + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_index", + "target": "apps_extension_chromium_src_handshake_components_packageheadermeta", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/PackageHeaderMeta.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_packageheadermeta", + "target": "apps_extension_chromium_src_handshake_components_packageheadermeta_packageheadermeta", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/PackageHeaderMeta.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_packageheadermeta", + "target": "apps_extension_chromium_src_handshake_components_packageheadermeta_packageheadermetaprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/PackageHeaderMeta.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_packageheadermeta", + "target": "apps_extension_chromium_src_handshake_microcopy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/PackageHeaderMeta.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_packageheadermeta", + "target": "apps_extension_chromium_src_handshake_microcopy_badge_text", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/PackageHeaderMeta.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_packageheadermeta", + "target": "apps_extension_chromium_src_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/PackageHeaderMeta.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_packageheadermeta", + "target": "apps_extension_chromium_src_handshake_types_packagehandshakemapping", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/PackageHeaderMeta.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_packageheadermeta_packageheadermetaprops", + "target": "apps_extension_chromium_src_handshake_types_packagehandshakemapping", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_index", + "target": "apps_extension_chromium_src_handshake_components_packageheadermeta_packageheadermeta", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/index.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_index", + "target": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/SendHandshakeDelivery.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery", + "target": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery_deliverymode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/SendHandshakeDelivery.tsx", + "source_location": "L144", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery", + "target": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery_deliveryoption", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/SendHandshakeDelivery.tsx", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery", + "target": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery_deliveryoptionprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/SendHandshakeDelivery.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery", + "target": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery_emailaccount", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/SendHandshakeDelivery.tsx", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery", + "target": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery_formatpairingcodeforinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/SendHandshakeDelivery.tsx", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery", + "target": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery_normalizepairingcodeinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/SendHandshakeDelivery.tsx", + "source_location": "L244", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery", + "target": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery_sendhandshakedelivery", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/SendHandshakeDelivery.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery", + "target": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery_sendhandshakedeliveryprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/SendHandshakeDelivery.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery", + "target": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery_theme", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/SendHandshakeDelivery.tsx", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery", + "target": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery_usethemetokens", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/SendHandshakeDelivery.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery", + "target": "apps_extension_chromium_src_handshake_handshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/SendHandshakeDelivery.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery", + "target": "apps_extension_chromium_src_handshake_handshakerpc_buildhandshakefordownload", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/SendHandshakeDelivery.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery", + "target": "apps_extension_chromium_src_handshake_handshakerpc_initiatehandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/SendHandshakeDelivery.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery", + "target": "apps_extension_chromium_src_vault_api", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/SendHandshakeDelivery.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery", + "target": "apps_extension_chromium_src_vault_api_getvaultstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/SendHandshakeDelivery.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery", + "target": "packages_shared_src_handshake_policyutils", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/SendHandshakeDelivery.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery", + "target": "packages_shared_src_handshake_policyutils_parsepolicytomode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/SendHandshakeDelivery.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery", + "target": "packages_shared_src_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/SendHandshakeDelivery.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery", + "target": "packages_shared_src_handshake_types_profilecontextitem", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/SendHandshakeDelivery.tsx", + "source_location": "L916", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery_sendhandshakedelivery", + "target": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery_normalizepairingcodeinput", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/SendHandshakeDelivery.tsx", + "source_location": "L914", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery_sendhandshakedelivery", + "target": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery_formatpairingcodeforinput", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/SendHandshakeDelivery.tsx", + "source_location": "L263", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery_sendhandshakedelivery", + "target": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery_usethemetokens", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/components/index.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_index", + "target": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery_sendhandshakedelivery", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/components/SendHandshakeDelivery.tsx", + "source_location": "L486", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery_sendhandshakedelivery", + "target": "apps_extension_chromium_src_handshake_handshakerpc_buildhandshakefordownload" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/components/SendHandshakeDelivery.tsx", + "source_location": "L459", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery_sendhandshakedelivery", + "target": "apps_extension_chromium_src_handshake_handshakerpc_initiatehandshake" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/components/SendHandshakeDelivery.tsx", + "source_location": "L273", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery_sendhandshakedelivery", + "target": "apps_extension_chromium_src_vault_api_getvaultstatus" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/components/SendHandshakeDelivery.tsx", + "source_location": "L1144", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery_sendhandshakedelivery", + "target": "packages_shared_src_handshake_policyutils_parsepolicytomode" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery_sendhandshakedelivery", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_handshake_components_sendhandshakedelivery_sendhandshakedelivery", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/index.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_index", + "target": "apps_extension_chromium_src_handshake_components_index", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/fingerprint.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_fingerprint", + "target": "apps_extension_chromium_src_handshake_fingerprint_comparefingerprints", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/fingerprint.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_fingerprint", + "target": "apps_extension_chromium_src_handshake_fingerprint_formatfingerprintgrouped", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/fingerprint.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_fingerprint", + "target": "apps_extension_chromium_src_handshake_fingerprint_formatfingerprintshort", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/fingerprint.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_fingerprint", + "target": "apps_extension_chromium_src_handshake_fingerprint_generatefingerprint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/fingerprint.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_fingerprint", + "target": "apps_extension_chromium_src_handshake_fingerprint_generatefingerprintsync", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/fingerprint.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_fingerprint", + "target": "apps_extension_chromium_src_handshake_fingerprint_generatemockfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/fingerprint.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_fingerprint", + "target": "apps_extension_chromium_src_handshake_fingerprint_isvalidfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeService.ts", + "source_location": "L134", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakeservice", + "target": "apps_extension_chromium_src_handshake_fingerprint", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/index.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_index", + "target": "apps_extension_chromium_src_handshake_fingerprint", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox", + "target": "apps_extension_chromium_src_handshake_fingerprint", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_handshake_fingerprint", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_handshake_fingerprint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeService.ts", + "source_location": "L134", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakeservice", + "target": "apps_extension_chromium_src_handshake_fingerprint_formatfingerprintshort", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/handshakeService.ts", + "source_location": "L151", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakeservice_getouridentityfordisplay", + "target": "apps_extension_chromium_src_handshake_fingerprint_formatfingerprintshort" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox", + "target": "apps_extension_chromium_src_handshake_fingerprint_formatfingerprintshort", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_handshake_fingerprint_formatfingerprintshort", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L482", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat_popupchatapp", + "target": "apps_extension_chromium_src_handshake_fingerprint_formatfingerprintshort", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_handshake_fingerprint_formatfingerprintshort", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L580", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_handshake_fingerprint_formatfingerprintshort", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeService.ts", + "source_location": "L134", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakeservice", + "target": "apps_extension_chromium_src_handshake_fingerprint_formatfingerprintgrouped", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/handshakeService.ts", + "source_location": "L152", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakeservice_getouridentityfordisplay", + "target": "apps_extension_chromium_src_handshake_fingerprint_formatfingerprintgrouped" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox", + "target": "apps_extension_chromium_src_handshake_fingerprint_formatfingerprintgrouped", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L624", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox_policylightbox", + "target": "apps_extension_chromium_src_handshake_fingerprint_formatfingerprintgrouped" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_handshake_fingerprint_formatfingerprintgrouped", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox", + "target": "apps_extension_chromium_src_handshake_fingerprint_generatemockfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L302", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc", + "target": "apps_extension_chromium_src_handshake_handshakerpc_accepthandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L404", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc", + "target": "apps_extension_chromium_src_handshake_handshakerpc_ackpendingp2pbeap", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L436", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc", + "target": "apps_extension_chromium_src_handshake_handshakerpc_ackpendingplainemail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L552", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc", + "target": "apps_extension_chromium_src_handshake_handshakerpc_beapinboxarchive", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L575", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc", + "target": "apps_extension_chromium_src_handshake_handshakerpc_beapinboxclassify", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L476", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc", + "target": "apps_extension_chromium_src_handshake_handshakerpc_beapinboxlistresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L542", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc", + "target": "apps_extension_chromium_src_handshake_handshakerpc_beapinboxmarkread", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L448", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc", + "target": "apps_extension_chromium_src_handshake_handshakerpc_beapinboxrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L590", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc", + "target": "apps_extension_chromium_src_handshake_handshakerpc_beapinboxseturgency", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L562", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc", + "target": "apps_extension_chromium_src_handshake_handshakerpc_beapinboxunarchive", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L240", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc", + "target": "apps_extension_chromium_src_handshake_handshakerpc_buildhandshakefordownload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L758", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc", + "target": "apps_extension_chromium_src_handshake_handshakerpc_checkhandshakesendready", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L607", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc", + "target": "apps_extension_chromium_src_handshake_handshakerpc_clientsendfailuredebug", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L373", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc", + "target": "apps_extension_chromium_src_handshake_handshakerpc_deletehandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L519", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc", + "target": "apps_extension_chromium_src_handshake_handshakerpc_getbeapinboxmany", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L495", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc", + "target": "apps_extension_chromium_src_handshake_handshakerpc_getbeapinboxmessages", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L144", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc", + "target": "apps_extension_chromium_src_handshake_handshakerpc_gethandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L157", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc", + "target": "apps_extension_chromium_src_handshake_handshakerpc_gethandshakemlkemsecret", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc", + "target": "apps_extension_chromium_src_handshake_handshakerpc_getkeyagreementforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L393", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc", + "target": "apps_extension_chromium_src_handshake_handshakerpc_getpendingp2pbeapmessages", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L425", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc", + "target": "apps_extension_chromium_src_handshake_handshakerpc_getpendingplainemails", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc", + "target": "apps_extension_chromium_src_handshake_handshakerpc_infercounterpartydevicerole", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc", + "target": "apps_extension_chromium_src_handshake_handshakerpc_initiatehandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc", + "target": "apps_extension_chromium_src_handshake_handshakerpc_listhandshakes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc", + "target": "apps_extension_chromium_src_handshake_handshakerpc_nextrpcid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L775", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc", + "target": "apps_extension_chromium_src_handshake_handshakerpc_normalizerecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L623", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc", + "target": "apps_extension_chromium_src_handshake_handshakerpc_outboundrequestdebugsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L386", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc", + "target": "apps_extension_chromium_src_handshake_handshakerpc_pendingp2pbeapentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L414", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc", + "target": "apps_extension_chromium_src_handshake_handshakerpc_pendingplainemailentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L353", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc", + "target": "apps_extension_chromium_src_handshake_handshakerpc_refreshhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L367", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc", + "target": "apps_extension_chromium_src_handshake_handshakerpc_revokehandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L741", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc", + "target": "apps_extension_chromium_src_handshake_handshakerpc_sendbeapviap2p", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L674", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc", + "target": "apps_extension_chromium_src_handshake_handshakerpc_sendbeapviap2presult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc", + "target": "apps_extension_chromium_src_handshake_handshakerpc_sendhandshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc", + "target": "apps_extension_chromium_src_handshake_mlkemhandshakestorage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc", + "target": "apps_extension_chromium_src_handshake_mlkemhandshakestorage_removelocalmlkemsecret", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc", + "target": "apps_extension_chromium_src_handshake_rpctypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc", + "target": "apps_extension_chromium_src_handshake_rpctypes_handshakeacceptresponse", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc", + "target": "apps_extension_chromium_src_handshake_rpctypes_handshakebuildfordownloadresponse", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc", + "target": "apps_extension_chromium_src_handshake_rpctypes_handshakeinitiateresponse", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc", + "target": "apps_extension_chromium_src_handshake_rpctypes_handshakelistresponse", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc", + "target": "apps_extension_chromium_src_handshake_rpctypes_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc", + "target": "apps_extension_chromium_src_handshake_rpctypes_handshakerefreshresponse", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc", + "target": "apps_extension_chromium_src_handshake_rpctypes_peerkeymaterialfrombackendrow", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc", + "target": "packages_shared_src_handshake_policyutils", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc", + "target": "packages_shared_src_handshake_policyutils_policyselectioninput", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/index.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_index", + "target": "apps_extension_chromium_src_handshake_handshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/pendingP2PBeapQueue.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_pendingp2pbeapqueue", + "target": "apps_extension_chromium_src_handshake_handshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/useHandshakes.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_usehandshakes", + "target": "apps_extension_chromium_src_handshake_handshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline", + "target": "apps_extension_chromium_src_handshake_handshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_handshake_handshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_handshake_handshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc_sendhandshakerpc", + "target": "apps_extension_chromium_src_handshake_handshakerpc_nextrpcid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L262", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc_buildhandshakefordownload", + "target": "apps_extension_chromium_src_handshake_handshakerpc_infercounterpartydevicerole", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L197", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc_initiatehandshake", + "target": "apps_extension_chromium_src_handshake_handshakerpc_infercounterpartydevicerole", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L761", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc_checkhandshakesendready", + "target": "apps_extension_chromium_src_handshake_handshakerpc_sendhandshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L358", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc_refreshhandshake", + "target": "apps_extension_chromium_src_handshake_handshakerpc_sendhandshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L368", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc_revokehandshake", + "target": "apps_extension_chromium_src_handshake_handshakerpc_sendhandshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L746", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc_sendbeapviap2p", + "target": "apps_extension_chromium_src_handshake_handshakerpc_sendhandshakerpc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L323", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc_accepthandshake", + "target": "apps_extension_chromium_src_handshake_handshakerpc_getkeyagreementforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L260", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc_buildhandshakefordownload", + "target": "apps_extension_chromium_src_handshake_handshakerpc_getkeyagreementforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L196", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc_initiatehandshake", + "target": "apps_extension_chromium_src_handshake_handshakerpc_getkeyagreementforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc_listhandshakes", + "target": "apps_extension_chromium_src_handshake_handshakerpc_normalizerecord", + "confidence_score": 0.5 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/useHandshakes.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_usehandshakes", + "target": "apps_extension_chromium_src_handshake_handshakerpc_listhandshakes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/useHandshakes.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_usehandshakes_usehandshakes", + "target": "apps_extension_chromium_src_handshake_handshakerpc_listhandshakes" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc_gethandshake", + "target": "apps_extension_chromium_src_handshake_handshakerpc_normalizerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/pendingP2PBeapQueue.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_pendingp2pbeapqueue", + "target": "apps_extension_chromium_src_handshake_handshakerpc_gethandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/pendingP2PBeapQueue.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_pendingp2pbeapqueue_buildverifyoptions", + "target": "apps_extension_chromium_src_handshake_handshakerpc_gethandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline", + "target": "apps_extension_chromium_src_handshake_handshakerpc_gethandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L728", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline_augmentverifyoptionsforqbeap", + "target": "apps_extension_chromium_src_handshake_handshakerpc_gethandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline", + "target": "apps_extension_chromium_src_handshake_handshakerpc_gethandshakemlkemsecret", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L745", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline_augmentverifyoptionsforqbeap", + "target": "apps_extension_chromium_src_handshake_handshakerpc_gethandshakemlkemsecret", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L378", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc_deletehandshake", + "target": "apps_extension_chromium_src_handshake_mlkemhandshakestorage_removelocalmlkemsecret" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/pendingP2PBeapQueue.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_pendingp2pbeapqueue", + "target": "apps_extension_chromium_src_handshake_handshakerpc_getpendingp2pbeapmessages", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/pendingP2PBeapQueue.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_pendingp2pbeapqueue_processpendingp2pbeapqueue", + "target": "apps_extension_chromium_src_handshake_handshakerpc_getpendingp2pbeapmessages" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/pendingP2PBeapQueue.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_pendingp2pbeapqueue", + "target": "apps_extension_chromium_src_handshake_handshakerpc_ackpendingp2pbeap", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/pendingP2PBeapQueue.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_pendingp2pbeapqueue_processpendingp2pbeapqueue", + "target": "apps_extension_chromium_src_handshake_handshakerpc_ackpendingp2pbeap" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_handshake_handshakerpc_clientsendfailuredebug", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_handshake_handshakerpc_clientsendfailuredebug", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_handshake_handshakerpc_outboundrequestdebugsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_handshake_handshakerpc_outboundrequestdebugsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/handshakeRpc.ts", + "source_location": "L776", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakerpc_normalizerecord", + "target": "apps_extension_chromium_src_handshake_rpctypes_peerkeymaterialfrombackendrow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeService.ts", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakeservice", + "target": "apps_extension_chromium_src_handshake_handshakeservice_clearidentitycache", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeService.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakeservice", + "target": "apps_extension_chromium_src_handshake_handshakeservice_derivefingerprintfromx25519", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeService.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakeservice", + "target": "apps_extension_chromium_src_handshake_handshakeservice_getouridentity", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeService.ts", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakeservice", + "target": "apps_extension_chromium_src_handshake_handshakeservice_getouridentityfordisplay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeService.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakeservice", + "target": "apps_extension_chromium_src_handshake_handshakeservice_ouridentity", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/index.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_index", + "target": "apps_extension_chromium_src_handshake_handshakeservice", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_handshake_handshakeservice", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_handshake_handshakeservice", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_handshake_handshakeservice_ouridentity", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_handshake_handshakeservice_ouridentity", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeService.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakeservice_getouridentity", + "target": "apps_extension_chromium_src_handshake_handshakeservice_derivefingerprintfromx25519", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/handshakeService.ts", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_handshakeservice_getouridentityfordisplay", + "target": "apps_extension_chromium_src_handshake_handshakeservice_getouridentity", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_handshake_handshakeservice_getouridentity", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L473", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat_popupchatapp", + "target": "apps_extension_chromium_src_handshake_handshakeservice_getouridentity", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_handshake_handshakeservice_getouridentity", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L571", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_handshake_handshakeservice_getouridentity", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/index.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_index", + "target": "apps_extension_chromium_src_handshake_microcopy", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/index.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_index", + "target": "apps_extension_chromium_src_handshake_mlkemhandshakestorage", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/index.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_index", + "target": "apps_extension_chromium_src_handshake_pendingp2pbeapqueue", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/index.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_index", + "target": "apps_extension_chromium_src_handshake_pendingp2pbeapqueue_processpendingp2pbeapqueue", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/index.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_index", + "target": "apps_extension_chromium_src_handshake_rpctypes", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/index.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_index", + "target": "apps_extension_chromium_src_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/index.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_index", + "target": "apps_extension_chromium_src_handshake_usehandshakes", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/index.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_index", + "target": "apps_extension_chromium_src_handshake_usehandshakes_usehandshakes", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/index.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_index", + "target": "apps_extension_chromium_src_handshake_usependingp2pbeapingestion", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/index.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_index", + "target": "apps_extension_chromium_src_handshake_usependingp2pbeapingestion_usependingp2pbeapingestion", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/microcopy.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_microcopy", + "target": "apps_extension_chromium_src_handshake_microcopy_action_labels", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/microcopy.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_microcopy", + "target": "apps_extension_chromium_src_handshake_microcopy_automation_descriptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/microcopy.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_microcopy", + "target": "apps_extension_chromium_src_handshake_microcopy_automation_labels", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/microcopy.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_microcopy", + "target": "apps_extension_chromium_src_handshake_microcopy_badge_text", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/microcopy.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_microcopy", + "target": "apps_extension_chromium_src_handshake_microcopy_handshake_request_template", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/microcopy.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_microcopy", + "target": "apps_extension_chromium_src_handshake_microcopy_microcopy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/microcopy.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_microcopy", + "target": "apps_extension_chromium_src_handshake_microcopy_policy_notes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/microcopy.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_microcopy", + "target": "apps_extension_chromium_src_handshake_microcopy_status_messages", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/microcopy.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_microcopy", + "target": "apps_extension_chromium_src_handshake_microcopy_tooltips", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox", + "target": "apps_extension_chromium_src_handshake_microcopy", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_handshake_microcopy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox", + "target": "apps_extension_chromium_src_handshake_microcopy_badge_text", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox", + "target": "apps_extension_chromium_src_handshake_microcopy_automation_labels", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox", + "target": "apps_extension_chromium_src_handshake_microcopy_automation_descriptions", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox", + "target": "apps_extension_chromium_src_handshake_microcopy_tooltips", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_handshake_microcopy_tooltips", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox", + "target": "apps_extension_chromium_src_handshake_microcopy_policy_notes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_handshake_microcopy_policy_notes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox", + "target": "apps_extension_chromium_src_handshake_microcopy_action_labels", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/mlkemHandshakeStorage.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_mlkemhandshakestorage", + "target": "apps_extension_chromium_src_handshake_mlkemhandshakestorage_getlocalmlkemsecret", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/mlkemHandshakeStorage.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_mlkemhandshakestorage", + "target": "apps_extension_chromium_src_handshake_mlkemhandshakestorage_removelocalmlkemsecret", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/mlkemHandshakeStorage.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_mlkemhandshakestorage", + "target": "apps_extension_chromium_src_handshake_mlkemhandshakestorage_storagekey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/mlkemHandshakeStorage.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_mlkemhandshakestorage_getlocalmlkemsecret", + "target": "apps_extension_chromium_src_handshake_mlkemhandshakestorage_storagekey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/mlkemHandshakeStorage.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_mlkemhandshakestorage_removelocalmlkemsecret", + "target": "apps_extension_chromium_src_handshake_mlkemhandshakestorage_storagekey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/pendingP2PBeapQueue.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_pendingp2pbeapqueue", + "target": "apps_extension_chromium_src_handshake_pendingp2pbeapqueue_buildverifyoptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/pendingP2PBeapQueue.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_pendingp2pbeapqueue", + "target": "apps_extension_chromium_src_handshake_pendingp2pbeapqueue_processpendingp2pbeapqueue", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/pendingP2PBeapQueue.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_pendingp2pbeapqueue", + "target": "apps_extension_chromium_src_ingress_electrondepackagedsync", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/pendingP2PBeapQueue.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_pendingp2pbeapqueue", + "target": "apps_extension_chromium_src_ingress_electrondepackagedsync_mergedepackagedtoelectron", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/pendingP2PBeapQueue.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_pendingp2pbeapqueue", + "target": "apps_extension_chromium_src_ingress_importpipeline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/pendingP2PBeapQueue.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_pendingp2pbeapqueue", + "target": "apps_extension_chromium_src_ingress_importpipeline_importbeapmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/pendingP2PBeapQueue.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_pendingp2pbeapqueue", + "target": "apps_extension_chromium_src_ingress_importpipeline_verifyimportedmessage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/usePendingP2PBeapIngestion.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_usependingp2pbeapingestion", + "target": "apps_extension_chromium_src_handshake_pendingp2pbeapqueue", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/pendingP2PBeapQueue.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_pendingp2pbeapqueue_processpendingp2pbeapqueue", + "target": "apps_extension_chromium_src_handshake_pendingp2pbeapqueue_buildverifyoptions", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/pendingP2PBeapQueue.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_pendingp2pbeapqueue_processpendingp2pbeapqueue", + "target": "apps_extension_chromium_src_ingress_electrondepackagedsync_mergedepackagedtoelectron" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/pendingP2PBeapQueue.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_pendingp2pbeapqueue_processpendingp2pbeapqueue", + "target": "apps_extension_chromium_src_ingress_importpipeline_importbeapmessage" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/pendingP2PBeapQueue.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_pendingp2pbeapqueue_processpendingp2pbeapqueue", + "target": "apps_extension_chromium_src_ingress_importpipeline_verifyimportedmessage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/usePendingP2PBeapIngestion.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_usependingp2pbeapingestion", + "target": "apps_extension_chromium_src_handshake_pendingp2pbeapqueue_processpendingp2pbeapqueue", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/handshake/usePendingP2PBeapIngestion.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_usependingp2pbeapingestion_usependingp2pbeapingestion", + "target": "apps_extension_chromium_src_handshake_pendingp2pbeapqueue_processpendingp2pbeapqueue" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/rpcTypes.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_rpctypes", + "target": "apps_extension_chromium_src_handshake_rpctypes_contextblockproof", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/rpcTypes.ts", + "source_location": "L278", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_rpctypes", + "target": "apps_extension_chromium_src_handshake_rpctypes_handshakeacceptresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/rpcTypes.ts", + "source_location": "L298", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_rpctypes", + "target": "apps_extension_chromium_src_handshake_rpctypes_handshakebuildfordownloadresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/rpcTypes.ts", + "source_location": "L207", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_rpctypes", + "target": "apps_extension_chromium_src_handshake_rpctypes_handshakedetailsstatusprefix", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/rpcTypes.ts", + "source_location": "L251", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_rpctypes", + "target": "apps_extension_chromium_src_handshake_rpctypes_handshakeinitiateresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/rpcTypes.ts", + "source_location": "L195", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_rpctypes", + "target": "apps_extension_chromium_src_handshake_rpctypes_handshakekeymaterialstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/rpcTypes.ts", + "source_location": "L246", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_rpctypes", + "target": "apps_extension_chromium_src_handshake_rpctypes_handshakelistresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/rpcTypes.ts", + "source_location": "L226", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_rpctypes", + "target": "apps_extension_chromium_src_handshake_rpctypes_handshakelistrowicon", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/rpcTypes.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_rpctypes", + "target": "apps_extension_chromium_src_handshake_rpctypes_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/rpcTypes.ts", + "source_location": "L173", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_rpctypes", + "target": "apps_extension_chromium_src_handshake_rpctypes_handshakerecordtorecipient", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/rpcTypes.ts", + "source_location": "L292", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_rpctypes", + "target": "apps_extension_chromium_src_handshake_rpctypes_handshakerefreshresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/rpcTypes.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_rpctypes", + "target": "apps_extension_chromium_src_handshake_rpctypes_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/rpcTypes.ts", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_rpctypes", + "target": "apps_extension_chromium_src_handshake_rpctypes_hashandshakekeymaterial", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/rpcTypes.ts", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_rpctypes", + "target": "apps_extension_chromium_src_handshake_rpctypes_nzstring", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/rpcTypes.ts", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_rpctypes", + "target": "apps_extension_chromium_src_handshake_rpctypes_peerkeymaterialfrombackendrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/rpcTypes.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_rpctypes", + "target": "apps_extension_chromium_src_handshake_rpctypes_selectedhandshakerecipient", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/useHandshakes.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_usehandshakes", + "target": "apps_extension_chromium_src_handshake_rpctypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/useHandshakes.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_usehandshakes", + "target": "apps_extension_chromium_src_handshake_rpctypes_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/useHandshakes.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_usehandshakes", + "target": "apps_extension_chromium_src_handshake_rpctypes_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/useHandshakes.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_usehandshakes_usehandshakesresult", + "target": "apps_extension_chromium_src_handshake_rpctypes_handshakerecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_handshake_rpctypes_selectedhandshakerecipient", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_handshake_rpctypes_selectedhandshakerecipient", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/rpcTypes.ts", + "source_location": "L229", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_rpctypes_handshakelistrowicon", + "target": "apps_extension_chromium_src_handshake_rpctypes_hashandshakekeymaterial", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/rpcTypes.ts", + "source_location": "L155", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_rpctypes_peerkeymaterialfrombackendrow", + "target": "apps_extension_chromium_src_handshake_rpctypes_nzstring", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/types.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_types", + "target": "apps_extension_chromium_src_handshake_types_automationmode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/types.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_types", + "target": "apps_extension_chromium_src_handshake_types_handshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/types.ts", + "source_location": "L197", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_types", + "target": "apps_extension_chromium_src_handshake_types_handshakeacceptrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/types.ts", + "source_location": "L152", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_types", + "target": "apps_extension_chromium_src_handshake_types_handshakerequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/types.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_types", + "target": "apps_extension_chromium_src_handshake_types_handshakestatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/types.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_types", + "target": "apps_extension_chromium_src_handshake_types_packagehandshakemapping", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/registrationService.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_registrationservice", + "target": "apps_extension_chromium_src_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox", + "target": "apps_extension_chromium_src_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox", + "target": "apps_extension_chromium_src_handshake_types_handshakestatus", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/registrationService.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_registrationservice", + "target": "apps_extension_chromium_src_handshake_types_automationmode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox", + "target": "apps_extension_chromium_src_handshake_types_automationmode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/registrationService.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_registrationservice", + "target": "apps_extension_chromium_src_handshake_types_handshake", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/registrationService.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_registrationservice_handshakeregistry", + "target": "apps_extension_chromium_src_handshake_types_handshake", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox", + "target": "apps_extension_chromium_src_handshake_types_handshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/useHandshakes.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_usehandshakes", + "target": "apps_extension_chromium_src_handshake_usehandshakes_usehandshakes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/useHandshakes.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_usehandshakes", + "target": "apps_extension_chromium_src_handshake_usehandshakes_usehandshakesresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_handshake_usehandshakes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_handshake_usehandshakes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_handshake_usehandshakes_usehandshakes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L504", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat_popupchatapp", + "target": "apps_extension_chromium_src_handshake_usehandshakes_usehandshakes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_handshake_usehandshakes_usehandshakes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L635", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_handshake_usehandshakes_usehandshakes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/handshake/usePendingP2PBeapIngestion.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_handshake_usependingp2pbeapingestion", + "target": "apps_extension_chromium_src_handshake_usependingp2pbeapingestion_usependingp2pbeapingestion", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportEmailModal.tsx", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importemailmodal", + "target": "apps_extension_chromium_src_ingress_components_importemailmodal_importemailmodal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportEmailModal.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importemailmodal", + "target": "apps_extension_chromium_src_ingress_components_importemailmodal_importemailmodalprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportEmailModal.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importemailmodal", + "target": "apps_extension_chromium_src_ingress_importpipeline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportEmailModal.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importemailmodal", + "target": "apps_extension_chromium_src_ingress_importpipeline_getemailcandidates", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportEmailModal.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importemailmodal", + "target": "apps_extension_chromium_src_ingress_importpipeline_importfromemail", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportEmailModal.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importemailmodal", + "target": "apps_extension_chromium_src_ingress_importpipeline_isemailimportavailable", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportEmailModal.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importemailmodal", + "target": "apps_extension_chromium_src_ingress_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportEmailModal.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importemailmodal", + "target": "apps_extension_chromium_src_ingress_types_emailcandidate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportEmailModal.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importemailmodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportEmailModal.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importemailmodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_bodystyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportEmailModal.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importemailmodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_cardstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportEmailModal.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importemailmodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_closebuttonstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportEmailModal.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importemailmodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_getthemetokens", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportEmailModal.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importemailmodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headermaintitlestyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportEmailModal.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importemailmodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headerstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportEmailModal.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importemailmodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headersubtitlestyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportEmailModal.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importemailmodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headertitlestyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportEmailModal.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importemailmodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_notificationstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportEmailModal.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importemailmodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_overlaystyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportEmailModal.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importemailmodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_panelstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportEmailModal.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importemailmodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_primarybuttonstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportEmailModal.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importemailmodal", + "target": "apps_extension_chromium_src_wrguard_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportEmailModal.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importemailmodal", + "target": "apps_extension_chromium_src_wrguard_usewrguardstore_usewrguardstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/InboxImportBar.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_inboximportbar", + "target": "apps_extension_chromium_src_ingress_components_importemailmodal", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_index", + "target": "apps_extension_chromium_src_ingress_components_importemailmodal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ingress/components/ImportEmailModal.tsx", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importemailmodal_importemailmodal", + "target": "apps_extension_chromium_src_ingress_importpipeline_getemailcandidates" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ingress/components/ImportEmailModal.tsx", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importemailmodal_importemailmodal", + "target": "apps_extension_chromium_src_ingress_importpipeline_importfromemail" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ingress/components/ImportEmailModal.tsx", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importemailmodal_importemailmodal", + "target": "apps_extension_chromium_src_ingress_importpipeline_isemailimportavailable" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ingress/components/ImportEmailModal.tsx", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importemailmodal_importemailmodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_bodystyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ingress/components/ImportEmailModal.tsx", + "source_location": "L195", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importemailmodal_importemailmodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_cardstyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ingress/components/ImportEmailModal.tsx", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importemailmodal_importemailmodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_closebuttonstyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ingress/components/ImportEmailModal.tsx", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importemailmodal_importemailmodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_getthemetokens" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ingress/components/ImportEmailModal.tsx", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importemailmodal_importemailmodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headermaintitlestyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ingress/components/ImportEmailModal.tsx", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importemailmodal_importemailmodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headerstyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ingress/components/ImportEmailModal.tsx", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importemailmodal_importemailmodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headersubtitlestyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ingress/components/ImportEmailModal.tsx", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importemailmodal_importemailmodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headertitlestyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ingress/components/ImportEmailModal.tsx", + "source_location": "L189", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importemailmodal_importemailmodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_notificationstyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ingress/components/ImportEmailModal.tsx", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importemailmodal_importemailmodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_overlaystyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ingress/components/ImportEmailModal.tsx", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importemailmodal_importemailmodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_panelstyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ingress/components/ImportEmailModal.tsx", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importemailmodal_importemailmodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_primarybuttonstyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ingress/components/ImportEmailModal.tsx", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importemailmodal_importemailmodal", + "target": "apps_extension_chromium_src_wrguard_usewrguardstore_usewrguardstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/InboxImportBar.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_inboximportbar", + "target": "apps_extension_chromium_src_ingress_components_importemailmodal_importemailmodal", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_index", + "target": "apps_extension_chromium_src_ingress_components_importemailmodal_importemailmodal", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/index.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_index", + "target": "apps_extension_chromium_src_ingress_components_importemailmodal_importemailmodal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportFileModal.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importfilemodal", + "target": "apps_extension_chromium_src_ingress_components_importfilemodal_importfilemodal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportFileModal.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importfilemodal", + "target": "apps_extension_chromium_src_ingress_components_importfilemodal_importfilemodalprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportFileModal.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importfilemodal", + "target": "apps_extension_chromium_src_ingress_importpipeline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportFileModal.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importfilemodal", + "target": "apps_extension_chromium_src_ingress_importpipeline_importfromfile", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportFileModal.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importfilemodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportFileModal.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importfilemodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_bodystyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportFileModal.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importfilemodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_closebuttonstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportFileModal.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importfilemodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_getthemetokens", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportFileModal.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importfilemodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headermaintitlestyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportFileModal.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importfilemodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headerstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportFileModal.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importfilemodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headersubtitlestyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportFileModal.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importfilemodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headertitlestyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportFileModal.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importfilemodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_notificationstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportFileModal.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importfilemodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_overlaystyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportFileModal.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importfilemodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_panelstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportFileModal.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importfilemodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_secondarybuttonstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/InboxImportBar.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_inboximportbar", + "target": "apps_extension_chromium_src_ingress_components_importfilemodal", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/index.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_index", + "target": "apps_extension_chromium_src_ingress_components_importfilemodal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ingress/components/ImportFileModal.tsx", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importfilemodal_importfilemodal", + "target": "apps_extension_chromium_src_ingress_importpipeline_importfromfile" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ingress/components/ImportFileModal.tsx", + "source_location": "L180", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importfilemodal_importfilemodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_bodystyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ingress/components/ImportFileModal.tsx", + "source_location": "L171", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importfilemodal_importfilemodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_closebuttonstyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ingress/components/ImportFileModal.tsx", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importfilemodal_importfilemodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_getthemetokens" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ingress/components/ImportFileModal.tsx", + "source_location": "L165", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importfilemodal_importfilemodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headermaintitlestyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ingress/components/ImportFileModal.tsx", + "source_location": "L161", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importfilemodal_importfilemodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headerstyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ingress/components/ImportFileModal.tsx", + "source_location": "L166", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importfilemodal_importfilemodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headersubtitlestyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ingress/components/ImportFileModal.tsx", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importfilemodal_importfilemodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headertitlestyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ingress/components/ImportFileModal.tsx", + "source_location": "L227", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importfilemodal_importfilemodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_notificationstyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ingress/components/ImportFileModal.tsx", + "source_location": "L158", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importfilemodal_importfilemodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_overlaystyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ingress/components/ImportFileModal.tsx", + "source_location": "L159", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importfilemodal_importfilemodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_panelstyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ingress/components/ImportFileModal.tsx", + "source_location": "L236", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importfilemodal_importfilemodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_secondarybuttonstyle" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/InboxImportBar.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_inboximportbar", + "target": "apps_extension_chromium_src_ingress_components_importfilemodal_importfilemodal", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/index.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_index", + "target": "apps_extension_chromium_src_ingress_components_importfilemodal_importfilemodal", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/index.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_index", + "target": "apps_extension_chromium_src_ingress_components_importfilemodal_importfilemodal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportMessengerModal.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importmessengermodal", + "target": "apps_extension_chromium_src_ingress_components_importmessengermodal_importmessengermodal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportMessengerModal.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importmessengermodal", + "target": "apps_extension_chromium_src_ingress_components_importmessengermodal_importmessengermodalprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportMessengerModal.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importmessengermodal", + "target": "apps_extension_chromium_src_ingress_importpipeline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportMessengerModal.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importmessengermodal", + "target": "apps_extension_chromium_src_ingress_importpipeline_importfrommessenger", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportMessengerModal.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importmessengermodal", + "target": "apps_extension_chromium_src_ingress_importpipeline_validateimportpayload", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportMessengerModal.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importmessengermodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportMessengerModal.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importmessengermodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_bodystyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportMessengerModal.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importmessengermodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_closebuttonstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportMessengerModal.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importmessengermodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_getthemetokens", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportMessengerModal.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importmessengermodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headermaintitlestyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportMessengerModal.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importmessengermodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headerstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportMessengerModal.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importmessengermodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headersubtitlestyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportMessengerModal.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importmessengermodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headertitlestyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportMessengerModal.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importmessengermodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_notificationstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportMessengerModal.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importmessengermodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_overlaystyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportMessengerModal.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importmessengermodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_panelstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/ImportMessengerModal.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importmessengermodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_secondarybuttonstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/InboxImportBar.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_inboximportbar", + "target": "apps_extension_chromium_src_ingress_components_importmessengermodal", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/index.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_index", + "target": "apps_extension_chromium_src_ingress_components_importmessengermodal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ingress/components/ImportMessengerModal.tsx", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importmessengermodal_importmessengermodal", + "target": "apps_extension_chromium_src_ingress_importpipeline_importfrommessenger" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ingress/components/ImportMessengerModal.tsx", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importmessengermodal_importmessengermodal", + "target": "apps_extension_chromium_src_ingress_importpipeline_validateimportpayload" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ingress/components/ImportMessengerModal.tsx", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importmessengermodal_importmessengermodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_bodystyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ingress/components/ImportMessengerModal.tsx", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importmessengermodal_importmessengermodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_closebuttonstyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ingress/components/ImportMessengerModal.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importmessengermodal_importmessengermodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_getthemetokens" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ingress/components/ImportMessengerModal.tsx", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importmessengermodal_importmessengermodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headermaintitlestyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ingress/components/ImportMessengerModal.tsx", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importmessengermodal_importmessengermodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headerstyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ingress/components/ImportMessengerModal.tsx", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importmessengermodal_importmessengermodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headersubtitlestyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ingress/components/ImportMessengerModal.tsx", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importmessengermodal_importmessengermodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headertitlestyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ingress/components/ImportMessengerModal.tsx", + "source_location": "L178", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importmessengermodal_importmessengermodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_notificationstyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ingress/components/ImportMessengerModal.tsx", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importmessengermodal_importmessengermodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_overlaystyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ingress/components/ImportMessengerModal.tsx", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importmessengermodal_importmessengermodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_panelstyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ingress/components/ImportMessengerModal.tsx", + "source_location": "L182", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_importmessengermodal_importmessengermodal", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_secondarybuttonstyle" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/InboxImportBar.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_inboximportbar", + "target": "apps_extension_chromium_src_ingress_components_importmessengermodal_importmessengermodal", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/index.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_index", + "target": "apps_extension_chromium_src_ingress_components_importmessengermodal_importmessengermodal", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/index.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_index", + "target": "apps_extension_chromium_src_ingress_components_importmessengermodal_importmessengermodal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/InboxImportBar.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_inboximportbar", + "target": "apps_extension_chromium_src_ingress_components_inboximportbar_inboximportbar", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/InboxImportBar.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_inboximportbar", + "target": "apps_extension_chromium_src_ingress_components_inboximportbar_inboximportbarprops", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_index", + "target": "apps_extension_chromium_src_ingress_components_inboximportbar", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/components/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_components_index", + "target": "apps_extension_chromium_src_ingress_components_inboximportbar_inboximportbar", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/index.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_index", + "target": "apps_extension_chromium_src_ingress_components_inboximportbar_inboximportbar", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/index.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_index", + "target": "apps_extension_chromium_src_ingress_components_index", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/electronDepackagedSync.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_electrondepackagedsync", + "target": "apps_extension_chromium_src_ingress_electrondepackagedsync_buildelectronmergepayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/electronDepackagedSync.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_electrondepackagedsync", + "target": "apps_extension_chromium_src_ingress_electrondepackagedsync_electronmergedepackagedpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/electronDepackagedSync.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_electrondepackagedsync", + "target": "apps_extension_chromium_src_ingress_electrondepackagedsync_mergedepackagedtoelectron", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline", + "target": "apps_extension_chromium_src_ingress_electrondepackagedsync", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/electronDepackagedSync.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_electrondepackagedsync_mergedepackagedtoelectron", + "target": "apps_extension_chromium_src_ingress_electrondepackagedsync_buildelectronmergepayload", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline", + "target": "apps_extension_chromium_src_ingress_electrondepackagedsync_mergedepackagedtoelectron", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L488", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline_importfromfile", + "target": "apps_extension_chromium_src_ingress_electrondepackagedsync_mergedepackagedtoelectron" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L708", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline", + "target": "apps_extension_chromium_src_ingress_importpipeline_augmentverifyoptionsforqbeap", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L823", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline", + "target": "apps_extension_chromium_src_ingress_importpipeline_buildcapsulemetadata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L805", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline", + "target": "apps_extension_chromium_src_ingress_importpipeline_buildenvelopesummary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L176", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline", + "target": "apps_extension_chromium_src_ingress_importpipeline_extractcapsulehint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline", + "target": "apps_extension_chromium_src_ingress_importpipeline_extractenvelopehint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L356", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline", + "target": "apps_extension_chromium_src_ingress_importpipeline_getemailcandidates", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L216", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline", + "target": "apps_extension_chromium_src_ingress_importpipeline_importbeapmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L448", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline", + "target": "apps_extension_chromium_src_ingress_importpipeline_importfileprogressphase", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L396", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline", + "target": "apps_extension_chromium_src_ingress_importpipeline_importfromemail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L459", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline", + "target": "apps_extension_chromium_src_ingress_importpipeline_importfromfile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L437", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline", + "target": "apps_extension_chromium_src_ingress_importpipeline_importfrommessenger", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L338", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline", + "target": "apps_extension_chromium_src_ingress_importpipeline_isemailimportavailable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L786", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline", + "target": "apps_extension_chromium_src_ingress_importpipeline_resolvehandshakeid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline", + "target": "apps_extension_chromium_src_ingress_importpipeline_validateimportpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L541", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline", + "target": "apps_extension_chromium_src_ingress_importpipeline_verifyimportedmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline", + "target": "apps_extension_chromium_src_ingress_importpipeline_verifyimportedmessageresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline", + "target": "apps_extension_chromium_src_ingress_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline", + "target": "apps_extension_chromium_src_ingress_types_emailcandidate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline", + "target": "apps_extension_chromium_src_ingress_types_identityhint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline", + "target": "apps_extension_chromium_src_ingress_types_importpayload", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline", + "target": "apps_extension_chromium_src_ingress_types_importresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline", + "target": "apps_extension_chromium_src_ingress_types_inboximportitem", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline", + "target": "apps_extension_chromium_src_ingress_types_ingressevent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline", + "target": "apps_extension_chromium_src_ingress_types_ingresssource", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline", + "target": "apps_extension_chromium_src_ingress_types_rawcapsuleref", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline", + "target": "apps_extension_chromium_src_ingress_types_rawenvelopedata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline", + "target": "apps_extension_chromium_src_ingress_types_validationresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline", + "target": "apps_extension_chromium_src_ingress_useingressstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline", + "target": "apps_extension_chromium_src_ingress_useingressstore_useingressstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline", + "target": "apps_extension_chromium_src_wrguard_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline", + "target": "apps_extension_chromium_src_wrguard_usewrguardstore_usewrguardstore", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/index.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_index", + "target": "apps_extension_chromium_src_ingress_importpipeline", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/index.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_index", + "target": "apps_extension_chromium_src_ingress_importpipeline_verifyimportedmessageresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L228", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline_importbeapmessage", + "target": "apps_extension_chromium_src_ingress_importpipeline_validateimportpayload", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline_validateimportpayload", + "target": "apps_extension_chromium_src_ingress_importpipeline_extractcapsulehint", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline_validateimportpayload", + "target": "apps_extension_chromium_src_ingress_importpipeline_extractenvelopehint", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/index.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_index", + "target": "apps_extension_chromium_src_ingress_importpipeline_validateimportpayload", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L424", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline_importfromemail", + "target": "apps_extension_chromium_src_ingress_importpipeline_importbeapmessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L467", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline_importfromfile", + "target": "apps_extension_chromium_src_ingress_importpipeline_importbeapmessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L440", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline_importfrommessenger", + "target": "apps_extension_chromium_src_ingress_importpipeline_importbeapmessage", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/index.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_index", + "target": "apps_extension_chromium_src_ingress_importpipeline_importbeapmessage", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/index.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_index", + "target": "apps_extension_chromium_src_ingress_importpipeline_isemailimportavailable", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/index.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_index", + "target": "apps_extension_chromium_src_ingress_importpipeline_getemailcandidates", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/index.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_index", + "target": "apps_extension_chromium_src_ingress_importpipeline_importfromemail", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/index.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_index", + "target": "apps_extension_chromium_src_ingress_importpipeline_importfrommessenger", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/index.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_index", + "target": "apps_extension_chromium_src_ingress_importpipeline_importfileprogressphase", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L477", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline_importfromfile", + "target": "apps_extension_chromium_src_ingress_importpipeline_verifyimportedmessage", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/index.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_index", + "target": "apps_extension_chromium_src_ingress_importpipeline_importfromfile", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/CommandChatView.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_commandchatview", + "target": "apps_extension_chromium_src_ingress_importpipeline_importfromfile", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/CommandChatView.tsx", + "source_location": "L156", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_commandchatview_commandchatview", + "target": "apps_extension_chromium_src_ingress_importpipeline_importfromfile" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L597", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline_verifyimportedmessage", + "target": "apps_extension_chromium_src_ingress_importpipeline_augmentverifyoptionsforqbeap", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L632", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline_verifyimportedmessage", + "target": "apps_extension_chromium_src_ingress_importpipeline_buildcapsulemetadata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L631", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline_verifyimportedmessage", + "target": "apps_extension_chromium_src_ingress_importpipeline_buildenvelopesummary", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/importPipeline.ts", + "source_location": "L644", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_importpipeline_verifyimportedmessage", + "target": "apps_extension_chromium_src_ingress_importpipeline_resolvehandshakeid", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/index.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_index", + "target": "apps_extension_chromium_src_ingress_importpipeline_verifyimportedmessage", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_index", + "target": "apps_extension_chromium_src_ingress_types", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_index", + "target": "apps_extension_chromium_src_ingress_types_emailcandidate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_index", + "target": "apps_extension_chromium_src_ingress_types_identityhint", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_index", + "target": "apps_extension_chromium_src_ingress_types_importpayload", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_index", + "target": "apps_extension_chromium_src_ingress_types_importresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_index", + "target": "apps_extension_chromium_src_ingress_types_inboximportitem", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_index", + "target": "apps_extension_chromium_src_ingress_types_ingressevent", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_index", + "target": "apps_extension_chromium_src_ingress_types_ingresssource", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_index", + "target": "apps_extension_chromium_src_ingress_types_rawcapsuleref", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_index", + "target": "apps_extension_chromium_src_ingress_types_rawenvelopedata", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_index", + "target": "apps_extension_chromium_src_ingress_types_validationresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/index.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_index", + "target": "apps_extension_chromium_src_ingress_useingressstore", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/index.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_index", + "target": "apps_extension_chromium_src_ingress_useingressstore_useingressevents", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/index.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_index", + "target": "apps_extension_chromium_src_ingress_useingressstore_useingressstore", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/index.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_index", + "target": "apps_extension_chromium_src_ingress_useingressstore_userecentingressevents", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/CommandChatView.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_commandchatview", + "target": "apps_extension_chromium_src_ingress_index", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/types.ts", + "source_location": "L255", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_types", + "target": "apps_extension_chromium_src_ingress_types_emailcandidate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/types.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_types", + "target": "apps_extension_chromium_src_ingress_types_identityhint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/types.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_types", + "target": "apps_extension_chromium_src_ingress_types_importpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/types.ts", + "source_location": "L210", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_types", + "target": "apps_extension_chromium_src_ingress_types_importresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/types.ts", + "source_location": "L171", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_types", + "target": "apps_extension_chromium_src_ingress_types_inboximportitem", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/types.ts", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_types", + "target": "apps_extension_chromium_src_ingress_types_ingressevent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/types.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_types", + "target": "apps_extension_chromium_src_ingress_types_ingresssource", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/types.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_types", + "target": "apps_extension_chromium_src_ingress_types_rawcapsuleref", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/types.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_types", + "target": "apps_extension_chromium_src_ingress_types_rawenvelopedata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/types.ts", + "source_location": "L231", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_types", + "target": "apps_extension_chromium_src_ingress_types_validationresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/useIngressStore.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_useingressstore", + "target": "apps_extension_chromium_src_ingress_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/useIngressStore.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_useingressstore", + "target": "apps_extension_chromium_src_ingress_types_ingresssource", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/useIngressStore.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_useingressstore_ingressstate", + "target": "apps_extension_chromium_src_ingress_types_ingresssource", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/useIngressStore.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_useingressstore", + "target": "apps_extension_chromium_src_ingress_types_importpayload", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/useIngressStore.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_useingressstore_ingressstate", + "target": "apps_extension_chromium_src_ingress_types_importpayload", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/useIngressStore.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_useingressstore", + "target": "apps_extension_chromium_src_ingress_types_ingressevent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/useIngressStore.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_useingressstore_ingressstate", + "target": "apps_extension_chromium_src_ingress_types_ingressevent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/useIngressStore.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_useingressstore", + "target": "apps_extension_chromium_src_ingress_useingressstore_ingressstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/useIngressStore.ts", + "source_location": "L177", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_useingressstore", + "target": "apps_extension_chromium_src_ingress_useingressstore_useingressevents", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/useIngressStore.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_useingressstore", + "target": "apps_extension_chromium_src_ingress_useingressstore_useingressstore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/useIngressStore.ts", + "source_location": "L180", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_useingressstore", + "target": "apps_extension_chromium_src_ingress_useingressstore_userecentingressevents", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/useIngressStore.ts", + "source_location": "L178", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_useingressstore_useingressevents", + "target": "apps_extension_chromium_src_ingress_useingressstore_useingressstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ingress/useIngressStore.ts", + "source_location": "L181", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ingress_useingressstore_userecentingressevents", + "target": "apps_extension_chromium_src_ingress_useingressstore_useingressstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/__tests__/declaredModelAvailability.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_tests_declaredmodelavailability_test", + "target": "apps_extension_chromium_src_lib_declaredmodelavailability", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/__tests__/declaredModelAvailability.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_tests_declaredmodelavailability_test", + "target": "apps_extension_chromium_src_lib_declaredmodelavailability_applymodelfallbackbanner", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/__tests__/declaredModelAvailability.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_tests_declaredmodelavailability_test", + "target": "apps_extension_chromium_src_lib_declaredmodelavailability_formatmodelfallbackbanner", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/__tests__/declaredModelAvailability.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_tests_declaredmodelavailability_test", + "target": "apps_extension_chromium_src_lib_declaredmodelavailability_parsemodelfallbackfromchatdata", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/__tests__/globalSessionContextLlmPrefix.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_tests_globalsessioncontextllmprefix_test", + "target": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/__tests__/globalSessionContextLlmPrefix.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_tests_globalsessioncontextllmprefix_test", + "target": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix_formatglobalsessioncontextforllmprefix", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/__tests__/globalSessionContextLlmPrefix.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_tests_globalsessioncontextllmprefix_test", + "target": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix_shouldapplymodecontextlayer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/__tests__/globalSessionContextLlmPrefix.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_tests_globalsessioncontextllmprefix_test", + "target": "apps_extension_chromium_src_lib_tests_globalsessioncontextllmprefix_test_basemode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/__tests__/globalSessionContextLlmPrefix.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_tests_globalsessioncontextllmprefix_test", + "target": "apps_extension_chromium_src_shared_ui_custommoderuntime", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/__tests__/globalSessionContextLlmPrefix.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_tests_globalsessioncontextllmprefix_test", + "target": "apps_extension_chromium_src_shared_ui_custommoderuntime_custommoderuntimeconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/__tests__/globalSessionContextLlmPrefixRunMode.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_tests_globalsessioncontextllmprefixrunmode_test", + "target": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/__tests__/globalSessionContextLlmPrefixRunMode.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_tests_globalsessioncontextllmprefixrunmode_test", + "target": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix_buildinferencecontextprefix", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/__tests__/globalSessionContextLlmPrefixRunMode.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_tests_globalsessioncontextllmprefixrunmode_test", + "target": "apps_extension_chromium_src_lib_tests_globalsessioncontextllmprefixrunmode_test_basemode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/__tests__/globalSessionContextLlmPrefixRunMode.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_tests_globalsessioncontextllmprefixrunmode_test", + "target": "apps_extension_chromium_src_shared_ui_custommoderuntime", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/__tests__/globalSessionContextLlmPrefixRunMode.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_tests_globalsessioncontextllmprefixrunmode_test", + "target": "apps_extension_chromium_src_shared_ui_custommoderuntime_custommoderuntimeconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/__tests__/resolveOrchestratorSessionKey.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_tests_resolveorchestratorsessionkey_test", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/__tests__/resolveOrchestratorSessionKey.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_tests_resolveorchestratorsessionkey_test", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_globalsessioncontextstoragekeys", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/__tests__/resolveOrchestratorSessionKey.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_tests_resolveorchestratorsessionkey_test", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_normalizeorchestratorsessionkey", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/__tests__/resolveOrchestratorSessionKey.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_tests_resolveorchestratorsessionkey_test", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_resolveorchestratorsessionkeyforinference", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/agentBoxInferencePreSend.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_agentboxinferencepresend", + "target": "apps_extension_chromium_src_lib_agentboxinferencepresend_agentboxinferencepath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/agentBoxInferencePreSend.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_agentboxinferencepresend", + "target": "apps_extension_chromium_src_lib_agentboxinferencepresend_runagentboxinferencepresend", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/agentBoxInferencePreSend.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_agentboxinferencepresend", + "target": "apps_extension_chromium_src_lib_agentboxinferencepresend_selectionsourceforagentbox", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/agentBoxInferencePreSend.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_agentboxinferencepresend", + "target": "apps_extension_chromium_src_lib_wrchatextensionaicontext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/agentBoxInferencePreSend.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_agentboxinferencepresend", + "target": "apps_extension_chromium_src_lib_wrchatextensionaicontext_buildwrchatextensionaiexecutionpayload", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/agentBoxInferencePreSend.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_agentboxinferencepresend", + "target": "apps_extension_chromium_src_lib_wrchatmodelsfromllmstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/agentBoxInferencePreSend.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_agentboxinferencepresend", + "target": "apps_extension_chromium_src_lib_wrchatmodelsfromllmstatus_wrchatselectorrow", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/agentBoxInferencePreSend.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_agentboxinferencepresend", + "target": "apps_extension_chromium_src_rpc_electronrpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/agentBoxInferencePreSend.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_agentboxinferencepresend", + "target": "apps_extension_chromium_src_rpc_electronrpc_electronrpc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/agentBoxInferencePreSend.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_agentboxinferencepresend", + "target": "apps_extension_chromium_src_services_processflow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/agentBoxInferencePreSend.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_agentboxinferencepresend", + "target": "apps_extension_chromium_src_services_processflow_agentboxinferencedebuglog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/agentBoxInferencePreSend.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_agentboxinferencepresend", + "target": "apps_extension_chromium_src_services_processflow_agentboxmodelsource", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_lib_agentboxinferencepresend", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_lib_agentboxinferencepresend", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/agentBoxInferencePreSend.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_agentboxinferencepresend_runagentboxinferencepresend", + "target": "apps_extension_chromium_src_lib_agentboxinferencepresend_selectionsourceforagentbox", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/lib/agentBoxInferencePreSend.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_agentboxinferencepresend_runagentboxinferencepresend", + "target": "apps_extension_chromium_src_lib_wrchatextensionaicontext_buildwrchatextensionaiexecutionpayload" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/lib/agentBoxInferencePreSend.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_agentboxinferencepresend_runagentboxinferencepresend", + "target": "apps_extension_chromium_src_rpc_electronrpc_electronrpc" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/lib/agentBoxInferencePreSend.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_agentboxinferencepresend_runagentboxinferencepresend", + "target": "apps_extension_chromium_src_services_processflow_agentboxinferencedebuglog" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_lib_agentboxinferencepresend_runagentboxinferencepresend", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L466", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution_runagentmatchllm", + "target": "apps_extension_chromium_src_lib_agentboxinferencepresend_runagentboxinferencepresend", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_lib_agentboxinferencepresend_runagentboxinferencepresend", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L1624", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_lib_agentboxinferencepresend_runagentboxinferencepresend", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/declaredModelAvailability.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_declaredmodelavailability", + "target": "apps_extension_chromium_src_lib_declaredmodelavailability_applymodelfallbackbanner", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/declaredModelAvailability.ts", + "source_location": "L139", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_declaredmodelavailability", + "target": "apps_extension_chromium_src_lib_declaredmodelavailability_buildllmrequestbodywithavailability", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/declaredModelAvailability.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_declaredmodelavailability", + "target": "apps_extension_chromium_src_lib_declaredmodelavailability_declaredmodelresolutionwire", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/declaredModelAvailability.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_declaredmodelavailability", + "target": "apps_extension_chromium_src_lib_declaredmodelavailability_defaultgetfetchheaders", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/declaredModelAvailability.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_declaredmodelavailability", + "target": "apps_extension_chromium_src_lib_declaredmodelavailability_formatmodelfallbackbanner", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/declaredModelAvailability.ts", + "source_location": "L201", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_declaredmodelavailability", + "target": "apps_extension_chromium_src_lib_declaredmodelavailability_llmchatpostresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/declaredModelAvailability.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_declaredmodelavailability", + "target": "apps_extension_chromium_src_lib_declaredmodelavailability_modelfallbackinfo", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/declaredModelAvailability.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_declaredmodelavailability", + "target": "apps_extension_chromium_src_lib_declaredmodelavailability_modelfallbackreason", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/declaredModelAvailability.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_declaredmodelavailability", + "target": "apps_extension_chromium_src_lib_declaredmodelavailability_parsemodelfallbackfromchatdata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/declaredModelAvailability.ts", + "source_location": "L206", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_declaredmodelavailability", + "target": "apps_extension_chromium_src_lib_declaredmodelavailability_postllmchatwithavailability", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/declaredModelAvailability.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_declaredmodelavailability", + "target": "apps_extension_chromium_src_lib_declaredmodelavailability_resolvedeclaredmodelviahttp", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/declaredModelAvailability.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_declaredmodelavailability", + "target": "apps_extension_chromium_src_lib_declaredmodelavailability_wiretofallback", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/declaredModelAvailability.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_declaredmodelavailability", + "target": "apps_extension_chromium_src_services_ensurelaunchsecretforelectronhttp", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/declaredModelAvailability.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_declaredmodelavailability", + "target": "apps_extension_chromium_src_services_ensurelaunchsecretforelectronhttp_ensurelaunchsecretforelectronhttp", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/declaredModelAvailability.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_declaredmodelavailability", + "target": "apps_extension_chromium_src_services_processflow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/declaredModelAvailability.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_declaredmodelavailability", + "target": "apps_extension_chromium_src_services_processflow_brainresolution", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/declaredModelAvailability.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_declaredmodelavailability", + "target": "apps_extension_chromium_src_services_processflow_buildllmrequestbody", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/declaredModelAvailability.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_declaredmodelavailability", + "target": "apps_extension_chromium_src_services_processflow_llmrequestbody", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_lib_declaredmodelavailability", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_lib_declaredmodelavailability_modelfallbackinfo", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/declaredModelAvailability.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_declaredmodelavailability_defaultgetfetchheaders", + "target": "apps_extension_chromium_src_services_ensurelaunchsecretforelectronhttp_ensurelaunchsecretforelectronhttp", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/declaredModelAvailability.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_declaredmodelavailability_applymodelfallbackbanner", + "target": "apps_extension_chromium_src_lib_declaredmodelavailability_formatmodelfallbackbanner", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_lib_declaredmodelavailability_applymodelfallbackbanner", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L499", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution_runagentmatchllm", + "target": "apps_extension_chromium_src_lib_declaredmodelavailability_applymodelfallbackbanner", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/declaredModelAvailability.ts", + "source_location": "L235", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_declaredmodelavailability_postllmchatwithavailability", + "target": "apps_extension_chromium_src_lib_declaredmodelavailability_parsemodelfallbackfromchatdata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/declaredModelAvailability.ts", + "source_location": "L152", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_declaredmodelavailability_buildllmrequestbodywithavailability", + "target": "apps_extension_chromium_src_lib_declaredmodelavailability_resolvedeclaredmodelviahttp", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/declaredModelAvailability.ts", + "source_location": "L161", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_declaredmodelavailability_buildllmrequestbodywithavailability", + "target": "apps_extension_chromium_src_lib_declaredmodelavailability_wiretofallback", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/lib/declaredModelAvailability.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_declaredmodelavailability_buildllmrequestbodywithavailability", + "target": "apps_extension_chromium_src_services_processflow_buildllmrequestbody" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_lib_declaredmodelavailability_buildllmrequestbodywithavailability", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L444", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution_runagentmatchllm", + "target": "apps_extension_chromium_src_lib_declaredmodelavailability_buildllmrequestbodywithavailability", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_lib_declaredmodelavailability_postllmchatwithavailability", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L287", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution_submitmoderunagentllm", + "target": "apps_extension_chromium_src_lib_declaredmodelavailability_postllmchatwithavailability", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/globalSessionContextLlmPrefix.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix", + "target": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix_buildglobalsessioncontextprefixonly", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/globalSessionContextLlmPrefix.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix", + "target": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix_buildinferencecontextprefix", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/globalSessionContextLlmPrefix.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix", + "target": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix_formatblobsection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/globalSessionContextLlmPrefix.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix", + "target": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix_formatglobalsessioncontextforllmprefix", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/globalSessionContextLlmPrefix.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix", + "target": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix_global_session_context_max_chars", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/globalSessionContextLlmPrefix.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix", + "target": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix_loadandformatglobalsessioncontextprefix", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/globalSessionContextLlmPrefix.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix", + "target": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix_pdfattachmentnote", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/globalSessionContextLlmPrefix.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix", + "target": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix_shouldapplymodecontextlayer", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/globalSessionContextLlmPrefix.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix", + "target": "apps_extension_chromium_src_lib_globalsessioncontextstorage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/globalSessionContextLlmPrefix.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix", + "target": "apps_extension_chromium_src_lib_globalsessioncontextstorage_loadedglobalsessioncontext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/globalSessionContextLlmPrefix.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix", + "target": "apps_extension_chromium_src_lib_globalsessioncontextstorage_loadglobalsessioncontextforkey", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/globalSessionContextLlmPrefix.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix", + "target": "apps_extension_chromium_src_shared_ui_custommoderuntime", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/globalSessionContextLlmPrefix.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix", + "target": "apps_extension_chromium_src_shared_ui_custommoderuntime_custommoderuntimeconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/globalSessionContextLlmPrefix.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix", + "target": "apps_extension_chromium_src_utils_custommodellmprefix", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/globalSessionContextLlmPrefix.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix", + "target": "apps_extension_chromium_src_utils_custommodellmprefix_getcustommodellmprefix", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/globalSessionContextLlmPrefix.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix", + "target": "apps_extension_chromium_src_utils_custommodellmprefix_getcustommodellmprefixforwrchat", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/globalSessionContextLlmPrefix.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix", + "target": "apps_extension_chromium_src_utils_custommodellmprefix_mergellmcontextprefixes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/globalSessionContextLlmPrefix.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix_formatblobsection", + "target": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix_pdfattachmentnote", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/globalSessionContextLlmPrefix.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix_formatglobalsessioncontextforllmprefix", + "target": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix_formatblobsection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/globalSessionContextLlmPrefix.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix_loadandformatglobalsessioncontextprefix", + "target": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix_formatglobalsessioncontextforllmprefix", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/globalSessionContextLlmPrefix.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix_buildglobalsessioncontextprefixonly", + "target": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix_loadandformatglobalsessioncontextprefix", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/globalSessionContextLlmPrefix.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix_buildinferencecontextprefix", + "target": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix_loadandformatglobalsessioncontextprefix", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/lib/globalSessionContextLlmPrefix.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix_loadandformatglobalsessioncontextprefix", + "target": "apps_extension_chromium_src_lib_globalsessioncontextstorage_loadglobalsessioncontextforkey" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/globalSessionContextLlmPrefix.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix_buildinferencecontextprefix", + "target": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix_shouldapplymodecontextlayer", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/lib/globalSessionContextLlmPrefix.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix_buildinferencecontextprefix", + "target": "apps_extension_chromium_src_utils_custommodellmprefix_getcustommodellmprefix" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/lib/globalSessionContextLlmPrefix.ts", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix_buildinferencecontextprefix", + "target": "apps_extension_chromium_src_utils_custommodellmprefix_getcustommodellmprefixforwrchat" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/lib/globalSessionContextLlmPrefix.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix_buildinferencecontextprefix", + "target": "apps_extension_chromium_src_utils_custommodellmprefix_mergellmcontextprefixes" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix_buildinferencecontextprefix", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L430", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution_runagentmatchllm", + "target": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix_buildinferencecontextprefix", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix_buildinferencecontextprefix", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L1528", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix_buildinferencecontextprefix", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix_buildinferencecontextprefix", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L359", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_getmergedchatllmprefixformodel", + "target": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix_buildinferencecontextprefix", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/lib/globalSessionContextLlmPrefix.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_globalsessioncontextllmprefix_buildglobalsessioncontextprefixonly", + "target": "apps_extension_chromium_src_utils_custommodellmprefix_mergellmcontextprefixes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/globalSessionContextStorage.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_globalsessioncontextstorage", + "target": "apps_extension_chromium_src_lib_globalsessioncontextstorage_globalsessioncontextblob", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/globalSessionContextStorage.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_globalsessioncontextstorage", + "target": "apps_extension_chromium_src_lib_globalsessioncontextstorage_loadedglobalsessioncontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/globalSessionContextStorage.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_globalsessioncontextstorage", + "target": "apps_extension_chromium_src_lib_globalsessioncontextstorage_loadglobalsessioncontextforkey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/globalSessionContextStorage.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_globalsessioncontextstorage", + "target": "apps_extension_chromium_src_lib_globalsessioncontextstorage_normalizeblob", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/globalSessionContextStorage.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_globalsessioncontextstorage", + "target": "apps_extension_chromium_src_lib_globalsessioncontextstorage_readstoragekeys", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/globalSessionContextStorage.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_globalsessioncontextstorage", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/globalSessionContextStorage.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_globalsessioncontextstorage", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_global_account_context_key", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/globalSessionContextStorage.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_globalsessioncontextstorage", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_globalsessioncontextstoragekeys", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/globalSessionContextStorage.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_globalsessioncontextstorage", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_normalizeorchestratorsessionkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/globalSessionContextStorage.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_globalsessioncontextstorage_loadglobalsessioncontextforkey", + "target": "apps_extension_chromium_src_lib_globalsessioncontextstorage_normalizeblob", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/globalSessionContextStorage.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_globalsessioncontextstorage_loadglobalsessioncontextforkey", + "target": "apps_extension_chromium_src_lib_globalsessioncontextstorage_readstoragekeys", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/lib/globalSessionContextStorage.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_globalsessioncontextstorage_loadglobalsessioncontextforkey", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_globalsessioncontextstoragekeys" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/lib/globalSessionContextStorage.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_globalsessioncontextstorage_loadglobalsessioncontextforkey", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_normalizeorchestratorsessionkey" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/hostAiSelectorCopy.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_hostaiselectorcopy", + "target": "apps_extension_chromium_src_lib_hostaiselectorcopy_group_cloud", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/hostAiSelectorCopy.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_hostaiselectorcopy", + "target": "apps_extension_chromium_src_lib_hostaiselectorcopy_group_host_models", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/hostAiSelectorCopy.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_hostaiselectorcopy", + "target": "apps_extension_chromium_src_lib_hostaiselectorcopy_group_internal_host", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/hostAiSelectorCopy.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_hostaiselectorcopy", + "target": "apps_extension_chromium_src_lib_hostaiselectorcopy_group_local_models", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/hostAiSelectorCopy.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_hostaiselectorcopy", + "target": "apps_extension_chromium_src_lib_hostaiselectorcopy_host_ai_checking_tooltip", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/hostAiSelectorCopy.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_hostaiselectorcopy", + "target": "apps_extension_chromium_src_lib_hostaiselectorcopy_host_ai_option_tooltip", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/hostAiSelectorCopy.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_hostaiselectorcopy", + "target": "apps_extension_chromium_src_lib_hostaiselectorcopy_host_ai_p2p_offline_detail_tooltip", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/hostAiSelectorCopy.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_hostaiselectorcopy", + "target": "apps_extension_chromium_src_lib_hostaiselectorcopy_host_ai_stale_inline", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/hostAiSelectorCopy.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_hostaiselectorcopy", + "target": "apps_extension_chromium_src_lib_hostaiselectorcopy_host_ai_unreachable_tooltip", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_lib_hostaiselectorcopy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_lib_hostaiselectorcopy_host_ai_option_tooltip", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_lib_hostaiselectorcopy_host_ai_unreachable_tooltip", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_lib_hostaiselectorcopy_host_ai_checking_tooltip", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_lib_hostaiselectorcopy_host_ai_stale_inline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_lib_hostaiselectorcopy_group_local_models", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_lib_hostaiselectorcopy_group_host_models", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_lib_hostaiselectorcopy_group_cloud", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/hostInferenceRouteIds.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_hostinferencerouteids", + "target": "apps_extension_chromium_src_lib_hostinferencerouteids_ishostinferencerouteid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/hostInferenceRouteIds.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_hostinferencerouteids", + "target": "apps_extension_chromium_src_lib_hostinferencerouteids_parseanyhostinferencemodelid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/hostInferenceRouteIds.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_hostinferencerouteids", + "target": "apps_extension_chromium_src_lib_hostinferencerouteids_parsehostinferencemodelid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/hostInferenceRouteIds.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_hostinferencerouteids", + "target": "apps_extension_chromium_src_lib_hostinferencerouteids_parsehostinternalinferencemodelid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/inferenceSubmitRouting.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_inferencesubmitrouting", + "target": "apps_extension_chromium_src_lib_hostinferencerouteids", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionAiContext.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatextensionaicontext", + "target": "apps_extension_chromium_src_lib_hostinferencerouteids", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatHostInferenceShared.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchathostinferenceshared", + "target": "apps_extension_chromium_src_lib_hostinferencerouteids", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatSelectionHygiene.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatselectionhygiene", + "target": "apps_extension_chromium_src_lib_hostinferencerouteids", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_lib_hostinferencerouteids", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_lib_hostinferencerouteids", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_lib_hostinferencerouteids", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepModel.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepmodel", + "target": "apps_extension_chromium_src_lib_hostinferencerouteids", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_lib_hostinferencerouteids", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/hostInferenceRouteIds.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_hostinferencerouteids_parseanyhostinferencemodelid", + "target": "apps_extension_chromium_src_lib_hostinferencerouteids_parsehostinferencemodelid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/hostInferenceRouteIds.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_hostinferencerouteids_parseanyhostinferencemodelid", + "target": "apps_extension_chromium_src_lib_hostinferencerouteids_parsehostinternalinferencemodelid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/hostInferenceRouteIds.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_hostinferencerouteids_ishostinferencerouteid", + "target": "apps_extension_chromium_src_lib_hostinferencerouteids_parseanyhostinferencemodelid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/inferenceSubmitRouting.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_inferencesubmitrouting", + "target": "apps_extension_chromium_src_lib_hostinferencerouteids_parseanyhostinferencemodelid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionAiContext.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatextensionaicontext", + "target": "apps_extension_chromium_src_lib_hostinferencerouteids_parseanyhostinferencemodelid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionAiContext.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatextensionaicontext_buildwrchatextensionaiexecutionpayload", + "target": "apps_extension_chromium_src_lib_hostinferencerouteids_parseanyhostinferencemodelid" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatHostInferenceShared.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchathostinferenceshared", + "target": "apps_extension_chromium_src_lib_hostinferencerouteids_parseanyhostinferencemodelid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/lib/wrChatHostInferenceShared.ts", + "source_location": "L227", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchathostinferenceshared_runwrchathostinferenceforextensionsurface", + "target": "apps_extension_chromium_src_lib_hostinferencerouteids_parseanyhostinferencemodelid" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatSelectionHygiene.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatselectionhygiene", + "target": "apps_extension_chromium_src_lib_hostinferencerouteids_parseanyhostinferencemodelid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatSelectionHygiene.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatselectionhygiene_hostrowsforhandshake", + "target": "apps_extension_chromium_src_lib_hostinferencerouteids_parseanyhostinferencemodelid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/lib/wrChatSelectionHygiene.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatselectionhygiene_resolvewrchathostselectionforsend", + "target": "apps_extension_chromium_src_lib_hostinferencerouteids_parseanyhostinferencemodelid" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_lib_hostinferencerouteids_parseanyhostinferencemodelid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution_submitmoderunagentllm", + "target": "apps_extension_chromium_src_lib_hostinferencerouteids_parseanyhostinferencemodelid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_lib_hostinferencerouteids_parseanyhostinferencemodelid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L1205", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_popupchatview", + "target": "apps_extension_chromium_src_lib_hostinferencerouteids_parseanyhostinferencemodelid" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/inferenceSubmitRouting.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_inferencesubmitrouting", + "target": "apps_extension_chromium_src_lib_hostinferencerouteids_ishostinferencerouteid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/lib/inferenceSubmitRouting.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_inferencesubmitrouting_ishostinternalchatmodelid", + "target": "apps_extension_chromium_src_lib_hostinferencerouteids_ishostinferencerouteid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/lib/inferenceSubmitRouting.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_inferencesubmitrouting_resolvechatinferencekind", + "target": "apps_extension_chromium_src_lib_hostinferencerouteids_ishostinferencerouteid" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionAiContext.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatextensionaicontext", + "target": "apps_extension_chromium_src_lib_hostinferencerouteids_ishostinferencerouteid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionAiContext.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatextensionaicontext_buildwrchatextensionaiexecutionpayload", + "target": "apps_extension_chromium_src_lib_hostinferencerouteids_ishostinferencerouteid" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_lib_hostinferencerouteids_ishostinferencerouteid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L414", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat_popupchatapp", + "target": "apps_extension_chromium_src_lib_hostinferencerouteids_ishostinferencerouteid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_lib_hostinferencerouteids_ishostinferencerouteid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L158", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution_resolvemoderunhostroutemodelid", + "target": "apps_extension_chromium_src_lib_hostinferencerouteids_ishostinferencerouteid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_lib_hostinferencerouteids_ishostinferencerouteid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L4526", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_lib_hostinferencerouteids_ishostinferencerouteid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepModel.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepmodel", + "target": "apps_extension_chromium_src_lib_hostinferencerouteids_ishostinferencerouteid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepModel.tsx", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepmodel_stepmodel", + "target": "apps_extension_chromium_src_lib_hostinferencerouteids_ishostinferencerouteid" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_lib_hostinferencerouteids_ishostinferencerouteid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L2844", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_popupchatview", + "target": "apps_extension_chromium_src_lib_hostinferencerouteids_ishostinferencerouteid" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/inferenceSubmitRouting.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_inferencesubmitrouting", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting_appendhostaiattributionline", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/inferenceSubmitRouting.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_inferencesubmitrouting", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting_availableorchestratormodel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/inferenceSubmitRouting.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_inferencesubmitrouting", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting_chatinferencekind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/inferenceSubmitRouting.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_inferencesubmitrouting", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting_formatinternalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/inferenceSubmitRouting.ts", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_inferencesubmitrouting", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting_getrequesthostcompletion", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/inferenceSubmitRouting.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_inferencesubmitrouting", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting_hostinternalcompletionparams", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/inferenceSubmitRouting.ts", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_inferencesubmitrouting", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting_hostmodeldisplaynamefromselection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/inferenceSubmitRouting.ts", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_inferencesubmitrouting", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting_internalinfapi", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/inferenceSubmitRouting.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_inferencesubmitrouting", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting_ishostinternalchatmodelid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/inferenceSubmitRouting.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_inferencesubmitrouting", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting_resolvechatinferencekind", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatHostInferenceShared.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchathostinferenceshared", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatHostInferenceShared.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchathostinferenceshared", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting_ishostinternalchatmodelid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/lib/wrChatHostInferenceShared.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchathostinferenceshared_resolvewrchatexecutiontransport", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting_ishostinternalchatmodelid" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting_ishostinternalchatmodelid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L156", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution_resolvemoderunhostroutemodelid", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting_ishostinternalchatmodelid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting_ishostinternalchatmodelid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L3566", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting_ishostinternalchatmodelid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting_ishostinternalchatmodelid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L1137", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_popupchatview", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting_ishostinternalchatmodelid" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatHostInferenceShared.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchathostinferenceshared", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting_formatinternalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/lib/wrChatHostInferenceShared.ts", + "source_location": "L296", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchathostinferenceshared_runwrchathostinferenceforextensionsurface", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting_formatinternalinferenceerrorcode" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting_formatinternalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L251", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution_submitmoderunagentllm", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting_formatinternalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting_formatinternalinferenceerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L1309", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_popupchatview", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting_formatinternalinferenceerrorcode" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatHostInferenceShared.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchathostinferenceshared", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting_appendhostaiattributionline", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/lib/wrChatHostInferenceShared.ts", + "source_location": "L293", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchathostinferenceshared_runwrchathostinferenceforextensionsurface", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting_appendhostaiattributionline" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting_appendhostaiattributionline", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L1290", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_popupchatview", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting_appendhostaiattributionline" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting_hostmodeldisplaynamefromselection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L1251", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_popupchatview", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting_hostmodeldisplaynamefromselection" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting_getrequesthostcompletion", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L221", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution_submitmoderunagentllm", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting_getrequesthostcompletion", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting_getrequesthostcompletion", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L1219", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_popupchatview", + "target": "apps_extension_chromium_src_lib_inferencesubmitrouting_getrequesthostcompletion" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/localModelIdentity.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_localmodelidentity", + "target": "apps_extension_chromium_src_lib_localmodelidentity_canonicallocalmodelname", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/localModelIdentity.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_localmodelidentity", + "target": "apps_extension_chromium_src_lib_localmodelidentity_dedupecanonicalmodelnames", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/localModelIdentity.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_localmodelidentity", + "target": "apps_extension_chromium_src_lib_localmodelidentity_localmodelidsmatch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/localModelIdentity.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_localmodelidentity", + "target": "apps_extension_chromium_src_lib_localmodelidentity_resolvelocalmodelalias", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatHostInferenceShared.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchathostinferenceshared", + "target": "apps_extension_chromium_src_lib_localmodelidentity", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatSelectionHygiene.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatselectionhygiene", + "target": "apps_extension_chromium_src_lib_localmodelidentity", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/tests/wrChatSelectionHygiene.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_tests_wrchatselectionhygiene_test", + "target": "apps_extension_chromium_src_lib_localmodelidentity", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/localModelIdentity.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_localmodelidentity_dedupecanonicalmodelnames", + "target": "apps_extension_chromium_src_lib_localmodelidentity_canonicallocalmodelname", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/localModelIdentity.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_localmodelidentity_localmodelidsmatch", + "target": "apps_extension_chromium_src_lib_localmodelidentity_canonicallocalmodelname", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/localModelIdentity.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_localmodelidentity_resolvelocalmodelalias", + "target": "apps_extension_chromium_src_lib_localmodelidentity_canonicallocalmodelname", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatHostInferenceShared.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchathostinferenceshared", + "target": "apps_extension_chromium_src_lib_localmodelidentity_canonicallocalmodelname", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/lib/wrChatHostInferenceShared.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchathostinferenceshared_wrchathostinternalwiremodel", + "target": "apps_extension_chromium_src_lib_localmodelidentity_canonicallocalmodelname" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatSelectionHygiene.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatselectionhygiene", + "target": "apps_extension_chromium_src_lib_localmodelidentity_canonicallocalmodelname", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/lib/wrChatSelectionHygiene.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatselectionhygiene_resolvewrchathostselectionforsend", + "target": "apps_extension_chromium_src_lib_localmodelidentity_canonicallocalmodelname" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/tests/wrChatSelectionHygiene.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_tests_wrchatselectionhygiene_test", + "target": "apps_extension_chromium_src_lib_localmodelidentity_canonicallocalmodelname", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatSelectionHygiene.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatselectionhygiene", + "target": "apps_extension_chromium_src_lib_localmodelidentity_resolvelocalmodelalias", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/lib/wrChatSelectionHygiene.ts", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatselectionhygiene_resolvewrchathostselectionforsend", + "target": "apps_extension_chromium_src_lib_localmodelidentity_resolvelocalmodelalias" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/tests/wrChatSelectionHygiene.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_tests_wrchatselectionhygiene_test", + "target": "apps_extension_chromium_src_lib_localmodelidentity_resolvelocalmodelalias", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/resolveOrchestratorSessionKey.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_global_account_context_key", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/resolveOrchestratorSessionKey.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_globalsessioncontextstoragekeys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/resolveOrchestratorSessionKey.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_inferencesessionkeycontextfrommode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/resolveOrchestratorSessionKey.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_logglobalcontextsessionkey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/resolveOrchestratorSessionKey.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_normalizeorchestratorsessionkey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/resolveOrchestratorSessionKey.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_orchestrator_active_mode_id_key", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/resolveOrchestratorSessionKey.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_orchestrator_active_mode_session_id_key", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/resolveOrchestratorSessionKey.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_orchestrator_active_session_storage_key", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/resolveOrchestratorSessionKey.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_orchestrator_global_active_session_key", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/resolveOrchestratorSessionKey.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_orchestrator_tab_session_storage_key", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/resolveOrchestratorSessionKey.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_orchestratorsessionhintsfromstorage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/resolveOrchestratorSessionKey.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_readactivesessionkeyfromchromestorage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/resolveOrchestratorSessionKey.ts", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_readorchestratorsessionhintsfromchromestorage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/resolveOrchestratorSessionKey.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_resolveorchestratorsessionkeycontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/resolveOrchestratorSessionKey.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_resolveorchestratorsessionkeyforinference", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/resolveOrchestratorSessionKey.ts", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_resolveorchestratorsessionkeyforinferenceasync", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeIntervalScheduler.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modeintervalscheduler", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L304", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow_resolveprocessflowsessionkey", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_orchestrator_active_session_storage_key", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_orchestrator_active_mode_session_id_key", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_orchestrator_active_mode_id_key", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/resolveOrchestratorSessionKey.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_resolveorchestratorsessionkeyforinference", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_normalizeorchestratorsessionkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/resolveOrchestratorSessionKey.ts", + "source_location": "L139", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_resolveorchestratorsessionkeyforinferenceasync", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_normalizeorchestratorsessionkey", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeIntervalScheduler.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modeintervalscheduler", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_normalizeorchestratorsessionkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/services/modeIntervalScheduler.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modeintervalscheduler_modeneedsintervalrun", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_normalizeorchestratorsessionkey" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_normalizeorchestratorsessionkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts", + "source_location": "L248", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation_modehasallocatedsession", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_normalizeorchestratorsessionkey" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation_resolvemodeallocatedsessionrun", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_normalizeorchestratorsessionkey" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_logglobalcontextsessionkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L217", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_resolvesidepanelinferencesessionkey", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_logglobalcontextsessionkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/resolveOrchestratorSessionKey.ts", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_resolveorchestratorsessionkeyforinferenceasync", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_resolveorchestratorsessionkeyforinference", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_resolveorchestratorsessionkeyforinference", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L213", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_resolvesidepanelinferencesessionkey", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_resolveorchestratorsessionkeyforinference", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/resolveOrchestratorSessionKey.ts", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_resolveorchestratorsessionkeyforinferenceasync", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_readactivesessionkeyfromchromestorage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_resolveorchestratorsessionkeyforinferenceasync", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L354", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_getmergedchatllmprefixformodel", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_resolveorchestratorsessionkeyforinferenceasync", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_inferencesessionkeycontextfrommode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L214", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_resolvesidepanelinferencesessionkey", + "target": "apps_extension_chromium_src_lib_resolveorchestratorsessionkey_inferencesessionkeycontextfrommode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionAiContext.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatextensionaicontext", + "target": "apps_extension_chromium_src_lib_wrchatextensionaicontext_buildwrchatextensionaiexecutionpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionAiContext.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatextensionaicontext", + "target": "apps_extension_chromium_src_lib_wrchatextensionaicontext_normalizehostmodelfromrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionAiContext.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatextensionaicontext", + "target": "apps_extension_chromium_src_lib_wrchatextensionaicontext_wrchatextensionaiexecutionpayload", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionAiContext.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatextensionaicontext", + "target": "apps_extension_chromium_src_lib_wrchatmodelsfromllmstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionAiContext.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatextensionaicontext", + "target": "apps_extension_chromium_src_lib_wrchatmodelsfromllmstatus_wrchatselectorrow", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionPreSend.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatextensionpresend", + "target": "apps_extension_chromium_src_lib_wrchatextensionaicontext", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/tests/wrChatExtensionModelPersistence.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_tests_wrchatextensionmodelpersistence_test", + "target": "apps_extension_chromium_src_lib_wrchatextensionaicontext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionAiContext.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatextensionaicontext_buildwrchatextensionaiexecutionpayload", + "target": "apps_extension_chromium_src_lib_wrchatextensionaicontext_normalizehostmodelfromrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionPreSend.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatextensionpresend", + "target": "apps_extension_chromium_src_lib_wrchatextensionaicontext_buildwrchatextensionaiexecutionpayload", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionPreSend.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatextensionpresend_runwrchatextensionpresend", + "target": "apps_extension_chromium_src_lib_wrchatextensionaicontext_buildwrchatextensionaiexecutionpayload" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/tests/wrChatExtensionModelPersistence.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_tests_wrchatextensionmodelpersistence_test", + "target": "apps_extension_chromium_src_lib_wrchatextensionaicontext_buildwrchatextensionaiexecutionpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionModelPersistence.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence", + "target": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_clearpersistedwrchatextensionmodel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionModelPersistence.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence", + "target": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_dispatchmodelchanged", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionModelPersistence.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence", + "target": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_loadpersistedwrchatextensionmodel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionModelPersistence.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence", + "target": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_mapextensionselectionsourceforlog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionModelPersistence.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence", + "target": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_parsemeta", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionModelPersistence.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence", + "target": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_persistedmeta", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionModelPersistence.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence", + "target": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_persistwrchatextensionmodelid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionModelPersistence.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence", + "target": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_subscribewrchatextensionmodel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionModelPersistence.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence", + "target": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_wrchat_ext_active_model_key", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionModelPersistence.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence", + "target": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_wrchatextensionselectionsource", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionPreSend.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatextensionpresend", + "target": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatSelectionHygiene.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatselectionhygiene", + "target": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/tests/wrChatExtensionModelPersistence.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_tests_wrchatextensionmodelpersistence_test", + "target": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/tests/wrChatSelectionHygiene.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_tests_wrchatselectionhygiene_test", + "target": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/tests/wrChatExtensionModelPersistence.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_tests_wrchatextensionmodelpersistence_test", + "target": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_wrchat_ext_active_model_key", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionPreSend.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatextensionpresend", + "target": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_wrchatextensionselectionsource", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionModelPersistence.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_persistwrchatextensionmodelid", + "target": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_dispatchmodelchanged", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionModelPersistence.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_loadpersistedwrchatextensionmodel", + "target": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_parsemeta", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionModelPersistence.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_clearpersistedwrchatextensionmodel", + "target": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_persistwrchatextensionmodelid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatSelectionHygiene.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatselectionhygiene", + "target": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_persistwrchatextensionmodelid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatSelectionHygiene.ts", + "source_location": "L158", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatselectionhygiene_finishmigration", + "target": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_persistwrchatextensionmodelid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_persistwrchatextensionmodelid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L413", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat_popupchatapp", + "target": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_persistwrchatextensionmodelid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_persistwrchatextensionmodelid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L1319", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_persistwrchatextensionmodelid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/tests/wrChatExtensionModelPersistence.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_tests_wrchatextensionmodelpersistence_test", + "target": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_persistwrchatextensionmodelid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/tests/wrChatSelectionHygiene.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_tests_wrchatselectionhygiene_test", + "target": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_persistwrchatextensionmodelid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionPreSend.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatextensionpresend", + "target": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_loadpersistedwrchatextensionmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionPreSend.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatextensionpresend_runwrchatextensionpresend", + "target": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_loadpersistedwrchatextensionmodel" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatSelectionHygiene.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatselectionhygiene", + "target": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_loadpersistedwrchatextensionmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatSelectionHygiene.ts", + "source_location": "L154", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatselectionhygiene_finishmigration", + "target": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_loadpersistedwrchatextensionmodel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_loadpersistedwrchatextensionmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L522", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat_popupchatapp", + "target": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_loadpersistedwrchatextensionmodel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_loadpersistedwrchatextensionmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L1298", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_loadpersistedwrchatextensionmodel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/tests/wrChatExtensionModelPersistence.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_tests_wrchatextensionmodelpersistence_test", + "target": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_loadpersistedwrchatextensionmodel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/tests/wrChatSelectionHygiene.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_tests_wrchatselectionhygiene_test", + "target": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_loadpersistedwrchatextensionmodel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_loadpersistedwrchatextensionmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L1381", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_popupchatview", + "target": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_loadpersistedwrchatextensionmodel" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_clearpersistedwrchatextensionmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L525", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat_popupchatapp", + "target": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_clearpersistedwrchatextensionmodel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_clearpersistedwrchatextensionmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L1301", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_clearpersistedwrchatextensionmodel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/tests/wrChatExtensionModelPersistence.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_tests_wrchatextensionmodelpersistence_test", + "target": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_clearpersistedwrchatextensionmodel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_subscribewrchatextensionmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L567", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat_popupchatapp", + "target": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_subscribewrchatextensionmodel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_subscribewrchatextensionmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L1396", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_subscribewrchatextensionmodel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionPreSend.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatextensionpresend", + "target": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_mapextensionselectionsourceforlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionPreSend.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatextensionpresend_logselectionsourceforsend", + "target": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_mapextensionselectionsourceforlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionPreSend.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatextensionpresend_runwrchatextensionpresend", + "target": "apps_extension_chromium_src_lib_wrchatextensionmodelpersistence_mapextensionselectionsourceforlog" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionPreSend.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatextensionpresend", + "target": "apps_extension_chromium_src_lib_wrchatextensionpresend_logselectionsourceforsend", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionPreSend.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatextensionpresend", + "target": "apps_extension_chromium_src_lib_wrchatextensionpresend_runwrchatextensionpresend", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionPreSend.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatextensionpresend", + "target": "apps_extension_chromium_src_lib_wrchatextensionpresend_wrchatextensiondebuglog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionPreSend.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatextensionpresend", + "target": "apps_extension_chromium_src_lib_wrchatextensionpresend_wrchatextensionorigin", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionPreSend.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatextensionpresend", + "target": "apps_extension_chromium_src_lib_wrchatmodelsfromllmstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionPreSend.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatextensionpresend", + "target": "apps_extension_chromium_src_lib_wrchatmodelsfromllmstatus_wrchatselectorrow", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionPreSend.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatextensionpresend", + "target": "apps_extension_chromium_src_lib_wrchatselectionhygiene", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionPreSend.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatextensionpresend", + "target": "apps_extension_chromium_src_lib_wrchatselectionhygiene_resolvewrchathostselectionforsend", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionPreSend.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatextensionpresend", + "target": "apps_extension_chromium_src_rpc_electronrpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionPreSend.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatextensionpresend", + "target": "apps_extension_chromium_src_rpc_electronrpc_electronrpc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_lib_wrchatextensionpresend", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_lib_wrchatextensionpresend", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_lib_wrchatextensionpresend", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionPreSend.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatextensionpresend_runwrchatextensionpresend", + "target": "apps_extension_chromium_src_lib_wrchatextensionpresend_wrchatextensiondebuglog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_lib_wrchatextensionpresend_wrchatextensiondebuglog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L417", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat_popupchatapp", + "target": "apps_extension_chromium_src_lib_wrchatextensionpresend_wrchatextensiondebuglog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_lib_wrchatextensionpresend_wrchatextensiondebuglog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L1636", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_lib_wrchatextensionpresend_wrchatextensiondebuglog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_lib_wrchatextensionpresend_wrchatextensiondebuglog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L1522", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_popupchatview", + "target": "apps_extension_chromium_src_lib_wrchatextensionpresend_wrchatextensiondebuglog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionPreSend.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatextensionpresend_runwrchatextensionpresend", + "target": "apps_extension_chromium_src_lib_wrchatextensionpresend_logselectionsourceforsend", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionPreSend.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatextensionpresend_runwrchatextensionpresend", + "target": "apps_extension_chromium_src_lib_wrchatselectionhygiene_resolvewrchathostselectionforsend" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/lib/wrChatExtensionPreSend.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatextensionpresend_runwrchatextensionpresend", + "target": "apps_extension_chromium_src_rpc_electronrpc_electronrpc" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_lib_wrchatextensionpresend_runwrchatextensionpresend", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L423", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat_popupchatapp", + "target": "apps_extension_chromium_src_lib_wrchatextensionpresend_runwrchatextensionpresend", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_lib_wrchatextensionpresend_runwrchatextensionpresend", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L1488", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_lib_wrchatextensionpresend_runwrchatextensionpresend", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_lib_wrchatextensionpresend_runwrchatextensionpresend", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L1144", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_popupchatview", + "target": "apps_extension_chromium_src_lib_wrchatextensionpresend_runwrchatextensionpresend" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatHostInferenceShared.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchathostinferenceshared", + "target": "apps_extension_chromium_src_lib_wrchathostinferenceshared_buildhostinternalmessagesfromsimplechat", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatHostInferenceShared.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchathostinferenceshared", + "target": "apps_extension_chromium_src_lib_wrchathostinferenceshared_logwrchatinferenceroutingpreflight", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatHostInferenceShared.ts", + "source_location": "L151", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchathostinferenceshared", + "target": "apps_extension_chromium_src_lib_wrchathostinferenceshared_postwrchathostinternalcompletionhttp", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatHostInferenceShared.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchathostinferenceshared", + "target": "apps_extension_chromium_src_lib_wrchathostinferenceshared_resolvedwrchatexecutiontransport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatHostInferenceShared.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchathostinferenceshared", + "target": "apps_extension_chromium_src_lib_wrchathostinferenceshared_resolvewrchatexecutiontransport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatHostInferenceShared.ts", + "source_location": "L206", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchathostinferenceshared", + "target": "apps_extension_chromium_src_lib_wrchathostinferenceshared_runwrchathostinferenceforextensionsurface", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatHostInferenceShared.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchathostinferenceshared", + "target": "apps_extension_chromium_src_lib_wrchathostinferenceshared_wrchathostinternalwiremodel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatHostInferenceShared.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchathostinferenceshared", + "target": "apps_extension_chromium_src_lib_wrchathostinferenceshared_wrchathostselectorrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatHostInferenceShared.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchathostinferenceshared", + "target": "apps_extension_chromium_src_lib_wrchathostinferenceshared_wrchatinferenceroutinglog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatHostInferenceShared.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchathostinferenceshared", + "target": "apps_extension_chromium_src_lib_wrchathostinferenceshared_wrchatsimplechatbubble", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatHostInferenceShared.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchathostinferenceshared", + "target": "apps_extension_chromium_src_lib_wrchathostinferenceshared_wrchatsubmitorigin", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatHostInferenceShared.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchathostinferenceshared", + "target": "apps_extension_chromium_src_lib_wrchatselectionhygiene", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatHostInferenceShared.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchathostinferenceshared", + "target": "apps_extension_chromium_src_lib_wrchatselectionhygiene_resolvewrchathostselectionforsend", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_lib_wrchathostinferenceshared", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_lib_wrchathostinferenceshared", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_lib_wrchathostinferenceshared", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatHostInferenceShared.ts", + "source_location": "L228", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchathostinferenceshared_runwrchathostinferenceforextensionsurface", + "target": "apps_extension_chromium_src_lib_wrchathostinferenceshared_resolvewrchatexecutiontransport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_lib_wrchathostinferenceshared_resolvewrchatexecutiontransport", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L228", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution_submitmoderunagentllm", + "target": "apps_extension_chromium_src_lib_wrchathostinferenceshared_resolvewrchatexecutiontransport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_lib_wrchathostinferenceshared_resolvewrchatexecutiontransport", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L3816", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_lib_wrchathostinferenceshared_resolvewrchatexecutiontransport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_lib_wrchathostinferenceshared_resolvewrchatexecutiontransport", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L1242", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_popupchatview", + "target": "apps_extension_chromium_src_lib_wrchathostinferenceshared_resolvewrchatexecutiontransport" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatHostInferenceShared.ts", + "source_location": "L229", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchathostinferenceshared_runwrchathostinferenceforextensionsurface", + "target": "apps_extension_chromium_src_lib_wrchathostinferenceshared_wrchathostinternalwiremodel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_lib_wrchathostinferenceshared_wrchathostinternalwiremodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L211", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution_submitmoderunagentllm", + "target": "apps_extension_chromium_src_lib_wrchathostinferenceshared_wrchathostinternalwiremodel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_lib_wrchathostinferenceshared_wrchathostinternalwiremodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L1237", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_popupchatview", + "target": "apps_extension_chromium_src_lib_wrchathostinferenceshared_wrchathostinternalwiremodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatHostInferenceShared.ts", + "source_location": "L232", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchathostinferenceshared_runwrchathostinferenceforextensionsurface", + "target": "apps_extension_chromium_src_lib_wrchathostinferenceshared_logwrchatinferenceroutingpreflight", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_lib_wrchathostinferenceshared_logwrchatinferenceroutingpreflight", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L225", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution_submitmoderunagentllm", + "target": "apps_extension_chromium_src_lib_wrchathostinferenceshared_logwrchatinferenceroutingpreflight", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_lib_wrchathostinferenceshared_logwrchatinferenceroutingpreflight", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L1239", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_popupchatview", + "target": "apps_extension_chromium_src_lib_wrchathostinferenceshared_logwrchatinferenceroutingpreflight" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_lib_wrchathostinferenceshared_buildhostinternalmessagesfromsimplechat", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L3581", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_lib_wrchathostinferenceshared_buildhostinternalmessagesfromsimplechat", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_lib_wrchathostinferenceshared_buildhostinternalmessagesfromsimplechat", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L1228", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_popupchatview", + "target": "apps_extension_chromium_src_lib_wrchathostinferenceshared_buildhostinternalmessagesfromsimplechat" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatHostInferenceShared.ts", + "source_location": "L271", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchathostinferenceshared_runwrchathostinferenceforextensionsurface", + "target": "apps_extension_chromium_src_lib_wrchathostinferenceshared_postwrchathostinternalcompletionhttp", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_lib_wrchathostinferenceshared_postwrchathostinternalcompletionhttp", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L271", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution_submitmoderunagentllm", + "target": "apps_extension_chromium_src_lib_wrchathostinferenceshared_postwrchathostinternalcompletionhttp", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/lib/wrChatHostInferenceShared.ts", + "source_location": "L220", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchathostinferenceshared_runwrchathostinferenceforextensionsurface", + "target": "apps_extension_chromium_src_lib_wrchatselectionhygiene_resolvewrchathostselectionforsend" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_lib_wrchathostinferenceshared_runwrchathostinferenceforextensionsurface", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L3593", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_lib_wrchathostinferenceshared_runwrchathostinferenceforextensionsurface", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_lib_wrchathostinferenceshared_runwrchathostinferenceforextensionsurface", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L1382", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_popupchatview", + "target": "apps_extension_chromium_src_lib_wrchathostinferenceshared_runwrchathostinferenceforextensionsurface" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatModelsFromLlmStatus.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatmodelsfromllmstatus", + "target": "apps_extension_chromium_src_lib_wrchatmodelsfromllmstatus_buildwrchatselectormodelsfromllmstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatModelsFromLlmStatus.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatmodelsfromllmstatus", + "target": "apps_extension_chromium_src_lib_wrchatmodelsfromllmstatus_choosedefaultwrchatmodel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatModelsFromLlmStatus.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatmodelsfromllmstatus", + "target": "apps_extension_chromium_src_lib_wrchatmodelsfromllmstatus_wrchatmodelbuttonshortlabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatModelsFromLlmStatus.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatmodelsfromllmstatus", + "target": "apps_extension_chromium_src_lib_wrchatmodelsfromllmstatus_wrchatselectorrow", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_lib_wrchatmodelsfromllmstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/localOllamaModels.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_localollamamodels", + "target": "apps_extension_chromium_src_lib_wrchatmodelsfromllmstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_lib_wrchatmodelsfromllmstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_lib_wrchatmodelsfromllmstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepModel.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepmodel", + "target": "apps_extension_chromium_src_lib_wrchatmodelsfromllmstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_lib_wrchatmodelsfromllmstatus_wrchatselectorrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/localOllamaModels.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_localollamamodels", + "target": "apps_extension_chromium_src_lib_wrchatmodelsfromllmstatus_wrchatselectorrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_lib_wrchatmodelsfromllmstatus_wrchatselectorrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_lib_wrchatmodelsfromllmstatus_wrchatselectorrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepModel.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepmodel", + "target": "apps_extension_chromium_src_lib_wrchatmodelsfromllmstatus_wrchatselectorrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_lib_wrchatmodelsfromllmstatus_buildwrchatselectormodelsfromllmstatus", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L517", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat_popupchatapp", + "target": "apps_extension_chromium_src_lib_wrchatmodelsfromllmstatus_buildwrchatselectormodelsfromllmstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/localOllamaModels.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_localollamamodels", + "target": "apps_extension_chromium_src_lib_wrchatmodelsfromllmstatus_buildwrchatselectormodelsfromllmstatus", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/services/localOllamaModels.ts", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_localollamamodels_fetchwrchatselectormodelsfrombackend", + "target": "apps_extension_chromium_src_lib_wrchatmodelsfromllmstatus_buildwrchatselectormodelsfromllmstatus" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_lib_wrchatmodelsfromllmstatus_buildwrchatselectormodelsfromllmstatus", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution_fetchwrchatavailablemodelsformoderun", + "target": "apps_extension_chromium_src_lib_wrchatmodelsfromllmstatus_buildwrchatselectormodelsfromllmstatus" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_lib_wrchatmodelsfromllmstatus_buildwrchatselectormodelsfromllmstatus", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L1281", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_lib_wrchatmodelsfromllmstatus_buildwrchatselectormodelsfromllmstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_lib_wrchatmodelsfromllmstatus_wrchatmodelbuttonshortlabel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L4628", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_lib_wrchatmodelsfromllmstatus_wrchatmodelbuttonshortlabel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_lib_wrchatmodelsfromllmstatus_choosedefaultwrchatmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L539", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat_popupchatapp", + "target": "apps_extension_chromium_src_lib_wrchatmodelsfromllmstatus_choosedefaultwrchatmodel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_lib_wrchatmodelsfromllmstatus_choosedefaultwrchatmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L1315", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_lib_wrchatmodelsfromllmstatus_choosedefaultwrchatmodel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatSelectionHygiene.ts", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatselectionhygiene", + "target": "apps_extension_chromium_src_lib_wrchatselectionhygiene_finishmigration", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatSelectionHygiene.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatselectionhygiene", + "target": "apps_extension_chromium_src_lib_wrchatselectionhygiene_hostrowsforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatSelectionHygiene.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatselectionhygiene", + "target": "apps_extension_chromium_src_lib_wrchatselectionhygiene_resolvewrchathostselectionforsend", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatSelectionHygiene.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatselectionhygiene", + "target": "apps_extension_chromium_src_lib_wrchatselectionhygiene_wrchathostrowlike", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatSelectionHygiene.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatselectionhygiene", + "target": "apps_extension_chromium_src_lib_wrchatselectionhygiene_wrchathostselectionresolution", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_lib_wrchatselectionhygiene", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/tests/wrChatSelectionHygiene.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_tests_wrchatselectionhygiene_test", + "target": "apps_extension_chromium_src_lib_wrchatselectionhygiene", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatSelectionHygiene.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatselectionhygiene_resolvewrchathostselectionforsend", + "target": "apps_extension_chromium_src_lib_wrchatselectionhygiene_hostrowsforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrChatSelectionHygiene.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrchatselectionhygiene_resolvewrchathostselectionforsend", + "target": "apps_extension_chromium_src_lib_wrchatselectionhygiene_finishmigration", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_lib_wrchatselectionhygiene_resolvewrchathostselectionforsend", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L192", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution_submitmoderunagentllm", + "target": "apps_extension_chromium_src_lib_wrchatselectionhygiene_resolvewrchathostselectionforsend", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/tests/wrChatSelectionHygiene.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_tests_wrchatselectionhygiene_test", + "target": "apps_extension_chromium_src_lib_wrchatselectionhygiene_resolvewrchathostselectionforsend", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/lib/wrdeskOptimizationEvents.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_lib_wrdeskoptimizationevents", + "target": "apps_extension_chromium_src_lib_wrdeskoptimizationevents_wrdesk_optimization_run_results", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_lib_wrdeskoptimizationevents", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_lib_wrdeskoptimizationevents_wrdesk_optimization_run_results", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L1174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script", + "target": "apps_extension_chromium_src_mailguard_content_script_activatemailguard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script", + "target": "apps_extension_chromium_src_mailguard_content_script_blockemailclick", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L1324", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script", + "target": "apps_extension_chromium_src_mailguard_content_script_deactivatemailguard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script", + "target": "apps_extension_chromium_src_mailguard_content_script_debuglog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L457", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script", + "target": "apps_extension_chromium_src_mailguard_content_script_dismissbanner", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L628", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script", + "target": "apps_extension_chromium_src_mailguard_content_script_email_list_container_selectors", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L907", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script", + "target": "apps_extension_chromium_src_mailguard_content_script_email_row_selectors", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L913", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script", + "target": "apps_extension_chromium_src_mailguard_content_script_email_selectors", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L891", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script", + "target": "apps_extension_chromium_src_mailguard_content_script_emailprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script", + "target": "apps_extension_chromium_src_mailguard_content_script_emailrowelements", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script", + "target": "apps_extension_chromium_src_mailguard_content_script_emailrowrect", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L952", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script", + "target": "apps_extension_chromium_src_mailguard_content_script_extractemailcontent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L893", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script", + "target": "apps_extension_chromium_src_mailguard_content_script_getcurrentemailprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L648", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script", + "target": "apps_extension_chromium_src_mailguard_content_script_getemaillistbounds", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L558", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script", + "target": "apps_extension_chromium_src_mailguard_content_script_getemailrowpositions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L549", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script", + "target": "apps_extension_chromium_src_mailguard_content_script_hideconnectionwarning", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L1907", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script", + "target": "apps_extension_chromium_src_mailguard_content_script_hidewrguardprotectionoverlay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L1918", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script", + "target": "apps_extension_chromium_src_mailguard_content_script_init", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L733", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script", + "target": "apps_extension_chromium_src_mailguard_content_script_initializelisteners", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L205", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script", + "target": "apps_extension_chromium_src_mailguard_content_script_isanylightboxopen", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script", + "target": "apps_extension_chromium_src_mailguard_content_script_isemailelement", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L901", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script", + "target": "apps_extension_chromium_src_mailguard_content_script_isonsupportedemailsite", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L188", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script", + "target": "apps_extension_chromium_src_mailguard_content_script_lightbox_selectors", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L292", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script", + "target": "apps_extension_chromium_src_mailguard_content_script_loadtheme", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L1108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script", + "target": "apps_extension_chromium_src_mailguard_content_script_processnodetotext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script", + "target": "apps_extension_chromium_src_mailguard_content_script_protectedareabounds", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script", + "target": "apps_extension_chromium_src_mailguard_content_script_sanitizedemail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L1080", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script", + "target": "apps_extension_chromium_src_mailguard_content_script_sanitizehtmltotext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L212", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script", + "target": "apps_extension_chromium_src_mailguard_content_script_sendlightboxoverlaystate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L323", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script", + "target": "apps_extension_chromium_src_mailguard_content_script_sendtobackground", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L720", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script", + "target": "apps_extension_chromium_src_mailguard_content_script_sendwindowposition", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L345", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script", + "target": "apps_extension_chromium_src_mailguard_content_script_showactivationbanner", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L1290", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script", + "target": "apps_extension_chromium_src_mailguard_content_script_showactivationerror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L522", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script", + "target": "apps_extension_chromium_src_mailguard_content_script_showconnectionwarning", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L462", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script", + "target": "apps_extension_chromium_src_mailguard_content_script_showreenablebanner", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L514", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script", + "target": "apps_extension_chromium_src_mailguard_content_script_showstatusmarker", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L1480", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script", + "target": "apps_extension_chromium_src_mailguard_content_script_showwrguardprotectionoverlay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L826", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script", + "target": "apps_extension_chromium_src_mailguard_content_script_startrowpositionupdates", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L935", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script", + "target": "apps_extension_chromium_src_mailguard_content_script_stoprowpositionupdates", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L256", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script", + "target": "apps_extension_chromium_src_mailguard_content_script_themecolors", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L1950", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script", + "target": "apps_extension_chromium_src_mailguard_content_script_waitforemailuiready", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script", + "target": "apps_extension_chromium_src_wrguard_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script", + "target": "apps_extension_chromium_src_wrguard_types_isblockedemaildomain", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script", + "target": "apps_extension_chromium_src_wrguard_types_wrguard_blocked_email_domains", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L819", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script_rationale_819", + "target": "apps_extension_chromium_src_mailguard_content_script", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L948", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script_rationale_948", + "target": "apps_extension_chromium_src_mailguard_content_script", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script_blockemailclick", + "target": "apps_extension_chromium_src_mailguard_content_script_isemailelement", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L206", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script_isanylightboxopen", + "target": "apps_extension_chromium_src_mailguard_content_script_lightbox_selectors" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L1929", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script_init", + "target": "apps_extension_chromium_src_mailguard_content_script_loadtheme", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L1245", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script_activatemailguard", + "target": "apps_extension_chromium_src_mailguard_content_script_sendtobackground", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L1330", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script_deactivatemailguard", + "target": "apps_extension_chromium_src_mailguard_content_script_sendtobackground", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L1935", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script_init", + "target": "apps_extension_chromium_src_mailguard_content_script_sendtobackground", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L746", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script_initializelisteners", + "target": "apps_extension_chromium_src_mailguard_content_script_sendtobackground", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L729", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script_sendwindowposition", + "target": "apps_extension_chromium_src_mailguard_content_script_sendtobackground", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L841", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script_startrowpositionupdates", + "target": "apps_extension_chromium_src_mailguard_content_script_sendtobackground", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L451", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script_showactivationbanner", + "target": "apps_extension_chromium_src_mailguard_content_script_activatemailguard", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L452", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script_showactivationbanner", + "target": "apps_extension_chromium_src_mailguard_content_script_dismissbanner", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L1180", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script_activatemailguard", + "target": "apps_extension_chromium_src_mailguard_content_script_dismissbanner", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L507", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script_showreenablebanner", + "target": "apps_extension_chromium_src_mailguard_content_script_dismissbanner", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L1331", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script_deactivatemailguard", + "target": "apps_extension_chromium_src_mailguard_content_script_showreenablebanner", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L1945", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script_init", + "target": "apps_extension_chromium_src_mailguard_content_script_showreenablebanner", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L1318", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script_showactivationerror", + "target": "apps_extension_chromium_src_mailguard_content_script_showreenablebanner", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L508", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script_showreenablebanner", + "target": "apps_extension_chromium_src_mailguard_content_script_activatemailguard", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L1181", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script_activatemailguard", + "target": "apps_extension_chromium_src_mailguard_content_script_showstatusmarker", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L846", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script_startrowpositionupdates", + "target": "apps_extension_chromium_src_mailguard_content_script_showconnectionwarning", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L851", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script_startrowpositionupdates", + "target": "apps_extension_chromium_src_mailguard_content_script_hideconnectionwarning", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L1265", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script_activatemailguard", + "target": "apps_extension_chromium_src_mailguard_content_script_getemailrowpositions", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L670", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script_getemaillistbounds", + "target": "apps_extension_chromium_src_mailguard_content_script_getemailrowpositions", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L562", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script_getemailrowpositions", + "target": "apps_extension_chromium_src_mailguard_content_script_getcurrentemailprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L745", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script_initializelisteners", + "target": "apps_extension_chromium_src_mailguard_content_script_getemailrowpositions", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L856", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script_startrowpositionupdates", + "target": "apps_extension_chromium_src_mailguard_content_script_getemailrowpositions", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L1258", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script_activatemailguard", + "target": "apps_extension_chromium_src_mailguard_content_script_getemaillistbounds", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L649", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script_getemaillistbounds", + "target": "apps_extension_chromium_src_mailguard_content_script_getcurrentemailprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L749", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script_initializelisteners", + "target": "apps_extension_chromium_src_mailguard_content_script_getemaillistbounds", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L879", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script_startrowpositionupdates", + "target": "apps_extension_chromium_src_mailguard_content_script_getemaillistbounds", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L766", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script_initializelisteners", + "target": "apps_extension_chromium_src_mailguard_content_script_sendwindowposition", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L828", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script_startrowpositionupdates", + "target": "apps_extension_chromium_src_mailguard_content_script_initializelisteners", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L1255", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script_activatemailguard", + "target": "apps_extension_chromium_src_mailguard_content_script_startrowpositionupdates", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L857", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script_startrowpositionupdates", + "target": "apps_extension_chromium_src_mailguard_content_script_getcurrentemailprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L959", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script_extractemailcontent", + "target": "apps_extension_chromium_src_mailguard_content_script_getcurrentemailprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L1919", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script_init", + "target": "apps_extension_chromium_src_mailguard_content_script_getcurrentemailprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L902", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script_isonsupportedemailsite", + "target": "apps_extension_chromium_src_wrguard_types_isblockedemaildomain", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L1329", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script_deactivatemailguard", + "target": "apps_extension_chromium_src_mailguard_content_script_stoprowpositionupdates", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L1092", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script_sanitizehtmltotext", + "target": "apps_extension_chromium_src_mailguard_content_script_processnodetotext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L1287", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script_activatemailguard", + "target": "apps_extension_chromium_src_mailguard_content_script_showactivationerror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L1942", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script_init", + "target": "apps_extension_chromium_src_mailguard_content_script_activatemailguard", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/mailguard-content-script.ts", + "source_location": "L1932", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_mailguard_content_script_init", + "target": "apps_extension_chromium_src_mailguard_content_script_waitforemailuiready", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L314", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher_hookfetch", + "target": "apps_extension_chromium_src_mailguard_content_script_init" + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/index.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_index", + "target": "apps_extension_chromium_src_nlp_nlpclassifier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L473", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_nlpclassifier", + "target": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_nlpclassifier", + "target": "apps_extension_chromium_src_nlp_nlpclassifier_winkdoc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_nlpclassifier", + "target": "apps_extension_chromium_src_nlp_nlpclassifier_winkmodel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_nlpclassifier", + "target": "apps_extension_chromium_src_nlp_nlpclassifier_winknlp", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_nlpclassifier", + "target": "apps_extension_chromium_src_nlp_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_nlpclassifier", + "target": "apps_extension_chromium_src_nlp_types_classificationresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_nlpclassifier", + "target": "apps_extension_chromium_src_nlp_types_classifiedinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_nlpclassifier", + "target": "apps_extension_chromium_src_nlp_types_extractedentity", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_nlpclassifier", + "target": "apps_extension_chromium_src_nlp_types_nlpclassifierconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/__tests__/NlpClassifier.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_tests_nlpclassifier_test", + "target": "apps_extension_chromium_src_nlp_nlpclassifier", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_nlp_nlpclassifier", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/index.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_index", + "target": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier", + "target": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_classify", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier", + "target": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_constructor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L404", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier", + "target": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_detectintents", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier", + "target": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_doinitialize", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L310", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier", + "target": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_extractentitieswithregex", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L442", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier", + "target": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_extracttriggers", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L462", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier", + "target": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_getstatus", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier", + "target": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_initialize", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L455", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier", + "target": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_isnlpavailable", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier", + "target": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_log", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L259", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier", + "target": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_mapwinkentitytype", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L431", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier", + "target": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_normalizetext", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L280", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier", + "target": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_parsewithregex", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier", + "target": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_parsewithwink", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier", + "target": "apps_extension_chromium_src_nlp_types_nlpclassifierconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/__tests__/NlpClassifier.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_tests_nlpclassifier_test", + "target": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_constructor", + "target": "apps_extension_chromium_src_nlp_types_nlpclassifierconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L154", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_classify", + "target": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_log", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_doinitialize", + "target": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_log", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L238", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_parsewithwink", + "target": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_log", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_classify", + "target": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_initialize", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_initialize", + "target": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_doinitialize", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_classify", + "target": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_normalizetext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_classify", + "target": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_parsewithregex", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_classify", + "target": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_parsewithwink", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_classify", + "target": "apps_extension_chromium_src_nlp_types_classificationresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L251", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_parsewithwink", + "target": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_detectintents", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L242", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_parsewithwink", + "target": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_extractentitieswithregex", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L230", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_parsewithwink", + "target": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_mapwinkentitytype", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_parsewithwink", + "target": "apps_extension_chromium_src_nlp_types_extractedentity", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L259", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_mapwinkentitytype", + "target": "apps_extension_chromium_src_nlp_types_extractedentity", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L301", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_parsewithregex", + "target": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_extractentitieswithregex", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L280", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_parsewithregex", + "target": "apps_extension_chromium_src_nlp_types_extractedentity", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/NlpClassifier.ts", + "source_location": "L310", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_nlpclassifier_nlpclassifier_extractentitieswithregex", + "target": "apps_extension_chromium_src_nlp_types_extractedentity", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/__tests__/NlpClassifier.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_tests_nlpclassifier_test", + "target": "apps_extension_chromium_src_nlp_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/__tests__/NlpClassifier.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_tests_nlpclassifier_test", + "target": "apps_extension_chromium_src_nlp_types_classifiedinput", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_index", + "target": "apps_extension_chromium_src_nlp_types", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_index", + "target": "apps_extension_chromium_src_nlp_types_agentallocation", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_index", + "target": "apps_extension_chromium_src_nlp_types_agentreasoning", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_index", + "target": "apps_extension_chromium_src_nlp_types_classificationresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_index", + "target": "apps_extension_chromium_src_nlp_types_classifiedinput", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_index", + "target": "apps_extension_chromium_src_nlp_types_extractedentity", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_index", + "target": "apps_extension_chromium_src_nlp_types_nlpclassifierconfig", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_index", + "target": "apps_extension_chromium_src_nlp_types_outputslot", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_nlp_index", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/types.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_types", + "target": "apps_extension_chromium_src_nlp_types_agentallocation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/types.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_types", + "target": "apps_extension_chromium_src_nlp_types_agentreasoning", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/types.ts", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_types", + "target": "apps_extension_chromium_src_nlp_types_classificationresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/types.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_types", + "target": "apps_extension_chromium_src_nlp_types_classifiedinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/types.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_types", + "target": "apps_extension_chromium_src_nlp_types_extractedentity", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/types.ts", + "source_location": "L152", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_types", + "target": "apps_extension_chromium_src_nlp_types_nlpclassifierconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/nlp/types.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_nlp_types", + "target": "apps_extension_chromium_src_nlp_types_outputslot", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator", + "target": "apps_extension_chromium_src_nlp_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator", + "target": "apps_extension_chromium_src_nlp_types_agentreasoning", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator", + "target": "apps_extension_chromium_src_nlp_types_outputslot", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator", + "target": "apps_extension_chromium_src_nlp_types_agentallocation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator", + "target": "apps_extension_chromium_src_nlp_types_classifiedinput", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L1072", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_generateforwardingresponsefromclassified", + "target": "apps_extension_chromium_src_nlp_types_classifiedinput", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L960", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_routeclassifiedinput", + "target": "apps_extension_chromium_src_nlp_types_classifiedinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_nlp_types_classifiedinput", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/components/index.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_components_index", + "target": "apps_extension_chromium_src_packages_components_packagelist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/components/PackageList.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_components_packagelist", + "target": "apps_extension_chromium_src_packages_components_packagelist_packagelist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/components/PackageList.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_components_packagelist", + "target": "apps_extension_chromium_src_packages_components_packagelist_packagelistprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/components/PackageList.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_components_packagelist", + "target": "apps_extension_chromium_src_packages_components_packagelistitem", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/components/PackageList.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_components_packagelist", + "target": "apps_extension_chromium_src_packages_components_packagelistitem_packagelistitem", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/components/PackageList.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_components_packagelist", + "target": "apps_extension_chromium_src_packages_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/components/PackageList.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_components_packagelist", + "target": "apps_extension_chromium_src_packages_types_beappackage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/components/PackageList.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_components_packagelist_packagelistprops", + "target": "apps_extension_chromium_src_packages_types_beappackage", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/components/index.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_components_index", + "target": "apps_extension_chromium_src_packages_components_packagelist_packagelist", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/index.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_index", + "target": "apps_extension_chromium_src_packages_components_packagelist_packagelist", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/components/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_components_index", + "target": "apps_extension_chromium_src_packages_components_packagelistitem", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/components/PackageListItem.tsx", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_components_packagelistitem", + "target": "apps_extension_chromium_src_packages_components_packagelistitem_packagelistitem", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/components/PackageListItem.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_components_packagelistitem", + "target": "apps_extension_chromium_src_packages_components_packagelistitem_packagelistitemprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/components/PackageListItem.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_components_packagelistitem", + "target": "apps_extension_chromium_src_packages_components_packagelistitem_status_colors", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/components/PackageListItem.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_components_packagelistitem", + "target": "apps_extension_chromium_src_packages_components_packagelistitem_status_icons", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/components/PackageListItem.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_components_packagelistitem", + "target": "apps_extension_chromium_src_packages_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/components/PackageListItem.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_components_packagelistitem", + "target": "apps_extension_chromium_src_packages_types_beappackage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/components/PackageListItem.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_components_packagelistitem", + "target": "apps_extension_chromium_src_packages_types_packagestatus", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/components/PackageListItem.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_components_packagelistitem_packagelistitemprops", + "target": "apps_extension_chromium_src_packages_types_beappackage", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/components/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_components_index", + "target": "apps_extension_chromium_src_packages_components_packagelistitem_packagelistitem", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/index.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_index", + "target": "apps_extension_chromium_src_packages_components_packagelistitem_packagelistitem", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/index.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_index", + "target": "apps_extension_chromium_src_packages_components_index", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/index.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_index", + "target": "apps_extension_chromium_src_packages_registrationservice", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/index.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_index", + "target": "apps_extension_chromium_src_packages_registrationservice_acceptpendingpackage", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/index.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_index", + "target": "apps_extension_chromium_src_packages_registrationservice_checkautoregister", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/index.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_index", + "target": "apps_extension_chromium_src_packages_registrationservice_generatepackageid", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/index.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_index", + "target": "apps_extension_chromium_src_packages_registrationservice_generatepackageidsync", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/index.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_index", + "target": "apps_extension_chromium_src_packages_registrationservice_handshakeregistry", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/index.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_index", + "target": "apps_extension_chromium_src_packages_registrationservice_importfromdownload", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/index.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_index", + "target": "apps_extension_chromium_src_packages_registrationservice_importfromgmail", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/index.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_index", + "target": "apps_extension_chromium_src_packages_registrationservice_importfromoutlook", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/index.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_index", + "target": "apps_extension_chromium_src_packages_registrationservice_importfromwebmessenger", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/index.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_index", + "target": "apps_extension_chromium_src_packages_registrationservice_registerpackagefromchannel", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/index.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_index", + "target": "apps_extension_chromium_src_packages_registrationservice_rejectpendingpackage", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/index.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_index", + "target": "apps_extension_chromium_src_packages_types", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/index.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_index", + "target": "apps_extension_chromium_src_packages_usepackagestore", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/index.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_index", + "target": "apps_extension_chromium_src_packages_usepackagestore_usearchivepackages", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/index.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_index", + "target": "apps_extension_chromium_src_packages_usepackagestore_usedraftpackages", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/index.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_index", + "target": "apps_extension_chromium_src_packages_usepackagestore_useinboxpackages", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/index.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_index", + "target": "apps_extension_chromium_src_packages_usepackagestore_useoutboxpackages", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/index.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_index", + "target": "apps_extension_chromium_src_packages_usepackagestore_usepackagecounts", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/index.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_index", + "target": "apps_extension_chromium_src_packages_usepackagestore_usepackagestore", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/index.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_index", + "target": "apps_extension_chromium_src_packages_usepackagestore_usependingconsent", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/index.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_index", + "target": "apps_extension_chromium_src_packages_usepackagestore_userejectedpackages", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/registrationService.ts", + "source_location": "L251", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_registrationservice", + "target": "apps_extension_chromium_src_packages_registrationservice_acceptpendingpackage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/registrationService.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_registrationservice", + "target": "apps_extension_chromium_src_packages_registrationservice_checkautoregister", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/registrationService.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_registrationservice", + "target": "apps_extension_chromium_src_packages_registrationservice_generatepackageid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/registrationService.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_registrationservice", + "target": "apps_extension_chromium_src_packages_registrationservice_generatepackageidsync", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/registrationService.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_registrationservice", + "target": "apps_extension_chromium_src_packages_registrationservice_handshakeregistry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/registrationService.ts", + "source_location": "L334", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_registrationservice", + "target": "apps_extension_chromium_src_packages_registrationservice_importfromdownload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/registrationService.ts", + "source_location": "L275", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_registrationservice", + "target": "apps_extension_chromium_src_packages_registrationservice_importfromgmail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/registrationService.ts", + "source_location": "L304", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_registrationservice", + "target": "apps_extension_chromium_src_packages_registrationservice_importfromoutlook", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/registrationService.ts", + "source_location": "L363", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_registrationservice", + "target": "apps_extension_chromium_src_packages_registrationservice_importfromwebmessenger", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/registrationService.ts", + "source_location": "L202", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_registrationservice", + "target": "apps_extension_chromium_src_packages_registrationservice_registerpackagefromchannel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/registrationService.ts", + "source_location": "L263", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_registrationservice", + "target": "apps_extension_chromium_src_packages_registrationservice_rejectpendingpackage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/registrationService.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_registrationservice", + "target": "apps_extension_chromium_src_packages_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/registrationService.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_registrationservice", + "target": "apps_extension_chromium_src_packages_types_autoregistercheckresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/registrationService.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_registrationservice", + "target": "apps_extension_chromium_src_packages_types_autoregisterpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/registrationService.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_registrationservice", + "target": "apps_extension_chromium_src_packages_types_ingresschannel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/registrationService.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_registrationservice", + "target": "apps_extension_chromium_src_packages_types_packageregistrationrequest", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/registrationService.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_registrationservice", + "target": "apps_extension_chromium_src_packages_types_packageregistrationresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/registrationService.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_registrationservice", + "target": "apps_extension_chromium_src_packages_usepackagestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/registrationService.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_registrationservice", + "target": "apps_extension_chromium_src_packages_usepackagestore_usepackagestore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/registrationService.ts", + "source_location": "L209", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_registrationservice_registerpackagefromchannel", + "target": "apps_extension_chromium_src_packages_registrationservice_generatepackageidsync", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/registrationService.ts", + "source_location": "L231", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_registrationservice_registerpackagefromchannel", + "target": "apps_extension_chromium_src_packages_registrationservice_checkautoregister", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/registrationService.ts", + "source_location": "L343", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_registrationservice_importfromdownload", + "target": "apps_extension_chromium_src_packages_registrationservice_registerpackagefromchannel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/registrationService.ts", + "source_location": "L284", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_registrationservice_importfromgmail", + "target": "apps_extension_chromium_src_packages_registrationservice_registerpackagefromchannel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/registrationService.ts", + "source_location": "L314", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_registrationservice_importfromoutlook", + "target": "apps_extension_chromium_src_packages_registrationservice_registerpackagefromchannel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/registrationService.ts", + "source_location": "L373", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_registrationservice_importfromwebmessenger", + "target": "apps_extension_chromium_src_packages_registrationservice_registerpackagefromchannel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/types.ts", + "source_location": "L241", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_types", + "target": "apps_extension_chromium_src_packages_types_autoregistercheckresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/types.ts", + "source_location": "L233", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_types", + "target": "apps_extension_chromium_src_packages_types_autoregisterpolicy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/types.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_types", + "target": "apps_extension_chromium_src_packages_types_beappackage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/types.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_types", + "target": "apps_extension_chromium_src_packages_types_ingresschannel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/types.ts", + "source_location": "L177", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_types", + "target": "apps_extension_chromium_src_packages_types_ingressevent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/types.ts", + "source_location": "L262", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_types", + "target": "apps_extension_chromium_src_packages_types_packageregistrationrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/types.ts", + "source_location": "L321", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_types", + "target": "apps_extension_chromium_src_packages_types_packageregistrationresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/types.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_types", + "target": "apps_extension_chromium_src_packages_types_packagestatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/types.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_types", + "target": "apps_extension_chromium_src_packages_types_status_to_section", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/usePackageStore.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_usepackagestore", + "target": "apps_extension_chromium_src_packages_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/usePackageStore.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_usepackagestore", + "target": "apps_extension_chromium_src_packages_types_packagestatus", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/usePackageStore.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_usepackagestore_packageregistrystate", + "target": "apps_extension_chromium_src_packages_types_packagestatus", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/usePackageStore.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_usepackagestore", + "target": "apps_extension_chromium_src_packages_types_ingresschannel", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/usePackageStore.ts", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_usepackagestore_packageregistrystate", + "target": "apps_extension_chromium_src_packages_types_ingresschannel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/usePackageStore.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_usepackagestore", + "target": "apps_extension_chromium_src_packages_types_beappackage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/usePackageStore.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_usepackagestore_packageregistrystate", + "target": "apps_extension_chromium_src_packages_types_beappackage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/usePackageStore.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_usepackagestore", + "target": "apps_extension_chromium_src_packages_types_ingressevent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/usePackageStore.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_usepackagestore_packageregistrystate", + "target": "apps_extension_chromium_src_packages_types_ingressevent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/usePackageStore.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_usepackagestore", + "target": "apps_extension_chromium_src_packages_types_autoregisterpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/usePackageStore.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_usepackagestore", + "target": "apps_extension_chromium_src_packages_types_autoregistercheckresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/usePackageStore.ts", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_usepackagestore_packageregistrystate", + "target": "apps_extension_chromium_src_packages_types_autoregistercheckresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/usePackageStore.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_usepackagestore", + "target": "apps_extension_chromium_src_packages_types_packageregistrationrequest", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/usePackageStore.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_usepackagestore_packageregistrystate", + "target": "apps_extension_chromium_src_packages_types_packageregistrationrequest", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/usePackageStore.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_usepackagestore", + "target": "apps_extension_chromium_src_packages_types_packageregistrationresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/usePackageStore.ts", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_usepackagestore_packageregistrystate", + "target": "apps_extension_chromium_src_packages_types_packageregistrationresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/usePackageStore.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_usepackagestore", + "target": "apps_extension_chromium_src_packages_usepackagestore_generateeventid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/usePackageStore.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_usepackagestore", + "target": "apps_extension_chromium_src_packages_usepackagestore_packageregistrystate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/usePackageStore.ts", + "source_location": "L176", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_usepackagestore", + "target": "apps_extension_chromium_src_packages_usepackagestore_section_statuses", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/usePackageStore.ts", + "source_location": "L599", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_usepackagestore", + "target": "apps_extension_chromium_src_packages_usepackagestore_usearchivepackages", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/usePackageStore.ts", + "source_location": "L587", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_usepackagestore", + "target": "apps_extension_chromium_src_packages_usepackagestore_usedraftpackages", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/usePackageStore.ts", + "source_location": "L581", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_usepackagestore", + "target": "apps_extension_chromium_src_packages_usepackagestore_useinboxpackages", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/usePackageStore.ts", + "source_location": "L593", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_usepackagestore", + "target": "apps_extension_chromium_src_packages_usepackagestore_useoutboxpackages", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/usePackageStore.ts", + "source_location": "L617", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_usepackagestore", + "target": "apps_extension_chromium_src_packages_usepackagestore_usepackagecounts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/usePackageStore.ts", + "source_location": "L188", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_usepackagestore", + "target": "apps_extension_chromium_src_packages_usepackagestore_usepackagestore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/usePackageStore.ts", + "source_location": "L611", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_usepackagestore", + "target": "apps_extension_chromium_src_packages_usepackagestore_usependingconsent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/usePackageStore.ts", + "source_location": "L605", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_usepackagestore", + "target": "apps_extension_chromium_src_packages_usepackagestore_userejectedpackages", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/usePackageStore.ts", + "source_location": "L600", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_usepackagestore_usearchivepackages", + "target": "apps_extension_chromium_src_packages_usepackagestore_usepackagestore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/usePackageStore.ts", + "source_location": "L588", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_usepackagestore_usedraftpackages", + "target": "apps_extension_chromium_src_packages_usepackagestore_usepackagestore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/usePackageStore.ts", + "source_location": "L582", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_usepackagestore_useinboxpackages", + "target": "apps_extension_chromium_src_packages_usepackagestore_usepackagestore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/usePackageStore.ts", + "source_location": "L594", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_usepackagestore_useoutboxpackages", + "target": "apps_extension_chromium_src_packages_usepackagestore_usepackagestore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/usePackageStore.ts", + "source_location": "L618", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_usepackagestore_usepackagecounts", + "target": "apps_extension_chromium_src_packages_usepackagestore_usepackagestore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/usePackageStore.ts", + "source_location": "L612", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_usepackagestore_usependingconsent", + "target": "apps_extension_chromium_src_packages_usepackagestore_usepackagestore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/packages/usePackageStore.ts", + "source_location": "L606", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_packages_usepackagestore_userejectedpackages", + "target": "apps_extension_chromium_src_packages_usepackagestore_usepackagestore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_consentdialog", + "target": "apps_extension_chromium_src_policy_components_consentdialog_consentdialog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_consentdialog", + "target": "apps_extension_chromium_src_policy_components_consentdialog_consentdialogprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_consentdialog", + "target": "apps_extension_chromium_src_policy_components_consentdialog_consentgrant", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_consentdialog", + "target": "apps_extension_chromium_src_policy_components_consentdialog_consentscope", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L229", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_consentdialog", + "target": "apps_extension_chromium_src_policy_components_consentdialog_formatcapability", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L263", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_consentdialog", + "target": "apps_extension_chromium_src_policy_components_consentdialog_getconsentauditlog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L238", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_consentdialog", + "target": "apps_extension_chromium_src_policy_components_consentdialog_logconsentgrant", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L271", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_consentdialog", + "target": "apps_extension_chromium_src_policy_components_consentdialog_revokeconsentgrant", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_consentdialog", + "target": "apps_extension_chromium_src_policy_components_risklabel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_consentdialog", + "target": "apps_extension_chromium_src_policy_components_risklabel_risklabel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_consentdialog", + "target": "apps_extension_chromium_src_policy_engine_decisions_policydenial", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_consentdialog", + "target": "apps_extension_chromium_src_policy_engine_evaluator_getdeniedcapabilities", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_consentdialog", + "target": "apps_extension_chromium_src_policy_engine_index", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_consentdialog", + "target": "apps_extension_chromium_src_policy_schema_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_consentdialog", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_canonicalpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_consentdialog", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_consentdialog", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_bodystyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_consentdialog", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_cardstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_consentdialog", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_closebuttonstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_consentdialog", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_getthemetokens", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_consentdialog", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headermaintitlestyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_consentdialog", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headerstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_consentdialog", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headersubtitlestyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_consentdialog", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headertitlestyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_consentdialog", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_notificationstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_consentdialog", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_overlaystyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_consentdialog", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_panelstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_consentdialog", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_primarybuttonstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_consentdialog", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_secondarybuttonstyle", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/index.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_index", + "target": "apps_extension_chromium_src_policy_components_consentdialog", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_consentdialog_consentdialogprops", + "target": "apps_extension_chromium_src_policy_engine_decisions_policydenial", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_consentdialog_consentdialogprops", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_canonicalpolicy", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/index.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_index", + "target": "apps_extension_chromium_src_policy_components_consentdialog_consentscope", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_consentdialog_consentgrant", + "target": "apps_extension_chromium_src_policy_engine_decisions_policydenial", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L155", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_consentdialog_consentdialog", + "target": "apps_extension_chromium_src_policy_components_consentdialog_formatcapability", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_consentdialog_consentdialog", + "target": "apps_extension_chromium_src_policy_components_consentdialog_logconsentgrant", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_consentdialog_consentdialog", + "target": "apps_extension_chromium_src_policy_engine_evaluator_getdeniedcapabilities" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_consentdialog_consentdialog", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_bodystyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_consentdialog_consentdialog", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_cardstyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_consentdialog_consentdialog", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_getthemetokens" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_consentdialog_consentdialog", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headermaintitlestyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_consentdialog_consentdialog", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headerstyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_consentdialog_consentdialog", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headersubtitlestyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_consentdialog_consentdialog", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headertitlestyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_consentdialog_consentdialog", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_notificationstyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_consentdialog_consentdialog", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_overlaystyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_consentdialog_consentdialog", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_panelstyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L216", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_consentdialog_consentdialog", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_primarybuttonstyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/policy/components/ConsentDialog.tsx", + "source_location": "L212", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_consentdialog_consentdialog", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_secondarybuttonstyle" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/index.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_index", + "target": "apps_extension_chromium_src_policy_components_consentdialog_consentdialog", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/index.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_index", + "target": "apps_extension_chromium_src_policy_components_consentdialog_getconsentauditlog", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/index.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_index", + "target": "apps_extension_chromium_src_policy_components_consentdialog_revokeconsentgrant", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/ChannelsEditor.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_channelseditor", + "target": "apps_extension_chromium_src_policy_components_domaineditor_channelseditor_attestation_tiers", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/ChannelsEditor.tsx", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_channelseditor", + "target": "apps_extension_chromium_src_policy_components_domaineditor_channelseditor_channels", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/ChannelsEditor.tsx", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_channelseditor", + "target": "apps_extension_chromium_src_policy_components_domaineditor_channelseditor_channelseditor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/ChannelsEditor.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_channelseditor", + "target": "apps_extension_chromium_src_policy_components_domaineditor_channelseditor_channelseditorprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/ChannelsEditor.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_channelseditor", + "target": "apps_extension_chromium_src_policy_components_domaineditor_channelseditor_network_scopes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/ChannelsEditor.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_channelseditor", + "target": "apps_extension_chromium_src_policy_schema_domains_channels_attestationtier", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/ChannelsEditor.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_channelseditor", + "target": "apps_extension_chromium_src_policy_schema_domains_channels_channelconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/ChannelsEditor.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_channelseditor", + "target": "apps_extension_chromium_src_policy_schema_domains_channels_channelspolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/ChannelsEditor.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_channelseditor", + "target": "apps_extension_chromium_src_policy_schema_domains_channels_networkscope", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/ChannelsEditor.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_channelseditor", + "target": "apps_extension_chromium_src_policy_schema_index", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/index.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_index", + "target": "apps_extension_chromium_src_policy_components_domaineditor_channelseditor", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/ChannelsEditor.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_channelseditor_channelseditorprops", + "target": "apps_extension_chromium_src_policy_schema_domains_channels_channelspolicy", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/index.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_index", + "target": "apps_extension_chromium_src_policy_components_domaineditor_channelseditor_channelseditor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/DerivationsEditor.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_derivationseditor", + "target": "apps_extension_chromium_src_policy_components_domaineditor_derivationseditor_derivation_capabilities", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/DerivationsEditor.tsx", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_derivationseditor", + "target": "apps_extension_chromium_src_policy_components_domaineditor_derivationseditor_derivationseditor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/DerivationsEditor.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_derivationseditor", + "target": "apps_extension_chromium_src_policy_components_domaineditor_derivationseditor_derivationseditorprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/DerivationsEditor.tsx", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_derivationseditor", + "target": "apps_extension_chromium_src_policy_components_domaineditor_derivationseditor_risk_colors", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/DerivationsEditor.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_derivationseditor", + "target": "apps_extension_chromium_src_policy_schema_domains_derivations", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/DerivationsEditor.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_derivationseditor", + "target": "apps_extension_chromium_src_policy_schema_domains_derivations_derivationcapability", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/DerivationsEditor.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_derivationseditor", + "target": "apps_extension_chromium_src_policy_schema_domains_derivations_derivationrisk", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/DerivationsEditor.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_derivationseditor", + "target": "apps_extension_chromium_src_policy_schema_domains_derivations_derivationspolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/DerivationsEditor.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_derivationseditor", + "target": "apps_extension_chromium_src_policy_schema_domains_derivations_getderivationrisk", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/DerivationsEditor.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_derivationseditor", + "target": "apps_extension_chromium_src_policy_schema_index", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/index.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_index", + "target": "apps_extension_chromium_src_policy_components_domaineditor_derivationseditor", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/DerivationsEditor.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_derivationseditor_derivationseditorprops", + "target": "apps_extension_chromium_src_policy_schema_domains_derivations_derivationspolicy", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/DerivationsEditor.tsx", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_derivationseditor_derivationseditor", + "target": "apps_extension_chromium_src_policy_schema_domains_derivations_derivationrisk" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/DerivationsEditor.tsx", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_derivationseditor_derivationseditor", + "target": "apps_extension_chromium_src_policy_schema_domains_derivations_getderivationrisk" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/index.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_index", + "target": "apps_extension_chromium_src_policy_components_domaineditor_derivationseditor_derivationseditor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/EgressEditor.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_egresseditor", + "target": "apps_extension_chromium_src_policy_components_domaineditor_egresseditor_data_categories", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/EgressEditor.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_egresseditor", + "target": "apps_extension_chromium_src_policy_components_domaineditor_egresseditor_egress_channels", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/EgressEditor.tsx", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_egresseditor", + "target": "apps_extension_chromium_src_policy_components_domaineditor_egresseditor_egresseditor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/EgressEditor.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_egresseditor", + "target": "apps_extension_chromium_src_policy_components_domaineditor_egresseditor_egresseditorprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/EgressEditor.tsx", + "source_location": "L560", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_egresseditor", + "target": "apps_extension_chromium_src_policy_components_domaineditor_egresseditor_getriskcolor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/EgressEditor.tsx", + "source_location": "L477", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_egresseditor", + "target": "apps_extension_chromium_src_policy_components_domaineditor_egresseditor_togglerow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/EgressEditor.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_egresseditor", + "target": "apps_extension_chromium_src_policy_schema_domains_egress_datacategory", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/EgressEditor.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_egresseditor", + "target": "apps_extension_chromium_src_policy_schema_domains_egress_egresschannel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/EgressEditor.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_egresseditor", + "target": "apps_extension_chromium_src_policy_schema_domains_egress_egresspolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/EgressEditor.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_egresseditor", + "target": "apps_extension_chromium_src_policy_schema_index", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/index.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_index", + "target": "apps_extension_chromium_src_policy_components_domaineditor_egresseditor", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/EgressEditor.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_egresseditor_egresseditorprops", + "target": "apps_extension_chromium_src_policy_schema_domains_egress_egresspolicy", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/EgressEditor.tsx", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_egresseditor_egresseditor", + "target": "apps_extension_chromium_src_policy_components_domaineditor_egresseditor_getriskcolor", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/index.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_index", + "target": "apps_extension_chromium_src_policy_components_domaineditor_egresseditor_egresseditor", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/EgressEditor.tsx", + "source_location": "L509", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_egresseditor_togglerow", + "target": "apps_extension_chromium_src_policy_components_domaineditor_egresseditor_getriskcolor", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/index.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_index", + "target": "apps_extension_chromium_src_policy_components_domaineditor_ingresseditor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/IngressEditor.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_ingresseditor", + "target": "apps_extension_chromium_src_policy_components_domaineditor_ingresseditor_artefact_types", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/IngressEditor.tsx", + "source_location": "L353", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_ingresseditor", + "target": "apps_extension_chromium_src_policy_components_domaineditor_ingresseditor_getriskcolor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/IngressEditor.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_ingresseditor", + "target": "apps_extension_chromium_src_policy_components_domaineditor_ingresseditor_ingresseditor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/IngressEditor.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_ingresseditor", + "target": "apps_extension_chromium_src_policy_components_domaineditor_ingresseditor_ingresseditorprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/IngressEditor.tsx", + "source_location": "L270", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_ingresseditor", + "target": "apps_extension_chromium_src_policy_components_domaineditor_ingresseditor_togglerow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/IngressEditor.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_ingresseditor", + "target": "apps_extension_chromium_src_policy_schema_domains_ingress_artefacttype", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/IngressEditor.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_ingresseditor", + "target": "apps_extension_chromium_src_policy_schema_domains_ingress_ingresspolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/IngressEditor.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_ingresseditor", + "target": "apps_extension_chromium_src_policy_schema_domains_ingress_parsingconstraint", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/IngressEditor.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_ingresseditor", + "target": "apps_extension_chromium_src_policy_schema_index", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/IngressEditor.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_ingresseditor_ingresseditorprops", + "target": "apps_extension_chromium_src_policy_schema_domains_ingress_ingresspolicy", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/index.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_index", + "target": "apps_extension_chromium_src_policy_components_domaineditor_ingresseditor_ingresseditor", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/IngressEditor.tsx", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_ingresseditor_ingresseditor", + "target": "apps_extension_chromium_src_policy_components_domaineditor_ingresseditor_getriskcolor", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/IngressEditor.tsx", + "source_location": "L302", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_ingresseditor_togglerow", + "target": "apps_extension_chromium_src_policy_components_domaineditor_ingresseditor_getriskcolor", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/index.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_index", + "target": "apps_extension_chromium_src_policy_components_domaineditor_preverificationeditor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/PreVerificationEditor.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_preverificationeditor", + "target": "apps_extension_chromium_src_policy_components_domaineditor_preverificationeditor_formatbytes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/PreVerificationEditor.tsx", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_preverificationeditor", + "target": "apps_extension_chromium_src_policy_components_domaineditor_preverificationeditor_preverificationeditor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/PreVerificationEditor.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_preverificationeditor", + "target": "apps_extension_chromium_src_policy_components_domaineditor_preverificationeditor_preverificationeditorprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/PreVerificationEditor.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_preverificationeditor", + "target": "apps_extension_chromium_src_policy_components_domaineditor_preverificationeditor_quarantine_behaviors", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/PreVerificationEditor.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_preverificationeditor", + "target": "apps_extension_chromium_src_policy_components_domaineditor_preverificationeditor_rate_limit_actions", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/PreVerificationEditor.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_preverificationeditor", + "target": "apps_extension_chromium_src_policy_schema_domains_pre_verification_preverificationpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/PreVerificationEditor.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_preverificationeditor", + "target": "apps_extension_chromium_src_policy_schema_domains_pre_verification_quarantinebehavior", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/PreVerificationEditor.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_preverificationeditor", + "target": "apps_extension_chromium_src_policy_schema_domains_pre_verification_ratelimitaction", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/PreVerificationEditor.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_preverificationeditor", + "target": "apps_extension_chromium_src_policy_schema_index", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/PreVerificationEditor.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_preverificationeditor_preverificationeditorprops", + "target": "apps_extension_chromium_src_policy_schema_domains_pre_verification_preverificationpolicy", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/PreVerificationEditor.tsx", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_preverificationeditor_preverificationeditor", + "target": "apps_extension_chromium_src_policy_components_domaineditor_preverificationeditor_formatbytes", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/DomainEditor/index.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_domaineditor_index", + "target": "apps_extension_chromium_src_policy_components_domaineditor_preverificationeditor_preverificationeditor", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/index.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_index", + "target": "apps_extension_chromium_src_policy_components_domaineditor_index", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/EffectivePreview.tsx", + "source_location": "L297", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_effectivepreview", + "target": "apps_extension_chromium_src_policy_components_effectivepreview_capabilityrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/EffectivePreview.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_effectivepreview", + "target": "apps_extension_chromium_src_policy_components_effectivepreview_effectivepreview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/EffectivePreview.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_effectivepreview", + "target": "apps_extension_chromium_src_policy_components_effectivepreview_effectivepreviewprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/EffectivePreview.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_effectivepreview", + "target": "apps_extension_chromium_src_policy_components_effectivepreview_policywithsessionrestrictions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/EffectivePreview.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_effectivepreview", + "target": "apps_extension_chromium_src_policy_components_risklabel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/EffectivePreview.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_effectivepreview", + "target": "apps_extension_chromium_src_policy_components_risklabel_risklabel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/EffectivePreview.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_effectivepreview", + "target": "apps_extension_chromium_src_policy_engine_evaluator_computeeffectivepolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/EffectivePreview.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_effectivepreview", + "target": "apps_extension_chromium_src_policy_engine_index", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/EffectivePreview.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_effectivepreview", + "target": "apps_extension_chromium_src_policy_schema_domains_session_restrictions", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/EffectivePreview.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_effectivepreview", + "target": "apps_extension_chromium_src_policy_schema_domains_session_restrictions_automationsessionrestrictions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/EffectivePreview.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_effectivepreview", + "target": "apps_extension_chromium_src_policy_schema_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/EffectivePreview.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_effectivepreview", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_canonicalpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/EffectivePreview.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_effectivepreview", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/EffectivePreview.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_effectivepreview", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_getthemetokens", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/index.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_index", + "target": "apps_extension_chromium_src_policy_components_effectivepreview", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox", + "target": "apps_extension_chromium_src_policy_components_effectivepreview", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/EffectivePreview.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_effectivepreview_effectivepreviewprops", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_canonicalpolicy", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/policy/components/EffectivePreview.tsx", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_effectivepreview_effectivepreview", + "target": "apps_extension_chromium_src_policy_engine_evaluator_computeeffectivepolicy" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/policy/components/EffectivePreview.tsx", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_effectivepreview_effectivepreview", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_getthemetokens" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/index.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_index", + "target": "apps_extension_chromium_src_policy_components_effectivepreview_effectivepreview", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox", + "target": "apps_extension_chromium_src_policy_components_effectivepreview_effectivepreview", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/EffectivePreview.tsx", + "source_location": "L310", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_effectivepreview_capabilityrow", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_getthemetokens", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/index.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_index", + "target": "apps_extension_chromium_src_policy_components_localpolicyeditor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/LocalPolicyEditor.tsx", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_localpolicyeditor", + "target": "apps_extension_chromium_src_policy_components_localpolicyeditor_localpolicyeditor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/LocalPolicyEditor.tsx", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_localpolicyeditor", + "target": "apps_extension_chromium_src_policy_components_localpolicyeditor_localpolicyeditorprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/LocalPolicyEditor.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_localpolicyeditor", + "target": "apps_extension_chromium_src_policy_components_localpolicyeditor_policywithsessionrestrictions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/LocalPolicyEditor.tsx", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_localpolicyeditor", + "target": "apps_extension_chromium_src_policy_components_localpolicyeditor_section", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/LocalPolicyEditor.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_localpolicyeditor", + "target": "apps_extension_chromium_src_policy_components_risklabel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/LocalPolicyEditor.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_localpolicyeditor", + "target": "apps_extension_chromium_src_policy_components_risklabel_risklabel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/LocalPolicyEditor.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_localpolicyeditor", + "target": "apps_extension_chromium_src_policy_schema_domains_execution_connectortype", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/LocalPolicyEditor.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_localpolicyeditor", + "target": "apps_extension_chromium_src_policy_schema_domains_session_restrictions", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/LocalPolicyEditor.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_localpolicyeditor", + "target": "apps_extension_chromium_src_policy_schema_domains_session_restrictions_automationsessionrestrictions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/LocalPolicyEditor.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_localpolicyeditor", + "target": "apps_extension_chromium_src_policy_schema_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/LocalPolicyEditor.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_localpolicyeditor", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_calculaterisktier", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/LocalPolicyEditor.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_localpolicyeditor", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_canonicalpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/LocalPolicyEditor.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_localpolicyeditor", + "target": "apps_extension_chromium_src_policy_templates_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/LocalPolicyEditor.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_localpolicyeditor", + "target": "apps_extension_chromium_src_policy_templates_index_templatename", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/LocalPolicyEditor.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_localpolicyeditor", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/LocalPolicyEditor.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_localpolicyeditor", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_getthemetokens", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox", + "target": "apps_extension_chromium_src_policy_components_localpolicyeditor", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/LocalPolicyEditor.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_localpolicyeditor_localpolicyeditorprops", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_canonicalpolicy", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/LocalPolicyEditor.tsx", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_localpolicyeditor_localpolicyeditorprops", + "target": "apps_extension_chromium_src_policy_templates_index_templatename", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/index.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_index", + "target": "apps_extension_chromium_src_policy_components_localpolicyeditor_localpolicyeditor", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/policy/components/LocalPolicyEditor.tsx", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_localpolicyeditor_localpolicyeditor", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_calculaterisktier" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/policy/components/LocalPolicyEditor.tsx", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_localpolicyeditor_localpolicyeditor", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_getthemetokens" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox", + "target": "apps_extension_chromium_src_policy_components_localpolicyeditor_localpolicyeditor", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_index", + "target": "apps_extension_chromium_src_policy_components_packagebuilderpolicy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PackageBuilderPolicy.tsx", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_packagebuilderpolicy", + "target": "apps_extension_chromium_src_policy_components_packagebuilderpolicy_packagebuilderpolicy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PackageBuilderPolicy.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_packagebuilderpolicy", + "target": "apps_extension_chromium_src_policy_components_packagebuilderpolicy_packagebuilderpolicyprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PackageBuilderPolicy.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_packagebuilderpolicy", + "target": "apps_extension_chromium_src_policy_components_packagebuilderpolicy_permission_presets", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PackageBuilderPolicy.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_packagebuilderpolicy", + "target": "apps_extension_chromium_src_policy_components_risklabel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PackageBuilderPolicy.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_packagebuilderpolicy", + "target": "apps_extension_chromium_src_policy_components_risklabel_risklabel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PackageBuilderPolicy.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_packagebuilderpolicy", + "target": "apps_extension_chromium_src_policy_schema_domains_egress_datacategory", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PackageBuilderPolicy.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_packagebuilderpolicy", + "target": "apps_extension_chromium_src_policy_schema_domains_egress_egresschannel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PackageBuilderPolicy.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_packagebuilderpolicy", + "target": "apps_extension_chromium_src_policy_schema_domains_ingress_artefacttype", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PackageBuilderPolicy.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_packagebuilderpolicy", + "target": "apps_extension_chromium_src_policy_schema_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PackageBuilderPolicy.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_packagebuilderpolicy", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_calculaterisktier", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PackageBuilderPolicy.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_packagebuilderpolicy", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_canonicalpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PackageBuilderPolicy.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_packagebuilderpolicy", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_createdefaultpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_policy_components_packagebuilderpolicy", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PackageBuilderPolicy.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_packagebuilderpolicy_packagebuilderpolicyprops", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_canonicalpolicy", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/policy/components/PackageBuilderPolicy.tsx", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_packagebuilderpolicy_packagebuilderpolicy", + "target": "apps_extension_chromium_src_policy_components_packagebuilderpolicy_permission_presets" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_index", + "target": "apps_extension_chromium_src_policy_components_packagebuilderpolicy_packagebuilderpolicy", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/policy/components/PackageBuilderPolicy.tsx", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_packagebuilderpolicy_packagebuilderpolicy", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_calculaterisktier" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/policy/components/PackageBuilderPolicy.tsx", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_packagebuilderpolicy_packagebuilderpolicy", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_createdefaultpolicy" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_policy_components_packagebuilderpolicy_packagebuilderpolicy", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_index", + "target": "apps_extension_chromium_src_policy_components_policydiffview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyDiffView.tsx", + "source_location": "L255", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policydiffview", + "target": "apps_extension_chromium_src_policy_components_policydiffview_computediffs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyDiffView.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policydiffview", + "target": "apps_extension_chromium_src_policy_components_policydiffview_diffitem", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyDiffView.tsx", + "source_location": "L296", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policydiffview", + "target": "apps_extension_chromium_src_policy_components_policydiffview_getchangetype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyDiffView.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policydiffview", + "target": "apps_extension_chromium_src_policy_components_policydiffview_policydiffview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyDiffView.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policydiffview", + "target": "apps_extension_chromium_src_policy_components_policydiffview_policydiffviewprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyDiffView.tsx", + "source_location": "L194", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policydiffview", + "target": "apps_extension_chromium_src_policy_components_policydiffview_valuedisplay", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyDiffView.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policydiffview", + "target": "apps_extension_chromium_src_policy_components_risklabel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyDiffView.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policydiffview", + "target": "apps_extension_chromium_src_policy_components_risklabel_risklabel", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyDiffView.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policydiffview", + "target": "apps_extension_chromium_src_policy_schema_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyDiffView.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policydiffview", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_canonicalpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyDiffView.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policydiffview", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyDiffView.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policydiffview", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_getthemetokens", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox", + "target": "apps_extension_chromium_src_policy_components_policydiffview", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyDiffView.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policydiffview_policydiffviewprops", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_canonicalpolicy", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_index", + "target": "apps_extension_chromium_src_policy_components_policydiffview_policydiffview", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyDiffView.tsx", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policydiffview_policydiffview", + "target": "apps_extension_chromium_src_policy_components_policydiffview_computediffs", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/policy/components/PolicyDiffView.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policydiffview_policydiffview", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_getthemetokens" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox", + "target": "apps_extension_chromium_src_policy_components_policydiffview_policydiffview", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyDiffView.tsx", + "source_location": "L195", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policydiffview_valuedisplay", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_getthemetokens", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyDiffView.tsx", + "source_location": "L260", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policydiffview_computediffs", + "target": "apps_extension_chromium_src_policy_components_policydiffview_getchangetype", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_index", + "target": "apps_extension_chromium_src_policy_components_policylightbox", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/policy-lightbox-init.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policy_lightbox_init", + "target": "apps_extension_chromium_src_policy_components_policylightbox", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox", + "target": "apps_extension_chromium_src_policy_components_policylightbox_errorboundary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox", + "target": "apps_extension_chromium_src_policy_components_policylightbox_policylightbox", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox", + "target": "apps_extension_chromium_src_policy_components_policylightbox_policylightboxprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox", + "target": "apps_extension_chromium_src_policy_components_policylightbox_tab", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox", + "target": "apps_extension_chromium_src_policy_engine_evaluator_computeeffectivepolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox", + "target": "apps_extension_chromium_src_policy_engine_index", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox", + "target": "apps_extension_chromium_src_policy_schema_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_canonicalpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_createdefaultpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox", + "target": "apps_extension_chromium_src_policy_templates_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox", + "target": "apps_extension_chromium_src_policy_templates_index_createpolicyfromtemplate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox", + "target": "apps_extension_chromium_src_policy_templates_index_templatename", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_bodystyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_closebuttonstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_getthemetokens", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headermaintitlestyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headerstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headersubtitlestyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headertitlestyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_notificationstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_overlaystyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_panelstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_primarybuttonstyle", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox_errorboundary", + "target": "apps_extension_chromium_src_policy_components_policylightbox_errorboundary_componentdidcatch", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox_errorboundary", + "target": "apps_extension_chromium_src_policy_components_policylightbox_errorboundary_constructor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox_errorboundary", + "target": "apps_extension_chromium_src_policy_components_policylightbox_errorboundary_getderivedstatefromerror", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox_errorboundary", + "target": "apps_extension_chromium_src_policy_components_policylightbox_errorboundary_render", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_index", + "target": "apps_extension_chromium_src_policy_components_policylightbox_policylightbox", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/policy-lightbox-init.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policy_lightbox_init", + "target": "apps_extension_chromium_src_policy_components_policylightbox_policylightbox", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox_policylightbox", + "target": "apps_extension_chromium_src_policy_templates_index_createpolicyfromtemplate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L271", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox_policylightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_bodystyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L220", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox_policylightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_closebuttonstyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L186", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox_policylightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_getthemetokens" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L207", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox_policylightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headermaintitlestyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L203", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox_policylightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headerstyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L208", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox_policylightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headersubtitlestyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L204", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox_policylightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headertitlestyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L276", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox_policylightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_notificationstyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L196", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox_policylightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_overlaystyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox_policylightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_panelstyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx", + "source_location": "L214", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policylightbox_policylightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_primarybuttonstyle" + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/index.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_index", + "target": "apps_extension_chromium_src_policy_components_risklabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/RiskLabel.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_risklabel", + "target": "apps_extension_chromium_src_policy_components_risklabel_risklabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/RiskLabel.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_risklabel", + "target": "apps_extension_chromium_src_policy_components_risklabel_risklabelprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/RiskLabel.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_risklabel", + "target": "apps_extension_chromium_src_policy_schema_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/RiskLabel.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_risklabel", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_risktier", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/RiskLabel.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_risklabel_risklabelprops", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_risktier", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/index.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_index", + "target": "apps_extension_chromium_src_policy_components_risklabel_risklabel", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/index.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_index", + "target": "apps_extension_chromium_src_policy_components_index", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/policy-lightbox-init.tsx", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policy_lightbox_init", + "target": "apps_extension_chromium_src_policy_components_policy_lightbox_init_openpolicylightboxincontent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/policy-lightbox-init.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policy_lightbox_init", + "target": "apps_extension_chromium_src_policy_components_policy_lightbox_init_policylightboxinit", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/components/policy-lightbox-init.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_components_policy_lightbox_init", + "target": "apps_extension_chromium_src_policy_components_policy_lightbox_init_policylightboxinitprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/__tests__/evaluator.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_tests_evaluator_test", + "target": "apps_extension_chromium_src_policy_engine_evaluator", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/__tests__/evaluator.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_tests_evaluator_test", + "target": "apps_extension_chromium_src_policy_engine_evaluator_computeeffectivepolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/__tests__/evaluator.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_tests_evaluator_test", + "target": "apps_extension_chromium_src_policy_engine_evaluator_getdeniedcapabilities", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/__tests__/evaluator.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_tests_evaluator_test", + "target": "apps_extension_chromium_src_policy_engine_evaluator_policyevaluationinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/__tests__/evaluator.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_tests_evaluator_test", + "target": "apps_extension_chromium_src_policy_engine_evaluator_verifynoescalation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/__tests__/evaluator.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_tests_evaluator_test", + "target": "apps_extension_chromium_src_policy_schema_domains_ingress", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/__tests__/evaluator.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_tests_evaluator_test", + "target": "apps_extension_chromium_src_policy_schema_domains_ingress_default_ingress_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/__tests__/evaluator.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_tests_evaluator_test", + "target": "apps_extension_chromium_src_policy_schema_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/__tests__/evaluator.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_tests_evaluator_test", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_canonicalpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/__tests__/evaluator.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_tests_evaluator_test", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_createdefaultpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/__tests__/intersection.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_tests_intersection_test", + "target": "apps_extension_chromium_src_policy_engine_intersection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/__tests__/intersection.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_tests_intersection_test", + "target": "apps_extension_chromium_src_policy_engine_intersection_intersectarrays", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/__tests__/intersection.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_tests_intersection_test", + "target": "apps_extension_chromium_src_policy_engine_intersection_intersectegress", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/__tests__/intersection.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_tests_intersection_test", + "target": "apps_extension_chromium_src_policy_engine_intersection_intersectingress", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/__tests__/intersection.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_tests_intersection_test", + "target": "apps_extension_chromium_src_policy_engine_intersection_unionarrays", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/__tests__/intersection.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_tests_intersection_test", + "target": "apps_extension_chromium_src_policy_schema_domains_egress_default_egress_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/__tests__/intersection.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_tests_intersection_test", + "target": "apps_extension_chromium_src_policy_schema_domains_egress_egresspolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/__tests__/intersection.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_tests_intersection_test", + "target": "apps_extension_chromium_src_policy_schema_domains_ingress_default_ingress_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/__tests__/intersection.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_tests_intersection_test", + "target": "apps_extension_chromium_src_policy_schema_domains_ingress_ingresspolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/__tests__/intersection.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_tests_intersection_test", + "target": "apps_extension_chromium_src_policy_schema_index", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/decisions.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_decisions", + "target": "apps_extension_chromium_src_policy_engine_decisions_approvaltype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/decisions.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_decisions", + "target": "apps_extension_chromium_src_policy_engine_decisions_createdecision", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/decisions.ts", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_decisions", + "target": "apps_extension_chromium_src_policy_engine_decisions_createdenial", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/decisions.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_decisions", + "target": "apps_extension_chromium_src_policy_engine_decisions_policydecision", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/decisions.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_decisions", + "target": "apps_extension_chromium_src_policy_engine_decisions_policydenial", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/decisions.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_decisions", + "target": "apps_extension_chromium_src_policy_engine_decisions_policydiff", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/decisions.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_decisions", + "target": "apps_extension_chromium_src_policy_schema_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/decisions.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_decisions", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_policylayer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/decisions.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_decisions", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_risktier", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/evaluator.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_evaluator", + "target": "apps_extension_chromium_src_policy_engine_decisions", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/index.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_index", + "target": "apps_extension_chromium_src_policy_engine_decisions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/intersection.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_intersection", + "target": "apps_extension_chromium_src_policy_engine_decisions", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/index.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_index", + "target": "apps_extension_chromium_src_policy_engine_decisions_approvaltype", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/decisions.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_decisions_policydecision", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_policylayer", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/decisions.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_decisions_policydecision", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_risktier", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/decisions.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_decisions_policydenial", + "target": "apps_extension_chromium_src_policy_engine_decisions_policydecision", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/evaluator.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_evaluator", + "target": "apps_extension_chromium_src_policy_engine_decisions_policydecision", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/evaluator.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_evaluator_effectivepolicyresult", + "target": "apps_extension_chromium_src_policy_engine_decisions_policydecision", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/index.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_index", + "target": "apps_extension_chromium_src_policy_engine_decisions_policydecision", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/intersection.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_intersection", + "target": "apps_extension_chromium_src_policy_engine_decisions_policydecision", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/decisions.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_decisions_policydenial", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_policylayer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/evaluator.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_evaluator", + "target": "apps_extension_chromium_src_policy_engine_decisions_policydenial", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/evaluator.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_evaluator_effectivepolicyresult", + "target": "apps_extension_chromium_src_policy_engine_decisions_policydenial", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/index.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_index", + "target": "apps_extension_chromium_src_policy_engine_decisions_policydenial", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/intersection.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_intersection", + "target": "apps_extension_chromium_src_policy_engine_decisions_policydenial", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/index.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_index", + "target": "apps_extension_chromium_src_policy_engine_decisions_policydiff", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/index.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_index", + "target": "apps_extension_chromium_src_policy_engine_decisions_createdecision", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/intersection.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_intersection", + "target": "apps_extension_chromium_src_policy_engine_decisions_createdecision", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/policy/engine/intersection.ts", + "source_location": "L215", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_intersection_intersectegress", + "target": "apps_extension_chromium_src_policy_engine_decisions_createdecision" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/policy/engine/intersection.ts", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_intersection_intersectingress", + "target": "apps_extension_chromium_src_policy_engine_decisions_createdecision" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/index.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_index", + "target": "apps_extension_chromium_src_policy_engine_decisions_createdenial", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/intersection.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_intersection", + "target": "apps_extension_chromium_src_policy_engine_decisions_createdenial", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/policy/engine/intersection.ts", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_intersection_intersectegress", + "target": "apps_extension_chromium_src_policy_engine_decisions_createdenial" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/policy/engine/intersection.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_intersection_intersectingress", + "target": "apps_extension_chromium_src_policy_engine_decisions_createdenial" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/evaluator.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_evaluator", + "target": "apps_extension_chromium_src_policy_engine_evaluator_computeeffectivepolicy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/evaluator.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_evaluator", + "target": "apps_extension_chromium_src_policy_engine_evaluator_effectivepolicyresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/evaluator.ts", + "source_location": "L205", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_evaluator", + "target": "apps_extension_chromium_src_policy_engine_evaluator_getdeniedcapabilities", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/evaluator.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_evaluator", + "target": "apps_extension_chromium_src_policy_engine_evaluator_iscapabilityallowed", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/evaluator.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_evaluator", + "target": "apps_extension_chromium_src_policy_engine_evaluator_policyevaluationinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/evaluator.ts", + "source_location": "L302", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_evaluator", + "target": "apps_extension_chromium_src_policy_engine_evaluator_verifynoescalation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/evaluator.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_evaluator", + "target": "apps_extension_chromium_src_policy_engine_intersection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/evaluator.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_evaluator", + "target": "apps_extension_chromium_src_policy_engine_intersection_intersectegress", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/evaluator.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_evaluator", + "target": "apps_extension_chromium_src_policy_engine_intersection_intersectingress", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/evaluator.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_evaluator", + "target": "apps_extension_chromium_src_policy_schema_domains_egress_default_egress_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/evaluator.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_evaluator", + "target": "apps_extension_chromium_src_policy_schema_domains_ingress_default_ingress_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/evaluator.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_evaluator", + "target": "apps_extension_chromium_src_policy_schema_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/evaluator.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_evaluator", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_calculaterisktier", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/evaluator.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_evaluator", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_canonicalpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/evaluator.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_evaluator", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_policy_version", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/evaluator.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_evaluator", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_policylayer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/evaluator.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_evaluator", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_risktier", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/index.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_index", + "target": "apps_extension_chromium_src_policy_engine_evaluator", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/evaluator.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_evaluator_policyevaluationinput", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_canonicalpolicy", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/index.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_index", + "target": "apps_extension_chromium_src_policy_engine_evaluator_policyevaluationinput", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/evaluator.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_evaluator_effectivepolicyresult", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_canonicalpolicy", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/evaluator.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_evaluator_effectivepolicyresult", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_policylayer", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/evaluator.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_evaluator_effectivepolicyresult", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_risktier", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/index.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_index", + "target": "apps_extension_chromium_src_policy_engine_evaluator_effectivepolicyresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/policy/engine/evaluator.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_evaluator_computeeffectivepolicy", + "target": "apps_extension_chromium_src_policy_engine_intersection_intersectegress" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/policy/engine/evaluator.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_evaluator_computeeffectivepolicy", + "target": "apps_extension_chromium_src_policy_engine_intersection_intersectingress" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/policy/engine/evaluator.ts", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_evaluator_computeeffectivepolicy", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_calculaterisktier" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/index.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_index", + "target": "apps_extension_chromium_src_policy_engine_evaluator_computeeffectivepolicy", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/index.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_index", + "target": "apps_extension_chromium_src_policy_engine_evaluator_iscapabilityallowed", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/index.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_index", + "target": "apps_extension_chromium_src_policy_engine_evaluator_getdeniedcapabilities", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/index.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_index", + "target": "apps_extension_chromium_src_policy_engine_evaluator_verifynoescalation", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/index.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_index", + "target": "apps_extension_chromium_src_policy_engine_intersection", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/index.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_index", + "target": "apps_extension_chromium_src_policy_engine_intersection_intersectarrays", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/index.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_index", + "target": "apps_extension_chromium_src_policy_engine_intersection_intersectegress", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/index.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_index", + "target": "apps_extension_chromium_src_policy_engine_intersection_intersectingress", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/index.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_index", + "target": "apps_extension_chromium_src_policy_engine_intersection_unionarrays", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/index.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_index", + "target": "apps_extension_chromium_src_policy_engine_index", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/intersection.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_intersection", + "target": "apps_extension_chromium_src_policy_engine_intersection_intersectarrays", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/intersection.ts", + "source_location": "L153", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_intersection", + "target": "apps_extension_chromium_src_policy_engine_intersection_intersectegress", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/intersection.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_intersection", + "target": "apps_extension_chromium_src_policy_engine_intersection_intersectingress", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/intersection.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_intersection", + "target": "apps_extension_chromium_src_policy_engine_intersection_unionarrays", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/intersection.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_intersection", + "target": "apps_extension_chromium_src_policy_schema_domains_egress_default_egress_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/intersection.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_intersection", + "target": "apps_extension_chromium_src_policy_schema_domains_egress_egresspolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/intersection.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_intersection", + "target": "apps_extension_chromium_src_policy_schema_domains_ingress_default_ingress_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/intersection.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_intersection", + "target": "apps_extension_chromium_src_policy_schema_domains_ingress_ingresspolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/intersection.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_intersection", + "target": "apps_extension_chromium_src_policy_schema_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/intersection.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_intersection", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_canonicalpolicy", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/intersection.ts", + "source_location": "L185", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_intersection_intersectegress", + "target": "apps_extension_chromium_src_policy_engine_intersection_intersectarrays", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/intersection.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_intersection_intersectingress", + "target": "apps_extension_chromium_src_policy_engine_intersection_intersectarrays", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/intersection.ts", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_intersection_intersectegress", + "target": "apps_extension_chromium_src_policy_engine_intersection_unionarrays", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/engine/intersection.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_engine_intersection_intersectingress", + "target": "apps_extension_chromium_src_policy_engine_intersection_unionarrays", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/index.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_index", + "target": "apps_extension_chromium_src_policy_schema_index", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/index.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_index", + "target": "apps_extension_chromium_src_policy_store_index", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/index.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_index", + "target": "apps_extension_chromium_src_policy_templates_index", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/automation-risk.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_automation_risk", + "target": "apps_extension_chromium_src_policy_schema_domains_automation_risk_automationriskclass", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/automation-risk.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_automation_risk", + "target": "apps_extension_chromium_src_policy_schema_domains_automation_risk_automationriskclassschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/automation-risk.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_automation_risk", + "target": "apps_extension_chromium_src_policy_schema_domains_automation_risk_canrememberconsent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/automation-risk.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_automation_risk", + "target": "apps_extension_chromium_src_policy_schema_domains_automation_risk_capability_risk_map", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/automation-risk.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_automation_risk", + "target": "apps_extension_chromium_src_policy_schema_domains_automation_risk_executionphase", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/automation-risk.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_automation_risk", + "target": "apps_extension_chromium_src_policy_schema_domains_automation_risk_executionphaseschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/automation-risk.ts", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_automation_risk", + "target": "apps_extension_chromium_src_policy_schema_domains_automation_risk_getcapabilityriskclass", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/automation-risk.ts", + "source_location": "L175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_automation_risk", + "target": "apps_extension_chromium_src_policy_schema_domains_automation_risk_getpresetlimits", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/automation-risk.ts", + "source_location": "L182", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_automation_risk", + "target": "apps_extension_chromium_src_policy_schema_domains_automation_risk_isautomationallowedforpreset", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/automation-risk.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_automation_risk", + "target": "apps_extension_chromium_src_policy_schema_domains_automation_risk_phase_constraints", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/automation-risk.ts", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_automation_risk", + "target": "apps_extension_chromium_src_policy_schema_domains_automation_risk_preset_limits", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/automation-risk.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_automation_risk", + "target": "apps_extension_chromium_src_policy_schema_domains_automation_risk_presetautomationlimits", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/automation-risk.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_automation_risk", + "target": "apps_extension_chromium_src_policy_schema_domains_automation_risk_requiresconsent", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/index.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_index", + "target": "apps_extension_chromium_src_policy_schema_domains_automation_risk", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/automation-risk.ts", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_automation_risk_canrememberconsent", + "target": "apps_extension_chromium_src_policy_schema_domains_automation_risk_getcapabilityriskclass", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/automation-risk.ts", + "source_location": "L187", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_automation_risk_isautomationallowedforpreset", + "target": "apps_extension_chromium_src_policy_schema_domains_automation_risk_getcapabilityriskclass", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/automation-risk.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_automation_risk_requiresconsent", + "target": "apps_extension_chromium_src_policy_schema_domains_automation_risk_getcapabilityriskclass", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/automation-risk.ts", + "source_location": "L186", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_automation_risk_isautomationallowedforpreset", + "target": "apps_extension_chromium_src_policy_schema_domains_automation_risk_getpresetlimits", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/channels.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_channels", + "target": "apps_extension_chromium_src_policy_schema_domains_channels_attestationtier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/channels.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_channels", + "target": "apps_extension_chromium_src_policy_schema_domains_channels_attestationtierschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/channels.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_channels", + "target": "apps_extension_chromium_src_policy_schema_domains_channels_channelconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/channels.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_channels", + "target": "apps_extension_chromium_src_policy_schema_domains_channels_channelconfigschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/channels.ts", + "source_location": "L159", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_channels", + "target": "apps_extension_chromium_src_policy_schema_domains_channels_channelspolicy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/channels.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_channels", + "target": "apps_extension_chromium_src_policy_schema_domains_channels_channelspolicyschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/channels.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_channels", + "target": "apps_extension_chromium_src_policy_schema_domains_channels_default_channels_policy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/channels.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_channels", + "target": "apps_extension_chromium_src_policy_schema_domains_channels_networkscope", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/channels.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_channels", + "target": "apps_extension_chromium_src_policy_schema_domains_channels_networkscopeschema", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/index.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_index", + "target": "apps_extension_chromium_src_policy_schema_domains_channels", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_policy_schema", + "target": "apps_extension_chromium_src_policy_schema_domains_channels", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_channels", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_channels_attestationtierschema", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_channels_attestationtier", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_channels_networkscopeschema", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_channels_networkscope", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_channels_channelconfigschema", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_channels_channelconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_policy_schema", + "target": "apps_extension_chromium_src_policy_schema_domains_channels_channelspolicyschema", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_channels_channelspolicyschema", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_channels_channelspolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_policy_schema", + "target": "apps_extension_chromium_src_policy_schema_domains_channels_default_channels_policy", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_channels_default_channels_policy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/derivations.ts", + "source_location": "L230", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_derivations", + "target": "apps_extension_chromium_src_policy_schema_domains_derivations_default_derivations_policy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/derivations.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_derivations", + "target": "apps_extension_chromium_src_policy_schema_domains_derivations_derivationcapability", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/derivations.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_derivations", + "target": "apps_extension_chromium_src_policy_schema_domains_derivations_derivationcapabilityschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/derivations.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_derivations", + "target": "apps_extension_chromium_src_policy_schema_domains_derivations_derivationrisk", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/derivations.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_derivations", + "target": "apps_extension_chromium_src_policy_schema_domains_derivations_derivationriskschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/derivations.ts", + "source_location": "L225", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_derivations", + "target": "apps_extension_chromium_src_policy_schema_domains_derivations_derivationspolicy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/derivations.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_derivations", + "target": "apps_extension_chromium_src_policy_schema_domains_derivations_derivationspolicyschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/derivations.ts", + "source_location": "L337", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_derivations", + "target": "apps_extension_chromium_src_policy_schema_domains_derivations_getderivationrisk", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/index.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_index", + "target": "apps_extension_chromium_src_policy_schema_domains_derivations", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_policy_schema", + "target": "apps_extension_chromium_src_policy_schema_domains_derivations", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_derivations", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_derivations_derivationriskschema", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_derivations_derivationrisk", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_derivations_derivationcapabilityschema", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_derivations_derivationcapability", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_policy_schema", + "target": "apps_extension_chromium_src_policy_schema_domains_derivations_derivationspolicyschema", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_derivations_derivationspolicyschema", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_derivations_derivationspolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_policy_schema", + "target": "apps_extension_chromium_src_policy_schema_domains_derivations_default_derivations_policy", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_derivations_default_derivations_policy", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_derivations_getderivationrisk", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/egress.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_egress", + "target": "apps_extension_chromium_src_policy_schema_domains_egress_datacategory", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/egress.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_egress", + "target": "apps_extension_chromium_src_policy_schema_domains_egress_datacategoryschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/egress.ts", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_egress", + "target": "apps_extension_chromium_src_policy_schema_domains_egress_default_egress_policy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/egress.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_egress", + "target": "apps_extension_chromium_src_policy_schema_domains_egress_destinationpattern", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/egress.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_egress", + "target": "apps_extension_chromium_src_policy_schema_domains_egress_destinationpatternschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/egress.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_egress", + "target": "apps_extension_chromium_src_policy_schema_domains_egress_egresschannel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/egress.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_egress", + "target": "apps_extension_chromium_src_policy_schema_domains_egress_egresschannelschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/egress.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_egress", + "target": "apps_extension_chromium_src_policy_schema_domains_egress_egresspolicy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/egress.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_egress", + "target": "apps_extension_chromium_src_policy_schema_domains_egress_egresspolicyschema", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/index.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_index", + "target": "apps_extension_chromium_src_policy_schema_domains_egress", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_policy_schema", + "target": "apps_extension_chromium_src_policy_schema_domains_egress", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_egress", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_egress_datacategoryschema", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_egress_datacategory", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_egress_egresschannelschema", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_egress_egresschannel", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_egress_destinationpatternschema", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_egress_destinationpattern", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_policy_schema", + "target": "apps_extension_chromium_src_policy_schema_domains_egress_egresspolicyschema", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_egress_egresspolicyschema", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_egress_egresspolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_policy_schema", + "target": "apps_extension_chromium_src_policy_schema_domains_egress_default_egress_policy", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_egress_default_egress_policy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/execution.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_execution", + "target": "apps_extension_chromium_src_policy_schema_domains_execution_automationcapability", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/execution.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_execution", + "target": "apps_extension_chromium_src_policy_schema_domains_execution_automationcapabilityschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/execution.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_execution", + "target": "apps_extension_chromium_src_policy_schema_domains_execution_connectortype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/execution.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_execution", + "target": "apps_extension_chromium_src_policy_schema_domains_execution_connectortypeschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/execution.ts", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_execution", + "target": "apps_extension_chromium_src_policy_schema_domains_execution_default_execution_policy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/execution.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_execution", + "target": "apps_extension_chromium_src_policy_schema_domains_execution_executionpolicy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/execution.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_execution", + "target": "apps_extension_chromium_src_policy_schema_domains_execution_executionpolicyschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/execution.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_execution", + "target": "apps_extension_chromium_src_policy_schema_domains_execution_filesystemoperation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/execution.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_execution", + "target": "apps_extension_chromium_src_policy_schema_domains_execution_filesystemoperationschema", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/index.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_index", + "target": "apps_extension_chromium_src_policy_schema_domains_execution", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_policy_schema", + "target": "apps_extension_chromium_src_policy_schema_domains_execution", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_execution", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_execution_connectortypeschema", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_execution_connectortype", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_execution_automationcapabilityschema", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_execution_automationcapability", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_execution_filesystemoperationschema", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_execution_filesystemoperation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_policy_schema", + "target": "apps_extension_chromium_src_policy_schema_domains_execution_executionpolicyschema", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_execution_executionpolicyschema", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_execution_executionpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_policy_schema", + "target": "apps_extension_chromium_src_policy_schema_domains_execution_default_execution_policy", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_execution_default_execution_policy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/handshake-overrides.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_handshake_overrides", + "target": "apps_extension_chromium_src_policy_schema_domains_handshake_overrides_createhandshakeoverride", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/handshake-overrides.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_handshake_overrides", + "target": "apps_extension_chromium_src_policy_schema_domains_handshake_overrides_handshakeautomationpermissions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/handshake-overrides.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_handshake_overrides", + "target": "apps_extension_chromium_src_policy_schema_domains_handshake_overrides_handshakeautomationpermissionsschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/handshake-overrides.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_handshake_overrides", + "target": "apps_extension_chromium_src_policy_schema_domains_handshake_overrides_handshakeegresspermissions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/handshake-overrides.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_handshake_overrides", + "target": "apps_extension_chromium_src_policy_schema_domains_handshake_overrides_handshakeegresspermissionsschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/handshake-overrides.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_handshake_overrides", + "target": "apps_extension_chromium_src_policy_schema_domains_handshake_overrides_handshakeingresspermissions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/handshake-overrides.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_handshake_overrides", + "target": "apps_extension_chromium_src_policy_schema_domains_handshake_overrides_handshakeingresspermissionsschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/handshake-overrides.ts", + "source_location": "L159", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_handshake_overrides", + "target": "apps_extension_chromium_src_policy_schema_domains_handshake_overrides_handshakeoverridescollection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/handshake-overrides.ts", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_handshake_overrides", + "target": "apps_extension_chromium_src_policy_schema_domains_handshake_overrides_handshakeoverridescollectionschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/handshake-overrides.ts", + "source_location": "L144", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_handshake_overrides", + "target": "apps_extension_chromium_src_policy_schema_domains_handshake_overrides_handshakepolicyoverride", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/handshake-overrides.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_handshake_overrides", + "target": "apps_extension_chromium_src_policy_schema_domains_handshake_overrides_handshakepolicyoverrideschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/handshake-overrides.ts", + "source_location": "L219", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_handshake_overrides", + "target": "apps_extension_chromium_src_policy_schema_domains_handshake_overrides_mergewithglobalpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/handshake-overrides.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_handshake_overrides", + "target": "apps_extension_chromium_src_policy_schema_domains_session_restrictions", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/handshake-overrides.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_handshake_overrides", + "target": "apps_extension_chromium_src_policy_schema_domains_session_restrictions_automationsessionrestrictionsschema", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/index.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_index", + "target": "apps_extension_chromium_src_policy_schema_domains_handshake_overrides", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/identity.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_identity", + "target": "apps_extension_chromium_src_policy_schema_domains_identity_default_identity_policy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/identity.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_identity", + "target": "apps_extension_chromium_src_policy_schema_domains_identity_identityattribute", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/identity.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_identity", + "target": "apps_extension_chromium_src_policy_schema_domains_identity_identityattributeschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/identity.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_identity", + "target": "apps_extension_chromium_src_policy_schema_domains_identity_identitypolicy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/identity.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_identity", + "target": "apps_extension_chromium_src_policy_schema_domains_identity_identitypolicyschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/identity.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_identity", + "target": "apps_extension_chromium_src_policy_schema_domains_identity_pseudonymitymode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/identity.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_identity", + "target": "apps_extension_chromium_src_policy_schema_domains_identity_pseudonymitymodeschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/identity.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_identity", + "target": "apps_extension_chromium_src_policy_schema_domains_identity_verificationlevel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/identity.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_identity", + "target": "apps_extension_chromium_src_policy_schema_domains_identity_verificationlevelschema", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/index.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_index", + "target": "apps_extension_chromium_src_policy_schema_domains_identity", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_policy_schema", + "target": "apps_extension_chromium_src_policy_schema_domains_identity", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_identity", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_identity_identityattributeschema", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_identity_identityattribute", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_identity_verificationlevelschema", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_identity_verificationlevel", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_identity_pseudonymitymodeschema", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_identity_pseudonymitymode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_policy_schema", + "target": "apps_extension_chromium_src_policy_schema_domains_identity_identitypolicyschema", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_identity_identitypolicyschema", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_identity_identitypolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_policy_schema", + "target": "apps_extension_chromium_src_policy_schema_domains_identity_default_identity_policy", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_identity_default_identity_policy", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/index.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_index", + "target": "apps_extension_chromium_src_policy_schema_domains_ingress", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/index.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_index", + "target": "apps_extension_chromium_src_policy_schema_domains_pre_verification", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/index.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_index", + "target": "apps_extension_chromium_src_policy_schema_domains_session_restrictions", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/index.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_index", + "target": "apps_extension_chromium_src_policy_schema_domains_vault_access", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/index.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_index", + "target": "apps_extension_chromium_src_policy_schema_domains_index", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/ingress.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_ingress", + "target": "apps_extension_chromium_src_policy_schema_domains_ingress_artefacttype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/ingress.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_ingress", + "target": "apps_extension_chromium_src_policy_schema_domains_ingress_artefacttypeschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/ingress.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_ingress", + "target": "apps_extension_chromium_src_policy_schema_domains_ingress_default_ingress_policy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/ingress.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_ingress", + "target": "apps_extension_chromium_src_policy_schema_domains_ingress_ingresspolicy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/ingress.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_ingress", + "target": "apps_extension_chromium_src_policy_schema_domains_ingress_ingresspolicyschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/ingress.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_ingress", + "target": "apps_extension_chromium_src_policy_schema_domains_ingress_parsingconstraint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/ingress.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_ingress", + "target": "apps_extension_chromium_src_policy_schema_domains_ingress_parsingconstraintschema", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_policy_schema", + "target": "apps_extension_chromium_src_policy_schema_domains_ingress", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_ingress", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L152", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_ingress_artefacttypeschema", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_ingress_artefacttype", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L152", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_ingress_parsingconstraintschema", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_ingress_parsingconstraint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_policy_schema", + "target": "apps_extension_chromium_src_policy_schema_domains_ingress_ingresspolicyschema", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L152", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_ingress_ingresspolicyschema", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_ingress_ingresspolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_policy_schema", + "target": "apps_extension_chromium_src_policy_schema_domains_ingress_default_ingress_policy", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L152", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_ingress_default_ingress_policy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/pre-verification.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_pre_verification", + "target": "apps_extension_chromium_src_policy_schema_domains_pre_verification_default_pre_verification_policy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/pre-verification.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_pre_verification", + "target": "apps_extension_chromium_src_policy_schema_domains_pre_verification_preverificationpolicy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/pre-verification.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_pre_verification", + "target": "apps_extension_chromium_src_policy_schema_domains_pre_verification_preverificationpolicyschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/pre-verification.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_pre_verification", + "target": "apps_extension_chromium_src_policy_schema_domains_pre_verification_quarantinebehavior", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/pre-verification.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_pre_verification", + "target": "apps_extension_chromium_src_policy_schema_domains_pre_verification_quarantinebehaviorschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/pre-verification.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_pre_verification", + "target": "apps_extension_chromium_src_policy_schema_domains_pre_verification_ratelimitaction", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/pre-verification.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_pre_verification", + "target": "apps_extension_chromium_src_policy_schema_domains_pre_verification_ratelimitactionschema", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_policy_schema", + "target": "apps_extension_chromium_src_policy_schema_domains_pre_verification", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_pre_verification", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_pre_verification_quarantinebehaviorschema", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_pre_verification_quarantinebehavior", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_pre_verification_ratelimitactionschema", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_pre_verification_ratelimitaction", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_policy_schema", + "target": "apps_extension_chromium_src_policy_schema_domains_pre_verification_preverificationpolicyschema", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_pre_verification_preverificationpolicyschema", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_pre_verification_preverificationpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_policy_schema", + "target": "apps_extension_chromium_src_policy_schema_domains_pre_verification_default_pre_verification_policy", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_pre_verification_default_pre_verification_policy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/session-restrictions.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_session_restrictions", + "target": "apps_extension_chromium_src_policy_schema_domains_session_restrictions_automationsessionrestrictions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/session-restrictions.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_session_restrictions", + "target": "apps_extension_chromium_src_policy_schema_domains_session_restrictions_automationsessionrestrictionsschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/session-restrictions.ts", + "source_location": "L142", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_session_restrictions", + "target": "apps_extension_chromium_src_policy_schema_domains_session_restrictions_getsessionrestrictionsformode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/session-restrictions.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_session_restrictions", + "target": "apps_extension_chromium_src_policy_schema_domains_session_restrictions_session_restriction_defaults", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/vault-access.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_vault_access", + "target": "apps_extension_chromium_src_policy_schema_domains_vault_access_compartmentaccess", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/vault-access.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_vault_access", + "target": "apps_extension_chromium_src_policy_schema_domains_vault_access_compartmentaccessschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/vault-access.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_vault_access", + "target": "apps_extension_chromium_src_policy_schema_domains_vault_access_default_vault_access_policy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/vault-access.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_vault_access", + "target": "apps_extension_chromium_src_policy_schema_domains_vault_access_vaultaccesspolicy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/vault-access.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_vault_access", + "target": "apps_extension_chromium_src_policy_schema_domains_vault_access_vaultaccesspolicyschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/vault-access.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_vault_access", + "target": "apps_extension_chromium_src_policy_schema_domains_vault_access_vaultoperation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/domains/vault-access.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_domains_vault_access", + "target": "apps_extension_chromium_src_policy_schema_domains_vault_access_vaultoperationschema", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_policy_schema", + "target": "apps_extension_chromium_src_policy_schema_domains_vault_access", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_vault_access", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_vault_access_vaultoperationschema", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_vault_access_vaultoperation", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_vault_access_compartmentaccessschema", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_vault_access_compartmentaccess", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_policy_schema", + "target": "apps_extension_chromium_src_policy_schema_domains_vault_access_vaultaccesspolicyschema", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_vault_access_vaultaccesspolicyschema", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_vault_access_vaultaccesspolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_policy_schema", + "target": "apps_extension_chromium_src_policy_schema_domains_vault_access_default_vault_access_policy", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_domains_vault_access_default_vault_access_policy", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/index.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_index", + "target": "apps_extension_chromium_src_policy_schema_policy_schema", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/index.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_index", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_calculaterisktier", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/index.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_index", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_canonicalpolicyschema", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/index.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_index", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_createdefaultpolicy", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/index.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_index", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_hashpolicy", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/index.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_index", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_lockdownpolicy", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/index.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_index", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_policy_version", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/index.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_index", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_policylayerschema", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/index.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_index", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_policymetadataschema", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/index.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_index", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_risktierschema", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/index.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_index", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_serializepolicy", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/index.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_index", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_validatepolicy", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/index.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_index", + "target": "apps_extension_chromium_src_policy_schema_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/store/usePolicyStore.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_store_usepolicystore", + "target": "apps_extension_chromium_src_policy_schema_index", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/templates/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_templates_index", + "target": "apps_extension_chromium_src_policy_schema_index", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/templates/permissive.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_templates_permissive", + "target": "apps_extension_chromium_src_policy_schema_index", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/templates/restrictive.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_templates_restrictive", + "target": "apps_extension_chromium_src_policy_schema_index", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/templates/standard.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_templates_standard", + "target": "apps_extension_chromium_src_policy_schema_index", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_policy_schema_index", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L224", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_policy_schema", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_calculaterisktier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_policy_schema", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_canonicalpolicy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_policy_schema", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_canonicalpolicyschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L153", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_policy_schema", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_createdefaultpolicy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L212", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_policy_schema", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_hashpolicy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L283", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_policy_schema", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_lockdownpolicy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_policy_schema", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_policy_version", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_policy_schema", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_policylayer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_policy_schema", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_policylayerschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_policy_schema", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_policymetadata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_policy_schema", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_policymetadataschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_policy_schema", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_risktier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_policy_schema", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_risktierschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L205", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_policy_schema", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_serializepolicy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L189", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_policy_schema", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_validatepolicy", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_policy_schema", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_policy_version", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/templates/permissive.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_templates_permissive", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_policy_version", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/templates/restrictive.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_templates_restrictive", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_policy_version", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/templates/standard.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_templates_standard", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_policy_version", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_risktierschema", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_risktier", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_policylayerschema", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_policylayer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/store/usePolicyStore.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_store_usepolicystore", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_policylayer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/templates/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_templates_index", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_policylayer", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_policymetadataschema", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_policymetadata", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L194", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_policy_schema_validatepolicy", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_canonicalpolicyschema" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_canonicalpolicyschema", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/types.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_types", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_canonicalpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/store/usePolicyStore.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_store_usepolicystore", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_canonicalpolicy", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/store/usePolicyStore.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_store_usepolicystore_policystate", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_canonicalpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/templates/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_templates_index", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_canonicalpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/templates/permissive.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_templates_permissive", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_canonicalpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/templates/restrictive.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_templates_restrictive", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_canonicalpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/templates/standard.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_templates_standard", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_canonicalpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_canonicalpolicy", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/schema/policy.schema.ts", + "source_location": "L213", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_schema_policy_schema_hashpolicy", + "target": "apps_extension_chromium_src_policy_schema_policy_schema_serializepolicy", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/store/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_store_index", + "target": "apps_extension_chromium_src_policy_store_usepolicystore", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/store/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_store_index", + "target": "apps_extension_chromium_src_policy_store_usepolicystore_usepolicystore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/store/usePolicyStore.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_store_usepolicystore", + "target": "apps_extension_chromium_src_policy_store_usepolicystore_policystate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/store/usePolicyStore.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_store_usepolicystore", + "target": "apps_extension_chromium_src_policy_store_usepolicystore_usepolicystore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/store/usePolicyStore.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_store_usepolicystore", + "target": "apps_extension_chromium_src_policy_templates_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/store/usePolicyStore.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_store_usepolicystore", + "target": "apps_extension_chromium_src_policy_templates_index_createpolicyfromtemplate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/templates/index.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_templates_index", + "target": "apps_extension_chromium_src_policy_templates_index_createpolicyfromtemplate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/templates/index.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_templates_index", + "target": "apps_extension_chromium_src_policy_templates_index_getrecommendedtemplate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/templates/index.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_templates_index", + "target": "apps_extension_chromium_src_policy_templates_index_gettemplatedescription", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/templates/index.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_templates_index", + "target": "apps_extension_chromium_src_policy_templates_index_templatename", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/templates/index.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_templates_index", + "target": "apps_extension_chromium_src_policy_templates_index_templates", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/templates/index.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_templates_index", + "target": "apps_extension_chromium_src_policy_templates_permissive", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/templates/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_templates_index", + "target": "apps_extension_chromium_src_policy_templates_permissive_createpermissivepolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/templates/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_templates_index", + "target": "apps_extension_chromium_src_policy_templates_permissive_permissive_template", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/templates/index.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_templates_index", + "target": "apps_extension_chromium_src_policy_templates_restrictive", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/templates/index.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_templates_index", + "target": "apps_extension_chromium_src_policy_templates_restrictive_createrestrictivepolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/templates/index.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_templates_index", + "target": "apps_extension_chromium_src_policy_templates_restrictive_restrictive_template", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/templates/index.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_templates_index", + "target": "apps_extension_chromium_src_policy_templates_standard", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/templates/index.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_templates_index", + "target": "apps_extension_chromium_src_policy_templates_standard_createstandardpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/templates/index.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_templates_index", + "target": "apps_extension_chromium_src_policy_templates_standard_standard_template", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/templates/permissive.ts", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_templates_permissive", + "target": "apps_extension_chromium_src_policy_templates_permissive_createpermissivepolicy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/templates/permissive.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_templates_permissive", + "target": "apps_extension_chromium_src_policy_templates_permissive_permissive_template", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/templates/restrictive.ts", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_templates_restrictive", + "target": "apps_extension_chromium_src_policy_templates_restrictive_createrestrictivepolicy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/templates/restrictive.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_templates_restrictive", + "target": "apps_extension_chromium_src_policy_templates_restrictive_restrictive_template", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/templates/standard.ts", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_templates_standard", + "target": "apps_extension_chromium_src_policy_templates_standard_createstandardpolicy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/policy/templates/standard.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_policy_templates_standard", + "target": "apps_extension_chromium_src_policy_templates_standard_standard_template", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_popup_chat_authstatusresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_popup_chat_beapsubmode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_popup_chat_beapuivalidationfailure", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L2567", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_popup_chat_container", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_popup_chat_dockedsubmode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_popup_chat_dockedworkspace", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_popup_chat_draftattachment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L159", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_popup_chat_getinitialtheme", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_popup_chat_llmstatusdata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L183", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_popup_chat_popupchatapp", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_popup_chat_sessionlistlabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L152", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_popup_chat_sessionoption", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_popup_chat_theme", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_popup_chat_tobeaptheme", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_popup_chat_toplaceholdertheme", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_popup_chat_unwrapllmstatuspayload", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_rpc_electronrpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_rpc_electronrpc_electronrpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_rpc_electronrpc_electronrpcresponse", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_shared_email_connectemailflow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_shared_email_connectemailflow_useconnectemailflow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_shared_email_connectemailtypes_connectemaillaunchsource", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_shared_email_pickdefaultaccountrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_shared_email_pickdefaultaccountrow_pickdefaultemailaccountrowid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_iscustommodeid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_stores_useuistore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_stores_useuistore_useuistore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_ui_components_addmodewizardhost_addmodewizardhost", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_ui_components_commandchatview_commandchatview", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_ui_components_groupchatplaceholder_groupchatplaceholder", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_ui_components_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_ui_components_p2pchatplaceholder_p2pchatplaceholder", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_ui_components_p2pstreamplaceholder_p2pstreamplaceholder", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_ui_components_popupchatview_popupchatview", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_utils_sessiondisplaylabel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_utils_sessiondisplaylabel_sessiondisplaylabel", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_vault_api", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_vault_api_getvaultstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_wrguard_components_emailproviderssection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_wrguard_components_emailproviderssection_emailaccount", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_wrguard_components_emailproviderssection_emailproviderssection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_wrguard_components_wrguardworkspace_wrguardworkspace", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_wrguard_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat", + "target": "apps_extension_chromium_src_wrguard_usewrguardstore_usewrguardstore", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L1057", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat_rationale_1057", + "target": "apps_extension_chromium_src_popup_chat", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L510", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat_popupchatapp", + "target": "apps_extension_chromium_src_popup_chat_unwrapllmstatuspayload", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L1431", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat_popupchatapp", + "target": "apps_extension_chromium_src_popup_chat_tobeaptheme", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L2038", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat_popupchatapp", + "target": "apps_extension_chromium_src_popup_chat_toplaceholdertheme", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L761", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat_popupchatapp", + "target": "apps_extension_chromium_src_popup_chat_beapuivalidationfailure", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L599", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat_popupchatapp", + "target": "apps_extension_chromium_src_popup_chat_sessionlistlabel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat_sessionlistlabel", + "target": "apps_extension_chromium_src_utils_sessiondisplaylabel_sessiondisplaylabel", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L184", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat_popupchatapp", + "target": "apps_extension_chromium_src_popup_chat_getinitialtheme", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L415", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat_popupchatapp", + "target": "apps_extension_chromium_src_rpc_electronrpc_electronrpc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L696", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat_popupchatapp", + "target": "apps_extension_chromium_src_shared_email_connectemailflow_useconnectemailflow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L649", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat_popupchatapp", + "target": "apps_extension_chromium_src_shared_email_pickdefaultaccountrow_pickdefaultemailaccountrowid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L397", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat_popupchatapp", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_iscustommodeid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L185", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat_popupchatapp", + "target": "apps_extension_chromium_src_stores_useuistore_useuistore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/popup-chat.tsx", + "source_location": "L211", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_popup_chat_popupchatapp", + "target": "apps_extension_chromium_src_vault_api_getvaultstatus", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/components/index.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_components_index", + "target": "apps_extension_chromium_src_reconstruction_components_rasterpreview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/components/RasterPreview.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_components_rasterpreview", + "target": "apps_extension_chromium_src_reconstruction_components_rasterpreview_rasterpreview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/components/RasterPreview.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_components_rasterpreview", + "target": "apps_extension_chromium_src_reconstruction_components_rasterpreview_rasterpreviewprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/components/RasterPreview.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_components_rasterpreview", + "target": "apps_extension_chromium_src_reconstruction_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/components/RasterPreview.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_components_rasterpreview", + "target": "apps_extension_chromium_src_reconstruction_types_rasterpage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/components/RasterPreview.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_components_rasterpreview", + "target": "apps_extension_chromium_src_reconstruction_types_rasterref", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/components/SafePreviewPanel.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_components_safepreviewpanel", + "target": "apps_extension_chromium_src_reconstruction_components_rasterpreview", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/components/RasterPreview.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_components_rasterpreview_rasterpreviewprops", + "target": "apps_extension_chromium_src_reconstruction_types_rasterref", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/components/index.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_components_index", + "target": "apps_extension_chromium_src_reconstruction_components_rasterpreview_rasterpreview", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/components/SafePreviewPanel.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_components_safepreviewpanel", + "target": "apps_extension_chromium_src_reconstruction_components_rasterpreview_rasterpreview", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/index.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_index", + "target": "apps_extension_chromium_src_reconstruction_components_rasterpreview_rasterpreview", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/components/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_components_index", + "target": "apps_extension_chromium_src_reconstruction_components_reconstructionstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/components/ReconstructionStatus.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_components_reconstructionstatus", + "target": "apps_extension_chromium_src_reconstruction_components_reconstructionstatus_reconstructionstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/components/ReconstructionStatus.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_components_reconstructionstatus", + "target": "apps_extension_chromium_src_reconstruction_components_reconstructionstatus_reconstructionstatusprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/components/ReconstructionStatus.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_components_reconstructionstatus", + "target": "apps_extension_chromium_src_reconstruction_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/components/ReconstructionStatus.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_components_reconstructionstatus", + "target": "apps_extension_chromium_src_reconstruction_types_reconstructionstate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/components/SafePreviewPanel.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_components_safepreviewpanel", + "target": "apps_extension_chromium_src_reconstruction_components_reconstructionstatus", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/components/ReconstructionStatus.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_components_reconstructionstatus_reconstructionstatusprops", + "target": "apps_extension_chromium_src_reconstruction_types_reconstructionstate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/components/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_components_index", + "target": "apps_extension_chromium_src_reconstruction_components_reconstructionstatus_reconstructionstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/components/SafePreviewPanel.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_components_safepreviewpanel", + "target": "apps_extension_chromium_src_reconstruction_components_reconstructionstatus_reconstructionstatus", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/index.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_index", + "target": "apps_extension_chromium_src_reconstruction_components_reconstructionstatus_reconstructionstatus", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/components/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_components_index", + "target": "apps_extension_chromium_src_reconstruction_components_safepreviewpanel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/components/SafePreviewPanel.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_components_safepreviewpanel", + "target": "apps_extension_chromium_src_reconstruction_components_safepreviewpanel_safepreviewpanel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/components/SafePreviewPanel.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_components_safepreviewpanel", + "target": "apps_extension_chromium_src_reconstruction_components_safepreviewpanel_safepreviewpanelprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/components/SafePreviewPanel.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_components_safepreviewpanel", + "target": "apps_extension_chromium_src_reconstruction_components_semanticpreview", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/components/SafePreviewPanel.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_components_safepreviewpanel", + "target": "apps_extension_chromium_src_reconstruction_components_semanticpreview_semanticpreview", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/components/SafePreviewPanel.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_components_safepreviewpanel", + "target": "apps_extension_chromium_src_reconstruction_usereconstruction", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/components/SafePreviewPanel.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_components_safepreviewpanel", + "target": "apps_extension_chromium_src_reconstruction_usereconstruction_usereconstruction", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/components/SafePreviewPanel.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_components_safepreviewpanel", + "target": "apps_extension_chromium_src_reconstruction_usereconstructionstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/components/SafePreviewPanel.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_components_safepreviewpanel", + "target": "apps_extension_chromium_src_reconstruction_usereconstructionstore_usereconstructionstore", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/components/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_components_index", + "target": "apps_extension_chromium_src_reconstruction_components_safepreviewpanel_safepreviewpanel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/reconstruction/components/SafePreviewPanel.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_components_safepreviewpanel_safepreviewpanel", + "target": "apps_extension_chromium_src_reconstruction_usereconstruction_usereconstruction" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/reconstruction/components/SafePreviewPanel.tsx", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_components_safepreviewpanel_safepreviewpanel", + "target": "apps_extension_chromium_src_reconstruction_usereconstructionstore_usereconstructionstore" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/index.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_index", + "target": "apps_extension_chromium_src_reconstruction_components_safepreviewpanel_safepreviewpanel", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/components/index.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_components_index", + "target": "apps_extension_chromium_src_reconstruction_components_semanticpreview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/components/SemanticPreview.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_components_semanticpreview", + "target": "apps_extension_chromium_src_reconstruction_components_semanticpreview_semanticpreview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/components/SemanticPreview.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_components_semanticpreview", + "target": "apps_extension_chromium_src_reconstruction_components_semanticpreview_semanticpreviewprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/components/SemanticPreview.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_components_semanticpreview", + "target": "apps_extension_chromium_src_reconstruction_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/components/SemanticPreview.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_components_semanticpreview", + "target": "apps_extension_chromium_src_reconstruction_types_semantictextentry", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/components/SemanticPreview.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_components_semanticpreview_semanticpreviewprops", + "target": "apps_extension_chromium_src_reconstruction_types_semantictextentry", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/components/index.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_components_index", + "target": "apps_extension_chromium_src_reconstruction_components_semanticpreview_semanticpreview", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/index.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_index", + "target": "apps_extension_chromium_src_reconstruction_components_semanticpreview_semanticpreview", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/index.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_index", + "target": "apps_extension_chromium_src_reconstruction_components_index", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/index.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_index", + "target": "apps_extension_chromium_src_reconstruction_reconstructionservice", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/index.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_index", + "target": "apps_extension_chromium_src_reconstruction_reconstructionservice_canreconstruct", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/index.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_index", + "target": "apps_extension_chromium_src_reconstruction_reconstructionservice_runreconstruction", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/index.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_index", + "target": "apps_extension_chromium_src_reconstruction_reconstructionservice_validatereconstructionintegrity", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_index", + "target": "apps_extension_chromium_src_reconstruction_types", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/index.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_index", + "target": "apps_extension_chromium_src_reconstruction_types_ispdfiumsupported", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/index.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_index", + "target": "apps_extension_chromium_src_reconstruction_types_istikasupported", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/index.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_index", + "target": "apps_extension_chromium_src_reconstruction_types_pdfium_supported_types", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_index", + "target": "apps_extension_chromium_src_reconstruction_types_rasterpage", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_index", + "target": "apps_extension_chromium_src_reconstruction_types_rasterref", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_index", + "target": "apps_extension_chromium_src_reconstruction_types_reconstructionattachment", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_index", + "target": "apps_extension_chromium_src_reconstruction_types_reconstructionrecord", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_index", + "target": "apps_extension_chromium_src_reconstruction_types_reconstructionrequest", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_index", + "target": "apps_extension_chromium_src_reconstruction_types_reconstructionresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_index", + "target": "apps_extension_chromium_src_reconstruction_types_reconstructionstate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_index", + "target": "apps_extension_chromium_src_reconstruction_types_semantictextentry", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_index", + "target": "apps_extension_chromium_src_reconstruction_types_semantictextsource", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/index.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_index", + "target": "apps_extension_chromium_src_reconstruction_types_tika_supported_types", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_index", + "target": "apps_extension_chromium_src_reconstruction_types_toolexecutionrequest", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_index", + "target": "apps_extension_chromium_src_reconstruction_types_toolexecutionresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/index.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_index", + "target": "apps_extension_chromium_src_reconstruction_usereconstruction", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/index.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_index", + "target": "apps_extension_chromium_src_reconstruction_usereconstruction_usereconstruction", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/index.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_index", + "target": "apps_extension_chromium_src_reconstruction_usereconstructionstore", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/index.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_index", + "target": "apps_extension_chromium_src_reconstruction_usereconstructionstore_useisreconstructed", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/index.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_index", + "target": "apps_extension_chromium_src_reconstruction_usereconstructionstore_userasterrefs", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/index.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_index", + "target": "apps_extension_chromium_src_reconstruction_usereconstructionstore_usereconstructionstate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/index.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_index", + "target": "apps_extension_chromium_src_reconstruction_usereconstructionstore_usereconstructionstore", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/index.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_index", + "target": "apps_extension_chromium_src_reconstruction_usereconstructionstore_usesemantictext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/reconstructionService.ts", + "source_location": "L410", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_reconstructionservice", + "target": "apps_extension_chromium_src_reconstruction_reconstructionservice_canreconstruct", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/reconstructionService.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_reconstructionservice", + "target": "apps_extension_chromium_src_reconstruction_reconstructionservice_computehash", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/reconstructionService.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_reconstructionservice", + "target": "apps_extension_chromium_src_reconstruction_reconstructionservice_executetoolisolated", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/reconstructionService.ts", + "source_location": "L294", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_reconstructionservice", + "target": "apps_extension_chromium_src_reconstruction_reconstructionservice_extractsemantictext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/reconstructionService.ts", + "source_location": "L350", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_reconstructionservice", + "target": "apps_extension_chromium_src_reconstruction_reconstructionservice_generaterasterpreviews", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/reconstructionService.ts", + "source_location": "L242", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_reconstructionservice", + "target": "apps_extension_chromium_src_reconstruction_reconstructionservice_runreconstruction", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/reconstructionService.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_reconstructionservice", + "target": "apps_extension_chromium_src_reconstruction_reconstructionservice_shorthash", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/reconstructionService.ts", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_reconstructionservice", + "target": "apps_extension_chromium_src_reconstruction_reconstructionservice_simulatepdfiumoutput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/reconstructionService.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_reconstructionservice", + "target": "apps_extension_chromium_src_reconstruction_reconstructionservice_simulatetikaoutput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/reconstructionService.ts", + "source_location": "L418", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_reconstructionservice", + "target": "apps_extension_chromium_src_reconstruction_reconstructionservice_validatereconstructionintegrity", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/reconstructionService.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_reconstructionservice", + "target": "apps_extension_chromium_src_reconstruction_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/reconstructionService.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_reconstructionservice", + "target": "apps_extension_chromium_src_reconstruction_types_ispdfiumsupported", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/reconstructionService.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_reconstructionservice", + "target": "apps_extension_chromium_src_reconstruction_types_istikasupported", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/reconstructionService.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_reconstructionservice", + "target": "apps_extension_chromium_src_reconstruction_types_rasterpage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/reconstructionService.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_reconstructionservice", + "target": "apps_extension_chromium_src_reconstruction_types_rasterref", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/reconstructionService.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_reconstructionservice", + "target": "apps_extension_chromium_src_reconstruction_types_reconstructionattachment", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/reconstructionService.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_reconstructionservice", + "target": "apps_extension_chromium_src_reconstruction_types_reconstructionrequest", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/reconstructionService.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_reconstructionservice", + "target": "apps_extension_chromium_src_reconstruction_types_reconstructionresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/reconstructionService.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_reconstructionservice", + "target": "apps_extension_chromium_src_reconstruction_types_semantictextentry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/reconstructionService.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_reconstructionservice", + "target": "apps_extension_chromium_src_reconstruction_types_toolexecutionrequest", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/reconstructionService.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_reconstructionservice", + "target": "apps_extension_chromium_src_reconstruction_types_toolexecutionresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/useReconstruction.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_usereconstruction", + "target": "apps_extension_chromium_src_reconstruction_reconstructionservice", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/reconstructionService.ts", + "source_location": "L305", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_reconstructionservice_extractsemantictext", + "target": "apps_extension_chromium_src_reconstruction_reconstructionservice_computehash", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/reconstructionService.ts", + "source_location": "L377", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_reconstructionservice_generaterasterpreviews", + "target": "apps_extension_chromium_src_reconstruction_reconstructionservice_computehash", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/reconstructionService.ts", + "source_location": "L421", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_reconstructionservice_validatereconstructionintegrity", + "target": "apps_extension_chromium_src_reconstruction_reconstructionservice_computehash", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/reconstructionService.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_reconstructionservice_executetoolisolated", + "target": "apps_extension_chromium_src_reconstruction_reconstructionservice_simulatepdfiumoutput", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/reconstructionService.ts", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_reconstructionservice_executetoolisolated", + "target": "apps_extension_chromium_src_reconstruction_reconstructionservice_simulatetikaoutput", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/reconstructionService.ts", + "source_location": "L312", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_reconstructionservice_extractsemantictext", + "target": "apps_extension_chromium_src_reconstruction_reconstructionservice_executetoolisolated", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/reconstructionService.ts", + "source_location": "L359", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_reconstructionservice_generaterasterpreviews", + "target": "apps_extension_chromium_src_reconstruction_reconstructionservice_executetoolisolated", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/reconstructionService.ts", + "source_location": "L259", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_reconstructionservice_runreconstruction", + "target": "apps_extension_chromium_src_reconstruction_reconstructionservice_extractsemantictext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/reconstructionService.ts", + "source_location": "L264", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_reconstructionservice_runreconstruction", + "target": "apps_extension_chromium_src_reconstruction_reconstructionservice_generaterasterpreviews", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/reconstruction/reconstructionService.ts", + "source_location": "L263", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_reconstructionservice_runreconstruction", + "target": "apps_extension_chromium_src_reconstruction_types_ispdfiumsupported" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/useReconstruction.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_usereconstruction", + "target": "apps_extension_chromium_src_reconstruction_reconstructionservice_runreconstruction", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/reconstruction/useReconstruction.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_usereconstruction_usereconstruction", + "target": "apps_extension_chromium_src_reconstruction_reconstructionservice_runreconstruction" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/reconstructionService.ts", + "source_location": "L298", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_reconstructionservice_extractsemantictext", + "target": "apps_extension_chromium_src_reconstruction_types_istikasupported", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/reconstructionService.ts", + "source_location": "L354", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_reconstructionservice_generaterasterpreviews", + "target": "apps_extension_chromium_src_reconstruction_types_ispdfiumsupported", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/useReconstruction.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_usereconstruction", + "target": "apps_extension_chromium_src_reconstruction_reconstructionservice_canreconstruct", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/reconstruction/useReconstruction.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_usereconstruction_usereconstruction", + "target": "apps_extension_chromium_src_reconstruction_reconstructionservice_canreconstruct" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/types.ts", + "source_location": "L297", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_types", + "target": "apps_extension_chromium_src_reconstruction_types_ispdfiumsupported", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/types.ts", + "source_location": "L290", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_types", + "target": "apps_extension_chromium_src_reconstruction_types_istikasupported", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/types.ts", + "source_location": "L283", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_types", + "target": "apps_extension_chromium_src_reconstruction_types_pdfium_supported_types", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/types.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_types", + "target": "apps_extension_chromium_src_reconstruction_types_rasterpage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/types.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_types", + "target": "apps_extension_chromium_src_reconstruction_types_rasterref", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/types.ts", + "source_location": "L165", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_types", + "target": "apps_extension_chromium_src_reconstruction_types_reconstructionattachment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/types.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_types", + "target": "apps_extension_chromium_src_reconstruction_types_reconstructionrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/types.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_types", + "target": "apps_extension_chromium_src_reconstruction_types_reconstructionrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/types.ts", + "source_location": "L188", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_types", + "target": "apps_extension_chromium_src_reconstruction_types_reconstructionresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/types.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_types", + "target": "apps_extension_chromium_src_reconstruction_types_reconstructionstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/types.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_types", + "target": "apps_extension_chromium_src_reconstruction_types_semantictextentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/types.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_types", + "target": "apps_extension_chromium_src_reconstruction_types_semantictextsource", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/types.ts", + "source_location": "L265", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_types", + "target": "apps_extension_chromium_src_reconstruction_types_tika_supported_types", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/types.ts", + "source_location": "L212", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_types", + "target": "apps_extension_chromium_src_reconstruction_types_toolexecutionrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/types.ts", + "source_location": "L232", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_types", + "target": "apps_extension_chromium_src_reconstruction_types_toolexecutionresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/useReconstruction.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_usereconstruction", + "target": "apps_extension_chromium_src_reconstruction_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/useReconstructionStore.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_usereconstructionstore", + "target": "apps_extension_chromium_src_reconstruction_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/useReconstructionStore.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_usereconstructionstore", + "target": "apps_extension_chromium_src_reconstruction_types_reconstructionstate", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/useReconstructionStore.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_usereconstructionstore_reconstructionstorestate", + "target": "apps_extension_chromium_src_reconstruction_types_reconstructionstate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/useReconstructionStore.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_usereconstructionstore", + "target": "apps_extension_chromium_src_reconstruction_types_semantictextentry", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/useReconstructionStore.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_usereconstructionstore_reconstructionstorestate", + "target": "apps_extension_chromium_src_reconstruction_types_semantictextentry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/useReconstructionStore.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_usereconstructionstore", + "target": "apps_extension_chromium_src_reconstruction_types_rasterref", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/useReconstructionStore.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_usereconstructionstore_reconstructionstorestate", + "target": "apps_extension_chromium_src_reconstruction_types_rasterref", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/useReconstructionStore.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_usereconstructionstore", + "target": "apps_extension_chromium_src_reconstruction_types_reconstructionrecord", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/useReconstructionStore.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_usereconstructionstore_reconstructionstorestate", + "target": "apps_extension_chromium_src_reconstruction_types_reconstructionrecord", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/useReconstruction.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_usereconstruction", + "target": "apps_extension_chromium_src_reconstruction_types_reconstructionrequest", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/useReconstruction.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_usereconstruction", + "target": "apps_extension_chromium_src_reconstruction_types_reconstructionattachment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/useReconstruction.ts", + "source_location": "L169", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_usereconstruction", + "target": "apps_extension_chromium_src_reconstruction_usereconstruction_guessmimetype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/useReconstruction.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_usereconstruction", + "target": "apps_extension_chromium_src_reconstruction_usereconstruction_usereconstruction", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/useReconstruction.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_usereconstruction", + "target": "apps_extension_chromium_src_reconstruction_usereconstruction_usereconstructionreturn", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/useReconstruction.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_usereconstruction", + "target": "apps_extension_chromium_src_reconstruction_usereconstructionstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/useReconstruction.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_usereconstruction", + "target": "apps_extension_chromium_src_reconstruction_usereconstructionstore_usereconstructionstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/useReconstruction.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_usereconstruction_usereconstruction", + "target": "apps_extension_chromium_src_reconstruction_usereconstruction_guessmimetype", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/reconstruction/useReconstruction.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_usereconstruction_usereconstruction", + "target": "apps_extension_chromium_src_reconstruction_usereconstructionstore_usereconstructionstore" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/useReconstructionStore.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_usereconstructionstore", + "target": "apps_extension_chromium_src_reconstruction_usereconstructionstore_reconstructionstorestate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/useReconstructionStore.ts", + "source_location": "L216", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_usereconstructionstore", + "target": "apps_extension_chromium_src_reconstruction_usereconstructionstore_useisreconstructed", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/useReconstructionStore.ts", + "source_location": "L222", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_usereconstructionstore", + "target": "apps_extension_chromium_src_reconstruction_usereconstructionstore_userasterrefs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/useReconstructionStore.ts", + "source_location": "L213", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_usereconstructionstore", + "target": "apps_extension_chromium_src_reconstruction_usereconstructionstore_usereconstructionstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/useReconstructionStore.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_usereconstructionstore", + "target": "apps_extension_chromium_src_reconstruction_usereconstructionstore_usereconstructionstore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/useReconstructionStore.ts", + "source_location": "L219", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_usereconstructionstore", + "target": "apps_extension_chromium_src_reconstruction_usereconstructionstore_usesemantictext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/useReconstructionStore.ts", + "source_location": "L217", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_usereconstructionstore_useisreconstructed", + "target": "apps_extension_chromium_src_reconstruction_usereconstructionstore_usereconstructionstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/useReconstructionStore.ts", + "source_location": "L223", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_usereconstructionstore_userasterrefs", + "target": "apps_extension_chromium_src_reconstruction_usereconstructionstore_usereconstructionstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/useReconstructionStore.ts", + "source_location": "L214", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_usereconstructionstore_usereconstructionstate", + "target": "apps_extension_chromium_src_reconstruction_usereconstructionstore_usereconstructionstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/reconstruction/useReconstructionStore.ts", + "source_location": "L220", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_reconstruction_usereconstructionstore_usesemantictext", + "target": "apps_extension_chromium_src_reconstruction_usereconstructionstore_usereconstructionstore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L343", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_rpc_electronrpc", + "target": "apps_extension_chromium_src_rpc_electronrpc_custommodedraftschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L374", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_rpc_electronrpc", + "target": "apps_extension_chromium_src_rpc_electronrpc_custommodescreate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L391", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_rpc_electronrpc", + "target": "apps_extension_chromium_src_rpc_electronrpc_custommodesdelete", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L367", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_rpc_electronrpc", + "target": "apps_extension_chromium_src_rpc_electronrpc_custommodesgetmigrationstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L398", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_rpc_electronrpc", + "target": "apps_extension_chromium_src_rpc_electronrpc_custommodesimport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L360", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_rpc_electronrpc", + "target": "apps_extension_chromium_src_rpc_electronrpc_custommodeslist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L381", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_rpc_electronrpc", + "target": "apps_extension_chromium_src_rpc_electronrpc_custommodesupdate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L261", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_rpc_electronrpc", + "target": "apps_extension_chromium_src_rpc_electronrpc_dashboardopen", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L268", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_rpc_electronrpc", + "target": "apps_extension_chromium_src_rpc_electronrpc_dashboardstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_rpc_electronrpc", + "target": "apps_extension_chromium_src_rpc_electronrpc_dbinserttestdata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_rpc_electronrpc", + "target": "apps_extension_chromium_src_rpc_electronrpc_dblaunchdbeaver", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_rpc_electronrpc", + "target": "apps_extension_chromium_src_rpc_electronrpc_dbtestconnection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_rpc_electronrpc", + "target": "apps_extension_chromium_src_rpc_electronrpc_dbtestdatastats", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L612", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_rpc_electronrpc", + "target": "apps_extension_chromium_src_rpc_electronrpc_electronrpc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L467", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_rpc_electronrpc", + "target": "apps_extension_chromium_src_rpc_electronrpc_electronrpcrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L475", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_rpc_electronrpc", + "target": "apps_extension_chromium_src_rpc_electronrpc_electronrpcresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L502", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_rpc_electronrpc", + "target": "apps_extension_chromium_src_rpc_electronrpc_executeelectronrpcrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L579", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_rpc_electronrpc", + "target": "apps_extension_chromium_src_rpc_electronrpc_handleelectronrpc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L157", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_rpc_electronrpc", + "target": "apps_extension_chromium_src_rpc_electronrpc_llmactivatemodel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L194", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_rpc_electronrpc", + "target": "apps_extension_chromium_src_rpc_electronrpc_llmbinaryinstallprogress", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L180", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_rpc_electronrpc", + "target": "apps_extension_chromium_src_rpc_electronrpc_llmbinarystatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L201", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_rpc_electronrpc", + "target": "apps_extension_chromium_src_rpc_electronrpc_llmcancelbinaryinstall", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_rpc_electronrpc", + "target": "apps_extension_chromium_src_rpc_electronrpc_llmcancelmodeldownload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_rpc_electronrpc", + "target": "apps_extension_chromium_src_rpc_electronrpc_llmcatalog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L150", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_rpc_electronrpc", + "target": "apps_extension_chromium_src_rpc_electronrpc_llmdeletemodel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_rpc_electronrpc", + "target": "apps_extension_chromium_src_rpc_electronrpc_llmdownloadmodelfromurl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_rpc_electronrpc", + "target": "apps_extension_chromium_src_rpc_electronrpc_llmhardware", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_rpc_electronrpc", + "target": "apps_extension_chromium_src_rpc_electronrpc_llmimportmodelfrompicker", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L187", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_rpc_electronrpc", + "target": "apps_extension_chromium_src_rpc_electronrpc_llminstallllamaserverbinary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L171", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_rpc_electronrpc", + "target": "apps_extension_chromium_src_rpc_electronrpc_llminstallprogress", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_rpc_electronrpc", + "target": "apps_extension_chromium_src_rpc_electronrpc_llmlocalruntimeinfo", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_rpc_electronrpc", + "target": "apps_extension_chromium_src_rpc_electronrpc_llmperformance", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L210", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_rpc_electronrpc", + "target": "apps_extension_chromium_src_rpc_electronrpc_llmserverconfigget", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L217", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_rpc_electronrpc", + "target": "apps_extension_chromium_src_rpc_electronrpc_llmserverconfigset", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L228", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_rpc_electronrpc", + "target": "apps_extension_chromium_src_rpc_electronrpc_llmserverrestart", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L235", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_rpc_electronrpc", + "target": "apps_extension_chromium_src_rpc_electronrpc_llmsetaiexecutioncontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_rpc_electronrpc", + "target": "apps_extension_chromium_src_rpc_electronrpc_llmstart", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_rpc_electronrpc", + "target": "apps_extension_chromium_src_rpc_electronrpc_llmstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L302", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_rpc_electronrpc", + "target": "apps_extension_chromium_src_rpc_electronrpc_orchestratorgetmode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L298", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_rpc_electronrpc", + "target": "apps_extension_chromium_src_rpc_electronrpc_orchestratorgetmoderesponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L289", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_rpc_electronrpc", + "target": "apps_extension_chromium_src_rpc_electronrpc_orchestratormode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L334", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_rpc_electronrpc", + "target": "apps_extension_chromium_src_rpc_electronrpc_orchestratorregeneratepairingcode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L330", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_rpc_electronrpc", + "target": "apps_extension_chromium_src_rpc_electronrpc_orchestratorregeneratepairingcoderesponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L309", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_rpc_electronrpc", + "target": "apps_extension_chromium_src_rpc_electronrpc_orchestratorsetmode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L458", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_rpc_electronrpc", + "target": "apps_extension_chromium_src_rpc_electronrpc_registry_map", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L417", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_rpc_electronrpc", + "target": "apps_extension_chromium_src_rpc_electronrpc_rpc_registry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L454", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_rpc_electronrpc", + "target": "apps_extension_chromium_src_rpc_electronrpc_rpcdef", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L455", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_rpc_electronrpc", + "target": "apps_extension_chromium_src_rpc_electronrpc_rpcmethod", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/customModesClient.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_custommodesclient", + "target": "apps_extension_chromium_src_rpc_electronrpc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/localOllamaModels.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_localollamamodels", + "target": "apps_extension_chromium_src_rpc_electronrpc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_rpc_electronrpc", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L507", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_rpc_electronrpc_executeelectronrpcrequest", + "target": "apps_extension_chromium_src_rpc_electronrpc_registry_map" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L558", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_rpc_electronrpc_executeelectronrpcrequest", + "target": "apps_extension_chromium_src_rpc_electronrpc_electronrpcresponse" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_rpc_electronrpc_electronrpcresponse", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/rpc/electronRpc.ts", + "source_location": "L593", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_rpc_electronrpc_handleelectronrpc", + "target": "apps_extension_chromium_src_rpc_electronrpc_executeelectronrpcrequest", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/customModesClient.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_custommodesclient", + "target": "apps_extension_chromium_src_rpc_electronrpc_electronrpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/localOllamaModels.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_localollamamodels", + "target": "apps_extension_chromium_src_rpc_electronrpc_electronrpc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/services/localOllamaModels.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_localollamamodels_fetchinstalledlocalmodelnames", + "target": "apps_extension_chromium_src_rpc_electronrpc_electronrpc" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/services/localOllamaModels.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_localollamamodels_fetchwrchatselectormodelsfrombackend", + "target": "apps_extension_chromium_src_rpc_electronrpc_electronrpc" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_rpc_electronrpc_electronrpc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L1271", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_rpc_electronrpc_electronrpc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L1752", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinatorconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator", + "target": "apps_extension_chromium_src_services_inputcoordinator_ismodetriggertype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator", + "target": "apps_extension_chromium_src_services_inputcoordinator_istriggerrowenabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator", + "target": "apps_extension_chromium_src_services_inputcoordinator_iswrchattriggertype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator", + "target": "apps_extension_chromium_src_services_inputcoordinator_listenerevaluation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator", + "target": "apps_extension_chromium_src_services_inputcoordinator_normalizesessionkey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator", + "target": "apps_extension_chromium_src_services_inputcoordinator_routingdebugenabled", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator", + "target": "apps_extension_chromium_src_services_processflow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator", + "target": "apps_extension_chromium_src_services_processflow_agentbox", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator", + "target": "apps_extension_chromium_src_services_processflow_agentconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator", + "target": "apps_extension_chromium_src_services_processflow_agentmatch", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator", + "target": "apps_extension_chromium_src_services_processflow_routingdecision", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_services_inputcoordinator", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/tests/wrChatPipeline.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_tests_wrchatpipeline_test", + "target": "apps_extension_chromium_src_services_inputcoordinator", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L272", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_haswrchattrigger", + "target": "apps_extension_chromium_src_services_inputcoordinator_iswrchattriggertype", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L289", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_hasmodetrigger", + "target": "apps_extension_chromium_src_services_inputcoordinator_ismodetriggertype", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L461", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_evaluateagentlistener", + "target": "apps_extension_chromium_src_services_inputcoordinator_istriggerrowenabled", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L1272", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_extracteventtagtriggers", + "target": "apps_extension_chromium_src_services_inputcoordinator_istriggerrowenabled", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L289", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_hasmodetrigger", + "target": "apps_extension_chromium_src_services_inputcoordinator_istriggerrowenabled", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L392", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_evaluateagentlistener", + "target": "apps_extension_chromium_src_services_inputcoordinator_normalizesessionkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L474", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_evaluateagentlistener", + "target": "apps_extension_chromium_src_services_inputcoordinator_routingdebugenabled", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L202", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_checktriggerkeywords", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L1685", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_collectsensorcontext", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_constructor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L319", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_evaluateagentlistener", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L1326", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_evaluateeventtagconditions", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L1263", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_extracteventtagtriggers", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L134", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_extracttriggerpatterns", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L597", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_findagentboxesforagent", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L919", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_generateforwardingresponse", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L1072", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_generateforwardingresponsefromclassified", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L1723", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_generateroutingsummary", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L284", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_hasmodetrigger", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L268", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_haswrchattrigger", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_log", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L169", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_matchesapplyfor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L155", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_matchesexpectedcontext", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L188", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_matcheswebsitefilter", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L1550", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_resolveexecutionconfig", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L1469", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_resolvellmfromagentbox", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L1505", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_resolvereasoningconfig", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L960", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_routeclassifiedinput", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L1117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_routeeventtagtrigger", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L761", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_routetoagents", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L858", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_routetoagentsformoderun", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/tests/wrChatPipeline.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_tests_wrchatpipeline_test", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L216", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_checktriggerkeywords", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_log", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L1698", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_collectsensorcontext", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_log", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L354", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_evaluateagentlistener", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_log", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L1336", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_evaluateeventtagconditions", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_log", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L1275", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_extracteventtagtriggers", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_log", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L618", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_findagentboxesforagent", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_log", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L979", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_routeclassifiedinput", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_log", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L1127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_routeeventtagtrigger", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_log", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L772", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_routetoagents", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_log", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L870", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_routetoagentsformoderun", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_log", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L770", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_routetoagents", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_extracttriggerpatterns", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L556", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_evaluateagentlistener", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_matchesexpectedcontext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L376", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_evaluateagentlistener", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_matcheswebsitefilter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L471", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_evaluateagentlistener", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_checktriggerkeywords", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L339", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_evaluateagentlistener", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_haswrchattrigger", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L268", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_haswrchattrigger", + "target": "apps_extension_chromium_src_services_processflow_agentconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L340", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_evaluateagentlistener", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_hasmodetrigger", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L284", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_hasmodetrigger", + "target": "apps_extension_chromium_src_services_processflow_agentconfig", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L319", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_evaluateagentlistener", + "target": "apps_extension_chromium_src_services_processflow_agentconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L991", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_routeclassifiedinput", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_evaluateagentlistener", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L786", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_routetoagents", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_evaluateagentlistener", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L875", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_routetoagentsformoderun", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_evaluateagentlistener", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L597", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_findagentboxesforagent", + "target": "apps_extension_chromium_src_services_processflow_agentbox", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L597", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_findagentboxesforagent", + "target": "apps_extension_chromium_src_services_processflow_agentconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L1598", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_resolveexecutionconfig", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_findagentboxesforagent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L1474", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_resolvellmfromagentbox", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_findagentboxesforagent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L1006", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_routeclassifiedinput", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_findagentboxesforagent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L801", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_routetoagents", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_findagentboxesforagent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L878", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_routetoagentsformoderun", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_findagentboxesforagent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L761", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_routetoagents", + "target": "apps_extension_chromium_src_services_processflow_agentbox", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L761", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_routetoagents", + "target": "apps_extension_chromium_src_services_processflow_agentconfig", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L761", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_routetoagents", + "target": "apps_extension_chromium_src_services_processflow_agentmatch", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L858", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_routetoagentsformoderun", + "target": "apps_extension_chromium_src_services_processflow_agentbox", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L858", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_routetoagentsformoderun", + "target": "apps_extension_chromium_src_services_processflow_agentconfig", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L858", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_routetoagentsformoderun", + "target": "apps_extension_chromium_src_services_processflow_agentmatch", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L919", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_generateforwardingresponse", + "target": "apps_extension_chromium_src_services_processflow_agentmatch", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L960", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_routeclassifiedinput", + "target": "apps_extension_chromium_src_services_processflow_agentbox", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L960", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_routeclassifiedinput", + "target": "apps_extension_chromium_src_services_processflow_agentconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L1179", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_routeeventtagtrigger", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_evaluateeventtagconditions", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L1146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_routeeventtagtrigger", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_extracteventtagtriggers", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L1208", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_routeeventtagtrigger", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_resolveexecutionconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L1202", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_routeeventtagtrigger", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_resolvellmfromagentbox", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/InputCoordinator.ts", + "source_location": "L1205", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_routeeventtagtrigger", + "target": "apps_extension_chromium_src_services_inputcoordinator_inputcoordinator_resolvereasoningconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/TypeSystemService.ts", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_typesystemservice", + "target": "apps_extension_chromium_src_services_typesystemservice_buildconnectioninfo", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/TypeSystemService.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_typesystemservice", + "target": "apps_extension_chromium_src_services_typesystemservice_clearschemacache", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/TypeSystemService.ts", + "source_location": "L177", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_typesystemservice", + "target": "apps_extension_chromium_src_services_typesystemservice_converttocanonicalformat", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/TypeSystemService.ts", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_typesystemservice", + "target": "apps_extension_chromium_src_services_typesystemservice_createmasterschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/TypeSystemService.ts", + "source_location": "L437", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_typesystemservice", + "target": "apps_extension_chromium_src_services_typesystemservice_createunifiedtemplate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/TypeSystemService.ts", + "source_location": "L531", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_typesystemservice", + "target": "apps_extension_chromium_src_services_typesystemservice_downloadjson", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/TypeSystemService.ts", + "source_location": "L547", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_typesystemservice", + "target": "apps_extension_chromium_src_services_typesystemservice_downloadmasterschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/TypeSystemService.ts", + "source_location": "L555", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_typesystemservice", + "target": "apps_extension_chromium_src_services_typesystemservice_downloadunifiedtemplate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/TypeSystemService.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_typesystemservice", + "target": "apps_extension_chromium_src_services_typesystemservice_getmasterschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/TypeSystemService.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_typesystemservice", + "target": "apps_extension_chromium_src_services_typesystemservice_getunifiedtemplate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/TypeSystemService.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_typesystemservice", + "target": "apps_extension_chromium_src_services_typesystemservice_inferagentnumber", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/TypeSystemService.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_typesystemservice", + "target": "apps_extension_chromium_src_services_typesystemservice_tocanonicalagent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/TypeSystemService.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_typesystemservice", + "target": "apps_extension_chromium_src_services_typesystemservice_tocanonicalagentbox", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/TypeSystemService.ts", + "source_location": "L548", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_typesystemservice_downloadmasterschema", + "target": "apps_extension_chromium_src_services_typesystemservice_getmasterschema", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/TypeSystemService.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_typesystemservice_getmasterschema", + "target": "apps_extension_chromium_src_services_typesystemservice_createmasterschema", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/TypeSystemService.ts", + "source_location": "L556", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_typesystemservice_downloadunifiedtemplate", + "target": "apps_extension_chromium_src_services_typesystemservice_getunifiedtemplate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/TypeSystemService.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_typesystemservice_getunifiedtemplate", + "target": "apps_extension_chromium_src_services_typesystemservice_createunifiedtemplate", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/extension-chromium/src/services/TypeSystemService.ts", + "source_location": "L188", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_typesystemservice_converttocanonicalformat", + "target": "apps_extension_chromium_src_services_typesystemservice_tocanonicalagentbox", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/TypeSystemService.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_typesystemservice_tocanonicalagent", + "target": "apps_extension_chromium_src_services_typesystemservice_inferagentnumber", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/extension-chromium/src/services/TypeSystemService.ts", + "source_location": "L187", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_typesystemservice_converttocanonicalformat", + "target": "apps_extension_chromium_src_services_typesystemservice_tocanonicalagent", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/TypeSystemService.ts", + "source_location": "L189", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_typesystemservice_converttocanonicalformat", + "target": "apps_extension_chromium_src_services_typesystemservice_buildconnectioninfo", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/TypeSystemService.ts", + "source_location": "L549", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_typesystemservice_downloadmasterschema", + "target": "apps_extension_chromium_src_services_typesystemservice_downloadjson", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/TypeSystemService.ts", + "source_location": "L557", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_typesystemservice_downloadunifiedtemplate", + "target": "apps_extension_chromium_src_services_typesystemservice_downloadjson", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/__tests__/beapRunAutomationResult.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_tests_beaprunautomationresult_test", + "target": "apps_extension_chromium_src_services_beaprunautomationresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/__tests__/beapRunAutomationResult.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_tests_beaprunautomationresult_test", + "target": "apps_extension_chromium_src_services_beaprunautomationresult_beap_automation_no_mode_trigger_msg", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/__tests__/beapRunAutomationResult.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_tests_beaprunautomationresult_test", + "target": "apps_extension_chromium_src_services_beaprunautomationresult_interpretbeapautomationmoderun", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/__tests__/modeIntervalScheduler.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_tests_modeintervalscheduler_test", + "target": "apps_extension_chromium_src_services_modeintervalscheduler", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/__tests__/modeIntervalScheduler.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_tests_modeintervalscheduler_test", + "target": "apps_extension_chromium_src_services_modeintervalscheduler_modeintervalalarmname", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/__tests__/modeIntervalScheduler.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_tests_modeintervalscheduler_test", + "target": "apps_extension_chromium_src_services_modeintervalscheduler_modeneedsintervalrun", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/__tests__/modeIntervalScheduler.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_tests_modeintervalscheduler_test", + "target": "apps_extension_chromium_src_services_modeintervalscheduler_parsemodeidfromintervalalarm", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/__tests__/modeIntervalScheduler.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_tests_modeintervalscheduler_test", + "target": "apps_extension_chromium_src_services_modeintervalscheduler_syncmodeintervalschedulers", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/__tests__/modeIntervalScheduler.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_tests_modeintervalscheduler_test", + "target": "apps_extension_chromium_src_services_tests_modeintervalscheduler_test_custommode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/__tests__/modeIntervalScheduler.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_tests_modeintervalscheduler_test", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/__tests__/modeIntervalScheduler.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_tests_modeintervalscheduler_test", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodedefinition", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/__tests__/modeIntervalScheduler.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_tests_modeintervalscheduler_test", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/__tests__/modeIntervalScheduler.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_tests_modeintervalscheduler_test", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin_createdefaultscamwatchdogbuiltinmode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/__tests__/modeSessionRunInFlightExecute.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_tests_modesessionruninflightexecute_test", + "target": "apps_extension_chromium_src_services_moderunexecution", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/__tests__/modeSessionRunInFlightExecute.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_tests_modesessionruninflightexecute_test", + "target": "apps_extension_chromium_src_services_moderunexecution_executemoderunagents", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/__tests__/modeSessionRunInFlightExecute.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_tests_modesessionruninflightexecute_test", + "target": "apps_extension_chromium_src_services_modesessionruninflightexecute", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/__tests__/modeSessionRunInFlightExecute.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_tests_modesessionruninflightexecute_test", + "target": "apps_extension_chromium_src_services_modesessionruninflightexecute_executemodesessionrunwithinflightguard", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/__tests__/modeSessionRunInFlightExecute.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_tests_modesessionruninflightexecute_test", + "target": "apps_extension_chromium_src_services_modesessionruninflightexecute_mode_run_hard_timeout_ms", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/__tests__/modeSessionRunInFlightExecute.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_tests_modesessionruninflightexecute_test", + "target": "apps_extension_chromium_src_services_modesessionruninflightexecute_mode_run_timed_out_error", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/__tests__/modeSessionRunResultReporting.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_tests_modesessionrunresultreporting_test", + "target": "apps_extension_chromium_src_services_modesessionrunresultreporting", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/__tests__/modeSessionRunResultReporting.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_tests_modesessionrunresultreporting_test", + "target": "apps_extension_chromium_src_services_modesessionrunresultreporting_reportmodesessionrunresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/__tests__/runModeAllocatedSessionAutomation.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_tests_runmodeallocatedsessionautomation_test", + "target": "apps_extension_chromium_src_services_custommodesclient", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/__tests__/runModeAllocatedSessionAutomation.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_tests_runmodeallocatedsessionautomation_test", + "target": "apps_extension_chromium_src_services_custommodesclient_custommodesclient", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/__tests__/runModeAllocatedSessionAutomation.test.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_tests_runmodeallocatedsessionautomation_test", + "target": "apps_extension_chromium_src_services_fetchorchestratorsession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/__tests__/runModeAllocatedSessionAutomation.test.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_tests_runmodeallocatedsessionautomation_test", + "target": "apps_extension_chromium_src_services_fetchorchestratorsession_fetchorchestratorsession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/__tests__/runModeAllocatedSessionAutomation.test.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_tests_runmodeallocatedsessionautomation_test", + "target": "apps_extension_chromium_src_services_presentorchestratordisplaygridsession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/__tests__/runModeAllocatedSessionAutomation.test.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_tests_runmodeallocatedsessionautomation_test", + "target": "apps_extension_chromium_src_services_presentorchestratordisplaygridsession_maybepresentorchestratordisplaygridsession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/__tests__/runModeAllocatedSessionAutomation.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_tests_runmodeallocatedsessionautomation_test", + "target": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/__tests__/runModeAllocatedSessionAutomation.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_tests_runmodeallocatedsessionautomation_test", + "target": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation_modehasallocatedsession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/__tests__/runModeAllocatedSessionAutomation.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_tests_runmodeallocatedsessionautomation_test", + "target": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation_resolvemodeallocatedsessionrun", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/__tests__/runModeAllocatedSessionAutomation.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_tests_runmodeallocatedsessionautomation_test", + "target": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation_runmodeallocatedsessionautomation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/__tests__/runModeAllocatedSessionAutomation.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_tests_runmodeallocatedsessionautomation_test", + "target": "apps_extension_chromium_src_services_sessionsurfaceresolver", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/__tests__/runModeAllocatedSessionAutomation.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_tests_runmodeallocatedsessionautomation_test", + "target": "apps_extension_chromium_src_services_sessionsurfaceresolver_findopensessionsurface", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/__tests__/runModeAllocatedSessionAutomation.test.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_tests_runmodeallocatedsessionautomation_test", + "target": "apps_extension_chromium_src_services_tests_runmodeallocatedsessionautomation_test_custommode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/__tests__/runModeAllocatedSessionAutomation.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_tests_runmodeallocatedsessionautomation_test", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/__tests__/runModeAllocatedSessionAutomation.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_tests_runmodeallocatedsessionautomation_test", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodedefinition", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/__tests__/runModeAllocatedSessionAutomation.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_tests_runmodeallocatedsessionautomation_test", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/__tests__/runModeAllocatedSessionAutomation.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_tests_runmodeallocatedsessionautomation_test", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin_createdefaultscamwatchdogbuiltinmode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/__tests__/sessionImportArtefactUnwrap.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_tests_sessionimportartefactunwrap_test", + "target": "apps_extension_chromium_src_services_sessionimportartefactunwrap", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/__tests__/sessionImportArtefactUnwrap.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_tests_sessionimportartefactunwrap_test", + "target": "apps_extension_chromium_src_services_sessionimportartefactunwrap_isorchestratorsessioncontent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/__tests__/sessionImportArtefactUnwrap.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_tests_sessionimportartefactunwrap_test", + "target": "apps_extension_chromium_src_services_sessionimportartefactunwrap_issessionimportartefactwrapper", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/__tests__/sessionImportArtefactUnwrap.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_tests_sessionimportartefactunwrap_test", + "target": "apps_extension_chromium_src_services_sessionimportartefactunwrap_orchestratorsessioncontenttotabimport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/__tests__/sessionImportArtefactUnwrap.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_tests_sessionimportartefactunwrap_test", + "target": "apps_extension_chromium_src_services_sessionimportartefactunwrap_unwrapsessionimportpayloadfortab", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/beapRunAutomationResult.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_beaprunautomationresult", + "target": "apps_extension_chromium_src_services_beaprunautomationresult_beap_automation_no_mode_trigger_msg", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/beapRunAutomationResult.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_beaprunautomationresult", + "target": "apps_extension_chromium_src_services_beaprunautomationresult_beapautomationmoderunerr", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/beapRunAutomationResult.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_beaprunautomationresult", + "target": "apps_extension_chromium_src_services_beaprunautomationresult_beapautomationmoderunok", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/beapRunAutomationResult.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_beaprunautomationresult", + "target": "apps_extension_chromium_src_services_beaprunautomationresult_interpretbeapautomationmoderun", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/beapRunAutomationResult.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_beaprunautomationresult", + "target": "apps_extension_chromium_src_services_beaprunautomationresult_moderunagentsresultlite", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeSessionRunInFlightExecute.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modesessionruninflightexecute", + "target": "apps_extension_chromium_src_services_beaprunautomationresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeSessionRunInFlightExecute.ts", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modesessionruninflightexecute_executemodesessionrunwithinflightguard", + "target": "apps_extension_chromium_src_services_beaprunautomationresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeSessionRunInFlightExecute.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modesessionruninflightexecute", + "target": "apps_extension_chromium_src_services_beaprunautomationresult_beapautomationmoderunok", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeSessionRunInFlightExecute.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modesessionruninflightexecute", + "target": "apps_extension_chromium_src_services_beaprunautomationresult_beapautomationmoderunerr", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/services/modeSessionRunInFlightExecute.ts", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modesessionruninflightexecute_executemodesessionrunwithinflightguard", + "target": "apps_extension_chromium_src_services_beaprunautomationresult_interpretbeapautomationmoderun" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/customModesClient.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_custommodesclient", + "target": "apps_extension_chromium_src_services_custommodesclient_custommodesclient", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/customModesClient.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_custommodesclient", + "target": "apps_extension_chromium_src_services_custommodesclient_custommodesmigrationorigin", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/customModesClient.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_custommodesclient", + "target": "apps_extension_chromium_src_services_custommodesclient_custommodesmigrationstatusresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/customModesClient.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_custommodesclient", + "target": "apps_extension_chromium_src_services_custommodesclient_custommodesstoreresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/customModesClient.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_custommodesclient", + "target": "apps_extension_chromium_src_services_custommodesclient_parsemigrationstatusresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/customModesClient.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_custommodesclient", + "target": "apps_extension_chromium_src_services_custommodesclient_parsemodesresponse", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/customModesClient.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_custommodesclient", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/customModesClient.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_custommodesclient", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodedefinition", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/customModesClient.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_custommodesclient", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodedraft", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/customModesMigration.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_custommodesmigration", + "target": "apps_extension_chromium_src_services_custommodesclient", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeIntervalScheduler.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modeintervalscheduler", + "target": "apps_extension_chromium_src_services_custommodesclient", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation", + "target": "apps_extension_chromium_src_services_custommodesclient", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useCustomModesStore.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_usecustommodesstore", + "target": "apps_extension_chromium_src_services_custommodesclient", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/customModesMigration.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_custommodesmigration", + "target": "apps_extension_chromium_src_services_custommodesclient_custommodesmigrationorigin", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/customModesMigration.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_custommodesmigration", + "target": "apps_extension_chromium_src_services_custommodesclient_custommodesclient", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeIntervalScheduler.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modeintervalscheduler", + "target": "apps_extension_chromium_src_services_custommodesclient_custommodesclient", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation", + "target": "apps_extension_chromium_src_services_custommodesclient_custommodesclient", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useCustomModesStore.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_usecustommodesstore", + "target": "apps_extension_chromium_src_services_custommodesclient_custommodesclient", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/customModesMigration.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_custommodesmigration", + "target": "apps_extension_chromium_src_services_custommodesmigration_getmigrationstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/customModesMigration.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_custommodesmigration", + "target": "apps_extension_chromium_src_services_custommodesmigration_importmodes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/customModesMigration.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_custommodesmigration", + "target": "apps_extension_chromium_src_services_custommodesmigration_iselectrondashboard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/customModesMigration.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_custommodesmigration", + "target": "apps_extension_chromium_src_services_custommodesmigration_runcustommodesmigrationifneeded", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/customModesMigration.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_custommodesmigration", + "target": "apps_extension_chromium_src_services_custommodesmigration_verifyimportedmodes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/customModesMigration.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_custommodesmigration", + "target": "apps_extension_chromium_src_services_custommodesmigration_warniflegacycustommodeslocalstoragereappears", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/customModesMigration.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_custommodesmigration", + "target": "apps_extension_chromium_src_shared_ui_custommodepersistence", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/customModesMigration.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_custommodesmigration", + "target": "apps_extension_chromium_src_shared_ui_custommodepersistence_custom_modes_persist_key", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/customModesMigration.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_custommodesmigration", + "target": "apps_extension_chromium_src_shared_ui_custommodepersistence_loadcustommodesfromlocalstoragekey", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/customModesMigration.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_custommodesmigration", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/customModesMigration.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_custommodesmigration", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodedefinition", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useCustomModesStore.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_usecustommodesstore", + "target": "apps_extension_chromium_src_services_custommodesmigration", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/customModesMigration.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_custommodesmigration_getmigrationstatus", + "target": "apps_extension_chromium_src_services_custommodesmigration_iselectrondashboard", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/customModesMigration.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_custommodesmigration_importmodes", + "target": "apps_extension_chromium_src_services_custommodesmigration_iselectrondashboard", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/customModesMigration.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_custommodesmigration_runcustommodesmigrationifneeded", + "target": "apps_extension_chromium_src_services_custommodesmigration_getmigrationstatus", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/customModesMigration.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_custommodesmigration_runcustommodesmigrationifneeded", + "target": "apps_extension_chromium_src_services_custommodesmigration_importmodes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/customModesMigration.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_custommodesmigration_runcustommodesmigrationifneeded", + "target": "apps_extension_chromium_src_services_custommodesmigration_verifyimportedmodes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/services/customModesMigration.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_custommodesmigration_runcustommodesmigrationifneeded", + "target": "apps_extension_chromium_src_shared_ui_custommodepersistence_loadcustommodesfromlocalstoragekey" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useCustomModesStore.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_usecustommodesstore", + "target": "apps_extension_chromium_src_services_custommodesmigration_runcustommodesmigrationifneeded", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useCustomModesStore.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_usecustommodesstore", + "target": "apps_extension_chromium_src_services_custommodesmigration_warniflegacycustommodeslocalstoragereappears", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/displayGridAgentSelection.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_displaygridagentselection", + "target": "apps_extension_chromium_src_services_displaygridagentselection_boxforslotnumber", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/displayGridAgentSelection.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_displaygridagentselection", + "target": "apps_extension_chromium_src_services_displaygridagentselection_firstgridwithearliestagentsetup", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/displayGridAgentSelection.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_displaygridagentselection", + "target": "apps_extension_chromium_src_services_displaygridagentselection_isprovidermodelconfigured", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/displayGridAgentSelection.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_displaygridagentselection", + "target": "apps_extension_chromium_src_services_processflow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/displayGridAgentSelection.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_displaygridagentselection", + "target": "apps_extension_chromium_src_services_processflow_agentbox", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/displayGridAgentSelection.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_displaygridagentselection", + "target": "apps_extension_chromium_src_services_processflow_displaygrid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionActivationForOptimization.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionactivationforoptimization", + "target": "apps_extension_chromium_src_services_displaygridagentselection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/displayGridAgentSelection.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_displaygridagentselection_firstgridwithearliestagentsetup", + "target": "apps_extension_chromium_src_services_displaygridagentselection_isprovidermodelconfigured", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/displayGridAgentSelection.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_displaygridagentselection_firstgridwithearliestagentsetup", + "target": "apps_extension_chromium_src_services_displaygridagentselection_boxforslotnumber", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionActivationForOptimization.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionactivationforoptimization", + "target": "apps_extension_chromium_src_services_displaygridagentselection_firstgridwithearliestagentsetup", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionActivationForOptimization.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionactivationforoptimization_runactivation", + "target": "apps_extension_chromium_src_services_displaygridagentselection_firstgridwithearliestagentsetup", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/domSnapshotBridge.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_domsnapshotbridge", + "target": "apps_extension_chromium_src_services_domsnapshotbridge_requestdomsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/domSnapshotBridge.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_domsnapshotbridge", + "target": "apps_extension_chromium_src_services_domsnapshotcapture", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/domSnapshotBridge.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_domsnapshotbridge", + "target": "apps_extension_chromium_src_services_domsnapshotcapture_domsnapshotcaptureinjected", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/domSnapshotBridge.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_domsnapshotbridge", + "target": "apps_extension_chromium_src_types_optimizationtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/domSnapshotBridge.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_domsnapshotbridge", + "target": "apps_extension_chromium_src_types_optimizationtypes_domsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "collection", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/extension-chromium/src/services/domSnapshotBridge.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_domsnapshotbridge_requestdomsnapshot", + "target": "apps_extension_chromium_src_services_domsnapshotcapture_domsnapshotcaptureinjected" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/domSnapshotCapture.ts", + "source_location": "L220", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_domsnapshotcapture", + "target": "apps_extension_chromium_src_services_domsnapshotcapture_capturedomsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/domSnapshotCapture.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_domsnapshotcapture", + "target": "apps_extension_chromium_src_services_domsnapshotcapture_domsnapshotcaptureinjected", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/domSnapshotCapture.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_domsnapshotcapture", + "target": "apps_extension_chromium_src_types_optimizationtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/domSnapshotCapture.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_domsnapshotcapture", + "target": "apps_extension_chromium_src_types_optimizationtypes_domslotcapture", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/domSnapshotCapture.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_domsnapshotcapture", + "target": "apps_extension_chromium_src_types_optimizationtypes_domsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/domSnapshotCapture.ts", + "source_location": "L221", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_domsnapshotcapture_capturedomsnapshot", + "target": "apps_extension_chromium_src_services_domsnapshotcapture_domsnapshotcaptureinjected", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/domSnapshotMessageTypes.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_domsnapshotmessagetypes", + "target": "apps_extension_chromium_src_services_domsnapshotmessagetypes_capture_dom_snapshot_message_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/ensureLaunchSecretForElectronHttp.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_ensurelaunchsecretforelectronhttp", + "target": "apps_extension_chromium_src_services_ensurelaunchsecretforelectronhttp_ensurelaunchsecretforelectronhttp", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/ensureLaunchSecretForElectronHttp.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_ensurelaunchsecretforelectronhttp", + "target": "apps_extension_chromium_src_services_ensurelaunchsecretforelectronhttp_fetchwithelectronhttpready", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchOptimizerTrigger.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchoptimizertrigger", + "target": "apps_extension_chromium_src_services_ensurelaunchsecretforelectronhttp", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchOrchestratorSession.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchorchestratorsession", + "target": "apps_extension_chromium_src_services_ensurelaunchsecretforelectronhttp", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchTriggerProjects.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchtriggerprojects", + "target": "apps_extension_chromium_src_services_ensurelaunchsecretforelectronhttp", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeModelWarmOnTrigger.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modemodelwarmontrigger", + "target": "apps_extension_chromium_src_services_ensurelaunchsecretforelectronhttp", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_services_ensurelaunchsecretforelectronhttp", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchOptimizerTrigger.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchoptimizertrigger", + "target": "apps_extension_chromium_src_services_ensurelaunchsecretforelectronhttp_ensurelaunchsecretforelectronhttp", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/services/fetchOptimizerTrigger.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchoptimizertrigger_getoptimizerstatus", + "target": "apps_extension_chromium_src_services_ensurelaunchsecretforelectronhttp_ensurelaunchsecretforelectronhttp" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/services/fetchOptimizerTrigger.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchoptimizertrigger_setoptimizercontinuous", + "target": "apps_extension_chromium_src_services_ensurelaunchsecretforelectronhttp_ensurelaunchsecretforelectronhttp" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/services/fetchOptimizerTrigger.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchoptimizertrigger_triggeroptimizersnapshot", + "target": "apps_extension_chromium_src_services_ensurelaunchsecretforelectronhttp_ensurelaunchsecretforelectronhttp" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchOrchestratorSession.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchorchestratorsession", + "target": "apps_extension_chromium_src_services_ensurelaunchsecretforelectronhttp_ensurelaunchsecretforelectronhttp", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchOrchestratorSession.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchorchestratorsession_orchestratorgetheaders", + "target": "apps_extension_chromium_src_services_ensurelaunchsecretforelectronhttp_ensurelaunchsecretforelectronhttp", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchTriggerProjects.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchtriggerprojects", + "target": "apps_extension_chromium_src_services_ensurelaunchsecretforelectronhttp_ensurelaunchsecretforelectronhttp", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/services/fetchTriggerProjects.ts", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchtriggerprojects_fetchtriggerprojects", + "target": "apps_extension_chromium_src_services_ensurelaunchsecretforelectronhttp_ensurelaunchsecretforelectronhttp" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeModelWarmOnTrigger.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modemodelwarmontrigger", + "target": "apps_extension_chromium_src_services_ensurelaunchsecretforelectronhttp_ensurelaunchsecretforelectronhttp", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeModelWarmOnTrigger.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modemodelwarmontrigger_resolvelaunchsecret", + "target": "apps_extension_chromium_src_services_ensurelaunchsecretforelectronhttp_ensurelaunchsecretforelectronhttp", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_services_ensurelaunchsecretforelectronhttp_ensurelaunchsecretforelectronhttp", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution_defaultgetfetchheaders", + "target": "apps_extension_chromium_src_services_ensurelaunchsecretforelectronhttp_ensurelaunchsecretforelectronhttp", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchOptimizerTrigger.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchoptimizertrigger", + "target": "apps_extension_chromium_src_services_ensurelaunchsecretforelectronhttp_fetchwithelectronhttpready", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/services/fetchOptimizerTrigger.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchoptimizertrigger_getoptimizerstatus", + "target": "apps_extension_chromium_src_services_ensurelaunchsecretforelectronhttp_fetchwithelectronhttpready" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/services/fetchOptimizerTrigger.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchoptimizertrigger_setoptimizercontinuous", + "target": "apps_extension_chromium_src_services_ensurelaunchsecretforelectronhttp_fetchwithelectronhttpready" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/services/fetchOptimizerTrigger.ts", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchoptimizertrigger_triggeroptimizersnapshot", + "target": "apps_extension_chromium_src_services_ensurelaunchsecretforelectronhttp_fetchwithelectronhttpready" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchTriggerProjects.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchtriggerprojects", + "target": "apps_extension_chromium_src_services_ensurelaunchsecretforelectronhttp_fetchwithelectronhttpready", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/services/fetchTriggerProjects.ts", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchtriggerprojects_fetchtriggerprojects", + "target": "apps_extension_chromium_src_services_ensurelaunchsecretforelectronhttp_fetchwithelectronhttpready" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchOptimizerTrigger.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchoptimizertrigger", + "target": "apps_extension_chromium_src_services_fetchoptimizertrigger_buildheaders", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchOptimizerTrigger.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchoptimizertrigger", + "target": "apps_extension_chromium_src_services_fetchoptimizertrigger_dispatchoptimizationtoast", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchOptimizerTrigger.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchoptimizertrigger", + "target": "apps_extension_chromium_src_services_fetchoptimizertrigger_getlaunchsecret", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchOptimizerTrigger.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchoptimizertrigger", + "target": "apps_extension_chromium_src_services_fetchoptimizertrigger_getoptimizerstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchOptimizerTrigger.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchoptimizertrigger", + "target": "apps_extension_chromium_src_services_fetchoptimizertrigger_resolveelectronfallback", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchOptimizerTrigger.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchoptimizertrigger", + "target": "apps_extension_chromium_src_services_fetchoptimizertrigger_setoptimizercontinuous", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchOptimizerTrigger.ts", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchoptimizertrigger", + "target": "apps_extension_chromium_src_services_fetchoptimizertrigger_triggeroptimizersnapshot", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_services_fetchoptimizertrigger", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchOptimizerTrigger.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchoptimizertrigger_setoptimizercontinuous", + "target": "apps_extension_chromium_src_services_fetchoptimizertrigger_dispatchoptimizationtoast", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchOptimizerTrigger.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchoptimizertrigger_triggeroptimizersnapshot", + "target": "apps_extension_chromium_src_services_fetchoptimizertrigger_dispatchoptimizationtoast", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchOptimizerTrigger.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchoptimizertrigger_getlaunchsecret", + "target": "apps_extension_chromium_src_services_fetchoptimizertrigger_resolveelectronfallback", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchOptimizerTrigger.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchoptimizertrigger_getoptimizerstatus", + "target": "apps_extension_chromium_src_services_fetchoptimizertrigger_getlaunchsecret", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchOptimizerTrigger.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchoptimizertrigger_setoptimizercontinuous", + "target": "apps_extension_chromium_src_services_fetchoptimizertrigger_getlaunchsecret", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchOptimizerTrigger.ts", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchoptimizertrigger_triggeroptimizersnapshot", + "target": "apps_extension_chromium_src_services_fetchoptimizertrigger_getlaunchsecret", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchOptimizerTrigger.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchoptimizertrigger_getoptimizerstatus", + "target": "apps_extension_chromium_src_services_fetchoptimizertrigger_buildheaders", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchOptimizerTrigger.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchoptimizertrigger_setoptimizercontinuous", + "target": "apps_extension_chromium_src_services_fetchoptimizertrigger_buildheaders", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchOptimizerTrigger.ts", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchoptimizertrigger_triggeroptimizersnapshot", + "target": "apps_extension_chromium_src_services_fetchoptimizertrigger_buildheaders", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_services_fetchoptimizertrigger_triggeroptimizersnapshot", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L509", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrmultitriggerbar", + "target": "apps_extension_chromium_src_services_fetchoptimizertrigger_triggeroptimizersnapshot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchOrchestratorSession.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchorchestratorsession", + "target": "apps_extension_chromium_src_services_fetchorchestratorsession_fetchorchestratorsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchOrchestratorSession.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchorchestratorsession", + "target": "apps_extension_chromium_src_services_fetchorchestratorsession_fetchorchestratorsessionresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchOrchestratorSession.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchorchestratorsession", + "target": "apps_extension_chromium_src_services_fetchorchestratorsession_orchestratorgetheaders", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchOrchestratorSession.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchorchestratorsession", + "target": "apps_extension_chromium_src_services_fetchorchestratorsession_orchestratorsessionjson", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation", + "target": "apps_extension_chromium_src_services_fetchorchestratorsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchOrchestratorSession.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchorchestratorsession_fetchorchestratorsession", + "target": "apps_extension_chromium_src_services_fetchorchestratorsession_orchestratorgetheaders", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation", + "target": "apps_extension_chromium_src_services_fetchorchestratorsession_fetchorchestratorsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation_runmodeallocatedsessionautomation", + "target": "apps_extension_chromium_src_services_fetchorchestratorsession_fetchorchestratorsession" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchOrchestratorSessionsList.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchorchestratorsessionslist", + "target": "apps_extension_chromium_src_services_fetchorchestratorsessionslist_displaynameforsessionkey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchOrchestratorSessionsList.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchorchestratorsessionslist", + "target": "apps_extension_chromium_src_services_fetchorchestratorsessionslist_fetchorchestratorsessionsforwizard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchOrchestratorSessionsList.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchorchestratorsessionslist", + "target": "apps_extension_chromium_src_services_fetchorchestratorsessionslist_fetchorchestratorsessionsforwizardviahttp", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchOrchestratorSessionsList.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchorchestratorsessionslist", + "target": "apps_extension_chromium_src_services_fetchorchestratorsessionslist_orchestratorsessionlistentry", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchOrchestratorSessionsList.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchorchestratorsessionslist", + "target": "apps_extension_chromium_src_utils_sessiondisplaylabel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchOrchestratorSessionsList.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchorchestratorsessionslist", + "target": "apps_extension_chromium_src_utils_sessiondisplaylabel_sessiondisplaylabel", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepSession.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepsession", + "target": "apps_extension_chromium_src_services_fetchorchestratorsessionslist", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchOrchestratorSessionsList.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchorchestratorsessionslist_fetchorchestratorsessionsforwizard", + "target": "apps_extension_chromium_src_services_fetchorchestratorsessionslist_fetchorchestratorsessionsforwizardviahttp", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchOrchestratorSessionsList.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchorchestratorsessionslist_fetchorchestratorsessionsforwizardviahttp", + "target": "apps_extension_chromium_src_services_fetchorchestratorsessionslist_displaynameforsessionkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchOrchestratorSessionsList.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchorchestratorsessionslist_displaynameforsessionkey", + "target": "apps_extension_chromium_src_utils_sessiondisplaylabel_sessiondisplaylabel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchOrchestratorSessionsList.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchorchestratorsessionslist_fetchorchestratorsessionsforwizard", + "target": "apps_extension_chromium_src_services_fetchorchestratorsessionslist_displaynameforsessionkey", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepSession.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepsession", + "target": "apps_extension_chromium_src_services_fetchorchestratorsessionslist_fetchorchestratorsessionsforwizard", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepSession.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepsession_stepsession", + "target": "apps_extension_chromium_src_services_fetchorchestratorsessionslist_fetchorchestratorsessionsforwizard" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchTriggerProjects.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchtriggerprojects", + "target": "apps_extension_chromium_src_services_fetchtriggerprojects_buildheaders", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchTriggerProjects.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchtriggerprojects", + "target": "apps_extension_chromium_src_services_fetchtriggerprojects_defaultcomposershortcuttitle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchTriggerProjects.ts", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchtriggerprojects", + "target": "apps_extension_chromium_src_services_fetchtriggerprojects_fetchtriggerprojects", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchTriggerProjects.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchtriggerprojects", + "target": "apps_extension_chromium_src_services_fetchtriggerprojects_getlaunchsecret", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchTriggerProjects.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchtriggerprojects", + "target": "apps_extension_chromium_src_services_fetchtriggerprojects_istriggercomposershortcutid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchTriggerProjects.ts", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchtriggerprojects", + "target": "apps_extension_chromium_src_services_fetchtriggerprojects_parsecomposershortcuts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchTriggerProjects.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchtriggerprojects", + "target": "apps_extension_chromium_src_services_fetchtriggerprojects_parseprojectrows", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchTriggerProjects.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchtriggerprojects", + "target": "apps_extension_chromium_src_services_fetchtriggerprojects_resolveelectronfallback", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchTriggerProjects.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchtriggerprojects", + "target": "apps_extension_chromium_src_services_fetchtriggerprojects_trigger_composer_ids", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchTriggerProjects.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchtriggerprojects", + "target": "apps_extension_chromium_src_services_fetchtriggerprojects_triggerlistresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchTriggerProjects.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchtriggerprojects", + "target": "apps_extension_chromium_src_types_triggertypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchTriggerProjects.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchtriggerprojects", + "target": "apps_extension_chromium_src_types_triggertypes_triggercomposerentry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchTriggerProjects.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchtriggerprojects", + "target": "apps_extension_chromium_src_types_triggertypes_triggercomposershortcutid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchTriggerProjects.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchtriggerprojects", + "target": "apps_extension_chromium_src_types_triggertypes_triggerprojectentry", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_services_fetchtriggerprojects", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_services_fetchtriggerprojects", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchTriggerProjects.ts", + "source_location": "L137", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchtriggerprojects_fetchtriggerprojects", + "target": "apps_extension_chromium_src_services_fetchtriggerprojects_getlaunchsecret", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchTriggerProjects.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchtriggerprojects_getlaunchsecret", + "target": "apps_extension_chromium_src_services_fetchtriggerprojects_resolveelectronfallback", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchTriggerProjects.ts", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchtriggerprojects_fetchtriggerprojects", + "target": "apps_extension_chromium_src_services_fetchtriggerprojects_buildheaders", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchTriggerProjects.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchtriggerprojects_fetchtriggerprojects", + "target": "apps_extension_chromium_src_services_fetchtriggerprojects_parseprojectrows", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchTriggerProjects.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchtriggerprojects_parsecomposershortcuts", + "target": "apps_extension_chromium_src_services_fetchtriggerprojects_istriggercomposershortcutid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchTriggerProjects.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchtriggerprojects_parsecomposershortcuts", + "target": "apps_extension_chromium_src_services_fetchtriggerprojects_defaultcomposershortcuttitle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/fetchTriggerProjects.ts", + "source_location": "L153", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_fetchtriggerprojects_fetchtriggerprojects", + "target": "apps_extension_chromium_src_services_fetchtriggerprojects_parsecomposershortcuts", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_services_fetchtriggerprojects_fetchtriggerprojects", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L1810", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_services_fetchtriggerprojects_fetchtriggerprojects", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_services_fetchtriggerprojects_fetchtriggerprojects", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L171", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrmultitriggerbar", + "target": "apps_extension_chromium_src_services_fetchtriggerprojects_fetchtriggerprojects" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/localOllamaModels.ts", + "source_location": "L159", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_localollamamodels", + "target": "apps_extension_chromium_src_services_localollamamodels_escapehtmlattr", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/localOllamaModels.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_localollamamodels", + "target": "apps_extension_chromium_src_services_localollamamodels_fetchinstalledlocalmodelnames", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/localOllamaModels.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_localollamamodels", + "target": "apps_extension_chromium_src_services_localollamamodels_fetchollamamodelnamesfromendpoint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/localOllamaModels.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_localollamamodels", + "target": "apps_extension_chromium_src_services_localollamamodels_fetchwrchatselectormodelsfrombackend", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/localOllamaModels.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_localollamamodels", + "target": "apps_extension_chromium_src_services_localollamamodels_installedlocalmodelsresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/localOllamaModels.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_localollamamodels", + "target": "apps_extension_chromium_src_services_localollamamodels_unwrapstatuspayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/localOllamaModels.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_localollamamodels", + "target": "apps_extension_chromium_src_services_localollamamodels_wrchatselectormodelsresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/localOllamaModels.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_localollamamodels", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/localOllamaModels.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_localollamamodels", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_default_ollama_endpoint", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepModel.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepmodel", + "target": "apps_extension_chromium_src_services_localollamamodels", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/localOllamaModels.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_localollamamodels_fetchinstalledlocalmodelnames", + "target": "apps_extension_chromium_src_services_localollamamodels_unwrapstatuspayload", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/localOllamaModels.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_localollamamodels_fetchwrchatselectormodelsfrombackend", + "target": "apps_extension_chromium_src_services_localollamamodels_unwrapstatuspayload", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepModel.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepmodel", + "target": "apps_extension_chromium_src_services_localollamamodels_fetchollamamodelnamesfromendpoint", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepModel.tsx", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepmodel_stepmodel", + "target": "apps_extension_chromium_src_services_localollamamodels_fetchollamamodelnamesfromendpoint" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepModel.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepmodel", + "target": "apps_extension_chromium_src_services_localollamamodels_fetchinstalledlocalmodelnames", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepModel.tsx", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepmodel_stepmodel", + "target": "apps_extension_chromium_src_services_localollamamodels_fetchinstalledlocalmodelnames" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepModel.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepmodel", + "target": "apps_extension_chromium_src_services_localollamamodels_fetchwrchatselectormodelsfrombackend", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepModel.tsx", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepmodel_stepmodel", + "target": "apps_extension_chromium_src_services_localollamamodels_fetchwrchatselectormodelsfrombackend" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeIntervalRunner.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modeintervalrunner", + "target": "apps_extension_chromium_src_services_modeintervalrunner_stopallcustommodeintervalrunners", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeIntervalRunner.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modeintervalrunner", + "target": "apps_extension_chromium_src_services_modeintervalrunner_sync_mode_interval_schedulers_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeIntervalRunner.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modeintervalrunner", + "target": "apps_extension_chromium_src_services_modeintervalrunner_synccustommodeintervalrunners", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeIntervalRunner.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modeintervalrunner", + "target": "apps_extension_chromium_src_services_modeintervalscheduler", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeIntervalRunner.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modeintervalrunner", + "target": "apps_extension_chromium_src_services_modeintervalscheduler_modeneedsintervalrun", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeIntervalRunner.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modeintervalrunner", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeIntervalRunner.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modeintervalrunner", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodedefinition", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_services_modeintervalrunner", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_services_modeintervalrunner_synccustommodeintervalrunners", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L260", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrmultitriggerbar", + "target": "apps_extension_chromium_src_services_modeintervalrunner_synccustommodeintervalrunners" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeIntervalScheduler.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modeintervalscheduler", + "target": "apps_extension_chromium_src_services_modeintervalscheduler_clearallmodeintervalalarms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeIntervalScheduler.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modeintervalscheduler", + "target": "apps_extension_chromium_src_services_modeintervalscheduler_delayminutesforinterval", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeIntervalScheduler.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modeintervalscheduler", + "target": "apps_extension_chromium_src_services_modeintervalscheduler_getmodeintervalseconds", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeIntervalScheduler.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modeintervalscheduler", + "target": "apps_extension_chromium_src_services_modeintervalscheduler_intervalsecondsbymodeid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeIntervalScheduler.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modeintervalscheduler", + "target": "apps_extension_chromium_src_services_modeintervalscheduler_mode_interval_alarm_prefix", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeIntervalScheduler.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modeintervalscheduler", + "target": "apps_extension_chromium_src_services_modeintervalscheduler_modeintervalalarmname", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeIntervalScheduler.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modeintervalscheduler", + "target": "apps_extension_chromium_src_services_modeintervalscheduler_modeneedsintervalrun", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeIntervalScheduler.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modeintervalscheduler", + "target": "apps_extension_chromium_src_services_modeintervalscheduler_parsemodeidfromintervalalarm", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeIntervalScheduler.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modeintervalscheduler", + "target": "apps_extension_chromium_src_services_modeintervalscheduler_reschedulemodeintervalalarm", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeIntervalScheduler.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modeintervalscheduler", + "target": "apps_extension_chromium_src_services_modeintervalscheduler_schedulemodeintervalalarm", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeIntervalScheduler.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modeintervalscheduler", + "target": "apps_extension_chromium_src_services_modeintervalscheduler_syncmodeintervalschedulers", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeIntervalScheduler.ts", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modeintervalscheduler", + "target": "apps_extension_chromium_src_services_modeintervalscheduler_syncmodeintervalschedulersfromstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeIntervalScheduler.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modeintervalscheduler", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeIntervalScheduler.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modeintervalscheduler", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodedefinition", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeIntervalScheduler.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modeintervalscheduler_schedulemodeintervalalarm", + "target": "apps_extension_chromium_src_services_modeintervalscheduler_modeintervalalarmname", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeIntervalScheduler.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modeintervalscheduler_syncmodeintervalschedulers", + "target": "apps_extension_chromium_src_services_modeintervalscheduler_modeintervalalarmname", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeIntervalScheduler.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modeintervalscheduler_syncmodeintervalschedulers", + "target": "apps_extension_chromium_src_services_modeintervalscheduler_modeneedsintervalrun", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeIntervalScheduler.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modeintervalscheduler_schedulemodeintervalalarm", + "target": "apps_extension_chromium_src_services_modeintervalscheduler_delayminutesforinterval", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeIntervalScheduler.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modeintervalscheduler_reschedulemodeintervalalarm", + "target": "apps_extension_chromium_src_services_modeintervalscheduler_schedulemodeintervalalarm", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeIntervalScheduler.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modeintervalscheduler_syncmodeintervalschedulers", + "target": "apps_extension_chromium_src_services_modeintervalscheduler_schedulemodeintervalalarm", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeIntervalScheduler.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modeintervalscheduler_syncmodeintervalschedulersfromstore", + "target": "apps_extension_chromium_src_services_modeintervalscheduler_syncmodeintervalschedulers", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeModelWarmOnTrigger.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modemodelwarmontrigger", + "target": "apps_extension_chromium_src_services_modemodelwarmontrigger_modewarmtrigger", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeModelWarmOnTrigger.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modemodelwarmontrigger", + "target": "apps_extension_chromium_src_services_modemodelwarmontrigger_requestmodemodelwarmontrigger", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeModelWarmOnTrigger.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modemodelwarmontrigger", + "target": "apps_extension_chromium_src_services_modemodelwarmontrigger_resolvelaunchsecret", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/WrChatWatchdogButton.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrchatwatchdogbutton", + "target": "apps_extension_chromium_src_services_modemodelwarmontrigger", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_services_modemodelwarmontrigger", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeModelWarmOnTrigger.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modemodelwarmontrigger_requestmodemodelwarmontrigger", + "target": "apps_extension_chromium_src_services_modemodelwarmontrigger_resolvelaunchsecret", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/WrChatWatchdogButton.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrchatwatchdogbutton", + "target": "apps_extension_chromium_src_services_modemodelwarmontrigger_requestmodemodelwarmontrigger", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/WrChatWatchdogButton.tsx", + "source_location": "L262", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrchatwatchdogbutton_wrchatwatchdogbutton", + "target": "apps_extension_chromium_src_services_modemodelwarmontrigger_requestmodemodelwarmontrigger" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_services_modemodelwarmontrigger_requestmodemodelwarmontrigger", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L371", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrmultitriggerbar", + "target": "apps_extension_chromium_src_services_modemodelwarmontrigger_requestmodemodelwarmontrigger" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_services_moderunexecution_defaultgetfetchheaders", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L309", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_services_moderunexecution_executemoderunagents", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_services_moderunexecution_executemoderunagentsoptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_services_moderunexecution_executemoderunagentsresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_services_moderunexecution_fetchwrchatavailablemodelsformoderun", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_services_moderunexecution_moderunagentexecutionresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_services_moderunexecution_moderunllmsubmitresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_services_moderunexecution_resolvemoderunhostroutemodelid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_services_moderunexecution_resolvemoderunwrchatmodelid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L390", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_services_moderunexecution_runagentmatchllm", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L370", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_services_moderunexecution_runoneparams", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L168", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_services_moderunexecution_submitmoderunagentllm", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_services_processflow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_services_processflow_agentmatch", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_services_processflow_brainresolution", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_services_processflow_llmrequestbody", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_services_processflow_loadagentboxesfromsession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_services_processflow_loadagentsfromsession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_services_processflow_matchagentsformoderun", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_services_processflow_resolveagentboxinference", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_services_processflow_updateagentboxoutput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_services_processflow_wrapinputforagent", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_shared_ui_custommoderuntime", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_shared_ui_custommoderuntime_custommoderuntimeconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_ui_components_wrchatsurface", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_ui_components_wrchatsurface_wrchatsurface", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_utils_prependchatfocustolastuser", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution", + "target": "apps_extension_chromium_src_utils_prependchatfocustolastuser_prependhiddencontexttolastusercontent", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeSessionRunInFlightExecute.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modesessionruninflightexecute_executemodesessionrunwithinflightguard", + "target": "apps_extension_chromium_src_services_moderunexecution", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/tests/modeRunExecution.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_tests_moderunexecution_test", + "target": "apps_extension_chromium_src_services_moderunexecution", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L478", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution_runagentmatchllm", + "target": "apps_extension_chromium_src_services_moderunexecution_resolvemoderunhostroutemodelid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L484", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution_runagentmatchllm", + "target": "apps_extension_chromium_src_services_moderunexecution_submitmoderunagentllm", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L345", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution_executemoderunagents", + "target": "apps_extension_chromium_src_services_moderunexecution_runagentmatchllm", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L334", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution_executemoderunagents", + "target": "apps_extension_chromium_src_services_processflow_loadagentboxesfromsession" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L333", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution_executemoderunagents", + "target": "apps_extension_chromium_src_services_processflow_loadagentsfromsession" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L335", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution_executemoderunagents", + "target": "apps_extension_chromium_src_services_processflow_matchagentsformoderun" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/tests/modeRunExecution.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_tests_moderunexecution_test", + "target": "apps_extension_chromium_src_services_moderunexecution_executemoderunagents", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L475", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution_runagentmatchllm", + "target": "apps_extension_chromium_src_services_moderunexecution_runoneparams" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L397", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution_runagentmatchllm", + "target": "apps_extension_chromium_src_services_processflow_loadagentsfromsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L404", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution_runagentmatchllm", + "target": "apps_extension_chromium_src_services_processflow_resolveagentboxinference", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L418", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution_runagentmatchllm", + "target": "apps_extension_chromium_src_services_processflow_updateagentboxoutput", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L403", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution_runagentmatchllm", + "target": "apps_extension_chromium_src_services_processflow_wrapinputforagent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeRunExecution.ts", + "source_location": "L439", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_moderunexecution_runagentmatchllm", + "target": "apps_extension_chromium_src_utils_prependchatfocustolastuser_prependhiddencontexttolastusercontent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeSessionRunInFlightExecute.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modesessionruninflightexecute", + "target": "apps_extension_chromium_src_services_modesessionruninflightexecute_executemodesessionrunwithinflightguard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeSessionRunInFlightExecute.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modesessionruninflightexecute", + "target": "apps_extension_chromium_src_services_modesessionruninflightexecute_mode_run_hard_timeout_ms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeSessionRunInFlightExecute.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modesessionruninflightexecute", + "target": "apps_extension_chromium_src_services_modesessionruninflightexecute_mode_run_timed_out_error", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeSessionRunInFlightExecute.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modesessionruninflightexecute", + "target": "apps_extension_chromium_src_services_modesessionruninflightexecute_modesessionruninflightresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeSessionRunInFlightExecute.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modesessionruninflightexecute", + "target": "apps_extension_chromium_src_services_modesessionruninflightexecute_notifymodesessionruntimedout", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeSessionRunInFlightExecute.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modesessionruninflightexecute", + "target": "apps_extension_chromium_src_services_modesessionruninflightexecute_raceexecutemoderunagentswithhardtimeout", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeSessionRunInFlightExecute.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modesessionruninflightexecute", + "target": "apps_extension_chromium_src_shared_ui_custommoderuntime", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeSessionRunInFlightExecute.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modesessionruninflightexecute", + "target": "apps_extension_chromium_src_shared_ui_custommoderuntime_custommoderuntimeconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeSessionRunInFlightExecute.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modesessionruninflightexecute", + "target": "apps_extension_chromium_src_ui_components_wrchatsurface", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeSessionRunInFlightExecute.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modesessionruninflightexecute", + "target": "apps_extension_chromium_src_ui_components_wrchatsurface_wrchatsurface", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeSessionRunInFlightExecute.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modesessionruninflightexecute_executemodesessionrunwithinflightguard", + "target": "apps_extension_chromium_src_services_modesessionruninflightexecute_notifymodesessionruntimedout", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeSessionRunInFlightExecute.ts", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modesessionruninflightexecute_executemodesessionrunwithinflightguard", + "target": "apps_extension_chromium_src_services_modesessionruninflightexecute_raceexecutemoderunagentswithhardtimeout", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeSessionRunResultReporting.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modesessionrunresultreporting", + "target": "apps_extension_chromium_src_services_modesessionrunresultreporting_reportmodesessionrunresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeSessionRunResultReporting.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modesessionrunresultreporting", + "target": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/modeSessionRunResultReporting.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_modesessionrunresultreporting", + "target": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation_runmodeallocatedsessionautomationresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_services_modesessionrunresultreporting", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_services_modesessionrunresultreporting_reportmodesessionrunresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L374", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrmultitriggerbar", + "target": "apps_extension_chromium_src_services_modesessionrunresultreporting_reportmodesessionrunresult" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/optimizationSidebarChatSync.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_optimizationsidebarchatsync", + "target": "apps_extension_chromium_src_services_optimizationsidebarchatsync_appendoptimizationsidebarchatlog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/optimizationSidebarChatSync.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_optimizationsidebarchatsync", + "target": "apps_extension_chromium_src_services_optimizationsidebarchatsync_optimizationsidebarchatlogentry", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L4120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_services_optimizationsidebarchatsync", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L1182", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_popupchatview", + "target": "apps_extension_chromium_src_services_optimizationsidebarchatsync", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/presentOrchestratorDisplayGridSession.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_presentorchestratordisplaygridsession", + "target": "apps_extension_chromium_src_services_presentorchestratordisplaygridsession_computenextboxnumber", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/presentOrchestratorDisplayGridSession.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_presentorchestratordisplaygridsession", + "target": "apps_extension_chromium_src_services_presentorchestratordisplaygridsession_gridfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/presentOrchestratorDisplayGridSession.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_presentorchestratordisplaygridsession", + "target": "apps_extension_chromium_src_services_presentorchestratordisplaygridsession_maybepresentorchestratordisplaygridsession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/presentOrchestratorDisplayGridSession.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_presentorchestratordisplaygridsession", + "target": "apps_extension_chromium_src_services_sessionsurfaceresolver", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/presentOrchestratorDisplayGridSession.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_presentorchestratordisplaygridsession", + "target": "apps_extension_chromium_src_services_sessionsurfaceresolver_isgriddisplayurl", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/presentOrchestratorDisplayGridSession.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_presentorchestratordisplaygridsession", + "target": "apps_extension_chromium_src_services_sessionsurfaceresolver_urlmatchessessionkey", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation", + "target": "apps_extension_chromium_src_services_presentorchestratordisplaygridsession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionActivationForOptimization.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionactivationforoptimization", + "target": "apps_extension_chromium_src_services_presentorchestratordisplaygridsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/presentOrchestratorDisplayGridSession.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_presentorchestratordisplaygridsession_maybepresentorchestratordisplaygridsession", + "target": "apps_extension_chromium_src_services_presentorchestratordisplaygridsession_gridfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/presentOrchestratorDisplayGridSession.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_presentorchestratordisplaygridsession_maybepresentorchestratordisplaygridsession", + "target": "apps_extension_chromium_src_services_presentorchestratordisplaygridsession_computenextboxnumber", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/services/presentOrchestratorDisplayGridSession.ts", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_presentorchestratordisplaygridsession_maybepresentorchestratordisplaygridsession", + "target": "apps_extension_chromium_src_services_sessionsurfaceresolver_isgriddisplayurl" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/services/presentOrchestratorDisplayGridSession.ts", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_presentorchestratordisplaygridsession_maybepresentorchestratordisplaygridsession", + "target": "apps_extension_chromium_src_services_sessionsurfaceresolver_urlmatchessessionkey" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation", + "target": "apps_extension_chromium_src_services_presentorchestratordisplaygridsession_maybepresentorchestratordisplaygridsession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionActivationForOptimization.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionactivationforoptimization", + "target": "apps_extension_chromium_src_services_presentorchestratordisplaygridsession_maybepresentorchestratordisplaygridsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionActivationForOptimization.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionactivationforoptimization_runactivation", + "target": "apps_extension_chromium_src_services_presentorchestratordisplaygridsession_maybepresentorchestratordisplaygridsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L238", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_processflow_agentbox", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1508", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_processflow_agentboxinferencedebuglog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1502", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_processflow_agentboxmodelsource", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L184", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_processflow_agentconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L154", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_processflow_agentmatch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1409", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_processflow_brainerrortype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1405", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_processflow_brainresolution", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1653", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_processflow_buildllmrequestbody", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L260", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_processflow_displaygrid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L282", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_processflow_enrichedturninput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1214", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_processflow_enrichroutetextwithocr", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L347", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_processflow_extractagentnumber", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L570", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_processflow_extractboxagentnumber", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L753", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_processflow_extracttriggerpatterns", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L741", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_processflow_findagentboxesforagent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1207", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_processflow_generateeventtagroutingsummary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L873", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_processflow_generateforwardingresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L881", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_processflow_generatesystemstatusresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1400", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_processflow_getagentbyid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L947", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_processflow_getbutlersystemprompt", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_processflow_getchattrigger", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1630", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_processflow_getcloudapikey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L324", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_processflow_getcurrentsessionkey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_processflow_getlegacyadapter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_processflow_getlistenermanager", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_processflow_gettriggerregistry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1513", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_processflow_hasagentboxfixedllm", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_processflow_initializeautomationsfromsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L855", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_processflow_issystemquery", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1641", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_processflow_llmrequestbody", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L679", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_processflow_loadagentboxesfromchromestorage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L614", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_processflow_loadagentboxesfromsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L490", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_processflow_loadagentsfromchromestorage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L422", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_processflow_loadagentsfromsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L402", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_processflow_loadsavedtriggers", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L838", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_processflow_matchagentsformoderun", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L776", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_processflow_matchesapplyfor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L761", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_processflow_matchesexpectedcontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L797", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_processflow_matchinputtoagents", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L698", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_processflow_normalizeagentboxes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L508", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_processflow_parseagentsfromsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_processflow_processeventtagmatch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_processflow_processwithautomation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1563", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_processflow_resolveagentboxinference", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1552", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_processflow_resolveagentboxinferenceresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1527", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_processflow_resolveagentboxmodelids", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1519", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_processflow_resolveagentboxmodelidsresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1425", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_processflow_resolvemodelforagent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L298", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_processflow_resolveprocessflowsessionkey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1078", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_processflow_routeeventtaginput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L981", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_processflow_routeinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L269", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_processflow_routingdecision", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1280", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_processflow_updateagentboxoutput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1354", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_processflow_updateagentboxoutputinchromestorage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1222", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_services_processflow_wrapinputforagent", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_ui_components_wrchatsurface", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow", + "target": "apps_extension_chromium_src_ui_components_wrchatsurface_wrchatsurface", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1185", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow_rationale_1185", + "target": "apps_extension_chromium_src_services_processflow", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionActivationForOptimization.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionactivationforoptimization", + "target": "apps_extension_chromium_src_services_processflow", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_services_processflow", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L1508", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_services_processflow", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/tests/agentBoxInferenceResolve.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_tests_agentboxinferenceresolve_test", + "target": "apps_extension_chromium_src_services_processflow", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/tests/modeRunExecution.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_tests_moderunexecution_test", + "target": "apps_extension_chromium_src_services_processflow", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/tests/wrChatPipeline.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_tests_wrchatpipeline_test", + "target": "apps_extension_chromium_src_services_processflow", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_services_processflow", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L1438", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_popupchatview", + "target": "apps_extension_chromium_src_services_processflow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow_getchattrigger", + "target": "apps_extension_chromium_src_services_processflow_getlistenermanager", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow_getlegacyadapter", + "target": "apps_extension_chromium_src_services_processflow_getlistenermanager", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow_gettriggerregistry", + "target": "apps_extension_chromium_src_services_processflow_getlistenermanager", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow_initializeautomationsfromsession", + "target": "apps_extension_chromium_src_services_processflow_getlistenermanager", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow_processwithautomation", + "target": "apps_extension_chromium_src_services_processflow_getlistenermanager", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow_processwithautomation", + "target": "apps_extension_chromium_src_services_processflow_getchattrigger", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow_initializeautomationsfromsession", + "target": "apps_extension_chromium_src_services_processflow_getlegacyadapter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow_initializeautomationsfromsession", + "target": "apps_extension_chromium_src_services_processflow_loadagentsfromsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow_processwithautomation", + "target": "apps_extension_chromium_src_services_processflow_initializeautomationsfromsession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_services_processflow_agentmatch", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/tests/wrChatPipeline.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_tests_wrchatpipeline_test", + "target": "apps_extension_chromium_src_services_processflow_agentconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionActivationForOptimization.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionactivationforoptimization", + "target": "apps_extension_chromium_src_services_processflow_agentbox", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_services_processflow_agentbox", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionActivationForOptimization.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionactivationforoptimization", + "target": "apps_extension_chromium_src_services_processflow_displaygrid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_services_processflow_routingdecision", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L616", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow_loadagentboxesfromsession", + "target": "apps_extension_chromium_src_services_processflow_resolveprocessflowsessionkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L425", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow_loadagentsfromsession", + "target": "apps_extension_chromium_src_services_processflow_resolveprocessflowsessionkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1288", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow_updateagentboxoutput", + "target": "apps_extension_chromium_src_services_processflow_resolveprocessflowsessionkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L536", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow_parseagentsfromsession", + "target": "apps_extension_chromium_src_services_processflow_extractagentnumber", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1401", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow_getagentbyid", + "target": "apps_extension_chromium_src_services_processflow_loadagentsfromsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L442", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow_loadagentsfromsession", + "target": "apps_extension_chromium_src_services_processflow_loadagentsfromchromestorage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L471", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow_loadagentsfromsession", + "target": "apps_extension_chromium_src_services_processflow_parseagentsfromsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow_routeeventtaginput", + "target": "apps_extension_chromium_src_services_processflow_loadagentsfromsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L996", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow_routeinput", + "target": "apps_extension_chromium_src_services_processflow_loadagentsfromsession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_services_processflow_loadagentsfromsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L1559", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_services_processflow_loadagentsfromsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L1494", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_popupchatview", + "target": "apps_extension_chromium_src_services_processflow_loadagentsfromsession" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L499", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow_loadagentsfromchromestorage", + "target": "apps_extension_chromium_src_services_processflow_parseagentsfromsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L722", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow_normalizeagentboxes", + "target": "apps_extension_chromium_src_services_processflow_extractboxagentnumber", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L633", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow_loadagentboxesfromsession", + "target": "apps_extension_chromium_src_services_processflow_loadagentboxesfromchromestorage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L660", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow_loadagentboxesfromsession", + "target": "apps_extension_chromium_src_services_processflow_normalizeagentboxes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow_routeeventtaginput", + "target": "apps_extension_chromium_src_services_processflow_loadagentboxesfromsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L997", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow_routeinput", + "target": "apps_extension_chromium_src_services_processflow_loadagentboxesfromsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L688", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow_loadagentboxesfromchromestorage", + "target": "apps_extension_chromium_src_services_processflow_normalizeagentboxes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L917", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow_generatesystemstatusresponse", + "target": "apps_extension_chromium_src_services_processflow_findagentboxesforagent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L809", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow_matchinputtoagents", + "target": "apps_extension_chromium_src_services_processflow_extracttriggerpatterns", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1020", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow_routeinput", + "target": "apps_extension_chromium_src_services_processflow_matchinputtoagents", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1001", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow_routeinput", + "target": "apps_extension_chromium_src_services_processflow_issystemquery", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1031", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow_routeinput", + "target": "apps_extension_chromium_src_services_processflow_generateforwardingresponse", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1002", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow_routeinput", + "target": "apps_extension_chromium_src_services_processflow_generatesystemstatusresponse", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_services_processflow_getbutlersystemprompt", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L1692", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_services_processflow_getbutlersystemprompt", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L1576", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_popupchatview", + "target": "apps_extension_chromium_src_services_processflow_getbutlersystemprompt" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_services_processflow_routeinput", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L1540", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_services_processflow_routeinput", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L1477", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_popupchatview", + "target": "apps_extension_chromium_src_services_processflow_routeinput" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_services_processflow_enrichroutetextwithocr", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L1526", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_services_processflow_enrichroutetextwithocr", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_services_processflow_enrichroutetextwithocr", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L1202", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_popupchatview", + "target": "apps_extension_chromium_src_services_processflow_enrichroutetextwithocr" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_services_processflow_wrapinputforagent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L1568", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_services_processflow_wrapinputforagent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L1501", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_popupchatview", + "target": "apps_extension_chromium_src_services_processflow_wrapinputforagent" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1306", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow_updateagentboxoutput", + "target": "apps_extension_chromium_src_services_processflow_updateagentboxoutputinchromestorage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_services_processflow_updateagentboxoutput", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L1591", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_services_processflow_updateagentboxoutput", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L1549", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_popupchatview", + "target": "apps_extension_chromium_src_services_processflow_updateagentboxoutput" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_services_processflow_getagentbyid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_services_processflow_brainresolution", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1588", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow_resolveagentboxinference", + "target": "apps_extension_chromium_src_services_processflow_resolvemodelforagent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1611", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow_resolveagentboxinference", + "target": "apps_extension_chromium_src_services_processflow_agentboxinferencedebuglog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1603", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow_resolveagentboxinference", + "target": "apps_extension_chromium_src_services_processflow_hasagentboxfixedllm", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1540", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow_resolveagentboxmodelids", + "target": "apps_extension_chromium_src_services_processflow_hasagentboxfixedllm", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1578", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow_resolveagentboxinference", + "target": "apps_extension_chromium_src_services_processflow_resolveagentboxmodelids", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/tests/agentBoxInferenceResolve.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_tests_agentboxinferenceresolve_test", + "target": "apps_extension_chromium_src_services_processflow_resolveagentboxmodelids", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_services_processflow_resolveagentboxinference", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L1575", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_services_processflow_resolveagentboxinference", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/tests/agentBoxInferenceResolve.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_tests_agentboxinferenceresolve_test", + "target": "apps_extension_chromium_src_services_processflow_resolveagentboxinference", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/processFlow.ts", + "source_location": "L1663", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_processflow_buildllmrequestbody", + "target": "apps_extension_chromium_src_services_processflow_getcloudapikey", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_services_processflow_buildllmrequestbody", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L1613", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_services_processflow_buildllmrequestbody", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation", + "target": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation_focusgridtabifpresent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation", + "target": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation_mirrorsessionblob", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts", + "source_location": "L246", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation", + "target": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation_modehasallocatedsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation", + "target": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation_modesessionrunexecuteresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation", + "target": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation_modesessionruntrigger", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts", + "source_location": "L203", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation", + "target": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation_requestrunmodeallocatedsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation", + "target": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation_resolvedmodesessionrun", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation", + "target": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation_resolvemodeallocatedsessionrun", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation", + "target": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation_run_mode_allocated_session_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation", + "target": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation_runmodeallocatedsessionautomation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation", + "target": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation_runmodeallocatedsessionautomationdeps", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation", + "target": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation_runmodeallocatedsessionautomationresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation", + "target": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation_runmodeallocatedsessionoptions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation", + "target": "apps_extension_chromium_src_services_sessionsurfaceresolver", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation", + "target": "apps_extension_chromium_src_services_sessionsurfaceresolver_findopensessionsurface", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation", + "target": "apps_extension_chromium_src_services_sessionsurfaceresolver_sessionsurface", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation", + "target": "apps_extension_chromium_src_shared_ui_custommoderuntime", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation", + "target": "apps_extension_chromium_src_shared_ui_custommoderuntime_custommodedefinitiontoruntime", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation", + "target": "apps_extension_chromium_src_shared_ui_custommoderuntime_custommoderuntimeconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodedefinition", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation_resolvemodeallocatedsessionrun", + "target": "apps_extension_chromium_src_shared_ui_custommoderuntime_custommodedefinitiontoruntime" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation_runmodeallocatedsessionautomation", + "target": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation_resolvemodeallocatedsessionrun", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts", + "source_location": "L154", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation_runmodeallocatedsessionautomation", + "target": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation_mirrorsessionblob", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation_runmodeallocatedsessionautomation", + "target": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation_focusgridtabifpresent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation_runmodeallocatedsessionautomation", + "target": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation_runmodeallocatedsessionautomationdeps" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation_requestrunmodeallocatedsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L373", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrmultitriggerbar", + "target": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation_requestrunmodeallocatedsession" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation_modehasallocatedsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L255", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrmultitriggerbar", + "target": "apps_extension_chromium_src_services_runmodeallocatedsessionautomation_modehasallocatedsession" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionActivationForOptimization.ts", + "source_location": "L201", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionactivationforoptimization", + "target": "apps_extension_chromium_src_services_sessionactivationforoptimization_activatesessionforoptimization", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionActivationForOptimization.ts", + "source_location": "L166", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionactivationforoptimization", + "target": "apps_extension_chromium_src_services_sessionactivationforoptimization_activateviaruntimemessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionActivationForOptimization.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionactivationforoptimization", + "target": "apps_extension_chromium_src_services_sessionactivationforoptimization_activationresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionActivationForOptimization.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionactivationforoptimization", + "target": "apps_extension_chromium_src_services_sessionactivationforoptimization_loadsessionblob", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionActivationForOptimization.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionactivationforoptimization", + "target": "apps_extension_chromium_src_services_sessionactivationforoptimization_mapmessageresponsetoactivation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionActivationForOptimization.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionactivationforoptimization", + "target": "apps_extension_chromium_src_services_sessionactivationforoptimization_optimizationproject", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionActivationForOptimization.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionactivationforoptimization", + "target": "apps_extension_chromium_src_services_sessionactivationforoptimization_runactivation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionActivationForOptimization.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionactivationforoptimization", + "target": "apps_extension_chromium_src_services_sessionactivationforoptimization_waitforgridtabsessionkey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionActivationForOptimization.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionactivationforoptimization", + "target": "apps_extension_chromium_src_services_sessionactivationforoptimization_waitfortabcomplete", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionActivationForOptimization.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionactivationforoptimization", + "target": "apps_extension_chromium_src_services_sessionsurfaceresolver", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionActivationForOptimization.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionactivationforoptimization", + "target": "apps_extension_chromium_src_services_sessionsurfaceresolver_findopensessionsurface", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionActivationForOptimization.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionactivationforoptimization_runactivation", + "target": "apps_extension_chromium_src_services_sessionactivationforoptimization_loadsessionblob", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionActivationForOptimization.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionactivationforoptimization_runactivation", + "target": "apps_extension_chromium_src_services_sessionactivationforoptimization_waitfortabcomplete", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionActivationForOptimization.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionactivationforoptimization_runactivation", + "target": "apps_extension_chromium_src_services_sessionactivationforoptimization_waitforgridtabsessionkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionActivationForOptimization.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionactivationforoptimization_waitforgridtabsessionkey", + "target": "apps_extension_chromium_src_services_sessionsurfaceresolver_findopensessionsurface", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionActivationForOptimization.ts", + "source_location": "L208", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionactivationforoptimization_activatesessionforoptimization", + "target": "apps_extension_chromium_src_services_sessionactivationforoptimization_runactivation", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionActivationForOptimization.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionactivationforoptimization_runactivation", + "target": "apps_extension_chromium_src_services_sessionsurfaceresolver_findopensessionsurface", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionActivationForOptimization.ts", + "source_location": "L178", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionactivationforoptimization_activateviaruntimemessage", + "target": "apps_extension_chromium_src_services_sessionactivationforoptimization_mapmessageresponsetoactivation", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionActivationForOptimization.ts", + "source_location": "L206", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionactivationforoptimization_activatesessionforoptimization", + "target": "apps_extension_chromium_src_services_sessionactivationforoptimization_activateviaruntimemessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionImportArtefactUnwrap.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionimportartefactunwrap", + "target": "apps_extension_chromium_src_services_sessionimportartefactunwrap_isfullsessionexportcontent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionImportArtefactUnwrap.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionimportartefactunwrap", + "target": "apps_extension_chromium_src_services_sessionimportartefactunwrap_isorchestratorsessioncontent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionImportArtefactUnwrap.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionimportartefactunwrap", + "target": "apps_extension_chromium_src_services_sessionimportartefactunwrap_issessionimportartefactwrapper", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionImportArtefactUnwrap.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionimportartefactunwrap", + "target": "apps_extension_chromium_src_services_sessionimportartefactunwrap_orchestratorsessioncontenttotabimport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionImportArtefactUnwrap.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionimportartefactunwrap", + "target": "apps_extension_chromium_src_services_sessionimportartefactunwrap_sessionimportunwrapresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionImportArtefactUnwrap.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionimportartefactunwrap", + "target": "apps_extension_chromium_src_services_sessionimportartefactunwrap_unwrapsessionimportpayloadfortab", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionImportCore.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionimportcore", + "target": "apps_extension_chromium_src_services_sessionimportartefactunwrap", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionImportArtefactUnwrap.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionimportartefactunwrap_unwrapsessionimportpayloadfortab", + "target": "apps_extension_chromium_src_services_sessionimportartefactunwrap_issessionimportartefactwrapper", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionImportCore.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionimportcore", + "target": "apps_extension_chromium_src_services_sessionimportartefactunwrap_issessionimportartefactwrapper", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/services/sessionImportCore.ts", + "source_location": "L142", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionimportcore_normalizeimportedsessionpayload", + "target": "apps_extension_chromium_src_services_sessionimportartefactunwrap_issessionimportartefactwrapper" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionImportArtefactUnwrap.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionimportartefactunwrap_unwrapsessionimportpayloadfortab", + "target": "apps_extension_chromium_src_services_sessionimportartefactunwrap_isorchestratorsessioncontent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionImportCore.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionimportcore", + "target": "apps_extension_chromium_src_services_sessionimportartefactunwrap_isorchestratorsessioncontent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/services/sessionImportCore.ts", + "source_location": "L198", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionimportcore_normalizeimportedsessionpayload", + "target": "apps_extension_chromium_src_services_sessionimportartefactunwrap_isorchestratorsessioncontent" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionImportArtefactUnwrap.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionimportartefactunwrap_unwrapsessionimportpayloadfortab", + "target": "apps_extension_chromium_src_services_sessionimportartefactunwrap_isfullsessionexportcontent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionImportCore.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionimportcore", + "target": "apps_extension_chromium_src_services_sessionimportartefactunwrap_isfullsessionexportcontent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/services/sessionImportCore.ts", + "source_location": "L152", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionimportcore_normalizeimportedsessionpayload", + "target": "apps_extension_chromium_src_services_sessionimportartefactunwrap_isfullsessionexportcontent" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionImportArtefactUnwrap.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionimportartefactunwrap_unwrapsessionimportpayloadfortab", + "target": "apps_extension_chromium_src_services_sessionimportartefactunwrap_orchestratorsessioncontenttotabimport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionImportCore.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionimportcore", + "target": "apps_extension_chromium_src_services_sessionimportartefactunwrap_orchestratorsessioncontenttotabimport", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/services/sessionImportCore.ts", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionimportcore_normalizeimportedsessionpayload", + "target": "apps_extension_chromium_src_services_sessionimportartefactunwrap_orchestratorsessioncontenttotabimport" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionImportCore.ts", + "source_location": "L240", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionimportcore", + "target": "apps_extension_chromium_src_services_sessionimportcore_activateimportedsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionImportCore.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionimportcore", + "target": "apps_extension_chromium_src_services_sessionimportcore_canonicalsessionimportoptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionImportCore.ts", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionimportcore", + "target": "apps_extension_chromium_src_services_sessionimportcore_canonicalsessionimportresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionImportCore.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionimportcore", + "target": "apps_extension_chromium_src_services_sessionimportcore_createnewimportsessionkey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionImportCore.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionimportcore", + "target": "apps_extension_chromium_src_services_sessionimportcore_normalizedsessionimport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionImportCore.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionimportcore", + "target": "apps_extension_chromium_src_services_sessionimportcore_normalizeimportedsessionpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionImportCore.ts", + "source_location": "L220", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionimportcore", + "target": "apps_extension_chromium_src_services_sessionimportcore_persistimportedsessionrecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionImportCore.ts", + "source_location": "L307", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionimportcore", + "target": "apps_extension_chromium_src_services_sessionimportcore_runcanonicalsessionimport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionImportCore.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionimportcore", + "target": "apps_extension_chromium_src_services_sessionimportcore_safenormalizeimportedsessionpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionImportCore.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionimportcore", + "target": "apps_extension_chromium_src_services_sessionimportcore_sessiondatanotification", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionImportCore.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionimportcore", + "target": "apps_extension_chromium_src_services_sessionimportcore_sessionimportactivationhost", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionImportCore.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionimportcore", + "target": "apps_extension_chromium_src_services_sessionimportcore_sessionimportactivationintent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionImportCore.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionimportcore", + "target": "apps_extension_chromium_src_services_sessionimportcore_sessionimportactivationprofile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionImportCore.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionimportcore", + "target": "apps_extension_chromium_src_services_sessionimportcore_sessionimportintenthint", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionImportCore.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionimportcore", + "target": "apps_extension_chromium_src_services_sessionorigin", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionImportCore.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionimportcore", + "target": "apps_extension_chromium_src_services_sessionorigin_sessionorigin", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionImportCore.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionimportcore", + "target": "apps_extension_chromium_src_utils_sessiondisplaylabel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionImportCore.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionimportcore", + "target": "apps_extension_chromium_src_utils_sessiondisplaylabel_sessiondisplaylabel", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/services/sessionImportCore.ts", + "source_location": "L251", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionimportcore_activateimportedsession", + "target": "apps_extension_chromium_src_services_sessionimportcore_sessionimportactivationhost" + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionImportCore.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionimportcore_canonicalsessionimportoptions", + "target": "apps_extension_chromium_src_services_sessionorigin_sessionorigin", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionImportCore.ts", + "source_location": "L311", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionimportcore_runcanonicalsessionimport", + "target": "apps_extension_chromium_src_services_sessionimportcore_createnewimportsessionkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionImportCore.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionimportcore_safenormalizeimportedsessionpayload", + "target": "apps_extension_chromium_src_services_sessionimportcore_normalizeimportedsessionpayload", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionImportCore.ts", + "source_location": "L312", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionimportcore_runcanonicalsessionimport", + "target": "apps_extension_chromium_src_services_sessionimportcore_normalizeimportedsessionpayload", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionImportCore.ts", + "source_location": "L327", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionimportcore_runcanonicalsessionimport", + "target": "apps_extension_chromium_src_services_sessionimportcore_persistimportedsessionrecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionImportCore.ts", + "source_location": "L339", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionimportcore_runcanonicalsessionimport", + "target": "apps_extension_chromium_src_services_sessionimportcore_activateimportedsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/services/sessionImportCore.ts", + "source_location": "L329", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionimportcore_runcanonicalsessionimport", + "target": "apps_extension_chromium_src_utils_sessiondisplaylabel_sessiondisplaylabel" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionOrigin.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionorigin", + "target": "apps_extension_chromium_src_services_sessionorigin_resolvesessionorigin", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionOrigin.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionorigin", + "target": "apps_extension_chromium_src_services_sessionorigin_sessionorigin", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionSurfaceResolver.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionsurfaceresolver", + "target": "apps_extension_chromium_src_services_sessionsurfaceresolver_findopensessionsurface", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionSurfaceResolver.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionsurfaceresolver", + "target": "apps_extension_chromium_src_services_sessionsurfaceresolver_isgriddisplayurl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionSurfaceResolver.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionsurfaceresolver", + "target": "apps_extension_chromium_src_services_sessionsurfaceresolver_sessionsurface", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionSurfaceResolver.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionsurfaceresolver", + "target": "apps_extension_chromium_src_services_sessionsurfaceresolver_urlmatchessessionkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionSurfaceResolver.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionsurfaceresolver_findopensessionsurface", + "target": "apps_extension_chromium_src_services_sessionsurfaceresolver_urlmatchessessionkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/sessionSurfaceResolver.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_sessionsurfaceresolver_findopensessionsurface", + "target": "apps_extension_chromium_src_services_sessionsurfaceresolver_isgriddisplayurl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/syncCustomModeDiffWatcher.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_synccustommodediffwatcher", + "target": "apps_extension_chromium_src_services_synccustommodediffwatcher_custommodediffwatcherid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/syncCustomModeDiffWatcher.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_synccustommodediffwatcher", + "target": "apps_extension_chromium_src_services_synccustommodediffwatcher_getlaunchsecret", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/syncCustomModeDiffWatcher.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_synccustommodediffwatcher", + "target": "apps_extension_chromium_src_services_synccustommodediffwatcher_ismodeowneddiffwatcherid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/syncCustomModeDiffWatcher.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_synccustommodediffwatcher", + "target": "apps_extension_chromium_src_services_synccustommodediffwatcher_modediffwatcheridprefix", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/syncCustomModeDiffWatcher.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_synccustommodediffwatcher", + "target": "apps_extension_chromium_src_services_synccustommodediffwatcher_synccustommodediffwatcher", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/syncCustomModeDiffWatcher.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_synccustommodediffwatcher", + "target": "apps_extension_chromium_src_utils_normalisetriggertag", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/syncCustomModeDiffWatcher.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_synccustommodediffwatcher", + "target": "apps_extension_chromium_src_utils_normalisetriggertag_normalisetriggertag", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/syncCustomModeDiffWatcher.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_synccustommodediffwatcher", + "target": "packages_shared_src_wrchat_difftrigger", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/syncCustomModeDiffWatcher.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_synccustommodediffwatcher", + "target": "packages_shared_src_wrchat_difftrigger_difftrigger", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useCustomModesStore.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_usecustommodesstore", + "target": "apps_extension_chromium_src_services_synccustommodediffwatcher", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/AddModeWizardHost.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizardhost", + "target": "apps_extension_chromium_src_services_synccustommodediffwatcher", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/syncCustomModeDiffWatcher.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_synccustommodediffwatcher_synccustommodediffwatcher", + "target": "apps_extension_chromium_src_services_synccustommodediffwatcher_getlaunchsecret", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/syncCustomModeDiffWatcher.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_synccustommodediffwatcher_custommodediffwatcherid", + "target": "apps_extension_chromium_src_services_synccustommodediffwatcher_modediffwatcheridprefix", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/syncCustomModeDiffWatcher.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_synccustommodediffwatcher_ismodeowneddiffwatcherid", + "target": "apps_extension_chromium_src_services_synccustommodediffwatcher_modediffwatcheridprefix", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/syncCustomModeDiffWatcher.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_synccustommodediffwatcher_synccustommodediffwatcher", + "target": "apps_extension_chromium_src_services_synccustommodediffwatcher_custommodediffwatcherid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/services/syncCustomModeDiffWatcher.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_synccustommodediffwatcher_synccustommodediffwatcher", + "target": "apps_extension_chromium_src_services_synccustommodediffwatcher_ismodeowneddiffwatcherid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/services/syncCustomModeDiffWatcher.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_services_synccustommodediffwatcher_synccustommodediffwatcher", + "target": "apps_extension_chromium_src_utils_normalisetriggertag_normalisetriggertag" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useCustomModesStore.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_usecustommodesstore", + "target": "apps_extension_chromium_src_services_synccustommodediffwatcher_synccustommodediffwatcher", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/AddModeWizardHost.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizardhost", + "target": "apps_extension_chromium_src_services_synccustommodediffwatcher_synccustommodediffwatcher", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/AddModeWizardHost.tsx", + "source_location": "L186", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizardhost_addmodewizardhost", + "target": "apps_extension_chromium_src_services_synccustommodediffwatcher_synccustommodediffwatcher" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/constants.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_constants", + "target": "apps_extension_chromium_src_shared_beap_constants_allowed_import_extensions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/constants.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_constants", + "target": "apps_extension_chromium_src_shared_beap_constants_beap_encrypted_capsule_ext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/constants.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_constants", + "target": "apps_extension_chromium_src_shared_beap_constants_beap_encrypted_capsule_mime", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/constants.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_constants", + "target": "apps_extension_chromium_src_shared_beap_constants_beap_min_marker_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/constants.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_constants", + "target": "apps_extension_chromium_src_shared_beap_constants_beap_package_ext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/constants.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_constants", + "target": "apps_extension_chromium_src_shared_beap_constants_beap_package_mime", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/constants.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_constants", + "target": "apps_extension_chromium_src_shared_beap_constants_beap_version_current", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/constants.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_constants", + "target": "apps_extension_chromium_src_shared_beap_constants_non_importable_extensions", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/index.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_index", + "target": "apps_extension_chromium_src_shared_beap_constants", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/validators.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_validators", + "target": "apps_extension_chromium_src_shared_beap_constants", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/index.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_index", + "target": "apps_extension_chromium_src_shared_beap_constants_beap_package_ext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/validators.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_validators", + "target": "apps_extension_chromium_src_shared_beap_constants_beap_package_ext", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/index.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_index", + "target": "apps_extension_chromium_src_shared_beap_constants_beap_encrypted_capsule_ext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/validators.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_validators", + "target": "apps_extension_chromium_src_shared_beap_constants_beap_encrypted_capsule_ext", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/index.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_index", + "target": "apps_extension_chromium_src_shared_beap_constants_beap_min_marker_type", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/validators.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_validators", + "target": "apps_extension_chromium_src_shared_beap_constants_beap_min_marker_type", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/index.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_index", + "target": "apps_extension_chromium_src_shared_beap_constants_beap_version_current", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/index.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_index", + "target": "apps_extension_chromium_src_shared_beap_constants_allowed_import_extensions", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/index.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_index", + "target": "apps_extension_chromium_src_shared_beap_constants_non_importable_extensions", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/index.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_index", + "target": "apps_extension_chromium_src_shared_beap_constants_beap_package_mime", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/index.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_index", + "target": "apps_extension_chromium_src_shared_beap_constants_beap_encrypted_capsule_mime", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/index.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_index", + "target": "apps_extension_chromium_src_shared_beap_types", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/index.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_index", + "target": "apps_extension_chromium_src_shared_beap_types_beappackagemarker", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/index.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_index", + "target": "apps_extension_chromium_src_shared_beap_types_deliverymethod", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/index.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_index", + "target": "apps_extension_chromium_src_shared_beap_types_folder", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/index.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_index", + "target": "apps_extension_chromium_src_shared_beap_types_importkind", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/index.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_index", + "target": "apps_extension_chromium_src_shared_beap_types_minimalenvelopemarker", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/index.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_index", + "target": "apps_extension_chromium_src_shared_beap_types_reconstructionstate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/index.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_index", + "target": "apps_extension_chromium_src_shared_beap_types_source", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/index.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_index", + "target": "apps_extension_chromium_src_shared_beap_types_verificationstate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/index.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_index", + "target": "apps_extension_chromium_src_shared_beap_validators", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/index.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_index", + "target": "apps_extension_chromium_src_shared_beap_validators_assertnoprematureprocessing", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/index.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_index", + "target": "apps_extension_chromium_src_shared_beap_validators_detectimportkind", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/index.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_index", + "target": "apps_extension_chromium_src_shared_beap_validators_documentcapsuleopacityinvariant", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/index.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_index", + "target": "apps_extension_chromium_src_shared_beap_validators_isbeappackagejson", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/index.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_index", + "target": "apps_extension_chromium_src_shared_beap_validators_isencryptedcapsule", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/index.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_index", + "target": "apps_extension_chromium_src_shared_beap_validators_isimportableasmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/types.ts", + "source_location": "L150", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_types", + "target": "apps_extension_chromium_src_shared_beap_types_beappackagemarker", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/types.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_types", + "target": "apps_extension_chromium_src_shared_beap_types_deliverymethod", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/types.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_types", + "target": "apps_extension_chromium_src_shared_beap_types_folder", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/types.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_types", + "target": "apps_extension_chromium_src_shared_beap_types_importkind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/types.ts", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_types", + "target": "apps_extension_chromium_src_shared_beap_types_minimalenvelopemarker", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/types.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_types", + "target": "apps_extension_chromium_src_shared_beap_types_reconstructionstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/types.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_types", + "target": "apps_extension_chromium_src_shared_beap_types_source", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/types.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_types", + "target": "apps_extension_chromium_src_shared_beap_types_verificationstate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/validators.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_validators", + "target": "apps_extension_chromium_src_shared_beap_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/validators.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_validators", + "target": "apps_extension_chromium_src_shared_beap_types_importkind", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/types.ts", + "source_location": "L150", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_types_beappackagemarker", + "target": "apps_extension_chromium_src_shared_beap_types_minimalenvelopemarker", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/validators.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_validators", + "target": "apps_extension_chromium_src_shared_beap_types_minimalenvelopemarker", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/validators.ts", + "source_location": "L152", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_validators", + "target": "apps_extension_chromium_src_shared_beap_validators_assertnoprematureprocessing", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/validators.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_validators", + "target": "apps_extension_chromium_src_shared_beap_validators_detectimportkind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/validators.ts", + "source_location": "L180", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_validators", + "target": "apps_extension_chromium_src_shared_beap_validators_documentcapsuleopacityinvariant", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/validators.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_validators", + "target": "apps_extension_chromium_src_shared_beap_validators_isbeappackagejson", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/validators.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_validators", + "target": "apps_extension_chromium_src_shared_beap_validators_isencryptedcapsule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/validators.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_validators", + "target": "apps_extension_chromium_src_shared_beap_validators_isimportableasmessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/validators.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_validators_isencryptedcapsule", + "target": "apps_extension_chromium_src_shared_beap_validators_detectimportkind", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/beap/validators.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_beap_validators_isimportableasmessage", + "target": "apps_extension_chromium_src_shared_beap_validators_detectimportkind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/components/EmailConnectWizard.tsx", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_components_emailconnectwizard", + "target": "apps_extension_chromium_src_shared_components_emailconnectwizard_coercesecuritymodeui", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/components/EmailConnectWizard.tsx", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_components_emailconnectwizard", + "target": "apps_extension_chromium_src_shared_components_emailconnectwizard_emailconnectwizard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/components/EmailConnectWizard.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_components_emailconnectwizard", + "target": "apps_extension_chromium_src_shared_components_emailconnectwizard_emailconnectwizardprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/components/EmailConnectWizard.tsx", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_components_emailconnectwizard", + "target": "apps_extension_chromium_src_shared_components_emailconnectwizard_emptycustomform", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/components/EmailConnectWizard.tsx", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_components_emailconnectwizard", + "target": "apps_extension_chromium_src_shared_components_emailconnectwizard_formatgmailoauthdiagnosticrows", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/components/EmailConnectWizard.tsx", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_components_emailconnectwizard", + "target": "apps_extension_chromium_src_shared_components_emailconnectwizard_gmailbuiltinproviderstatusui", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/components/EmailConnectWizard.tsx", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_components_emailconnectwizard", + "target": "apps_extension_chromium_src_shared_components_emailconnectwizard_gmailconnectfailuredebug", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/components/EmailConnectWizard.tsx", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_components_emailconnectwizard", + "target": "apps_extension_chromium_src_shared_components_emailconnectwizard_gmailoauthdiagnosticsbridgeavailable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/components/EmailConnectWizard.tsx", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_components_emailconnectwizard", + "target": "apps_extension_chromium_src_shared_components_emailconnectwizard_iselectron", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/components/EmailConnectWizard.tsx", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_components_emailconnectwizard", + "target": "apps_extension_chromium_src_shared_components_emailconnectwizard_isextension", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/components/EmailConnectWizard.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_components_emailconnectwizard", + "target": "apps_extension_chromium_src_shared_components_emailconnectwizard_provider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/components/EmailConnectWizard.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_components_emailconnectwizard", + "target": "apps_extension_chromium_src_shared_components_emailconnectwizard_resulttype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/components/EmailConnectWizard.tsx", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_components_emailconnectwizard", + "target": "apps_extension_chromium_src_shared_components_emailconnectwizard_securitymodeui", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/components/EmailConnectWizard.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_components_emailconnectwizard", + "target": "apps_extension_chromium_src_shared_components_emailconnectwizard_step", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/components/EmailConnectWizard.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_components_emailconnectwizard", + "target": "apps_extension_chromium_src_shared_email_connectemailtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/components/EmailConnectWizard.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_components_emailconnectwizard", + "target": "apps_extension_chromium_src_shared_email_connectemailtypes_connectemaillaunchsource", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/components/EmailConnectWizard.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_components_emailconnectwizard", + "target": "apps_extension_chromium_src_shared_email_connectemailtypes_formatconnectemaillaunchsource", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/components/EmailConnectWizard.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_components_emailconnectwizard", + "target": "apps_extension_chromium_src_shared_email_imapconnectionnotice", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/components/EmailConnectWizard.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_components_emailconnectwizard", + "target": "apps_extension_chromium_src_shared_email_imapconnectionnotice_imapconnectionnotice", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/email/connectEmailFlow.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_email_connectemailflow", + "target": "apps_extension_chromium_src_shared_components_emailconnectwizard", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/components/EmailConnectWizard.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_components_emailconnectwizard_emailconnectwizardprops", + "target": "apps_extension_chromium_src_shared_email_connectemailtypes_connectemaillaunchsource", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/components/EmailConnectWizard.tsx", + "source_location": "L275", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_components_emailconnectwizard_emailconnectwizard", + "target": "apps_extension_chromium_src_shared_components_emailconnectwizard_coercesecuritymodeui", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/components/EmailConnectWizard.tsx", + "source_location": "L225", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_components_emailconnectwizard_emailconnectwizard", + "target": "apps_extension_chromium_src_shared_components_emailconnectwizard_iselectron", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/components/EmailConnectWizard.tsx", + "source_location": "L225", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_components_emailconnectwizard_emailconnectwizard", + "target": "apps_extension_chromium_src_shared_components_emailconnectwizard_gmailoauthdiagnosticsbridgeavailable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/components/EmailConnectWizard.tsx", + "source_location": "L234", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_components_emailconnectwizard_emailconnectwizard", + "target": "apps_extension_chromium_src_shared_components_emailconnectwizard_formatgmailoauthdiagnosticrows", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/extension-chromium/src/shared/components/EmailConnectWizard.tsx", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_components_emailconnectwizard_emailconnectwizard", + "target": "apps_extension_chromium_src_shared_components_emailconnectwizard_emptycustomform", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/components/EmailConnectWizard.tsx", + "source_location": "L309", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_components_emailconnectwizard_emailconnectwizard", + "target": "apps_extension_chromium_src_shared_components_emailconnectwizard_isextension", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/shared/components/EmailConnectWizard.tsx", + "source_location": "L1184", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_components_emailconnectwizard_emailconnectwizard", + "target": "apps_extension_chromium_src_shared_email_connectemailtypes_formatconnectemaillaunchsource" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/components/EmailConnectWizard.tsx", + "source_location": "L310", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_components_emailconnectwizard_emailconnectwizard", + "target": "apps_extension_chromium_src_vault_api", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/email/connectEmailFlow.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_email_connectemailflow", + "target": "apps_extension_chromium_src_shared_components_emailconnectwizard_emailconnectwizard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/email/ImapConnectionNotice.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_email_imapconnectionnotice", + "target": "apps_extension_chromium_src_shared_email_imapconnectionnotice_body_paragraphs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/email/ImapConnectionNotice.tsx", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_email_imapconnectionnotice", + "target": "apps_extension_chromium_src_shared_email_imapconnectionnotice_imapconnectionnotice", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/email/ImapConnectionNotice.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_email_imapconnectionnotice", + "target": "apps_extension_chromium_src_shared_email_imapconnectionnotice_imapconnectionnoticeprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/email/ImapConnectionNotice.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_email_imapconnectionnotice", + "target": "apps_extension_chromium_src_shared_email_imapconnectionnotice_imapnoticevariant", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/email/connectEmail.launch.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_email_connectemail_launch_test", + "target": "apps_extension_chromium_src_shared_email_connectemail_launch_test_required_launch_sources", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/email/connectEmail.launch.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_email_connectemail_launch_test", + "target": "apps_extension_chromium_src_shared_email_connectemailflow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/email/connectEmail.launch.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_email_connectemail_launch_test", + "target": "apps_extension_chromium_src_shared_email_connectemailflow_wizardthemefromflowtheme", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/email/connectEmail.launch.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_email_connectemail_launch_test", + "target": "apps_extension_chromium_src_shared_email_connectemailtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/email/connectEmail.launch.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_email_connectemail_launch_test", + "target": "apps_extension_chromium_src_shared_email_connectemailtypes_connectemaillaunchsource", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/email/connectEmail.launch.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_email_connectemail_launch_test", + "target": "apps_extension_chromium_src_shared_email_connectemailtypes_formatconnectemaillaunchsource", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/email/connectEmailFlow.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_email_connectemailflow", + "target": "apps_extension_chromium_src_shared_email_connectemailflow_connectemailflowtheme", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/email/connectEmailFlow.tsx", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_email_connectemailflow", + "target": "apps_extension_chromium_src_shared_email_connectemailflow_useconnectemailflow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/email/connectEmailFlow.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_email_connectemailflow", + "target": "apps_extension_chromium_src_shared_email_connectemailflow_useconnectemailflowoptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/email/connectEmailFlow.tsx", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_email_connectemailflow", + "target": "apps_extension_chromium_src_shared_email_connectemailflow_useconnectemailflowresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/email/connectEmailFlow.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_email_connectemailflow", + "target": "apps_extension_chromium_src_shared_email_connectemailflow_wizardthemefromflowtheme", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/email/connectEmailFlow.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_email_connectemailflow", + "target": "apps_extension_chromium_src_shared_email_connectemailtypes", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/email/connectEmailFlow.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_email_connectemailflow", + "target": "apps_extension_chromium_src_shared_email_connectemailtypes_connectemaillaunchsource", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/email/connectEmailFlow.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_email_connectemailflow", + "target": "apps_extension_chromium_src_shared_email_connectemailtypes_formatconnectemaillaunchsource", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_shared_email_connectemailflow", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/email/connectEmailFlow.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_email_connectemailflow_useconnectemailflowoptions", + "target": "apps_extension_chromium_src_shared_email_connectemailtypes_connectemaillaunchsource", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/email/connectEmailFlow.tsx", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_email_connectemailflow_useconnectemailflow", + "target": "apps_extension_chromium_src_shared_email_connectemailflow_wizardthemefromflowtheme", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/email/connectEmailFlow.tsx", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_email_connectemailflow_useconnectemailflowresult", + "target": "apps_extension_chromium_src_shared_email_connectemailtypes_connectemaillaunchsource", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_shared_email_connectemailflow_useconnectemailflow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L1213", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_shared_email_connectemailflow_useconnectemailflow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/email/connectEmailTypes.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_email_connectemailtypes", + "target": "apps_extension_chromium_src_shared_email_connectemailtypes_connectemaillaunchsource", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/email/connectEmailTypes.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_email_connectemailtypes", + "target": "apps_extension_chromium_src_shared_email_connectemailtypes_formatconnectemaillaunchsource", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_shared_email_connectemailtypes_connectemaillaunchsource", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/email/pickDefaultAccountRow.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_email_pickdefaultaccountrow", + "target": "apps_extension_chromium_src_shared_email_pickdefaultaccountrow_pickdefaultemailaccountrowid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_shared_email_pickdefaultaccountrow", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/EmailProvidersSection.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_emailproviderssection", + "target": "apps_extension_chromium_src_shared_email_pickdefaultaccountrow", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/WRGuardWorkspace.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_wrguardworkspace", + "target": "apps_extension_chromium_src_shared_email_pickdefaultaccountrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_shared_email_pickdefaultaccountrow_pickdefaultemailaccountrowid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L1020", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_shared_email_pickdefaultaccountrow_pickdefaultemailaccountrowid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/EmailProvidersSection.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_emailproviderssection", + "target": "apps_extension_chromium_src_shared_email_pickdefaultaccountrow_pickdefaultemailaccountrowid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/wrguard/components/EmailProvidersSection.tsx", + "source_location": "L239", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_emailproviderssection_emailproviderssection", + "target": "apps_extension_chromium_src_shared_email_pickdefaultaccountrow_pickdefaultemailaccountrowid" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/WRGuardWorkspace.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_wrguardworkspace", + "target": "apps_extension_chromium_src_shared_email_pickdefaultaccountrow_pickdefaultemailaccountrowid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/wrguard/components/WRGuardWorkspace.tsx", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_wrguardworkspace_wrguardworkspace", + "target": "apps_extension_chromium_src_shared_email_pickdefaultaccountrow_pickdefaultemailaccountrowid" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/customModeProfileFields.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_custommodeprofilefields_test", + "target": "apps_extension_chromium_src_shared_ui_custommodepersistence", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/customModeProfileFields.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_custommodeprofilefields_test", + "target": "apps_extension_chromium_src_shared_ui_custommodepersistence_custom_modes_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/customModeProfileFields.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_custommodeprofilefields_test", + "target": "apps_extension_chromium_src_shared_ui_custommodepersistence_migratecustommodespersistedstate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/customModeProfileFields.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_custommodeprofilefields_test", + "target": "apps_extension_chromium_src_shared_ui_custommodepersistence_parsecustommodesjson", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/customModeProfileFields.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_custommodeprofilefields_test", + "target": "apps_extension_chromium_src_shared_ui_custommodepersistence_stringifycustommodes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/customModeProfileFields.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_custommodeprofilefields_test", + "target": "apps_extension_chromium_src_shared_ui_custommoderuntime", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/customModeProfileFields.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_custommodeprofilefields_test", + "target": "apps_extension_chromium_src_shared_ui_custommoderuntime_custommodedefinitiontoruntime", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/customModeProfileFields.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_custommodeprofilefields_test", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/customModeProfileFields.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_custommodeprofilefields_test", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_buildcustommodefromdraft", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/customModeProfileFields.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_custommodeprofilefields_test", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodedefinition", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/customModeProfileFields.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_custommodeprofilefields_test", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_normalizecustommodefields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/customModeProfileFields.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_custommodeprofilefields_test", + "target": "apps_extension_chromium_src_shared_ui_tests_custommodeprofilefields_test_basemode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/customModeProfileFields.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_custommodeprofilefields_test", + "target": "apps_extension_chromium_src_utils_custommodellmprefix", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/customModeProfileFields.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_custommodeprofilefields_test", + "target": "apps_extension_chromium_src_utils_custommodellmprefix_getcustommodellmprefix", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/customModeProfileFields.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_custommodeprofilefields_test_basemode", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_normalizecustommodefields", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/customModeSystemInstructions.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_custommodesysteminstructions_test", + "target": "apps_extension_chromium_src_shared_ui_custommodepersistence", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/customModeSystemInstructions.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_custommodesysteminstructions_test", + "target": "apps_extension_chromium_src_shared_ui_custommodepersistence_custom_modes_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/customModeSystemInstructions.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_custommodesysteminstructions_test", + "target": "apps_extension_chromium_src_shared_ui_custommodepersistence_migratecustommodespersistedstate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/customModeSystemInstructions.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_custommodesysteminstructions_test", + "target": "apps_extension_chromium_src_shared_ui_custommodepersistence_parsecustommodesjson", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/customModeSystemInstructions.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_custommodesysteminstructions_test", + "target": "apps_extension_chromium_src_shared_ui_custommodepersistence_stringifycustommodes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/customModeSystemInstructions.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_custommodesysteminstructions_test", + "target": "apps_extension_chromium_src_shared_ui_custommoderuntime", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/customModeSystemInstructions.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_custommodesysteminstructions_test", + "target": "apps_extension_chromium_src_shared_ui_custommoderuntime_custommodedefinitiontoruntime", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/customModeSystemInstructions.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_custommodesysteminstructions_test", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/customModeSystemInstructions.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_custommodesysteminstructions_test", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_buildcustommodefromdraft", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/customModeSystemInstructions.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_custommodesysteminstructions_test", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodedefinition", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/customModeSystemInstructions.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_custommodesysteminstructions_test", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_normalizecustommodefields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/customModeSystemInstructions.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_custommodesysteminstructions_test", + "target": "apps_extension_chromium_src_shared_ui_tests_custommodesysteminstructions_test_basemode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/customModeSystemInstructions.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_custommodesysteminstructions_test", + "target": "apps_extension_chromium_src_utils_custommodellmprefix", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/customModeSystemInstructions.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_custommodesysteminstructions_test", + "target": "apps_extension_chromium_src_utils_custommodellmprefix_getcustommodellmprefix", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/customModeSystemInstructions.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_custommodesysteminstructions_test_basemode", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_normalizecustommodefields", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/isUserOwnedCustomMode.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_isuserownedcustommode_test", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/isUserOwnedCustomMode.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_isuserownedcustommode_test", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_isuserownedcustommode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/isUserOwnedCustomMode.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_isuserownedcustommode_test", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_normalizecustommodefields", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/isUserOwnedCustomMode.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_isuserownedcustommode_test", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/isUserOwnedCustomMode.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_isuserownedcustommode_test", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin_createdefaultscamwatchdogbuiltinmode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/scamWatchdogBuiltIn.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_scamwatchdogbuiltin_test", + "target": "apps_extension_chromium_src_shared_ui_custommoderuntime", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/scamWatchdogBuiltIn.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_scamwatchdogbuiltin_test", + "target": "apps_extension_chromium_src_shared_ui_custommoderuntime_custommodedefinitiontoruntime", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/scamWatchdogBuiltIn.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_scamwatchdogbuiltin_test", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/scamWatchdogBuiltIn.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_scamwatchdogbuiltin_test", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_ismodedeletable", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/scamWatchdogBuiltIn.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_scamwatchdogbuiltin_test", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/scamWatchdogBuiltIn.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_scamwatchdogbuiltin_test", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin_builtin_scam_watchdog_id", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/scamWatchdogBuiltIn.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_scamwatchdogbuiltin_test", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin_createdefaultscamwatchdogbuiltinmode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/scamWatchdogBuiltIn.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_scamwatchdogbuiltin_test", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin_isscamwatchdogbuiltinmode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/scamWatchdogBuiltIn.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_scamwatchdogbuiltin_test", + "target": "apps_extension_chromium_src_stores_activecustommoderuntime", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/scamWatchdogBuiltIn.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_scamwatchdogbuiltin_test", + "target": "apps_extension_chromium_src_stores_activecustommoderuntime_geteffectivellmmodelnameforactivemode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/scamWatchdogBuiltIn.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_scamwatchdogbuiltin_test", + "target": "apps_extension_chromium_src_utils_custommodellmprefix", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/scamWatchdogBuiltIn.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_scamwatchdogbuiltin_test", + "target": "apps_extension_chromium_src_utils_custommodellmprefix_getcustommodellmprefix", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/scamWatchdogBuiltIn.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_scamwatchdogbuiltin_test", + "target": "apps_extension_chromium_src_utils_custommodellmprefix_getcustommodellmprefixforwrchat", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/uiStateDefaults.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_uistatedefaults_test", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/uiStateDefaults.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_uistatedefaults_test", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin_builtin_scam_watchdog_id", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/uiStateDefaults.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_uistatedefaults_test", + "target": "apps_extension_chromium_src_shared_ui_uistate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/uiStateDefaults.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_uistatedefaults_test", + "target": "apps_extension_chromium_src_shared_ui_uistate_initialuistate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/watchdogPromptsChatScanSplit.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_watchdogpromptschatscansplit_test", + "target": "apps_extension_chromium_src_shared_ui_watchdogprompts", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/watchdogPromptsChatScanSplit.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_watchdogpromptschatscansplit_test", + "target": "apps_extension_chromium_src_shared_ui_watchdogprompts_extractscamwatchdogscanpromptfromlegacysearchfocus", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/watchdogPromptsChatScanSplit.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_watchdogpromptschatscansplit_test", + "target": "apps_extension_chromium_src_shared_ui_watchdogprompts_scam_watchdog_chat_instruction", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/watchdogPromptsChatScanSplit.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_watchdogpromptschatscansplit_test", + "target": "apps_extension_chromium_src_shared_ui_watchdogprompts_scam_watchdog_default_search_focus", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/watchdogPromptsChatScanSplit.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_watchdogpromptschatscansplit_test", + "target": "apps_extension_chromium_src_shared_ui_watchdogprompts_scam_watchdog_legacy_bundled_search_focus", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/watchdogPromptsChatScanSplit.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_watchdogpromptschatscansplit_test", + "target": "apps_extension_chromium_src_shared_ui_watchdogprompts_scamwatchdogsearchfocustochatonly", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/__tests__/watchdogPromptsChatScanSplit.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_tests_watchdogpromptschatscansplit_test", + "target": "apps_extension_chromium_src_shared_ui_watchdogprompts_watchdog_system_prompt", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_capabilities", + "target": "apps_extension_chromium_src_shared_ui_capabilities_ai_assist_actions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L193", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_capabilities", + "target": "apps_extension_chromium_src_shared_ui_capabilities_aiassistaction", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_capabilities", + "target": "apps_extension_chromium_src_shared_ui_capabilities_canperformaction", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_capabilities", + "target": "apps_extension_chromium_src_shared_ui_capabilities_composer_buttons", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_capabilities", + "target": "apps_extension_chromium_src_shared_ui_capabilities_composerbuttonconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L220", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_capabilities", + "target": "apps_extension_chromium_src_shared_ui_capabilities_generatemockairesponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_capabilities", + "target": "apps_extension_chromium_src_shared_ui_capabilities_getenabledcomposerbuttons", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_capabilities", + "target": "apps_extension_chromium_src_shared_ui_capabilities_getlayouttype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_capabilities", + "target": "apps_extension_chromium_src_shared_ui_capabilities_getmodelselectorlocation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_capabilities", + "target": "apps_extension_chromium_src_shared_ui_capabilities_getprimarybuttonlabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_capabilities", + "target": "apps_extension_chromium_src_shared_ui_capabilities_isadminmodevisible", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L178", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_capabilities", + "target": "apps_extension_chromium_src_shared_ui_capabilities_ischatlistvisible", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_capabilities", + "target": "apps_extension_chromium_src_shared_ui_capabilities_iscomposerbuttonenabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_capabilities", + "target": "apps_extension_chromium_src_shared_ui_capabilities_iscomposervisible", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L185", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_capabilities", + "target": "apps_extension_chromium_src_shared_ui_capabilities_isvideogridvisible", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L158", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_capabilities", + "target": "apps_extension_chromium_src_shared_ui_capabilities_layouttype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L211", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_capabilities", + "target": "apps_extension_chromium_src_shared_ui_capabilities_mock_models", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L205", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_capabilities", + "target": "apps_extension_chromium_src_shared_ui_capabilities_mockmodel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_capabilities", + "target": "apps_extension_chromium_src_shared_ui_capabilities_shouldshowmodelinbutton", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_capabilities", + "target": "apps_extension_chromium_src_shared_ui_uistate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_capabilities", + "target": "apps_extension_chromium_src_shared_ui_uistate_builtinmode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_capabilities", + "target": "apps_extension_chromium_src_shared_ui_uistate_composermode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_capabilities", + "target": "apps_extension_chromium_src_shared_ui_uistate_mode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_capabilities", + "target": "apps_extension_chromium_src_shared_ui_uistate_resolvemodeforcapabilities", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_capabilities", + "target": "apps_extension_chromium_src_shared_ui_uistate_role", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_capabilities", + "target": "apps_extension_chromium_src_shared_ui_uistate_uistate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/AIAssistPopover.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_aiassistpopover", + "target": "apps_extension_chromium_src_shared_ui_capabilities", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/CommandChatView.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_commandchatview", + "target": "apps_extension_chromium_src_shared_ui_capabilities", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ComposerToolbelt.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_composertoolbelt", + "target": "apps_extension_chromium_src_shared_ui_capabilities", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_capabilities_composerbuttonconfig", + "target": "apps_extension_chromium_src_shared_ui_uistate_composermode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ComposerToolbelt.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_composertoolbelt", + "target": "apps_extension_chromium_src_shared_ui_capabilities_composer_buttons", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_capabilities_getenabledcomposerbuttons", + "target": "apps_extension_chromium_src_shared_ui_uistate_resolvemodeforcapabilities" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_capabilities_iscomposerbuttonenabled", + "target": "apps_extension_chromium_src_shared_ui_capabilities_getenabledcomposerbuttons", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_capabilities_canperformaction", + "target": "apps_extension_chromium_src_shared_ui_capabilities_iscomposerbuttonenabled", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ComposerToolbelt.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_composertoolbelt", + "target": "apps_extension_chromium_src_shared_ui_capabilities_iscomposerbuttonenabled", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/ComposerToolbelt.tsx", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_composertoolbelt_composertoolbelt", + "target": "apps_extension_chromium_src_shared_ui_capabilities_iscomposerbuttonenabled" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_capabilities_getprimarybuttonlabel", + "target": "apps_extension_chromium_src_shared_ui_uistate_resolvemodeforcapabilities" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/CommandChatView.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_commandchatview", + "target": "apps_extension_chromium_src_shared_ui_capabilities_getprimarybuttonlabel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/CommandChatView.tsx", + "source_location": "L183", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_commandchatview_commandchatview", + "target": "apps_extension_chromium_src_shared_ui_capabilities_getprimarybuttonlabel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_capabilities_shouldshowmodelinbutton", + "target": "apps_extension_chromium_src_shared_ui_uistate_resolvemodeforcapabilities" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/CommandChatView.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_commandchatview", + "target": "apps_extension_chromium_src_shared_ui_capabilities_shouldshowmodelinbutton", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/CommandChatView.tsx", + "source_location": "L184", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_commandchatview_commandchatview", + "target": "apps_extension_chromium_src_shared_ui_capabilities_shouldshowmodelinbutton" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_capabilities_getmodelselectorlocation", + "target": "apps_extension_chromium_src_shared_ui_uistate_resolvemodeforcapabilities" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_capabilities_iscomposervisible", + "target": "apps_extension_chromium_src_shared_ui_uistate_resolvemodeforcapabilities" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ComposerToolbelt.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_composertoolbelt", + "target": "apps_extension_chromium_src_shared_ui_capabilities_iscomposervisible", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/ComposerToolbelt.tsx", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_composertoolbelt_composertoolbelt", + "target": "apps_extension_chromium_src_shared_ui_capabilities_iscomposervisible" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_capabilities_canperformaction", + "target": "apps_extension_chromium_src_shared_ui_uistate_resolvemodeforcapabilities" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_capabilities_getlayouttype", + "target": "apps_extension_chromium_src_shared_ui_uistate_resolvemodeforcapabilities" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L179", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_capabilities_ischatlistvisible", + "target": "apps_extension_chromium_src_shared_ui_capabilities_getlayouttype", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/shared/ui/capabilities.ts", + "source_location": "L186", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_capabilities_isvideogridvisible", + "target": "apps_extension_chromium_src_shared_ui_uistate_resolvemodeforcapabilities" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/AIAssistPopover.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_aiassistpopover", + "target": "apps_extension_chromium_src_shared_ui_capabilities_ai_assist_actions", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/AIAssistPopover.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_aiassistpopover", + "target": "apps_extension_chromium_src_shared_ui_capabilities_mock_models", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/AIAssistPopover.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_aiassistpopover", + "target": "apps_extension_chromium_src_shared_ui_capabilities_generatemockairesponse", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/AIAssistPopover.tsx", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_aiassistpopover_aiassistpopover", + "target": "apps_extension_chromium_src_shared_ui_capabilities_generatemockairesponse" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeDisplay.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodedisplay", + "target": "apps_extension_chromium_src_shared_ui_custommodedisplay_coercesessionmode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeDisplay.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodedisplay", + "target": "apps_extension_chromium_src_shared_ui_custommodedisplay_safecustommoderowlabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeDisplay.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodedisplay", + "target": "apps_extension_chromium_src_shared_ui_custommodedisplay_safedraftstring", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeDisplay.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodedisplay", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeDisplay.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodedisplay", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_sessionmode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepBasics.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepbasics", + "target": "apps_extension_chromium_src_shared_ui_custommodedisplay", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepFocus.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepfocus", + "target": "apps_extension_chromium_src_shared_ui_custommodedisplay", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepModel.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepmodel", + "target": "apps_extension_chromium_src_shared_ui_custommodedisplay", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepReview.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepreview", + "target": "apps_extension_chromium_src_shared_ui_custommodedisplay", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ModeSelect.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_modeselect", + "target": "apps_extension_chromium_src_shared_ui_custommodedisplay", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ModeSelect.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_modeselect", + "target": "apps_extension_chromium_src_shared_ui_custommodedisplay_safecustommoderowlabel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/ModeSelect.tsx", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_modeselect_modeselect", + "target": "apps_extension_chromium_src_shared_ui_custommodedisplay_safecustommoderowlabel" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepBasics.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepbasics", + "target": "apps_extension_chromium_src_shared_ui_custommodedisplay_safedraftstring", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepBasics.tsx", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepbasics_stepbasics", + "target": "apps_extension_chromium_src_shared_ui_custommodedisplay_safedraftstring" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepFocus.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepfocus", + "target": "apps_extension_chromium_src_shared_ui_custommodedisplay_safedraftstring", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepFocus.tsx", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepfocus_stepfocus", + "target": "apps_extension_chromium_src_shared_ui_custommodedisplay_safedraftstring" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepModel.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepmodel", + "target": "apps_extension_chromium_src_shared_ui_custommodedisplay_safedraftstring", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepModel.tsx", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepmodel_stepmodel", + "target": "apps_extension_chromium_src_shared_ui_custommodedisplay_safedraftstring" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepReview.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepreview", + "target": "apps_extension_chromium_src_shared_ui_custommodedisplay_safedraftstring", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepReview.tsx", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepreview_stepreview", + "target": "apps_extension_chromium_src_shared_ui_custommodedisplay_safedraftstring" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeIntervalPresets.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodeintervalpresets", + "target": "apps_extension_chromium_src_shared_ui_custommodeintervalpresets_custom_mode_interval_preset_options", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeIntervalPresets.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodeintervalpresets", + "target": "apps_extension_chromium_src_shared_ui_custommodeintervalpresets_custom_mode_interval_preset_seconds", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeIntervalPresets.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodeintervalpresets", + "target": "apps_extension_chromium_src_shared_ui_custommodeintervalpresets_custommodeintervalpresetseconds", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeIntervalPresets.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodeintervalpresets", + "target": "apps_extension_chromium_src_shared_ui_custommodeintervalpresets_formatcustommodeintervalpresetlabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeIntervalPresets.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodeintervalpresets", + "target": "apps_extension_chromium_src_shared_ui_custommodeintervalpresets_iscustommodeintervalpresetseconds", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeIntervalPresets.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodeintervalpresets", + "target": "apps_extension_chromium_src_shared_ui_custommodeintervalpresets_label_by_seconds", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeIntervalPresets.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodeintervalpresets", + "target": "apps_extension_chromium_src_shared_ui_custommodeintervalpresets_snapsecondstointervalpreset", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes", + "target": "apps_extension_chromium_src_shared_ui_custommodeintervalpresets", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/addModeWizardValidation.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation", + "target": "apps_extension_chromium_src_shared_ui_custommodeintervalpresets", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepReview.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepreview", + "target": "apps_extension_chromium_src_shared_ui_custommodeintervalpresets", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepRun.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_steprun", + "target": "apps_extension_chromium_src_shared_ui_custommodeintervalpresets", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/customModeLlmPrefix.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_custommodellmprefix", + "target": "apps_extension_chromium_src_shared_ui_custommodeintervalpresets", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepRun.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_steprun", + "target": "apps_extension_chromium_src_shared_ui_custommodeintervalpresets_custom_mode_interval_preset_options", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/shared/ui/customModeIntervalPresets.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodeintervalpresets_formatcustommodeintervalpresetlabel", + "target": "apps_extension_chromium_src_shared_ui_custommodeintervalpresets_label_by_seconds" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepReview.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepreview", + "target": "apps_extension_chromium_src_shared_ui_custommodeintervalpresets_formatcustommodeintervalpresetlabel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepReview.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepreview_stepreview", + "target": "apps_extension_chromium_src_shared_ui_custommodeintervalpresets_formatcustommodeintervalpresetlabel" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/customModeLlmPrefix.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_custommodellmprefix", + "target": "apps_extension_chromium_src_shared_ui_custommodeintervalpresets_formatcustommodeintervalpresetlabel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/utils/customModeLlmPrefix.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_custommodellmprefix_getcustommodellmprefix", + "target": "apps_extension_chromium_src_shared_ui_custommodeintervalpresets_formatcustommodeintervalpresetlabel" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes", + "target": "apps_extension_chromium_src_shared_ui_custommodeintervalpresets_iscustommodeintervalpresetseconds", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L559", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes_migrateintervalseconds", + "target": "apps_extension_chromium_src_shared_ui_custommodeintervalpresets_iscustommodeintervalpresetseconds", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/addModeWizardValidation.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation", + "target": "apps_extension_chromium_src_shared_ui_custommodeintervalpresets_iscustommodeintervalpresetseconds", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/addModeWizardValidation.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation_getinlinefielderrorsforstep", + "target": "apps_extension_chromium_src_shared_ui_custommodeintervalpresets_iscustommodeintervalpresetseconds" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/addModeWizardValidation.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation_validateaddmodewizardstep", + "target": "apps_extension_chromium_src_shared_ui_custommodeintervalpresets_iscustommodeintervalpresetseconds" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes", + "target": "apps_extension_chromium_src_shared_ui_custommodeintervalpresets_snapsecondstointervalpreset", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L550", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes_migrateintervalseconds", + "target": "apps_extension_chromium_src_shared_ui_custommodeintervalpresets_snapsecondstointervalpreset", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModePersistence.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodepersistence", + "target": "apps_extension_chromium_src_shared_ui_custommodepersistence_coercecustommoderecord", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModePersistence.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodepersistence", + "target": "apps_extension_chromium_src_shared_ui_custommodepersistence_custom_modes_persist_key", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModePersistence.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodepersistence", + "target": "apps_extension_chromium_src_shared_ui_custommodepersistence_custom_modes_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModePersistence.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodepersistence", + "target": "apps_extension_chromium_src_shared_ui_custommodepersistence_islegacynestedshape", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModePersistence.ts", + "source_location": "L160", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodepersistence", + "target": "apps_extension_chromium_src_shared_ui_custommodepersistence_loadcustommodesfromlocalstoragekey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModePersistence.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodepersistence", + "target": "apps_extension_chromium_src_shared_ui_custommodepersistence_migratecustommodespersistedstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModePersistence.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodepersistence", + "target": "apps_extension_chromium_src_shared_ui_custommodepersistence_migratelegacynestedrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModePersistence.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodepersistence", + "target": "apps_extension_chromium_src_shared_ui_custommodepersistence_normalizesessionmode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModePersistence.ts", + "source_location": "L134", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodepersistence", + "target": "apps_extension_chromium_src_shared_ui_custommodepersistence_parsecustommodesjson", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModePersistence.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodepersistence", + "target": "apps_extension_chromium_src_shared_ui_custommodepersistence_persistedslice", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModePersistence.ts", + "source_location": "L173", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodepersistence", + "target": "apps_extension_chromium_src_shared_ui_custommodepersistence_savecustommodestolocalstoragekey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModePersistence.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodepersistence", + "target": "apps_extension_chromium_src_shared_ui_custommodepersistence_stringifycustommodes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModePersistence.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodepersistence", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModePersistence.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodepersistence", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodedefinition", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModePersistence.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodepersistence", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_default_ollama_endpoint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModePersistence.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodepersistence", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_normalizecustommodefields", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModePersistence.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodepersistence", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_sessionmode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModePersistence.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodepersistence_migratecustommodespersistedstate", + "target": "apps_extension_chromium_src_shared_ui_custommodepersistence_coercecustommoderecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/shared/ui/customModePersistence.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodepersistence_migratecustommodespersistedstate", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_normalizecustommodefields" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModePersistence.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodepersistence_coercecustommoderecord", + "target": "apps_extension_chromium_src_shared_ui_custommodepersistence_islegacynestedshape", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModePersistence.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodepersistence_coercecustommoderecord", + "target": "apps_extension_chromium_src_shared_ui_custommodepersistence_migratelegacynestedrow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/shared/ui/customModePersistence.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodepersistence_coercecustommoderecord", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_normalizecustommodefields" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModePersistence.ts", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodepersistence_parsecustommodesjson", + "target": "apps_extension_chromium_src_shared_ui_custommodepersistence_coercecustommoderecord", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModePersistence.ts", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodepersistence_migratelegacynestedrow", + "target": "apps_extension_chromium_src_shared_ui_custommodepersistence_normalizesessionmode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModePersistence.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodepersistence_migratelegacynestedrow", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_normalizecustommodefields", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModePersistence.ts", + "source_location": "L176", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodepersistence_savecustommodestolocalstoragekey", + "target": "apps_extension_chromium_src_shared_ui_custommodepersistence_stringifycustommodes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModePersistence.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodepersistence_loadcustommodesfromlocalstoragekey", + "target": "apps_extension_chromium_src_shared_ui_custommodepersistence_parsecustommodesjson", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/shared/ui/customModePersistence.ts", + "source_location": "L151", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodepersistence_parsecustommodesjson", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_normalizecustommodefields" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeRuntime.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommoderuntime", + "target": "apps_extension_chromium_src_shared_ui_custommoderuntime_custommodedefinitiontoruntime", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeRuntime.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommoderuntime", + "target": "apps_extension_chromium_src_shared_ui_custommoderuntime_custommoderuntimeconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeRuntime.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommoderuntime", + "target": "apps_extension_chromium_src_shared_ui_custommoderuntime_wrexpertfrommetadata", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeRuntime.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommoderuntime", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeRuntime.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommoderuntime", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodedefinition", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeRuntime.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommoderuntime", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodeprofilefield", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeRuntime.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommoderuntime", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_getcustommodescopefrommetadata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeRuntime.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommoderuntime", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_sessionmode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeRuntime.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommoderuntime", + "target": "apps_extension_chromium_src_utils_parsewrexpertmarkdown", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeRuntime.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommoderuntime", + "target": "apps_extension_chromium_src_utils_parsewrexpertmarkdown_wrexpertparsedprofile", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/activeCustomModeRuntime.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_activecustommoderuntime", + "target": "apps_extension_chromium_src_shared_ui_custommoderuntime", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/customModeLlmPrefix.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_custommodellmprefix", + "target": "apps_extension_chromium_src_shared_ui_custommoderuntime", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/__tests__/customModeLlmPrefixWrChat.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_tests_custommodellmprefixwrchat_test", + "target": "apps_extension_chromium_src_shared_ui_custommoderuntime", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeRuntime.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommoderuntime_custommoderuntimeconfig", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodeprofilefield", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeRuntime.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommoderuntime_custommoderuntimeconfig", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_sessionmode", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeRuntime.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommoderuntime_custommoderuntimeconfig", + "target": "apps_extension_chromium_src_utils_parsewrexpertmarkdown_wrexpertparsedprofile", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/activeCustomModeRuntime.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_activecustommoderuntime", + "target": "apps_extension_chromium_src_shared_ui_custommoderuntime_custommoderuntimeconfig", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_shared_ui_custommoderuntime_custommoderuntimeconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/customModeLlmPrefix.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_custommodellmprefix", + "target": "apps_extension_chromium_src_shared_ui_custommoderuntime_custommoderuntimeconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeRuntime.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommoderuntime_custommodedefinitiontoruntime", + "target": "apps_extension_chromium_src_shared_ui_custommoderuntime_wrexpertfrommetadata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/shared/ui/customModeRuntime.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommoderuntime_custommodedefinitiontoruntime", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_getcustommodescopefrommetadata" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/activeCustomModeRuntime.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_activecustommoderuntime", + "target": "apps_extension_chromium_src_shared_ui_custommoderuntime_custommodedefinitiontoruntime", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/stores/activeCustomModeRuntime.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_activecustommoderuntime_getactivecustommoderuntime", + "target": "apps_extension_chromium_src_shared_ui_custommoderuntime_custommodedefinitiontoruntime" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/stores/activeCustomModeRuntime.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_activecustommoderuntime_useactivecustommoderuntime", + "target": "apps_extension_chromium_src_shared_ui_custommoderuntime_custommodedefinitiontoruntime" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/__tests__/customModeLlmPrefixWrChat.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_tests_custommodellmprefixwrchat_test", + "target": "apps_extension_chromium_src_shared_ui_custommoderuntime_custommodedefinitiontoruntime", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L390", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_buildcustommodefromdraft", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L351", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_createcustommodeid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L332", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_createemptycustommodeprofilefield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custom_mode_diff_folders_draft_key", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custom_mode_profile_field_usage_options", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custom_mode_scope_urls_draft_key", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custom_mode_trigger_bar_icon_key", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodedefinition", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L188", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodedraft", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodeprofilefield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodeprofilefieldtype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodeprofilefieldusage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodescopemetadata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L190", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_default_ollama_endpoint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L192", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_defaultcustommodedraft", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L297", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_formatcustommodeprofilefieldline", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L320", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_formatcustommodeprofilefieldsforprefix", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_getcustommodescopefrommetadata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_getcustommodetriggerbaricon", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L157", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_getdiffwatchfoldersdrafttext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_getscopeurlsdrafttext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L365", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_isbuiltinmodeid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L361", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_iscustommodeid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L537", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_isisodate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L373", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_ismodedeletable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L369", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_ispersistedmodeid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L232", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_isprofilefieldtype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L242", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_isprofilefieldusage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L291", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_istruthytogglevalue", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L380", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_isuserownedcustommode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L171", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_isvalidcustommodescopeurlline", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L542", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_migrateintervalseconds", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_modetypekind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L405", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_normalizecustommodefields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L343", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_normalizecustommodenamekey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L251", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_normalizeprofilefields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L222", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_profile_field_types", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L236", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_profilefieldhascontent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L455", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_sanitizecustommodemetadataforpersist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_sessionmode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L212", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_slugcustommodeprofilefieldkey", + "confidence_score": 1.0 + }, + { + "relation": "cites", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L348", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes", + "target": "docref_rfc_4122", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/scamWatchdogBuiltIn.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/uiState.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_uistate", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/activeCustomModeRuntime.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_activecustommoderuntime", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useCustomModesStore.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_usecustommodesstore", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizard.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizardStepBody.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardstepbody", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/addModeWizardTypes.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardtypes", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/addModeWizardValidation.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/customModeDraftDirty.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_custommodedraftdirty", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepBasics.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepbasics", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepFocus.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepfocus", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepModel.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepmodel", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepProfileFields.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepReview.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepreview", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepRun.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_steprun", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepSession.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepsession", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/AddModeWizardHost.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizardhost", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ModeHeaderBadge.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_modeheaderbadge", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/modeRowActions.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_moderowactions", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ModeRowAffordances.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_moderowaffordances", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ModeSelect.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_modeselect", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/__tests__/modeRowActions.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_tests_moderowactions_test", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/dropdownSections.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/__tests__/dropdownSections.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_tests_dropdownsections_test", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/customModeLlmPrefix.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_custommodellmprefix", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepProfileFields.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodeprofilefieldtype", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepProfileFields.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custom_mode_profile_field_usage_options", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepProfileFields.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodeprofilefield", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/scamWatchdogBuiltIn.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodedefinition", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useCustomModesStore.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_usecustommodesstore", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodedefinition", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useCustomModesStore.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_usecustommodesstore_custommodesstate", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodedefinition", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizard.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodedefinition", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizard.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard_addmodewizardprops", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodedefinition", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizardStepBody.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardstepbody", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodedefinition", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/AddModeWizardHost.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizardhost", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodedefinition", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/modeRowActions.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_moderowactions", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodedefinition", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/dropdownSections.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodedefinition", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepFocus.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepfocus", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custom_mode_scope_urls_draft_key", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepFocus.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepfocus", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custom_mode_diff_folders_draft_key", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepBasics.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepbasics", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custom_mode_trigger_bar_icon_key", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepBasics.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepbasics", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_getcustommodetriggerbaricon", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepBasics.tsx", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepbasics_stepbasics", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_getcustommodetriggerbaricon" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepReview.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepreview", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_getcustommodetriggerbaricon", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepReview.tsx", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepreview_stepreview", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_getcustommodetriggerbaricon" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/dropdownSections.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_getcustommodetriggerbaricon", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/dropdownSections.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections_buildusercustommodedropdownrows", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_getcustommodetriggerbaricon", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_getcustommodetriggerbaricon", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L334", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrmultitriggerbar", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_getcustommodetriggerbaricon" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useCustomModesStore.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_usecustommodesstore", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_getcustommodescopefrommetadata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/AddModeWizardHost.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizardhost", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_getcustommodescopefrommetadata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/AddModeWizardHost.tsx", + "source_location": "L185", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizardhost_addmodewizardhost", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_getcustommodescopefrommetadata" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/addModeWizardValidation.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_getscopeurlsdrafttext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/addModeWizardValidation.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation_getinlinefielderrorsforstep", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_getscopeurlsdrafttext" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/addModeWizardValidation.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation_validateaddmodewizardstep", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_getscopeurlsdrafttext" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepFocus.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepfocus", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_getscopeurlsdrafttext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepFocus.tsx", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepfocus_stepfocus", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_getscopeurlsdrafttext" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepReview.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepreview", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_getscopeurlsdrafttext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepReview.tsx", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepreview_stepreview", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_getscopeurlsdrafttext" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepFocus.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepfocus", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_getdiffwatchfoldersdrafttext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepFocus.tsx", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepfocus_stepfocus", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_getdiffwatchfoldersdrafttext" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepReview.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepreview", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_getdiffwatchfoldersdrafttext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepReview.tsx", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepreview_stepreview", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_getdiffwatchfoldersdrafttext" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/addModeWizardValidation.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_isvalidcustommodescopeurlline", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/addModeWizardValidation.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation_getinlinefielderrorsforstep", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_isvalidcustommodescopeurlline" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/addModeWizardValidation.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation_validateaddmodewizardstep", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_isvalidcustommodescopeurlline" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useCustomModesStore.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_usecustommodesstore", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodedraft", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useCustomModesStore.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_usecustommodesstore_custommodesstate", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodedraft", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizard.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodedraft", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizard.tsx", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard_addmodewizardprops", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodedraft", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizardStepBody.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardstepbody", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodedraft", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/addModeWizardTypes.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardtypes", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodedraft", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/addModeWizardValidation.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodedraft", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/customModeDraftDirty.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_custommodedraftdirty", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodedraft", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepBasics.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepbasics", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodedraft", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepFocus.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepfocus", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodedraft", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepModel.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepmodel", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodedraft", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepProfileFields.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodedraft", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepReview.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepreview", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodedraft", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepRun.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_steprun", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodedraft", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepSession.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepsession", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_custommodedraft", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepModel.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepmodel", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_default_ollama_endpoint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizard.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_defaultcustommodedraft", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizard.tsx", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard_addmodewizard", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_defaultcustommodedraft" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/customModeDraftDirty.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_custommodedraftdirty", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_defaultcustommodedraft", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/customModeDraftDirty.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_custommodedraftdirty_iscustommodedraftdirty", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_defaultcustommodedraft" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L334", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes_createemptycustommodeprofilefield", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_slugcustommodeprofilefieldkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L263", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes_normalizeprofilefields", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_slugcustommodeprofilefieldkey", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepProfileFields.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_slugcustommodeprofilefieldkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepProfileFields.tsx", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields_shouldautokey", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_slugcustommodeprofilefieldkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepProfileFields.tsx", + "source_location": "L411", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields_stepprofilefields", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_slugcustommodeprofilefieldkey" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L260", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes_normalizeprofilefields", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_isprofilefieldtype", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L261", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes_normalizeprofilefields", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_profilefieldhascontent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L282", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes_normalizeprofilefields", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_isprofilefieldusage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L438", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes_normalizecustommodefields", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_normalizeprofilefields", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L304", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes_formatcustommodeprofilefieldline", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_istruthytogglevalue", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L325", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes_formatcustommodeprofilefieldsforprefix", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_formatcustommodeprofilefieldline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/customModeLlmPrefix.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_custommodellmprefix", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_formatcustommodeprofilefieldsforprefix", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/customModeLlmPrefix.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_custommodellmprefix_appendwrchatcontextparts", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_formatcustommodeprofilefieldsforprefix", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepProfileFields.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_createemptycustommodeprofilefield", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepProfileFields.tsx", + "source_location": "L457", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields_stepprofilefields", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_createemptycustommodeprofilefield" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useCustomModesStore.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_usecustommodesstore", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_normalizecustommodenamekey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L392", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes_buildcustommodefromdraft", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_createcustommodeid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L414", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes_normalizecustommodefields", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_createcustommodeid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L370", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes_ispersistedmodeid", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_iscustommodeid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/uiState.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_uistate", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_iscustommodeid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/shared/ui/uiState.ts", + "source_location": "L214", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_uistate_setrole", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_iscustommodeid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/shared/ui/uiState.ts", + "source_location": "L175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_uistate_switchmode", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_iscustommodeid" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ModeSelect.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_modeselect", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_iscustommodeid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/ModeSelect.tsx", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_modeselect_modeselect", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_iscustommodeid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L370", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes_ispersistedmodeid", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_isbuiltinmodeid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizardStepBody.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardstepbody", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_isbuiltinmodeid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizardStepBody.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardstepbody_addmodewizardstepbody", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_isbuiltinmodeid" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/uiState.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_uistate", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_ispersistedmodeid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/shared/ui/uiState.ts", + "source_location": "L239", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_uistate_getdisplaylabel", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_ispersistedmodeid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/shared/ui/uiState.ts", + "source_location": "L254", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_uistate_getshortdisplaylabel", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_ispersistedmodeid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/shared/ui/uiState.ts", + "source_location": "L271", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_uistate_isplaceholdermode", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_ispersistedmodeid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/shared/ui/uiState.ts", + "source_location": "L291", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_uistate_resolvemodeforcapabilities", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_ispersistedmodeid" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/activeCustomModeRuntime.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_activecustommoderuntime", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_ispersistedmodeid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/stores/activeCustomModeRuntime.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_activecustommoderuntime_getactivecustommoderuntime", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_ispersistedmodeid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/stores/activeCustomModeRuntime.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_activecustommoderuntime_useactivecustommoderuntime", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_ispersistedmodeid" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ModeHeaderBadge.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_modeheaderbadge", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_ispersistedmodeid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/ModeHeaderBadge.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_modeheaderbadge_modeheaderbadge", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_ispersistedmodeid" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ModeSelect.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_modeselect", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_ispersistedmodeid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/ModeSelect.tsx", + "source_location": "L218", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_modeselect_modeselect", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_ispersistedmodeid" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useCustomModesStore.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_usecustommodesstore", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_ismodedeletable", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/modeRowActions.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_moderowactions", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_ismodedeletable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/modeRowActions.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_moderowactions_confirmdeletemode", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_ismodedeletable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ModeRowAffordances.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_moderowaffordances", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_ismodedeletable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/ModeRowAffordances.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_moderowaffordances_moderowaffordances", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_ismodedeletable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/__tests__/modeRowActions.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_tests_moderowactions_test", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_ismodedeletable", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/dropdownSections.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_isuserownedcustommode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/dropdownSections.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections_buildusercustommodedropdownrows", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_isuserownedcustommode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L393", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes_buildcustommodefromdraft", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_normalizecustommodefields", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L440", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes_normalizecustommodefields", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_isisodate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L416", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes_normalizecustommodefields", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_migrateintervalseconds", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/customModeTypes.ts", + "source_location": "L442", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_custommodetypes_normalizecustommodefields", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_sanitizecustommodemetadataforpersist", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/scamWatchdogBuiltIn.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_normalizecustommodefields", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/shared/ui/scamWatchdogBuiltIn.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin_createdefaultscamwatchdogbuiltinmode", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_normalizecustommodefields" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/__tests__/modeRowActions.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_tests_moderowactions_test", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_normalizecustommodefields", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/__tests__/dropdownSections.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_tests_dropdownsections_test", + "target": "apps_extension_chromium_src_shared_ui_custommodetypes_normalizecustommodefields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/lightboxTheme.ts", + "source_location": "L339", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_lightboxtheme", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_bodystyle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/lightboxTheme.ts", + "source_location": "L419", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_lightboxtheme", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_cardstyle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/lightboxTheme.ts", + "source_location": "L317", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_lightboxtheme", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_closebuttonstyle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/lightboxTheme.ts", + "source_location": "L165", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_lightboxtheme", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_dark_tokens", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/lightboxTheme.ts", + "source_location": "L545", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_lightboxtheme", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_dividerstyle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/lightboxTheme.ts", + "source_location": "L203", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_lightboxtheme", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_getthemetokens", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/lightboxTheme.ts", + "source_location": "L293", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_lightboxtheme", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headermaintitlestyle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/lightboxTheme.ts", + "source_location": "L262", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_lightboxtheme", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headerstyle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/lightboxTheme.ts", + "source_location": "L305", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_lightboxtheme", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headersubtitlestyle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/lightboxTheme.ts", + "source_location": "L279", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_lightboxtheme", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headertitlestyle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/lightboxTheme.ts", + "source_location": "L387", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_lightboxtheme", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_inputstyle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/lightboxTheme.ts", + "source_location": "L404", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_lightboxtheme", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_labelstyle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/lightboxTheme.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_lightboxtheme", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_lightboxtheme", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/lightboxTheme.ts", + "source_location": "L470", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_lightboxtheme", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_notificationstyle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/lightboxTheme.ts", + "source_location": "L223", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_lightboxtheme", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_overlaystyle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/lightboxTheme.ts", + "source_location": "L242", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_lightboxtheme", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_panelstyle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/lightboxTheme.ts", + "source_location": "L432", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_lightboxtheme", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_primarybuttonstyle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/lightboxTheme.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_lightboxtheme", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_pro_tokens", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/lightboxTheme.ts", + "source_location": "L451", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_lightboxtheme", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_secondarybuttonstyle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/lightboxTheme.ts", + "source_location": "L531", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_lightboxtheme", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_sectionheadingstyle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/lightboxTheme.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_lightboxtheme", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_standard_tokens", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/lightboxTheme.ts", + "source_location": "L353", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_lightboxtheme", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_tabbarstyle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/lightboxTheme.ts", + "source_location": "L367", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_lightboxtheme", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_tabstyle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/lightboxTheme.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_lightboxtheme", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_themetokens", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/lightboxTheme.ts", + "source_location": "L509", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_lightboxtheme", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_toaststyle", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizard.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizardStepBody.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardstepbody", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepBasics.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepbasics", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepFocus.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepfocus", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepModel.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepmodel", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepProfileFields.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepReview.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepreview", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepRun.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_steprun", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepSession.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepsession", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/WizardFieldError.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_wizardfielderror", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/wizardStyles.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_wizardstyles", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/AddModeWizardHost.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizardhost", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/RuntimeConfigLightbox.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_runtimeconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizard.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_lightboxtheme", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizard.tsx", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard_addmodewizardprops", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_lightboxtheme", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/AddModeWizardHost.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizardhost", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_lightboxtheme", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_getthemetokens", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L5115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_getthemetokens", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizard.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_getthemetokens", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizard.tsx", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard_addmodewizard", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_getthemetokens" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizardStepBody.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardstepbody", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_getthemetokens", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepBasics.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepbasics", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_getthemetokens", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepFocus.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepfocus", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_getthemetokens", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepModel.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepmodel", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_getthemetokens", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepProfileFields.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_getthemetokens", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepReview.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepreview", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_getthemetokens", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepRun.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_steprun", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_getthemetokens", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepSession.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepsession", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_getthemetokens", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/WizardFieldError.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_wizardfielderror", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_getthemetokens", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/wizardStyles.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_wizardstyles", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_getthemetokens", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/RuntimeConfigLightbox.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_runtimeconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_getthemetokens", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/wrguard/components/RuntimeConfigLightbox.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_runtimeconfiglightbox_runtimeconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_getthemetokens" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizard.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_overlaystyle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizard.tsx", + "source_location": "L257", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard_addmodewizard", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_overlaystyle" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/RuntimeConfigLightbox.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_runtimeconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_overlaystyle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/wrguard/components/RuntimeConfigLightbox.tsx", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_runtimeconfiglightbox_runtimeconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_overlaystyle" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizard.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_panelstyle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizard.tsx", + "source_location": "L231", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard_addmodewizard", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_panelstyle" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/RuntimeConfigLightbox.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_runtimeconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_panelstyle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/wrguard/components/RuntimeConfigLightbox.tsx", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_runtimeconfiglightbox_runtimeconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_panelstyle" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/RuntimeConfigLightbox.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_runtimeconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headerstyle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/wrguard/components/RuntimeConfigLightbox.tsx", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_runtimeconfiglightbox_runtimeconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headerstyle" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/RuntimeConfigLightbox.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_runtimeconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headertitlestyle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/wrguard/components/RuntimeConfigLightbox.tsx", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_runtimeconfiglightbox_runtimeconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headertitlestyle" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/RuntimeConfigLightbox.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_runtimeconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headermaintitlestyle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/wrguard/components/RuntimeConfigLightbox.tsx", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_runtimeconfiglightbox_runtimeconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headermaintitlestyle" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/RuntimeConfigLightbox.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_runtimeconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headersubtitlestyle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/wrguard/components/RuntimeConfigLightbox.tsx", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_runtimeconfiglightbox_runtimeconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_headersubtitlestyle" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizard.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_closebuttonstyle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizard.tsx", + "source_location": "L320", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard_addmodewizard", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_closebuttonstyle" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/RuntimeConfigLightbox.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_runtimeconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_closebuttonstyle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/wrguard/components/RuntimeConfigLightbox.tsx", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_runtimeconfiglightbox_runtimeconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_closebuttonstyle" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizard.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_bodystyle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizard.tsx", + "source_location": "L350", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard_addmodewizard", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_bodystyle" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/RuntimeConfigLightbox.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_runtimeconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_bodystyle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/wrguard/components/RuntimeConfigLightbox.tsx", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_runtimeconfiglightbox_runtimeconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_bodystyle" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepBasics.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepbasics", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_inputstyle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepBasics.tsx", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepbasics_stepbasics", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_inputstyle" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepModel.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepmodel", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_inputstyle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepModel.tsx", + "source_location": "L172", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepmodel_stepmodel", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_inputstyle" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepRun.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_steprun", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_inputstyle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepRun.tsx", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_steprun_steprun", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_inputstyle" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepSession.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepsession", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_inputstyle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepSession.tsx", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepsession_stepsession", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_inputstyle" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/wizardStyles.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_wizardstyles", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_inputstyle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/wizardStyles.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_wizardstyles_wizardtextareastyle", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_inputstyle" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepBasics.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepbasics", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_labelstyle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepBasics.tsx", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepbasics_stepbasics", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_labelstyle" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepFocus.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepfocus", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_labelstyle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepFocus.tsx", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepfocus_stepfocus", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_labelstyle" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepModel.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepmodel", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_labelstyle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepModel.tsx", + "source_location": "L156", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepmodel_stepmodel", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_labelstyle" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepProfileFields.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_labelstyle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepProfileFields.tsx", + "source_location": "L671", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields_stepprofilefields", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_labelstyle" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepRun.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_steprun", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_labelstyle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepRun.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_steprun_steprun", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_labelstyle" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepSession.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepsession", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_labelstyle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepSession.tsx", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepsession_stepsession", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_labelstyle" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/RuntimeConfigLightbox.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_runtimeconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_cardstyle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/wrguard/components/RuntimeConfigLightbox.tsx", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_runtimeconfiglightbox_runtimeconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_cardstyle" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizard.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_primarybuttonstyle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizard.tsx", + "source_location": "L415", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard_addmodewizard", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_primarybuttonstyle" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/RuntimeConfigLightbox.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_runtimeconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_primarybuttonstyle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/wrguard/components/RuntimeConfigLightbox.tsx", + "source_location": "L155", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_runtimeconfiglightbox_runtimeconfiglightbox", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_primarybuttonstyle" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizard.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_secondarybuttonstyle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizard.tsx", + "source_location": "L395", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard_addmodewizard", + "target": "apps_extension_chromium_src_shared_ui_lightboxtheme_secondarybuttonstyle" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/scamWatchdogBuiltIn.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin_builtin_scam_watchdog_id", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/scamWatchdogBuiltIn.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin_builtin_scam_watchdog_key", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/scamWatchdogBuiltIn.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin_createdefaultscamwatchdogbuiltinmode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/scamWatchdogBuiltIn.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin_isscamwatchdogbuiltinmode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/scamWatchdogBuiltIn.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin_listbuiltinmodeseeds", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/scamWatchdogBuiltIn.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin_scam_watchdog_default_icon", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/scamWatchdogBuiltIn.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin", + "target": "apps_extension_chromium_src_shared_ui_watchdogprompts", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/scamWatchdogBuiltIn.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin", + "target": "apps_extension_chromium_src_shared_ui_watchdogprompts_scam_watchdog_default_search_focus", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/uiState.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_uistate", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ChatFocusBanner.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_chatfocusbanner", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/__tests__/modeRowActions.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_tests_moderowactions_test", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/WrChatWatchdogButton.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrchatwatchdogbutton", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/dropdownSections.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/__tests__/dropdownSections.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_tests_dropdownsections_test", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/chatFocusLlmPrefix.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_chatfocusllmprefix", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/__tests__/chatFocusLlmPrefixScamWatchdog.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_tests_chatfocusllmprefixscamwatchdog_test", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/__tests__/customModeLlmPrefixWrChat.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_tests_custommodellmprefixwrchat_test", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/uiState.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_uistate", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin_builtin_scam_watchdog_id", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ChatFocusBanner.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_chatfocusbanner", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin_builtin_scam_watchdog_id", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/__tests__/modeRowActions.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_tests_moderowactions_test", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin_builtin_scam_watchdog_id", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/WrChatWatchdogButton.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrchatwatchdogbutton", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin_builtin_scam_watchdog_id", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/__tests__/dropdownSections.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_tests_dropdownsections_test", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin_builtin_scam_watchdog_id", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin_builtin_scam_watchdog_id", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/chatFocusLlmPrefix.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_chatfocusllmprefix", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin_builtin_scam_watchdog_id", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/__tests__/chatFocusLlmPrefixScamWatchdog.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_tests_chatfocusllmprefixscamwatchdog_test", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin_builtin_scam_watchdog_id", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/scamWatchdogBuiltIn.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin_listbuiltinmodeseeds", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin_createdefaultscamwatchdogbuiltinmode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/__tests__/modeRowActions.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_tests_moderowactions_test", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin_createdefaultscamwatchdogbuiltinmode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/dropdownSections.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin_createdefaultscamwatchdogbuiltinmode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/dropdownSections.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections_buildtriggerbardropdownsections", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin_createdefaultscamwatchdogbuiltinmode" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/__tests__/dropdownSections.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_tests_dropdownsections_test", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin_createdefaultscamwatchdogbuiltinmode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/__tests__/customModeLlmPrefixWrChat.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_tests_custommodellmprefixwrchat_test", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin_createdefaultscamwatchdogbuiltinmode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/dropdownSections.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin_isscamwatchdogbuiltinmode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/dropdownSections.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections_buildtriggerbardropdownsections", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin_isscamwatchdogbuiltinmode" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin_isscamwatchdogbuiltinmode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L356", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrmultitriggerbar", + "target": "apps_extension_chromium_src_shared_ui_scamwatchdogbuiltin_isscamwatchdogbuiltinmode" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/uiState.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_uistate", + "target": "apps_extension_chromium_src_shared_ui_uistate_builtinmode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/uiState.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_uistate", + "target": "apps_extension_chromium_src_shared_ui_uistate_composermode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/uiState.ts", + "source_location": "L280", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_uistate", + "target": "apps_extension_chromium_src_shared_ui_uistate_getavailablemodes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/uiState.ts", + "source_location": "L234", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_uistate", + "target": "apps_extension_chromium_src_shared_ui_uistate_getdisplaylabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/uiState.ts", + "source_location": "L249", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_uistate", + "target": "apps_extension_chromium_src_shared_ui_uistate_getshortdisplaylabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/uiState.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_uistate", + "target": "apps_extension_chromium_src_shared_ui_uistate_initialuistate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/uiState.ts", + "source_location": "L267", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_uistate", + "target": "apps_extension_chromium_src_shared_ui_uistate_isplaceholdermode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/uiState.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_uistate", + "target": "apps_extension_chromium_src_shared_ui_uistate_mode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/uiState.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_uistate", + "target": "apps_extension_chromium_src_shared_ui_uistate_mode_info", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/uiState.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_uistate", + "target": "apps_extension_chromium_src_shared_ui_uistate_modeinfo", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/uiState.ts", + "source_location": "L290", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_uistate", + "target": "apps_extension_chromium_src_shared_ui_uistate_resolvemodeforcapabilities", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/uiState.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_uistate", + "target": "apps_extension_chromium_src_shared_ui_uistate_role", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/uiState.ts", + "source_location": "L202", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_uistate", + "target": "apps_extension_chromium_src_shared_ui_uistate_setcomposermode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/uiState.ts", + "source_location": "L212", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_uistate", + "target": "apps_extension_chromium_src_shared_ui_uistate_setrole", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/uiState.ts", + "source_location": "L173", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_uistate", + "target": "apps_extension_chromium_src_shared_ui_uistate_switchmode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/uiState.ts", + "source_location": "L190", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_uistate", + "target": "apps_extension_chromium_src_shared_ui_uistate_switchworkspace", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/uiState.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_uistate", + "target": "apps_extension_chromium_src_shared_ui_uistate_uistate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/uiState.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_uistate", + "target": "apps_extension_chromium_src_shared_ui_uistate_workspace", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/uiState.ts", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_uistate", + "target": "apps_extension_chromium_src_shared_ui_uistate_workspace_info", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/uiState.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_uistate", + "target": "apps_extension_chromium_src_shared_ui_uistate_workspaceinfo", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useUIStore.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_useuistore", + "target": "apps_extension_chromium_src_shared_ui_uistate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ComposerToolbelt.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_composertoolbelt", + "target": "apps_extension_chromium_src_shared_ui_uistate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ModeHeaderBadge.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_modeheaderbadge", + "target": "apps_extension_chromium_src_shared_ui_uistate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ModeSelect.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_modeselect", + "target": "apps_extension_chromium_src_shared_ui_uistate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/docked/DockedCommandChat.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_docked_dockedcommandchat", + "target": "apps_extension_chromium_src_shared_ui_uistate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useUIStore.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_useuistore", + "target": "apps_extension_chromium_src_shared_ui_uistate_workspace", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useUIStore.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_useuistore_uistorestate", + "target": "apps_extension_chromium_src_shared_ui_uistate_workspace", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useUIStore.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_useuistore", + "target": "apps_extension_chromium_src_shared_ui_uistate_builtinmode", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useUIStore.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_useuistore_uistorestate", + "target": "apps_extension_chromium_src_shared_ui_uistate_builtinmode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ModeHeaderBadge.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_modeheaderbadge", + "target": "apps_extension_chromium_src_shared_ui_uistate_builtinmode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ModeSelect.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_modeselect", + "target": "apps_extension_chromium_src_shared_ui_uistate_builtinmode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useUIStore.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_useuistore", + "target": "apps_extension_chromium_src_shared_ui_uistate_mode", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useUIStore.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_useuistore_uistorestate", + "target": "apps_extension_chromium_src_shared_ui_uistate_mode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ModeSelect.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_modeselect", + "target": "apps_extension_chromium_src_shared_ui_uistate_mode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useUIStore.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_useuistore", + "target": "apps_extension_chromium_src_shared_ui_uistate_composermode", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useUIStore.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_useuistore_uistorestate", + "target": "apps_extension_chromium_src_shared_ui_uistate_composermode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ComposerToolbelt.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_composertoolbelt", + "target": "apps_extension_chromium_src_shared_ui_uistate_composermode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useUIStore.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_useuistore", + "target": "apps_extension_chromium_src_shared_ui_uistate_role", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useUIStore.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_useuistore_uistorestate", + "target": "apps_extension_chromium_src_shared_ui_uistate_role", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useUIStore.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_useuistore", + "target": "apps_extension_chromium_src_shared_ui_uistate_uistate", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useUIStore.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_useuistore_uistorestate", + "target": "apps_extension_chromium_src_shared_ui_uistate_uistate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useUIStore.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_useuistore", + "target": "apps_extension_chromium_src_shared_ui_uistate_initialuistate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ModeHeaderBadge.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_modeheaderbadge", + "target": "apps_extension_chromium_src_shared_ui_uistate_mode_info", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ModeSelect.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_modeselect", + "target": "apps_extension_chromium_src_shared_ui_uistate_mode_info", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ModeHeaderBadge.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_modeheaderbadge", + "target": "apps_extension_chromium_src_shared_ui_uistate_workspace_info", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ModeSelect.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_modeselect", + "target": "apps_extension_chromium_src_shared_ui_uistate_workspace_info", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/docked/DockedCommandChat.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_docked_dockedcommandchat", + "target": "apps_extension_chromium_src_shared_ui_uistate_workspace_info", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useUIStore.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_useuistore", + "target": "apps_extension_chromium_src_shared_ui_uistate_switchmode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useUIStore.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_useuistore", + "target": "apps_extension_chromium_src_shared_ui_uistate_switchworkspace", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useUIStore.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_useuistore", + "target": "apps_extension_chromium_src_shared_ui_uistate_setcomposermode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/ComposerToolbelt.tsx", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_composertoolbelt_composertoolbelt", + "target": "apps_extension_chromium_src_shared_ui_uistate_setcomposermode" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useUIStore.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_useuistore", + "target": "apps_extension_chromium_src_shared_ui_uistate_setrole", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useUIStore.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_useuistore", + "target": "apps_extension_chromium_src_shared_ui_uistate_getdisplaylabel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useUIStore.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_useuistore", + "target": "apps_extension_chromium_src_shared_ui_uistate_getshortdisplaylabel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useUIStore.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_useuistore", + "target": "apps_extension_chromium_src_shared_ui_uistate_isplaceholdermode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/stores/useUIStore.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_useuistore_useisplaceholder", + "target": "apps_extension_chromium_src_shared_ui_uistate_isplaceholdermode" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useUIStore.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_useuistore", + "target": "apps_extension_chromium_src_shared_ui_uistate_getavailablemodes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ModeSelect.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_modeselect", + "target": "apps_extension_chromium_src_shared_ui_uistate_getavailablemodes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/ModeSelect.tsx", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_modeselect_modeselect", + "target": "apps_extension_chromium_src_shared_ui_uistate_getavailablemodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/watchdogPrompts.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_watchdogprompts", + "target": "apps_extension_chromium_src_shared_ui_watchdogprompts_extractscamwatchdogscanpromptfromlegacysearchfocus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/watchdogPrompts.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_watchdogprompts", + "target": "apps_extension_chromium_src_shared_ui_watchdogprompts_scam_watchdog_chat_instruction", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/watchdogPrompts.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_watchdogprompts", + "target": "apps_extension_chromium_src_shared_ui_watchdogprompts_scam_watchdog_default_search_focus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/watchdogPrompts.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_watchdogprompts", + "target": "apps_extension_chromium_src_shared_ui_watchdogprompts_scam_watchdog_legacy_bundled_search_focus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/watchdogPrompts.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_watchdogprompts", + "target": "apps_extension_chromium_src_shared_ui_watchdogprompts_scam_watchdog_scan_section_marker", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/watchdogPrompts.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_watchdogprompts", + "target": "apps_extension_chromium_src_shared_ui_watchdogprompts_scamwatchdogsearchfocustochatonly", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/watchdogPrompts.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_watchdogprompts", + "target": "apps_extension_chromium_src_shared_ui_watchdogprompts_watchdog_system_prompt", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/chatFocusLlmPrefix.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_chatfocusllmprefix", + "target": "apps_extension_chromium_src_shared_ui_watchdogprompts", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/__tests__/chatFocusLlmPrefixScamWatchdog.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_tests_chatfocusllmprefixscamwatchdog_test", + "target": "apps_extension_chromium_src_shared_ui_watchdogprompts", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/__tests__/customModeLlmPrefixWrChat.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_tests_custommodellmprefixwrchat_test", + "target": "apps_extension_chromium_src_shared_ui_watchdogprompts", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/__tests__/customModeLlmPrefixWrChat.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_tests_custommodellmprefixwrchat_test", + "target": "apps_extension_chromium_src_shared_ui_watchdogprompts_watchdog_system_prompt", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/chatFocusLlmPrefix.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_chatfocusllmprefix", + "target": "apps_extension_chromium_src_shared_ui_watchdogprompts_scam_watchdog_chat_instruction", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/__tests__/chatFocusLlmPrefixScamWatchdog.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_tests_chatfocusllmprefixscamwatchdog_test", + "target": "apps_extension_chromium_src_shared_ui_watchdogprompts_scam_watchdog_chat_instruction", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/shared/ui/watchdogPrompts.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_watchdogprompts_scamwatchdogsearchfocustochatonly", + "target": "apps_extension_chromium_src_shared_ui_watchdogprompts_scam_watchdog_legacy_bundled_search_focus" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/shared/ui/watchdogPrompts.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_shared_ui_watchdogprompts_scamwatchdogsearchfocustochatonly", + "target": "apps_extension_chromium_src_shared_ui_watchdogprompts_extractscamwatchdogscanpromptfromlegacysearchfocus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L182", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_sidepanel_beapuivalidationfailure", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_sidepanel_connectionstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L11054", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_sidepanel_container", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_sidepanel_draftattachment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L154", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_sidepanel_llmstatusdata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L207", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_sidepanel_resolvesidepanelinferencesessionkey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_sidepanel_sessionlistlabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_sidepanel_sessionoption", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L222", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_sidepanel_sp_pinned_emojis", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L169", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_sidepanel_spemojiforkey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_sidepanel_unwrapllmstatuspayload", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_stores_activecustommoderuntime", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_stores_activecustommoderuntime_getactivecustommoderuntime", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_stores_activecustommoderuntime_geteffectivellmmodelnameforactivemode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_stores_activecustommoderuntime_useactivecustommoderuntime", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_stores_chatfocusstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_stores_chatfocusstore_usechatfocusstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_stores_chatfocusstore_wrchat_append_assistant_event", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_stores_usecustommodesstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_stores_usecustommodesstore_usecustommodesstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_stores_useuistore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_stores_useuistore_useuistore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_ui_components_addmodewizardhost", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_ui_components_addmodewizardhost_addmodewizardhost", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_ui_components_chatfocusbanner", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_ui_components_chatfocusbanner_chatfocusbanner", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_ui_components_wrchatcapturebutton", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_ui_components_wrchatcapturebutton_wrchatcapturebutton", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_ui_components_wrchatdiffbutton", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_ui_components_wrchatdiffbutton_wrchatdiffbutton", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrmultitriggerbar", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_utils_chatfocusllmprefix", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_utils_chatfocusllmprefix_getchatfocusllmprefix", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_utils_errormessages", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_utils_errormessages_formaterrorfornotification", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_utils_errormessages_isconnectionerror", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_utils_formatwatchdogalert", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_utils_formatwatchdogalert_formatwatchdogalert", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_utils_formatwatchdogalert_watchdogthreat", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_utils_image_resolve", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_utils_image_resolve_isplausiblevisionbase64", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_utils_image_resolve_resolveimageurlforbackend", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_utils_image_resolve_tobase64forollama", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_utils_mergetaggedtriggersfromhost", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_utils_mergetaggedtriggersfromhost_mergetaggedtriggersfromhost", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_utils_normalisetriggertag", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_utils_normalisetriggertag_normalisetriggertag", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_utils_prependchatfocustolastuser", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_utils_prependchatfocustolastuser_prependhiddencontexttolastusercontent", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_utils_sessiondisplaylabel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_utils_sessiondisplaylabel_sessiondisplaylabel", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_vault_api", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_vault_api_getvaultstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_wrguard_components_wrguardworkspace_wrguardworkspace", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_wrguard_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel", + "target": "apps_extension_chromium_src_wrguard_usewrguardstore_usewrguardstore", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L1452", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_rationale_1452", + "target": "apps_extension_chromium_src_sidepanel", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L3106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_rationale_3106", + "target": "apps_extension_chromium_src_sidepanel", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L5261", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_rationale_5261", + "target": "apps_extension_chromium_src_sidepanel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L4965", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_sidepanel_spemojiforkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L1272", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_sidepanel_unwrapllmstatuspayload", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L729", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_sidepanel_beapuivalidationfailure", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L203", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sessionlistlabel", + "target": "apps_extension_chromium_src_utils_sessiondisplaylabel_sessiondisplaylabel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L661", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_sidepanel_sessionlistlabel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L211", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_resolvesidepanelinferencesessionkey", + "target": "apps_extension_chromium_src_stores_activecustommoderuntime_getactivecustommoderuntime", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L1527", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_sidepanel_resolvesidepanelinferencesessionkey", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L1746", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_storage_storagewrapper", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L1531", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_stores_activecustommoderuntime_getactivecustommoderuntime", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L1466", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_stores_activecustommoderuntime_geteffectivellmmodelnameforactivemode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L1869", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_stores_activecustommoderuntime_useactivecustommoderuntime", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L1530", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_utils_chatfocusllmprefix_getchatfocusllmprefix", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L4486", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_utils_formatwatchdogalert_formatwatchdogalert", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L1519", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_utils_image_resolve_isplausiblevisionbase64", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L1516", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_utils_image_resolve_resolveimageurlforbackend", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L1518", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_utils_image_resolve_tobase64forollama", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L2703", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_utils_mergetaggedtriggersfromhost_mergetaggedtriggersfromhost", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L3466", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_utils_normalisetriggertag_normalisetriggertag", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L3307", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_utils_prependchatfocustolastuser_prependhiddencontexttolastusercontent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/sidepanel.tsx", + "source_location": "L374", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_sidepanel_sidepanelorchestrator", + "target": "apps_extension_chromium_src_vault_api_getvaultstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/getActiveAdapter.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_getactiveadapter", + "target": "apps_extension_chromium_src_storage_orchestratorsqliteadapter", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/migration.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_migration", + "target": "apps_extension_chromium_src_storage_orchestratorsqliteadapter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/OrchestratorSQLiteAdapter.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_orchestratorsqliteadapter", + "target": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_authheaders", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/OrchestratorSQLiteAdapter.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_orchestratorsqliteadapter", + "target": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_getlaunchsecret", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/OrchestratorSQLiteAdapter.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_orchestratorsqliteadapter", + "target": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_orchestratorsqliteadapter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/OrchestratorSQLiteAdapter.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_orchestratorsqliteadapter", + "target": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_setadapterlaunchsecret", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/OrchestratorSQLiteAdapter.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_orchestratorsqliteadapter", + "target": "packages_shared_src_storage_storageadapter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/OrchestratorSQLiteAdapter.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_orchestratorsqliteadapter", + "target": "packages_shared_src_storage_storageadapter_storageadapter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/OrchestratorSQLiteAdapter.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_authheaders", + "target": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_getlaunchsecret", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/OrchestratorSQLiteAdapter.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_orchestratorsqliteadapter_connect", + "target": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_authheaders", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/OrchestratorSQLiteAdapter.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_orchestratorsqliteadapter_get", + "target": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_authheaders", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/OrchestratorSQLiteAdapter.ts", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_orchestratorsqliteadapter_getall", + "target": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_authheaders", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/OrchestratorSQLiteAdapter.ts", + "source_location": "L245", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_orchestratorsqliteadapter_migratefromchromestorage", + "target": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_authheaders", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/OrchestratorSQLiteAdapter.ts", + "source_location": "L217", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_orchestratorsqliteadapter_remove", + "target": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_authheaders", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/OrchestratorSQLiteAdapter.ts", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_orchestratorsqliteadapter_set", + "target": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_authheaders", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/OrchestratorSQLiteAdapter.ts", + "source_location": "L189", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_orchestratorsqliteadapter_setall", + "target": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_authheaders", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/getActiveAdapter.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_getactiveadapter", + "target": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_orchestratorsqliteadapter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/migration.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_migration", + "target": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_orchestratorsqliteadapter", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/OrchestratorSQLiteAdapter.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_orchestratorsqliteadapter", + "target": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_orchestratorsqliteadapter_connect", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/OrchestratorSQLiteAdapter.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_orchestratorsqliteadapter", + "target": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_orchestratorsqliteadapter_ensureconnected", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/OrchestratorSQLiteAdapter.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_orchestratorsqliteadapter", + "target": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_orchestratorsqliteadapter_get", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/OrchestratorSQLiteAdapter.ts", + "source_location": "L159", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_orchestratorsqliteadapter", + "target": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_orchestratorsqliteadapter_getall", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/OrchestratorSQLiteAdapter.ts", + "source_location": "L241", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_orchestratorsqliteadapter", + "target": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_orchestratorsqliteadapter_migratefromchromestorage", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/OrchestratorSQLiteAdapter.ts", + "source_location": "L213", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_orchestratorsqliteadapter", + "target": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_orchestratorsqliteadapter_remove", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/OrchestratorSQLiteAdapter.ts", + "source_location": "L134", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_orchestratorsqliteadapter", + "target": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_orchestratorsqliteadapter_set", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/OrchestratorSQLiteAdapter.ts", + "source_location": "L185", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_orchestratorsqliteadapter", + "target": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_orchestratorsqliteadapter_setall", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/OrchestratorSQLiteAdapter.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_orchestratorsqliteadapter", + "target": "packages_shared_src_storage_storageadapter_storageadapter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/storage/getActiveAdapter.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_getactiveadapter_getactiveadapter", + "target": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_orchestratorsqliteadapter_connect" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/storage/migration.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_migration_migratetosqlite", + "target": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_orchestratorsqliteadapter_connect" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/OrchestratorSQLiteAdapter.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_orchestratorsqliteadapter_ensureconnected", + "target": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_orchestratorsqliteadapter_connect", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/OrchestratorSQLiteAdapter.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_orchestratorsqliteadapter_get", + "target": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_orchestratorsqliteadapter_ensureconnected", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/OrchestratorSQLiteAdapter.ts", + "source_location": "L160", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_orchestratorsqliteadapter_getall", + "target": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_orchestratorsqliteadapter_ensureconnected", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/OrchestratorSQLiteAdapter.ts", + "source_location": "L242", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_orchestratorsqliteadapter_migratefromchromestorage", + "target": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_orchestratorsqliteadapter_ensureconnected", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/OrchestratorSQLiteAdapter.ts", + "source_location": "L214", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_orchestratorsqliteadapter_remove", + "target": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_orchestratorsqliteadapter_ensureconnected", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/OrchestratorSQLiteAdapter.ts", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_orchestratorsqliteadapter_set", + "target": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_orchestratorsqliteadapter_ensureconnected", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/OrchestratorSQLiteAdapter.ts", + "source_location": "L186", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_orchestratorsqliteadapter_setall", + "target": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_orchestratorsqliteadapter_ensureconnected", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/storage/migration.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_migration_migratetosqlite", + "target": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_orchestratorsqliteadapter_get" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/storage/migration.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_migration_migratetosqlite", + "target": "apps_extension_chromium_src_storage_orchestratorsqliteadapter_orchestratorsqliteadapter_migratefromchromestorage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/getActiveAdapter.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_getactiveadapter", + "target": "apps_extension_chromium_src_storage_getactiveadapter_checkelectronavailability", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/getActiveAdapter.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_getactiveadapter", + "target": "apps_extension_chromium_src_storage_getactiveadapter_connectionresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/getActiveAdapter.ts", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_getactiveadapter", + "target": "apps_extension_chromium_src_storage_getactiveadapter_createpostgresproxyadapter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/getActiveAdapter.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_getactiveadapter", + "target": "apps_extension_chromium_src_storage_getactiveadapter_getactiveadapter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/getActiveAdapter.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_getactiveadapter", + "target": "apps_extension_chromium_src_storage_getactiveadapter_logconnectiondiagnostics", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/getActiveAdapter.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_getactiveadapter", + "target": "packages_shared_extension_src_storage_chromestorageadapter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/getActiveAdapter.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_getactiveadapter", + "target": "packages_shared_extension_src_storage_chromestorageadapter_chromestorageadapter", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/getActiveAdapter.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_getactiveadapter", + "target": "packages_shared_src_storage_storageadapter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/getActiveAdapter.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_getactiveadapter", + "target": "packages_shared_src_storage_storageadapter_backendconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/getActiveAdapter.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_getactiveadapter", + "target": "packages_shared_src_storage_storageadapter_storageadapter", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/storageWrapper.ts", + "source_location": "L384", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_storagewrapper_storageclear", + "target": "apps_extension_chromium_src_storage_getactiveadapter", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/storageWrapper.ts", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_storagewrapper_storageget", + "target": "apps_extension_chromium_src_storage_getactiveadapter", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/storageWrapper.ts", + "source_location": "L342", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_storagewrapper_storageremove", + "target": "apps_extension_chromium_src_storage_getactiveadapter", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/storageWrapper.ts", + "source_location": "L268", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_storagewrapper_storageset", + "target": "apps_extension_chromium_src_storage_getactiveadapter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/getActiveAdapter.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_getactiveadapter_getactiveadapter", + "target": "apps_extension_chromium_src_storage_getactiveadapter_checkelectronavailability", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/getActiveAdapter.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_getactiveadapter_getactiveadapter", + "target": "apps_extension_chromium_src_storage_getactiveadapter_logconnectiondiagnostics", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/getActiveAdapter.ts", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_getactiveadapter_getactiveadapter", + "target": "apps_extension_chromium_src_storage_getactiveadapter_createpostgresproxyadapter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/migration.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_migration", + "target": "apps_extension_chromium_src_storage_migration_automigrateifneeded", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/migration.ts", + "source_location": "L193", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_migration", + "target": "apps_extension_chromium_src_storage_migration_checksqliteavailability", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/migration.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_migration", + "target": "apps_extension_chromium_src_storage_migration_filtersessiondata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/migration.ts", + "source_location": "L214", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_migration", + "target": "apps_extension_chromium_src_storage_migration_getmigrationstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/migration.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_migration", + "target": "apps_extension_chromium_src_storage_migration_migratetosqlite", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/migration.ts", + "source_location": "L232", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_migration", + "target": "apps_extension_chromium_src_storage_migration_setmigrationstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/migration.ts", + "source_location": "L151", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_migration", + "target": "apps_extension_chromium_src_storage_migration_showmigrationnotification", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/migration.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_migration_migratetosqlite", + "target": "apps_extension_chromium_src_storage_migration_filtersessiondata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/migration.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_migration_automigrateifneeded", + "target": "apps_extension_chromium_src_storage_migration_migratetosqlite", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/migration.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_migration_automigrateifneeded", + "target": "apps_extension_chromium_src_storage_migration_checksqliteavailability", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/migration.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_migration_automigrateifneeded", + "target": "apps_extension_chromium_src_storage_migration_getmigrationstatus", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/migration.ts", + "source_location": "L134", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_migration_automigrateifneeded", + "target": "apps_extension_chromium_src_storage_migration_setmigrationstatus", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/migration.ts", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_migration_automigrateifneeded", + "target": "apps_extension_chromium_src_storage_migration_showmigrationnotification", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/storageWrapper.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_storagewrapper", + "target": "apps_extension_chromium_src_storage_storagewrapper_adapter_key_patterns", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/storageWrapper.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_storagewrapper", + "target": "apps_extension_chromium_src_storage_storagewrapper_getbackendconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/storageWrapper.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_storagewrapper", + "target": "apps_extension_chromium_src_storage_storagewrapper_hybridbackendconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/storageWrapper.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_storagewrapper", + "target": "apps_extension_chromium_src_storage_storagewrapper_invalidatebackendconfigcache", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/storageWrapper.ts", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_storagewrapper", + "target": "apps_extension_chromium_src_storage_storagewrapper_invalidatereadcache", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/storageWrapper.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_storagewrapper", + "target": "apps_extension_chromium_src_storage_storagewrapper_readcache", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/storageWrapper.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_storagewrapper", + "target": "apps_extension_chromium_src_storage_storagewrapper_shoulduseadapter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/storageWrapper.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_storagewrapper", + "target": "apps_extension_chromium_src_storage_storagewrapper_shouldusepostgres", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/storageWrapper.ts", + "source_location": "L380", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_storagewrapper", + "target": "apps_extension_chromium_src_storage_storagewrapper_storageclear", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/storageWrapper.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_storagewrapper", + "target": "apps_extension_chromium_src_storage_storagewrapper_storageget", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/storageWrapper.ts", + "source_location": "L313", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_storagewrapper", + "target": "apps_extension_chromium_src_storage_storagewrapper_storageremove", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/storageWrapper.ts", + "source_location": "L238", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_storagewrapper", + "target": "apps_extension_chromium_src_storage_storagewrapper_storageset", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/storageWrapper.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_storagewrapper", + "target": "apps_extension_chromium_src_types_imageproviders", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/storageWrapper.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_storagewrapper", + "target": "apps_extension_chromium_src_types_imageproviders_imageprovidersconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/storageWrapper.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_storagewrapper", + "target": "packages_shared_src_storage_storageadapter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/storageWrapper.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_storagewrapper", + "target": "packages_shared_src_storage_storageadapter_backendconfig", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/storageWrapper.ts", + "source_location": "L331", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_storagewrapper_rationale_331", + "target": "apps_extension_chromium_src_storage_storagewrapper", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/storageWrapper.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_storagewrapper_hybridbackendconfig", + "target": "apps_extension_chromium_src_types_imageproviders_imageprovidersconfig", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/storage/storageWrapper.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_storagewrapper_shoulduseadapter", + "target": "apps_extension_chromium_src_storage_storagewrapper_adapter_key_patterns" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/storageWrapper.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_storagewrapper_shouldusepostgres", + "target": "apps_extension_chromium_src_storage_storagewrapper_shoulduseadapter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/storageWrapper.ts", + "source_location": "L388", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_storagewrapper_storageclear", + "target": "apps_extension_chromium_src_storage_storagewrapper_shoulduseadapter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/storageWrapper.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_storagewrapper_storageget", + "target": "apps_extension_chromium_src_storage_storagewrapper_shoulduseadapter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/storageWrapper.ts", + "source_location": "L324", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_storagewrapper_storageremove", + "target": "apps_extension_chromium_src_storage_storagewrapper_shoulduseadapter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/storageWrapper.ts", + "source_location": "L247", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_storagewrapper_storageset", + "target": "apps_extension_chromium_src_storage_storagewrapper_shoulduseadapter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/storageWrapper.ts", + "source_location": "L258", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_storagewrapper_storageset", + "target": "apps_extension_chromium_src_storage_storagewrapper_invalidatebackendconfigcache", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/storageWrapper.ts", + "source_location": "L390", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_storagewrapper_storageclear", + "target": "apps_extension_chromium_src_storage_storagewrapper_invalidatereadcache", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/storageWrapper.ts", + "source_location": "L346", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_storagewrapper_storageremove", + "target": "apps_extension_chromium_src_storage_storagewrapper_invalidatereadcache", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/storageWrapper.ts", + "source_location": "L273", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_storagewrapper_storageset", + "target": "apps_extension_chromium_src_storage_storagewrapper_invalidatereadcache", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/storageWrapper.ts", + "source_location": "L401", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_storagewrapper_storageclear", + "target": "apps_extension_chromium_src_storage_storagewrapper_storageset", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/storage/storageWrapper.ts", + "source_location": "L359", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_storage_storagewrapper_storageremove", + "target": "apps_extension_chromium_src_storage_storagewrapper_storageset", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/activeCustomModeRuntime.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_activecustommoderuntime", + "target": "apps_extension_chromium_src_stores_activecustommoderuntime_getactivecustommoderuntime", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/activeCustomModeRuntime.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_activecustommoderuntime", + "target": "apps_extension_chromium_src_stores_activecustommoderuntime_geteffectivellmmodelnameforactivemode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/activeCustomModeRuntime.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_activecustommoderuntime", + "target": "apps_extension_chromium_src_stores_activecustommoderuntime_useactivecustommoderuntime", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/activeCustomModeRuntime.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_activecustommoderuntime", + "target": "apps_extension_chromium_src_stores_usecustommodesstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/activeCustomModeRuntime.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_activecustommoderuntime", + "target": "apps_extension_chromium_src_stores_usecustommodesstore_usecustommodesstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/activeCustomModeRuntime.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_activecustommoderuntime", + "target": "apps_extension_chromium_src_stores_useuistore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/activeCustomModeRuntime.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_activecustommoderuntime", + "target": "apps_extension_chromium_src_stores_useuistore_useuistore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/CommandChatView.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_commandchatview", + "target": "apps_extension_chromium_src_stores_activecustommoderuntime", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_stores_activecustommoderuntime", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_stores_activecustommoderuntime", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/activeCustomModeRuntime.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_activecustommoderuntime_geteffectivellmmodelnameforactivemode", + "target": "apps_extension_chromium_src_stores_activecustommoderuntime_getactivecustommoderuntime", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_stores_activecustommoderuntime_getactivecustommoderuntime", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_stores_activecustommoderuntime_getactivecustommoderuntime", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L353", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_getmergedchatllmprefixformodel", + "target": "apps_extension_chromium_src_stores_activecustommoderuntime_getactivecustommoderuntime", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/stores/activeCustomModeRuntime.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_activecustommoderuntime_useactivecustommoderuntime", + "target": "apps_extension_chromium_src_stores_usecustommodesstore_usecustommodesstore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/stores/activeCustomModeRuntime.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_activecustommoderuntime_useactivecustommoderuntime", + "target": "apps_extension_chromium_src_stores_useuistore_useuistore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/CommandChatView.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_commandchatview", + "target": "apps_extension_chromium_src_stores_activecustommoderuntime_useactivecustommoderuntime", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/CommandChatView.tsx", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_commandchatview_commandchatview", + "target": "apps_extension_chromium_src_stores_activecustommoderuntime_useactivecustommoderuntime" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_stores_activecustommoderuntime_useactivecustommoderuntime", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_stores_activecustommoderuntime_geteffectivellmmodelnameforactivemode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_stores_activecustommoderuntime_geteffectivellmmodelnameforactivemode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L344", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_resolvechatmodelidforsend", + "target": "apps_extension_chromium_src_stores_activecustommoderuntime_geteffectivellmmodelnameforactivemode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/chatFocusStore.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_chatfocusstore", + "target": "apps_extension_chromium_src_stores_chatfocusstore_chatfocusmeta", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/chatFocusStore.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_chatfocusstore", + "target": "apps_extension_chromium_src_stores_chatfocusstore_chatfocusstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/chatFocusStore.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_chatfocusstore", + "target": "apps_extension_chromium_src_stores_chatfocusstore_enteroptimizationfocusmeta", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/chatFocusStore.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_chatfocusstore", + "target": "apps_extension_chromium_src_stores_chatfocusstore_usechatfocusstore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/chatFocusStore.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_chatfocusstore", + "target": "apps_extension_chromium_src_stores_chatfocusstore_wrchat_append_assistant_event", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/chatFocusStore.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_chatfocusstore", + "target": "apps_extension_chromium_src_types_triggertypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/chatFocusStore.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_chatfocusstore", + "target": "apps_extension_chromium_src_types_triggertypes_chatfocusmode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ChatFocusBanner.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_chatfocusbanner", + "target": "apps_extension_chromium_src_stores_chatfocusstore", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_stores_chatfocusstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/OptimizationInfobox.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_optimizationinfobox", + "target": "apps_extension_chromium_src_stores_chatfocusstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_stores_chatfocusstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_stores_chatfocusstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/chatFocusLlmPrefix.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_chatfocusllmprefix", + "target": "apps_extension_chromium_src_stores_chatfocusstore", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_stores_chatfocusstore_chatfocusmeta", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/chatFocusLlmPrefix.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_chatfocusllmprefix", + "target": "apps_extension_chromium_src_stores_chatfocusstore_chatfocusmeta", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_stores_chatfocusstore_wrchat_append_assistant_event", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_stores_chatfocusstore_wrchat_append_assistant_event", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ChatFocusBanner.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_chatfocusbanner", + "target": "apps_extension_chromium_src_stores_chatfocusstore_usechatfocusstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/ChatFocusBanner.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_chatfocusbanner_chatfocusbanner", + "target": "apps_extension_chromium_src_stores_chatfocusstore_usechatfocusstore" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_stores_chatfocusstore_usechatfocusstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/OptimizationInfobox.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_optimizationinfobox", + "target": "apps_extension_chromium_src_stores_chatfocusstore_usechatfocusstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/OptimizationInfobox.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_optimizationinfobox_optimizationinfobox", + "target": "apps_extension_chromium_src_stores_chatfocusstore_usechatfocusstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_stores_chatfocusstore_usechatfocusstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L485", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_popupchatview", + "target": "apps_extension_chromium_src_stores_chatfocusstore_usechatfocusstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_stores_chatfocusstore_usechatfocusstore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useCustomModesStore.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_usecustommodesstore", + "target": "apps_extension_chromium_src_stores_usecustommodesstore_createonmain", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useCustomModesStore.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_usecustommodesstore", + "target": "apps_extension_chromium_src_stores_usecustommodesstore_custommodesstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useCustomModesStore.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_usecustommodesstore", + "target": "apps_extension_chromium_src_stores_usecustommodesstore_deleteonmain", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useCustomModesStore.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_usecustommodesstore", + "target": "apps_extension_chromium_src_stores_usecustommodesstore_detectmigrationorigin", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useCustomModesStore.ts", + "source_location": "L158", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_usecustommodesstore", + "target": "apps_extension_chromium_src_stores_usecustommodesstore_hydratecustommodesstore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useCustomModesStore.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_usecustommodesstore", + "target": "apps_extension_chromium_src_stores_usecustommodesstore_iselectrondashboard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useCustomModesStore.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_usecustommodesstore", + "target": "apps_extension_chromium_src_stores_usecustommodesstore_listfrommain", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useCustomModesStore.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_usecustommodesstore", + "target": "apps_extension_chromium_src_stores_usecustommodesstore_storeresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useCustomModesStore.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_usecustommodesstore", + "target": "apps_extension_chromium_src_stores_usecustommodesstore_subscribecustommodeschanged", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useCustomModesStore.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_usecustommodesstore", + "target": "apps_extension_chromium_src_stores_usecustommodesstore_updateonmain", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useCustomModesStore.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_usecustommodesstore", + "target": "apps_extension_chromium_src_stores_usecustommodesstore_usecustommodesstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/AddModeWizardHost.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizardhost", + "target": "apps_extension_chromium_src_stores_usecustommodesstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ModeHeaderBadge.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_modeheaderbadge", + "target": "apps_extension_chromium_src_stores_usecustommodesstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ModeRowAffordances.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_moderowaffordances", + "target": "apps_extension_chromium_src_stores_usecustommodesstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ModeSelect.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_modeselect", + "target": "apps_extension_chromium_src_stores_usecustommodesstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_stores_usecustommodesstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useCustomModesStore.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_usecustommodesstore_createonmain", + "target": "apps_extension_chromium_src_stores_usecustommodesstore_iselectrondashboard", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useCustomModesStore.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_usecustommodesstore_deleteonmain", + "target": "apps_extension_chromium_src_stores_usecustommodesstore_iselectrondashboard", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useCustomModesStore.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_usecustommodesstore_detectmigrationorigin", + "target": "apps_extension_chromium_src_stores_usecustommodesstore_iselectrondashboard", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useCustomModesStore.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_usecustommodesstore_listfrommain", + "target": "apps_extension_chromium_src_stores_usecustommodesstore_iselectrondashboard", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useCustomModesStore.ts", + "source_location": "L168", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_usecustommodesstore_subscribecustommodeschanged", + "target": "apps_extension_chromium_src_stores_usecustommodesstore_iselectrondashboard", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useCustomModesStore.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_usecustommodesstore_updateonmain", + "target": "apps_extension_chromium_src_stores_usecustommodesstore_iselectrondashboard", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useCustomModesStore.ts", + "source_location": "L159", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_usecustommodesstore_hydratecustommodesstore", + "target": "apps_extension_chromium_src_stores_usecustommodesstore_listfrommain", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/AddModeWizardHost.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizardhost", + "target": "apps_extension_chromium_src_stores_usecustommodesstore_usecustommodesstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/AddModeWizardHost.tsx", + "source_location": "L134", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizardhost_addmodewizardhost", + "target": "apps_extension_chromium_src_stores_usecustommodesstore_usecustommodesstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ModeHeaderBadge.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_modeheaderbadge", + "target": "apps_extension_chromium_src_stores_usecustommodesstore_usecustommodesstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/ModeHeaderBadge.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_modeheaderbadge_modeheaderbadge", + "target": "apps_extension_chromium_src_stores_usecustommodesstore_usecustommodesstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ModeRowAffordances.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_moderowaffordances", + "target": "apps_extension_chromium_src_stores_usecustommodesstore_usecustommodesstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/ModeRowAffordances.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_moderowaffordances_moderowaffordances", + "target": "apps_extension_chromium_src_stores_usecustommodesstore_usecustommodesstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ModeSelect.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_modeselect", + "target": "apps_extension_chromium_src_stores_usecustommodesstore_usecustommodesstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/ModeSelect.tsx", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_modeselect_modeselect", + "target": "apps_extension_chromium_src_stores_usecustommodesstore_usecustommodesstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_stores_usecustommodesstore_usecustommodesstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrmultitriggerbar", + "target": "apps_extension_chromium_src_stores_usecustommodesstore_usecustommodesstore" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useUIStore.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_useuistore", + "target": "apps_extension_chromium_src_stores_useuistore_toggleadminrole", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useUIStore.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_useuistore", + "target": "apps_extension_chromium_src_stores_useuistore_uistorestate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useUIStore.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_useuistore", + "target": "apps_extension_chromium_src_stores_useuistore_usecomposermode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useUIStore.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_useuistore", + "target": "apps_extension_chromium_src_stores_useuistore_useisplaceholder", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useUIStore.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_useuistore", + "target": "apps_extension_chromium_src_stores_useuistore_usemode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useUIStore.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_useuistore", + "target": "apps_extension_chromium_src_stores_useuistore_userole", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useUIStore.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_useuistore", + "target": "apps_extension_chromium_src_stores_useuistore_useuistore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useUIStore.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_useuistore", + "target": "apps_extension_chromium_src_stores_useuistore_useworkspace", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useUIStore.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_useuistore", + "target": "apps_extension_chromium_src_stores_useuistore_useworkspaceandmode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/AddModeWizardHost.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizardhost", + "target": "apps_extension_chromium_src_stores_useuistore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/CommandChatView.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_commandchatview", + "target": "apps_extension_chromium_src_stores_useuistore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ComposerToolbelt.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_composertoolbelt", + "target": "apps_extension_chromium_src_stores_useuistore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ModeHeaderBadge.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_modeheaderbadge", + "target": "apps_extension_chromium_src_stores_useuistore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ModeSelect.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_modeselect", + "target": "apps_extension_chromium_src_stores_useuistore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_stores_useuistore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/docked/DockedCommandChat.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_docked_dockedcommandchat", + "target": "apps_extension_chromium_src_stores_useuistore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useUIStore.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_useuistore_usecomposermode", + "target": "apps_extension_chromium_src_stores_useuistore_useuistore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useUIStore.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_useuistore_useisplaceholder", + "target": "apps_extension_chromium_src_stores_useuistore_useuistore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useUIStore.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_useuistore_usemode", + "target": "apps_extension_chromium_src_stores_useuistore_useuistore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useUIStore.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_useuistore_userole", + "target": "apps_extension_chromium_src_stores_useuistore_useuistore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useUIStore.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_useuistore_useworkspace", + "target": "apps_extension_chromium_src_stores_useuistore_useuistore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/stores/useUIStore.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_stores_useuistore_useworkspaceandmode", + "target": "apps_extension_chromium_src_stores_useuistore_useuistore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/AddModeWizardHost.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizardhost", + "target": "apps_extension_chromium_src_stores_useuistore_useuistore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/AddModeWizardHost.tsx", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizardhost_addmodewizardhost", + "target": "apps_extension_chromium_src_stores_useuistore_useuistore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/CommandChatView.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_commandchatview", + "target": "apps_extension_chromium_src_stores_useuistore_useuistore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/CommandChatView.tsx", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_commandchatview_commandchatview", + "target": "apps_extension_chromium_src_stores_useuistore_useuistore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ComposerToolbelt.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_composertoolbelt", + "target": "apps_extension_chromium_src_stores_useuistore_useuistore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/ComposerToolbelt.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_composertoolbelt_composertoolbelt", + "target": "apps_extension_chromium_src_stores_useuistore_useuistore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ModeHeaderBadge.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_modeheaderbadge", + "target": "apps_extension_chromium_src_stores_useuistore_useuistore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/ModeHeaderBadge.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_modeheaderbadge_modeheaderbadge", + "target": "apps_extension_chromium_src_stores_useuistore_useuistore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ModeSelect.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_modeselect", + "target": "apps_extension_chromium_src_stores_useuistore_useuistore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/ModeSelect.tsx", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_modeselect_modeselect", + "target": "apps_extension_chromium_src_stores_useuistore_useuistore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_stores_useuistore_useuistore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/docked/DockedCommandChat.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_docked_dockedcommandchat", + "target": "apps_extension_chromium_src_stores_useuistore_useuistore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/docked/DockedCommandChat.tsx", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_docked_dockedcommandchat_dockedcommandchat", + "target": "apps_extension_chromium_src_stores_useuistore_useuistore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ModeHeaderBadge.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_modeheaderbadge", + "target": "apps_extension_chromium_src_stores_useuistore_useisplaceholder", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/ModeHeaderBadge.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_modeheaderbadge_modeheaderbadge", + "target": "apps_extension_chromium_src_stores_useuistore_useisplaceholder" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/tests/wrChatPipeline.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_tests_wrchatpipeline_test", + "target": "apps_extension_chromium_src_tests_wrchatpipeline_test_baseagent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/tests/wrChatPipeline.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_tests_wrchatpipeline_test", + "target": "apps_extension_chromium_src_tests_wrchatpipeline_test_shouldhandleshowtriggerprompt", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/tests/wrChatPipeline.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_tests_wrchatpipeline_test", + "target": "apps_extension_chromium_src_ui_components_wrchatsurface", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/tests/wrChatPipeline.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_tests_wrchatpipeline_test", + "target": "apps_extension_chromium_src_ui_components_wrchatsurface_surfacefromsource", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/tests/wrChatPipeline.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_tests_wrchatpipeline_test", + "target": "apps_extension_chromium_src_ui_components_wrchatsurface_wrchatsurface", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/tests/wrChatPipeline.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_tests_wrchatpipeline_test", + "target": "apps_extension_chromium_src_utils_normalisetriggertag", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/tests/wrChatPipeline.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_tests_wrchatpipeline_test", + "target": "apps_extension_chromium_src_utils_normalisetriggertag_normalisetriggertag", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/tests/wrChatSelectionHygiene.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_tests_wrchatselectionhygiene_test", + "target": "apps_extension_chromium_src_tests_wrchatselectionhygiene_test_canon_id", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/tests/wrChatSelectionHygiene.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_tests_wrchatselectionhygiene_test", + "target": "apps_extension_chromium_src_tests_wrchatselectionhygiene_test_canonrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/tests/wrChatSelectionHygiene.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_tests_wrchatselectionhygiene_test", + "target": "apps_extension_chromium_src_tests_wrchatselectionhygiene_test_hostrowid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/tests/wrChatSelectionHygiene.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_tests_wrchatselectionhygiene_test", + "target": "apps_extension_chromium_src_tests_wrchatselectionhygiene_test_stale_id", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AIChatCaptureConfig.ts", + "source_location": "L254", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_aichatcaptureconfig", + "target": "apps_extension_chromium_src_types_aichatcaptureconfig_aichatcaptureconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AIChatCaptureConfig.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_aichatcaptureconfig", + "target": "apps_extension_chromium_src_types_aichatcaptureconfig_autodetectedselectors", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AIChatCaptureConfig.ts", + "source_location": "L175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_aichatcaptureconfig", + "target": "apps_extension_chromium_src_types_aichatcaptureconfig_contextcaptureconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AIChatCaptureConfig.ts", + "source_location": "L231", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_aichatcaptureconfig", + "target": "apps_extension_chromium_src_types_aichatcaptureconfig_debugcaptureresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AIChatCaptureConfig.ts", + "source_location": "L339", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_aichatcaptureconfig", + "target": "apps_extension_chromium_src_types_aichatcaptureconfig_fromlegacytriggerdata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AIChatCaptureConfig.ts", + "source_location": "L294", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_aichatcaptureconfig", + "target": "apps_extension_chromium_src_types_aichatcaptureconfig_getdefaultaichatcaptureconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AIChatCaptureConfig.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_aichatcaptureconfig", + "target": "apps_extension_chromium_src_types_aichatcaptureconfig_inputcaptureconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AIChatCaptureConfig.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_aichatcaptureconfig", + "target": "apps_extension_chromium_src_types_aichatcaptureconfig_outputcaptureconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AIChatCaptureConfig.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_aichatcaptureconfig", + "target": "apps_extension_chromium_src_types_aichatcaptureconfig_responsereadymode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AIChatCaptureConfig.ts", + "source_location": "L203", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_aichatcaptureconfig", + "target": "apps_extension_chromium_src_types_aichatcaptureconfig_sanitizationconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AIChatCaptureConfig.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_aichatcaptureconfig", + "target": "apps_extension_chromium_src_types_aichatcaptureconfig_sitefiltersconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AIChatCaptureConfig.ts", + "source_location": "L397", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_aichatcaptureconfig", + "target": "apps_extension_chromium_src_types_aichatcaptureconfig_tolegacytriggerdata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AIChatCaptureConfig.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_aichatcaptureconfig", + "target": "apps_extension_chromium_src_types_aichatcaptureconfig_triggerconfig", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/index.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_index", + "target": "apps_extension_chromium_src_types_aichatcaptureconfig", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/index.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_index", + "target": "apps_extension_chromium_src_types_aichatcaptureconfig_sitefiltersconfig", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/index.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_index", + "target": "apps_extension_chromium_src_types_aichatcaptureconfig_autodetectedselectors", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/index.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_index", + "target": "apps_extension_chromium_src_types_aichatcaptureconfig_triggerconfig", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/index.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_index", + "target": "apps_extension_chromium_src_types_aichatcaptureconfig_inputcaptureconfig", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/index.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_index", + "target": "apps_extension_chromium_src_types_aichatcaptureconfig_outputcaptureconfig", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/index.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_index", + "target": "apps_extension_chromium_src_types_aichatcaptureconfig_contextcaptureconfig", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/index.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_index", + "target": "apps_extension_chromium_src_types_aichatcaptureconfig_sanitizationconfig", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/index.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_index", + "target": "apps_extension_chromium_src_types_aichatcaptureconfig_debugcaptureresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AIChatCaptureConfig.ts", + "source_location": "L340", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_aichatcaptureconfig_fromlegacytriggerdata", + "target": "apps_extension_chromium_src_types_aichatcaptureconfig_getdefaultaichatcaptureconfig", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/index.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_index", + "target": "apps_extension_chromium_src_types_aichatcaptureconfig_getdefaultaichatcaptureconfig", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/index.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_index", + "target": "apps_extension_chromium_src_types_aichatcaptureconfig_fromlegacytriggerdata", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/index.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_index", + "target": "apps_extension_chromium_src_types_aichatcaptureconfig_tolegacytriggerdata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentexportimport", + "target": "apps_extension_chromium_src_types_agentexportimport_agentexportformat", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentexportimport", + "target": "apps_extension_chromium_src_types_agentexportimport_agentexportmetadata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentexportimport", + "target": "apps_extension_chromium_src_types_agentexportimport_agentexportsection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentexportimport", + "target": "apps_extension_chromium_src_types_agentexportimport_agentimportresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L730", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentexportimport", + "target": "apps_extension_chromium_src_types_agentexportimport_downloadagentasjson", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L440", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentexportimport", + "target": "apps_extension_chromium_src_types_agentexportimport_exportagentcompact", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L193", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentexportimport", + "target": "apps_extension_chromium_src_types_agentexportimport_exportagenttojson", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L429", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentexportimport", + "target": "apps_extension_chromium_src_types_agentexportimport_exportagenttojsonstring", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L406", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentexportimport", + "target": "apps_extension_chromium_src_types_agentexportimport_exporttriggers", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L634", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentexportimport", + "target": "apps_extension_chromium_src_types_agentexportimport_extractvalue", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L461", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentexportimport", + "target": "apps_extension_chromium_src_types_agentexportimport_importagentfromjson", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L651", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentexportimport", + "target": "apps_extension_chromium_src_types_agentexportimport_importtriggers", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L166", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentexportimport", + "target": "apps_extension_chromium_src_types_agentexportimport_processarraywithschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L747", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentexportimport", + "target": "apps_extension_chromium_src_types_agentexportimport_readagentfromfile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentexportimport", + "target": "apps_extension_chromium_src_types_agentexportimport_schemaelement", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L142", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentexportimport", + "target": "apps_extension_chromium_src_types_agentexportimport_schemanodetoelement", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L679", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentexportimport", + "target": "apps_extension_chromium_src_types_agentexportimport_validateagentconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L156", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentexportimport", + "target": "apps_extension_chromium_src_types_agentexportimport_wrapwithschema", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentexportimport", + "target": "apps_extension_chromium_src_types_agenttypeschema", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentexportimport", + "target": "apps_extension_chromium_src_types_agenttypeschema_agentidentityschema", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentexportimport", + "target": "apps_extension_chromium_src_types_agenttypeschema_completeagentschema", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentexportimport", + "target": "apps_extension_chromium_src_types_agenttypeschema_computeschemahash", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentexportimport", + "target": "apps_extension_chromium_src_types_agenttypeschema_executionelementsschema", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentexportimport", + "target": "apps_extension_chromium_src_types_agenttypeschema_executionsectionschema", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentexportimport", + "target": "apps_extension_chromium_src_types_agenttypeschema_getschemanodemap", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentexportimport", + "target": "apps_extension_chromium_src_types_agenttypeschema_listenerelementsschema", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentexportimport", + "target": "apps_extension_chromium_src_types_agenttypeschema_listenersectionschema", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentexportimport", + "target": "apps_extension_chromium_src_types_agenttypeschema_memorycontextschema", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentexportimport", + "target": "apps_extension_chromium_src_types_agenttypeschema_reasoningelementsschema", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentexportimport", + "target": "apps_extension_chromium_src_types_agenttypeschema_reasoningsectionschema", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentexportimport", + "target": "apps_extension_chromium_src_types_agenttypeschema_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentexportimport", + "target": "apps_extension_chromium_src_types_agenttypeschema_schemanode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentexportimport", + "target": "apps_extension_chromium_src_types_agenttypeschema_triggerelementsschema", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentexportimport", + "target": "apps_extension_chromium_src_types_agenttypeschema_triggerschema", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/index.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_index", + "target": "apps_extension_chromium_src_types_agentexportimport", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/index.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_index", + "target": "apps_extension_chromium_src_types_agentexportimport_agentexportmetadata", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/index.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_index", + "target": "apps_extension_chromium_src_types_agentexportimport_schemaelement", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/index.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_index", + "target": "apps_extension_chromium_src_types_agentexportimport_agentexportsection", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/index.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_index", + "target": "apps_extension_chromium_src_types_agentexportimport_agentexportformat", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/index.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_index", + "target": "apps_extension_chromium_src_types_agentexportimport_agentimportresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L204", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentexportimport_exportagenttojson", + "target": "apps_extension_chromium_src_types_agentexportimport_schemanodetoelement", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L408", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentexportimport_exporttriggers", + "target": "apps_extension_chromium_src_types_agentexportimport_schemanodetoelement", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L158", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentexportimport_wrapwithschema", + "target": "apps_extension_chromium_src_types_agentexportimport_schemanodetoelement", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L214", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentexportimport_exportagenttojson", + "target": "apps_extension_chromium_src_types_agentexportimport_wrapwithschema", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L409", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentexportimport_exporttriggers", + "target": "apps_extension_chromium_src_types_agentexportimport_wrapwithschema", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L176", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentexportimport_processarraywithschema", + "target": "apps_extension_chromium_src_types_agentexportimport_wrapwithschema", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L237", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentexportimport_exportagenttojson", + "target": "apps_extension_chromium_src_types_agentexportimport_exporttriggers", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L198", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentexportimport_exportagenttojson", + "target": "apps_extension_chromium_src_types_agenttypeschema_computeschemahash" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L430", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentexportimport_exportagenttojsonstring", + "target": "apps_extension_chromium_src_types_agentexportimport_exportagenttojson", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/index.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_index", + "target": "apps_extension_chromium_src_types_agentexportimport_exportagenttojson", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L731", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentexportimport_downloadagentasjson", + "target": "apps_extension_chromium_src_types_agentexportimport_exportagenttojsonstring", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/index.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_index", + "target": "apps_extension_chromium_src_types_agentexportimport_exportagenttojsonstring", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/index.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_index", + "target": "apps_extension_chromium_src_types_agentexportimport_exportagentcompact", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L501", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentexportimport_importagentfromjson", + "target": "apps_extension_chromium_src_types_agentexportimport_extractvalue", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L530", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentexportimport_importagentfromjson", + "target": "apps_extension_chromium_src_types_agentexportimport_importtriggers", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L754", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentexportimport_readagentfromfile", + "target": "apps_extension_chromium_src_types_agentexportimport_importagentfromjson", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/index.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_index", + "target": "apps_extension_chromium_src_types_agentexportimport_importagentfromjson", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentExportImport.ts", + "source_location": "L656", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentexportimport_importtriggers", + "target": "apps_extension_chromium_src_types_agentexportimport_extractvalue", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/index.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_index", + "target": "apps_extension_chromium_src_types_agentexportimport_downloadagentasjson", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/index.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_index", + "target": "apps_extension_chromium_src_types_agentexportimport_readagentfromfile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentTypeSchema.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agenttypeschema", + "target": "apps_extension_chromium_src_types_agenttypeschema_agentidentityschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentTypeSchema.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agenttypeschema", + "target": "apps_extension_chromium_src_types_agenttypeschema_agentrootschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentTypeSchema.ts", + "source_location": "L1373", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agenttypeschema", + "target": "apps_extension_chromium_src_types_agenttypeschema_completeagentschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentTypeSchema.ts", + "source_location": "L1460", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agenttypeschema", + "target": "apps_extension_chromium_src_types_agenttypeschema_computeschemahash", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentTypeSchema.ts", + "source_location": "L1260", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agenttypeschema", + "target": "apps_extension_chromium_src_types_agenttypeschema_conditionelementsschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentTypeSchema.ts", + "source_location": "L1250", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agenttypeschema", + "target": "apps_extension_chromium_src_types_agenttypeschema_conditionschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentTypeSchema.ts", + "source_location": "L1090", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agenttypeschema", + "target": "apps_extension_chromium_src_types_agenttypeschema_executionelementsschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentTypeSchema.ts", + "source_location": "L1079", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agenttypeschema", + "target": "apps_extension_chromium_src_types_agenttypeschema_executionsectionschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentTypeSchema.ts", + "source_location": "L1444", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agenttypeschema", + "target": "apps_extension_chromium_src_types_agenttypeschema_getschemadescription", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentTypeSchema.ts", + "source_location": "L1452", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agenttypeschema", + "target": "apps_extension_chromium_src_types_agenttypeschema_getschemalabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentTypeSchema.ts", + "source_location": "L1410", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agenttypeschema", + "target": "apps_extension_chromium_src_types_agenttypeschema_getschemanodemap", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentTypeSchema.ts", + "source_location": "L258", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agenttypeschema", + "target": "apps_extension_chromium_src_types_agenttypeschema_listenerelementsschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentTypeSchema.ts", + "source_location": "L247", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agenttypeschema", + "target": "apps_extension_chromium_src_types_agenttypeschema_listenersectionschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentTypeSchema.ts", + "source_location": "L987", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agenttypeschema", + "target": "apps_extension_chromium_src_types_agenttypeschema_memorycontextschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentTypeSchema.ts", + "source_location": "L865", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agenttypeschema", + "target": "apps_extension_chromium_src_types_agenttypeschema_reasoningelementsschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentTypeSchema.ts", + "source_location": "L854", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agenttypeschema", + "target": "apps_extension_chromium_src_types_agenttypeschema_reasoningsectionschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentTypeSchema.ts", + "source_location": "L1478", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agenttypeschema", + "target": "apps_extension_chromium_src_types_agenttypeschema_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentTypeSchema.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agenttypeschema", + "target": "apps_extension_chromium_src_types_agenttypeschema_schemadatatype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentTypeSchema.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agenttypeschema", + "target": "apps_extension_chromium_src_types_agenttypeschema_schemaenumoption", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentTypeSchema.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agenttypeschema", + "target": "apps_extension_chromium_src_types_agenttypeschema_schemanode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentTypeSchema.ts", + "source_location": "L371", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agenttypeschema", + "target": "apps_extension_chromium_src_types_agenttypeschema_triggerelementsschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentTypeSchema.ts", + "source_location": "L360", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agenttypeschema", + "target": "apps_extension_chromium_src_types_agenttypeschema_triggerschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentTypeSchema.ts", + "source_location": "L1188", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agenttypeschema", + "target": "apps_extension_chromium_src_types_agenttypeschema_workflowelementsschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentTypeSchema.ts", + "source_location": "L1178", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agenttypeschema", + "target": "apps_extension_chromium_src_types_agenttypeschema_workflowschema", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/index.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_index", + "target": "apps_extension_chromium_src_types_agenttypeschema", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentTypeSchema.ts", + "source_location": "L1445", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agenttypeschema_getschemadescription", + "target": "apps_extension_chromium_src_types_agenttypeschema_getschemanodemap", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentTypeSchema.ts", + "source_location": "L1453", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agenttypeschema_getschemalabel", + "target": "apps_extension_chromium_src_types_agenttypeschema_getschemanodemap", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentValidator.ts", + "source_location": "L370", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentvalidator", + "target": "apps_extension_chromium_src_types_agentvalidator_logvalidationresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentValidator.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentvalidator", + "target": "apps_extension_chromium_src_types_agentvalidator_validateagentconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentValidator.ts", + "source_location": "L312", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentvalidator", + "target": "apps_extension_chromium_src_types_agentvalidator_validateexecutionsection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentValidator.ts", + "source_location": "L282", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentvalidator", + "target": "apps_extension_chromium_src_types_agentvalidator_validatereasoningsection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentValidator.ts", + "source_location": "L206", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentvalidator", + "target": "apps_extension_chromium_src_types_agentvalidator_validatetrigger", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentValidator.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentvalidator", + "target": "apps_extension_chromium_src_types_agentvalidator_validationerror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentValidator.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentvalidator", + "target": "apps_extension_chromium_src_types_agentvalidator_validationresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentValidator.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentvalidator", + "target": "apps_extension_chromium_src_types_canonicalagentconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentValidator.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentvalidator", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_canonicalagentconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentValidator.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentvalidator", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_canonicalexecution", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentValidator.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentvalidator", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_canonicalreasoning", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentValidator.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentvalidator", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_canonicaltrigger", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentValidator.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentvalidator", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_destinationkindvalues", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentValidator.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentvalidator", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_executionmodevalues", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentValidator.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentvalidator", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_listeningsourcevalues", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentValidator.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentvalidator", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_parsertriggervalues", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentValidator.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentvalidator", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_responsereadymodevalues", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentValidator.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentvalidator", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_triggertypevalues", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/index.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_index", + "target": "apps_extension_chromium_src_types_agentvalidator", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentValidator.ts", + "source_location": "L177", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentvalidator_validateagentconfig", + "target": "apps_extension_chromium_src_types_agentvalidator_validateexecutionsection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentValidator.ts", + "source_location": "L170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentvalidator_validateagentconfig", + "target": "apps_extension_chromium_src_types_agentvalidator_validatereasoningsection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/AgentValidator.ts", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentvalidator_validateagentconfig", + "target": "apps_extension_chromium_src_types_agentvalidator_validatetrigger", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/types/AgentValidator.ts", + "source_location": "L238", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentvalidator_validatetrigger", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_parsertriggervalues" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/types/AgentValidator.ts", + "source_location": "L249", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentvalidator_validatetrigger", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_responsereadymodevalues" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/types/AgentValidator.ts", + "source_location": "L228", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentvalidator_validatetrigger", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_triggertypevalues" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/types/AgentValidator.ts", + "source_location": "L345", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentvalidator_validateexecutionsection", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_destinationkindvalues" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/types/AgentValidator.ts", + "source_location": "L334", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_agentvalidator_validateexecutionsection", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_executionmodevalues" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentBoxConfig.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentboxconfig", + "target": "apps_extension_chromium_src_types_canonicalagentboxconfig_agentboxprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentBoxConfig.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentboxconfig", + "target": "apps_extension_chromium_src_types_canonicalagentboxconfig_agentboxprovidervalues", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentBoxConfig.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentboxconfig", + "target": "apps_extension_chromium_src_types_canonicalagentboxconfig_agentboxside", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentBoxConfig.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentboxconfig", + "target": "apps_extension_chromium_src_types_canonicalagentboxconfig_agentboxsidevalues", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentBoxConfig.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentboxconfig", + "target": "apps_extension_chromium_src_types_canonicalagentboxconfig_agentboxsource", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentBoxConfig.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentboxconfig", + "target": "apps_extension_chromium_src_types_canonicalagentboxconfig_agentboxsourcevalues", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentBoxConfig.ts", + "source_location": "L216", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentboxconfig", + "target": "apps_extension_chromium_src_types_canonicalagentboxconfig_agentwithboxesexport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentBoxConfig.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentboxconfig", + "target": "apps_extension_chromium_src_types_canonicalagentboxconfig_canonicalagentboxconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentBoxConfig.ts", + "source_location": "L330", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentboxconfig", + "target": "apps_extension_chromium_src_types_canonicalagentboxconfig_findconnectedagentboxes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentBoxConfig.ts", + "source_location": "L305", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentboxconfig", + "target": "apps_extension_chromium_src_types_canonicalagentboxconfig_generateagentboxidentifier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentBoxConfig.ts", + "source_location": "L315", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentboxconfig", + "target": "apps_extension_chromium_src_types_canonicalagentboxconfig_isagentboxconnectedtoagent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentBoxConfig.ts", + "source_location": "L263", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentboxconfig", + "target": "apps_extension_chromium_src_types_canonicalagentboxconfig_tocanonicalagentbox", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentBoxConfig.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentboxconfig", + "target": "apps_extension_chromium_src_types_canonicalagentboxconfig_wrexpert", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/index.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_index", + "target": "apps_extension_chromium_src_types_canonicalagentboxconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentBoxConfig.ts", + "source_location": "L346", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentboxconfig_findconnectedagentboxes", + "target": "apps_extension_chromium_src_types_canonicalagentboxconfig_tocanonicalagentbox", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L168", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentconfig", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_aichatcaptureconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L360", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentconfig", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_canonicalagentconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentconfig", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_canonicalcontextsettings", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentconfig", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_canonicaldestination", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L336", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentconfig", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_canonicalexecution", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L328", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentconfig", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_canonicalexecutionworkflow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L266", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentconfig", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_canonicallistener", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentconfig", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_canonicalmemorysettings", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L304", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentconfig", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_canonicalreasoning", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L297", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentconfig", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_canonicalreasoningworkflow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentconfig", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_canonicaltrigger", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L467", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentconfig", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_deriveapplyfor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentconfig", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_destinationkind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentconfig", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_destinationkindvalues", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentconfig", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_executionmode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentconfig", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_executionmodevalues", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L669", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentconfig", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_generateschemametadata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentconfig", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_listeningsource", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentconfig", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_listeningsourcevalues", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L454", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentconfig", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_normalizeapplyforlist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L474", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentconfig", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_normalizedestinations", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L442", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentconfig", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_normalizetonumber", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L504", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentconfig", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_normalizetrigger", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentconfig", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_parsertriggermode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentconfig", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_parsertriggervalues", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentconfig", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_responsereadymode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentconfig", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_responsereadymodevalues", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L421", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentconfig", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_schemafield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L430", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentconfig", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_schemawrappedvalue", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L576", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentconfig", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_tocanonicalagent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L559", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentconfig", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_tocanonicalexecutionsection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L538", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentconfig", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_tocanonicalreasoningsection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L151", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentconfig", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_triggercondition", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentconfig", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_triggertype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentconfig", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_triggertypevalues", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L161", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentconfig", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_triggerworkflow", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/index.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_index", + "target": "apps_extension_chromium_src_types_canonicalagentconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L514", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentconfig_normalizetrigger", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_normalizetonumber", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L561", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentconfig_tocanonicalexecutionsection", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_normalizeapplyforlist", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L540", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentconfig_tocanonicalreasoningsection", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_normalizeapplyforlist", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L563", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentconfig_tocanonicalexecutionsection", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_normalizedestinations", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L610", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentconfig_tocanonicalagent", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_normalizetrigger", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L620", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentconfig_tocanonicalagent", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_tocanonicalreasoningsection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalAgentConfig.ts", + "source_location": "L639", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicalagentconfig_tocanonicalagent", + "target": "apps_extension_chromium_src_types_canonicalagentconfig_tocanonicalexecutionsection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalDisplayGridConfig.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicaldisplaygridconfig", + "target": "apps_extension_chromium_src_types_canonicaldisplaygridconfig_canonicaldisplaygridconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalDisplayGridConfig.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicaldisplaygridconfig", + "target": "apps_extension_chromium_src_types_canonicaldisplaygridconfig_displaygridinnerconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/CanonicalDisplayGridConfig.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_canonicaldisplaygridconfig", + "target": "apps_extension_chromium_src_types_canonicaldisplaygridconfig_displaygridslotconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/imageProviders.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_imageproviders", + "target": "apps_extension_chromium_src_types_imageproviders_cloudimageproviderconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/imageProviders.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_imageproviders", + "target": "apps_extension_chromium_src_types_imageproviders_cloudimageproviderid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/imageProviders.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_imageproviders", + "target": "apps_extension_chromium_src_types_imageproviders_default_cloud_providers", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/imageProviders.ts", + "source_location": "L165", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_imageproviders", + "target": "apps_extension_chromium_src_types_imageproviders_getdefaultimageprovidersconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/imageProviders.ts", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_imageproviders", + "target": "apps_extension_chromium_src_types_imageproviders_getenabledimageproviders", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/imageProviders.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_imageproviders", + "target": "apps_extension_chromium_src_types_imageproviders_imagemodelconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/imageProviders.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_imageproviders", + "target": "apps_extension_chromium_src_types_imageproviders_imagemodeltype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/imageProviders.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_imageproviders", + "target": "apps_extension_chromium_src_types_imageproviders_imageprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/imageProviders.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_imageproviders", + "target": "apps_extension_chromium_src_types_imageproviders_imageprovidersconfig", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/imageProviders.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_imageproviders_rationale_5", + "target": "apps_extension_chromium_src_types_imageproviders", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/optimizationTypes.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_optimizationtypes", + "target": "apps_extension_chromium_src_types_optimizationtypes_agentrunresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/optimizationTypes.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_optimizationtypes", + "target": "apps_extension_chromium_src_types_optimizationtypes_domslotcapture", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/optimizationTypes.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_optimizationtypes", + "target": "apps_extension_chromium_src_types_optimizationtypes_domsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/optimization/AgentOptimizationResult.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_optimization_agentoptimizationresult", + "target": "apps_extension_chromium_src_types_optimizationtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/optimization/AgentOptimizationResult.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_optimization_agentoptimizationresult", + "target": "apps_extension_chromium_src_types_optimizationtypes_agentrunresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/orchestration.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_orchestration", + "target": "apps_extension_chromium_src_types_orchestration_agentcontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/orchestration.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_orchestration", + "target": "apps_extension_chromium_src_types_orchestration_agentmemory", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/orchestration.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_orchestration", + "target": "apps_extension_chromium_src_types_orchestration_aiagent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/orchestration.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_orchestration", + "target": "apps_extension_chromium_src_types_orchestration_displayslot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/orchestration.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_orchestration", + "target": "apps_extension_chromium_src_types_orchestration_orchestrationconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/orchestration.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_orchestration", + "target": "apps_extension_chromium_src_types_orchestration_orchestrationtemplate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/orchestration.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_orchestration", + "target": "apps_extension_chromium_src_types_orchestration_runtimeinjection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/orchestration.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_orchestration", + "target": "apps_extension_chromium_src_types_orchestration_workflowstep", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/triggerTypes.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_triggertypes", + "target": "apps_extension_chromium_src_types_triggertypes_chatfocusmode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/triggerTypes.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_triggertypes", + "target": "apps_extension_chromium_src_types_triggertypes_triggercomposerentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/triggerTypes.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_triggertypes", + "target": "apps_extension_chromium_src_types_triggertypes_triggercomposershortcutid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/triggerTypes.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_triggertypes", + "target": "apps_extension_chromium_src_types_triggertypes_triggerdropdownitem", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/triggerTypes.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_triggertypes", + "target": "apps_extension_chromium_src_types_triggertypes_triggerfunctionid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/types/triggerTypes.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_types_triggertypes", + "target": "apps_extension_chromium_src_types_triggertypes_triggerprojectentry", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_types_triggertypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/automationUiKind.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_automationuikind", + "target": "apps_extension_chromium_src_types_triggertypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/dropdownSections.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections", + "target": "apps_extension_chromium_src_types_triggertypes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_types_triggertypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_types_triggertypes_triggercomposershortcutid", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_types_triggertypes_triggerfunctionid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/automationUiKind.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_automationuikind", + "target": "apps_extension_chromium_src_types_triggertypes_triggerfunctionid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/dropdownSections.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections", + "target": "apps_extension_chromium_src_types_triggertypes_triggerfunctionid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_types_triggertypes_triggerfunctionid", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_types_triggertypes_chatfocusmode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_types_triggertypes_chatfocusmode", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_types_triggertypes_triggerprojectentry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/dropdownSections.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections", + "target": "apps_extension_chromium_src_types_triggertypes_triggerprojectentry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_types_triggertypes_triggerprojectentry", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_types_triggertypes_triggercomposerentry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/dropdownSections.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections", + "target": "apps_extension_chromium_src_types_triggertypes_triggercomposerentry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_types_triggertypes_triggercomposerentry", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_types_triggertypes_triggerdropdownitem", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/AIAssistPopover.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_aiassistpopover", + "target": "apps_extension_chromium_src_ui_components_aiassistpopover_aiassistpopover", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/AIAssistPopover.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_aiassistpopover", + "target": "apps_extension_chromium_src_ui_components_aiassistpopover_aiassistpopoverprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/CommandChatView.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_commandchatview", + "target": "apps_extension_chromium_src_ui_components_aiassistpopover", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_aiassistpopover", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/CommandChatView.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_commandchatview", + "target": "apps_extension_chromium_src_ui_components_aiassistpopover_aiassistpopover", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_aiassistpopover_aiassistpopover", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/AddModeWizardHost.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizardhost", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard_addmodewizard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/AddModeWizardHost.tsx", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizardhost", + "target": "apps_extension_chromium_src_ui_components_addmodewizardhost_addmodewizarderrorboundary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/AddModeWizardHost.tsx", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizardhost", + "target": "apps_extension_chromium_src_ui_components_addmodewizardhost_addmodewizardhost", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/AddModeWizardHost.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizardhost", + "target": "apps_extension_chromium_src_ui_components_addmodewizardhost_addmodewizardhostprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/AddModeWizardHost.tsx", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizardhost", + "target": "apps_extension_chromium_src_ui_components_addmodewizardhost_automationphase", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/AddModeWizardHost.tsx", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizardhost", + "target": "apps_extension_chromium_src_ui_components_addmodewizardhost_mapthemetolightbox", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/AddModeWizardHost.tsx", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizardhost", + "target": "apps_extension_chromium_src_ui_components_addmodewizardhost_wizarderrorboundaryprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/AddModeWizardHost.tsx", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizardhost", + "target": "apps_extension_chromium_src_ui_components_addmodewizardhost_wizarderrorboundarystate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/AddModeWizardHost.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizardhost", + "target": "apps_extension_chromium_src_ui_components_custommodewizard", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/AddModeWizardHost.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizardhost", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/AddModeWizardHost.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizardhost", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrchat_custom_mode_wizard_saved", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/AddModeWizardHost.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizardhost", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrchat_open_custom_mode_wizard_event", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_addmodewizardhost", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/AddModeWizardHost.tsx", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizardhost_addmodewizardhost", + "target": "apps_extension_chromium_src_ui_components_addmodewizardhost_mapthemetolightbox", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/AddModeWizardHost.tsx", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizardhost_addmodewizarderrorboundary_render", + "target": "apps_extension_chromium_src_ui_components_addmodewizardhost_wizarderrorboundaryprops" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/AddModeWizardHost.tsx", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizardhost_addmodewizarderrorboundary", + "target": "apps_extension_chromium_src_ui_components_addmodewizardhost_addmodewizarderrorboundary_componentdidcatch", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/AddModeWizardHost.tsx", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizardhost_addmodewizarderrorboundary", + "target": "apps_extension_chromium_src_ui_components_addmodewizardhost_addmodewizarderrorboundary_constructor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/AddModeWizardHost.tsx", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizardhost_addmodewizarderrorboundary", + "target": "apps_extension_chromium_src_ui_components_addmodewizardhost_addmodewizarderrorboundary_getderivedstatefromerror", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/AddModeWizardHost.tsx", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizardhost_addmodewizarderrorboundary", + "target": "apps_extension_chromium_src_ui_components_addmodewizardhost_addmodewizarderrorboundary_render", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_addmodewizardhost_addmodewizardhost", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/AdminPoliciesPlaceholder.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_adminpoliciesplaceholder", + "target": "apps_extension_chromium_src_ui_components_adminpoliciesplaceholder_adminpoliciesplaceholder", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/AdminPoliciesPlaceholder.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_adminpoliciesplaceholder", + "target": "apps_extension_chromium_src_ui_components_adminpoliciesplaceholder_adminpoliciesplaceholderprops", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_adminpoliciesplaceholder", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_adminpoliciesplaceholder_adminpoliciesplaceholder", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/docked/DockedCommandChat.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_docked_dockedcommandchat", + "target": "apps_extension_chromium_src_ui_components_adminpoliciesplaceholder_adminpoliciesplaceholder", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ChatFocusBanner.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_chatfocusbanner", + "target": "apps_extension_chromium_src_ui_components_chatfocusbanner_chatfocusbanner", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_ui_components_chatfocusbanner", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_ui_components_chatfocusbanner_chatfocusbanner", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/CommandChatView.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_commandchatview", + "target": "apps_extension_chromium_src_ui_components_commandchatview_chatmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/CommandChatView.tsx", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_commandchatview", + "target": "apps_extension_chromium_src_ui_components_commandchatview_commandchatview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/CommandChatView.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_commandchatview", + "target": "apps_extension_chromium_src_ui_components_commandchatview_commandchatviewprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/CommandChatView.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_commandchatview", + "target": "apps_extension_chromium_src_ui_components_composertoolbelt", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/CommandChatView.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_commandchatview", + "target": "apps_extension_chromium_src_ui_components_composertoolbelt_composertoolbelt", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_commandchatview", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_commandchatview_commandchatview", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/docked/DockedCommandChat.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_docked_dockedcommandchat", + "target": "apps_extension_chromium_src_ui_components_commandchatview_commandchatview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ComposerToolbelt.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_composertoolbelt", + "target": "apps_extension_chromium_src_ui_components_composertoolbelt_composertoolbelt", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ComposerToolbelt.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_composertoolbelt", + "target": "apps_extension_chromium_src_ui_components_composertoolbelt_composertoolbeltprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/GroupChatPlaceholder.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_groupchatplaceholder", + "target": "apps_extension_chromium_src_ui_components_composertoolbelt", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_composertoolbelt", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/P2PChatPlaceholder.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_p2pchatplaceholder", + "target": "apps_extension_chromium_src_ui_components_composertoolbelt", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/P2PStreamPlaceholder.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_p2pstreamplaceholder", + "target": "apps_extension_chromium_src_ui_components_composertoolbelt", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/GroupChatPlaceholder.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_groupchatplaceholder", + "target": "apps_extension_chromium_src_ui_components_composertoolbelt_composertoolbelt", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_composertoolbelt_composertoolbelt", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/P2PChatPlaceholder.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_p2pchatplaceholder", + "target": "apps_extension_chromium_src_ui_components_composertoolbelt_composertoolbelt", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/P2PStreamPlaceholder.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_p2pstreamplaceholder", + "target": "apps_extension_chromium_src_ui_components_composertoolbelt_composertoolbelt", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/CustomModeWizard.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_custommodewizard", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard_addmodewizard", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/CustomModeWizard.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_custommodewizard", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard_addmodewizardprops", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/CustomModeWizard.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_custommodewizard", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_index", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_custommodewizard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/DiffTriggerDialog.tsx", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_difftriggerdialog", + "target": "apps_extension_chromium_src_ui_components_difftriggerdialog_difftriggerdialog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/DiffTriggerDialog.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_difftriggerdialog", + "target": "apps_extension_chromium_src_ui_components_difftriggerdialog_difftriggerdialogprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/DiffTriggerDialog.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_difftriggerdialog", + "target": "apps_extension_chromium_src_ui_components_difftriggerdialog_newdifftriggerid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/DiffTriggerDialog.tsx", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_difftriggerdialog", + "target": "apps_extension_chromium_src_ui_components_difftriggerdialog_viewmode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/DiffTriggerDialog.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_difftriggerdialog", + "target": "apps_extension_chromium_src_utils_normalisetriggertag", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/DiffTriggerDialog.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_difftriggerdialog", + "target": "apps_extension_chromium_src_utils_normalisetriggertag_normalisetriggertag", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/DiffTriggerDialog.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_difftriggerdialog", + "target": "apps_extension_chromium_src_utils_pickwatchfolderpath", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/DiffTriggerDialog.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_difftriggerdialog", + "target": "apps_extension_chromium_src_utils_pickwatchfolderpath_hasnativefolderpicker", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/DiffTriggerDialog.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_difftriggerdialog", + "target": "apps_extension_chromium_src_utils_pickwatchfolderpath_pickwatchfolderpath", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/DiffTriggerDialog.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_difftriggerdialog", + "target": "packages_shared_src_wrchat_difftrigger", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/DiffTriggerDialog.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_difftriggerdialog", + "target": "packages_shared_src_wrchat_difftrigger_difftrigger", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_difftriggerdialog", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/WrChatDiffButton.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrchatdiffbutton", + "target": "apps_extension_chromium_src_ui_components_difftriggerdialog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/DiffTriggerDialog.tsx", + "source_location": "L184", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_difftriggerdialog_difftriggerdialog", + "target": "apps_extension_chromium_src_ui_components_difftriggerdialog_newdifftriggerid", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/DiffTriggerDialog.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_difftriggerdialog_difftriggerdialogprops", + "target": "packages_shared_src_wrchat_difftrigger_difftrigger", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_difftriggerdialog_difftriggerdialogprops", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/DiffTriggerDialog.tsx", + "source_location": "L139", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_difftriggerdialog_difftriggerdialog", + "target": "apps_extension_chromium_src_utils_normalisetriggertag_normalisetriggertag" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/DiffTriggerDialog.tsx", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_difftriggerdialog_difftriggerdialog", + "target": "apps_extension_chromium_src_utils_pickwatchfolderpath_hasnativefolderpicker" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/DiffTriggerDialog.tsx", + "source_location": "L201", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_difftriggerdialog_difftriggerdialog", + "target": "apps_extension_chromium_src_utils_pickwatchfolderpath_pickwatchfolderpath" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_difftriggerdialog_difftriggerdialog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/WrChatDiffButton.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrchatdiffbutton", + "target": "apps_extension_chromium_src_ui_components_difftriggerdialog_difftriggerdialog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/GroupChatPlaceholder.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_groupchatplaceholder", + "target": "apps_extension_chromium_src_ui_components_groupchatplaceholder_groupchatplaceholder", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/GroupChatPlaceholder.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_groupchatplaceholder", + "target": "apps_extension_chromium_src_ui_components_groupchatplaceholder_groupchatplaceholderprops", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_groupchatplaceholder", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_groupchatplaceholder_groupchatplaceholder", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/docked/DockedCommandChat.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_docked_dockedcommandchat", + "target": "apps_extension_chromium_src_ui_components_groupchatplaceholder_groupchatplaceholder", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_modeheaderbadge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ModeHeaderBadge.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_modeheaderbadge", + "target": "apps_extension_chromium_src_ui_components_modeheaderbadge_modeheaderbadge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ModeHeaderBadge.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_modeheaderbadge", + "target": "apps_extension_chromium_src_ui_components_modeheaderbadge_modeheaderbadgeprops", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_modeheaderbadge_modeheaderbadge", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/docked/DockedCommandChat.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_docked_dockedcommandchat", + "target": "apps_extension_chromium_src_ui_components_modeheaderbadge_modeheaderbadge", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ModeRowAffordances.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_moderowaffordances", + "target": "apps_extension_chromium_src_ui_components_moderowactions", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ModeRowAffordances.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_moderowaffordances", + "target": "apps_extension_chromium_src_ui_components_moderowactions_confirmdeletemode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ModeRowAffordances.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_moderowaffordances", + "target": "apps_extension_chromium_src_ui_components_moderowactions_openmodeeditwizard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ModeRowAffordances.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_moderowaffordances", + "target": "apps_extension_chromium_src_ui_components_moderowaffordances_moderowaffordances", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ModeRowAffordances.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_moderowaffordances", + "target": "apps_extension_chromium_src_ui_components_moderowaffordances_moderowaffordancesprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ModeRowAffordances.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_moderowaffordances", + "target": "apps_extension_chromium_src_ui_components_moderowaffordances_tone_fg", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ModeSelect.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_modeselect", + "target": "apps_extension_chromium_src_ui_components_moderowaffordances", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_ui_components_moderowaffordances", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/ModeRowAffordances.tsx", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_moderowaffordances_moderowaffordances", + "target": "apps_extension_chromium_src_ui_components_moderowactions_confirmdeletemode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/ModeRowAffordances.tsx", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_moderowaffordances_moderowaffordances", + "target": "apps_extension_chromium_src_ui_components_moderowactions_openmodeeditwizard" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ModeSelect.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_modeselect", + "target": "apps_extension_chromium_src_ui_components_moderowaffordances_moderowaffordances", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_ui_components_moderowaffordances_moderowaffordances", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_modeselect", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ModeSelect.tsx", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_modeselect", + "target": "apps_extension_chromium_src_ui_components_modeselect_modeselect", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ModeSelect.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_modeselect", + "target": "apps_extension_chromium_src_ui_components_modeselect_modeselectprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ModeSelect.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_modeselect", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ModeSelect.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_modeselect", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrchat_custom_mode_wizard_saved", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/ModeSelect.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_modeselect", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrchat_open_custom_mode_wizard_event", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_modeselect_modeselect", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/docked/DockedCommandChat.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_docked_dockedcommandchat", + "target": "apps_extension_chromium_src_ui_components_modeselect_modeselect", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_optimizationinfobox", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/OptimizationInfobox.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_optimizationinfobox", + "target": "apps_extension_chromium_src_ui_components_optimizationinfobox_isiconurl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/OptimizationInfobox.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_optimizationinfobox", + "target": "apps_extension_chromium_src_ui_components_optimizationinfobox_optimizationinfobox", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_ui_components_optimizationinfobox", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/OptimizationInfobox.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_optimizationinfobox_optimizationinfobox", + "target": "apps_extension_chromium_src_ui_components_optimizationinfobox_isiconurl", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_ui_components_optimizationinfobox_optimizationinfobox", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_p2pchatplaceholder", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/P2PChatPlaceholder.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_p2pchatplaceholder", + "target": "apps_extension_chromium_src_ui_components_p2pchatplaceholder_p2pchatplaceholder", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/P2PChatPlaceholder.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_p2pchatplaceholder", + "target": "apps_extension_chromium_src_ui_components_p2pchatplaceholder_p2pchatplaceholderprops", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_p2pchatplaceholder_p2pchatplaceholder", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/docked/DockedCommandChat.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_docked_dockedcommandchat", + "target": "apps_extension_chromium_src_ui_components_p2pchatplaceholder_p2pchatplaceholder", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_p2pstreamplaceholder", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/P2PStreamPlaceholder.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_p2pstreamplaceholder", + "target": "apps_extension_chromium_src_ui_components_p2pstreamplaceholder_p2pstreamplaceholder", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/P2PStreamPlaceholder.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_p2pstreamplaceholder", + "target": "apps_extension_chromium_src_ui_components_p2pstreamplaceholder_p2pstreamplaceholderprops", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_p2pstreamplaceholder_p2pstreamplaceholder", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/docked/DockedCommandChat.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_docked_dockedcommandchat", + "target": "apps_extension_chromium_src_ui_components_p2pstreamplaceholder_p2pstreamplaceholder", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_popupchatview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L248", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_ui_components_popupchatview_buildheaders", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_ui_components_popupchatview_chatmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_ui_components_popupchatview_dashboardwrchatbeforellmsendinfo", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_ui_components_popupchatview_emojifortriggerkey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L241", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_ui_components_popupchatview_ensurelaunchsecret", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L389", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_ui_components_popupchatview_extractpdftext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L205", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_ui_components_popupchatview_getlaunchsecret", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L349", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_ui_components_popupchatview_getmergedchatllmprefixformodel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_ui_components_popupchatview_getorchestratorsessionkeyforsync", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L261", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_ui_components_popupchatview_mapchattollmmessages", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L368", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_ui_components_popupchatview_modelmenuprimary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L373", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_ui_components_popupchatview_parsedatatransfer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_ui_components_popupchatview_pinned_trigger_emojis", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L446", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_ui_components_popupchatview_popupchatview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_ui_components_popupchatview_popupchatviewprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L340", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_ui_components_popupchatview_resolvechatmodelidforsend", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L323", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_ui_components_popupchatview_resolvemodelidforchat", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L225", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_ui_components_popupchatview_resolveviahandshakebridge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L413", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_ui_components_popupchatview_runocr", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L314", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_ui_components_popupchatview_slicemessagesfromlastuserimage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_ui_components_popupchatview_stableindexforkey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_ui_components_popupchatview_wrchathostmodeltitle", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_ui_components_wrchatcapturebutton", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_ui_components_wrchatcapturebutton_wrchatcapturebutton", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_ui_components_wrchatdiffbutton", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_ui_components_wrchatdiffbutton_wrchatdiffbutton", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_utils_chatfocusllmprefix", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_utils_chatfocusllmprefix_getchatfocusllmprefix", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_utils_formatwatchdogalert", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_utils_formatwatchdogalert_formatwatchdogalert", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_utils_formatwatchdogalert_watchdogthreat", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_utils_image_resolve", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_utils_image_resolve_isplausiblevisionbase64", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_utils_image_resolve_resolveimageurlforbackend", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_utils_image_resolve_tobase64forollama", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_utils_mergetaggedtriggersfromhost", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_utils_mergetaggedtriggersfromhost_mergetaggedtriggersfromhost", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_utils_normalisetriggertag", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_utils_normalisetriggertag_normalisetriggertag", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_utils_prependchatfocustolastuser", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview", + "target": "apps_extension_chromium_src_utils_prependchatfocustolastuser_prependhiddencontexttolastusercontent", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L1892", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_rationale_1892", + "target": "apps_extension_chromium_src_ui_components_popupchatview", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L3871", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_popupchatview", + "target": "apps_extension_chromium_src_ui_components_popupchatview_wrchathostmodeltitle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L357", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_getmergedchatllmprefixformodel", + "target": "apps_extension_chromium_src_ui_components_popupchatview_getorchestratorsessionkeyforsync", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L1180", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_popupchatview", + "target": "apps_extension_chromium_src_ui_components_popupchatview_getorchestratorsessionkeyforsync", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_emojifortriggerkey", + "target": "apps_extension_chromium_src_ui_components_popupchatview_stableindexforkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L3098", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_popupchatview", + "target": "apps_extension_chromium_src_ui_components_popupchatview_emojifortriggerkey", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_popupchatview_dashboardwrchatbeforellmsendinfo", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L243", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_ensurelaunchsecret", + "target": "apps_extension_chromium_src_ui_components_popupchatview_getlaunchsecret", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L210", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_getlaunchsecret", + "target": "apps_extension_chromium_src_ui_components_popupchatview_resolveviahandshakebridge", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L545", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_popupchatview", + "target": "apps_extension_chromium_src_ui_components_popupchatview_getlaunchsecret", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L1177", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_popupchatview", + "target": "apps_extension_chromium_src_ui_components_popupchatview_ensurelaunchsecret", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L402", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_extractpdftext", + "target": "apps_extension_chromium_src_ui_components_popupchatview_buildheaders", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L831", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_popupchatview", + "target": "apps_extension_chromium_src_ui_components_popupchatview_buildheaders", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L419", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_runocr", + "target": "apps_extension_chromium_src_ui_components_popupchatview_buildheaders", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L290", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_mapchattollmmessages", + "target": "apps_extension_chromium_src_ui_components_popupchatview_runocr", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L292", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_mapchattollmmessages", + "target": "apps_extension_chromium_src_utils_image_resolve_isplausiblevisionbase64", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L289", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_mapchattollmmessages", + "target": "apps_extension_chromium_src_utils_image_resolve_resolveimageurlforbackend", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L291", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_mapchattollmmessages", + "target": "apps_extension_chromium_src_utils_image_resolve_tobase64forollama", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L1431", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_popupchatview", + "target": "apps_extension_chromium_src_ui_components_popupchatview_mapchattollmmessages", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L1426", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_popupchatview", + "target": "apps_extension_chromium_src_ui_components_popupchatview_slicemessagesfromlastuserimage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L346", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_resolvechatmodelidforsend", + "target": "apps_extension_chromium_src_ui_components_popupchatview_resolvemodelidforchat", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L1127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_popupchatview", + "target": "apps_extension_chromium_src_ui_components_popupchatview_resolvechatmodelidforsend", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L361", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_getmergedchatllmprefixformodel", + "target": "apps_extension_chromium_src_utils_chatfocusllmprefix_getchatfocusllmprefix", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L1203", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_popupchatview", + "target": "apps_extension_chromium_src_ui_components_popupchatview_getmergedchatllmprefixformodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L3731", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_popupchatview", + "target": "apps_extension_chromium_src_ui_components_popupchatview_modelmenuprimary", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L968", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_popupchatview", + "target": "apps_extension_chromium_src_ui_components_popupchatview_parsedatatransfer", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L1011", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_popupchatview", + "target": "apps_extension_chromium_src_ui_components_popupchatview_extractpdftext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L1198", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_popupchatview", + "target": "apps_extension_chromium_src_ui_components_popupchatview_runocr", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_popupchatview_popupchatview", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L2411", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_popupchatview", + "target": "apps_extension_chromium_src_utils_formatwatchdogalert_formatwatchdogalert" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L1422", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_popupchatview", + "target": "apps_extension_chromium_src_utils_image_resolve_isplausiblevisionbase64" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L1197", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_popupchatview", + "target": "apps_extension_chromium_src_utils_image_resolve_resolveimageurlforbackend" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L1421", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_popupchatview", + "target": "apps_extension_chromium_src_utils_image_resolve_tobase64forollama" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L661", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_popupchatview", + "target": "apps_extension_chromium_src_utils_mergetaggedtriggersfromhost_mergetaggedtriggersfromhost" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L847", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_popupchatview", + "target": "apps_extension_chromium_src_utils_normalisetriggertag_normalisetriggertag" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/PopupChatView.tsx", + "source_location": "L1514", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_popupchatview_popupchatview", + "target": "apps_extension_chromium_src_utils_prependchatfocustolastuser_prependhiddencontexttolastusercontent" + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_watchdogicon", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/WatchdogIcon.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_watchdogicon", + "target": "apps_extension_chromium_src_ui_components_watchdogicon_watchdog_emoji", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/WatchdogIcon.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_watchdogicon", + "target": "apps_extension_chromium_src_ui_components_watchdogicon_watchdogicon", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/WatchdogIcon.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_watchdogicon", + "target": "apps_extension_chromium_src_ui_components_watchdogicon_watchdogiconprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/WrChatWatchdogButton.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrchatwatchdogbutton", + "target": "apps_extension_chromium_src_ui_components_watchdogicon", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/formatWatchdogAlert.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_formatwatchdogalert", + "target": "apps_extension_chromium_src_ui_components_watchdogicon", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_watchdogicon_watchdog_emoji", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/formatWatchdogAlert.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_formatwatchdogalert", + "target": "apps_extension_chromium_src_ui_components_watchdogicon_watchdog_emoji", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/WrChatWatchdogButton.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrchatwatchdogbutton", + "target": "apps_extension_chromium_src_ui_components_watchdogicon_watchdogicon", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_wrchatcapturebutton", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/WrChatCaptureButton.tsx", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrchatcapturebutton", + "target": "apps_extension_chromium_src_ui_components_wrchatcapturebutton_wrchatcapturebutton", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/WrChatCaptureButton.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrchatcapturebutton", + "target": "apps_extension_chromium_src_ui_components_wrchatcapturebutton_wrchatcapturebuttonprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/WrChatCaptureButton.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrchatcapturebutton", + "target": "apps_extension_chromium_src_ui_components_wrchatcapturebutton_wrchatcaptureicon", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/WrChatCaptureButton.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrchatcapturebutton", + "target": "apps_extension_chromium_src_ui_components_wrchatcapturedispatch", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/WrChatCaptureButton.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrchatcapturebutton", + "target": "apps_extension_chromium_src_ui_components_wrchatcapturedispatch_startwrchatscreencapture", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_wrchatcapturebutton_wrchatcaptureicon", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_wrchatcapturebutton_wrchatcapturebutton", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/WrChatCaptureButton.tsx", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrchatcapturebutton_wrchatcapturebutton", + "target": "apps_extension_chromium_src_ui_components_wrchatcapturedispatch_startwrchatscreencapture" + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_wrchatdiffbutton", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/WrChatDiffButton.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrchatdiffbutton", + "target": "apps_extension_chromium_src_ui_components_wrchatdiffbutton_getlaunchsecret", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/WrChatDiffButton.tsx", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrchatdiffbutton", + "target": "apps_extension_chromium_src_ui_components_wrchatdiffbutton_wrchatdiffbutton", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/WrChatDiffButton.tsx", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrchatdiffbutton", + "target": "apps_extension_chromium_src_ui_components_wrchatdiffbutton_wrchatdiffbuttonprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/WrChatDiffButton.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrchatdiffbutton", + "target": "apps_extension_chromium_src_ui_components_wrchatdiffbutton_wrchatdifficon", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/WrChatDiffButton.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrchatdiffbutton", + "target": "packages_shared_src_wrchat_difftrigger", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/WrChatDiffButton.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrchatdiffbutton", + "target": "packages_shared_src_wrchat_difftrigger_difftrigger", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/WrChatDiffButton.tsx", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrchatdiffbutton_wrchatdiffbutton", + "target": "apps_extension_chromium_src_ui_components_wrchatdiffbutton_getlaunchsecret", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_wrchatdiffbutton_wrchatdifficon", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_wrchatdiffbutton_wrchatdiffbuttonprops", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_wrchatdiffbutton_wrchatdiffbutton", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_wrchatwatchdogbutton", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/WrChatWatchdogButton.tsx", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrchatwatchdogbutton", + "target": "apps_extension_chromium_src_ui_components_wrchatwatchdogbutton_buildheaders", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/WrChatWatchdogButton.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrchatwatchdogbutton", + "target": "apps_extension_chromium_src_ui_components_wrchatwatchdogbutton_getlaunchsecret", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/WrChatWatchdogButton.tsx", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrchatwatchdogbutton", + "target": "apps_extension_chromium_src_ui_components_wrchatwatchdogbutton_resolveelectronfallback", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/WrChatWatchdogButton.tsx", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrchatwatchdogbutton", + "target": "apps_extension_chromium_src_ui_components_wrchatwatchdogbutton_wrchatwatchdogbutton", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/WrChatWatchdogButton.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrchatwatchdogbutton", + "target": "apps_extension_chromium_src_ui_components_wrchatwatchdogbutton_wrchatwatchdogbuttonprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/WrChatWatchdogButton.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrchatwatchdogbutton", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/WrChatWatchdogButton.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrchatwatchdogbutton", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_triggerbuttonshell_triggerbuttonshell", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/WrChatWatchdogButton.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrchatwatchdogbutton", + "target": "apps_extension_chromium_src_utils_formatwatchdogalert", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/WrChatWatchdogButton.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrchatwatchdogbutton", + "target": "apps_extension_chromium_src_utils_formatwatchdogalert_watchdogthreat", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_ui_components_wrchatwatchdogbutton", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_wrchatwatchdogbutton_wrchatwatchdogbuttonprops", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/WrChatWatchdogButton.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrchatwatchdogbutton_wrchatwatchdogbuttonprops", + "target": "apps_extension_chromium_src_utils_formatwatchdogalert_watchdogthreat", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/WrChatWatchdogButton.tsx", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrchatwatchdogbutton_getlaunchsecret", + "target": "apps_extension_chromium_src_ui_components_wrchatwatchdogbutton_resolveelectronfallback", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/WrChatWatchdogButton.tsx", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrchatwatchdogbutton_wrchatwatchdogbutton", + "target": "apps_extension_chromium_src_ui_components_wrchatwatchdogbutton_getlaunchsecret", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/WrChatWatchdogButton.tsx", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrchatwatchdogbutton_wrchatwatchdogbutton", + "target": "apps_extension_chromium_src_ui_components_wrchatwatchdogbutton_buildheaders", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_ui_components_wrchatwatchdogbutton_wrchatwatchdogbutton", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/__tests__/modeRowActions.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_tests_moderowactions_test", + "target": "apps_extension_chromium_src_ui_components_moderowactions", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/__tests__/modeRowActions.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_tests_moderowactions_test", + "target": "apps_extension_chromium_src_ui_components_moderowactions_confirmdeletemode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/__tests__/modeRowActions.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_tests_moderowactions_test", + "target": "apps_extension_chromium_src_ui_components_moderowactions_openmodeeditwizard", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/__tests__/modeRowActions.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_tests_moderowactions_test", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/__tests__/modeRowActions.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_tests_moderowactions_test", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrchat_open_custom_mode_wizard_event", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizard.tsx", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard_addmodewizard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizard.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard_addmodewizardprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizard.tsx", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard_last_step", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizard.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardstepbody", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizard.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardstepbody_addmodewizardstepbody", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizard.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizard.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardtypes_add_mode_wizard_steps", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizard.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardtypes_addmodewizardstepindex", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizard.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardtypes_validatestepfn", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizard.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizard.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation_getinlinefielderrorsforstep", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizard.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation_isaddmodewizarddraftvalid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizard.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation_validateaddmodewizardstep", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizard.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_custommodedraftdirty", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizard.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_custommodedraftdirty_iscustommodedraftdirty", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/index.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_index", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizard.tsx", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard_addmodewizardprops", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardtypes_validatestepfn", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/index.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_index", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard_addmodewizardprops", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizard.tsx", + "source_location": "L134", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard_addmodewizard", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation_getinlinefielderrorsforstep" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizard.tsx", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard_addmodewizard", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation_isaddmodewizarddraftvalid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizard.tsx", + "source_location": "L181", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard_addmodewizard", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_custommodedraftdirty_iscustommodedraftdirty" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/index.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_index", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizard_addmodewizard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizardStepBody.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardstepbody", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardstepbody_addmodewizardstepbody", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizardStepBody.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardstepbody", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizardStepBody.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardstepbody", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardtypes_addmodewizardstepindex", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizardStepBody.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardstepbody", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizardStepBody.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardstepbody", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation_inlinefielderrors", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizardStepBody.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardstepbody", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepbasics", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizardStepBody.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardstepbody", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepbasics_stepbasics", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizardStepBody.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardstepbody", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepfocus", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizardStepBody.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardstepbody", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepfocus_stepfocus", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizardStepBody.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardstepbody", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepmodel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizardStepBody.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardstepbody", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepmodel_stepmodel", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizardStepBody.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardstepbody", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepreview", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizardStepBody.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardstepbody", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepreview_stepreview", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizardStepBody.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardstepbody", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_steps_steprun", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizardStepBody.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardstepbody", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_steps_steprun_steprun", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizardStepBody.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardstepbody", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepsession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizardStepBody.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardstepbody", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepsession_stepsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/addModeWizardTypes.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardtypes", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardtypes_add_mode_wizard_steps", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/addModeWizardTypes.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardtypes", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardtypes_addmodewizarddata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/addModeWizardTypes.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardtypes", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardtypes_addmodewizardintent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/addModeWizardTypes.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardtypes", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardtypes_addmodewizardstepindex", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/addModeWizardTypes.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardtypes", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardtypes_validatestepfn", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/addModeWizardValidation.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardtypes", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/index.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_index", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardtypes", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/index.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_index", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardtypes_add_mode_wizard_steps", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/addModeWizardValidation.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardtypes_addmodewizardstepindex", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/index.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_index", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardtypes_addmodewizardstepindex", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/index.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_index", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardtypes_addmodewizardintent", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/index.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_index", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardtypes_addmodewizarddata", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/index.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_index", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardtypes_validatestepfn", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/addModeWizardValidation.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation_getinlinefielderrorsforstep", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/addModeWizardValidation.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation_inlinefielderrors", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/addModeWizardValidation.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation_isaddmodewizarddraftvalid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/addModeWizardValidation.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation_isvalidhttpurl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/addModeWizardValidation.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation_validateaddmodewizardstep", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/index.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_index", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepBasics.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepbasics", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepFocus.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepfocus", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepModel.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepmodel", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepRun.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_steprun", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/addModeWizardValidation.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation_getinlinefielderrorsforstep", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation_isvalidhttpurl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/addModeWizardValidation.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation_validateaddmodewizardstep", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation_isvalidhttpurl", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/index.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_index", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation_inlinefielderrors", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepBasics.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepbasics", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation_inlinefielderrors", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepFocus.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepfocus", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation_inlinefielderrors", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepModel.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepmodel", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation_inlinefielderrors", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepRun.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_steprun", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation_inlinefielderrors", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/index.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_index", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation_getinlinefielderrorsforstep", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/addModeWizardValidation.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation_isaddmodewizarddraftvalid", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation_validateaddmodewizardstep", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/index.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_index", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation_validateaddmodewizardstep", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/index.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_index", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_addmodewizardvalidation_isaddmodewizarddraftvalid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/customModeDraftDirty.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_custommodedraftdirty", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_custommodedraftdirty_iscustommodedraftdirty", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepBasics.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepbasics", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepbasics_stepbasics", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepBasics.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepbasics", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_steps_wizardfielderror", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepBasics.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepbasics", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_steps_wizardfielderror_wizardfielderror", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepBasics.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepbasics", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_wizardconstants", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepBasics.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepbasics", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_wizardconstants_wizard_mode_icons", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepBasics.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepbasics", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_wizardstyles", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepBasics.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepbasics", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_wizardstyles_inputstylewitherror", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepBasics.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepbasics", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_wizardstyles_wizardfieldcolumnstyle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepBasics.tsx", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepbasics_stepbasics", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_wizardstyles_inputstylewitherror" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepBasics.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepbasics_stepbasics", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_wizardstyles_wizardfieldcolumnstyle" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepFocus.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepfocus", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepfocus_stepfocus", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepFocus.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepfocus", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepFocus.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepfocus", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields_stepprofilefields", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepFocus.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepfocus", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_steps_wizardfielderror", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepFocus.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepfocus", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_steps_wizardfielderror_wizardfielderror", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepFocus.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepfocus", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_wizardstyles", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepFocus.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepfocus", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_wizardstyles_inputstylewitherror", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepFocus.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepfocus", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_wizardstyles_wizardfieldcolumnstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepFocus.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepfocus", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_wizardstyles_wizardtextareastyle", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepFocus.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepfocus", + "target": "apps_extension_chromium_src_utils_electronpickdirectory", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepFocus.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepfocus", + "target": "apps_extension_chromium_src_utils_electronpickdirectory_getelectronpickdirectory", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepFocus.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepfocus", + "target": "apps_extension_chromium_src_utils_parsewrexpertmarkdown", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepFocus.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepfocus", + "target": "apps_extension_chromium_src_utils_parsewrexpertmarkdown_parsewrexpertmarkdown", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepFocus.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepfocus", + "target": "apps_extension_chromium_src_utils_parsewrexpertmarkdown_sha256hexutf8", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepFocus.tsx", + "source_location": "L251", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepfocus_stepfocus", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_wizardstyles_inputstylewitherror" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepFocus.tsx", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepfocus_stepfocus", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_wizardstyles_wizardfieldcolumnstyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepFocus.tsx", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepfocus_stepfocus", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_wizardstyles_wizardtextareastyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepFocus.tsx", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepfocus_stepfocus", + "target": "apps_extension_chromium_src_utils_electronpickdirectory_getelectronpickdirectory" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepFocus.tsx", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepfocus_stepfocus", + "target": "apps_extension_chromium_src_utils_parsewrexpertmarkdown_parsewrexpertmarkdown" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepFocus.tsx", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepfocus_stepfocus", + "target": "apps_extension_chromium_src_utils_parsewrexpertmarkdown_sha256hexutf8" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepModel.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepmodel", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepmodel_hostmodeloptionlabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepModel.tsx", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepmodel", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepmodel_stepmodel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepModel.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepmodel", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepmodel_usedebounced", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepModel.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepmodel", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_steps_wizardfielderror", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepModel.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepmodel", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_steps_wizardfielderror_wizardfielderror", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepModel.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepmodel", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_wizardconstants", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepModel.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepmodel", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_wizardconstants_wizard_model_providers", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepModel.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepmodel", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_wizardstyles", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepModel.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepmodel", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_wizardstyles_inputstylewitherror", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepModel.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepmodel", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_wizardstyles_wizardfieldcolumnstyle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepModel.tsx", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepmodel_stepmodel", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepmodel_usedebounced", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepModel.tsx", + "source_location": "L278", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepmodel_stepmodel", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepmodel_hostmodeloptionlabel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepModel.tsx", + "source_location": "L193", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepmodel_stepmodel", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_wizardstyles_inputstylewitherror" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepModel.tsx", + "source_location": "L154", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepmodel_stepmodel", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_wizardstyles_wizardfieldcolumnstyle" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepProfileFields.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields_advanced_field_types", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepProfileFields.tsx", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields_effectivefieldtype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepProfileFields.tsx", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields_isadvancedtype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepProfileFields.tsx", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields_joinmultiselectvalue", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepProfileFields.tsx", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields_parsemultiselectvalue", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepProfileFields.tsx", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields_profilefieldvalueinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepProfileFields.tsx", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields_shouldautokey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepProfileFields.tsx", + "source_location": "L367", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields_stepprofilefields", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepProfileFields.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_wizardstyles", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepProfileFields.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_wizardstyles_wizardfieldcolumnstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepProfileFields.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_wizardstyles_wizardtextareastyle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepProfileFields.tsx", + "source_location": "L409", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields_stepprofilefields", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields_shouldautokey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepProfileFields.tsx", + "source_location": "L289", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields_profilefieldvalueinput", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields_parsemultiselectvalue", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepProfileFields.tsx", + "source_location": "L319", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields_profilefieldvalueinput", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields_joinmultiselectvalue", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepProfileFields.tsx", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields_profilefieldvalueinput", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields_effectivefieldtype", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepProfileFields.tsx", + "source_location": "L601", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields_stepprofilefields", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields_effectivefieldtype", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepProfileFields.tsx", + "source_location": "L607", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields_stepprofilefields", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields_isadvancedtype", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepProfileFields.tsx", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields_profilefieldvalueinput", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_wizardstyles_wizardtextareastyle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepProfileFields.tsx", + "source_location": "L597", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields_stepprofilefields", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_wizardstyles_wizardfieldcolumnstyle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepProfileFields.tsx", + "source_location": "L895", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepprofilefields_stepprofilefields", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_wizardstyles_wizardtextareastyle" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepReview.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepreview", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepreview_stepreview", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepReview.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepreview", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_wizardstyles", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepReview.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepreview", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_wizardstyles_wizardreviewrowstyle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepReview.tsx", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepreview_stepreview", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_wizardstyles_wizardreviewrowstyle" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepRun.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_steprun", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_steps_steprun_steprun", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepRun.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_steprun", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_steps_wizardfielderror", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepRun.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_steprun", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_steps_wizardfielderror_wizardfielderror", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepRun.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_steprun", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_wizardstyles", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepRun.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_steprun", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_wizardstyles_inputstylewitherror", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepRun.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_steprun", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_wizardstyles_wizardfieldcolumnstyle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepRun.tsx", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_steprun_steprun", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_wizardstyles_inputstylewitherror" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepRun.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_steprun_steprun", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_wizardstyles_wizardfieldcolumnstyle" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepSession.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepsession", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepsession_stepsession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepSession.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepsession", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_wizardstyles", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepSession.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepsession", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_wizardstyles_wizardfieldcolumnstyle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepSession.tsx", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_stepsession_stepsession", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_wizardstyles_wizardfieldcolumnstyle" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/steps/WizardFieldError.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_steps_wizardfielderror", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_steps_wizardfielderror_wizardfielderror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/wizardConstants.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_wizardconstants", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_wizardconstants_wizard_mode_icons", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/wizardConstants.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_wizardconstants", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_wizardconstants_wizard_model_providers", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/wizardStyles.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_wizardstyles", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_wizardstyles_inputstylewitherror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/wizardStyles.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_wizardstyles", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_wizardstyles_wizardfieldcolumnstyle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/wizardStyles.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_wizardstyles", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_wizardstyles_wizardreviewrowstyle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/addModeWizard/wizardStyles.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_addmodewizard_wizardstyles", + "target": "apps_extension_chromium_src_ui_components_addmodewizard_wizardstyles_wizardtextareastyle", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_optimization_agentoptimizationresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_optimization_agentoptimizationresult_agentoptimizationresultprops", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_optimization_optimizationrunheader", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_optimization_optimizationrunheader_optimizationrunheaderprops", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_wrchatcapturedispatch", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_wrchatcapturedispatch_startwrchatscreencapture", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_automationuikind_add_automation_row_ui_kind", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_automationuikind_add_project_assistant_row_ui_kind", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_automationuikind_automationuikind", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_automationuikind_automationuikindfromtriggerfunctionid", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_index", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_triggerbuttonshell_triggerbuttonshell", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_triggerbuttonshell_triggerbuttonshellmonitorprops", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_triggerbuttonshell_triggerbuttonshellprops", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_triggerbuttonshell_triggerbuttonshellsnapshotprops", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrchat_chat_focus_request_event", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrchat_custom_mode_wizard_saved", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrchat_open_custom_mode_wizard_event", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrdesk_composer_shortcuts_updated", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrdesk_open_project_assistant_creation", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrdesk_trigger_sync_auto_optimizer_project", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrmultitriggerbarprops", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_utils_formatwatchdogalert", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_utils_formatwatchdogalert_formatwatchdogalert", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/index.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_index", + "target": "apps_extension_chromium_src_utils_formatwatchdogalert_watchdogthreat", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/docked/DockedCommandChat.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_docked_dockedcommandchat", + "target": "apps_extension_chromium_src_ui_components_index", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/modeRowActions.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_moderowactions", + "target": "apps_extension_chromium_src_ui_components_moderowactions_confirmdeletemode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/modeRowActions.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_moderowactions", + "target": "apps_extension_chromium_src_ui_components_moderowactions_openmodeeditwizard", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/modeRowActions.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_moderowactions", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/modeRowActions.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_moderowactions", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrchat_open_custom_mode_wizard_event", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/optimization/AgentOptimizationResult.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_optimization_agentoptimizationresult", + "target": "apps_extension_chromium_src_ui_components_optimization_agentoptimizationresult_agentoptimizationresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/optimization/AgentOptimizationResult.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_optimization_agentoptimizationresult", + "target": "apps_extension_chromium_src_ui_components_optimization_agentoptimizationresult_agentoptimizationresultprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/optimization/OptimizationRunHeader.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_optimization_optimizationrunheader", + "target": "apps_extension_chromium_src_ui_components_optimization_optimizationrunheader_formattime", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/optimization/OptimizationRunHeader.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_optimization_optimizationrunheader", + "target": "apps_extension_chromium_src_ui_components_optimization_optimizationrunheader_optimizationrunheader", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/optimization/OptimizationRunHeader.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_optimization_optimizationrunheader", + "target": "apps_extension_chromium_src_ui_components_optimization_optimizationrunheader_optimizationrunheaderprops", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/optimization/OptimizationRunHeader.tsx", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_optimization_optimizationrunheader_optimizationrunheader", + "target": "apps_extension_chromium_src_ui_components_optimization_optimizationrunheader_formattime", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrChatCaptureDispatch.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrchatcapturedispatch", + "target": "apps_extension_chromium_src_ui_components_wrchatcapturedispatch_getlmgtfybridge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrChatCaptureDispatch.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrchatcapturedispatch", + "target": "apps_extension_chromium_src_ui_components_wrchatcapturedispatch_lmgtfybridge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrChatCaptureDispatch.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrchatcapturedispatch", + "target": "apps_extension_chromium_src_ui_components_wrchatcapturedispatch_startwrchatscreencapture", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrChatCaptureDispatch.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrchatcapturedispatch", + "target": "apps_extension_chromium_src_ui_components_wrchatcapturedispatch_trystartselectionviahttp", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrChatCaptureDispatch.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrchatcapturedispatch", + "target": "apps_extension_chromium_src_ui_components_wrchatsurface", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrChatCaptureDispatch.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrchatcapturedispatch", + "target": "apps_extension_chromium_src_ui_components_wrchatsurface_source_to_surface", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrChatCaptureDispatch.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrchatcapturedispatch_startwrchatscreencapture", + "target": "apps_extension_chromium_src_ui_components_wrchatcapturedispatch_getlmgtfybridge", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrChatCaptureDispatch.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrchatcapturedispatch_startwrchatscreencapture", + "target": "apps_extension_chromium_src_ui_components_wrchatcapturedispatch_trystartselectionviahttp", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrChatSurface.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrchatsurface", + "target": "apps_extension_chromium_src_ui_components_wrchatsurface_promptcontextforsurface", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrChatSurface.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrchatsurface", + "target": "apps_extension_chromium_src_ui_components_wrchatsurface_source_to_surface", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrChatSurface.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrchatsurface", + "target": "apps_extension_chromium_src_ui_components_wrchatsurface_surfacefromsource", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrChatSurface.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrchatsurface", + "target": "apps_extension_chromium_src_ui_components_wrchatsurface_wrchatsurface", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/index.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_index", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_triggerbuttonshell", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/TriggerButtonShell.tsx", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_triggerbuttonshell", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_triggerbuttonshell_stopcheckboxbubble", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/TriggerButtonShell.tsx", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_triggerbuttonshell", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_triggerbuttonshell_triggerbuttonshell", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/TriggerButtonShell.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_triggerbuttonshell", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_triggerbuttonshell_triggerbuttonshellmonitorprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/TriggerButtonShell.tsx", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_triggerbuttonshell", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_triggerbuttonshell_triggerbuttonshellprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/TriggerButtonShell.tsx", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_triggerbuttonshell", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_triggerbuttonshell_triggerbuttonshellsnapshotprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_triggerbuttonshell", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/index.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_index", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_triggerbuttonshell_triggerbuttonshellmonitorprops", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/index.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_index", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_triggerbuttonshell_triggerbuttonshellsnapshotprops", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/index.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_index", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_triggerbuttonshell_triggerbuttonshellprops", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/index.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_index", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_triggerbuttonshell_triggerbuttonshell", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_triggerbuttonshell_triggerbuttonshell", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/index.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_index", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_automationuikind", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_automationuikind_add_automation_row_ui_kind", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_automationuikind_add_project_assistant_row_ui_kind", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_automationuikind_automationuikindfromtriggerfunctionid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections_buildtriggerbardropdownsections", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections_flattentriggerbardropdownsections", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections_triggerbardropdownrow", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections_triggerbardropdownsection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_functionidkey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_speechbubblebutton", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrchat_chat_focus_request_event", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrchat_custom_mode_wizard_saved", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrchat_open_custom_mode_wizard_event", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrdesk_composer_shortcuts_updated", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrdesk_open_project_assistant_creation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrdesk_trigger_sync_auto_optimizer_project", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrmultitriggerbar", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrmultitriggerbarprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_utils_formatwatchdogalert", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar", + "target": "apps_extension_chromium_src_utils_formatwatchdogalert_watchdogthreat", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/index.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_index", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrchat_chat_focus_request_event", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/index.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_index", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrchat_open_custom_mode_wizard_event", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/index.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_index", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrchat_custom_mode_wizard_saved", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/index.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_index", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrdesk_open_project_assistant_creation", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/index.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_index", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrdesk_trigger_sync_auto_optimizer_project", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/index.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_index", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrdesk_composer_shortcuts_updated", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/index.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_index", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrmultitriggerbarprops", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L299", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrmultitriggerbar", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_functionidkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L235", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrmultitriggerbar", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections_buildtriggerbardropdownsections" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx", + "source_location": "L240", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_wrmultitriggerbar_wrmultitriggerbar", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections_flattentriggerbardropdownsections" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/__tests__/dropdownSections.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_tests_dropdownsections_test", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/__tests__/dropdownSections.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_tests_dropdownsections_test", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections_buildtriggerbardropdownsections", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/__tests__/dropdownSections.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_tests_dropdownsections_test", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections_flattentriggerbardropdownsections", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/automationUiKind.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_automationuikind", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_automationuikind_add_automation_row_ui_kind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/automationUiKind.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_automationuikind", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_automationuikind_add_project_assistant_row_ui_kind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/automationUiKind.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_automationuikind", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_automationuikind_automationuikind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/automationUiKind.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_automationuikind", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_automationuikind_automationuikindfromtriggerfunctionid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/dropdownSections.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_automationuikind", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_index", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_automationuikind", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_index", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_automationuikind_automationuikind", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/dropdownSections.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_automationuikind_automationuikindfromtriggerfunctionid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/dropdownSections.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections_buildcomposerdropdownrows", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_automationuikind_automationuikindfromtriggerfunctionid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/dropdownSections.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections_buildprojectdropdownrows", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_automationuikind_automationuikindfromtriggerfunctionid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/dropdownSections.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections_buildusercustommodedropdownrows", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_automationuikind_automationuikindfromtriggerfunctionid", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_index", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_automationuikind_automationuikindfromtriggerfunctionid", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_index", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_automationuikind_add_automation_row_ui_kind", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_index", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_automationuikind_add_project_assistant_row_ui_kind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/dropdownSections.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections_buildcomposerdropdownrows", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/dropdownSections.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections_buildprojectdropdownrows", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/dropdownSections.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections_buildtriggerbardropdownsections", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/dropdownSections.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections_buildusercustommodedropdownrows", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/dropdownSections.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections_flattentriggerbardropdownsections", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/dropdownSections.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections_triggerbardropdownrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/dropdownSections.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections_triggerbardropdownsection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/dropdownSections.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections_triggerbardropdownsectionid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/dropdownSections.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections_buildtriggerbardropdownsections", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections_buildprojectdropdownrows", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/dropdownSections.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections_buildtriggerbardropdownsections", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections_buildcomposerdropdownrows", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/components/wrMultiTrigger/dropdownSections.ts", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections_buildtriggerbardropdownsections", + "target": "apps_extension_chromium_src_ui_components_wrmultitrigger_dropdownsections_buildusercustommodedropdownrows", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/docked/DockedCommandChat.tsx", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_docked_dockedcommandchat", + "target": "apps_extension_chromium_src_ui_docked_dockedcommandchat_dockedcommandchat", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/docked/DockedCommandChat.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_docked_dockedcommandchat", + "target": "apps_extension_chromium_src_ui_docked_dockedcommandchat_dockedcommandchatprops", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/docked/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_docked_index", + "target": "apps_extension_chromium_src_ui_docked_dockedcommandchat", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/ui/docked/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_ui_docked_index", + "target": "apps_extension_chromium_src_ui_docked_dockedcommandchat_dockedcommandchat", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/__tests__/chatFocusLlmPrefixScamWatchdog.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_tests_chatfocusllmprefixscamwatchdog_test", + "target": "apps_extension_chromium_src_utils_chatfocusllmprefix", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/__tests__/chatFocusLlmPrefixScamWatchdog.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_tests_chatfocusllmprefixscamwatchdog_test", + "target": "apps_extension_chromium_src_utils_chatfocusllmprefix_getchatfocusllmprefix", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/__tests__/customModeLlmPrefixWrChat.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_tests_custommodellmprefixwrchat_test", + "target": "apps_extension_chromium_src_utils_custommodellmprefix", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/__tests__/customModeLlmPrefixWrChat.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_tests_custommodellmprefixwrchat_test", + "target": "apps_extension_chromium_src_utils_custommodellmprefix_getcustommodellmprefix", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/__tests__/customModeLlmPrefixWrChat.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_tests_custommodellmprefixwrchat_test", + "target": "apps_extension_chromium_src_utils_custommodellmprefix_getcustommodellmprefixforwrchat", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/chatFocusLlmPrefix.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_chatfocusllmprefix", + "target": "apps_extension_chromium_src_utils_chatfocusllmprefix_desklookup", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/chatFocusLlmPrefix.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_chatfocusllmprefix", + "target": "apps_extension_chromium_src_utils_chatfocusllmprefix_getchatfocusllmprefix", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/chatFocusLlmPrefix.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_chatfocusllmprefix", + "target": "apps_extension_chromium_src_utils_chatfocusllmprefix_loadprojectfromwrdesklocalstorage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/chatFocusLlmPrefix.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_chatfocusllmprefix", + "target": "apps_extension_chromium_src_utils_chatfocusllmprefix_resolvedescriptiongoals", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/chatFocusLlmPrefix.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_chatfocusllmprefix_resolvedescriptiongoals", + "target": "apps_extension_chromium_src_utils_chatfocusllmprefix_loadprojectfromwrdesklocalstorage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/chatFocusLlmPrefix.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_chatfocusllmprefix_getchatfocusllmprefix", + "target": "apps_extension_chromium_src_utils_chatfocusllmprefix_resolvedescriptiongoals", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/contextBlockHash.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_contextblockhash", + "target": "apps_extension_chromium_src_utils_contextblockhash_computeblockhashclient", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/customModeLlmPrefix.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_custommodellmprefix", + "target": "apps_extension_chromium_src_utils_custommodellmprefix_appendwrchatcontextparts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/customModeLlmPrefix.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_custommodellmprefix", + "target": "apps_extension_chromium_src_utils_custommodellmprefix_getcustommodellmprefix", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/customModeLlmPrefix.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_custommodellmprefix", + "target": "apps_extension_chromium_src_utils_custommodellmprefix_getcustommodellmprefixforwrchat", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/customModeLlmPrefix.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_custommodellmprefix", + "target": "apps_extension_chromium_src_utils_custommodellmprefix_mergellmcontextprefixes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/customModeLlmPrefix.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_custommodellmprefix_getcustommodellmprefix", + "target": "apps_extension_chromium_src_utils_custommodellmprefix_appendwrchatcontextparts", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/customModeLlmPrefix.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_custommodellmprefix_getcustommodellmprefixforwrchat", + "target": "apps_extension_chromium_src_utils_custommodellmprefix_appendwrchatcontextparts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/electronPickDirectory.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_electronpickdirectory", + "target": "apps_extension_chromium_src_utils_electronpickdirectory_getelectronpickdirectory", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/pickWatchFolderPath.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_pickwatchfolderpath", + "target": "apps_extension_chromium_src_utils_electronpickdirectory", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/pickWatchFolderPath.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_pickwatchfolderpath", + "target": "apps_extension_chromium_src_utils_electronpickdirectory_getelectronpickdirectory", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/utils/pickWatchFolderPath.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_pickwatchfolderpath_hasnativefolderpicker", + "target": "apps_extension_chromium_src_utils_electronpickdirectory_getelectronpickdirectory" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/utils/pickWatchFolderPath.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_pickwatchfolderpath_pickwatchfolderpath", + "target": "apps_extension_chromium_src_utils_electronpickdirectory_getelectronpickdirectory" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/errorMessages.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_errormessages", + "target": "apps_extension_chromium_src_utils_errormessages_error_messages", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/errorMessages.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_errormessages", + "target": "apps_extension_chromium_src_utils_errormessages_error_patterns", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/errorMessages.ts", + "source_location": "L165", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_errormessages", + "target": "apps_extension_chromium_src_utils_errormessages_formaterror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/errorMessages.ts", + "source_location": "L177", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_errormessages", + "target": "apps_extension_chromium_src_utils_errormessages_formaterrorfornotification", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/errorMessages.ts", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_errormessages", + "target": "apps_extension_chromium_src_utils_errormessages_geterrormessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/errorMessages.ts", + "source_location": "L189", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_errormessages", + "target": "apps_extension_chromium_src_utils_errormessages_isconnectionerror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/errorMessages.ts", + "source_location": "L196", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_errormessages", + "target": "apps_extension_chromium_src_utils_errormessages_requiresuseraction", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/errorMessages.ts", + "source_location": "L166", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_errormessages_formaterror", + "target": "apps_extension_chromium_src_utils_errormessages_geterrormessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/errorMessages.ts", + "source_location": "L178", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_errormessages_formaterrorfornotification", + "target": "apps_extension_chromium_src_utils_errormessages_geterrormessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/formatWatchdogAlert.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_formatwatchdogalert", + "target": "apps_extension_chromium_src_utils_formatwatchdogalert_formatseveritylabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/formatWatchdogAlert.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_formatwatchdogalert", + "target": "apps_extension_chromium_src_utils_formatwatchdogalert_formatthreatblock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/formatWatchdogAlert.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_formatwatchdogalert", + "target": "apps_extension_chromium_src_utils_formatwatchdogalert_formatwatchdogalert", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/formatWatchdogAlert.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_formatwatchdogalert", + "target": "apps_extension_chromium_src_utils_formatwatchdogalert_watchdogthreat", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/formatWatchdogAlert.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_formatwatchdogalert_formatthreatblock", + "target": "apps_extension_chromium_src_utils_formatwatchdogalert_formatseveritylabel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/formatWatchdogAlert.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_formatwatchdogalert_formatwatchdogalert", + "target": "apps_extension_chromium_src_utils_formatwatchdogalert_formatthreatblock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/image-resolve.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_image_resolve", + "target": "apps_extension_chromium_src_utils_image_resolve_blobtodataurl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/image-resolve.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_image_resolve", + "target": "apps_extension_chromium_src_utils_image_resolve_islikelyfilesystempath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/image-resolve.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_image_resolve", + "target": "apps_extension_chromium_src_utils_image_resolve_isplausiblevisionbase64", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/image-resolve.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_image_resolve", + "target": "apps_extension_chromium_src_utils_image_resolve_pathtofileurlstring", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/image-resolve.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_image_resolve", + "target": "apps_extension_chromium_src_utils_image_resolve_resolveimageurlforbackend", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/image-resolve.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_image_resolve", + "target": "apps_extension_chromium_src_utils_image_resolve_resolveviaorchestrator", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/image-resolve.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_image_resolve", + "target": "apps_extension_chromium_src_utils_image_resolve_tobase64forollama", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/image-resolve.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_image_resolve_rationale_87", + "target": "apps_extension_chromium_src_utils_image_resolve", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/image-resolve.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_image_resolve_resolveimageurlforbackend", + "target": "apps_extension_chromium_src_utils_image_resolve_islikelyfilesystempath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/image-resolve.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_image_resolve_resolveimageurlforbackend", + "target": "apps_extension_chromium_src_utils_image_resolve_pathtofileurlstring", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/image-resolve.ts", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_image_resolve_resolveimageurlforbackend", + "target": "apps_extension_chromium_src_utils_image_resolve_blobtodataurl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/image-resolve.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_image_resolve_resolveimageurlforbackend", + "target": "apps_extension_chromium_src_utils_image_resolve_resolveviaorchestrator", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/mergeTaggedTriggersFromHost.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_mergetaggedtriggersfromhost", + "target": "apps_extension_chromium_src_utils_mergetaggedtriggersfromhost_getlaunchsecret", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/mergeTaggedTriggersFromHost.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_mergetaggedtriggersfromhost", + "target": "apps_extension_chromium_src_utils_mergetaggedtriggersfromhost_mergetaggedtriggersfromhost", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/mergeTaggedTriggersFromHost.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_mergetaggedtriggersfromhost", + "target": "apps_extension_chromium_src_utils_mergetaggedtriggersfromhost_taggedtrigger", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/mergeTaggedTriggersFromHost.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_mergetaggedtriggersfromhost", + "target": "apps_extension_chromium_src_utils_mergetaggedtriggersfromhost_triggerkey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/mergeTaggedTriggersFromHost.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_mergetaggedtriggersfromhost", + "target": "apps_extension_chromium_src_utils_mergetaggedtriggersfromhost_triggerts", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/mergeTaggedTriggersFromHost.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_mergetaggedtriggersfromhost_mergetaggedtriggersfromhost", + "target": "apps_extension_chromium_src_utils_mergetaggedtriggersfromhost_getlaunchsecret", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/mergeTaggedTriggersFromHost.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_mergetaggedtriggersfromhost_mergetaggedtriggersfromhost", + "target": "apps_extension_chromium_src_utils_mergetaggedtriggersfromhost_triggerkey", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/mergeTaggedTriggersFromHost.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_mergetaggedtriggersfromhost_mergetaggedtriggersfromhost", + "target": "apps_extension_chromium_src_utils_mergetaggedtriggersfromhost_triggerts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/normaliseTriggerTag.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_normalisetriggertag", + "target": "apps_extension_chromium_src_utils_normalisetriggertag_normalisetriggertag", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/parseWrExpertMarkdown.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_parsewrexpertmarkdown", + "target": "apps_extension_chromium_src_utils_parsewrexpertmarkdown_parsewrexpertmarkdown", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/parseWrExpertMarkdown.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_parsewrexpertmarkdown", + "target": "apps_extension_chromium_src_utils_parsewrexpertmarkdown_sha256hexutf8", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/parseWrExpertMarkdown.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_parsewrexpertmarkdown", + "target": "apps_extension_chromium_src_utils_parsewrexpertmarkdown_wrexpertparsedprofile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/pickWatchFolderPath.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_pickwatchfolderpath", + "target": "apps_extension_chromium_src_utils_pickwatchfolderpath_hasnativefolderpicker", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/pickWatchFolderPath.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_pickwatchfolderpath", + "target": "apps_extension_chromium_src_utils_pickwatchfolderpath_pickwatchfolderpath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/prependChatFocusToLastUser.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_prependchatfocustolastuser", + "target": "apps_extension_chromium_src_utils_prependchatfocustolastuser_prependhiddencontexttolastusercontent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/sessionDisplayLabel.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_sessiondisplaylabel", + "target": "apps_extension_chromium_src_utils_sessiondisplaylabel_nonempty", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/sessionDisplayLabel.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_sessiondisplaylabel", + "target": "apps_extension_chromium_src_utils_sessiondisplaylabel_sessiondisplayfields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/sessionDisplayLabel.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_sessiondisplaylabel", + "target": "apps_extension_chromium_src_utils_sessiondisplaylabel_sessiondisplaylabel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/sessionDisplayLabel.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_sessiondisplaylabel_sessiondisplaylabel", + "target": "apps_extension_chromium_src_utils_sessiondisplaylabel_nonempty", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/watchdogDomExtract.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_watchdogdomextract", + "target": "apps_extension_chromium_src_utils_watchdogdomextract_collapsewhitespace", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/watchdogDomExtract.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_watchdogdomextract", + "target": "apps_extension_chromium_src_utils_watchdogdomextract_distributetotalbudget", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/watchdogDomExtract.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_watchdogdomextract", + "target": "apps_extension_chromium_src_utils_watchdogdomextract_domsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/watchdogDomExtract.ts", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_watchdogdomextract", + "target": "apps_extension_chromium_src_utils_watchdogdomextract_extractalltabsdom", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/watchdogDomExtract.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_watchdogdomextract", + "target": "apps_extension_chromium_src_utils_watchdogdomextract_isexcludedurl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/watchdogDomExtract.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_watchdogdomextract", + "target": "apps_extension_chromium_src_utils_watchdogdomextract_sanitizedomtext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/watchdogDomExtract.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_watchdogdomextract", + "target": "apps_extension_chromium_src_utils_watchdogdomextract_sorttabsforwatchdog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/watchdogDomExtract.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_watchdogdomextract", + "target": "apps_extension_chromium_src_utils_watchdogdomextract_stripdatauris", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/watchdogDomExtract.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_watchdogdomextract", + "target": "apps_extension_chromium_src_utils_watchdogdomextract_stripscriptstyleblocks", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/watchdogDomExtract.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_watchdogdomextract_extractalltabsdom", + "target": "apps_extension_chromium_src_utils_watchdogdomextract_isexcludedurl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/watchdogDomExtract.ts", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_watchdogdomextract_extractalltabsdom", + "target": "apps_extension_chromium_src_utils_watchdogdomextract_sorttabsforwatchdog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/watchdogDomExtract.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_watchdogdomextract_sanitizedomtext", + "target": "apps_extension_chromium_src_utils_watchdogdomextract_stripdatauris", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/watchdogDomExtract.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_watchdogdomextract_sanitizedomtext", + "target": "apps_extension_chromium_src_utils_watchdogdomextract_stripscriptstyleblocks", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/watchdogDomExtract.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_watchdogdomextract_sanitizedomtext", + "target": "apps_extension_chromium_src_utils_watchdogdomextract_collapsewhitespace", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/watchdogDomExtract.ts", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_watchdogdomextract_extractalltabsdom", + "target": "apps_extension_chromium_src_utils_watchdogdomextract_sanitizedomtext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/utils/watchdogDomExtract.ts", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_utils_watchdogdomextract_extractalltabsdom", + "target": "apps_extension_chromium_src_utils_watchdogdomextract_distributetotalbudget", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/UnlockView.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_unlockview", + "target": "apps_extension_chromium_src_vault_api", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/UnlockView.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_unlockview", + "target": "apps_extension_chromium_src_vault_api_createvault", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/UnlockView.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_unlockview", + "target": "apps_extension_chromium_src_vault_api_getvaultstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/UnlockView.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_unlockview", + "target": "apps_extension_chromium_src_vault_api_unlockvault", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/UnlockView.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_unlockview", + "target": "apps_extension_chromium_src_vault_unlockview_unlockview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/UnlockView.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_unlockview", + "target": "apps_extension_chromium_src_vault_unlockview_unlockviewprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/VaultUI.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vaultui", + "target": "apps_extension_chromium_src_vault_unlockview", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/UnlockView.tsx", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_unlockview_unlockview", + "target": "apps_extension_chromium_src_vault_api_createvault" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/UnlockView.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_unlockview_unlockview", + "target": "apps_extension_chromium_src_vault_api_getvaultstatus" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/UnlockView.tsx", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_unlockview_unlockview", + "target": "apps_extension_chromium_src_vault_api_unlockvault" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/VaultUI.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vaultui", + "target": "apps_extension_chromium_src_vault_unlockview_unlockview", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/VaultUI.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vaultui", + "target": "apps_extension_chromium_src_vault_api", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/VaultUI.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vaultui", + "target": "apps_extension_chromium_src_vault_api_connectvault", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/VaultUI.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vaultui", + "target": "apps_extension_chromium_src_vault_api_createcontainer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/VaultUI.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vaultui", + "target": "apps_extension_chromium_src_vault_api_createitem", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/VaultUI.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vaultui", + "target": "apps_extension_chromium_src_vault_api_deletecontainer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/VaultUI.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vaultui", + "target": "apps_extension_chromium_src_vault_api_deleteitem", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/VaultUI.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vaultui", + "target": "apps_extension_chromium_src_vault_api_disconnectvault", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/VaultUI.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vaultui", + "target": "apps_extension_chromium_src_vault_api_exportcsv", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/VaultUI.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vaultui", + "target": "apps_extension_chromium_src_vault_api_getitem", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/VaultUI.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vaultui", + "target": "apps_extension_chromium_src_vault_api_getsettings", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/VaultUI.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vaultui", + "target": "apps_extension_chromium_src_vault_api_importcsv", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/VaultUI.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vaultui", + "target": "apps_extension_chromium_src_vault_api_listcontainers", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/VaultUI.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vaultui", + "target": "apps_extension_chromium_src_vault_api_listitems", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/VaultUI.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vaultui", + "target": "apps_extension_chromium_src_vault_api_lockvault", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/VaultUI.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vaultui", + "target": "apps_extension_chromium_src_vault_api_updateitem", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/VaultUI.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vaultui", + "target": "apps_extension_chromium_src_vault_api_updatesettings", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/VaultUI.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vaultui", + "target": "apps_extension_chromium_src_vault_capabilities", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/VaultUI.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vaultui", + "target": "apps_extension_chromium_src_vault_hscontext_hscontextprofilelist", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/VaultUI.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vaultui", + "target": "apps_extension_chromium_src_vault_hscontext_hscontextprofilelist_hscontextprofilelist", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/VaultUI.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vaultui", + "target": "apps_extension_chromium_src_vault_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/VaultUI.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vaultui", + "target": "apps_extension_chromium_src_vault_types_container", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/VaultUI.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vaultui", + "target": "apps_extension_chromium_src_vault_types_field", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/VaultUI.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vaultui", + "target": "apps_extension_chromium_src_vault_types_itemcategory", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/VaultUI.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vaultui", + "target": "apps_extension_chromium_src_vault_types_vaultitem", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/VaultUI.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vaultui", + "target": "apps_extension_chromium_src_vault_vaultui_vaultui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/VaultUI.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vaultui", + "target": "packages_shared_src_vault_vaultcapabilities_category_ui_map", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/VaultUI.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vaultui_vaultui", + "target": "apps_extension_chromium_src_vault_api_connectvault" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/VaultUI.tsx", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vaultui_vaultui", + "target": "apps_extension_chromium_src_vault_api_createitem" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/VaultUI.tsx", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vaultui_vaultui", + "target": "apps_extension_chromium_src_vault_api_deleteitem" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/VaultUI.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vaultui_vaultui", + "target": "apps_extension_chromium_src_vault_api_disconnectvault" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/VaultUI.tsx", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vaultui_vaultui", + "target": "apps_extension_chromium_src_vault_api_exportcsv" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/VaultUI.tsx", + "source_location": "L308", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vaultui_vaultui", + "target": "apps_extension_chromium_src_vault_api_getitem" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/VaultUI.tsx", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vaultui_vaultui", + "target": "apps_extension_chromium_src_vault_api_getsettings" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/VaultUI.tsx", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vaultui_vaultui", + "target": "apps_extension_chromium_src_vault_api_listcontainers" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/VaultUI.tsx", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vaultui_vaultui", + "target": "apps_extension_chromium_src_vault_api_listitems" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/VaultUI.tsx", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vaultui_vaultui", + "target": "apps_extension_chromium_src_vault_api_lockvault" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/VaultUI.tsx", + "source_location": "L139", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vaultui_vaultui", + "target": "apps_extension_chromium_src_vault_api_updatesettings" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/__tests__/browser-safe-imports.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_tests_browser_safe_imports_test", + "target": "apps_extension_chromium_src_vault_tests_browser_safe_imports_test_browser_executed_files", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/__tests__/browser-safe-imports.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_tests_browser_safe_imports_test", + "target": "apps_extension_chromium_src_vault_tests_browser_safe_imports_test_vault_dir", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "apps_extension_chromium_src_vault_api_addlog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "apps_extension_chromium_src_vault_api_apicall", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L150", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "apps_extension_chromium_src_vault_api_checkhealth", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "apps_extension_chromium_src_vault_api_clearvsbt", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "apps_extension_chromium_src_vault_api_connectvault", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L222", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "apps_extension_chromium_src_vault_api_createcontainer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L248", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "apps_extension_chromium_src_vault_api_createitem", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L179", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "apps_extension_chromium_src_vault_api_createvault", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "apps_extension_chromium_src_vault_api_debuglogs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L230", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "apps_extension_chromium_src_vault_api_deletecontainer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L435", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "apps_extension_chromium_src_vault_api_deletedocument", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L263", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "apps_extension_chromium_src_vault_api_deleteitem", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L187", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "apps_extension_chromium_src_vault_api_deletevault", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L171", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "apps_extension_chromium_src_vault_api_disconnectvault", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L391", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "apps_extension_chromium_src_vault_api_documentimportresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L474", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "apps_extension_chromium_src_vault_api_evaluatehandshakeattach", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L493", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "apps_extension_chromium_src_vault_api_exportcsv", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L284", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "apps_extension_chromium_src_vault_api_fillprojection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L371", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "apps_extension_chromium_src_vault_api_getautofillcandidates", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L414", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "apps_extension_chromium_src_vault_api_getdocument", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L267", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "apps_extension_chromium_src_vault_api_getitem", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L292", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "apps_extension_chromium_src_vault_api_getitemforfill", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L456", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "apps_extension_chromium_src_vault_api_getitemmeta", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L489", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "apps_extension_chromium_src_vault_api_getsettings", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "apps_extension_chromium_src_vault_api_getvaultsessiontoken", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L203", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "apps_extension_chromium_src_vault_api_getvaultstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L498", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "apps_extension_chromium_src_vault_api_importcsv", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L332", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "apps_extension_chromium_src_vault_api_indexprojection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L234", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "apps_extension_chromium_src_vault_api_listcontainers", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L423", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "apps_extension_chromium_src_vault_api_listdocuments", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L304", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "apps_extension_chromium_src_vault_api_listitems", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L342", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "apps_extension_chromium_src_vault_api_listitemsforindex", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L198", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "apps_extension_chromium_src_vault_api_lockvault", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L366", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "apps_extension_chromium_src_vault_api_searchitems", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L463", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "apps_extension_chromium_src_vault_api_setitemmeta", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "apps_extension_chromium_src_vault_api_storevsbt", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "apps_extension_chromium_src_vault_api_unlockvault", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L226", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "apps_extension_chromium_src_vault_api_updatecontainer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L442", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "apps_extension_chromium_src_vault_api_updatedocument", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L259", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "apps_extension_chromium_src_vault_api_updateitem", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L485", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "apps_extension_chromium_src_vault_api_updatesettings", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L402", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "apps_extension_chromium_src_vault_api_uploaddocument", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L380", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "apps_extension_chromium_src_vault_api_vaultdocumentmeta", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "apps_extension_chromium_src_vault_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "apps_extension_chromium_src_vault_types_container", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "apps_extension_chromium_src_vault_types_containertype", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "apps_extension_chromium_src_vault_types_field", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "apps_extension_chromium_src_vault_types_itemcategory", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "apps_extension_chromium_src_vault_types_vaultitem", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "apps_extension_chromium_src_vault_types_vaultsettings", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "apps_extension_chromium_src_vault_types_vaultstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "packages_shared_src_vault_vaultcapabilities_attachevalresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "packages_shared_src_vault_vaultcapabilities_canaccessrecordtype", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "packages_shared_src_vault_vaultcapabilities_handshakebindingpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "packages_shared_src_vault_vaultcapabilities_handshaketarget", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api", + "target": "packages_shared_src_vault_vaultcapabilities_vaulttier", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_credentialstore", + "target": "apps_extension_chromium_src_vault_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultadapter", + "target": "apps_extension_chromium_src_vault_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "apps_extension_chromium_src_vault_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingStore.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingstore", + "target": "apps_extension_chromium_src_vault_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "apps_extension_chromium_src_vault_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-engine.test.ts", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_engine_test", + "target": "apps_extension_chromium_src_vault_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-remap.test.ts", + "source_location": "L153", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_remap_test", + "target": "apps_extension_chromium_src_vault_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_vaultindex", + "target": "apps_extension_chromium_src_vault_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "apps_extension_chromium_src_vault_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.test.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_test", + "target": "apps_extension_chromium_src_vault_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor", + "target": "apps_extension_chromium_src_vault_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_api", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api_apicall", + "target": "apps_extension_chromium_src_vault_api_storevsbt", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L183", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api_createvault", + "target": "apps_extension_chromium_src_vault_api_storevsbt", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L195", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api_unlockvault", + "target": "apps_extension_chromium_src_vault_api_storevsbt", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api_lockvault", + "target": "apps_extension_chromium_src_vault_api_clearvsbt", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api_apicall", + "target": "apps_extension_chromium_src_vault_api_addlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L152", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api_checkhealth", + "target": "apps_extension_chromium_src_vault_api_apicall", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L223", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api_createcontainer", + "target": "apps_extension_chromium_src_vault_api_apicall", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L256", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api_createitem", + "target": "apps_extension_chromium_src_vault_api_apicall", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L180", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api_createvault", + "target": "apps_extension_chromium_src_vault_api_apicall", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L231", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api_deletecontainer", + "target": "apps_extension_chromium_src_vault_api_apicall", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L436", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api_deletedocument", + "target": "apps_extension_chromium_src_vault_api_apicall", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L264", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api_deleteitem", + "target": "apps_extension_chromium_src_vault_api_apicall", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L188", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api_deletevault", + "target": "apps_extension_chromium_src_vault_api_apicall", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L478", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api_evaluatehandshakeattach", + "target": "apps_extension_chromium_src_vault_api_apicall", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L417", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api_getdocument", + "target": "apps_extension_chromium_src_vault_api_apicall", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L268", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api_getitem", + "target": "apps_extension_chromium_src_vault_api_apicall", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L293", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api_getitemforfill", + "target": "apps_extension_chromium_src_vault_api_apicall", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L457", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api_getitemmeta", + "target": "apps_extension_chromium_src_vault_api_apicall", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L490", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api_getsettings", + "target": "apps_extension_chromium_src_vault_api_apicall", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L204", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api_getvaultstatus", + "target": "apps_extension_chromium_src_vault_api_apicall", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L235", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api_listcontainers", + "target": "apps_extension_chromium_src_vault_api_apicall", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L424", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api_listdocuments", + "target": "apps_extension_chromium_src_vault_api_apicall", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L313", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api_listitems", + "target": "apps_extension_chromium_src_vault_api_apicall", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L344", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api_listitemsforindex", + "target": "apps_extension_chromium_src_vault_api_apicall", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api_lockvault", + "target": "apps_extension_chromium_src_vault_api_apicall", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L467", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api_setitemmeta", + "target": "apps_extension_chromium_src_vault_api_apicall", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L192", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api_unlockvault", + "target": "apps_extension_chromium_src_vault_api_apicall", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L227", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api_updatecontainer", + "target": "apps_extension_chromium_src_vault_api_apicall", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L446", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api_updatedocument", + "target": "apps_extension_chromium_src_vault_api_apicall", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L260", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api_updateitem", + "target": "apps_extension_chromium_src_vault_api_apicall", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L486", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api_updatesettings", + "target": "apps_extension_chromium_src_vault_api_apicall", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L407", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api_uploaddocument", + "target": "apps_extension_chromium_src_vault_api_apicall", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L209", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api_getvaultstatus", + "target": "packages_shared_src_vault_vaultcapabilities_canaccessrecordtype" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor", + "target": "apps_extension_chromium_src_vault_api_getitem", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L492", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor_hscontextprofileeditor", + "target": "apps_extension_chromium_src_vault_api_getitem" + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L288", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api_fillprojection", + "target": "apps_extension_chromium_src_vault_types_field", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L286", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api_fillprojection", + "target": "apps_extension_chromium_src_vault_types_itemcategory", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "apps_extension_chromium_src_vault_api_fillprojection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "apps_extension_chromium_src_vault_api_fillprojection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor", + "target": "apps_extension_chromium_src_vault_api_listitems", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L286", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor_hscontextprofileeditor", + "target": "apps_extension_chromium_src_vault_api_listitems" + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L339", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api_indexprojection", + "target": "apps_extension_chromium_src_vault_types_field", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/api.ts", + "source_location": "L334", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_api_indexprojection", + "target": "apps_extension_chromium_src_vault_types_itemcategory", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_vaultindex", + "target": "apps_extension_chromium_src_vault_api_indexprojection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_api_listitemsforindex", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L306", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_updateqsoasync", + "target": "apps_extension_chromium_src_vault_api_listitemsforindex", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/audit-retention-export.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_audit_retention_export_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/audit-retention-export.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_audit_retention_export_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/audit-retention-export.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_audit_retention_export_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_clearauditlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/audit-retention-export.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_audit_retention_export_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_exportauditlogjsonl", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/audit-retention-export.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_audit_retention_export_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_getauditlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/audit-retention-export.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_audit_retention_export_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_max_audit_age_ms", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/audit-retention-export.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_audit_retention_export_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_max_audit_entries", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/audit-retention-export.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_audit_retention_export_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_max_export_bytes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/audit-retention-export.test.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_audit_retention_export_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_audit_retention_export_test_constructor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/audit-retention-export.test.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_audit_retention_export_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_audit_retention_export_test_fillbuffer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/audit-retention-export.test.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_audit_retention_export_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_audit_retention_export_test_now", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/audit-retention-export.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_audit_retention_export_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_audit_retention_export_test_pii", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/audit-retention-export.test.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_audit_retention_export_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_audit_retention_export_test_toisostring", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/audit-retention-export.test.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_audit_retention_export_test_fillbuffer", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/background-sender-gate.test.ts", + "source_location": "L1607", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test_all_webmcp_error_codes_local", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/background-sender-gate.test.ts", + "source_location": "L688", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test_audit_export_allowed_pages", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/background-sender-gate.test.ts", + "source_location": "L1603", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test_bg_webmcp_error_codes_local", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/background-sender-gate.test.ts", + "source_location": "L1647", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test_bgerr", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/background-sender-gate.test.ts", + "source_location": "L297", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test_checkcircuitbreaker", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/background-sender-gate.test.ts", + "source_location": "L262", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test_checkgloballimit", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/background-sender-gate.test.ts", + "source_location": "L288", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test_circuitbreakerstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/background-sender-gate.test.ts", + "source_location": "L699", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test_isextensionuicontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/background-sender-gate.test.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test_isratelimited", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/background-sender-gate.test.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test_isrestrictedurl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/background-sender-gate.test.ts", + "source_location": "L723", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test_isvaultunlocked", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/background-sender-gate.test.ts", + "source_location": "L1619", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test_iswebmcpresultv1local", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/background-sender-gate.test.ts", + "source_location": "L317", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test_recordreject", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/background-sender-gate.test.ts", + "source_location": "L1475", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test_safepositiveint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/background-sender-gate.test.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test_shouldrejectsender", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/background-sender-gate.test.ts", + "source_location": "L740", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test_simulateexporthandler", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/background-sender-gate.test.ts", + "source_location": "L803", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test_valid_export", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/background-sender-gate.test.ts", + "source_location": "L801", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test_valid_sidepanel_sender", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/background-sender-gate.test.ts", + "source_location": "L800", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test_valid_ui_sender", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/background-sender-gate.test.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test_validatewebmcpparams", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/background-sender-gate.test.ts", + "source_location": "L761", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test_simulateexporthandler", + "target": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test_isextensionuicontext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/background-sender-gate.test.ts", + "source_location": "L766", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test_simulateexporthandler", + "target": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test_isvaultunlocked", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/background-sender-gate.test.ts", + "source_location": "L1628", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test_iswebmcpresultv1local", + "target": "apps_extension_chromium_src_vault_autofill_tests_background_sender_gate_test_all_webmcp_error_codes_local" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/datavault-classifier.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_datavault_classifier_test", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/datavault-classifier.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_datavault_classifier_test", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_buildfieldmap", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/datavault-classifier.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_datavault_classifier_test", + "target": "apps_extension_chromium_src_vault_autofill_datavaultfillengine", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/datavault-classifier.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_datavault_classifier_test", + "target": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_fillallmatchedfields", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/datavault-classifier.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_datavault_classifier_test", + "target": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_fillsinglefield", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/datavault-classifier.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_datavault_classifier_test", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/datavault-classifier.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_datavault_classifier_test", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_scorecandidate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/datavault-classifier.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_datavault_classifier_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_datavault_classifier_test_createinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/datavault-classifier.test.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_datavault_classifier_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_datavault_classifier_test_createselect", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/datavault-classifier.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_datavault_classifier_test", + "target": "packages_shared_src_vault_fieldtaxonomy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/datavault-classifier.test.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_datavault_classifier_test", + "target": "packages_shared_src_vault_fieldtaxonomy_confidence_threshold", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/datavault-classifier.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_datavault_classifier_test", + "target": "packages_shared_src_vault_fieldtaxonomy_fieldkind", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/datavault-classifier.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_datavault_classifier_test", + "target": "packages_shared_src_vault_insertionpipeline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/datavault-classifier.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_datavault_classifier_test", + "target": "packages_shared_src_vault_insertionpipeline_fieldcandidate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/datavault-improvements.test.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_datavault_improvements_test", + "target": "apps_extension_chromium_src_vault_autofill_datavaultfillengine", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/datavault-improvements.test.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_datavault_improvements_test", + "target": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_fillsinglefield", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/datavault-improvements.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_datavault_improvements_test", + "target": "apps_extension_chromium_src_vault_autofill_dvnlpbooster", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/datavault-improvements.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_datavault_improvements_test", + "target": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_extracttextfeatures", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/datavault-improvements.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_datavault_improvements_test", + "target": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_isnlpboosterenabled", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/datavault-improvements.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_datavault_improvements_test", + "target": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_nlp_booster_weight", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/datavault-improvements.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_datavault_improvements_test", + "target": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_nlpbackend", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/datavault-improvements.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_datavault_improvements_test", + "target": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_nlpclassifyresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/datavault-improvements.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_datavault_improvements_test", + "target": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_registernlpbackend", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/datavault-improvements.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_datavault_improvements_test", + "target": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_semanticclassify", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/datavault-improvements.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_datavault_improvements_test", + "target": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_setnlpboosterenabled", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/datavault-improvements.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_datavault_improvements_test", + "target": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_textfeatures", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/datavault-improvements.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_datavault_improvements_test", + "target": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_unregisternlpbackend", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/datavault-improvements.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_datavault_improvements_test", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/datavault-improvements.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_datavault_improvements_test", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_buildfieldfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/datavault-improvements.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_datavault_improvements_test", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_fieldfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/datavault-improvements.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_datavault_improvements_test", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_fingerprintmatchscore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/datavault-improvements.test.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_datavault_improvements_test", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_learned_confidence_boost", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/datavault-improvements.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_datavault_improvements_test", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_learnedmapping", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/datavault-improvements.test.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_datavault_improvements_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_datavault_improvements_test_createinput", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/datavault-improvements.test.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_datavault_improvements_test", + "target": "packages_shared_src_vault_fieldtaxonomy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/datavault-improvements.test.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_datavault_improvements_test", + "target": "packages_shared_src_vault_fieldtaxonomy_fieldkind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-autofill.spec.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_e2e_autofill_spec", + "target": "apps_extension_chromium_src_vault_autofill_tests_e2e_autofill_spec_extension_path", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-autofill.spec.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_e2e_autofill_spec", + "target": "apps_extension_chromium_src_vault_autofill_tests_e2e_autofill_spec_isoverlayvisible", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-autofill.spec.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_e2e_autofill_spec", + "target": "apps_extension_chromium_src_vault_autofill_tests_e2e_autofill_spec_isquickselectvisible", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-autofill.spec.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_e2e_autofill_spec", + "target": "apps_extension_chromium_src_vault_autofill_tests_e2e_autofill_spec_issavebarvisible", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-autofill.spec.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_e2e_autofill_spec", + "target": "apps_extension_chromium_src_vault_autofill_tests_e2e_autofill_spec_istriggericonvisible", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-autofill.spec.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_e2e_autofill_spec", + "target": "apps_extension_chromium_src_vault_autofill_tests_e2e_autofill_spec_triggerquickselect", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-autofill.spec.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_e2e_autofill_spec", + "target": "apps_extension_chromium_src_vault_autofill_tests_e2e_autofill_spec_waitforshadowhost", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-security-regression.spec.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_e2e_security_regression_spec", + "target": "apps_extension_chromium_src_vault_autofill_tests_e2e_security_regression_spec_extension_path", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-security-regression.spec.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_e2e_security_regression_spec", + "target": "apps_extension_chromium_src_vault_autofill_tests_e2e_security_regression_spec_isoverlayvisible", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-security-regression.spec.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_e2e_security_regression_spec", + "target": "apps_extension_chromium_src_vault_autofill_tests_e2e_security_regression_spec_waitforshadowhost", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-webmcp-no-write.spec.ts", + "source_location": "L186", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_no_write_spec", + "target": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_no_write_spec_assertnoinputvalueschanged", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-webmcp-no-write.spec.ts", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_no_write_spec", + "target": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_no_write_spec_checkattackerwriteinterceptor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-webmcp-no-write.spec.ts", + "source_location": "L246", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_no_write_spec", + "target": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_no_write_spec_dispatchsyntheticattacks", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-webmcp-no-write.spec.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_no_write_spec", + "target": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_no_write_spec_extension_path", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-webmcp-no-write.spec.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_no_write_spec", + "target": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_no_write_spec_fixture_dir", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-webmcp-no-write.spec.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_no_write_spec", + "target": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_no_write_spec_fixtures", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-webmcp-no-write.spec.ts", + "source_location": "L173", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_no_write_spec", + "target": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_no_write_spec_getallinputvalues", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-webmcp-no-write.spec.ts", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_no_write_spec", + "target": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_no_write_spec_getwritedetails", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-webmcp-no-write.spec.ts", + "source_location": "L213", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_no_write_spec", + "target": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_no_write_spec_injectwebmcppreviewrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-webmcp-no-write.spec.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_no_write_spec", + "target": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_no_write_spec_injectwritedetector", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-webmcp-no-write.spec.ts", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_no_write_spec", + "target": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_no_write_spec_overlayhosthasrect", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-webmcp-no-write.spec.ts", + "source_location": "L137", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_no_write_spec", + "target": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_no_write_spec_teardownwritedetector", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-webmcp-no-write.spec.ts", + "source_location": "L151", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_no_write_spec", + "target": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_no_write_spec_waitforoverlayhost", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-webmcp-no-write.spec.ts", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_no_write_spec", + "target": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_no_write_spec_waswritedetected", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-webmcp-no-write.spec.ts", + "source_location": "L187", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_no_write_spec_assertnoinputvalueschanged", + "target": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_no_write_spec_getallinputvalues", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-webmcp-preview.spec.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_preview_spec", + "target": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_preview_spec_extension_path", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-webmcp-preview.spec.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_preview_spec", + "target": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_preview_spec_fixture_dir", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-webmcp-preview.spec.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_preview_spec", + "target": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_preview_spec_fixture_file", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-webmcp-preview.spec.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_preview_spec", + "target": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_preview_spec_getinputvalue", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-webmcp-preview.spec.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_preview_spec", + "target": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_preview_spec_injectwebmcppreviewrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-webmcp-preview.spec.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_preview_spec", + "target": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_preview_spec_overlayhosthasrect", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/e2e-webmcp-preview.spec.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_preview_spec", + "target": "apps_extension_chromium_src_vault_autofill_tests_e2e_webmcp_preview_spec_waitforoverlayhost", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/form-intent.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_form_intent_test", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/form-intent.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_form_intent_test", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_classifyformintent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/form-intent.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_form_intent_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_form_intent_test_createform", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/form-intent.test.ts", + "source_location": "L263", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_form_intent_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_form_intent_test_filterpasswordcandidates", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/form-intent.test.ts", + "source_location": "L317", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_form_intent_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_form_intent_test_shouldskipduetomismatch", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/form-intent.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_form_intent_test", + "target": "packages_shared_src_vault_fieldtaxonomy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/form-intent.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_form_intent_test", + "target": "packages_shared_src_vault_fieldtaxonomy_formcontext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/form-intent.test.ts", + "source_location": "L266", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_form_intent_test_filterpasswordcandidates", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_icon_suppressed_contexts" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/form-intent.test.ts", + "source_location": "L265", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_form_intent_test_filterpasswordcandidates", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_password_field_kinds" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/hardening.test.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_hardening_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/hardening.test.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_hardening_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditentry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/hardening.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_hardening_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/hardening.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_hardening_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_clearauditlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/hardening.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_hardening_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_cleartelemetry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/hardening.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_hardening_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_countdomainmatches", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/hardening.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_hardening_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_domainrelated", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/hardening.test.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_hardening_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_elementguardresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/hardening.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_hardening_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_emittelemetryevent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/hardening.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_hardening_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_error_messages", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/hardening.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_hardening_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_evaluatesafemode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/hardening.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_hardening_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_failure_modes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/hardening.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_hardening_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_getauditlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/hardening.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_hardening_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_gettelemetrylog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/hardening.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_hardening_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_getusermessage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/hardening.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_hardening_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_guardelement", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/hardening.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_hardening_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_ispublicsuffixdomain", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/hardening.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_hardening_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_maskvalue", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/hardening.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_hardening_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_onauditevent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/hardening.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_hardening_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_ontelemetryevent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/hardening.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_hardening_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_redacterror", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/hardening.test.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_hardening_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_redactsecrets", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/hardening.test.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_hardening_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_safemodedecision", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/hardening.test.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_hardening_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_telemetryevent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/hardening.test.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_hardening_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_hardening_test_makeinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/hardening.test.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_hardening_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_hardening_test_makeprofile", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/hardening.test.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_hardening_test", + "target": "packages_shared_src_vault_fieldtaxonomy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/hardening.test.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_hardening_test", + "target": "packages_shared_src_vault_fieldtaxonomy_fieldentry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/hardening.test.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_hardening_test", + "target": "packages_shared_src_vault_fieldtaxonomy_vaultprofile", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/hardening.test.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_hardening_test", + "target": "packages_shared_src_vault_hamode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/hardening.test.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_hardening_test", + "target": "packages_shared_src_vault_hamode_initial_ha_state_off", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/log-redaction-proof.test.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_log_redaction_proof_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/log-redaction-proof.test.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_log_redaction_proof_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/log-redaction-proof.test.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_log_redaction_proof_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_clearauditlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/log-redaction-proof.test.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_log_redaction_proof_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_getauditlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/log-redaction-proof.test.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_log_redaction_proof_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_maskvalue", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/log-redaction-proof.test.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_log_redaction_proof_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_redacterror", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/log-redaction-proof.test.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_log_redaction_proof_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_redactsecrets", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/log-redaction-proof.test.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_log_redaction_proof_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_log_redaction_proof_test_sensitive", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/meta-sanitization.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_meta_sanitization_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/meta-sanitization.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_meta_sanitization_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/meta-sanitization.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_meta_sanitization_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlogsafe", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/meta-sanitization.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_meta_sanitization_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_clearauditlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/meta-sanitization.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_meta_sanitization_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_getauditlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/meta-sanitization.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_meta_sanitization_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_sanitizemeta", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/meta-sanitization.test.ts", + "source_location": "L475", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_meta_sanitization_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_meta_sanitization_test_get", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/meta-sanitization.test.ts", + "source_location": "L476", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_meta_sanitization_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_meta_sanitization_test_ownkeys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/meta-sanitization.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_meta_sanitization_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_meta_sanitization_test_pii", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/meta-sanitization.test.ts", + "source_location": "L310", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_meta_sanitization_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_meta_sanitization_test_reason", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/overlay-lifecycle.test.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_overlay_lifecycle_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/overlay-lifecycle.test.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_overlay_lifecycle_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/overlay-lifecycle.test.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_overlay_lifecycle_test", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/overlay-lifecycle.test.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_overlay_lifecycle_test", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_getactivesessionid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/overlay-lifecycle.test.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_overlay_lifecycle_test", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_hideoverlay", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/overlay-lifecycle.test.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_overlay_lifecycle_test", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_isoverlayvisible", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/overlay-lifecycle.test.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_overlay_lifecycle_test", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_showoverlay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/overlay-lifecycle.test.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_overlay_lifecycle_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_overlay_lifecycle_test_get", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/overlay-lifecycle.test.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_overlay_lifecycle_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_overlay_lifecycle_test_makesession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/overlay-lifecycle.test.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_overlay_lifecycle_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_overlay_lifecycle_test_set", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/overlay-lifecycle.test.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_overlay_lifecycle_test", + "target": "packages_shared_src_vault_insertionpipeline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/overlay-lifecycle.test.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_overlay_lifecycle_test", + "target": "packages_shared_src_vault_insertionpipeline_overlaysession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-engine.test.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_engine_test", + "target": "apps_extension_chromium_src_vault_autofill_committer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-engine.test.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_engine_test", + "target": "apps_extension_chromium_src_vault_autofill_committer_commitinsert", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-engine.test.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_engine_test", + "target": "apps_extension_chromium_src_vault_autofill_committer_setqsofillactive", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-engine.test.ts", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_engine_test", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-engine.test.ts", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_engine_test", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_collectcandidates", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-engine.test.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_engine_test", + "target": "apps_extension_chromium_src_vault_autofill_haguard", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-engine.test.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_engine_test", + "target": "apps_extension_chromium_src_vault_autofill_haguard_ishaenforced", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-engine.test.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_engine_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-engine.test.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_engine_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlogsafe", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-engine.test.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_engine_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_guardelement", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-engine.test.ts", + "source_location": "L570", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_engine_test", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-engine.test.ts", + "source_location": "L566", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_engine_test", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_buildqsofillactionresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-engine.test.ts", + "source_location": "L566", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_engine_test", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_buildqsostateresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-engine.test.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_engine_test", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_executeqsofill", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-engine.test.ts", + "source_location": "L566", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_engine_test", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_isqsoresultv1", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-engine.test.ts", + "source_location": "L566", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_engine_test", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_qso_error_codes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-engine.test.ts", + "source_location": "L566", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_engine_test", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_qso_result_version", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-engine.test.ts", + "source_location": "L566", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_engine_test", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_qso_statuses", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-engine.test.ts", + "source_location": "L570", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_engine_test", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_qsoactionresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-engine.test.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_engine_test", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_resolveqsostate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-engine.test.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_engine_test", + "target": "apps_extension_chromium_src_vault_autofill_submitguard", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-engine.test.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_engine_test", + "target": "apps_extension_chromium_src_vault_autofill_submitguard_resolvesubmittarget", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-engine.test.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_engine_test", + "target": "apps_extension_chromium_src_vault_autofill_submitguard_safesubmitafterfill", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-engine.test.ts", + "source_location": "L735", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_engine_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_qso_engine_test_assertnopii", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-engine.test.ts", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_engine_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_qso_engine_test_makebutton", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-engine.test.ts", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_engine_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_qso_engine_test_makeform", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-engine.test.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_engine_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_qso_engine_test_makeinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-engine.test.ts", + "source_location": "L165", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_engine_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_qso_engine_test_makescanresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-engine.test.ts", + "source_location": "L151", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_engine_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_qso_engine_test_makevaultitem", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-engine.test.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_engine_test", + "target": "apps_extension_chromium_src_vault_autofill_togglesync", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-engine.test.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_engine_test", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_isautofillactive", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-engine.test.ts", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_engine_test", + "target": "apps_extension_chromium_src_vault_autofill_writeskillswitch", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-engine.test.ts", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_engine_test", + "target": "apps_extension_chromium_src_vault_autofill_writeskillswitch_arewritesdisabled", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-engine.test.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_engine_test", + "target": "packages_shared_src_vault_originpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-engine.test.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_engine_test", + "target": "packages_shared_src_vault_originpolicy_ispublicsuffix", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-engine.test.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_engine_test", + "target": "packages_shared_src_vault_originpolicy_matchorigin", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-remap.test.ts", + "source_location": "L151", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_remap_test", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-remap.test.ts", + "source_location": "L151", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_remap_test", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_collectcandidates", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-remap.test.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_remap_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-remap.test.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_remap_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlogsafe", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-remap.test.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_remap_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_guardelement", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-remap.test.ts", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_remap_test", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-remap.test.ts", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_remap_test", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_createcredentialfrompageinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-remap.test.ts", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_remap_test", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_deletemapping", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-remap.test.ts", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_remap_test", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_findcredentialsfororigin", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-remap.test.ts", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_remap_test", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_loadmapping", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-remap.test.ts", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_remap_test", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_savemapping", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-remap.test.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_remap_test", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-remap.test.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_remap_test", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_getremapstate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-remap.test.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_remap_test", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_teardownremap", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-remap.test.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_remap_test", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_updateremapstate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-remap.test.ts", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_remap_test", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-remap.test.ts", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_remap_test", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_buildelementmapping", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-remap.test.ts", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_remap_test", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_buildselector", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-remap.test.ts", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_remap_test", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_buildsignature", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-remap.test.ts", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_remap_test", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_effectiveorigin", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-remap.test.ts", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_remap_test", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_elementsignature", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-remap.test.ts", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_remap_test", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_loginformmapping", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-remap.test.ts", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_remap_test", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_scoresignaturematch", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-remap.test.ts", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_remap_test", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_validatemapping", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-remap.test.ts", + "source_location": "L152", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_remap_test", + "target": "apps_extension_chromium_src_vault_autofill_submitguard", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-remap.test.ts", + "source_location": "L152", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_remap_test", + "target": "apps_extension_chromium_src_vault_autofill_submitguard_resolvesubmittarget", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-remap.test.ts", + "source_location": "L168", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_remap_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_qso_remap_test_makebutton", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-remap.test.ts", + "source_location": "L178", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_remap_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_qso_remap_test_makeform", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-remap.test.ts", + "source_location": "L159", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_remap_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_qso_remap_test_makeinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-remap.test.ts", + "source_location": "L184", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_remap_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_qso_remap_test_makeloginform", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-remap.test.ts", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_remap_test", + "target": "apps_extension_chromium_src_vault_autofill_togglesync", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-remap.test.ts", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_remap_test", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_isautofillactive", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-remap.test.ts", + "source_location": "L150", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_remap_test", + "target": "apps_extension_chromium_src_vault_autofill_writeskillswitch", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-remap.test.ts", + "source_location": "L150", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_remap_test", + "target": "apps_extension_chromium_src_vault_autofill_writeskillswitch_arewritesdisabled", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-remap.test.ts", + "source_location": "L185", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_remap_test_makeloginform", + "target": "apps_extension_chromium_src_vault_autofill_tests_qso_remap_test_makeform", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-state-matrix.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_state_matrix_test", + "target": "apps_extension_chromium_src_vault_autofill_qsostate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-state-matrix.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_state_matrix_test", + "target": "apps_extension_chromium_src_vault_autofill_qsostate_qsouistate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-state-matrix.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_state_matrix_test", + "target": "apps_extension_chromium_src_vault_autofill_qsostate_resolveqsouistate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-state-matrix.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_state_matrix_test", + "target": "apps_extension_chromium_src_vault_autofill_qsostate_shouldautosubmit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/qso-state-matrix.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_qso_state_matrix_test", + "target": "apps_extension_chromium_src_vault_autofill_qsostate_shouldshowqsobutton", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/scan-dos-caps.test.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_scan_dos_caps_test", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/scan-dos-caps.test.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_scan_dos_caps_test", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_collectcandidates", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/scan-dos-caps.test.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_scan_dos_caps_test", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_invalidatescancache", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/scan-dos-caps.test.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_scan_dos_caps_test", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_scan_cap_max_candidates", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/scan-dos-caps.test.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_scan_dos_caps_test", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_scan_cap_max_candidates_ha", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/scan-dos-caps.test.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_scan_dos_caps_test", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_scan_cap_max_duration_ms", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/scan-dos-caps.test.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_scan_dos_caps_test", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_scan_cap_max_duration_ms_ha", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/scan-dos-caps.test.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_scan_dos_caps_test", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_scan_cap_max_elements", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/scan-dos-caps.test.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_scan_dos_caps_test", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_scan_cap_max_elements_ha", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/scan-dos-caps.test.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_scan_dos_caps_test", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_scan_check_every", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/scan-dos-caps.test.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_scan_dos_caps_test", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_scan_check_every_ha", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/scan-dos-caps.test.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_scan_dos_caps_test", + "target": "apps_extension_chromium_src_vault_autofill_haguard", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/scan-dos-caps.test.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_scan_dos_caps_test", + "target": "apps_extension_chromium_src_vault_autofill_haguard_ishaenforced", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/scan-dos-caps.test.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_scan_dos_caps_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/scan-dos-caps.test.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_scan_dos_caps_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/scan-dos-caps.test.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_scan_dos_caps_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlogsafe", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/scan-dos-caps.test.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_scan_dos_caps_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_emittelemetryevent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/scan-dos-caps.test.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_scan_dos_caps_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_scan_dos_caps_test_createinputs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/scan-dos-caps.test.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_scan_dos_caps_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_scan_dos_caps_test_createmixeddom", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/scan-dos-caps.test.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_scan_dos_caps_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_scan_dos_caps_test_default_toggles", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/security-regression.test.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_security_regression_test", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/security-regression.test.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_security_regression_test", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_fieldmapping", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/security-regression.test.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_security_regression_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/security-regression.test.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_security_regression_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/security-regression.test.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_security_regression_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_clearauditlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/security-regression.test.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_security_regression_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_cleartelemetry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/security-regression.test.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_security_regression_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_domainrelated", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/security-regression.test.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_security_regression_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_evaluatesafemode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/security-regression.test.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_security_regression_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_getauditlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/security-regression.test.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_security_regression_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_guardelement", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/security-regression.test.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_security_regression_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_ispublicsuffixdomain", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/security-regression.test.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_security_regression_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_security_regression_test_makeinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/security-regression.test.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_security_regression_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_security_regression_test_makeprofile", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/security-regression.test.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_security_regression_test", + "target": "packages_shared_src_vault_fieldtaxonomy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/security-regression.test.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_security_regression_test", + "target": "packages_shared_src_vault_fieldtaxonomy_formcontext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/security-regression.test.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_security_regression_test", + "target": "packages_shared_src_vault_fieldtaxonomy_vaultprofile", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/security-regression.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_security_regression_test", + "target": "packages_shared_src_vault_hamode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/security-regression.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_security_regression_test", + "target": "packages_shared_src_vault_hamode_activateha", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/security-regression.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_security_regression_test", + "target": "packages_shared_src_vault_hamode_deactivateha", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/security-regression.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_security_regression_test", + "target": "packages_shared_src_vault_hamode_default_ha_state", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/security-regression.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_security_regression_test", + "target": "packages_shared_src_vault_hamode_ha_ipc_allowlist", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/security-regression.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_security_regression_test", + "target": "packages_shared_src_vault_hamode_haallows", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/security-regression.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_security_regression_test", + "target": "packages_shared_src_vault_hamode_haallowsipc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/security-regression.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_security_regression_test", + "target": "packages_shared_src_vault_hamode_hagatedaction", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/security-regression.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_security_regression_test", + "target": "packages_shared_src_vault_hamode_hamodestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/security-regression.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_security_regression_test", + "target": "packages_shared_src_vault_hamode_initial_ha_state_off", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/security-regression.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_security_regression_test", + "target": "packages_shared_src_vault_hamode_ishaactive", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/security-regression.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_security_regression_test", + "target": "packages_shared_src_vault_hamode_lockha", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/security-regression.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_security_regression_test", + "target": "packages_shared_src_vault_hamode_unlockha", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/security-regression.test.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_security_regression_test", + "target": "packages_shared_src_vault_insertionpipeline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/security-regression.test.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_security_regression_test", + "target": "packages_shared_src_vault_insertionpipeline_fieldcandidate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/security-regression.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_security_regression_test", + "target": "packages_shared_src_vault_originpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/security-regression.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_security_regression_test", + "target": "packages_shared_src_vault_originpolicy_classifyrelevance", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/security-regression.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_security_regression_test", + "target": "packages_shared_src_vault_originpolicy_ispublicsuffix", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/security-regression.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_security_regression_test", + "target": "packages_shared_src_vault_originpolicy_matchorigin", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/security-regression.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_security_regression_test", + "target": "packages_shared_src_vault_originpolicy_parseorigin", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/security-regression.test.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_security_regression_test", + "target": "packages_shared_src_vault_originpolicy_registrabledomain", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/security-regression.test.ts", + "source_location": "L464", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_security_regression_test_rationale_464", + "target": "apps_extension_chromium_src_vault_autofill_tests_security_regression_test", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/submit-guard.test.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_submit_guard_test", + "target": "apps_extension_chromium_src_vault_autofill_haguard", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/submit-guard.test.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_submit_guard_test", + "target": "apps_extension_chromium_src_vault_autofill_haguard_ishaenforced", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/submit-guard.test.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_submit_guard_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/submit-guard.test.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_submit_guard_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlogsafe", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/submit-guard.test.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_submit_guard_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_guardelement", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/submit-guard.test.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_submit_guard_test", + "target": "apps_extension_chromium_src_vault_autofill_submitguard", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/submit-guard.test.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_submit_guard_test", + "target": "apps_extension_chromium_src_vault_autofill_submitguard_resolvesubmittarget", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/submit-guard.test.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_submit_guard_test", + "target": "apps_extension_chromium_src_vault_autofill_submitguard_safesubmitafterfill", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/submit-guard.test.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_submit_guard_test", + "target": "apps_extension_chromium_src_vault_autofill_submitguard_submit_block_reasons", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/submit-guard.test.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_submit_guard_test", + "target": "apps_extension_chromium_src_vault_autofill_submitguard_submitcode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/submit-guard.test.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_submit_guard_test", + "target": "apps_extension_chromium_src_vault_autofill_submitguard_submitsafetyinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/submit-guard.test.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_submit_guard_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_submit_guard_test_makedefaultinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/submit-guard.test.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_submit_guard_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_submit_guard_test_makeform", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/submit-guard.test.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_submit_guard_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_submit_guard_test_makesubmitbutton", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/submit-guard.test.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_submit_guard_test_makedefaultinput", + "target": "apps_extension_chromium_src_vault_autofill_tests_submit_guard_test_makeform", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/submit-guard.test.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_submit_guard_test_makedefaultinput", + "target": "apps_extension_chromium_src_vault_autofill_tests_submit_guard_test_makesubmitbutton", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/webmcp-isolation.test.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_webmcp_isolation_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_webmcp_isolation_test_adapter_path", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/webmcp-isolation.test.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_webmcp_isolation_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_webmcp_isolation_test_adaptersource", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/webmcp-isolation.test.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_webmcp_isolation_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_webmcp_isolation_test_allimports", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/webmcp-isolation.test.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_webmcp_isolation_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_webmcp_isolation_test_allspecifiers", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/webmcp-isolation.test.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_webmcp_isolation_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_webmcp_isolation_test_autofill_dir", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/webmcp-isolation.test.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_webmcp_isolation_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_webmcp_isolation_test_extractimports", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/webmcp-isolation.test.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_webmcp_isolation_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_webmcp_isolation_test_modulename", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/webmcp-isolation.test.ts", + "source_location": "L297", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_webmcp_isolation_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_webmcp_isolation_test_stripcomments", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/webmcp-isolation.test.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_webmcp_isolation_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_webmcp_isolation_test_valueimports", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/webmcp-isolation.test.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_webmcp_isolation_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_webmcp_isolation_test_valuespecifiers", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/writes-kill-switch.test.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_writes_kill_switch_test", + "target": "apps_extension_chromium_src_vault_autofill_committer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/writes-kill-switch.test.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_writes_kill_switch_test", + "target": "apps_extension_chromium_src_vault_autofill_committer_commitinsert", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/writes-kill-switch.test.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_writes_kill_switch_test", + "target": "apps_extension_chromium_src_vault_autofill_haguard", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/writes-kill-switch.test.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_writes_kill_switch_test", + "target": "apps_extension_chromium_src_vault_autofill_haguard_ishaenforced", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/writes-kill-switch.test.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_writes_kill_switch_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/writes-kill-switch.test.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_writes_kill_switch_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/writes-kill-switch.test.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_writes_kill_switch_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_emittelemetryevent", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/writes-kill-switch.test.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_writes_kill_switch_test", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/writes-kill-switch.test.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_writes_kill_switch_test", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_hideoverlay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/writes-kill-switch.test.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_writes_kill_switch_test", + "target": "apps_extension_chromium_src_vault_autofill_tests_writes_kill_switch_test_maketestsession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/writes-kill-switch.test.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_writes_kill_switch_test", + "target": "apps_extension_chromium_src_vault_autofill_writeskillswitch", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/writes-kill-switch.test.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_writes_kill_switch_test", + "target": "apps_extension_chromium_src_vault_autofill_writeskillswitch_arewritesdisabled", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/writes-kill-switch.test.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_writes_kill_switch_test", + "target": "packages_shared_src_vault_insertionpipeline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/__tests__/writes-kill-switch.test.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tests_writes_kill_switch_test", + "target": "packages_shared_src_vault_insertionpipeline_overlaysession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L346", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_checkdomainmatchesasync", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L903", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_checkexactduplicate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L480", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_filterpasswordcandidates", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L916", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_findpasswordfieldonpage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L374", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_findqsoanchor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L237", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_forcescan", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L246", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_getlastscan", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L630", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_guardedautosubmit", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L557", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handlefieldiconclick", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L801", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handlehastatechange", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L580", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handleqsobuttonclick", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L393", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handleqsoiconclick", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L736", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handlequickselectshortcut", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L435", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handlespanavigation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L255", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handletogglechange", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L477", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_icon_suppressed_contexts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_initautofill", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_matcheditems", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L681", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_openpopoverforfield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L756", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_openquickselectforelement", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L469", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_password_field_kinds", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L488", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_runscan", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L530", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_startobserver", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L821", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_startsavepasswordwatcher", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_teardownautofill", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L304", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_updateqsoasync", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_committer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_committer_setpopoverfillactive", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_credentialstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_credentialstore_executecredentialsave", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_credentialstore_findexistingcredentials", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_credentialstore_findmatchingitemsfordomain", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_credentialstore_isneversavedomain", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_cachedvcandidates", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_handledvspanavigation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_initdatavault", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_processscanfordatavault", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_teardowndatavault", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_fieldicons", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_fieldicons_clearallfieldicons", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_fieldicons_hasvaultmatch", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_fieldicons_setfieldiconmatchstate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_fieldicons_setqsobuttonvisible", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_fieldicons_setqsoclickhandler", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_fieldicons_syncfieldicons", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_collectcandidates", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_invalidatescancache", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_scanresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_startwatching", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_stopwatching", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_fillpreview", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_fillpreview_showfillpreview", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_haguard", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_haguard_hacheck", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_haguard_hachecksilent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_haguard_inithasync", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_haguard_ishaenforced", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_haguard_onhachange", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_hardening", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_hardening_clearauditlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_hardening_cleartelemetry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_hardening_emittelemetryevent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_hardening_evaluatesafemode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_hardening_redacterror", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_hardening_startspawatcher", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_hardening_stopspawatcher", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_autosubmitafterfill", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_fillfieldsfromvaultitem", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_hidepopover", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_ispopovervisible", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_loadqsoautoconsent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_showpopover", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard_hidemappingwizard", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_executeqsofill", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_qsocandidate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_qsostate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_resolveqsostate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoicon", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoicon_hideqsoicon", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoicon_qsostatetovisual", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoicon_showqsoicon", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsopicker", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsopicker_hideqsopicker", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsopicker_showqsopicker", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapicon", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapicon_hideremapicon", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_teardownremap", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_updateremapstate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_quickselect", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_hidetriggericon", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_quickselectclose", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_quickselectisopen", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_quickselectopen", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_registershortcut", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_showtriggericon", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_unregistershortcut", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_savebar", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_savebar_existingmatch", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_savebar_hidesavebar", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_savebar_showsavebar", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_submitguard", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_submitguard_resolvesubmittarget", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_submitguard_safesubmitafterfill", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_submitguard_submitsafetyinput", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_oncredentialsubmit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_startsubmitwatcher", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_stopsubmitwatcher", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_togglesync", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_autofilltogglestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_geteffectivetoggles", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_initcontenttogglesync", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_isautofillactive", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_ontogglechange", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_vaultindex", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_vaultindex_clearindex", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_writeskillswitch", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_writeskillswitch_arewritesdisabled", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_writeskillswitch_initwriteskillswitch", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "apps_extension_chromium_src_vault_types_vaultitem", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L555", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "packages_shared_src_vault_insertionpipeline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "packages_shared_src_vault_insertionpipeline_extractedcredentials", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L555", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "target": "packages_shared_src_vault_insertionpipeline_fieldcandidate", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L261", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_rationale_261", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L462", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_rationale_462", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L764", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_rationale_764", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L161", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_initautofill", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handlehastatechange", + "confidence_score": 0.5 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_initautofill", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handlequickselectshortcut", + "confidence_score": 0.5 + }, + { + "relation": "indirect_call", + "context": "collection", + "confidence": "INFERRED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L168", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_initautofill", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handlespanavigation", + "confidence_score": 0.5 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L158", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_initautofill", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handletogglechange", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L185", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_initautofill", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_runscan", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L186", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_initautofill", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_startobserver", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L192", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_initautofill", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_startsavepasswordwatcher", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L180", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_initautofill", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_initdatavault" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_initautofill", + "target": "apps_extension_chromium_src_vault_autofill_haguard_inithasync" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_initautofill", + "target": "apps_extension_chromium_src_vault_autofill_haguard_ishaenforced" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L161", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_initautofill", + "target": "apps_extension_chromium_src_vault_autofill_haguard_onhachange" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_initautofill", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_initautofill", + "target": "apps_extension_chromium_src_vault_autofill_hardening_startspawatcher" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_initautofill", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_registershortcut" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L152", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_initautofill", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_initcontenttogglesync" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L158", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_initautofill", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_ontogglechange" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L155", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_initautofill", + "target": "apps_extension_chromium_src_vault_autofill_writeskillswitch_initwriteskillswitch" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_initautofill", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L212", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_teardownautofill", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_teardowndatavault" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L208", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_teardownautofill", + "target": "apps_extension_chromium_src_vault_autofill_fieldicons_clearallfieldicons" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L201", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_teardownautofill", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_stopwatching" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L230", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_teardownautofill", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L215", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_teardownautofill", + "target": "apps_extension_chromium_src_vault_autofill_hardening_clearauditlog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L216", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_teardownautofill", + "target": "apps_extension_chromium_src_vault_autofill_hardening_cleartelemetry" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L203", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_teardownautofill", + "target": "apps_extension_chromium_src_vault_autofill_hardening_stopspawatcher" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L207", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_teardownautofill", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_hidepopover" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L209", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_teardownautofill", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoicon_hideqsoicon" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L210", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_teardownautofill", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsopicker_hideqsopicker" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L211", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_teardownautofill", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_teardownremap" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L206", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_teardownautofill", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_hidetriggericon" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L205", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_teardownautofill", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_quickselectclose" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L213", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_teardownautofill", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_unregistershortcut" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L204", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_teardownautofill", + "target": "apps_extension_chromium_src_vault_autofill_savebar_hidesavebar" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L202", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_teardownautofill", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_stopsubmitwatcher" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L214", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_teardownautofill", + "target": "apps_extension_chromium_src_vault_autofill_vaultindex_clearindex" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_teardownautofill", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L240", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_forcescan", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_runscan", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L239", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_forcescan", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_invalidatescancache" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L238", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_forcescan", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_isautofillactive" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_forcescan", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_getlastscan", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L287", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handletogglechange", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_runscan", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L290", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handletogglechange", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_startobserver", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L293", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handletogglechange", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_startsavepasswordwatcher", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L283", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handletogglechange", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_initdatavault", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L271", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handletogglechange", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_teardowndatavault", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L267", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handletogglechange", + "target": "apps_extension_chromium_src_vault_autofill_fieldicons_clearallfieldicons", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L286", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handletogglechange", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_invalidatescancache", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L260", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handletogglechange", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_stopwatching", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L257", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handletogglechange", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L266", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handletogglechange", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_hidepopover", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L268", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handletogglechange", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoicon_hideqsoicon", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L269", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handletogglechange", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsopicker_hideqsopicker", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L270", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handletogglechange", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_teardownremap", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L265", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handletogglechange", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_hidetriggericon", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L264", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handletogglechange", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_quickselectclose", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L263", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handletogglechange", + "target": "apps_extension_chromium_src_vault_autofill_savebar_hidesavebar", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L272", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handletogglechange", + "target": "apps_extension_chromium_src_vault_autofill_vaultindex_clearindex", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L521", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_runscan", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_updateqsoasync", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L319", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_updateqsoasync", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_findqsoanchor", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L326", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_updateqsoasync", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handleqsoiconclick", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L310", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_updateqsoasync", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_resolveqsostate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L314", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_updateqsoasync", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoicon_hideqsoicon", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L325", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_updateqsoasync", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoicon_qsostatetovisual", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L326", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_updateqsoasync", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoicon_showqsoicon", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L350", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_checkdomainmatchesasync", + "target": "apps_extension_chromium_src_vault_autofill_credentialstore_findmatchingitemsfordomain", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L356", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_checkdomainmatchesasync", + "target": "apps_extension_chromium_src_vault_autofill_fieldicons_setfieldiconmatchstate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L357", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_checkdomainmatchesasync", + "target": "apps_extension_chromium_src_vault_autofill_fieldicons_setqsobuttonvisible", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L360", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_checkdomainmatchesasync", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L351", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_checkdomainmatchesasync", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_loadqsoautoconsent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L706", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_openpopoverforfield", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_checkdomainmatchesasync", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L516", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_runscan", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_checkdomainmatchesasync", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L394", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handleqsoiconclick", + "target": "apps_extension_chromium_src_vault_autofill_haguard_ishaenforced", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L398", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handleqsoiconclick", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L408", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handleqsoiconclick", + "target": "apps_extension_chromium_src_vault_autofill_hardening_emittelemetryevent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L406", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handleqsoiconclick", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_executeqsofill", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L416", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handleqsoiconclick", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsopicker_showqsopicker", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L455", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handlespanavigation", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_runscan", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L448", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handlespanavigation", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_handledvspanavigation", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L444", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handlespanavigation", + "target": "apps_extension_chromium_src_vault_autofill_fieldicons_clearallfieldicons", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L453", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handlespanavigation", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_invalidatescancache", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L436", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handlespanavigation", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L437", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handlespanavigation", + "target": "apps_extension_chromium_src_vault_autofill_hardening_emittelemetryevent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L443", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handlespanavigation", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_hidepopover", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L445", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handlespanavigation", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoicon_hideqsoicon", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L446", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handlespanavigation", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsopicker_hideqsopicker", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L447", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handlespanavigation", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_teardownremap", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L441", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handlespanavigation", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_hidetriggericon", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L440", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handlespanavigation", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_quickselectclose", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L442", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handlespanavigation", + "target": "apps_extension_chromium_src_vault_autofill_savebar_hidesavebar", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L454", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handlespanavigation", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_isautofillactive", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L482", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_filterpasswordcandidates", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_password_field_kinds" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L483", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_filterpasswordcandidates", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_icon_suppressed_contexts" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L499", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_runscan", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_filterpasswordcandidates", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L536", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_startobserver", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_filterpasswordcandidates", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L500", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_runscan", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handlefieldiconclick", + "confidence_score": 0.5 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L501", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_runscan", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handleqsobuttonclick", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L511", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_runscan", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_cachedvcandidates", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L512", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_runscan", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_processscanfordatavault", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L501", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_runscan", + "target": "apps_extension_chromium_src_vault_autofill_fieldicons_setqsoclickhandler", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L500", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_runscan", + "target": "apps_extension_chromium_src_vault_autofill_fieldicons_syncfieldicons", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L493", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_runscan", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_collectcandidates", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L503", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_runscan", + "target": "apps_extension_chromium_src_vault_autofill_hardening_emittelemetryevent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L523", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_runscan", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_updateremapstate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L520", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_runscan", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_isautofillactive", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L537", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_startobserver", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handlefieldiconclick", + "confidence_score": 0.5 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L538", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_startobserver", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handleqsobuttonclick", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L540", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_startobserver", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_cachedvcandidates", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L541", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_startobserver", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_processscanfordatavault", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L538", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_startobserver", + "target": "apps_extension_chromium_src_vault_autofill_fieldicons_setqsoclickhandler", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L537", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_startobserver", + "target": "apps_extension_chromium_src_vault_autofill_fieldicons_syncfieldicons", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L532", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_startobserver", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_startwatching", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L570", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handlefieldiconclick", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_openpopoverforfield", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L568", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handlefieldiconclick", + "target": "apps_extension_chromium_src_vault_autofill_fieldicons_hasvaultmatch", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L564", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handlefieldiconclick", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_hidepopover", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L563", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handlefieldiconclick", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_ispopovervisible", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L616", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handleqsobuttonclick", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_guardedautosubmit", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L621", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handleqsobuttonclick", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_openpopoverforfield", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L603", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handleqsobuttonclick", + "target": "apps_extension_chromium_src_vault_autofill_committer_setpopoverfillactive", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L588", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handleqsobuttonclick", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L612", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handleqsobuttonclick", + "target": "apps_extension_chromium_src_vault_autofill_hardening_emittelemetryevent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L619", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handleqsobuttonclick", + "target": "apps_extension_chromium_src_vault_autofill_hardening_redacterror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L606", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handleqsobuttonclick", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_fillfieldsfromvaultitem", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L597", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handleqsobuttonclick", + "target": "apps_extension_chromium_src_vault_autofill_writeskillswitch_arewritesdisabled", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L646", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_guardedautosubmit", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L666", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_guardedautosubmit", + "target": "apps_extension_chromium_src_vault_autofill_hardening_emittelemetryevent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L644", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_guardedautosubmit", + "target": "apps_extension_chromium_src_vault_autofill_submitguard_resolvesubmittarget", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L661", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_guardedautosubmit", + "target": "apps_extension_chromium_src_vault_autofill_submitguard_safesubmitafterfill", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L699", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_openpopoverforfield", + "target": "apps_extension_chromium_src_vault_autofill_fieldicons_setqsobuttonvisible", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L704", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_openpopoverforfield", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L715", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_openpopoverforfield", + "target": "apps_extension_chromium_src_vault_autofill_hardening_redacterror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L689", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_openpopoverforfield", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_showpopover", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L712", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_openpopoverforfield", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L749", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handlequickselectshortcut", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_openquickselectforelement", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L747", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handlequickselectshortcut", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_quickselectisopen", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L737", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handlequickselectshortcut", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_isautofillactive", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L763", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_openquickselectforelement", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L771", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_openquickselectforelement", + "target": "apps_extension_chromium_src_vault_autofill_hardening_redacterror" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L760", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_openquickselectforelement", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_quickselectopen" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_openquickselectforelement", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L815", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handlehastatechange", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_startsavepasswordwatcher", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L810", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handlehastatechange", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L805", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handlehastatechange", + "target": "apps_extension_chromium_src_vault_autofill_savebar_hidesavebar", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L804", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handlehastatechange", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_stopsubmitwatcher", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L813", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_handlehastatechange", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_geteffectivetoggles", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L857", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_startsavepasswordwatcher", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_checkexactduplicate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L862", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_startsavepasswordwatcher", + "target": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_findpasswordfieldonpage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L889", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_startsavepasswordwatcher", + "target": "apps_extension_chromium_src_vault_autofill_credentialstore_executecredentialsave", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L850", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_startsavepasswordwatcher", + "target": "apps_extension_chromium_src_vault_autofill_credentialstore_findexistingcredentials", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L839", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_startsavepasswordwatcher", + "target": "apps_extension_chromium_src_vault_autofill_credentialstore_isneversavedomain", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L836", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_startsavepasswordwatcher", + "target": "apps_extension_chromium_src_vault_autofill_haguard_hachecksilent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L841", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_startsavepasswordwatcher", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L864", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_startsavepasswordwatcher", + "target": "apps_extension_chromium_src_vault_autofill_hardening_emittelemetryevent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L894", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_startsavepasswordwatcher", + "target": "apps_extension_chromium_src_vault_autofill_hardening_redacterror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L871", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_startsavepasswordwatcher", + "target": "apps_extension_chromium_src_vault_autofill_savebar_showsavebar", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L830", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_startsavepasswordwatcher", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_oncredentialsubmit", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts", + "source_location": "L828", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_autofillorchestrator_startsavepasswordwatcher", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_startsubmitwatcher", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_test", + "target": "apps_extension_chromium_src_vault_autofill_committer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_test", + "target": "apps_extension_chromium_src_vault_autofill_committer_commitinsert", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_test", + "target": "apps_extension_chromium_src_vault_autofill_committer_runsafetychecks", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_test", + "target": "apps_extension_chromium_src_vault_autofill_committer_settelemetryhook", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.test.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_test", + "target": "apps_extension_chromium_src_vault_autofill_committer_setvaluesafely", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.test.ts", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_test", + "target": "apps_extension_chromium_src_vault_autofill_committer_test_createinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.test.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_test", + "target": "apps_extension_chromium_src_vault_autofill_committer_test_makefield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.test.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_test", + "target": "apps_extension_chromium_src_vault_autofill_committer_test_makepassingfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.test.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_test", + "target": "apps_extension_chromium_src_vault_autofill_committer_test_makeprofile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.test.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_test", + "target": "apps_extension_chromium_src_vault_autofill_committer_test_makesession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.test.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_test", + "target": "apps_extension_chromium_src_vault_autofill_committer_test_maketarget", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.test.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_test", + "target": "packages_shared_src_vault_fieldtaxonomy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.test.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_test", + "target": "packages_shared_src_vault_fieldtaxonomy_fieldentry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.test.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_test", + "target": "packages_shared_src_vault_fieldtaxonomy_vaultprofile", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.test.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_test", + "target": "packages_shared_src_vault_insertionpipeline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.test.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_test", + "target": "packages_shared_src_vault_insertionpipeline_commitresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.test.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_test", + "target": "packages_shared_src_vault_insertionpipeline_domfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.test.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_test", + "target": "packages_shared_src_vault_insertionpipeline_domfingerprintproperties", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.test.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_test", + "target": "packages_shared_src_vault_insertionpipeline_overlaysession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.test.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_test", + "target": "packages_shared_src_vault_insertionpipeline_overlaytarget", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.test.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_test_maketarget", + "target": "apps_extension_chromium_src_vault_autofill_committer_test_makepassingfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.test.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_test_maketarget", + "target": "apps_extension_chromium_src_vault_autofill_committer_test_makefield", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.test.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_test_makesession", + "target": "apps_extension_chromium_src_vault_autofill_committer_test_makeprofile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L915", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "apps_extension_chromium_src_vault_autofill_committer_checkboundingrectstable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L944", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "apps_extension_chromium_src_vault_autofill_committer_checkfingerprintvalid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L839", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "apps_extension_chromium_src_vault_autofill_committer_checkfocusable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L806", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "apps_extension_chromium_src_vault_autofill_committer_checknotdetached", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L880", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "apps_extension_chromium_src_vault_autofill_committer_checknothiddeninput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L860", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "apps_extension_chromium_src_vault_autofill_committer_checksameorigin", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L903", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "apps_extension_chromium_src_vault_autofill_committer_checksessionnotexpired", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L815", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "apps_extension_chromium_src_vault_autofill_committer_checkvisible", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L267", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "apps_extension_chromium_src_vault_autofill_committer_commitinsert", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L144", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "apps_extension_chromium_src_vault_autofill_committer_committelemetryevent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "apps_extension_chromium_src_vault_autofill_committer_devwritecanary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L727", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "apps_extension_chromium_src_vault_autofill_committer_dispatchfillevents", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L1020", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "apps_extension_chromium_src_vault_autofill_committer_emittelemetry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "apps_extension_chromium_src_vault_autofill_committer_finalvalidatetarget", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L189", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "apps_extension_chromium_src_vault_autofill_committer_finalvalidation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L995", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "apps_extension_chromium_src_vault_autofill_committer_makeerror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L766", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "apps_extension_chromium_src_vault_autofill_committer_runsafetychecks", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L1000", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "apps_extension_chromium_src_vault_autofill_committer_safetychecktoerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "apps_extension_chromium_src_vault_autofill_committer_setpopoverfillactive", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "apps_extension_chromium_src_vault_autofill_committer_setqsofillactive", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L171", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "apps_extension_chromium_src_vault_autofill_committer_settelemetryhook", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "apps_extension_chromium_src_vault_autofill_committer_setvalueresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L557", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "apps_extension_chromium_src_vault_autofill_committer_setvaluesafely", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "apps_extension_chromium_src_vault_autofill_committer_telemetryhook", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L665", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "apps_extension_chromium_src_vault_autofill_committer_trydirectassign", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L969", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "apps_extension_chromium_src_vault_autofill_committer_trydirectassignretry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L623", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "apps_extension_chromium_src_vault_autofill_committer_trynativesetter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L689", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "apps_extension_chromium_src_vault_autofill_committer_trysetattribute", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "apps_extension_chromium_src_vault_autofill_domfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "apps_extension_chromium_src_vault_autofill_domfingerprint_validatefingerprint", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "apps_extension_chromium_src_vault_autofill_haguard", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "apps_extension_chromium_src_vault_autofill_haguard_hacheck", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "apps_extension_chromium_src_vault_autofill_haguard_ishaenforced", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "apps_extension_chromium_src_vault_autofill_hardening", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "apps_extension_chromium_src_vault_autofill_hardening_emittelemetryevent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "apps_extension_chromium_src_vault_autofill_hardening_guardelement", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "apps_extension_chromium_src_vault_autofill_hardening_redacterror", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_checkmutationguard", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_hideoverlay", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_isoverlayvisible", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "apps_extension_chromium_src_vault_autofill_writeskillswitch", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "apps_extension_chromium_src_vault_autofill_writeskillswitch_arewritesdisabled", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "packages_shared_src_vault_insertionpipeline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "packages_shared_src_vault_insertionpipeline_blocked_input_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "packages_shared_src_vault_insertionpipeline_commiterror", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "packages_shared_src_vault_insertionpipeline_commiterrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "packages_shared_src_vault_insertionpipeline_commitfieldresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "packages_shared_src_vault_insertionpipeline_commitresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "packages_shared_src_vault_insertionpipeline_fingerprintvalidation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "packages_shared_src_vault_insertionpipeline_overlaysession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "packages_shared_src_vault_insertionpipeline_overlaytarget", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "packages_shared_src_vault_insertionpipeline_rect_tolerance_px", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "packages_shared_src_vault_insertionpipeline_safetycheck", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "packages_shared_src_vault_insertionpipeline_safetycheckname", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "packages_shared_src_vault_insertionpipeline_safetycheckresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer", + "target": "packages_shared_src_vault_insertionpipeline_valid_target_tags", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L761", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_rationale_761", + "target": "apps_extension_chromium_src_vault_autofill_committer", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fillpreview", + "target": "apps_extension_chromium_src_vault_autofill_committer", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_committer", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "apps_extension_chromium_src_vault_autofill_committer", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.test.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_test", + "target": "apps_extension_chromium_src_vault_autofill_committer", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/writeBoundary.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_writeboundary", + "target": "apps_extension_chromium_src_vault_autofill_committer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fillpreview", + "target": "apps_extension_chromium_src_vault_autofill_committer_setpopoverfillactive", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L312", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fillpreview_executepreviewfill", + "target": "apps_extension_chromium_src_vault_autofill_committer_setpopoverfillactive", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_committer_setpopoverfillactive", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L863", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_fillfromitem", + "target": "apps_extension_chromium_src_vault_autofill_committer_setpopoverfillactive", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "apps_extension_chromium_src_vault_autofill_committer_setqsofillactive", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L541", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_executeqsofill", + "target": "apps_extension_chromium_src_vault_autofill_committer_setqsofillactive" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_devwritecanary", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_devwritecanary", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_isoverlayvisible", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L562", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_setvaluesafely", + "target": "apps_extension_chromium_src_vault_autofill_committer_devwritecanary", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_setvalueresult", + "target": "packages_shared_src_vault_insertionpipeline_commiterror", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_committer_setvalueresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/writeBoundary.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_writeboundary", + "target": "apps_extension_chromium_src_vault_autofill_committer_setvalueresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L151", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_committelemetryevent", + "target": "packages_shared_src_vault_insertionpipeline_commiterrorcode", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L158", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_committelemetryevent", + "target": "packages_shared_src_vault_insertionpipeline_safetycheckname", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_committer_committelemetryevent", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/writeBoundary.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_writeboundary", + "target": "apps_extension_chromium_src_vault_autofill_committer_committelemetryevent", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_committer_settelemetryhook", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/writeBoundary.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_writeboundary", + "target": "apps_extension_chromium_src_vault_autofill_committer_settelemetryhook", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_finalvalidation", + "target": "packages_shared_src_vault_insertionpipeline_commiterrorcode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L436", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_commitinsert", + "target": "apps_extension_chromium_src_vault_autofill_committer_finalvalidatetarget", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L238", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_finalvalidatetarget", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_checkmutationguard", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L329", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_commitinsert", + "target": "apps_extension_chromium_src_vault_autofill_committer_emittelemetry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L279", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_commitinsert", + "target": "apps_extension_chromium_src_vault_autofill_committer_makeerror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L364", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_commitinsert", + "target": "apps_extension_chromium_src_vault_autofill_committer_runsafetychecks", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L378", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_commitinsert", + "target": "apps_extension_chromium_src_vault_autofill_committer_safetychecktoerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L466", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_commitinsert", + "target": "apps_extension_chromium_src_vault_autofill_committer_setvaluesafely", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L473", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_commitinsert", + "target": "apps_extension_chromium_src_vault_autofill_committer_trydirectassignretry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L276", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_commitinsert", + "target": "apps_extension_chromium_src_vault_autofill_haguard_hacheck" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L304", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_commitinsert", + "target": "apps_extension_chromium_src_vault_autofill_haguard_ishaenforced" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L280", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_commitinsert", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L307", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_commitinsert", + "target": "apps_extension_chromium_src_vault_autofill_hardening_emittelemetryevent" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L407", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_commitinsert", + "target": "apps_extension_chromium_src_vault_autofill_hardening_guardelement" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L323", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_commitinsert", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_checkmutationguard" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L308", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_commitinsert", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_hideoverlay" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L302", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_commitinsert", + "target": "apps_extension_chromium_src_vault_autofill_writeskillswitch_arewritesdisabled" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_committer_commitinsert", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "apps_extension_chromium_src_vault_autofill_committer_commitinsert", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L546", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_executeqsofill", + "target": "apps_extension_chromium_src_vault_autofill_committer_commitinsert" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.test.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_test", + "target": "apps_extension_chromium_src_vault_autofill_committer_commitinsert", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/writeBoundary.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_writeboundary", + "target": "apps_extension_chromium_src_vault_autofill_committer_commitinsert", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L584", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_setvaluesafely", + "target": "apps_extension_chromium_src_vault_autofill_committer_dispatchfillevents", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L570", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_setvaluesafely", + "target": "apps_extension_chromium_src_vault_autofill_committer_makeerror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L589", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_setvaluesafely", + "target": "apps_extension_chromium_src_vault_autofill_committer_trydirectassign", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L582", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_setvaluesafely", + "target": "apps_extension_chromium_src_vault_autofill_committer_trynativesetter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L596", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_setvaluesafely", + "target": "apps_extension_chromium_src_vault_autofill_committer_trysetattribute", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fillpreview", + "target": "apps_extension_chromium_src_vault_autofill_committer_setvaluesafely", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L318", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fillpreview_executepreviewfill", + "target": "apps_extension_chromium_src_vault_autofill_committer_setvaluesafely", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_committer_setvaluesafely", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L975", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_fillfieldsfromvaultitem", + "target": "apps_extension_chromium_src_vault_autofill_committer_setvaluesafely" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.test.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_test", + "target": "apps_extension_chromium_src_vault_autofill_committer_setvaluesafely", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L975", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_trydirectassignretry", + "target": "apps_extension_chromium_src_vault_autofill_committer_dispatchfillevents", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L792", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_runsafetychecks", + "target": "apps_extension_chromium_src_vault_autofill_committer_checkboundingrectstable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L795", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_runsafetychecks", + "target": "apps_extension_chromium_src_vault_autofill_committer_checkfingerprintvalid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L780", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_runsafetychecks", + "target": "apps_extension_chromium_src_vault_autofill_committer_checkfocusable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L774", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_runsafetychecks", + "target": "apps_extension_chromium_src_vault_autofill_committer_checknotdetached", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L786", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_runsafetychecks", + "target": "apps_extension_chromium_src_vault_autofill_committer_checknothiddeninput", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L783", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_runsafetychecks", + "target": "apps_extension_chromium_src_vault_autofill_committer_checksameorigin", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L789", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_runsafetychecks", + "target": "apps_extension_chromium_src_vault_autofill_committer_checksessionnotexpired", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L777", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_runsafetychecks", + "target": "apps_extension_chromium_src_vault_autofill_committer_checkvisible", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_committer_runsafetychecks", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/writeBoundary.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_writeboundary", + "target": "apps_extension_chromium_src_vault_autofill_committer_runsafetychecks", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L884", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_checknothiddeninput", + "target": "packages_shared_src_vault_insertionpipeline_blocked_input_types" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L928", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_checkboundingrectstable", + "target": "apps_extension_chromium_src_vault_autofill_domfingerprint_roundtogrid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L948", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_checkfingerprintvalid", + "target": "apps_extension_chromium_src_vault_autofill_domfingerprint_validatefingerprint", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/committer.ts", + "source_location": "L981", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_committer_trydirectassignretry", + "target": "apps_extension_chromium_src_vault_autofill_committer_makeerror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L263", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_credentialstore", + "target": "apps_extension_chromium_src_vault_autofill_credentialstore_addtoneversavelist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L534", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_credentialstore", + "target": "apps_extension_chromium_src_vault_autofill_credentialstore_buildselector", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L156", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_credentialstore", + "target": "apps_extension_chromium_src_vault_autofill_credentialstore_createcredential", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_credentialstore", + "target": "apps_extension_chromium_src_vault_autofill_credentialstore_credentialsaveresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L494", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_credentialstore", + "target": "apps_extension_chromium_src_vault_autofill_credentialstore_detectsubmitbuttonselector", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L465", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_credentialstore", + "target": "apps_extension_chromium_src_vault_autofill_credentialstore_domainmatches", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_credentialstore", + "target": "apps_extension_chromium_src_vault_autofill_credentialstore_executecredentialsave", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L477", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_credentialstore", + "target": "apps_extension_chromium_src_vault_autofill_credentialstore_extractfieldvalue", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_credentialstore", + "target": "apps_extension_chromium_src_vault_autofill_credentialstore_findexistingcredentials", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L407", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_credentialstore", + "target": "apps_extension_chromium_src_vault_autofill_credentialstore_findmatchingitemsfordomain", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L290", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_credentialstore", + "target": "apps_extension_chromium_src_vault_autofill_credentialstore_getneversavelist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L255", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_credentialstore", + "target": "apps_extension_chromium_src_vault_autofill_credentialstore_isneversavedomain", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L327", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_credentialstore", + "target": "apps_extension_chromium_src_vault_autofill_credentialstore_remapitemdomain", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L282", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_credentialstore", + "target": "apps_extension_chromium_src_vault_autofill_credentialstore_removefromneversavelist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L203", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_credentialstore", + "target": "apps_extension_chromium_src_vault_autofill_credentialstore_updatecredential", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L303", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_credentialstore", + "target": "apps_extension_chromium_src_vault_autofill_credentialstore_writeneversavelist", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_credentialstore", + "target": "apps_extension_chromium_src_vault_autofill_savebar", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_credentialstore", + "target": "apps_extension_chromium_src_vault_autofill_savebar_existingmatch", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_credentialstore", + "target": "apps_extension_chromium_src_vault_autofill_savebar_savedecision", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_credentialstore", + "target": "apps_extension_chromium_src_vault_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_credentialstore", + "target": "apps_extension_chromium_src_vault_types_field", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_credentialstore", + "target": "apps_extension_chromium_src_vault_types_vaultitem", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_credentialstore", + "target": "packages_shared_src_vault_insertionpipeline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_credentialstore", + "target": "packages_shared_src_vault_insertionpipeline_extractedcredentials", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_credentialstore", + "target": "packages_shared_src_vault_originpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_credentialstore", + "target": "packages_shared_src_vault_originpolicy_matchorigin", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_credentialstore", + "target": "packages_shared_src_vault_originpolicy_normalizetoorigin", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_credentialstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_credentialstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_credentialstore_findexistingcredentials", + "target": "apps_extension_chromium_src_vault_autofill_credentialstore_domainmatches", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_credentialstore_findexistingcredentials", + "target": "apps_extension_chromium_src_vault_autofill_credentialstore_extractfieldvalue", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_credentialstore_findexistingcredentials", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_credentialstore_credentialsaveresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_credentialstore_executecredentialsave", + "target": "apps_extension_chromium_src_vault_autofill_credentialstore_addtoneversavelist", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_credentialstore_executecredentialsave", + "target": "apps_extension_chromium_src_vault_autofill_credentialstore_createcredential", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_credentialstore_executecredentialsave", + "target": "apps_extension_chromium_src_vault_autofill_credentialstore_updatecredential", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_credentialstore_executecredentialsave", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_credentialstore_createcredential", + "target": "apps_extension_chromium_src_vault_autofill_credentialstore_detectsubmitbuttonselector", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L165", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_credentialstore_createcredential", + "target": "packages_shared_src_vault_originpolicy_normalizetoorigin", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L256", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_credentialstore_isneversavedomain", + "target": "apps_extension_chromium_src_vault_autofill_credentialstore_getneversavelist", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_credentialstore_isneversavedomain", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L264", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_credentialstore_addtoneversavelist", + "target": "apps_extension_chromium_src_vault_autofill_credentialstore_getneversavelist", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L275", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_credentialstore_addtoneversavelist", + "target": "apps_extension_chromium_src_vault_autofill_credentialstore_writeneversavelist", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_credentialstore_addtoneversavelist", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L283", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_credentialstore_removefromneversavelist", + "target": "apps_extension_chromium_src_vault_autofill_credentialstore_getneversavelist", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L286", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_credentialstore_removefromneversavelist", + "target": "apps_extension_chromium_src_vault_autofill_credentialstore_writeneversavelist", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_credentialstore_removefromneversavelist", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L337", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_credentialstore_remapitemdomain", + "target": "packages_shared_src_vault_originpolicy_normalizetoorigin" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_credentialstore_remapitemdomain", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_credentialstore_remapitemdomain", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L855", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_fillfromitem", + "target": "apps_extension_chromium_src_vault_autofill_credentialstore_remapitemdomain", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L417", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_credentialstore_findmatchingitemsfordomain", + "target": "apps_extension_chromium_src_vault_autofill_credentialstore_domainmatches", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_credentialstore_findmatchingitemsfordomain", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L467", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_credentialstore_domainmatches", + "target": "packages_shared_src_vault_originpolicy_matchorigin", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/credentialStore.ts", + "source_location": "L503", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_credentialstore_detectsubmitbuttonselector", + "target": "apps_extension_chromium_src_vault_autofill_credentialstore_buildselector", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_credentialstore_detectsubmitbuttonselector", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_credentialstore_detectsubmitbuttonselector", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L853", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_fillfromitem", + "target": "apps_extension_chromium_src_vault_autofill_credentialstore_detectsubmitbuttonselector", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L254", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultadapter", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_addtodvdenylist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultadapter", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_buildfieldmap", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultadapter", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_categorytoprofiletype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultadapter", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_categorytosection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultadapter", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_datavaultprofile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultadapter", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_datavaultprofilesummary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultadapter", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_datavaultprofiletype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultadapter", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_dv_categories", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultadapter", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_getdatavaultprofile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L204", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultadapter", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_getlastusedprofileid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L238", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultadapter", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_isdvdenylisted", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultadapter", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_listdatavaultprofiles", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L296", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultadapter", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_normalizeorigin", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L309", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultadapter", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_parselegacydob", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L275", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultadapter", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_removefromdvdenylist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L220", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultadapter", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_setlastusedprofileid", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultadapter", + "target": "apps_extension_chromium_src_vault_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultadapter", + "target": "apps_extension_chromium_src_vault_types_field", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultadapter", + "target": "apps_extension_chromium_src_vault_types_vaultitem", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultadapter", + "target": "packages_shared_src_vault_fieldtaxonomy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultadapter", + "target": "packages_shared_src_vault_fieldtaxonomy_fieldkind", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultadapter", + "target": "packages_shared_src_vault_fieldtaxonomy_legacy_key_map", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultadapter", + "target": "packages_shared_src_vault_fieldtaxonomy_vaultsection", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L250", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_datavaultprofiletype", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L260", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_datavaultprofiletype", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultadapter_datavaultprofilesummary", + "target": "packages_shared_src_vault_fieldtaxonomy_vaultsection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_datavaultprofilesummary", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L260", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_datavaultprofilesummary", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultadapter_datavaultprofile", + "target": "packages_shared_src_vault_fieldtaxonomy_fieldkind", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultadapter_datavaultprofile", + "target": "packages_shared_src_vault_fieldtaxonomy_vaultsection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_datavaultprofile", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L260", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_datavaultprofile", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultadapter_listdatavaultprofiles", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_dv_categories" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultadapter_getdatavaultprofile", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_categorytoprofiletype", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultadapter_listdatavaultprofiles", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_categorytoprofiletype", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultadapter_getdatavaultprofile", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_categorytosection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultadapter_listdatavaultprofiles", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_categorytosection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_listdatavaultprofiles", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L367", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_initdatavault", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_listdatavaultprofiles" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L444", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_pollvaultstatus", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_listdatavaultprofiles", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L559", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_processscanfordatavault", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_listdatavaultprofiles" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_listdatavaultprofiles", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L222", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup_loadprofiles", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_listdatavaultprofiles", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L250", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_listdatavaultprofiles", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultadapter_getdatavaultprofile", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_buildfieldmap", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_getdatavaultprofile", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L690", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_loaddefaultprofilefields", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_getdatavaultprofile", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_getdatavaultprofile", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L272", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup_loadprofile", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_getdatavaultprofile", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L250", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_getdatavaultprofile", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L168", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultadapter_buildfieldmap", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_parselegacydob", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L250", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_buildfieldmap", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L210", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultadapter_getlastusedprofileid", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_normalizeorigin", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_getlastusedprofileid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L676", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_loaddefaultprofilefields", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_getlastusedprofileid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_getlastusedprofileid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L242", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup_loadprofiles", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_getlastusedprofileid", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L250", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_getlastusedprofileid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L226", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultadapter_setlastusedprofileid", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_normalizeorigin", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_setlastusedprofileid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L515", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup_handlefillall", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_setlastusedprofileid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L488", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup_handlefillsingle", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_setlastusedprofileid", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L250", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_setlastusedprofileid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L246", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultadapter_isdvdenylisted", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_normalizeorigin", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_isdvdenylisted", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L604", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_handledvspanavigation", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_isdvdenylisted" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L354", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_initdatavault", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_isdvdenylisted" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L250", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_isdvdenylisted", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L262", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultadapter_addtodvdenylist", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_normalizeorigin", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_addtodvdenylist", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L524", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup_handledeny", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_addtodvdenylist", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L250", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_addtodvdenylist", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts", + "source_location": "L283", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultadapter_removefromdvdenylist", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_normalizeorigin", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L250", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_datavaultadapter_removefromdvdenylist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultFillEngine.ts", + "source_location": "L359", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultfillengine", + "target": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_dispatchfillevents", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultFillEngine.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultfillengine", + "target": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_fillallmatchedfields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultFillEngine.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultfillengine", + "target": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_fillallresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultFillEngine.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultfillengine", + "target": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_fillfieldresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultFillEngine.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultfillengine", + "target": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_filloptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultFillEngine.ts", + "source_location": "L388", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultfillengine", + "target": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_fillselectelement", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultFillEngine.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultfillengine", + "target": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_fillsinglefield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultFillEngine.ts", + "source_location": "L371", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultfillengine", + "target": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_focusbeforefill", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultFillEngine.ts", + "source_location": "L429", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultfillengine", + "target": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_getelementvalue", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultFillEngine.ts", + "source_location": "L283", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultfillengine", + "target": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_resolvecomposedvalue", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultFillEngine.ts", + "source_location": "L232", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultfillengine", + "target": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_revalidateelement", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultFillEngine.ts", + "source_location": "L215", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultfillengine", + "target": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_revalidationresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultFillEngine.ts", + "source_location": "L333", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultfillengine", + "target": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_setnativevalue", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultFillEngine.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultfillengine", + "target": "packages_shared_src_vault_fieldtaxonomy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultFillEngine.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultfillengine", + "target": "packages_shared_src_vault_fieldtaxonomy_fieldkind", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultFillEngine.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultfillengine", + "target": "packages_shared_src_vault_insertionpipeline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultFillEngine.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultfillengine", + "target": "packages_shared_src_vault_insertionpipeline_fieldcandidate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "target": "apps_extension_chromium_src_vault_autofill_datavaultfillengine", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L281", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_datavaultfillengine", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L285", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_fillfieldresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultFillEngine.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_fillallresult", + "target": "packages_shared_src_vault_fieldtaxonomy_fieldkind", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "target": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_fillallresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L285", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_fillallresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L285", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_filloptions", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultFillEngine.ts", + "source_location": "L195", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_fillallmatchedfields", + "target": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_fillsinglefield", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultFillEngine.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_fillsinglefield", + "target": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_dispatchfillevents", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultFillEngine.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_fillsinglefield", + "target": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_fillselectelement", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultFillEngine.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_fillsinglefield", + "target": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_focusbeforefill", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultFillEngine.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_fillsinglefield", + "target": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_getelementvalue", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultFillEngine.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_fillsinglefield", + "target": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_revalidateelement", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultFillEngine.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_fillsinglefield", + "target": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_setnativevalue", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "target": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_fillsinglefield", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L485", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup_handlefillsingle", + "target": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_fillsinglefield", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L281", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_fillsinglefield", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultFillEngine.ts", + "source_location": "L183", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_fillallmatchedfields", + "target": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_resolvecomposedvalue", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "target": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_fillallmatchedfields", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L510", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup_handlefillall", + "target": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_fillallmatchedfields", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L281", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_fillallmatchedfields", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultFillEngine.ts", + "source_location": "L395", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_fillselectelement", + "target": "apps_extension_chromium_src_vault_autofill_datavaultfillengine_dispatchfillevents", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultIcons.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaulticons", + "target": "apps_extension_chromium_src_vault_autofill_datavaulticons_availablekinds", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultIcons.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaulticons", + "target": "apps_extension_chromium_src_vault_autofill_datavaulticons_clearalldvicons", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultIcons.ts", + "source_location": "L183", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaulticons", + "target": "apps_extension_chromium_src_vault_autofill_datavaulticons_createdvicon", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultIcons.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaulticons", + "target": "apps_extension_chromium_src_vault_autofill_datavaulticons_dviconclickhandler", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultIcons.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaulticons", + "target": "apps_extension_chromium_src_vault_autofill_datavaulticons_dviconhandle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultIcons.ts", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaulticons", + "target": "apps_extension_chromium_src_vault_autofill_datavaulticons_getdviconcount", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultIcons.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaulticons", + "target": "apps_extension_chromium_src_vault_autofill_datavaulticons_iconbtns", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultIcons.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaulticons", + "target": "apps_extension_chromium_src_vault_autofill_datavaulticons_iconelements", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultIcons.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaulticons", + "target": "apps_extension_chromium_src_vault_autofill_datavaulticons_icons", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultIcons.ts", + "source_location": "L276", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaulticons", + "target": "apps_extension_chromium_src_vault_autofill_datavaulticons_positiondvicon", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultIcons.ts", + "source_location": "L311", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaulticons", + "target": "apps_extension_chromium_src_vault_autofill_datavaulticons_reposall", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultIcons.ts", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaulticons", + "target": "apps_extension_chromium_src_vault_autofill_datavaulticons_setdviconmatchdata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultIcons.ts", + "source_location": "L165", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaulticons", + "target": "apps_extension_chromium_src_vault_autofill_datavaulticons_setdvprofiledataavailable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultIcons.ts", + "source_location": "L296", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaulticons", + "target": "apps_extension_chromium_src_vault_autofill_datavaulticons_startpositionwatchdog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultIcons.ts", + "source_location": "L318", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaulticons", + "target": "apps_extension_chromium_src_vault_autofill_datavaulticons_stoppositionwatchdog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultIcons.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaulticons", + "target": "apps_extension_chromium_src_vault_autofill_datavaulticons_syncdvfieldicons", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultIcons.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaulticons", + "target": "packages_shared_src_vault_fieldtaxonomy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultIcons.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaulticons", + "target": "packages_shared_src_vault_fieldtaxonomy_fieldkind", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultIcons.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaulticons", + "target": "packages_shared_src_vault_insertionpipeline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultIcons.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaulticons", + "target": "packages_shared_src_vault_insertionpipeline_fieldcandidate", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultIcons.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaulticons_rationale_8", + "target": "apps_extension_chromium_src_vault_autofill_datavaulticons", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_datavaulticons", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L266", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_datavaulticons", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultIcons.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaulticons_dviconhandle", + "target": "packages_shared_src_vault_insertionpipeline_fieldcandidate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultIcons.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaulticons_syncdvfieldicons", + "target": "apps_extension_chromium_src_vault_autofill_datavaulticons_createdvicon", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultIcons.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaulticons_syncdvfieldicons", + "target": "apps_extension_chromium_src_vault_autofill_datavaulticons_startpositionwatchdog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_datavaulticons_syncdvfieldicons", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L553", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_processscanfordatavault", + "target": "apps_extension_chromium_src_vault_autofill_datavaulticons_syncdvfieldicons" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L266", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_datavaulticons_syncdvfieldicons", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultIcons.ts", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaulticons_clearalldvicons", + "target": "apps_extension_chromium_src_vault_autofill_datavaulticons_stoppositionwatchdog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_datavaulticons_clearalldvicons", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L654", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_handledviconclick", + "target": "apps_extension_chromium_src_vault_autofill_datavaulticons_clearalldvicons", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L601", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_handledvspanavigation", + "target": "apps_extension_chromium_src_vault_autofill_datavaulticons_clearalldvicons" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L518", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_processscanfordatavault", + "target": "apps_extension_chromium_src_vault_autofill_datavaulticons_clearalldvicons" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L584", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_teardowndatavault", + "target": "apps_extension_chromium_src_vault_autofill_datavaulticons_clearalldvicons" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L266", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_datavaulticons_clearalldvicons", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L266", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_datavaulticons_getdviconcount", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_datavaulticons_setdviconmatchdata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L384", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_initdatavault", + "target": "apps_extension_chromium_src_vault_autofill_datavaulticons_setdviconmatchdata" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L452", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_pollvaultstatus", + "target": "apps_extension_chromium_src_vault_autofill_datavaulticons_setdviconmatchdata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L572", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_processscanfordatavault", + "target": "apps_extension_chromium_src_vault_autofill_datavaulticons_setdviconmatchdata" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L266", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_datavaulticons_setdviconmatchdata", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L266", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_datavaulticons_setdvprofiledataavailable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultIcons.ts", + "source_location": "L259", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaulticons_createdvicon", + "target": "apps_extension_chromium_src_vault_autofill_datavaulticons_positiondvicon", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultIcons.ts", + "source_location": "L314", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaulticons_reposall", + "target": "apps_extension_chromium_src_vault_autofill_datavaulticons_positiondvicon", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultIcons.ts", + "source_location": "L299", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaulticons_startpositionwatchdog", + "target": "apps_extension_chromium_src_vault_autofill_datavaulticons_reposall", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L181", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_applycooccurrenceboosts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L294", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_applynlpbooster", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L239", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_applysitelearningboosts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L707", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_cachedvcandidates", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_co_occurrence_groups", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_dv_allowed_contexts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_dv_field_sections", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_filterdvcandidates", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L716", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_getlastdvcandidates", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L619", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_handledviconclick", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L600", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_handledvspanavigation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L348", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_initdatavault", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L704", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_lastdvcandidates", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L723", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_lastprocesseddvcandidates", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L673", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_loaddefaultprofilefields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L428", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_pollvaultstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L475", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_processscanfordatavault", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_profileavailablekinds", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L420", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_schedulenextpoll", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L407", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_startvaultpoll", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L413", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_stopvaultpoll", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L583", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_teardowndatavault", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_vault_poll_delays", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_hidedvpopup", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_isdvpopupvisible", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_showdvpopup", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_dvnlpbooster", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_extracttextfeatures", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_isnlpboosterenabled", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_nlp_booster_weight", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_semanticclassify", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_buildfieldfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_fieldfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_learned_confidence_boost", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_lookuplearnedmappingsbatch", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_scanresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_hardening", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "apps_extension_chromium_src_vault_autofill_hardening_emittelemetryevent", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "packages_shared_src_vault_fieldtaxonomy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "packages_shared_src_vault_fieldtaxonomy_fieldkind", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "packages_shared_src_vault_insertionpipeline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "packages_shared_src_vault_insertionpipeline_fieldcandidate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "target": "packages_shared_src_vault_insertionpipeline_matchresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L242", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_filterdvcandidates", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_dv_field_sections" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L493", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_processscanfordatavault", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_dv_field_sections" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L719", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_getlastdvcandidates", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_filterdvcandidates", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L530", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_processscanfordatavault", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_applycooccurrenceboosts", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L248", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_applysitelearningboosts", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_buildfieldfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L254", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_applysitelearningboosts", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_lookuplearnedmappingsbatch", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L524", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_processscanfordatavault", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_applysitelearningboosts", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L302", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_applynlpbooster", + "target": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_extracttextfeatures", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L295", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_applynlpbooster", + "target": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_isnlpboosterenabled", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L308", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_applynlpbooster", + "target": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_semanticclassify", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L534", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_processscanfordatavault", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_applynlpbooster", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L370", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_initdatavault", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_loaddefaultprofilefields", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L390", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_initdatavault", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_startvaultpoll", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L360", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_initdatavault", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L242", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_initdatavault", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L410", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_startvaultpoll", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_schedulenextpoll", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L408", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_startvaultpoll", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_stopvaultpoll", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L563", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_processscanfordatavault", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_stopvaultpoll", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L586", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_teardowndatavault", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_stopvaultpoll", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L425", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_schedulenextpoll", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_pollvaultstatus", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L447", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_pollvaultstatus", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_loaddefaultprofilefields", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L448", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_pollvaultstatus", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L553", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_processscanfordatavault", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_handledviconclick", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L562", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_processscanfordatavault", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_loaddefaultprofilefields", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L574", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_processscanfordatavault", + "target": "apps_extension_chromium_src_vault_autofill_hardening_emittelemetryevent" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L242", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_processscanfordatavault", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L585", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_teardowndatavault", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_hidedvpopup" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L242", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_teardowndatavault", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L602", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_handledvspanavigation", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_hidedvpopup" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L242", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_handledvspanavigation", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L628", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_handledviconclick", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_getlastdvcandidates", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L625", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_handledviconclick", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_hidedvpopup", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L624", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_handledviconclick", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_isdvpopupvisible", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L631", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_handledviconclick", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_showdvpopup", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L639", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_handledviconclick", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts", + "source_location": "L640", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_handledviconclick", + "target": "apps_extension_chromium_src_vault_autofill_hardening_emittelemetryevent", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L242", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_datavaultorchestrator_cachedvcandidates", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L703", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_badge_icons", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L739", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_buildcss", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L546", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_buildmatchedfieldpreview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L659", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_buildremapoptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_createpopupdom", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L530", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_dismisspopup", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_dvpopupoptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_dvpopupresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L727", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_escapehtml", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L539", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_fieldpreview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L642", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_filtercandidatesbygroup", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L593", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_formatfieldlabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L609", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_getformgroup", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L522", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_handledeny", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L495", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_handlefillall", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L475", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_handlefillsingle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L678", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_handleremap", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_hidedvpopup", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_isdvpopupvisible", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L263", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_loadprofile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L210", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_loadprofiles", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L599", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_maskpreview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L183", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_positionpopup", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L713", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_profile_type_labels", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_profiles", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L709", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_profiletypebadgeicon", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L719", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_profiletypelabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L325", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_rendercontent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L295", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_renderempty", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L310", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_rendererror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L291", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_renderloading", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_showdvpopup", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L404", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_wireevents", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_buildfieldfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_savelearned", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "target": "packages_shared_src_vault_fieldtaxonomy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "target": "packages_shared_src_vault_fieldtaxonomy_field_by_kind", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "target": "packages_shared_src_vault_fieldtaxonomy_fieldkind", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "target": "packages_shared_src_vault_fieldtaxonomy_fillable_fields", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "target": "packages_shared_src_vault_insertionpipeline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "target": "packages_shared_src_vault_insertionpipeline_fieldcandidate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L274", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup_dvpopupoptions", + "target": "packages_shared_src_vault_insertionpipeline_fieldcandidate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L279", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_dvpopupoptions", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L279", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_dvpopupresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup_showdvpopup", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_createpopupdom", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup_showdvpopup", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_hidedvpopup", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup_showdvpopup", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_loadprofiles", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L274", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_showdvpopup", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L532", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup_dismisspopup", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_hidedvpopup", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L527", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup_handledeny", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_hidedvpopup", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L519", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup_handlefillall", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_hidedvpopup", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L492", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup_handlefillsingle", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_hidedvpopup", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L696", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup_handleremap", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_hidedvpopup", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L274", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_hidedvpopup", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L274", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_isdvpopupvisible", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L152", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup_createpopupdom", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_buildcss", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L166", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup_createpopupdom", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_dismisspopup", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L161", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup_createpopupdom", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_positionpopup", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L157", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup_createpopupdom", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_renderloading", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L250", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup_loadprofiles", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_loadprofile", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L237", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup_loadprofiles", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_renderempty", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L232", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup_loadprofiles", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_rendererror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L274", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup_loadprofile", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_rendercontent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L284", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup_loadprofile", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_rendererror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L267", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup_loadprofile", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_renderloading", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L415", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup_wireevents", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_loadprofile", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L335", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup_rendercontent", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_buildmatchedfieldpreview", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L390", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup_rendercontent", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_buildremapoptions", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L359", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup_rendercontent", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_escapehtml", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L349", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup_rendercontent", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_profiletypebadgeicon", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L350", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup_rendercontent", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_profiletypelabel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L397", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup_rendercontent", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_wireevents", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L466", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup_wireevents", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_handledeny", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L444", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup_wireevents", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_handlefillall", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L434", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup_wireevents", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_handlefillsingle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L455", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup_wireevents", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_handleremap", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L501", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup_handlefillall", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_filtercandidatesbygroup", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L500", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup_handlefillall", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_getformgroup", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L540", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup_fieldpreview", + "target": "packages_shared_src_vault_fieldtaxonomy_fieldkind", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L576", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup_buildmatchedfieldpreview", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_formatfieldlabel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L585", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup_buildmatchedfieldpreview", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_maskpreview", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L575", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup_buildmatchedfieldpreview", + "target": "packages_shared_src_vault_fieldtaxonomy_field_by_kind" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L569", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup_buildmatchedfieldpreview", + "target": "packages_shared_src_vault_fieldtaxonomy_fieldkind" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L667", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup_buildremapoptions", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_formatfieldlabel", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L594", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup_formatfieldlabel", + "target": "packages_shared_src_vault_fieldtaxonomy_fieldkind" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L669", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup_buildremapoptions", + "target": "apps_extension_chromium_src_vault_autofill_datavaultpopup_escapehtml", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L680", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup_handleremap", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_buildfieldfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts", + "source_location": "L685", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_datavaultpopup_handleremap", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_savelearned", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/domFingerprint.ts", + "source_location": "L169", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_domfingerprint", + "target": "apps_extension_chromium_src_vault_autofill_domfingerprint_buildparentchain", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/domFingerprint.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_domfingerprint", + "target": "apps_extension_chromium_src_vault_autofill_domfingerprint_captureproperties", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/domFingerprint.ts", + "source_location": "L193", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_domfingerprint", + "target": "apps_extension_chromium_src_vault_autofill_domfingerprint_getformaction", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/domFingerprint.ts", + "source_location": "L184", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_domfingerprint", + "target": "apps_extension_chromium_src_vault_autofill_domfingerprint_getframeorigin", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/domFingerprint.ts", + "source_location": "L202", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_domfingerprint", + "target": "apps_extension_chromium_src_vault_autofill_domfingerprint_hashproperties", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/domFingerprint.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_domfingerprint", + "target": "apps_extension_chromium_src_vault_autofill_domfingerprint_roundtogrid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/domFingerprint.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_domfingerprint", + "target": "apps_extension_chromium_src_vault_autofill_domfingerprint_takefingerprint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/domFingerprint.ts", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_domfingerprint", + "target": "apps_extension_chromium_src_vault_autofill_domfingerprint_validatefingerprint", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/domFingerprint.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_domfingerprint", + "target": "packages_shared_src_vault_insertionpipeline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/domFingerprint.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_domfingerprint", + "target": "packages_shared_src_vault_insertionpipeline_domfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/domFingerprint.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_domfingerprint", + "target": "packages_shared_src_vault_insertionpipeline_domfingerprintproperties", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/domFingerprint.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_domfingerprint", + "target": "packages_shared_src_vault_insertionpipeline_fingerprint_max_age_ms", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/domFingerprint.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_domfingerprint", + "target": "packages_shared_src_vault_insertionpipeline_fingerprintinvalidreason", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/domFingerprint.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_domfingerprint", + "target": "packages_shared_src_vault_insertionpipeline_fingerprintvalidation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/domFingerprint.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_domfingerprint", + "target": "packages_shared_src_vault_insertionpipeline_rect_tolerance_px", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_domfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "apps_extension_chromium_src_vault_autofill_domfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "apps_extension_chromium_src_vault_autofill_domfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.test.ts", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_test", + "target": "apps_extension_chromium_src_vault_autofill_domfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/domFingerprint.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_domfingerprint_takefingerprint", + "target": "apps_extension_chromium_src_vault_autofill_domfingerprint_captureproperties", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/domFingerprint.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_domfingerprint_takefingerprint", + "target": "apps_extension_chromium_src_vault_autofill_domfingerprint_hashproperties", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_domfingerprint_takefingerprint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "apps_extension_chromium_src_vault_autofill_domfingerprint_takefingerprint", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L483", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_executeqsofill", + "target": "apps_extension_chromium_src_vault_autofill_domfingerprint_takefingerprint" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "apps_extension_chromium_src_vault_autofill_domfingerprint_takefingerprint", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L341", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_handlewebmcpfillpreviewrequest", + "target": "apps_extension_chromium_src_vault_autofill_domfingerprint_takefingerprint" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.test.ts", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_test", + "target": "apps_extension_chromium_src_vault_autofill_domfingerprint_takefingerprint", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/domFingerprint.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_domfingerprint_captureproperties", + "target": "apps_extension_chromium_src_vault_autofill_domfingerprint_buildparentchain", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/domFingerprint.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_domfingerprint_captureproperties", + "target": "apps_extension_chromium_src_vault_autofill_domfingerprint_getformaction", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/domFingerprint.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_domfingerprint_captureproperties", + "target": "apps_extension_chromium_src_vault_autofill_domfingerprint_getframeorigin", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/domFingerprint.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_domfingerprint_captureproperties", + "target": "apps_extension_chromium_src_vault_autofill_domfingerprint_roundtogrid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/domFingerprint.ts", + "source_location": "L144", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_domfingerprint_validatefingerprint", + "target": "apps_extension_chromium_src_vault_autofill_domfingerprint_captureproperties", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_domfingerprint_captureproperties", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/domFingerprint.ts", + "source_location": "L139", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_domfingerprint_validatefingerprint", + "target": "apps_extension_chromium_src_vault_autofill_domfingerprint_getframeorigin", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/domFingerprint.ts", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_domfingerprint_validatefingerprint", + "target": "apps_extension_chromium_src_vault_autofill_domfingerprint_hashproperties", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/domFingerprint.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_domfingerprint_validatefingerprint", + "target": "apps_extension_chromium_src_vault_autofill_domfingerprint_roundtogrid", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_domfingerprint_validatefingerprint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvNlpBooster.ts", + "source_location": "L210", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvnlpbooster", + "target": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_extracttextfeatures", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvNlpBooster.ts", + "source_location": "L270", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvnlpbooster", + "target": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_findnearbybuttontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvNlpBooster.ts", + "source_location": "L254", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvnlpbooster", + "target": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_findnearbyheading", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvNlpBooster.ts", + "source_location": "L298", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvnlpbooster", + "target": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_getpagelanguage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvNlpBooster.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvnlpbooster", + "target": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_isnlpboosterenabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvNlpBooster.ts", + "source_location": "L157", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvnlpbooster", + "target": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_nlp_booster_weight", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvNlpBooster.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvnlpbooster", + "target": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_nlpbackend", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvNlpBooster.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvnlpbooster", + "target": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_nlpclassifyresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvNlpBooster.ts", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvnlpbooster", + "target": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_registernlpbackend", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvNlpBooster.ts", + "source_location": "L285", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvnlpbooster", + "target": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_resolveariadescription", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvNlpBooster.ts", + "source_location": "L230", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvnlpbooster", + "target": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_resolvelabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvNlpBooster.ts", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvnlpbooster", + "target": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_semanticclassify", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvNlpBooster.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvnlpbooster", + "target": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_setnlpboosterenabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvNlpBooster.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvnlpbooster", + "target": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_textfeatures", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvNlpBooster.ts", + "source_location": "L139", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvnlpbooster", + "target": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_unregisternlpbackend", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvNlpBooster.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvnlpbooster", + "target": "packages_shared_src_vault_fieldtaxonomy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvNlpBooster.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvnlpbooster", + "target": "packages_shared_src_vault_fieldtaxonomy_fieldkind", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L309", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_dvnlpbooster", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L318", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_textfeatures", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvNlpBooster.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_nlpclassifyresult", + "target": "packages_shared_src_vault_fieldtaxonomy_fieldkind", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L318", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_nlpclassifyresult", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvNlpBooster.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_nlpbackend", + "target": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_nlpbackend_classify", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvNlpBooster.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_nlpbackend", + "target": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_nlpbackend_isready", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L318", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_nlpbackend", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvNlpBooster.ts", + "source_location": "L192", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_semanticclassify", + "target": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_nlpbackend_classify", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvNlpBooster.ts", + "source_location": "L184", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_semanticclassify", + "target": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_nlpbackend_isready", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L309", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_setnlpboosterenabled", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L309", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_isnlpboosterenabled", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L309", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_registernlpbackend", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L309", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_unregisternlpbackend", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L309", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_nlp_booster_weight", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L309", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_semanticclassify", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvNlpBooster.ts", + "source_location": "L217", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_extracttextfeatures", + "target": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_findnearbybuttontext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvNlpBooster.ts", + "source_location": "L216", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_extracttextfeatures", + "target": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_findnearbyheading", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvNlpBooster.ts", + "source_location": "L222", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_extracttextfeatures", + "target": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_getpagelanguage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvNlpBooster.ts", + "source_location": "L218", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_extracttextfeatures", + "target": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_resolveariadescription", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvNlpBooster.ts", + "source_location": "L214", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_extracttextfeatures", + "target": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_resolvelabel", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L309", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_dvnlpbooster_extracttextfeatures", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvsitelearning", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_buildfieldfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L335", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvsitelearning", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_bumpusageasync", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L354", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvsitelearning", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_chromelocalremove", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L280", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvsitelearning", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_clearlearnedmappings", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L313", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvsitelearning", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_ensureorigininindex", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L413", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvsitelearning", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_fasthash", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvsitelearning", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_fieldfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvsitelearning", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_fingerprintmatchscore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L377", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvsitelearning", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_getformindex", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L272", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvsitelearning", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_getlearnedmappings", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvsitelearning", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_learned_confidence_boost", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvsitelearning", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_learnedmapping", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L289", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvsitelearning", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_loadoriginstore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L154", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvsitelearning", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_lookuplearnedmapping", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L183", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvsitelearning", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_lookuplearnedmappingsbatch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L368", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvsitelearning", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_normalizeorigin", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvsitelearning", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_originstore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L255", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvsitelearning", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_removelearned", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L387", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvsitelearning", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_resolverawlabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L221", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvsitelearning", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_savelearned", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L302", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvsitelearning", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_saveoriginstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvsitelearning", + "target": "packages_shared_src_vault_fieldtaxonomy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvsitelearning", + "target": "packages_shared_src_vault_fieldtaxonomy_fieldkind", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L292", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L303", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_fieldfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvsitelearning_learnedmapping", + "target": "packages_shared_src_vault_fieldtaxonomy_fieldkind", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L303", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_learnedmapping", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L292", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_learned_confidence_boost", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvsitelearning_buildfieldfingerprint", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_fasthash", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvsitelearning_buildfieldfingerprint", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_getformindex", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvsitelearning_buildfieldfingerprint", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_resolverawlabel", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L292", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_buildfieldfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L344", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvsitelearning_bumpusageasync", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_fingerprintmatchscore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L165", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvsitelearning_lookuplearnedmapping", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_fingerprintmatchscore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L196", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvsitelearning_lookuplearnedmappingsbatch", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_fingerprintmatchscore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L263", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvsitelearning_removelearned", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_fingerprintmatchscore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L230", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvsitelearning_savelearned", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_fingerprintmatchscore", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L292", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_fingerprintmatchscore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvsitelearning_lookuplearnedmapping", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_bumpusageasync", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L158", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvsitelearning_lookuplearnedmapping", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_loadoriginstore", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L292", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_lookuplearnedmapping", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L187", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvsitelearning_lookuplearnedmappingsbatch", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_loadoriginstore", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L292", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_lookuplearnedmappingsbatch", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L249", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvsitelearning_savelearned", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_ensureorigininindex", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L226", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvsitelearning_savelearned", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_loadoriginstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L248", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvsitelearning_savelearned", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_saveoriginstore", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L292", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_savelearned", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L259", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvsitelearning_removelearned", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_loadoriginstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L266", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvsitelearning_removelearned", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_saveoriginstore", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L292", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_removelearned", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L273", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvsitelearning_getlearnedmappings", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_loadoriginstore", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L292", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_getlearnedmappings", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L282", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvsitelearning_clearlearnedmappings", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_chromelocalremove", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L281", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvsitelearning_clearlearnedmappings", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_normalizeorigin", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L292", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_clearlearnedmappings", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L340", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvsitelearning_bumpusageasync", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_loadoriginstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L290", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvsitelearning_loadoriginstore", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_normalizeorigin", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L351", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvsitelearning_bumpusageasync", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_saveoriginstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L303", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvsitelearning_saveoriginstore", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_normalizeorigin", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L327", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvsitelearning_ensureorigininindex", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_chromelocalremove", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts", + "source_location": "L314", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_dvsitelearning_ensureorigininindex", + "target": "apps_extension_chromium_src_vault_autofill_dvsitelearning_normalizeorigin", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldIcons.ts", + "source_location": "L375", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldicons", + "target": "apps_extension_chromium_src_vault_autofill_fieldicons_buildiconcss", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldIcons.ts", + "source_location": "L137", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldicons", + "target": "apps_extension_chromium_src_vault_autofill_fieldicons_clearallfieldicons", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldIcons.ts", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldicons", + "target": "apps_extension_chromium_src_vault_autofill_fieldicons_createfieldicon", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldIcons.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldicons", + "target": "apps_extension_chromium_src_vault_autofill_fieldicons_fieldiconhandle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldIcons.ts", + "source_location": "L154", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldicons", + "target": "apps_extension_chromium_src_vault_autofill_fieldicons_getfieldiconcount", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldIcons.ts", + "source_location": "L192", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldicons", + "target": "apps_extension_chromium_src_vault_autofill_fieldicons_hasvaultmatch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldIcons.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldicons", + "target": "apps_extension_chromium_src_vault_autofill_fieldicons_iconbtns", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldIcons.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldicons", + "target": "apps_extension_chromium_src_vault_autofill_fieldicons_iconclickhandler", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldIcons.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldicons", + "target": "apps_extension_chromium_src_vault_autofill_fieldicons_iconelements", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldIcons.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldicons", + "target": "apps_extension_chromium_src_vault_autofill_fieldicons_icons", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldIcons.ts", + "source_location": "L277", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldicons", + "target": "apps_extension_chromium_src_vault_autofill_fieldicons_positionicon", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldIcons.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldicons", + "target": "apps_extension_chromium_src_vault_autofill_fieldicons_qsobtns", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldIcons.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldicons", + "target": "apps_extension_chromium_src_vault_autofill_fieldicons_qsoclickhandler", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldIcons.ts", + "source_location": "L166", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldicons", + "target": "apps_extension_chromium_src_vault_autofill_fieldicons_setfieldiconmatchstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldIcons.ts", + "source_location": "L183", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldicons", + "target": "apps_extension_chromium_src_vault_autofill_fieldicons_setqsobuttonvisible", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldIcons.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldicons", + "target": "apps_extension_chromium_src_vault_autofill_fieldicons_setqsoclickhandler", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldIcons.ts", + "source_location": "L304", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldicons", + "target": "apps_extension_chromium_src_vault_autofill_fieldicons_startpositionwatchdog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldIcons.ts", + "source_location": "L341", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldicons", + "target": "apps_extension_chromium_src_vault_autofill_fieldicons_stoppositionwatchdog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldIcons.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldicons", + "target": "apps_extension_chromium_src_vault_autofill_fieldicons_syncfieldicons", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldIcons.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldicons", + "target": "apps_extension_chromium_src_vault_autofill_hardening", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldIcons.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldicons", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldIcons.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldicons", + "target": "apps_extension_chromium_src_vault_autofill_overlaystyles", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldIcons.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldicons", + "target": "apps_extension_chromium_src_vault_autofill_overlaystyles_css_tokens", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldIcons.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldicons", + "target": "packages_shared_src_vault_insertionpipeline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldIcons.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldicons", + "target": "packages_shared_src_vault_insertionpipeline_fieldcandidate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_fieldicons", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldIcons.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldicons_fieldiconhandle", + "target": "packages_shared_src_vault_insertionpipeline_fieldcandidate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_fieldicons_fieldiconhandle", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_fieldicons_iconclickhandler", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_fieldicons_qsoclickhandler", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldIcons.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldicons_syncfieldicons", + "target": "apps_extension_chromium_src_vault_autofill_fieldicons_createfieldicon", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldIcons.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldicons_syncfieldicons", + "target": "apps_extension_chromium_src_vault_autofill_fieldicons_startpositionwatchdog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldIcons.ts", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldicons_syncfieldicons", + "target": "apps_extension_chromium_src_vault_autofill_fieldicons_stoppositionwatchdog", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_fieldicons_syncfieldicons", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_fieldicons_setqsoclickhandler", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldIcons.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldicons_clearallfieldicons", + "target": "apps_extension_chromium_src_vault_autofill_fieldicons_stoppositionwatchdog", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_fieldicons_clearallfieldicons", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_fieldicons_getfieldiconcount", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_fieldicons_setfieldiconmatchstate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_fieldicons_setqsobuttonvisible", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_fieldicons_hasvaultmatch", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldIcons.ts", + "source_location": "L212", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldicons_createfieldicon", + "target": "apps_extension_chromium_src_vault_autofill_fieldicons_buildiconcss", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldIcons.ts", + "source_location": "L266", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldicons_createfieldicon", + "target": "apps_extension_chromium_src_vault_autofill_fieldicons_positionicon", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_test", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_test", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_collectcandidates", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_test", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_elementscore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_test", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_fieldmapping", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_test", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_invalidatescancache", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_test", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_pickbestmapping", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.test.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_test", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_scanresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_test", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_scorecandidate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_test", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_startwatching", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.test.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_test", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_stopwatching", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.test.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_test", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_test_all_toggles", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.test.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_test", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_test_login_only", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.test.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_test", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_test_makeform", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.test.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_test", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_test_makeinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.test.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_test", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_test_makelabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.test.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_test", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_test_makeprofile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.test.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_test", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_test_makeselect", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_test", + "target": "packages_shared_src_vault_fieldtaxonomy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_test", + "target": "packages_shared_src_vault_fieldtaxonomy_autofillsectiontoggles", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.test.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_test", + "target": "packages_shared_src_vault_fieldtaxonomy_confidence_threshold", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_test", + "target": "packages_shared_src_vault_fieldtaxonomy_fieldentry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_test", + "target": "packages_shared_src_vault_fieldtaxonomy_vaultprofile", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_test_rationale_8", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_test", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L1129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_address_autocomplete_hints", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_boundediterstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L1135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_checkout_autocomplete_hints", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L1162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_classifybyfieldandurl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L980", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_classifyformintent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L310", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_collectcandidates", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L1123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_contact_autocomplete_hints", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L1331", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_containsformfields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L255", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_default_scan_config", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L1178", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_detectformcontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L707", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_elementattributes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_elementscore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L776", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_evaluateantisignals", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L738", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_evaluatespec", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L719", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_extractattributes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_fieldmapping", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L1146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_findformlikecontainer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_form_control_tags", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L171", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_form_control_tags_input_only", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L276", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_formcontextcache", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L1225", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_getactivespecs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L1209", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_getformindex", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L951", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_intent_button_text", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L944", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_intent_field_keywords", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L958", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_intent_url_paths", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L483", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_invalidatescancache", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L622", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_isambiguous", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L1190", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_iscrossoriginelement", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L1325", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_isformfield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L1314", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_isinsidevaultoverlay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L196", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_iterformcontrolsbounded", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L273", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_labelcache", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L837", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_matchantisignal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L795", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_matchsignal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L542", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_pickbestmapping", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L883", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_resolvelabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_sanitizenumericcap", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L144", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_scan_cap_max_candidates", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_scan_cap_max_candidates_ha", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_scan_cap_max_duration_ms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L150", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_scan_cap_max_duration_ms_ha", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_scan_cap_max_elements", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L142", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_scan_cap_max_elements_ha", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L153", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_scan_check_every", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L155", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_scan_check_every_ha", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_scanconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_scanresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L500", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_scorecandidate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L690", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_scoreelementagainstsinglespec", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L635", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_scoreelementagainstspecs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L1244", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_startwatching", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L1301", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_stopwatching", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_haguard", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_haguard_ishaenforced", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_hardening", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlogsafe", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "apps_extension_chromium_src_vault_autofill_hardening_emittelemetryevent", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "packages_shared_src_vault_fieldtaxonomy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "packages_shared_src_vault_fieldtaxonomy_anti_signals", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "packages_shared_src_vault_fieldtaxonomy_autofillsectiontoggles", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "packages_shared_src_vault_fieldtaxonomy_confidence_hint_threshold", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "packages_shared_src_vault_fieldtaxonomy_confidence_threshold", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "packages_shared_src_vault_fieldtaxonomy_domsignal", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "packages_shared_src_vault_fieldtaxonomy_fieldentry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "packages_shared_src_vault_fieldtaxonomy_fieldkind", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "packages_shared_src_vault_fieldtaxonomy_fieldsignalspec", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "packages_shared_src_vault_fieldtaxonomy_fillable_fields", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "packages_shared_src_vault_fieldtaxonomy_form_context_signals", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "packages_shared_src_vault_fieldtaxonomy_formcontext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "packages_shared_src_vault_fieldtaxonomy_max_signals_per_element", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "packages_shared_src_vault_fieldtaxonomy_vaultprofile", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "packages_shared_src_vault_insertionpipeline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "packages_shared_src_vault_insertionpipeline_blocked_input_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "packages_shared_src_vault_insertionpipeline_fieldcandidate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "packages_shared_src_vault_insertionpipeline_firedsignal", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "packages_shared_src_vault_insertionpipeline_matchresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "packages_shared_src_vault_insertionpipeline_mutation_rescan_debounce_ms", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "packages_shared_src_vault_insertionpipeline_scan_throttle_ms", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "target": "packages_shared_src_vault_insertionpipeline_valid_target_tags", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L256", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_rationale_256", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.test.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_test", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_scanresult", + "target": "packages_shared_src_vault_fieldtaxonomy_formcontext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_scanresult", + "target": "packages_shared_src_vault_insertionpipeline_fieldcandidate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_scanresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_scanresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_scanresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_scanresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_elementscore", + "target": "packages_shared_src_vault_fieldtaxonomy_fieldkind", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_elementscore", + "target": "packages_shared_src_vault_fieldtaxonomy_formcontext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_elementscore", + "target": "packages_shared_src_vault_insertionpipeline_matchresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_elementscore", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_fieldmapping", + "target": "packages_shared_src_vault_fieldtaxonomy_fieldentry", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_fieldmapping", + "target": "packages_shared_src_vault_fieldtaxonomy_fieldkind", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L402", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_fieldmapping", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_fieldmapping", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_scanconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L326", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_collectcandidates", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_sanitizenumericcap", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L369", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_collectcandidates", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_iterformcontrolsbounded", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L396", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_collectcandidates", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_detectformcontext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L357", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_collectcandidates", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_getactivespecs", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L402", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_collectcandidates", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_getformindex", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L393", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_collectcandidates", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_iscrossoriginelement", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L405", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_collectcandidates", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_scoreelementagainstspecs", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L315", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_collectcandidates", + "target": "apps_extension_chromium_src_vault_autofill_haguard_ishaenforced" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L446", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_collectcandidates", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlogsafe" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L453", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_collectcandidates", + "target": "apps_extension_chromium_src_vault_autofill_hardening_emittelemetryevent" + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L393", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_collectcandidates", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_el" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L386", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_collectcandidates", + "target": "packages_shared_src_vault_insertionpipeline_blocked_input_types" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L1287", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_startwatching", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_collectcandidates", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_collectcandidates", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_collectcandidates", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L290", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_resolveqsostate", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_collectcandidates" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_collectcandidates", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_updateremapstate", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_collectcandidates" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_collectcandidates", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L551", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_resolvefromscan", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_collectcandidates", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.test.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_test", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_collectcandidates", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L1286", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_startwatching", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_invalidatescancache", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_invalidatescancache", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L501", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_scorecandidate", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_detectformcontext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L518", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_scorecandidate", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_getformindex", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L503", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_scorecandidate", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_iscrossoriginelement", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L508", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_scorecandidate", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_scoreelementagainstsinglespec", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L502", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_scorecandidate", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_scoreelementagainstspecs", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_scorecandidate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L583", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_pickbestmapping", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_isambiguous", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_pickbestmapping", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L653", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_scoreelementagainstspecs", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_evaluateantisignals", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L657", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_scoreelementagainstspecs", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_evaluatespec", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L650", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_scoreelementagainstspecs", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_extractattributes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L696", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_scoreelementagainstsinglespec", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_evaluateantisignals", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L698", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_scoreelementagainstsinglespec", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_evaluatespec", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L695", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_scoreelementagainstsinglespec", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_extractattributes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L729", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_extractattributes", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_resolvelabel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L751", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_evaluatespec", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_matchsignal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L780", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_evaluateantisignals", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_matchantisignal", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L1044", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_classifyformintent", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_address_autocomplete_hints" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L1045", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_classifyformintent", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_checkout_autocomplete_hints" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L989", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_classifyformintent", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_classifybyfieldandurl", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L1043", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_classifyformintent", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_contact_autocomplete_hints" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L988", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_classifyformintent", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_findformlikecontainer", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L1179", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_detectformcontext", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_classifyformintent", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_classifyformintent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_classifyformintent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L545", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher_classifyformtype", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_classifyformintent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L1171", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_classifybyfieldandurl", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_contact_autocomplete_hints" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L1172", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_classifybyfieldandurl", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_address_autocomplete_hints" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L1260", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_startwatching", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_containsformfields", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L1260", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_startwatching", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_isformfield", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L1256", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_startwatching", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_isinsidevaultoverlay", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fieldScanner.ts", + "source_location": "L1248", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fieldscanner_startwatching", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_stopwatching", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_startwatching", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_fieldscanner_stopwatching", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L384", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fillpreview", + "target": "apps_extension_chromium_src_vault_autofill_fillpreview_buildpreviewcss", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fillpreview", + "target": "apps_extension_chromium_src_vault_autofill_fillpreview_clearfillpreview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L176", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fillpreview", + "target": "apps_extension_chromium_src_vault_autofill_fillpreview_createpreviewoverlay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L306", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fillpreview", + "target": "apps_extension_chromium_src_vault_autofill_fillpreview_executepreviewfill", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fillpreview", + "target": "apps_extension_chromium_src_vault_autofill_fillpreview_fieldvalueentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fillpreview", + "target": "apps_extension_chromium_src_vault_autofill_fillpreview_findmatchingfield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L356", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fillpreview", + "target": "apps_extension_chromium_src_vault_autofill_fillpreview_findsubmitbuttononpage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fillpreview", + "target": "apps_extension_chromium_src_vault_autofill_fillpreview_isfillpreviewactive", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fillpreview", + "target": "apps_extension_chromium_src_vault_autofill_fillpreview_overlays", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fillpreview", + "target": "apps_extension_chromium_src_vault_autofill_fillpreview_pendingcandidates", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L224", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fillpreview", + "target": "apps_extension_chromium_src_vault_autofill_fillpreview_positionoverlay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fillpreview", + "target": "apps_extension_chromium_src_vault_autofill_fillpreview_previewoverlay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fillpreview", + "target": "apps_extension_chromium_src_vault_autofill_fillpreview_resolvefieldvalues", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L279", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fillpreview", + "target": "apps_extension_chromium_src_vault_autofill_fillpreview_setupsubmitinterception", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fillpreview", + "target": "apps_extension_chromium_src_vault_autofill_fillpreview_showfillpreview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L242", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fillpreview", + "target": "apps_extension_chromium_src_vault_autofill_fillpreview_startpositionwatchdog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L268", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fillpreview", + "target": "apps_extension_chromium_src_vault_autofill_fillpreview_stoppositionwatchdog", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fillpreview", + "target": "apps_extension_chromium_src_vault_autofill_hardening", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fillpreview", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fillpreview", + "target": "apps_extension_chromium_src_vault_autofill_hardening_emittelemetryevent", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fillpreview", + "target": "apps_extension_chromium_src_vault_autofill_submitguard", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fillpreview", + "target": "apps_extension_chromium_src_vault_autofill_submitguard_resolvesubmittarget", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fillpreview", + "target": "apps_extension_chromium_src_vault_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fillpreview", + "target": "apps_extension_chromium_src_vault_types_field", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fillpreview", + "target": "apps_extension_chromium_src_vault_types_vaultitem", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fillpreview", + "target": "packages_shared_src_vault_insertionpipeline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fillpreview", + "target": "packages_shared_src_vault_insertionpipeline_fieldcandidate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_fillpreview", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_fillpreview", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fillpreview_showfillpreview", + "target": "apps_extension_chromium_src_vault_autofill_fillpreview_clearfillpreview", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fillpreview_showfillpreview", + "target": "apps_extension_chromium_src_vault_autofill_fillpreview_createpreviewoverlay", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fillpreview_showfillpreview", + "target": "apps_extension_chromium_src_vault_autofill_fillpreview_resolvefieldvalues", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fillpreview_showfillpreview", + "target": "apps_extension_chromium_src_vault_autofill_fillpreview_setupsubmitinterception", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fillpreview_showfillpreview", + "target": "apps_extension_chromium_src_vault_autofill_fillpreview_startpositionwatchdog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fillpreview_showfillpreview", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_fillpreview_showfillpreview", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_fillpreview_showfillpreview", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fillpreview_clearfillpreview", + "target": "apps_extension_chromium_src_vault_autofill_fillpreview_stoppositionwatchdog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L213", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fillpreview_createpreviewoverlay", + "target": "apps_extension_chromium_src_vault_autofill_fillpreview_clearfillpreview", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L329", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fillpreview_executepreviewfill", + "target": "apps_extension_chromium_src_vault_autofill_fillpreview_clearfillpreview", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_fillpreview_clearfillpreview", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_fillpreview_isfillpreviewactive", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fillpreview_resolvefieldvalues", + "target": "apps_extension_chromium_src_vault_autofill_fillpreview_findmatchingfield", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fillpreview_createpreviewoverlay", + "target": "apps_extension_chromium_src_vault_autofill_fillpreview_buildpreviewcss", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L219", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fillpreview_createpreviewoverlay", + "target": "apps_extension_chromium_src_vault_autofill_fillpreview_positionoverlay", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L300", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fillpreview_setupsubmitinterception", + "target": "apps_extension_chromium_src_vault_autofill_fillpreview_executepreviewfill", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L289", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fillpreview_setupsubmitinterception", + "target": "apps_extension_chromium_src_vault_autofill_fillpreview_findsubmitbuttononpage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L291", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fillpreview_setupsubmitinterception", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L289", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fillpreview_setupsubmitinterception", + "target": "apps_extension_chromium_src_vault_autofill_submitguard_resolvesubmittarget", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L325", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fillpreview_executepreviewfill", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/fillPreview.ts", + "source_location": "L326", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_fillpreview_executepreviewfill", + "target": "apps_extension_chromium_src_vault_autofill_hardening_emittelemetryevent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/haGuard.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_haguard", + "target": "apps_extension_chromium_src_vault_autofill_haguard_gethaconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/haGuard.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_haguard", + "target": "apps_extension_chromium_src_vault_autofill_haguard_gethastate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/haGuard.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_haguard", + "target": "apps_extension_chromium_src_vault_autofill_haguard_hacheck", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/haGuard.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_haguard", + "target": "apps_extension_chromium_src_vault_autofill_haguard_hachecksilent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/haGuard.ts", + "source_location": "L219", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_haguard", + "target": "apps_extension_chromium_src_vault_autofill_haguard_handleharequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/haGuard.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_haguard", + "target": "apps_extension_chromium_src_vault_autofill_haguard_hastate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/haGuard.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_haguard", + "target": "apps_extension_chromium_src_vault_autofill_haguard_inithasync", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/haGuard.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_haguard", + "target": "apps_extension_chromium_src_vault_autofill_haguard_ishaenforced", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/haGuard.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_haguard", + "target": "apps_extension_chromium_src_vault_autofill_haguard_listeners", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/haGuard.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_haguard", + "target": "apps_extension_chromium_src_vault_autofill_haguard_msg_ha_state_changed", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/haGuard.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_haguard", + "target": "apps_extension_chromium_src_vault_autofill_haguard_msg_ha_state_request", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/haGuard.ts", + "source_location": "L234", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_haguard", + "target": "apps_extension_chromium_src_vault_autofill_haguard_notifylisteners", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/haGuard.ts", + "source_location": "L208", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_haguard", + "target": "apps_extension_chromium_src_vault_autofill_haguard_onhachange", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/haGuard.ts", + "source_location": "L181", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_haguard", + "target": "apps_extension_chromium_src_vault_autofill_haguard_updatehastate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/haGuard.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_haguard", + "target": "apps_extension_chromium_src_vault_autofill_hardening", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/haGuard.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_haguard", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/haGuard.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_haguard", + "target": "apps_extension_chromium_src_vault_autofill_hardening_emittelemetryevent", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/haGuard.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_haguard", + "target": "packages_shared_src_vault_hamode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/haGuard.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_haguard", + "target": "packages_shared_src_vault_hamode_default_ha_state", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/haGuard.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_haguard", + "target": "packages_shared_src_vault_hamode_ha_config", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/haGuard.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_haguard", + "target": "packages_shared_src_vault_hamode_haallows", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/haGuard.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_haguard", + "target": "packages_shared_src_vault_hamode_haconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/haGuard.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_haguard", + "target": "packages_shared_src_vault_hamode_hadenyreason", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/haGuard.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_haguard", + "target": "packages_shared_src_vault_hamode_hagatedaction", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/haGuard.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_haguard", + "target": "packages_shared_src_vault_hamode_hamodestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/haGuard.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_haguard", + "target": "packages_shared_src_vault_hamode_ishaactive", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L193", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_haguard", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_haguard", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingStore.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingstore", + "target": "apps_extension_chromium_src_vault_autofill_haguard", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingWizard.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard", + "target": "apps_extension_chromium_src_vault_autofill_haguard", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "apps_extension_chromium_src_vault_autofill_haguard", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapIcon.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapicon", + "target": "apps_extension_chromium_src_vault_autofill_haguard", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "target": "apps_extension_chromium_src_vault_autofill_haguard", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect", + "target": "apps_extension_chromium_src_vault_autofill_haguard", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitGuard.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitguard", + "target": "apps_extension_chromium_src_vault_autofill_haguard", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "apps_extension_chromium_src_vault_autofill_haguard", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.test.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_test", + "target": "apps_extension_chromium_src_vault_autofill_haguard", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L193", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_haguard_msg_ha_state_changed", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L193", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_haguard_msg_ha_state_request", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/haGuard.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_haguard_gethaconfig", + "target": "apps_extension_chromium_src_vault_autofill_haguard_ishaenforced", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/haGuard.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_haguard_ishaenforced", + "target": "packages_shared_src_vault_hamode_ishaactive" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/haGuard.ts", + "source_location": "L235", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_haguard_notifylisteners", + "target": "apps_extension_chromium_src_vault_autofill_haguard_ishaenforced", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L193", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_haguard_ishaenforced", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_haguard_ishaenforced", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L180", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_showoverlay", + "target": "apps_extension_chromium_src_vault_autofill_haguard_ishaenforced" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingStore.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingstore", + "target": "apps_extension_chromium_src_vault_autofill_haguard_ishaenforced", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingStore.ts", + "source_location": "L154", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_createcredentialfrompageinput", + "target": "apps_extension_chromium_src_vault_autofill_haguard_ishaenforced" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingStore.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_deletemapping", + "target": "apps_extension_chromium_src_vault_autofill_haguard_ishaenforced" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingStore.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_savemapping", + "target": "apps_extension_chromium_src_vault_autofill_haguard_ishaenforced" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingWizard.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard", + "target": "apps_extension_chromium_src_vault_autofill_haguard_ishaenforced", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "apps_extension_chromium_src_vault_autofill_haguard_ishaenforced", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L439", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_executeqsofill", + "target": "apps_extension_chromium_src_vault_autofill_haguard_ishaenforced" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L277", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_resolveqsostate", + "target": "apps_extension_chromium_src_vault_autofill_haguard_ishaenforced" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapIcon.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapicon", + "target": "apps_extension_chromium_src_vault_autofill_haguard_ishaenforced", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapIcon.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapicon_showremapicon", + "target": "apps_extension_chromium_src_vault_autofill_haguard_ishaenforced" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "target": "apps_extension_chromium_src_vault_autofill_haguard_ishaenforced", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L449", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_attemptqsoafterremap", + "target": "apps_extension_chromium_src_vault_autofill_haguard_ishaenforced", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L270", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_handleaddandmap", + "target": "apps_extension_chromium_src_vault_autofill_haguard_ishaenforced", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L348", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_handleremap", + "target": "apps_extension_chromium_src_vault_autofill_haguard_ishaenforced", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L244", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_handleremapiconclick", + "target": "apps_extension_chromium_src_vault_autofill_haguard_ishaenforced", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L386", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_startremapwizard", + "target": "apps_extension_chromium_src_vault_autofill_haguard_ishaenforced", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitGuard.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitguard", + "target": "apps_extension_chromium_src_vault_autofill_haguard_ishaenforced", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/submitGuard.ts", + "source_location": "L139", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitguard_safesubmitafterfill", + "target": "apps_extension_chromium_src_vault_autofill_haguard_ishaenforced" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "apps_extension_chromium_src_vault_autofill_haguard_ishaenforced", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L219", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_handlewebmcpfillpreviewrequest", + "target": "apps_extension_chromium_src_vault_autofill_haguard_ishaenforced" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.test.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_test", + "target": "apps_extension_chromium_src_vault_autofill_haguard_ishaenforced", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L193", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_haguard_gethaconfig", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L193", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_haguard_gethastate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/haGuard.ts", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_haguard_hacheck", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/haGuard.ts", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_haguard_hacheck", + "target": "apps_extension_chromium_src_vault_autofill_hardening_emittelemetryevent" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/haGuard.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_haguard_hacheck", + "target": "packages_shared_src_vault_hamode_haallows" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/haGuard.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_haguard_hacheck", + "target": "packages_shared_src_vault_hamode_hadenyreason" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/haGuard.ts", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_haguard_hacheck", + "target": "packages_shared_src_vault_hamode_hagatedaction" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L193", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_haguard_hacheck", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "apps_extension_chromium_src_vault_autofill_haguard_hacheck", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.test.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_test", + "target": "apps_extension_chromium_src_vault_autofill_haguard_hacheck", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/haGuard.ts", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_haguard_hachecksilent", + "target": "packages_shared_src_vault_hamode_haallows" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L193", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_haguard_hachecksilent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect", + "target": "apps_extension_chromium_src_vault_autofill_haguard_hachecksilent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L487", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect_appendshowallbutton", + "target": "apps_extension_chromium_src_vault_autofill_haguard_hachecksilent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/haGuard.ts", + "source_location": "L151", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_haguard_inithasync", + "target": "apps_extension_chromium_src_vault_autofill_haguard_notifylisteners", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/haGuard.ts", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_haguard_inithasync", + "target": "apps_extension_chromium_src_vault_autofill_haguard_updatehastate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L193", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_haguard_inithasync", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/haGuard.ts", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_haguard_updatehastate", + "target": "apps_extension_chromium_src_vault_autofill_haguard_notifylisteners", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/haGuard.ts", + "source_location": "L195", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_haguard_updatehastate", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/haGuard.ts", + "source_location": "L182", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_haguard_updatehastate", + "target": "packages_shared_src_vault_hamode_ishaactive" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L193", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_haguard_updatehastate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L193", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_haguard_onhachange", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L193", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_haguard_handleharequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L927", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditbuffer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L903", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L901", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlevel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L928", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlisteners", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L1046", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L1117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlogsafe", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L1190", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "apps_extension_chromium_src_vault_autofill_hardening_clearauditlog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L1415", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "apps_extension_chromium_src_vault_autofill_hardening_cleartelemetry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L825", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "apps_extension_chromium_src_vault_autofill_hardening_countdomainmatches", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L814", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "apps_extension_chromium_src_vault_autofill_hardening_domainrelated", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L549", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "apps_extension_chromium_src_vault_autofill_hardening_elementguardresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L1369", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "apps_extension_chromium_src_vault_autofill_hardening_emittelemetryevent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L338", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "apps_extension_chromium_src_vault_autofill_hardening_error_messages", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L463", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "apps_extension_chromium_src_vault_autofill_hardening_evaluatesafemode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L1212", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "apps_extension_chromium_src_vault_autofill_hardening_exportauditlogjsonl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "apps_extension_chromium_src_vault_autofill_hardening_failure_modes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "apps_extension_chromium_src_vault_autofill_hardening_failurecategory", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "apps_extension_chromium_src_vault_autofill_hardening_failuremode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L1260", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "apps_extension_chromium_src_vault_autofill_hardening_flushauditlog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L1179", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "apps_extension_chromium_src_vault_autofill_hardening_getauditlog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L1405", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "apps_extension_chromium_src_vault_autofill_hardening_gettelemetrylog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L375", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "apps_extension_chromium_src_vault_autofill_hardening_getusermessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L569", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "apps_extension_chromium_src_vault_autofill_hardening_guardelement", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L303", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "apps_extension_chromium_src_vault_autofill_hardening_hardenederrorcode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L665", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "apps_extension_chromium_src_vault_autofill_hardening_isourshadowhost", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L800", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "apps_extension_chromium_src_vault_autofill_hardening_ispublicsuffixdomain", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L875", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "apps_extension_chromium_src_vault_autofill_hardening_maskvalue", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L922", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "apps_extension_chromium_src_vault_autofill_hardening_max_audit_age_ms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L919", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "apps_extension_chromium_src_vault_autofill_hardening_max_audit_entries", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L925", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "apps_extension_chromium_src_vault_autofill_hardening_max_export_bytes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L942", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "apps_extension_chromium_src_vault_autofill_hardening_meta_allowed_keys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L967", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "apps_extension_chromium_src_vault_autofill_hardening_meta_pii_patterns", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L1168", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "apps_extension_chromium_src_vault_autofill_hardening_onauditevent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L1395", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "apps_extension_chromium_src_vault_autofill_hardening_ontelemetryevent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L434", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "apps_extension_chromium_src_vault_autofill_hardening_public_suffix_patterns", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L860", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "apps_extension_chromium_src_vault_autofill_hardening_redacterror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L842", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "apps_extension_chromium_src_vault_autofill_hardening_redactsecrets", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L1425", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "apps_extension_chromium_src_vault_autofill_hardening_safehostname", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L411", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "apps_extension_chromium_src_vault_autofill_hardening_safemodedecision", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L420", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "apps_extension_chromium_src_vault_autofill_hardening_safemodereason", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L1016", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "apps_extension_chromium_src_vault_autofill_hardening_sanitizemeta", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L975", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "apps_extension_chromium_src_vault_autofill_hardening_sanitizemetavalue", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L677", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "apps_extension_chromium_src_vault_autofill_hardening_spanavigationconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L697", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "apps_extension_chromium_src_vault_autofill_hardening_spastate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L688", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "apps_extension_chromium_src_vault_autofill_hardening_spawatcherstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L712", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "apps_extension_chromium_src_vault_autofill_hardening_startspawatcher", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L763", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "apps_extension_chromium_src_vault_autofill_hardening_stopspawatcher", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L1362", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "apps_extension_chromium_src_vault_autofill_hardening_telemetrybuffer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L1299", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "apps_extension_chromium_src_vault_autofill_hardening_telemetryevent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L1312", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "apps_extension_chromium_src_vault_autofill_hardening_telemetryeventtype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L1363", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "apps_extension_chromium_src_vault_autofill_hardening_telemetrylisteners", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L401", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "packages_shared_src_vault_fieldtaxonomy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L401", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "packages_shared_src_vault_fieldtaxonomy_confidence_threshold", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L400", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "packages_shared_src_vault_fieldtaxonomy_formcontext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L400", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "packages_shared_src_vault_fieldtaxonomy_vaultprofile", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L408", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "packages_shared_src_vault_hamode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L408", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "packages_shared_src_vault_hamode_hamodestate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L408", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "packages_shared_src_vault_hamode_ishaactive", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L399", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "packages_shared_src_vault_insertionpipeline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L399", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "packages_shared_src_vault_insertionpipeline_fieldcandidate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L399", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "packages_shared_src_vault_insertionpipeline_matchresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L403", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "packages_shared_src_vault_originpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L403", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "packages_shared_src_vault_originpolicy_classifyrelevance", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L403", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "packages_shared_src_vault_originpolicy_ispublicsuffix", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L403", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening", + "target": "packages_shared_src_vault_originpolicy_matchorigin", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_hardening", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_hardening", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/mutationGuard.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_mutationguard", + "target": "apps_extension_chromium_src_vault_autofill_hardening", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_hardening", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingStore.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingstore", + "target": "apps_extension_chromium_src_vault_autofill_hardening", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingWizard.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard", + "target": "apps_extension_chromium_src_vault_autofill_hardening", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "apps_extension_chromium_src_vault_autofill_hardening", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapIcon.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapicon", + "target": "apps_extension_chromium_src_vault_autofill_hardening", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "target": "apps_extension_chromium_src_vault_autofill_hardening", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect", + "target": "apps_extension_chromium_src_vault_autofill_hardening", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitGuard.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitguard", + "target": "apps_extension_chromium_src_vault_autofill_hardening", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "apps_extension_chromium_src_vault_autofill_hardening", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.test.ts", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L179", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_hardening_failuremode", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L179", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_hardening_failurecategory", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_hardening_failure_modes", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L179", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_hardening_hardenederrorcode", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_hardening_error_messages", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_hardening_getusermessage", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L179", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_hardening_safemodedecision", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L179", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_hardening_safemodereason", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L531", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening_evaluatesafemode", + "target": "apps_extension_chromium_src_vault_autofill_hardening_ispublicsuffixdomain", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L474", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening_evaluatesafemode", + "target": "packages_shared_src_vault_hamode_ishaactive" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L493", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening_evaluatesafemode", + "target": "packages_shared_src_vault_originpolicy_classifyrelevance" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_hardening_evaluatesafemode", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L179", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_hardening_elementguardresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L643", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening_guardelement", + "target": "apps_extension_chromium_src_vault_autofill_hardening_isourshadowhost", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_hardening_guardelement", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_hardening_guardelement", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L168", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_showoverlay", + "target": "apps_extension_chromium_src_vault_autofill_hardening_guardelement" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingWizard.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard", + "target": "apps_extension_chromium_src_vault_autofill_hardening_guardelement", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "apps_extension_chromium_src_vault_autofill_hardening_guardelement", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L479", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_executeqsofill", + "target": "apps_extension_chromium_src_vault_autofill_hardening_guardelement" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L348", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_resolveqsostate", + "target": "apps_extension_chromium_src_vault_autofill_hardening_guardelement" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapIcon.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapicon", + "target": "apps_extension_chromium_src_vault_autofill_hardening_guardelement", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapIcon.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapicon_showremapicon", + "target": "apps_extension_chromium_src_vault_autofill_hardening_guardelement" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "target": "apps_extension_chromium_src_vault_autofill_hardening_guardelement", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect", + "target": "apps_extension_chromium_src_vault_autofill_hardening_guardelement", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L185", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect_quickselectopen", + "target": "apps_extension_chromium_src_vault_autofill_hardening_guardelement" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitGuard.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitguard", + "target": "apps_extension_chromium_src_vault_autofill_hardening_guardelement", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/submitGuard.ts", + "source_location": "L181", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitguard_safesubmitafterfill", + "target": "apps_extension_chromium_src_vault_autofill_hardening_guardelement" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "apps_extension_chromium_src_vault_autofill_hardening_guardelement", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L329", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_handlewebmcpfillpreviewrequest", + "target": "apps_extension_chromium_src_vault_autofill_hardening_guardelement" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.test.ts", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_guardelement", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L713", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening_startspawatcher", + "target": "apps_extension_chromium_src_vault_autofill_hardening_stopspawatcher", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_hardening_startspawatcher", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_hardening_stopspawatcher", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_hardening_ispublicsuffixdomain", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L815", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening_domainrelated", + "target": "packages_shared_src_vault_originpolicy_matchorigin" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_hardening_domainrelated", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L828", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening_countdomainmatches", + "target": "packages_shared_src_vault_originpolicy_classifyrelevance" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_hardening_countdomainmatches", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L1058", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening_auditlog", + "target": "apps_extension_chromium_src_vault_autofill_hardening_redactsecrets", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L863", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening_redacterror", + "target": "apps_extension_chromium_src_vault_autofill_hardening_redactsecrets", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L988", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening_sanitizemetavalue", + "target": "apps_extension_chromium_src_vault_autofill_hardening_redactsecrets", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_hardening_redactsecrets", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_hardening_redacterror", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_hardening_redacterror", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "apps_extension_chromium_src_vault_autofill_hardening_redacterror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L594", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_executeqsofill", + "target": "apps_extension_chromium_src_vault_autofill_hardening_redacterror" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect", + "target": "apps_extension_chromium_src_vault_autofill_hardening_redacterror", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "apps_extension_chromium_src_vault_autofill_hardening_redacterror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L428", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_handlewebmcpfillpreviewrequest", + "target": "apps_extension_chromium_src_vault_autofill_hardening_redacterror" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_hardening_maskvalue", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L1099", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening_auditlog", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlevel" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L179", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlevel", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L179", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditentry", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L1025", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening_sanitizemeta", + "target": "apps_extension_chromium_src_vault_autofill_hardening_meta_allowed_keys" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L1027", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening_sanitizemeta", + "target": "apps_extension_chromium_src_vault_autofill_hardening_sanitizemetavalue", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L1052", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening_auditlog", + "target": "apps_extension_chromium_src_vault_autofill_hardening_sanitizemeta", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L1128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening_auditlogsafe", + "target": "apps_extension_chromium_src_vault_autofill_hardening_sanitizemeta", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L1059", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening_auditlog", + "target": "apps_extension_chromium_src_vault_autofill_hardening_safehostname", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L1157", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening_auditlogsafe", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L1023", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_autosubmitafterfill", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L830", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_fillfromitem", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L396", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_loadvaultitems", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L919", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_popoverguardedsubmit", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/mutationGuard.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_mutationguard", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L982", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_ondocumentkeydown", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L871", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_oninsert", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L892", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_oninsertclick", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L158", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_showoverlay", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L1067", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_startexpiretimer", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L650", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_startpositionwatchdog", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L499", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect_appendshowallbutton", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L187", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect_quickselectopen", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L604", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect_resolveandclose", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L227", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_handlewebmcpfillpreviewrequest", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.test.ts", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingStore.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingstore", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlogsafe", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingStore.ts", + "source_location": "L176", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_createcredentialfrompageinput", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlogsafe" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingStore.ts", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_deletemapping", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlogsafe" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingStore.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_savemapping", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlogsafe" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingWizard.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlogsafe", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlogsafe", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L444", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_executeqsofill", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlogsafe" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapIcon.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapicon", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlogsafe", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapIcon.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapicon_showremapicon", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlogsafe" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlogsafe", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L454", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_attemptqsoafterremap", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlogsafe", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L277", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_handleaddandmap", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlogsafe", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L355", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_handleremap", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlogsafe", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L247", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_handleremapiconclick", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlogsafe", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L415", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_startremapwizard", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlogsafe", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitGuard.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitguard", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlogsafe", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/submitGuard.ts", + "source_location": "L144", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitguard_safesubmitafterfill", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlogsafe" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlogsafe", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L280", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_handlewebmcpfillpreviewrequest", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlogsafe" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.test.ts", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_auditlogsafe", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_hardening_onauditevent", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_hardening_getauditlog", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_hardening_clearauditlog", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_hardening_flushauditlog", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L179", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_hardening_telemetryevent", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L179", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_hardening_telemetryeventtype", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/hardening.ts", + "source_location": "L1377", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_hardening_emittelemetryevent", + "target": "apps_extension_chromium_src_vault_autofill_hardening_safehostname", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_hardening_emittelemetryevent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_hardening_emittelemetryevent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L1040", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_autosubmitafterfill", + "target": "apps_extension_chromium_src_vault_autofill_hardening_emittelemetryevent" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L832", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_fillfromitem", + "target": "apps_extension_chromium_src_vault_autofill_hardening_emittelemetryevent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L939", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_popoverguardedsubmit", + "target": "apps_extension_chromium_src_vault_autofill_hardening_emittelemetryevent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L662", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_switchmode", + "target": "apps_extension_chromium_src_vault_autofill_hardening_emittelemetryevent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/mutationGuard.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_mutationguard", + "target": "apps_extension_chromium_src_vault_autofill_hardening_emittelemetryevent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_hardening_emittelemetryevent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L952", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_oncancel", + "target": "apps_extension_chromium_src_vault_autofill_hardening_emittelemetryevent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L984", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_ondocumentkeydown", + "target": "apps_extension_chromium_src_vault_autofill_hardening_emittelemetryevent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L870", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_oninsert", + "target": "apps_extension_chromium_src_vault_autofill_hardening_emittelemetryevent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L894", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_oninsertclick", + "target": "apps_extension_chromium_src_vault_autofill_hardening_emittelemetryevent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L188", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_showoverlay", + "target": "apps_extension_chromium_src_vault_autofill_hardening_emittelemetryevent" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L1066", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_startexpiretimer", + "target": "apps_extension_chromium_src_vault_autofill_hardening_emittelemetryevent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "apps_extension_chromium_src_vault_autofill_hardening_emittelemetryevent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L565", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_executeqsofill", + "target": "apps_extension_chromium_src_vault_autofill_hardening_emittelemetryevent" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "target": "apps_extension_chromium_src_vault_autofill_hardening_emittelemetryevent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L475", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_attemptqsoafterremap", + "target": "apps_extension_chromium_src_vault_autofill_hardening_emittelemetryevent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L328", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_handleaddandmap", + "target": "apps_extension_chromium_src_vault_autofill_hardening_emittelemetryevent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L416", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_startremapwizard", + "target": "apps_extension_chromium_src_vault_autofill_hardening_emittelemetryevent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect", + "target": "apps_extension_chromium_src_vault_autofill_hardening_emittelemetryevent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L500", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect_appendshowallbutton", + "target": "apps_extension_chromium_src_vault_autofill_hardening_emittelemetryevent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L204", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect_quickselectopen", + "target": "apps_extension_chromium_src_vault_autofill_hardening_emittelemetryevent" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L319", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect_renderdropdown", + "target": "apps_extension_chromium_src_vault_autofill_hardening_emittelemetryevent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L600", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect_resolveandclose", + "target": "apps_extension_chromium_src_vault_autofill_hardening_emittelemetryevent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "apps_extension_chromium_src_vault_autofill_hardening_emittelemetryevent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L395", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_handlewebmcpfillpreviewrequest", + "target": "apps_extension_chromium_src_vault_autofill_hardening_emittelemetryevent" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.test.ts", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_test", + "target": "apps_extension_chromium_src_vault_autofill_hardening_emittelemetryevent", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_hardening_ontelemetryevent", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_hardening_gettelemetrylog", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_hardening_cleartelemetry", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_autosubmitafterfill", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_fillfieldsfromvaultitem", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_hidepopover", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_ispopovervisible", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_loadqsoautoconsent", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_popoveroptions", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_popoverresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_saveqsoautoconsentpublic", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_showpopover", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L208", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_microcopy", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L208", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_microcopy_consent_explainer", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L208", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_microcopy_errors", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L208", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_microcopy_overlay", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L208", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_microcopy_quick_select", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L208", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_microcopy_save_bar", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L208", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_microcopy_settings", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L228", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_modulemanifest", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L228", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_modulemanifest_getrefactortargets", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L228", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_modulemanifest_import_rules", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L235", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_modulemanifest_importrule", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L228", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_modulemanifest_module_manifest", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L235", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_modulemanifest_moduledescriptor", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L235", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_modulemanifest_moduleid", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L235", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_modulemanifest_modulelayer", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L228", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_modulemanifest_refactor_phases", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L235", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_modulemanifest_refactorphase", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L228", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_modulemanifest_validatedependencies", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_mutationguard", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_mutationguard_attachguard", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_mutationguard_guardstatus", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_mutationguard_guardviolation", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_mutationguard_mutationguardhandle", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_applytheme", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_checkmutationguard", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_getactivesessionid", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_gettokens", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_hideoverlay", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_isoverlayvisible", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_showoverlay", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_userdecision", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_overlaystyles", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_overlaystyles_buildoverlaycss", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_overlaystyles_createoverlaystylesheet", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_overlaystyles_css_tokens", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_overlaystyles_csstoken", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L357", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingstore", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L357", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_createcredentialfrompageinput", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L357", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_deletemapping", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L357", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_findcredentialsfororigin", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L357", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_loadmapping", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L361", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_origincredential", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L357", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_savemapping", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L355", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L355", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard_hidemappingwizard", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L355", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard_ismappingwizardvisible", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L355", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard_showmappingwizard", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L356", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard_wizardhandle", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L356", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard_wizardresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L333", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L333", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_buildqsofillactionresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L333", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_buildqsostateresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L333", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_executeqsofill", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L333", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_isqsoresultv1", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L333", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_qso_error_codes", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L333", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_qso_result_version", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L333", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_qso_statuses", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L338", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_qsoactionresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L338", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_qsoblockreason", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L338", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_qsocandidate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L338", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_qsoerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L338", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_qsofillresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L338", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_qsostate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L338", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_qsostatus", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L333", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_resolveqsostate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L342", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoicon", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L342", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoicon_hideqsoicon", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L342", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoicon_isqsoiconvisible", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L343", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoicon_qsoiconhandle", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L343", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoicon_qsoiconvisualstate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L342", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoicon_qsostatetovisual", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L342", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoicon_showqsoicon", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L344", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsopicker", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L344", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsopicker_hideqsopicker", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L344", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsopicker_isqsopickervisible", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L344", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsopicker_showqsopicker", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L353", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapicon", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L353", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapicon_hideremapicon", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L353", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapicon_isremapiconvisible", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L354", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapicon_remapiconhandle", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L354", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapicon_remapiconmode", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L353", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapicon_showremapicon", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L351", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L351", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_forgetmapping", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L351", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_getremapstate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L352", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_remapdetectionresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L352", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_remapstate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L351", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_teardownremap", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L351", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_updateremapstate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L362", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L362", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_buildelementmapping", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L362", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_buildselector", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L362", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_buildsignature", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L362", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_effectiveorigin", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L366", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_elementmapping", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L366", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_elementresolution", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L366", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_elementsignature", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L366", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_loginformmapping", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L366", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_mappingvalidationresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L362", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_scoresignaturematch", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L362", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_validatemapping", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qsostate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qsostate_qsoautomode", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qsostate_qsomatchstatus", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qsostate_qsouistate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qsostate_resolveqsouistate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qsostate_shouldautosubmit", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_qsostate_shouldshowqsobutton", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_quickselect", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_hidetriggericon", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_quickselectclose", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_quickselectisopen", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_quickselectopen", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_quickselectoptions", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_quickselectresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_registershortcut", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_showtriggericon", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_unregistershortcut", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_savebar", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_savebar_existingmatch", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_savebar_hidesavebar", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_savebar_issavebarvisible", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_savebar_savebaroptions", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_savebar_savedecision", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_savebar_showsavebar", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L211", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_securityposture", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L211", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_securityposture_getposturesummary", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L212", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_securityposture_posturesummary", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L211", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_securityposture_security_properties", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L212", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_securityposture_securitycategory", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L212", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_securityposture_securityproperty", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L347", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_submitguard", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L347", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_submitguard_resolvesubmittarget", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L347", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_submitguard_safesubmitafterfill", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L347", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_submitguard_submit_block_reasons", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L348", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_submitguard_submitblockreason", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L348", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_submitguard_submitcode", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L348", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_submitguard_submitresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L348", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_submitguard_submitsafetyinput", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_oncredentialsubmit", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_save_bar_timeout_ms", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_startsubmitwatcher", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_stopsubmitwatcher", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L215", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_tierconfig", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L225", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_tierconfig_autofillconfigoverrides", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L225", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_tierconfig_autofilltierconfig", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L225", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_tierconfig_configdiff", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L215", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_tierconfig_consumer_config", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L215", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_tierconfig_diffconfig", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L215", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_tierconfig_enterprise_config", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L215", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_tierconfig_getconfigfortier", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L215", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_tierconfig_mergeconfig", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L215", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_tierconfig_pro_config", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L215", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_tierconfig_tier_configs", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L225", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_tierconfig_tierband", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L215", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_tierconfig_tiertoband", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_togglesync", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_autofilltogglestate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_default_toggle_state", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_geteffectivetoggles", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_gettoggles", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_handletogglerequest", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_initcontenttogglesync", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_isautofillactive", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_markvaultlocked", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_msg_toggles_changed", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_msg_toggles_request", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_msg_vault_lock_state", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_ontogglechange", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_pushtoggleupdate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_synctogglesfromvault", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_togglesyncmessage", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_vaultindex", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_vaultindex_buildindex", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_vaultindex_clearindex", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_vaultindex_hasentries", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_vaultindex_hasoriginmatches", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_vaultindex_indexentry", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_vaultindex_indexsize", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_vaultindex_invalidateindex", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_vaultindex_isindexstale", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_vaultindex_searchindex", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_vaultindex_searchindexfiltered", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_vaultindex_searchresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L238", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L238", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_webmcpadapter_handlewebmcpfillpreviewrequest", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L239", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_webmcpadapter_webmcpadapterresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L239", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_webmcpadapter_webmcpfillpreviewparams", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_writeboundary", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L325", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_writeskillswitch", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L325", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_writeskillswitch_arewritesdisabled", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L325", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_writeskillswitch_initwriteskillswitch", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L325", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_writeskillswitch_onwritesdisabledchange", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L325", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index", + "target": "apps_extension_chromium_src_vault_autofill_writeskillswitch_setwritesdisabled", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/index.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_index_rationale_52", + "target": "apps_extension_chromium_src_vault_autofill_index", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L1009", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_autosubmitafterfill", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L720", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_buildconsentcss", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L246", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_buildheader", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L1267", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_buildpopovercss", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L301", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_buildsearchbar", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L1213", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_cleanuppopover", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L453", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_domainsimilarityscore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L1568", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_escapehtml", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L956", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_fillfieldsfromvaultitem", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L825", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_fillfromitem", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_fillmode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_filtereditems", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L406", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_filteritems", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L1082", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_findmatchingfield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L1057", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_findsubmitbuttononpage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L612", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_getdisplayusername", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L1118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_getfieldvalue", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L1127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_handlekeydown", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L156", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_hidepopover", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L598", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_highlightitem", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_ispopovervisible", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_items", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_loadqsoautoconsent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L330", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_loadvaultitems", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L495", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_matchesdomain", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L904", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_popoverguardedsubmit", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_popoveroptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_popoverresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L1178", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_positionpopover", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L178", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_renderpopover", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L1206", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_resolveandclose", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_saveqsoautoconsent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_saveqsoautoconsentpublic", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_showpopover", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L669", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_showqsoconsentdialog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L626", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_switchmode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L508", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_updatelistui", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L801", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_updatemodeui", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_overlaystyles", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_overlaystyles_css_tokens", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_submitguard", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_submitguard_resolvesubmittarget", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_submitguard_safesubmitafterfill", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_submitguard_submitsafetyinput", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_writeskillswitch", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_autofill_writeskillswitch_arewritesdisabled", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_types_field", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "apps_extension_chromium_src_vault_types_vaultitem", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "packages_shared_src_vault_insertionpipeline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover", + "target": "packages_shared_src_vault_insertionpipeline_fieldcandidate", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_popoveroptions", + "target": "packages_shared_src_vault_insertionpipeline_fieldcandidate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_showpopover", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_loadqsoautoconsent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L629", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_switchmode", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_loadqsoautoconsent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_saveqsoautoconsentpublic", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_saveqsoautoconsent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L633", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_switchmode", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_saveqsoautoconsent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_showpopover", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_hidepopover", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_showpopover", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_loadvaultitems", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_showpopover", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_renderpopover", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L160", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_hidepopover", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_cleanuppopover", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_renderpopover", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_buildheader", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L189", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_renderpopover", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_buildpopovercss", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L202", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_renderpopover", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_buildsearchbar", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L241", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_renderpopover", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_handlekeydown", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L214", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_renderpopover", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_positionpopover", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L234", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_renderpopover", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_resolveandclose", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L222", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_renderpopover", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_updatelistui", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L223", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_renderpopover", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_updatemodeui", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L295", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_buildheader", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_resolveandclose", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L275", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_buildheader", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_switchmode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L318", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_buildsearchbar", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_filteritems", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L319", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_buildsearchbar", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_updatelistui", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L393", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_loadvaultitems", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_filteritems", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L383", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_loadvaultitems", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_matchesdomain", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L333", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_loadvaultitems", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_updatelistui", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L419", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_filteritems", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_domainsimilarityscore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L412", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_filteritems", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_matchesdomain", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L641", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_switchmode", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_filteritems", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L466", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_domainsimilarityscore", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_matchesdomain", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L573", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_updatelistui", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_matchesdomain", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L642", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_switchmode", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_updatelistui", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L578", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_updatelistui", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_escapehtml", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L587", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_updatelistui", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_fillfromitem", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L574", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_updatelistui", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_getdisplayusername", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L591", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_updatelistui", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_highlightitem", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L532", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_updatelistui", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_resolveandclose", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L1143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_handlekeydown", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_highlightitem", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L1168", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_handlekeydown", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_switchmode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L631", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_switchmode", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_showqsoconsentdialog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L643", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_switchmode", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_updatemodeui", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L679", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_showqsoconsentdialog", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_buildconsentcss", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L866", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_fillfromitem", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_fillfieldsfromvaultitem", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L878", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_fillfromitem", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_popoverguardedsubmit", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L874", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_fillfromitem", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_resolveandclose", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L829", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_fillfromitem", + "target": "apps_extension_chromium_src_vault_autofill_writeskillswitch_arewritesdisabled", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L1161", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_handlekeydown", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_fillfromitem", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L917", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_popoverguardedsubmit", + "target": "apps_extension_chromium_src_vault_autofill_submitguard_resolvesubmittarget", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L934", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_popoverguardedsubmit", + "target": "apps_extension_chromium_src_vault_autofill_submitguard_safesubmitafterfill", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L972", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_fillfieldsfromvaultitem", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_findmatchingfield", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L988", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_fillfieldsfromvaultitem", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_getfieldvalue", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L1021", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_autosubmitafterfill", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_findsubmitbuttononpage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L1021", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_autosubmitafterfill", + "target": "apps_extension_chromium_src_vault_autofill_submitguard_resolvesubmittarget" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L1134", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_handlekeydown", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_resolveandclose", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/inlinePopover.ts", + "source_location": "L1209", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_inlinepopover_resolveandclose", + "target": "apps_extension_chromium_src_vault_autofill_inlinepopover_cleanuppopover", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/microcopy.ts", + "source_location": "L185", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_microcopy", + "target": "apps_extension_chromium_src_vault_autofill_microcopy_consent_explainer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/microcopy.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_microcopy", + "target": "apps_extension_chromium_src_vault_autofill_microcopy_errors", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/microcopy.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_microcopy", + "target": "apps_extension_chromium_src_vault_autofill_microcopy_overlay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/microcopy.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_microcopy", + "target": "apps_extension_chromium_src_vault_autofill_microcopy_quick_select", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/microcopy.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_microcopy", + "target": "apps_extension_chromium_src_vault_autofill_microcopy_save_bar", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/microcopy.ts", + "source_location": "L159", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_microcopy", + "target": "apps_extension_chromium_src_vault_autofill_microcopy_settings", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/moduleManifest.ts", + "source_location": "L558", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_modulemanifest", + "target": "apps_extension_chromium_src_vault_autofill_modulemanifest_getrefactortargets", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/moduleManifest.ts", + "source_location": "L393", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_modulemanifest", + "target": "apps_extension_chromium_src_vault_autofill_modulemanifest_import_rules", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/moduleManifest.ts", + "source_location": "L412", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_modulemanifest", + "target": "apps_extension_chromium_src_vault_autofill_modulemanifest_importrule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/moduleManifest.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_modulemanifest", + "target": "apps_extension_chromium_src_vault_autofill_modulemanifest_module_manifest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/moduleManifest.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_modulemanifest", + "target": "apps_extension_chromium_src_vault_autofill_modulemanifest_moduledescriptor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/moduleManifest.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_modulemanifest", + "target": "apps_extension_chromium_src_vault_autofill_modulemanifest_moduleid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/moduleManifest.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_modulemanifest", + "target": "apps_extension_chromium_src_vault_autofill_modulemanifest_modulelayer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/moduleManifest.ts", + "source_location": "L466", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_modulemanifest", + "target": "apps_extension_chromium_src_vault_autofill_modulemanifest_refactor_phases", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/moduleManifest.ts", + "source_location": "L458", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_modulemanifest", + "target": "apps_extension_chromium_src_vault_autofill_modulemanifest_refactorphase", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/moduleManifest.ts", + "source_location": "L534", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_modulemanifest", + "target": "apps_extension_chromium_src_vault_autofill_modulemanifest_validatedependencies", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/moduleManifest.ts", + "source_location": "L539", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_modulemanifest_validatedependencies", + "target": "apps_extension_chromium_src_vault_autofill_modulemanifest_import_rules" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/mutationGuard.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_mutationguard", + "target": "apps_extension_chromium_src_vault_autofill_mutationguard_attachguard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/mutationGuard.ts", + "source_location": "L356", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_mutationguard", + "target": "apps_extension_chromium_src_vault_autofill_mutationguard_buildparentchainsignature", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/mutationGuard.ts", + "source_location": "L302", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_mutationguard", + "target": "apps_extension_chromium_src_vault_autofill_mutationguard_capturesnapshot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/mutationGuard.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_mutationguard", + "target": "apps_extension_chromium_src_vault_autofill_mutationguard_elementsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/mutationGuard.ts", + "source_location": "L343", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_mutationguard", + "target": "apps_extension_chromium_src_vault_autofill_mutationguard_fnv1a", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/mutationGuard.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_mutationguard", + "target": "apps_extension_chromium_src_vault_autofill_mutationguard_guardstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/mutationGuard.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_mutationguard", + "target": "apps_extension_chromium_src_vault_autofill_mutationguard_guardviolation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/mutationGuard.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_mutationguard", + "target": "apps_extension_chromium_src_vault_autofill_mutationguard_mutationguardhandle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/mutationGuard.ts", + "source_location": "L319", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_mutationguard", + "target": "apps_extension_chromium_src_vault_autofill_mutationguard_readattrs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/mutationGuard.ts", + "source_location": "L335", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_mutationguard", + "target": "apps_extension_chromium_src_vault_autofill_mutationguard_roundtogrid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/mutationGuard.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_mutationguard", + "target": "apps_extension_chromium_src_vault_autofill_mutationguard_watched_attrs", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_mutationguard", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "apps_extension_chromium_src_vault_autofill_mutationguard", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_mutationguard_guardstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_mutationguard_mutationguardhandle", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/mutationGuard.ts", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_mutationguard_attachguard", + "target": "apps_extension_chromium_src_vault_autofill_mutationguard_watched_attrs" + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/extension-chromium/src/vault/autofill/mutationGuard.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_mutationguard_attachguard", + "target": "apps_extension_chromium_src_vault_autofill_mutationguard_capturesnapshot", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/mutationGuard.ts", + "source_location": "L211", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_mutationguard_attachguard", + "target": "apps_extension_chromium_src_vault_autofill_mutationguard_roundtogrid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_mutationguard_attachguard", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_showoverlay", + "target": "apps_extension_chromium_src_vault_autofill_mutationguard_attachguard" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "apps_extension_chromium_src_vault_autofill_mutationguard_attachguard", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L528", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_executeqsofill", + "target": "apps_extension_chromium_src_vault_autofill_mutationguard_attachguard" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/mutationGuard.ts", + "source_location": "L315", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_mutationguard_capturesnapshot", + "target": "apps_extension_chromium_src_vault_autofill_mutationguard_buildparentchainsignature", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/mutationGuard.ts", + "source_location": "L313", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_mutationguard_capturesnapshot", + "target": "apps_extension_chromium_src_vault_autofill_mutationguard_fnv1a", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/mutationGuard.ts", + "source_location": "L314", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_mutationguard_capturesnapshot", + "target": "apps_extension_chromium_src_vault_autofill_mutationguard_readattrs", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/mutationGuard.ts", + "source_location": "L308", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_mutationguard_capturesnapshot", + "target": "apps_extension_chromium_src_vault_autofill_mutationguard_roundtogrid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L1108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_applytheme", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L363", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_buildcard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L435", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_buildfieldrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L424", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_buildfields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L522", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_buildfooter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L388", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_buildheader", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L499", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_buildtrusttoggle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L258", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_checkmutationguard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_clipboardtimers", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L1079", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_el", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_field_icons", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L245", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_getactivesessionid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_getfieldicon", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_getfieldlabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L1124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_gettokens", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L1087", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_gettrustcheckboxstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L224", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_hideoverlay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L237", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_isoverlayvisible", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_maskstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_maskstates", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L269", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_mount", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L949", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_oncancel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L1029", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_oncardkeydown", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L786", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_oncopy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L967", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_ondocumentkeydown", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L866", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_oninsert", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L889", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_oninsertclick", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L1017", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_onoutsideclick", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L778", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_onpeekend", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L760", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_onpeekstart", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L732", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_ontogglereveal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_placement", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L583", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_positionoverlay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L714", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_refreshfielddisplay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L351", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_removehost", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L153", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_showoverlay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L1061", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_startexpiretimer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L639", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_startpositionwatchdog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L317", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_teardowninternal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L1106", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_themeoverrides", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L627", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_updatearrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L687", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_updatevaluedisplay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_userdecision", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_overlaystyles", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_overlaystyles_createoverlaystylesheet", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_overlaystyles_css_tokens", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_writeskillswitch", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_writeskillswitch_arewritesdisabled", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "apps_extension_chromium_src_vault_autofill_writeskillswitch_onwritesdisabledchange", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "packages_shared_src_vault_fieldtaxonomy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "packages_shared_src_vault_fieldtaxonomy_fieldkind", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "packages_shared_src_vault_insertionpipeline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "packages_shared_src_vault_insertionpipeline_computedisplayvalue", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "packages_shared_src_vault_insertionpipeline_default_masking", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "packages_shared_src_vault_insertionpipeline_default_session_timeout_ms", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "packages_shared_src_vault_insertionpipeline_maskingconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "packages_shared_src_vault_insertionpipeline_overlaysession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "target": "packages_shared_src_vault_insertionpipeline_overlaytarget", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L863", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_rationale_863", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.test.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_test", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L444", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_buildfieldrow", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_getfieldicon", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L449", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_buildfieldrow", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_getfieldlabel", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_getfieldlabel", + "target": "packages_shared_src_vault_fieldtaxonomy_fieldkind" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L195", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_showoverlay", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_mount", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L214", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_showoverlay", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_startexpiretimer", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L215", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_showoverlay", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_startpositionwatchdog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_showoverlay", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_teardowninternal", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_showoverlay", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L378", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_handlewebmcpfillpreviewrequest", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_showoverlay" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.test.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_test", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_showoverlay", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L231", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_hideoverlay", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_teardowninternal", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_isoverlayvisible", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.test.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_test", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_isoverlayvisible", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_getactivesessionid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L370", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_handlewebmcpfillpreviewrequest", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_getactivesessionid" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.test.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_test", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_getactivesessionid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L297", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_mount", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_buildcard", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L311", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_mount", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_ondocumentkeydown", + "confidence_score": 0.5 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L314", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_mount", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_onoutsideclick", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L302", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_mount", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_positionoverlay", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L292", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_mount", + "target": "apps_extension_chromium_src_vault_autofill_overlaystyles_createoverlaystylesheet", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L953", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_oncancel", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_teardowninternal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L872", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_oninsert", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_teardowninternal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L1068", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_startexpiretimer", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_teardowninternal", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L332", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_teardowninternal", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_ondocumentkeydown", + "confidence_score": 0.5 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L333", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_teardowninternal", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_onoutsideclick", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L340", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_teardowninternal", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_removehost", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L374", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_buildcard", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_buildfields", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L380", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_buildcard", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_buildfooter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L371", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_buildcard", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_buildheader", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L377", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_buildcard", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_buildtrusttoggle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L364", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_buildcard", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_el", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L383", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_buildcard", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_oncardkeydown", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L389", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_buildheader", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_el", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L418", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_buildheader", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_oncancel", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L428", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_buildfields", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_buildfieldrow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L425", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_buildfields", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_el", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L436", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_buildfieldrow", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_el", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L486", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_buildfieldrow", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_oncopy", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L493", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_buildfieldrow", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_onpeekend", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L492", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_buildfieldrow", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_onpeekstart", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L474", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_buildfieldrow", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_ontogglereveal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L458", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_buildfieldrow", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_updatevaluedisplay", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L500", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_buildtrusttoggle", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_el", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L523", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_buildfooter", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_el", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L532", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_buildfooter", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_oncancel", + "confidence_score": 0.5 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L547", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_buildfooter", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_oninsertclick", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L573", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_buildfooter", + "target": "apps_extension_chromium_src_vault_autofill_writeskillswitch_arewritesdisabled", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L574", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_buildfooter", + "target": "apps_extension_chromium_src_vault_autofill_writeskillswitch_onwritesdisabledchange", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L624", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_positionoverlay", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_updatearrow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L721", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_refreshfielddisplay", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_updatevaluedisplay", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L692", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_updatevaluedisplay", + "target": "packages_shared_src_vault_insertionpipeline_computedisplayvalue", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L781", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_onpeekend", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_refreshfielddisplay", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L765", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_onpeekstart", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_refreshfielddisplay", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L743", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_ontogglereveal", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_refreshfielddisplay", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L1009", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_ondocumentkeydown", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_oninsert", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L868", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_oninsert", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_gettrustcheckboxstate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L942", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_oninsertclick", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_oninsert", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L974", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_ondocumentkeydown", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_oncancel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayManager.ts", + "source_location": "L1023", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaymanager_onoutsideclick", + "target": "apps_extension_chromium_src_vault_autofill_overlaymanager_oncancel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayStyles.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaystyles", + "target": "apps_extension_chromium_src_vault_autofill_overlaystyles_buildoverlaycss", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayStyles.ts", + "source_location": "L503", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaystyles", + "target": "apps_extension_chromium_src_vault_autofill_overlaystyles_createoverlaystylesheet", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayStyles.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaystyles", + "target": "apps_extension_chromium_src_vault_autofill_overlaystyles_css_tokens", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayStyles.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaystyles", + "target": "apps_extension_chromium_src_vault_autofill_overlaystyles_csstoken", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect", + "target": "apps_extension_chromium_src_vault_autofill_overlaystyles", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_savebar", + "target": "apps_extension_chromium_src_vault_autofill_overlaystyles", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect", + "target": "apps_extension_chromium_src_vault_autofill_overlaystyles_css_tokens", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_savebar", + "target": "apps_extension_chromium_src_vault_autofill_overlaystyles_css_tokens", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/overlayStyles.ts", + "source_location": "L505", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_overlaystyles_createoverlaystylesheet", + "target": "apps_extension_chromium_src_vault_autofill_overlaystyles_buildoverlaycss", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingStore.ts", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingstore", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_createcredentialfrompageinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingStore.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingstore", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_deletemapping", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingStore.ts", + "source_location": "L279", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingstore", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_domainsmatch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingStore.ts", + "source_location": "L270", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingstore", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_extracthostname", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingStore.ts", + "source_location": "L214", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingstore", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_findcredentialsfororigin", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingStore.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingstore", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_loadmapping", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingStore.ts", + "source_location": "L202", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingstore", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_origincredential", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingStore.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingstore", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_savemapping", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingStore.ts", + "source_location": "L286", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingstore", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingStore.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingstore", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_buildelementmapping", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingStore.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingstore", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_effectiveorigin", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingStore.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingstore", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_elementmapping", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingStore.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingstore", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_loginformmapping", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingStore.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingstore", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_mappingvalidationresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingStore.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingstore", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_validatemapping", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingStore.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingstore", + "target": "apps_extension_chromium_src_vault_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingStore.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingstore", + "target": "apps_extension_chromium_src_vault_types_field", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingStore.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingstore", + "target": "apps_extension_chromium_src_vault_types_vaultitem", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingStore.ts", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_createcredentialfrompageinput", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_savemapping", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_savemapping", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L413", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_startremapwizard", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_savemapping", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingStore.ts", + "source_location": "L233", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_findcredentialsfororigin", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_loadmapping", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_loadmapping", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_deletemapping", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L517", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_forgetmapping", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_deletemapping" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingStore.ts", + "source_location": "L155", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_createcredentialfrompageinput", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_extracthostname", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_createcredentialfrompageinput", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L320", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_handleaddandmap", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_createcredentialfrompageinput", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingStore.ts", + "source_location": "L204", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_origincredential", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_loginformmapping", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingStore.ts", + "source_location": "L206", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_origincredential", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_mappingvalidationresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_origincredential", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_remapdetectionresult", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_origincredential", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingStore.ts", + "source_location": "L226", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_findcredentialsfororigin", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_domainsmatch", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingStore.ts", + "source_location": "L219", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_findcredentialsfororigin", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_extracthostname", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingStore.ts", + "source_location": "L238", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_findcredentialsfororigin", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_validatemapping" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_findcredentialsfororigin", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L165", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_updateremapstate", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingstore_findcredentialsfororigin" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingWizard.ts", + "source_location": "L460", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard_buildwizardcss", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingWizard.ts", + "source_location": "L443", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard_escapehtml", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingWizard.ts", + "source_location": "L424", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard_getstepinstruction", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingWizard.ts", + "source_location": "L408", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard_hidemappingwizard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingWizard.ts", + "source_location": "L432", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard_isincrossoriginframe", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingWizard.ts", + "source_location": "L416", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard_ismappingwizardvisible", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingWizard.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard_showmappingwizard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingWizard.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard_wizardcancelcallback", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingWizard.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard_wizardcompletecallback", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingWizard.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard_wizardhandle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingWizard.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard_wizardoptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingWizard.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard_wizardresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingWizard.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard_wizardstep", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingWizard.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingWizard.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_buildelementmapping", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingWizard.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_elementmapping", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingWizard.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard_wizardresult", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_elementmapping", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard_wizardresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingWizard.ts", + "source_location": "L372", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard_showmappingwizard", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard_wizardoptions" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingWizard.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard_showmappingwizard", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard_buildwizardcss", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingWizard.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard_showmappingwizard", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard_hidemappingwizard", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/qso/mappingWizard.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard_showmappingwizard", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_buildelementmapping" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard_showmappingwizard", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L279", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_handleaddandmap", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard_showmappingwizard", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L388", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_startremapwizard", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard_showmappingwizard", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard_hidemappingwizard", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L224", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_teardownremap", + "target": "apps_extension_chromium_src_vault_autofill_qso_mappingwizard_hidemappingwizard" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L604", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_blocked", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_blockreasontoerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L196", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_buildqsofillactionresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L178", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_buildqsostateresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L662", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_categorytosection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L435", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_executeqsofill", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L615", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_findbestcandidate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L153", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_isqsoresultv1", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L635", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_itemtoprofile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L680", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_mapfieldkeytokind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L216", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_mapfillerrortocode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_qso_error_codes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_qso_result_version", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_qso_statuses", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_qsoactionresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_qsoblockreason", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L230", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_qsocandidate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_qsoerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L251", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_qsofillresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_qsostate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_qsostatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L274", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_resolveqsostate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L671", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_sectiontokindprefix", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "apps_extension_chromium_src_vault_autofill_submitguard", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "apps_extension_chromium_src_vault_autofill_submitguard_resolvesubmittarget", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "apps_extension_chromium_src_vault_autofill_submitguard_safesubmitafterfill", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "apps_extension_chromium_src_vault_autofill_submitguard_submitblockreason", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "apps_extension_chromium_src_vault_autofill_submitguard_submitcode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "apps_extension_chromium_src_vault_autofill_togglesync", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_isautofillactive", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "apps_extension_chromium_src_vault_autofill_writeskillswitch", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "apps_extension_chromium_src_vault_autofill_writeskillswitch_arewritesdisabled", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "packages_shared_src_vault_fieldtaxonomy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "packages_shared_src_vault_fieldtaxonomy_fieldentry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "packages_shared_src_vault_fieldtaxonomy_fieldkind", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "packages_shared_src_vault_fieldtaxonomy_vaultprofile", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "packages_shared_src_vault_insertionpipeline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "packages_shared_src_vault_insertionpipeline_commitresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "packages_shared_src_vault_insertionpipeline_computedisplayvalue", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "packages_shared_src_vault_insertionpipeline_default_masking", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "packages_shared_src_vault_insertionpipeline_fieldcandidate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "packages_shared_src_vault_insertionpipeline_overlaysession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "packages_shared_src_vault_insertionpipeline_overlaytarget", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "packages_shared_src_vault_originpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "packages_shared_src_vault_originpolicy_ispublicsuffix", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "target": "packages_shared_src_vault_originpolicy_matchorigin", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoIcon.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoicon", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoPicker.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsopicker", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L158", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_isqsoresultv1", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_qso_statuses" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L165", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_isqsoresultv1", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_qso_error_codes" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L188", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_buildqsostateresult", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_blockreasontoerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoIcon.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoicon", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_qsostate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L211", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_buildqsofillactionresult", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_mapfillerrortocode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoPicker.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsopicker", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_qsocandidate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_qsocandidate", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L261", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_qsofillresult", + "target": "apps_extension_chromium_src_vault_autofill_submitguard_submitblockreason", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L259", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_qsofillresult", + "target": "apps_extension_chromium_src_vault_autofill_submitguard_submitcode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L281", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_resolveqsostate", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_blocked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L333", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_resolveqsostate", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_findbestcandidate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L310", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_resolveqsostate", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_itemtoprofile", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L344", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_resolveqsostate", + "target": "apps_extension_chromium_src_vault_autofill_submitguard_resolvesubmittarget" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L280", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_resolveqsostate", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_isautofillactive" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L285", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_resolveqsostate", + "target": "apps_extension_chromium_src_vault_autofill_writeskillswitch_arewritesdisabled" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L313", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_resolveqsostate", + "target": "packages_shared_src_vault_originpolicy_ispublicsuffix" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L311", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_resolveqsostate", + "target": "packages_shared_src_vault_originpolicy_matchorigin" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L466", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_executeqsofill", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_itemtoprofile", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L570", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_executeqsofill", + "target": "apps_extension_chromium_src_vault_autofill_submitguard_safesubmitafterfill" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L449", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_executeqsofill", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_isautofillactive" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L454", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_executeqsofill", + "target": "apps_extension_chromium_src_vault_autofill_writeskillswitch_arewritesdisabled" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L488", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_executeqsofill", + "target": "packages_shared_src_vault_insertionpipeline_computedisplayvalue" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L568", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_executeqsofill", + "target": "packages_shared_src_vault_originpolicy_matchorigin" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_executeqsofill", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L473", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_attemptqsoafterremap", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_executeqsofill", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L636", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_itemtoprofile", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_categorytosection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L642", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_itemtoprofile", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_mapfieldkeytokind", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts", + "source_location": "L637", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_itemtoprofile", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoengine_sectiontokindprefix", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoIcon.ts", + "source_location": "L195", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoicon", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoicon_buildiconcss", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoIcon.ts", + "source_location": "L185", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoicon", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoicon_gettooltip", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoIcon.ts", + "source_location": "L134", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoicon", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoicon_hideqsoicon", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoIcon.ts", + "source_location": "L142", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoicon", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoicon_isqsoiconvisible", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoIcon.ts", + "source_location": "L161", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoicon", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoicon_positionicon", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoIcon.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoicon", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoicon_qsoiconclickhandler", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoIcon.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoicon", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoicon_qsoiconhandle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoIcon.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoicon", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoicon_qsoiconvisualstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoIcon.ts", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoicon", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoicon_qsostatetovisual", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoIcon.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoicon", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoicon_showqsoicon", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoIcon.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoicon_showqsoicon", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoicon_buildiconcss", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoIcon.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoicon_showqsoicon", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoicon_gettooltip", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoIcon.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoicon_showqsoicon", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoicon_hideqsoicon", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoIcon.ts", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsoicon_showqsoicon", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsoicon_positionicon", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoPicker.ts", + "source_location": "L213", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsopicker", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsopicker_buildpickercss", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoPicker.ts", + "source_location": "L197", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsopicker", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsopicker_hideqsopicker", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoPicker.ts", + "source_location": "L205", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsopicker", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsopicker_isqsopickervisible", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoPicker.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsopicker", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsopicker_qsopickerhandle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoPicker.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsopicker", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsopicker_qsopickerselecthandler", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoPicker.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsopicker", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsopicker_showqsopicker", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsopicker", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoPicker.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsopicker_showqsopicker", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsopicker_buildpickercss", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/qsoPicker.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_qsopicker_showqsopicker", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsopicker_hideqsopicker", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsopicker_showqsopicker", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L367", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_handleremap", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsopicker_showqsopicker", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsopicker_hideqsopicker", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L369", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_handleremap", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsopicker_hideqsopicker", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L225", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_teardownremap", + "target": "apps_extension_chromium_src_vault_autofill_qso_qsopicker_hideqsopicker" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapIcon.ts", + "source_location": "L208", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapicon", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapicon_applymode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapIcon.ts", + "source_location": "L222", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapicon", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapicon_buildremapcss", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapIcon.ts", + "source_location": "L176", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapicon", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapicon_getremapiconmode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapIcon.ts", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapicon", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapicon_hideremapicon", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapIcon.ts", + "source_location": "L171", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapicon", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapicon_isremapiconvisible", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapIcon.ts", + "source_location": "L185", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapicon", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapicon_positionnearanchor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapIcon.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapicon", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapicon_remapiconclickhandler", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapIcon.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapicon", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapicon_remapiconhandle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapIcon.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapicon", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapicon_remapiconmode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapIcon.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapicon", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapicon_showremapicon", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapicon", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapicon_remapiconmode", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_remapdetectionresult", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapicon_remapiconmode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapIcon.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapicon_showremapicon", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapicon_applymode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapIcon.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapicon_showremapicon", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapicon_buildremapcss", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapIcon.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapicon_showremapicon", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapicon_hideremapicon", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapIcon.ts", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapicon_showremapicon", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapicon_positionnearanchor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapicon_showremapicon", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L205", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_updateremapstate", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapicon_showremapicon" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapicon_hideremapicon", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L274", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_handleaddandmap", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapicon_hideremapicon", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L352", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_handleremap", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapicon_hideremapicon", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L223", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_teardownremap", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapicon_hideremapicon" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_updateremapstate", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapicon_hideremapicon" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L445", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_attemptqsoafterremap", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L486", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_canexecuteqso", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L516", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_forgetmapping", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L231", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_getremapstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L269", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_handleaddandmap", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L347", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_handleremap", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L243", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_handleremapiconclick", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L491", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_hasnonemptyloginfield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L501", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_idledetection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_remapdetectionresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_remapstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L382", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_startremapwizard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L222", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_teardownremap", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_updateremapstate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_buildelementmapping", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_effectiveorigin", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_loginformmapping", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_validatemapping", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "target": "apps_extension_chromium_src_vault_autofill_submitguard", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "target": "apps_extension_chromium_src_vault_autofill_submitguard_resolvesubmittarget", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "target": "apps_extension_chromium_src_vault_autofill_togglesync", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_isautofillactive", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "target": "apps_extension_chromium_src_vault_autofill_writeskillswitch", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager", + "target": "apps_extension_chromium_src_vault_autofill_writeskillswitch_arewritesdisabled", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L205", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_updateremapstate", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_handleremapiconclick", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_updateremapstate", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_hasnonemptyloginfield", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_updateremapstate", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_idledetection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_updateremapstate", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_effectiveorigin" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_updateremapstate", + "target": "apps_extension_chromium_src_vault_autofill_submitguard_resolvesubmittarget" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_updateremapstate", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_isautofillactive" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_updateremapstate", + "target": "apps_extension_chromium_src_vault_autofill_writeskillswitch_arewritesdisabled" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L259", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_handleremapiconclick", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_handleaddandmap", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L261", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_handleremapiconclick", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_handleremap", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L306", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_handleaddandmap", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_effectiveorigin", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L372", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_handleremap", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_startremapwizard", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L421", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_startremapwizard", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_attemptqsoafterremap", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L419", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_startremapwizard", + "target": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_canexecuteqso", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L400", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_startremapwizard", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_effectiveorigin", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts", + "source_location": "L452", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_remapmanager_attemptqsoafterremap", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_validatemapping", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L165", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_buildelementmapping", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_buildselector", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_buildsignature", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L451", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_computeformdepth", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L463", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_computeformindex", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L417", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_cssescape", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L388", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_effectiveorigin", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_elementmapping", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_elementresolution", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_elementsignature", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L288", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_findbysignaturefallback", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L435", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_hashformaction", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L393", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_iselementusable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L405", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_isincrossoriginframe", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_loginformmapping", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L426", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_looksautogenerated", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_mappingvalidationresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L262", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_resolveelement", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L333", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_scoresignaturematch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L189", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_validatemapping", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_buildelementmapping", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_buildselector", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_buildselector", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_cssescape", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_buildselector", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_looksautogenerated", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L171", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_buildelementmapping", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_buildsignature", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L156", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_buildsignature", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_computeformdepth", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L157", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_buildsignature", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_computeformindex", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L155", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_buildsignature", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_hashformaction", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L311", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_findbysignaturefallback", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_buildsignature", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L267", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_resolveelement", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_buildsignature", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L193", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_validatemapping", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_effectiveorigin", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L231", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_validatemapping", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_iselementusable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L239", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_validatemapping", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_isincrossoriginframe", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L205", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_validatemapping", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_resolveelement", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L277", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_resolveelement", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_findbysignaturefallback", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L267", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_resolveelement", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_scoresignaturematch", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L302", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_findbysignaturefallback", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_iselementusable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts", + "source_location": "L312", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_findbysignaturefallback", + "target": "apps_extension_chromium_src_vault_autofill_qso_selectorstrategy_scoresignaturematch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qsoState.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qsostate", + "target": "apps_extension_chromium_src_vault_autofill_qsostate_qsoautomode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qsoState.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qsostate", + "target": "apps_extension_chromium_src_vault_autofill_qsostate_qsomatchstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qsoState.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qsostate", + "target": "apps_extension_chromium_src_vault_autofill_qsostate_qsouistate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qsoState.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qsostate", + "target": "apps_extension_chromium_src_vault_autofill_qsostate_resolveqsouistate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qsoState.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qsostate", + "target": "apps_extension_chromium_src_vault_autofill_qsostate_shouldautosubmit", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/qsoState.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_qsostate", + "target": "apps_extension_chromium_src_vault_autofill_qsostate_shouldshowqsobutton", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L484", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_appendshowallbutton", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L719", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_builddropdowncss", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L687", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_buildiconcss", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L670", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_categoryicon", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L901", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_escapehtml", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L516", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_handlekeydown", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_hidetriggericon", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L346", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_positiondropdown", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L153", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_positionicon", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L215", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_quickselectclose", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L234", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_quickselectisopen", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L178", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_quickselectopen", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_quickselectoptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_quickselectresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L636", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_registershortcut", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L242", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_renderdropdown", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L594", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_resolveandclose", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_results", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L577", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_scrollitemintoview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L584", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_selectitem", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L561", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_setactiveitem", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L379", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_showinteractionprompt", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_showtriggericon", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L652", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_unregistershortcut", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L393", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_updateresults", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect", + "target": "apps_extension_chromium_src_vault_autofill_vaultindex", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect", + "target": "apps_extension_chromium_src_vault_autofill_vaultindex_buildindex", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect", + "target": "apps_extension_chromium_src_vault_autofill_vaultindex_hasoriginmatches", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect", + "target": "apps_extension_chromium_src_vault_autofill_vaultindex_indexentry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect", + "target": "apps_extension_chromium_src_vault_autofill_vaultindex_isindexstale", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect", + "target": "apps_extension_chromium_src_vault_autofill_vaultindex_searchindexfiltered", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect", + "target": "apps_extension_chromium_src_vault_autofill_vaultindex_searchresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect", + "target": "packages_shared_src_vault_originpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect", + "target": "packages_shared_src_vault_originpolicy_classifyrelevance", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect", + "target": "packages_shared_src_vault_originpolicy_relevancetier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect_showtriggericon", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_buildiconcss", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect_showtriggericon", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_hidetriggericon", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L139", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect_showtriggericon", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_positionicon", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L182", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect_quickselectopen", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_hidetriggericon", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L181", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect_quickselectopen", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_quickselectclose", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L208", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect_quickselectopen", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_renderdropdown", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L198", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect_quickselectopen", + "target": "apps_extension_chromium_src_vault_autofill_vaultindex_buildindex" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L197", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect_quickselectopen", + "target": "apps_extension_chromium_src_vault_autofill_vaultindex_isindexstale" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L610", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect_resolveandclose", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_quickselectclose", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L253", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect_renderdropdown", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_builddropdowncss", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L328", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect_renderdropdown", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_handlekeydown", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L303", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect_renderdropdown", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_positiondropdown", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L338", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect_renderdropdown", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_resolveandclose", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L300", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect_renderdropdown", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_showinteractionprompt", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L322", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect_renderdropdown", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_updateresults", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L384", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect_showinteractionprompt", + "target": "apps_extension_chromium_src_vault_autofill_vaultindex_hasoriginmatches", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L397", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect_updateresults", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_showinteractionprompt", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L498", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect_appendshowallbutton", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_updateresults", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L447", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect_updateresults", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_categoryicon", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L441", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect_updateresults", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_escapehtml", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L462", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect_updateresults", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_selectitem", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L457", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect_updateresults", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_setactiveitem", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L402", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect_updateresults", + "target": "apps_extension_chromium_src_vault_autofill_vaultindex_searchindexfiltered", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L430", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect_updateresults", + "target": "packages_shared_src_vault_originpolicy_classifyrelevance", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L550", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect_handlekeydown", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_resolveandclose", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L523", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect_handlekeydown", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_scrollitemintoview", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L541", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect_handlekeydown", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_selectitem", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L522", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect_handlekeydown", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_setactiveitem", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L586", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect_selectitem", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_resolveandclose", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/quickSelect.ts", + "source_location": "L637", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_quickselect_registershortcut", + "target": "apps_extension_chromium_src_vault_autofill_quickselect_unregistershortcut", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L492", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_savebar", + "target": "apps_extension_chromium_src_vault_autofill_savebar_builddialogcss", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L377", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_savebar", + "target": "apps_extension_chromium_src_vault_autofill_savebar_buildexistingmatchsection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L455", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_savebar", + "target": "apps_extension_chromium_src_vault_autofill_savebar_buildiconcss", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L741", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_savebar", + "target": "apps_extension_chromium_src_vault_autofill_savebar_escapeattr", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L737", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_savebar", + "target": "apps_extension_chromium_src_vault_autofill_savebar_escapehtml", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_savebar", + "target": "apps_extension_chromium_src_vault_autofill_savebar_existingmatch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L406", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_savebar", + "target": "apps_extension_chromium_src_vault_autofill_savebar_getselectedmatch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L165", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_savebar", + "target": "apps_extension_chromium_src_vault_autofill_savebar_hidediskicon", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_savebar", + "target": "apps_extension_chromium_src_vault_autofill_savebar_hidesavebar", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L355", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_savebar", + "target": "apps_extension_chromium_src_vault_autofill_savebar_hidesavedialog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_savebar", + "target": "apps_extension_chromium_src_vault_autofill_savebar_issavebarvisible", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L177", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_savebar", + "target": "apps_extension_chromium_src_vault_autofill_savebar_positionicon", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L367", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_savebar", + "target": "apps_extension_chromium_src_vault_autofill_savebar_resolveandclose", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_savebar", + "target": "apps_extension_chromium_src_vault_autofill_savebar_savebaroptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_savebar", + "target": "apps_extension_chromium_src_vault_autofill_savebar_savedecision", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_savebar", + "target": "apps_extension_chromium_src_vault_autofill_savebar_showdiskicon", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_savebar", + "target": "apps_extension_chromium_src_vault_autofill_savebar_showsavebar", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L207", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_savebar", + "target": "apps_extension_chromium_src_vault_autofill_savebar_showsavedialog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L416", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_savebar", + "target": "apps_extension_chromium_src_vault_autofill_savebar_trapfocus", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_savebar", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_savebar", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_save_bar_timeout_ms", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_savebar", + "target": "packages_shared_src_vault_insertionpipeline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_savebar", + "target": "packages_shared_src_vault_insertionpipeline_extractedcredentials", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_savebar_savebaroptions", + "target": "packages_shared_src_vault_insertionpipeline_extractedcredentials", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_savebar_showsavebar", + "target": "apps_extension_chromium_src_vault_autofill_savebar_hidediskicon", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_savebar_showsavebar", + "target": "apps_extension_chromium_src_vault_autofill_savebar_hidesavebar", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_savebar_showsavebar", + "target": "apps_extension_chromium_src_vault_autofill_savebar_showdiskicon", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_savebar_showsavebar", + "target": "apps_extension_chromium_src_vault_autofill_savebar_showsavedialog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_savebar_hidesavebar", + "target": "apps_extension_chromium_src_vault_autofill_savebar_hidediskicon", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_savebar_hidesavebar", + "target": "apps_extension_chromium_src_vault_autofill_savebar_hidesavedialog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L369", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_savebar_resolveandclose", + "target": "apps_extension_chromium_src_vault_autofill_savebar_hidesavebar", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_savebar_showdiskicon", + "target": "apps_extension_chromium_src_vault_autofill_savebar_buildiconcss", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_savebar_showdiskicon", + "target": "apps_extension_chromium_src_vault_autofill_savebar_hidediskicon", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L155", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_savebar_showdiskicon", + "target": "apps_extension_chromium_src_vault_autofill_savebar_positionicon", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L217", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_savebar_showsavedialog", + "target": "apps_extension_chromium_src_vault_autofill_savebar_builddialogcss", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L248", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_savebar_showsavedialog", + "target": "apps_extension_chromium_src_vault_autofill_savebar_buildexistingmatchsection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L252", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_savebar_showsavedialog", + "target": "apps_extension_chromium_src_vault_autofill_savebar_escapeattr", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L242", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_savebar_showsavedialog", + "target": "apps_extension_chromium_src_vault_autofill_savebar_escapehtml", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L299", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_savebar_showsavedialog", + "target": "apps_extension_chromium_src_vault_autofill_savebar_getselectedmatch", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L208", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_savebar_showsavedialog", + "target": "apps_extension_chromium_src_vault_autofill_savebar_hidesavedialog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L228", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_savebar_showsavedialog", + "target": "apps_extension_chromium_src_vault_autofill_savebar_resolveandclose", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L347", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_savebar_showsavedialog", + "target": "apps_extension_chromium_src_vault_autofill_savebar_trapfocus", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L385", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_savebar_buildexistingmatchsection", + "target": "apps_extension_chromium_src_vault_autofill_savebar_escapeattr", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/saveBar.ts", + "source_location": "L387", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_savebar_buildexistingmatchsection", + "target": "apps_extension_chromium_src_vault_autofill_savebar_escapehtml", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/securityPosture.ts", + "source_location": "L357", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_securityposture", + "target": "apps_extension_chromium_src_vault_autofill_securityposture_getposturesummary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/securityPosture.ts", + "source_location": "L350", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_securityposture", + "target": "apps_extension_chromium_src_vault_autofill_securityposture_posturesummary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/securityPosture.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_securityposture", + "target": "apps_extension_chromium_src_vault_autofill_securityposture_security_properties", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/securityPosture.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_securityposture", + "target": "apps_extension_chromium_src_vault_autofill_securityposture_securitycategory", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/securityPosture.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_securityposture", + "target": "apps_extension_chromium_src_vault_autofill_securityposture_securityproperty", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/securityPosture.ts", + "source_location": "L365", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_securityposture_getposturesummary", + "target": "apps_extension_chromium_src_vault_autofill_securityposture_security_properties" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitGuard.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitguard", + "target": "apps_extension_chromium_src_vault_autofill_submitguard_resolvesubmittarget", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitGuard.ts", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitguard", + "target": "apps_extension_chromium_src_vault_autofill_submitguard_safesubmitafterfill", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitGuard.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitguard", + "target": "apps_extension_chromium_src_vault_autofill_submitguard_submit_block_reasons", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitGuard.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitguard", + "target": "apps_extension_chromium_src_vault_autofill_submitguard_submitblockreason", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitGuard.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitguard", + "target": "apps_extension_chromium_src_vault_autofill_submitguard_submitcode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitGuard.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitguard", + "target": "apps_extension_chromium_src_vault_autofill_submitguard_submitresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitGuard.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitguard", + "target": "apps_extension_chromium_src_vault_autofill_submitguard_submitsafetyinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitGuard.ts", + "source_location": "L270", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitguard", + "target": "apps_extension_chromium_src_vault_autofill_submitguard_validatefingerprintsync", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitGuard.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitguard", + "target": "packages_shared_src_vault_insertionpipeline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitGuard.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitguard", + "target": "packages_shared_src_vault_insertionpipeline_domfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitGuard.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitguard_submitsafetyinput", + "target": "packages_shared_src_vault_insertionpipeline_domfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitGuard.ts", + "source_location": "L202", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitguard_safesubmitafterfill", + "target": "apps_extension_chromium_src_vault_autofill_submitguard_validatefingerprintsync", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_auth_url_patterns", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_callbacks", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L663", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_cancelpendingregistration", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L541", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_classifyformtype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L655", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_commitpendingregistration", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L719", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_emitcredentials", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L439", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_findusernamefield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L483", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_findusernamenearpassword", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L245", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_handleformsubmit", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L311", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_hookfetch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L361", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_hookhistory", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L338", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_hookxhr", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_interactedpasswordfields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L711", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_isauthurl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L707", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_ispasswordfield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L683", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_ispaymentform", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L231", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_oncredentialsubmit", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_payment_patterns", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_save_bar_timeout_ms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L507", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_selectpassword", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L742", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_simplehash", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_startsubmitwatcher", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L176", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_stopsubmitwatcher", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L384", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_tryextractfromactivepasswordfield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L570", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_waitforregistrationsuccess", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher", + "target": "packages_shared_src_vault_fieldtaxonomy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher", + "target": "packages_shared_src_vault_fieldtaxonomy_form_context_signals", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher", + "target": "packages_shared_src_vault_fieldtaxonomy_formcontext", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher", + "target": "packages_shared_src_vault_insertionpipeline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher", + "target": "packages_shared_src_vault_insertionpipeline_extractedcredentials", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher", + "target": "packages_shared_src_vault_insertionpipeline_isubmitwatcher", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L712", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher_isauthurl", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_auth_url_patterns" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L155", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher_startsubmitwatcher", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_commitpendingregistration", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher_startsubmitwatcher", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_handleformsubmit", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher_startsubmitwatcher", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_hookfetch", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L169", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher_startsubmitwatcher", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_hookhistory", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L166", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher_startsubmitwatcher", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_hookxhr", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher_startsubmitwatcher", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_ispasswordfield", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L158", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher_startsubmitwatcher", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_tryextractfromactivepasswordfield", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L220", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher_stopsubmitwatcher", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_cancelpendingregistration", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L260", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher_handleformsubmit", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_classifyformtype", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L300", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher_handleformsubmit", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_emitcredentials", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L257", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher_handleformsubmit", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_findusernamefield", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L247", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher_handleformsubmit", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_ispaymentform", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L282", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher_handleformsubmit", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_selectpassword", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L296", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher_handleformsubmit", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_waitforregistrationsuccess", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L321", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher_hookfetch", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_isauthurl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L327", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher_hookfetch", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_tryextractfromactivepasswordfield", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L347", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher_hookxhr", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_isauthurl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L350", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher_hookxhr", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_tryextractfromactivepasswordfield", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L367", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher_hookhistory", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_tryextractfromactivepasswordfield", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L407", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher_tryextractfromactivepasswordfield", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_classifyformtype", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L425", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher_tryextractfromactivepasswordfield", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_emitcredentials", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L399", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher_tryextractfromactivepasswordfield", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_findusernamefield", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L400", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher_tryextractfromactivepasswordfield", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_findusernamenearpassword", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L395", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher_tryextractfromactivepasswordfield", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_ispaymentform", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L421", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher_tryextractfromactivepasswordfield", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_waitforregistrationsuccess", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L575", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher_waitforregistrationsuccess", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_cancelpendingregistration", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L587", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher_waitforregistrationsuccess", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_commitpendingregistration", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L658", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher_commitpendingregistration", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_cancelpendingregistration", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L659", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher_commitpendingregistration", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_emitcredentials", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/submitWatcher.ts", + "source_location": "L724", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_submitwatcher_emitcredentials", + "target": "apps_extension_chromium_src_vault_autofill_submitwatcher_simplehash", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/tierConfig.ts", + "source_location": "L276", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tierconfig", + "target": "apps_extension_chromium_src_vault_autofill_tierconfig_autofillconfigoverrides", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/tierConfig.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tierconfig", + "target": "apps_extension_chromium_src_vault_autofill_tierconfig_autofilltierconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/tierConfig.ts", + "source_location": "L374", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tierconfig", + "target": "apps_extension_chromium_src_vault_autofill_tierconfig_configdiff", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/tierConfig.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tierconfig", + "target": "apps_extension_chromium_src_vault_autofill_tierconfig_consumer_config", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/tierConfig.ts", + "source_location": "L382", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tierconfig", + "target": "apps_extension_chromium_src_vault_autofill_tierconfig_diffconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/tierConfig.ts", + "source_location": "L188", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tierconfig", + "target": "apps_extension_chromium_src_vault_autofill_tierconfig_enterprise_config", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/tierConfig.ts", + "source_location": "L252", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tierconfig", + "target": "apps_extension_chromium_src_vault_autofill_tierconfig_getconfigfortier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/tierConfig.ts", + "source_location": "L290", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tierconfig", + "target": "apps_extension_chromium_src_vault_autofill_tierconfig_mergeconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/tierConfig.ts", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tierconfig", + "target": "apps_extension_chromium_src_vault_autofill_tierconfig_pro_config", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/tierConfig.ts", + "source_location": "L265", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tierconfig", + "target": "apps_extension_chromium_src_vault_autofill_tierconfig_tier_configs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/tierConfig.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tierconfig", + "target": "apps_extension_chromium_src_vault_autofill_tierconfig_tierband", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/tierConfig.ts", + "source_location": "L232", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tierconfig", + "target": "apps_extension_chromium_src_vault_autofill_tierconfig_tiertoband", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/tierConfig.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tierconfig", + "target": "packages_shared_src_vault_vaultcapabilities", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/tierConfig.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tierconfig", + "target": "packages_shared_src_vault_vaultcapabilities_vaulttier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/tierConfig.ts", + "source_location": "L253", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_tierconfig_getconfigfortier", + "target": "apps_extension_chromium_src_vault_autofill_tierconfig_tiertoband", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_togglesync", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_autofilltogglestate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L335", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_togglesync", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_broadcasttogglechange", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_togglesync", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_contentstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_togglesync", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_default_toggle_state", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L231", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_togglesync", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_geteffectivetoggles", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L218", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_togglesync", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_gettoggles", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L161", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_togglesync", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_handletogglerequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L188", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_togglesync", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_initcontenttogglesync", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L241", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_togglesync", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_isautofillactive", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L177", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_togglesync", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_listeners", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_togglesync", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_markvaultlocked", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_togglesync", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_msg_toggles_changed", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_togglesync", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_msg_toggles_request", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_togglesync", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_msg_vault_lock_state", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L278", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_togglesync", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_notifylisteners", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L251", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_togglesync", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_ontogglechange", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_togglesync", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_pushtoggleupdate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L293", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_togglesync", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_readtogglecache", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L259", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_togglesync", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_requesttogglesfrombackground", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_togglesync", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_synctogglesfromvault", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_togglesync", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_togglechangedmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_togglesync", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_togglerequestmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_togglesync", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_togglesyncmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_togglesync", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_vaultlockstatemessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L319", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_togglesync", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_writetogglecache", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_togglesync", + "target": "packages_shared_src_vault_fieldtaxonomy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_togglesync", + "target": "packages_shared_src_vault_fieldtaxonomy_autofillsectiontoggles", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_togglesync", + "target": "packages_shared_src_vault_fieldtaxonomy_default_section_toggles", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "apps_extension_chromium_src_vault_autofill_togglesync", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.test.ts", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_test", + "target": "apps_extension_chromium_src_vault_autofill_togglesync", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_togglesync_autofilltogglestate", + "target": "packages_shared_src_vault_fieldtaxonomy_autofillsectiontoggles", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_togglesync_synctogglesfromvault", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_broadcasttogglechange", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_togglesync_synctogglesfromvault", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_readtogglecache", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_togglesync_synctogglesfromvault", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_writetogglecache", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_togglesync_pushtoggleupdate", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_broadcasttogglechange", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_togglesync_pushtoggleupdate", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_readtogglecache", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_togglesync_pushtoggleupdate", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_writetogglecache", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L154", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_togglesync_markvaultlocked", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_broadcasttogglechange", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L150", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_togglesync_markvaultlocked", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_readtogglecache", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L153", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_togglesync_markvaultlocked", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_writetogglecache", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_togglesync_handletogglerequest", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_readtogglecache", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L194", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_togglesync_initcontenttogglesync", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_notifylisteners", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L211", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_togglesync_initcontenttogglesync", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_requesttogglesfrombackground", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_isautofillactive", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L232", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_handlewebmcpfillpreviewrequest", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_isautofillactive" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.test.ts", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_test", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_isautofillactive", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/toggleSync.ts", + "source_location": "L270", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_togglesync_requesttogglesfrombackground", + "target": "apps_extension_chromium_src_vault_autofill_togglesync_notifylisteners", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_vaultindex", + "target": "apps_extension_chromium_src_vault_autofill_vaultindex_buildindex", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L160", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_vaultindex", + "target": "apps_extension_chromium_src_vault_autofill_vaultindex_clearindex", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_vaultindex", + "target": "apps_extension_chromium_src_vault_autofill_vaultindex_entries", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L251", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_vaultindex", + "target": "apps_extension_chromium_src_vault_autofill_vaultindex_extractusername", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L185", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_vaultindex", + "target": "apps_extension_chromium_src_vault_autofill_vaultindex_hasentries", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L486", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_vaultindex", + "target": "apps_extension_chromium_src_vault_autofill_vaultindex_hasoriginmatches", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_vaultindex", + "target": "apps_extension_chromium_src_vault_autofill_vaultindex_indexentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L195", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_vaultindex", + "target": "apps_extension_chromium_src_vault_autofill_vaultindex_indexsize", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L177", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_vaultindex", + "target": "apps_extension_chromium_src_vault_autofill_vaultindex_invalidateindex", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L207", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_vaultindex", + "target": "apps_extension_chromium_src_vault_autofill_vaultindex_isindexstale", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L225", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_vaultindex", + "target": "apps_extension_chromium_src_vault_autofill_vaultindex_itemtoentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L269", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_vaultindex", + "target": "apps_extension_chromium_src_vault_autofill_vaultindex_maskusername", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L393", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_vaultindex", + "target": "apps_extension_chromium_src_vault_autofill_vaultindex_rankempty", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L325", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_vaultindex", + "target": "apps_extension_chromium_src_vault_autofill_vaultindex_scoreentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_vaultindex", + "target": "apps_extension_chromium_src_vault_autofill_vaultindex_searchindex", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L435", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_vaultindex", + "target": "apps_extension_chromium_src_vault_autofill_vaultindex_searchindexfiltered", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_vaultindex", + "target": "apps_extension_chromium_src_vault_autofill_vaultindex_searchresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L305", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_vaultindex", + "target": "apps_extension_chromium_src_vault_autofill_vaultindex_tokenize", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L287", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_vaultindex", + "target": "apps_extension_chromium_src_vault_autofill_vaultindex_usernamesearchhint", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_vaultindex", + "target": "apps_extension_chromium_src_vault_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_vaultindex", + "target": "apps_extension_chromium_src_vault_types_field", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_vaultindex", + "target": "apps_extension_chromium_src_vault_types_vaultitem", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_vaultindex", + "target": "packages_shared_src_vault_originpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_vaultindex", + "target": "packages_shared_src_vault_originpolicy_classifyrelevance", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_vaultindex", + "target": "packages_shared_src_vault_originpolicy_relevancetier", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_vaultindex", + "target": "packages_shared_src_vault_originpolicy_relevanceweight", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_vaultindex_buildindex", + "target": "apps_extension_chromium_src_vault_autofill_vaultindex_itemtoentry", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L151", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_vaultindex_searchindex", + "target": "apps_extension_chromium_src_vault_autofill_vaultindex_searchindexfiltered", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L226", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_vaultindex_itemtoentry", + "target": "apps_extension_chromium_src_vault_autofill_vaultindex_extractusername", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L243", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_vaultindex_itemtoentry", + "target": "apps_extension_chromium_src_vault_autofill_vaultindex_maskusername", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L246", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_vaultindex_itemtoentry", + "target": "apps_extension_chromium_src_vault_autofill_vaultindex_tokenize", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L234", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_vaultindex_itemtoentry", + "target": "apps_extension_chromium_src_vault_autofill_vaultindex_usernamesearchhint", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L445", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_vaultindex_searchindexfiltered", + "target": "apps_extension_chromium_src_vault_autofill_vaultindex_tokenize", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L370", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_vaultindex_scoreentry", + "target": "packages_shared_src_vault_originpolicy_classifyrelevance", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L371", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_vaultindex_scoreentry", + "target": "packages_shared_src_vault_originpolicy_relevanceweight", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L461", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_vaultindex_searchindexfiltered", + "target": "apps_extension_chromium_src_vault_autofill_vaultindex_scoreentry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L399", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_vaultindex_rankempty", + "target": "packages_shared_src_vault_originpolicy_classifyrelevance", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L400", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_vaultindex_rankempty", + "target": "packages_shared_src_vault_originpolicy_relevanceweight", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L455", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_vaultindex_searchindexfiltered", + "target": "apps_extension_chromium_src_vault_autofill_vaultindex_rankempty", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L466", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_vaultindex_searchindexfiltered", + "target": "packages_shared_src_vault_originpolicy_classifyrelevance" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/vaultIndex.ts", + "source_location": "L488", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_vaultindex_hasoriginmatches", + "target": "packages_shared_src_vault_originpolicy_classifyrelevance" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.test.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_test", + "target": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.test.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_test", + "target": "apps_extension_chromium_src_vault_autofill_webmcpadapter_all_webmcp_error_codes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.test.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_test", + "target": "apps_extension_chromium_src_vault_autofill_webmcpadapter_bg_webmcp_error_codes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.test.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_test", + "target": "apps_extension_chromium_src_vault_autofill_webmcpadapter_bgwebmcperrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.test.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_test", + "target": "apps_extension_chromium_src_vault_autofill_webmcpadapter_handlewebmcpfillpreviewrequest", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.test.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_test", + "target": "apps_extension_chromium_src_vault_autofill_webmcpadapter_iswebmcpresultv1", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.test.ts", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_test", + "target": "apps_extension_chromium_src_vault_autofill_webmcpadapter_test_makeinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.test.ts", + "source_location": "L161", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_test", + "target": "apps_extension_chromium_src_vault_autofill_webmcpadapter_test_makescanresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.test.ts", + "source_location": "L144", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_test", + "target": "apps_extension_chromium_src_vault_autofill_webmcpadapter_test_makevaultitem", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.test.ts", + "source_location": "L176", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_test", + "target": "apps_extension_chromium_src_vault_autofill_webmcpadapter_test_valid_params", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.test.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_test", + "target": "apps_extension_chromium_src_vault_autofill_webmcpadapter_webmcp_error_codes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.test.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_test", + "target": "apps_extension_chromium_src_vault_autofill_webmcpadapter_webmcp_result_version", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.test.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_test", + "target": "apps_extension_chromium_src_vault_autofill_webmcpadapter_webmcperrorcode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.test.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_test", + "target": "packages_shared_src_vault_originpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.test.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_test", + "target": "packages_shared_src_vault_originpolicy_ispublicsuffix", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.test.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_test", + "target": "packages_shared_src_vault_originpolicy_matchorigin", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "apps_extension_chromium_src_vault_autofill_webmcpadapter_all_webmcp_error_codes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "apps_extension_chromium_src_vault_autofill_webmcpadapter_bg_webmcp_error_codes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "apps_extension_chromium_src_vault_autofill_webmcpadapter_bgwebmcperrorcode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L619", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "apps_extension_chromium_src_vault_autofill_webmcpadapter_categorytosection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L215", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "apps_extension_chromium_src_vault_autofill_webmcpadapter_handlewebmcpfillpreviewrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L170", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "apps_extension_chromium_src_vault_autofill_webmcpadapter_iswebmcpresultv1", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L590", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "apps_extension_chromium_src_vault_autofill_webmcpadapter_itemtoprofile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L638", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "apps_extension_chromium_src_vault_autofill_webmcpadapter_mapfieldkeytokind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L483", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "apps_extension_chromium_src_vault_autofill_webmcpadapter_resolvedtarget", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L521", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "apps_extension_chromium_src_vault_autofill_webmcpadapter_resolvefromhints", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L549", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "apps_extension_chromium_src_vault_autofill_webmcpadapter_resolvefromscan", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L496", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "apps_extension_chromium_src_vault_autofill_webmcpadapter_resolveresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L511", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "apps_extension_chromium_src_vault_autofill_webmcpadapter_resolvetargets", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L685", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "apps_extension_chromium_src_vault_autofill_webmcpadapter_safeorigin", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L489", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "apps_extension_chromium_src_vault_autofill_webmcpadapter_scanmeta", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L628", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "apps_extension_chromium_src_vault_autofill_webmcpadapter_sectiontokindprefix", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "apps_extension_chromium_src_vault_autofill_webmcpadapter_valid_target_tags", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L443", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "apps_extension_chromium_src_vault_autofill_webmcpadapter_validateparams", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L438", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "apps_extension_chromium_src_vault_autofill_webmcpadapter_validationresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "apps_extension_chromium_src_vault_autofill_webmcpadapter_webmcp_error_codes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L153", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "apps_extension_chromium_src_vault_autofill_webmcpadapter_webmcp_result_version", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "apps_extension_chromium_src_vault_autofill_webmcpadapter_webmcpadapterresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "apps_extension_chromium_src_vault_autofill_webmcpadapter_webmcperrorcode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "apps_extension_chromium_src_vault_autofill_webmcpadapter_webmcpfillpreviewparams", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "apps_extension_chromium_src_vault_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "apps_extension_chromium_src_vault_types_field", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "packages_shared_src_vault_fieldtaxonomy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "packages_shared_src_vault_fieldtaxonomy_fieldentry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "packages_shared_src_vault_fieldtaxonomy_fieldkind", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "packages_shared_src_vault_fieldtaxonomy_vaultprofile", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "packages_shared_src_vault_insertionpipeline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "packages_shared_src_vault_insertionpipeline_computedisplayvalue", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "packages_shared_src_vault_insertionpipeline_default_masking", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "packages_shared_src_vault_insertionpipeline_fieldcandidate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "packages_shared_src_vault_insertionpipeline_overlaysession", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "packages_shared_src_vault_insertionpipeline_overlaytarget", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "packages_shared_src_vault_originpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "packages_shared_src_vault_originpolicy_ispublicsuffix", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter", + "target": "packages_shared_src_vault_originpolicy_matchorigin", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L180", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_iswebmcpresultv1", + "target": "apps_extension_chromium_src_vault_autofill_webmcpadapter_all_webmcp_error_codes" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L319", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_handlewebmcpfillpreviewrequest", + "target": "apps_extension_chromium_src_vault_autofill_webmcpadapter_itemtoprofile", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L320", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_handlewebmcpfillpreviewrequest", + "target": "apps_extension_chromium_src_vault_autofill_webmcpadapter_resolvetargets", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L265", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_handlewebmcpfillpreviewrequest", + "target": "apps_extension_chromium_src_vault_autofill_webmcpadapter_safeorigin", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L225", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_handlewebmcpfillpreviewrequest", + "target": "apps_extension_chromium_src_vault_autofill_webmcpadapter_validateparams", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L350", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_handlewebmcpfillpreviewrequest", + "target": "packages_shared_src_vault_insertionpipeline_computedisplayvalue" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L270", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_handlewebmcpfillpreviewrequest", + "target": "packages_shared_src_vault_originpolicy_ispublicsuffix" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L276", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_handlewebmcpfillpreviewrequest", + "target": "packages_shared_src_vault_originpolicy_matchorigin" + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L485", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_resolvedtarget", + "target": "packages_shared_src_vault_fieldtaxonomy_fieldentry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L516", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_resolvetargets", + "target": "apps_extension_chromium_src_vault_autofill_webmcpadapter_resolvefromhints", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L518", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_resolvetargets", + "target": "apps_extension_chromium_src_vault_autofill_webmcpadapter_resolvefromscan", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L591", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_itemtoprofile", + "target": "apps_extension_chromium_src_vault_autofill_webmcpadapter_categorytosection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L598", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_itemtoprofile", + "target": "apps_extension_chromium_src_vault_autofill_webmcpadapter_mapfieldkeytokind", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts", + "source_location": "L592", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpadapter_itemtoprofile", + "target": "apps_extension_chromium_src_vault_autofill_webmcpadapter_sectiontokindprefix", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/webMcpConstants.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_webmcpconstants", + "target": "apps_extension_chromium_src_vault_autofill_webmcpconstants_webmcp_result_version", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/writesKillSwitch.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_writeskillswitch", + "target": "apps_extension_chromium_src_vault_autofill_writeskillswitch_arewritesdisabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/writesKillSwitch.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_writeskillswitch", + "target": "apps_extension_chromium_src_vault_autofill_writeskillswitch_initwriteskillswitch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/writesKillSwitch.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_writeskillswitch", + "target": "apps_extension_chromium_src_vault_autofill_writeskillswitch_listeners", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/writesKillSwitch.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_writeskillswitch", + "target": "apps_extension_chromium_src_vault_autofill_writeskillswitch_notifylisteners", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/writesKillSwitch.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_writeskillswitch", + "target": "apps_extension_chromium_src_vault_autofill_writeskillswitch_onwritesdisabledchange", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/writesKillSwitch.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_writeskillswitch", + "target": "apps_extension_chromium_src_vault_autofill_writeskillswitch_setwritesdisabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/writesKillSwitch.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_writeskillswitch", + "target": "apps_extension_chromium_src_vault_autofill_writeskillswitch_testsetwritesdisabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/writesKillSwitch.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_writeskillswitch", + "target": "apps_extension_chromium_src_vault_autofill_writeskillswitch_writesdisabledlistener", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/autofill/writesKillSwitch.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_autofill_writeskillswitch_initwriteskillswitch", + "target": "apps_extension_chromium_src_vault_autofill_writeskillswitch_notifylisteners", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/capabilities.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_capabilities", + "target": "packages_shared_src_vault_vaultcapabilities", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/types.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_types", + "target": "apps_extension_chromium_src_vault_capabilities", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextDocumentReader.tsx", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentreader", + "target": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentreader_hscontextdocumentreader", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextDocumentReader.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentreader", + "target": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentreader_hscontextdocumentreaderprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextDocumentReader.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentreader", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextDocumentReader.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentreader", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_getdocumentfulltext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextDocumentReader.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentreader", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_getdocumentpage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextDocumentReader.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentreader", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_getdocumentpagecount", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextDocumentReader.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentreader", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_getdocumentpagelist", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextDocumentReader.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentreader", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_searchdocumentpages", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextDocumentUpload.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentupload", + "target": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentreader", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextDocumentReader.tsx", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentreader_hscontextdocumentreader", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_getdocumentfulltext" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextDocumentReader.tsx", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentreader_hscontextdocumentreader", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_getdocumentpage" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextDocumentReader.tsx", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentreader_hscontextdocumentreader", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_getdocumentpagecount" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextDocumentReader.tsx", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentreader_hscontextdocumentreader", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_getdocumentpagelist" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextDocumentReader.tsx", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentreader_hscontextdocumentreader", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_searchdocumentpages" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextDocumentUpload.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentupload", + "target": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentreader_hscontextdocumentreader", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextDocumentUpload.tsx", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentupload", + "target": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentupload_hscontextdocumentupload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextDocumentUpload.tsx", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentupload", + "target": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentupload_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextDocumentUpload.tsx", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentupload", + "target": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentupload_statusbadge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextDocumentUpload.tsx", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentupload", + "target": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentupload_suggestlabelfromfilename", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextDocumentUpload.tsx", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentupload", + "target": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentupload_suggesttypefromfilename", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextDocumentUpload.tsx", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentupload", + "target": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentupload_triggerdownload", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextDocumentUpload.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentupload", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextDocumentUpload.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentupload", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_deletehsprofiledocument", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextDocumentUpload.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentupload", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_gethsownerdocumentcontent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextDocumentUpload.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentupload", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_hasanthropicapikey", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextDocumentUpload.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentupload", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_profiledocumentsummary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextDocumentUpload.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentupload", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_retryextractionwithvision", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextDocumentUpload.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentupload", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_saveanthropicapikey", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextDocumentUpload.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentupload", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_updatehsprofiledocumentmeta", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextDocumentUpload.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentupload", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_uploadhsprofiledocument", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextDocumentUpload.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentupload", + "target": "packages_shared_src_handshake_hscontextfieldvalidation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextDocumentUpload.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentupload", + "target": "packages_shared_src_handshake_hscontextfieldvalidation_validatedocumentlabel", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor", + "target": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentupload", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextDocumentUpload.tsx", + "source_location": "L300", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentupload_hscontextdocumentupload", + "target": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentupload_triggerdownload", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextDocumentUpload.tsx", + "source_location": "L245", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentupload_hscontextdocumentupload", + "target": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentupload_suggestlabelfromfilename", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextDocumentUpload.tsx", + "source_location": "L246", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentupload_hscontextdocumentupload", + "target": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentupload_suggesttypefromfilename", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextDocumentUpload.tsx", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentupload_props", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_profiledocumentsummary", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextDocumentUpload.tsx", + "source_location": "L287", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentupload_hscontextdocumentupload", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_deletehsprofiledocument" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextDocumentUpload.tsx", + "source_location": "L298", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentupload_hscontextdocumentupload", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_gethsownerdocumentcontent" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextDocumentUpload.tsx", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentupload_hscontextdocumentupload", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_hasanthropicapikey" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextDocumentUpload.tsx", + "source_location": "L187", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentupload_hscontextdocumentupload", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_retryextractionwithvision" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextDocumentUpload.tsx", + "source_location": "L206", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentupload_hscontextdocumentupload", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_saveanthropicapikey" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextDocumentUpload.tsx", + "source_location": "L276", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentupload_hscontextdocumentupload", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_updatehsprofiledocumentmeta" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextDocumentUpload.tsx", + "source_location": "L257", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentupload_hscontextdocumentupload", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_uploadhsprofiledocument" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextDocumentUpload.tsx", + "source_location": "L251", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentupload_hscontextdocumentupload", + "target": "packages_shared_src_handshake_hscontextfieldvalidation_validatedocumentlabel" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor", + "target": "apps_extension_chromium_src_vault_hscontext_hscontextdocumentupload_hscontextdocumentupload", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor", + "target": "apps_extension_chromium_src_vault_hscontext_hscontextdraftlogic", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor", + "target": "apps_extension_chromium_src_vault_hscontext_hscontextdraftlogic_shoulddeletedraftoncancel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor", + "target": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor_documenticon", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor", + "target": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor_empty_customs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor", + "target": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor_empty_fields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor", + "target": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor_getceoforcontact", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor", + "target": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor_getcompanyfieldvalue", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L216", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor", + "target": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor_hscontextprofileeditor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor", + "target": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor_mapcompanytoprofilefields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor", + "target": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor_parsecompanyfieldstopaymentmethods", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor", + "target": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L159", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor", + "target": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor_sectioncustomfields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor", + "target": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor_sectioncustomfieldsprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_createhsprofile", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_createprofileinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_customfield", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_deletehsprofile", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_gethsprofile", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_hscontextprofiledetail", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_paymentmethod", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_paymentmethodbankaccount", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_profiledocumentsummary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_profilefields", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_updatehsprofile", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_updateprofileinput", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor", + "target": "apps_extension_chromium_src_vault_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor", + "target": "apps_extension_chromium_src_vault_types_vaultitem", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor", + "target": "packages_shared_src_handshake_hscontextfieldvalidation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor", + "target": "packages_shared_src_handshake_hscontextfieldvalidation_validateemail", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor", + "target": "packages_shared_src_handshake_hscontextfieldvalidation_validateidentifier", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor", + "target": "packages_shared_src_handshake_hscontextfieldvalidation_validateopeninghoursentry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor", + "target": "packages_shared_src_handshake_hscontextfieldvalidation_validatephone", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor", + "target": "packages_shared_src_handshake_hscontextfieldvalidation_validateplaintext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor", + "target": "packages_shared_src_handshake_hscontextfieldvalidation_validateurl", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileList.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofilelist", + "target": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor_getceoforcontact", + "target": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor_getcompanyfieldvalue", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor_mapcompanytoprofilefields", + "target": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor_getcompanyfieldvalue", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor_parsecompanyfieldstopaymentmethods", + "target": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor_getcompanyfieldvalue", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor_mapcompanytoprofilefields", + "target": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor_parsecompanyfieldstopaymentmethods", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L498", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor_hscontextprofileeditor", + "target": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor_mapcompanytoprofilefields", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L517", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor_hscontextprofileeditor", + "target": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor_getceoforcontact", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L661", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor_hscontextprofileeditor", + "target": "apps_extension_chromium_src_vault_hscontext_hscontextdraftlogic_shoulddeletedraftoncancel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L476", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor_hscontextprofileeditor", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_createhsprofile" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L662", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor_hscontextprofileeditor", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_deletehsprofile" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L303", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor_hscontextprofileeditor", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_gethsprofile" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L643", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor_hscontextprofileeditor", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_updatehsprofile" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L369", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor_hscontextprofileeditor", + "target": "packages_shared_src_handshake_hscontextfieldvalidation_validateemail" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L408", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor_hscontextprofileeditor", + "target": "packages_shared_src_handshake_hscontextfieldvalidation_validateidentifier" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L423", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor_hscontextprofileeditor", + "target": "packages_shared_src_handshake_hscontextfieldvalidation_validateopeninghoursentry" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L374", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor_hscontextprofileeditor", + "target": "packages_shared_src_handshake_hscontextfieldvalidation_validatephone" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L414", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor_hscontextprofileeditor", + "target": "packages_shared_src_handshake_hscontextfieldvalidation_validateplaintext" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx", + "source_location": "L363", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor_hscontextprofileeditor", + "target": "packages_shared_src_handshake_hscontextfieldvalidation_validateurl" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileList.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofilelist", + "target": "apps_extension_chromium_src_vault_hscontext_hscontextprofileeditor_hscontextprofileeditor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileList.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofilelist", + "target": "apps_extension_chromium_src_vault_hscontext_hscontextprofilelist_hscontextprofilelist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileList.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofilelist", + "target": "apps_extension_chromium_src_vault_hscontext_hscontextprofilelist_props", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileList.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofilelist", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileList.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofilelist", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_archivehsprofile", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileList.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofilelist", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_deletehsprofile", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileList.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofilelist", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_duplicatehsprofile", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileList.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofilelist", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_hscontextprofilesummary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileList.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofilelist", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_listhsprofiles", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_mounthscontextprofilelistfullreplace", + "target": "apps_extension_chromium_src_vault_hscontext_hscontextprofilelist", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_mounthscontextprofilelistinlistarea", + "target": "apps_extension_chromium_src_vault_hscontext_hscontextprofilelist", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileList.tsx", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofilelist_hscontextprofilelist", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_archivehsprofile" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileList.tsx", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofilelist_hscontextprofilelist", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_deletehsprofile" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileList.tsx", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofilelist_hscontextprofilelist", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_duplicatehsprofile" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/vault/hsContext/HsContextProfileList.tsx", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextprofilelist_hscontextprofilelist", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_listhsprofiles" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/__tests__/hsContextDraftLogic.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_tests_hscontextdraftlogic_test", + "target": "apps_extension_chromium_src_vault_hscontext_hscontextdraftlogic", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/__tests__/hsContextDraftLogic.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_tests_hscontextdraftlogic_test", + "target": "apps_extension_chromium_src_vault_hscontext_hscontextdraftlogic_resolvenameafterdraftcreation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/__tests__/hsContextDraftLogic.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_tests_hscontextdraftlogic_test", + "target": "apps_extension_chromium_src_vault_hscontext_hscontextdraftlogic_shoulddeletedraftoncancel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/hsContextDraftLogic.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextdraftlogic", + "target": "apps_extension_chromium_src_vault_hscontext_hscontextdraftlogic_resolvenameafterdraftcreation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContext/hsContextDraftLogic.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontext_hscontextdraftlogic", + "target": "apps_extension_chromium_src_vault_hscontext_hscontextdraftlogic_shoulddeletedraftoncancel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L234", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontextprofilesrpc", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_archivehsprofile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L255", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontextprofilesrpc", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_arraybuffertobase64", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L215", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontextprofilesrpc", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_createhsprofile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L179", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontextprofilesrpc", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_createprofileinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontextprofilesrpc", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_customfield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L238", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontextprofilesrpc", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_deletehsprofile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L312", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontextprofilesrpc", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_deletehsprofiledocument", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L448", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontextprofilesrpc", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_documentsearchmatch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L242", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontextprofilesrpc", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_duplicatehsprofile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L440", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontextprofilesrpc", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_getdocumentfulltext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L422", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontextprofilesrpc", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_getdocumentpage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L414", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontextprofilesrpc", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_getdocumentpagecount", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L430", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontextprofilesrpc", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_getdocumentpagelist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L321", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontextprofilesrpc", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_gethsownerdocumentcontent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L207", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontextprofilesrpc", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_gethsprofile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L381", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontextprofilesrpc", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_hasanthropicapikey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L173", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontextprofilesrpc", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_hscontextprofiledetail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontextprofilesrpc", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_hscontextprofilesummary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontextprofilesrpc", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_listhsprofiles", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontextprofilesrpc", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_nextrpcid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontextprofilesrpc", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_paymentmethod", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontextprofilesrpc", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_paymentmethodbankaccount", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontextprofilesrpc", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_paymentmethodcreditcard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontextprofilesrpc", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_paymentmethodpaypal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontextprofilesrpc", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_paymentmethodtype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L157", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontextprofilesrpc", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_profiledocumentsummary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontextprofilesrpc", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_profilefields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L392", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontextprofilesrpc", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_removeanthropicapikey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L355", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontextprofilesrpc", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_requestlinkopenapproval", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L339", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontextprofilesrpc", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_requestoriginaldocument", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L401", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontextprofilesrpc", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_retryextractionwithvision", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L374", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontextprofilesrpc", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_saveanthropicapikey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L454", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontextprofilesrpc", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_searchdocumentpages", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontextprofilesrpc", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_sendvaultrpc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L223", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontextprofilesrpc", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_updatehsprofile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L301", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontextprofilesrpc", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_updatehsprofiledocumentmeta", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L188", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontextprofilesrpc", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_updateprofileinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L273", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontextprofilesrpc", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_uploadhsprofiledocument", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontextprofilesrpc_sendvaultrpc", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_nextrpcid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L235", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontextprofilesrpc_archivehsprofile", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_sendvaultrpc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L239", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontextprofilesrpc_deletehsprofile", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_sendvaultrpc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L313", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontextprofilesrpc_deletehsprofiledocument", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_sendvaultrpc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L393", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontextprofilesrpc_removeanthropicapikey", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_sendvaultrpc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L375", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontextprofilesrpc_saveanthropicapikey", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_sendvaultrpc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L305", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontextprofilesrpc_updatehsprofiledocumentmeta", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_sendvaultrpc", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L173", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontextprofilesrpc_hscontextprofiledetail", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_hscontextprofilesummary", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts", + "source_location": "L281", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_hscontextprofilesrpc_uploadhsprofiledocument", + "target": "apps_extension_chromium_src_vault_hscontextprofilesrpc_arraybuffertobase64", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/types.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_types", + "target": "apps_extension_chromium_src_vault_types_automation_secret_standard_fields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/types.ts", + "source_location": "L181", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_types", + "target": "apps_extension_chromium_src_vault_types_categorynode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/types.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_types", + "target": "apps_extension_chromium_src_vault_types_company_standard_fields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/types.ts", + "source_location": "L134", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_types", + "target": "apps_extension_chromium_src_vault_types_container", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/types.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_types", + "target": "apps_extension_chromium_src_vault_types_containertype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/types.ts", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_types", + "target": "apps_extension_chromium_src_vault_types_document_standard_fields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/types.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_types", + "target": "apps_extension_chromium_src_vault_types_field", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/types.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_types", + "target": "apps_extension_chromium_src_vault_types_fieldtype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/types.ts", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_types", + "target": "apps_extension_chromium_src_vault_types_handshake_context_standard_fields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/types.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_types", + "target": "apps_extension_chromium_src_vault_types_identity_standard_fields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/types.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_types", + "target": "apps_extension_chromium_src_vault_types_itemcategory", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/types.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_types", + "target": "apps_extension_chromium_src_vault_types_password_standard_fields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/types.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_types", + "target": "apps_extension_chromium_src_vault_types_payment_fields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/types.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_types", + "target": "apps_extension_chromium_src_vault_types_standardfielddef", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/types.ts", + "source_location": "L151", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_types", + "target": "apps_extension_chromium_src_vault_types_vaultitem", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/types.ts", + "source_location": "L192", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_types", + "target": "apps_extension_chromium_src_vault_types_vaultsettings", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/types.ts", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_types", + "target": "apps_extension_chromium_src_vault_types_vaultstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_types_standardfielddef", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_types_identity_standard_fields", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_types_payment_fields", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_types_company_standard_fields", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_types_password_standard_fields", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_types_automation_secret_standard_fields", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_types_handshake_context_standard_fields", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_types_container", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_types_vaultitem", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_types_vaultstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_types_categorynode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1422", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_addaddbuttonstotree", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L190", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_applyvaulttheme", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1069", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_buildsidebarcategorieshtml", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_canusehscontextprofiles", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L2578", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_copytoclipboard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_detectvaulttheme", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1647", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_downloaddocument", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L240", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_ensureconnected", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L4454", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_escapehtml", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1507", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_formatbytes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L438", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_initvaultui", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L4838", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_loadautoconsentforvault", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L2431", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_loadcontaineritems", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L2399", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_loadcontainersintotree", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1514", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_loaddocumentslist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1879", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_loadhandshakecontextlist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L4806", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_loadonboardingseen", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1388", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_loadvaultitems", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1348", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_loadvaultitemsbycontainer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_mounthscontextprofilelistfullreplace", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_mounthscontextprofilelistinlistarea", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L260", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_openvaultlightbox", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L4439", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_parsedateofbirth", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L3087", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_parsepaymentmethodsfromitem", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L3117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_renderadddatadialog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L2268", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_renderattachevaldialog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L2454", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_rendercontainerdata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L549", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_rendercreatevaultscreen", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1593", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_renderdocumentrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1680", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_renderdocumentuploaddialog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L4251", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_rendereditdatadialog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L2033", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_renderhandshakecontextdialog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L3027", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_renderitemcard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1384", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_renderitemslist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L2861", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_renderitemviewmodal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L2605", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_renderlistitemrow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L4524", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_rendersettingsscreen", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L853", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_renderunlockscreen", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1121", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_rendervaultdashboard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L251", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_restoredashboardafterdialogclose", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L4828", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_saveautoconsent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L4818", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_saveonboardingseen", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L5009", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_showqsoonboardingdialog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L4992", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_showqsoonboardingifneeded", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L4461", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_showsuccessnotification", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L4854", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_showvaultautoconsentdialog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1054", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_sidebar_category_config", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_unmounthscontextprofilelist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_vault_themes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_vaultthemename", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "packages_shared_src_vault_vaultcapabilities_all_item_categories", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "packages_shared_src_vault_vaultcapabilities_attachevalresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "packages_shared_src_vault_vaultcapabilities_canaccesscategory", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "packages_shared_src_vault_vaultcapabilities_canaccessrecordtype", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "packages_shared_src_vault_vaultcapabilities_canattachcontext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "packages_shared_src_vault_vaultcapabilities_category_ui_map", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "packages_shared_src_vault_vaultcapabilities_default_binding_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "packages_shared_src_vault_vaultcapabilities_getcategoryoptionsfortier", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "packages_shared_src_vault_vaultcapabilities_handshakebindingpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "packages_shared_src_vault_vaultcapabilities_handshaketarget", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "packages_shared_src_vault_vaultcapabilities_legacyitemcategory", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "packages_shared_src_vault_vaultcapabilities_record_type_display", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "packages_shared_src_vault_vaultcapabilities_record_type_min_tier", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript", + "target": "packages_shared_src_vault_vaultcapabilities_vaulttier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_canusehscontextprofiles", + "target": "packages_shared_src_vault_vaultcapabilities_canaccessrecordtype", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1880", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_loadhandshakecontextlist", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_canusehscontextprofiles", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L3125", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_renderadddatadialog", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_canusehscontextprofiles", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1278", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_rendervaultdashboard", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_canusehscontextprofiles", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L2432", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_loadcontaineritems", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_unmounthscontextprofilelist", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1515", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_loaddocumentslist", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_unmounthscontextprofilelist", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1884", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_loadhandshakecontextlist", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_unmounthscontextprofilelist", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1389", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_loadvaultitems", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_unmounthscontextprofilelist", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1349", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_loadvaultitemsbycontainer", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_unmounthscontextprofilelist", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_mounthscontextprofilelistfullreplace", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_unmounthscontextprofilelist", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_mounthscontextprofilelistinlistarea", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_unmounthscontextprofilelist", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1881", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_loadhandshakecontextlist", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_mounthscontextprofilelistinlistarea", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_mounthscontextprofilelistinlistarea", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_detectvaulttheme", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_mounthscontextprofilelistfullreplace", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_detectvaulttheme", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_mounthscontextprofilelistfullreplace", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_restoredashboardafterdialogclose", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L3127", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_renderadddatadialog", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_mounthscontextprofilelistfullreplace", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1280", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_rendervaultdashboard", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_mounthscontextprofilelistfullreplace", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_applyvaulttheme", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_detectvaulttheme", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L267", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_openvaultlightbox", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_applyvaulttheme", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L442", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_initvaultui", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_ensureconnected", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L3975", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_renderadddatadialog", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_restoredashboardafterdialogclose", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L2330", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_renderattachevaldialog", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_restoredashboardafterdialogclose", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1776", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_renderdocumentuploaddialog", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_restoredashboardafterdialogclose", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L2175", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_renderhandshakecontextdialog", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_restoredashboardafterdialogclose", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L255", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_restoredashboardafterdialogclose", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_addaddbuttonstotree", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L254", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_restoredashboardafterdialogclose", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_loadcontainersintotree", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L256", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_restoredashboardafterdialogclose", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_loadvaultitems", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L252", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_restoredashboardafterdialogclose", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_rendervaultdashboard", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L432", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_openvaultlightbox", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_initvaultui", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L397", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_openvaultlightbox", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_loadautoconsentforvault", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L406", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_openvaultlightbox", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_saveautoconsent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L402", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_openvaultlightbox", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_showvaultautoconsentdialog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L468", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_initvaultui", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_rendercreatevaultscreen", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L466", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_initvaultui", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_renderunlockscreen", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L463", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_initvaultui", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_rendervaultdashboard", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L4788", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_rendersettingsscreen", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_initvaultui", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L840", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_rendercreatevaultscreen", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_rendervaultdashboard", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1045", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_renderunlockscreen", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_rendercreatevaultscreen", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1028", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_renderunlockscreen", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_rendervaultdashboard", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1077", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_buildsidebarcategorieshtml", + "target": "packages_shared_src_vault_vaultcapabilities_canaccesscategory", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1137", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_rendervaultdashboard", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_buildsidebarcategorieshtml", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L4223", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_renderadddatadialog", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_rendervaultdashboard", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L4604", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_rendersettingsscreen", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_rendervaultdashboard", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1225", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_rendervaultdashboard", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_addaddbuttonstotree", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1320", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_rendervaultdashboard", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_loadcontaineritems", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1224", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_rendervaultdashboard", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_loadcontainersintotree", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1274", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_rendervaultdashboard", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_loaddocumentslist", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1276", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_rendervaultdashboard", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_loadhandshakecontextlist", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1223", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_rendervaultdashboard", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_loadvaultitems", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1295", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_rendervaultdashboard", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_renderdocumentuploaddialog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1282", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_rendervaultdashboard", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_renderhandshakecontextdialog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1337", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_rendervaultdashboard", + "target": "packages_shared_src_vault_vaultcapabilities_getcategoryoptionsfortier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1376", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_loadvaultitemsbycontainer", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_rendercontainerdata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1385", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_renderitemslist", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_rendercontainerdata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1414", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_loadvaultitems", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_rendercontainerdata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L4230", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_renderadddatadialog", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_loadvaultitems", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L4422", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_rendereditdatadialog", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_loadvaultitems", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1458", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_addaddbuttonstotree", + "target": "packages_shared_src_vault_vaultcapabilities_canaccesscategory", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L4228", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_renderadddatadialog", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_addaddbuttonstotree", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L2568", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_rendercontainerdata", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_addaddbuttonstotree", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L4425", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_rendereditdatadialog", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_addaddbuttonstotree", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1595", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_renderdocumentrow", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_formatbytes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1797", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_renderdocumentuploaddialog", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_formatbytes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1572", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_loaddocumentslist", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_downloaddocument", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1558", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_loaddocumentslist", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_renderdocumentrow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1539", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_loaddocumentslist", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_renderdocumentuploaddialog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1615", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_renderdocumentrow", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_escapehtml", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L3120", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_renderadddatadialog", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_renderdocumentuploaddialog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1965", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_loadhandshakecontextlist", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_escapehtml", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1990", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_loadhandshakecontextlist", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_renderattachevaldialog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L1901", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_loadhandshakecontextlist", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_renderhandshakecontextdialog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L3129", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_renderadddatadialog", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_renderhandshakecontextdialog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L2094", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_renderhandshakecontextdialog", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_escapehtml", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L2360", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_renderattachevaldialog", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_escapehtml", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L4227", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_renderadddatadialog", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_loadcontainersintotree", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L2567", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_rendercontainerdata", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_loadcontainersintotree", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L4424", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_rendereditdatadialog", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_loadcontainersintotree", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L2445", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_loadcontaineritems", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_rendercontainerdata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L4420", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_rendereditdatadialog", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_loadcontaineritems", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L2489", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_rendercontainerdata", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_copytoclipboard", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L2540", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_rendercontainerdata", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_rendereditdatadialog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L2476", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_rendercontainerdata", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_renderlistitemrow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L2686", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_renderlistitemrow", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_escapehtml", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L2634", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_renderlistitemrow", + "target": "packages_shared_src_vault_vaultcapabilities_canaccesscategory", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L2885", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_renderitemviewmodal", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_escapehtml", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L3029", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_renderitemcard", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_escapehtml", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L3941", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_renderadddatadialog", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_parsepaymentmethodsfromitem", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L3451", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_renderadddatadialog", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_escapehtml", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L4215", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_renderadddatadialog", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_showqsoonboardingifneeded", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L4211", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_renderadddatadialog", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_showsuccessnotification", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L3147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_renderadddatadialog", + "target": "packages_shared_src_vault_vaultcapabilities_getcategoryoptionsfortier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L4253", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_rendereditdatadialog", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_renderadddatadialog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L4279", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_rendereditdatadialog", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_parsedateofbirth", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L4416", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_rendereditdatadialog", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_showsuccessnotification", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L4483", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_showsuccessnotification", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_escapehtml", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L4994", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_showqsoonboardingifneeded", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_loadonboardingseen", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L4999", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_showqsoonboardingifneeded", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_saveonboardingseen", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L5002", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_showqsoonboardingifneeded", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_saveautoconsent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vault/vault-ui-typescript.ts", + "source_location": "L4997", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vault_vault_ui_typescript_showqsoonboardingifneeded", + "target": "apps_extension_chromium_src_vault_vault_ui_typescript_showqsoonboardingdialog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/vite-env.d.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_vite_env_d", + "target": "apps_extension_chromium_src_vite_env_d_importmetaenv", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/EmailProvidersSection.remoteSyncBadge.test.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_emailproviderssection_remotesyncbadge_test", + "target": "apps_extension_chromium_src_wrguard_components_emailproviderssection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/EmailProvidersSection.remoteSyncBadge.test.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_emailproviderssection_remotesyncbadge_test", + "target": "apps_extension_chromium_src_wrguard_components_emailproviderssection_emailaccount", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/EmailProvidersSection.remoteSyncBadge.test.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_emailproviderssection_remotesyncbadge_test", + "target": "apps_extension_chromium_src_wrguard_components_emailproviderssection_emailproviderssection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/EmailProvidersSection.remoteSyncBadge.test.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_emailproviderssection_remotesyncbadge_test", + "target": "apps_extension_chromium_src_wrguard_components_emailproviderssection_remotesyncbadge_test_gmailaccount", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/EmailProvidersSection.remoteSyncBadge.test.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_emailproviderssection_remotesyncbadge_test", + "target": "apps_extension_chromium_src_wrguard_components_emailproviderssection_remotesyncbadge_test_noop", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/EmailProvidersSection.remoteSyncBadge.test.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_emailproviderssection_remotesyncbadge_test", + "target": "apps_extension_chromium_src_wrguard_components_emailproviderssection_remotesyncbadge_test_renderproviders", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/EmailProvidersSection.tsx", + "source_location": "L165", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_emailproviderssection", + "target": "apps_extension_chromium_src_wrguard_components_emailproviderssection_accountconnectionbadge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/EmailProvidersSection.tsx", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_emailproviderssection", + "target": "apps_extension_chromium_src_wrguard_components_emailproviderssection_emailaccount", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/EmailProvidersSection.tsx", + "source_location": "L224", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_emailproviderssection", + "target": "apps_extension_chromium_src_wrguard_components_emailproviderssection_emailproviderssection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/EmailProvidersSection.tsx", + "source_location": "L192", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_emailproviderssection", + "target": "apps_extension_chromium_src_wrguard_components_emailproviderssection_emailproviderssectionprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/EmailProvidersSection.tsx", + "source_location": "L154", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_emailproviderssection", + "target": "apps_extension_chromium_src_wrguard_components_emailproviderssection_pausedrownotestyle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/EmailProvidersSection.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_emailproviderssection", + "target": "apps_extension_chromium_src_wrguard_components_emailproviderssection_providerdisplaylabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/EmailProvidersSection.tsx", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_emailproviderssection", + "target": "apps_extension_chromium_src_wrguard_components_emailproviderssection_remotesyncbadge", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/EmailProvidersSection.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_emailproviderssection", + "target": "apps_extension_chromium_src_wrguard_components_ingestiontopologyexplainer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/EmailProvidersSection.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_emailproviderssection", + "target": "apps_extension_chromium_src_wrguard_components_ingestiontopologyexplainer_ingestiontopologyexplainer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/EmailProvidersSection.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_emailproviderssection", + "target": "apps_extension_chromium_src_wrguard_components_ingestiontopologyexplainer_ingestiontopologystatus", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/index.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_index", + "target": "apps_extension_chromium_src_wrguard_components_emailproviderssection", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/WRGuardWorkspace.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_wrguardworkspace", + "target": "apps_extension_chromium_src_wrguard_components_emailproviderssection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/EmailProvidersSection.tsx", + "source_location": "L395", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_emailproviderssection_emailproviderssection", + "target": "apps_extension_chromium_src_wrguard_components_emailproviderssection_providerdisplaylabel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/WRGuardWorkspace.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_wrguardworkspace", + "target": "apps_extension_chromium_src_wrguard_components_emailproviderssection_emailaccount", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/WRGuardWorkspace.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_wrguardworkspace_wrguardworkspaceprops", + "target": "apps_extension_chromium_src_wrguard_components_emailproviderssection_emailaccount", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/EmailProvidersSection.tsx", + "source_location": "L437", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_emailproviderssection_emailproviderssection", + "target": "apps_extension_chromium_src_wrguard_components_emailproviderssection_pausedrownotestyle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/EmailProvidersSection.tsx", + "source_location": "L331", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_emailproviderssection_emailproviderssection", + "target": "apps_extension_chromium_src_wrguard_components_emailproviderssection_accountconnectionbadge", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/EmailProvidersSection.tsx", + "source_location": "L215", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_emailproviderssection_emailproviderssectionprops", + "target": "apps_extension_chromium_src_wrguard_components_ingestiontopologyexplainer_ingestiontopologystatus", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/index.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_index", + "target": "apps_extension_chromium_src_wrguard_components_emailproviderssection_emailproviderssection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/WRGuardWorkspace.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_wrguardworkspace", + "target": "apps_extension_chromium_src_wrguard_components_emailproviderssection_emailproviderssection", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/index.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_index", + "target": "apps_extension_chromium_src_wrguard_components_emailproviderssection_emailproviderssection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/IngestionTopologyExplainer.tsx", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_ingestiontopologyexplainer", + "target": "apps_extension_chromium_src_wrguard_components_ingestiontopologyexplainer_derivescenario", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/IngestionTopologyExplainer.tsx", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_ingestiontopologyexplainer", + "target": "apps_extension_chromium_src_wrguard_components_ingestiontopologyexplainer_explainerscenario", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/IngestionTopologyExplainer.tsx", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_ingestiontopologyexplainer", + "target": "apps_extension_chromium_src_wrguard_components_ingestiontopologyexplainer_ingestiontopologyexplainer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/IngestionTopologyExplainer.tsx", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_ingestiontopologyexplainer", + "target": "apps_extension_chromium_src_wrguard_components_ingestiontopologyexplainer_ingestiontopologyexplainerprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/IngestionTopologyExplainer.tsx", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_ingestiontopologyexplainer", + "target": "apps_extension_chromium_src_wrguard_components_ingestiontopologyexplainer_ingestiontopologystatus", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/IngestionTopologyExplainer.tsx", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_ingestiontopologyexplainer_ingestiontopologyexplainer", + "target": "apps_extension_chromium_src_wrguard_components_ingestiontopologyexplainer_derivescenario", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_index", + "target": "apps_extension_chromium_src_wrguard_components_policiesoverviewsection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/PoliciesOverviewSection.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_policiesoverviewsection", + "target": "apps_extension_chromium_src_wrguard_components_policiesoverviewsection_policiesoverviewsection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/PoliciesOverviewSection.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_policiesoverviewsection", + "target": "apps_extension_chromium_src_wrguard_components_policiesoverviewsection_policiesoverviewsectionprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/PoliciesOverviewSection.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_policiesoverviewsection", + "target": "apps_extension_chromium_src_wrguard_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/PoliciesOverviewSection.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_policiesoverviewsection", + "target": "apps_extension_chromium_src_wrguard_types_policyposture", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/PoliciesOverviewSection.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_policiesoverviewsection", + "target": "apps_extension_chromium_src_wrguard_usewrguardstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/PoliciesOverviewSection.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_policiesoverviewsection", + "target": "apps_extension_chromium_src_wrguard_usewrguardstore_usewrguardstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/WRGuardWorkspace.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_wrguardworkspace", + "target": "apps_extension_chromium_src_wrguard_components_policiesoverviewsection", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_index", + "target": "apps_extension_chromium_src_wrguard_components_policiesoverviewsection_policiesoverviewsection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/wrguard/components/PoliciesOverviewSection.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_policiesoverviewsection_policiesoverviewsection", + "target": "apps_extension_chromium_src_wrguard_usewrguardstore_usewrguardstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/WRGuardWorkspace.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_wrguardworkspace", + "target": "apps_extension_chromium_src_wrguard_components_policiesoverviewsection_policiesoverviewsection", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/index.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_index", + "target": "apps_extension_chromium_src_wrguard_components_policiesoverviewsection_policiesoverviewsection", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/index.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_index", + "target": "apps_extension_chromium_src_wrguard_components_protectedsiteslist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/ProtectedSitesList.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_protectedsiteslist", + "target": "apps_extension_chromium_src_wrguard_components_protectedsiteslist_protectedsiteslist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/ProtectedSitesList.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_protectedsiteslist", + "target": "apps_extension_chromium_src_wrguard_components_protectedsiteslist_protectedsiteslistprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/ProtectedSitesList.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_protectedsiteslist", + "target": "apps_extension_chromium_src_wrguard_components_protectedsiteslist_source_labels", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/ProtectedSitesList.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_protectedsiteslist", + "target": "apps_extension_chromium_src_wrguard_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/ProtectedSitesList.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_protectedsiteslist", + "target": "apps_extension_chromium_src_wrguard_types_protectedsite", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/ProtectedSitesList.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_protectedsiteslist", + "target": "apps_extension_chromium_src_wrguard_types_protectedsitesource", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/ProtectedSitesList.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_protectedsiteslist", + "target": "apps_extension_chromium_src_wrguard_usewrguardstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/ProtectedSitesList.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_protectedsiteslist", + "target": "apps_extension_chromium_src_wrguard_usewrguardstore_usewrguardstore", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/index.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_index", + "target": "apps_extension_chromium_src_wrguard_components_protectedsiteslist_protectedsiteslist", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/wrguard/components/ProtectedSitesList.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_protectedsiteslist_protectedsiteslist", + "target": "apps_extension_chromium_src_wrguard_usewrguardstore_usewrguardstore" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/index.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_index", + "target": "apps_extension_chromium_src_wrguard_components_protectedsiteslist_protectedsiteslist", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/index.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_index", + "target": "apps_extension_chromium_src_wrguard_components_protectedsitessection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/ProtectedSitesSection.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_protectedsitessection", + "target": "apps_extension_chromium_src_wrguard_components_protectedsitessection_protectedsitessection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/ProtectedSitesSection.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_protectedsitessection", + "target": "apps_extension_chromium_src_wrguard_components_protectedsitessection_protectedsitessectionprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/ProtectedSitesSection.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_protectedsitessection", + "target": "apps_extension_chromium_src_wrguard_usewrguardstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/ProtectedSitesSection.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_protectedsitessection", + "target": "apps_extension_chromium_src_wrguard_usewrguardstore_usewrguardstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/WRGuardWorkspace.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_wrguardworkspace", + "target": "apps_extension_chromium_src_wrguard_components_protectedsitessection", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/index.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_index", + "target": "apps_extension_chromium_src_wrguard_components_protectedsitessection_protectedsitessection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/wrguard/components/ProtectedSitesSection.tsx", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_protectedsitessection_protectedsitessection", + "target": "apps_extension_chromium_src_wrguard_usewrguardstore_usewrguardstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/WRGuardWorkspace.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_wrguardworkspace", + "target": "apps_extension_chromium_src_wrguard_components_protectedsitessection_protectedsitessection", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/index.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_index", + "target": "apps_extension_chromium_src_wrguard_components_protectedsitessection_protectedsitessection", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/index.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_index", + "target": "apps_extension_chromium_src_wrguard_components_runtimeconfiglightbox", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/RuntimeConfigLightbox.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_runtimeconfiglightbox", + "target": "apps_extension_chromium_src_wrguard_components_runtimeconfiglightbox_runtimeconfiglightbox", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/RuntimeConfigLightbox.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_runtimeconfiglightbox", + "target": "apps_extension_chromium_src_wrguard_components_runtimeconfiglightbox_runtimeconfiglightboxprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/RuntimeConfigLightbox.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_runtimeconfiglightbox", + "target": "apps_extension_chromium_src_wrguard_usewrguardstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/RuntimeConfigLightbox.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_runtimeconfiglightbox", + "target": "apps_extension_chromium_src_wrguard_usewrguardstore_usewrguardstore", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/index.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_index", + "target": "apps_extension_chromium_src_wrguard_components_runtimeconfiglightbox_runtimeconfiglightbox", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/wrguard/components/RuntimeConfigLightbox.tsx", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_runtimeconfiglightbox_runtimeconfiglightbox", + "target": "apps_extension_chromium_src_wrguard_usewrguardstore_usewrguardstore" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/index.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_index", + "target": "apps_extension_chromium_src_wrguard_components_runtimeconfiglightbox_runtimeconfiglightbox", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/index.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_index", + "target": "apps_extension_chromium_src_wrguard_components_runtimecontrolssection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/RuntimeControlsSection.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_runtimecontrolssection", + "target": "apps_extension_chromium_src_wrguard_components_runtimecontrolssection_runtimecontrolssection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/RuntimeControlsSection.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_runtimecontrolssection", + "target": "apps_extension_chromium_src_wrguard_components_runtimecontrolssection_runtimecontrolssectionprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/RuntimeControlsSection.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_runtimecontrolssection", + "target": "apps_extension_chromium_src_wrguard_usewrguardstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/RuntimeControlsSection.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_runtimecontrolssection", + "target": "apps_extension_chromium_src_wrguard_usewrguardstore_usewrguardstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/WRGuardWorkspace.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_wrguardworkspace", + "target": "apps_extension_chromium_src_wrguard_components_runtimecontrolssection", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/index.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_index", + "target": "apps_extension_chromium_src_wrguard_components_runtimecontrolssection_runtimecontrolssection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/wrguard/components/RuntimeControlsSection.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_runtimecontrolssection_runtimecontrolssection", + "target": "apps_extension_chromium_src_wrguard_usewrguardstore_usewrguardstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/WRGuardWorkspace.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_wrguardworkspace", + "target": "apps_extension_chromium_src_wrguard_components_runtimecontrolssection_runtimecontrolssection", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/index.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_index", + "target": "apps_extension_chromium_src_wrguard_components_runtimecontrolssection_runtimecontrolssection", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_index", + "target": "apps_extension_chromium_src_wrguard_components_wrguardworkspace", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/WRGuardWorkspace.tsx", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_wrguardworkspace", + "target": "apps_extension_chromium_src_wrguard_components_wrguardworkspace_wrguardworkspace", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/WRGuardWorkspace.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_wrguardworkspace", + "target": "apps_extension_chromium_src_wrguard_components_wrguardworkspace_wrguardworkspaceprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/WRGuardWorkspace.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_wrguardworkspace", + "target": "apps_extension_chromium_src_wrguard_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/WRGuardWorkspace.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_wrguardworkspace", + "target": "apps_extension_chromium_src_wrguard_types_wrguard_sections", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/WRGuardWorkspace.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_wrguardworkspace", + "target": "apps_extension_chromium_src_wrguard_types_wrguardsection", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/WRGuardWorkspace.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_wrguardworkspace", + "target": "apps_extension_chromium_src_wrguard_usewrguardstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/WRGuardWorkspace.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_wrguardworkspace", + "target": "apps_extension_chromium_src_wrguard_usewrguardstore_usewrguardstore", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/components/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_index", + "target": "apps_extension_chromium_src_wrguard_components_wrguardworkspace_wrguardworkspace", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/wrguard/components/WRGuardWorkspace.tsx", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_components_wrguardworkspace_wrguardworkspace", + "target": "apps_extension_chromium_src_wrguard_usewrguardstore_usewrguardstore" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/index.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_index", + "target": "apps_extension_chromium_src_wrguard_components_wrguardworkspace_wrguardworkspace", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/index.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_index", + "target": "apps_extension_chromium_src_wrguard_components_index", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/index.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_index", + "target": "apps_extension_chromium_src_wrguard_types", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/index.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_index", + "target": "apps_extension_chromium_src_wrguard_usewrguardstore", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/index.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_index", + "target": "apps_extension_chromium_src_wrguard_usewrguardstore_useactivesection", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/index.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_index", + "target": "apps_extension_chromium_src_wrguard_usewrguardstore_useconnectedproviders", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/index.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_index", + "target": "apps_extension_chromium_src_wrguard_usewrguardstore_useemailproviders", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/index.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_index", + "target": "apps_extension_chromium_src_wrguard_usewrguardstore_useiswrguardinitialized", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/index.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_index", + "target": "apps_extension_chromium_src_wrguard_usewrguardstore_usepolicyoverview", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/index.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_index", + "target": "apps_extension_chromium_src_wrguard_usewrguardstore_useprotectedsites", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/index.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_index", + "target": "apps_extension_chromium_src_wrguard_usewrguardstore_usewrguardstore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/overlayProtection.ts", + "source_location": "L419", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_overlayprotection", + "target": "apps_extension_chromium_src_wrguard_overlayprotection_checkandapplyprotection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/overlayProtection.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_overlayprotection", + "target": "apps_extension_chromium_src_wrguard_overlayprotection_createblockoverlay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/overlayProtection.ts", + "source_location": "L442", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_overlayprotection", + "target": "apps_extension_chromium_src_wrguard_overlayprotection_disableprotection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/overlayProtection.ts", + "source_location": "L336", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_overlayprotection", + "target": "apps_extension_chromium_src_wrguard_overlayprotection_initializeoverlayprotection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/overlayProtection.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_overlayprotection", + "target": "apps_extension_chromium_src_wrguard_overlayprotection_logbypassevent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/overlayProtection.ts", + "source_location": "L197", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_overlayprotection", + "target": "apps_extension_chromium_src_wrguard_overlayprotection_protectattachments", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/overlayProtection.ts", + "source_location": "L294", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_overlayprotection", + "target": "apps_extension_chromium_src_wrguard_overlayprotection_protectautomationtriggers", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/overlayProtection.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_overlayprotection", + "target": "apps_extension_chromium_src_wrguard_overlayprotection_protectionstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/overlayProtection.ts", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_overlayprotection", + "target": "apps_extension_chromium_src_wrguard_overlayprotection_protectlinks", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/overlayProtection.ts", + "source_location": "L246", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_overlayprotection", + "target": "apps_extension_chromium_src_wrguard_overlayprotection_protectmedia", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/overlayProtection.ts", + "source_location": "L374", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_overlayprotection", + "target": "apps_extension_chromium_src_wrguard_overlayprotection_runprotection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/overlayProtection.ts", + "source_location": "L381", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_overlayprotection", + "target": "apps_extension_chromium_src_wrguard_overlayprotection_showprotectionindicator", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/overlayProtection.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_overlayprotection", + "target": "apps_extension_chromium_src_wrguard_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/overlayProtection.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_overlayprotection", + "target": "apps_extension_chromium_src_wrguard_types_default_protection_settings", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/overlayProtection.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_overlayprotection", + "target": "apps_extension_chromium_src_wrguard_types_overlayblockevent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/overlayProtection.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_overlayprotection", + "target": "apps_extension_chromium_src_wrguard_types_siteprotectionsettings", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/overlayProtection.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_overlayprotection_protectionstate", + "target": "apps_extension_chromium_src_wrguard_types_siteprotectionsettings", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/overlayProtection.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_overlayprotection_createblockoverlay", + "target": "apps_extension_chromium_src_wrguard_overlayprotection_logbypassevent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/overlayProtection.ts", + "source_location": "L226", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_overlayprotection_protectattachments", + "target": "apps_extension_chromium_src_wrguard_overlayprotection_createblockoverlay", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/overlayProtection.ts", + "source_location": "L319", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_overlayprotection_protectautomationtriggers", + "target": "apps_extension_chromium_src_wrguard_overlayprotection_createblockoverlay", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/overlayProtection.ts", + "source_location": "L172", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_overlayprotection_protectlinks", + "target": "apps_extension_chromium_src_wrguard_overlayprotection_createblockoverlay", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/overlayProtection.ts", + "source_location": "L274", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_overlayprotection_protectmedia", + "target": "apps_extension_chromium_src_wrguard_overlayprotection_createblockoverlay", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/overlayProtection.ts", + "source_location": "L375", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_overlayprotection_runprotection", + "target": "apps_extension_chromium_src_wrguard_overlayprotection_protectlinks", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/overlayProtection.ts", + "source_location": "L376", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_overlayprotection_runprotection", + "target": "apps_extension_chromium_src_wrguard_overlayprotection_protectattachments", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/overlayProtection.ts", + "source_location": "L377", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_overlayprotection_runprotection", + "target": "apps_extension_chromium_src_wrguard_overlayprotection_protectmedia", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/overlayProtection.ts", + "source_location": "L378", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_overlayprotection_runprotection", + "target": "apps_extension_chromium_src_wrguard_overlayprotection_protectautomationtriggers", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/overlayProtection.ts", + "source_location": "L431", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_overlayprotection_checkandapplyprotection", + "target": "apps_extension_chromium_src_wrguard_overlayprotection_initializeoverlayprotection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/overlayProtection.ts", + "source_location": "L350", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_overlayprotection_initializeoverlayprotection", + "target": "apps_extension_chromium_src_wrguard_overlayprotection_runprotection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/overlayProtection.ts", + "source_location": "L371", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_overlayprotection_initializeoverlayprotection", + "target": "apps_extension_chromium_src_wrguard_overlayprotection_showprotectionindicator", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/types.ts", + "source_location": "L281", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_types", + "target": "apps_extension_chromium_src_wrguard_types_default_policy_overview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/types.ts", + "source_location": "L208", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_types", + "target": "apps_extension_chromium_src_wrguard_types_default_protected_sites", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/types.ts", + "source_location": "L398", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_types", + "target": "apps_extension_chromium_src_wrguard_types_default_protection_settings", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/types.ts", + "source_location": "L318", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_types", + "target": "apps_extension_chromium_src_wrguard_types_default_runtime_config", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/types.ts", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_types", + "target": "apps_extension_chromium_src_wrguard_types_emailprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/types.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_types", + "target": "apps_extension_chromium_src_wrguard_types_emailprovidertype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/types.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_types", + "target": "apps_extension_chromium_src_wrguard_types_getblockedemaildomain", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/types.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_types", + "target": "apps_extension_chromium_src_wrguard_types_isblockedemaildomain", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/types.ts", + "source_location": "L409", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_types", + "target": "apps_extension_chromium_src_wrguard_types_overlayblockevent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/types.ts", + "source_location": "L247", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_types", + "target": "apps_extension_chromium_src_wrguard_types_policyoverview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/types.ts", + "source_location": "L242", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_types", + "target": "apps_extension_chromium_src_wrguard_types_policyposture", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/types.ts", + "source_location": "L185", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_types", + "target": "apps_extension_chromium_src_wrguard_types_protectedsite", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/types.ts", + "source_location": "L180", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_types", + "target": "apps_extension_chromium_src_wrguard_types_protectedsitesource", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/types.ts", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_types", + "target": "apps_extension_chromium_src_wrguard_types_provider_config", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/types.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_types", + "target": "apps_extension_chromium_src_wrguard_types_providerconnectionstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/types.ts", + "source_location": "L310", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_types", + "target": "apps_extension_chromium_src_wrguard_types_runtimeconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/types.ts", + "source_location": "L382", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_types", + "target": "apps_extension_chromium_src_wrguard_types_siteprotectionsettings", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/types.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_types", + "target": "apps_extension_chromium_src_wrguard_types_wrguard_blocked_email_domains", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/types.ts", + "source_location": "L367", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_types", + "target": "apps_extension_chromium_src_wrguard_types_wrguard_sections", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/types.ts", + "source_location": "L333", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_types", + "target": "apps_extension_chromium_src_wrguard_types_wrguardconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/types.ts", + "source_location": "L360", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_types", + "target": "apps_extension_chromium_src_wrguard_types_wrguardsection", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/types.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_types_rationale_51", + "target": "apps_extension_chromium_src_wrguard_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/useWRGuardStore.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_usewrguardstore", + "target": "apps_extension_chromium_src_wrguard_types", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/wrguard/types.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_types_getblockedemaildomain", + "target": "apps_extension_chromium_src_wrguard_types_wrguard_blocked_email_domains" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/extension-chromium/src/wrguard/types.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_types_isblockedemaildomain", + "target": "apps_extension_chromium_src_wrguard_types_wrguard_blocked_email_domains" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/useWRGuardStore.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_usewrguardstore", + "target": "apps_extension_chromium_src_wrguard_types_emailprovidertype", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/useWRGuardStore.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_usewrguardstore", + "target": "apps_extension_chromium_src_wrguard_types_providerconnectionstatus", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/useWRGuardStore.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_usewrguardstore_wrguardstate", + "target": "apps_extension_chromium_src_wrguard_types_providerconnectionstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/useWRGuardStore.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_usewrguardstore", + "target": "apps_extension_chromium_src_wrguard_types_emailprovider", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/useWRGuardStore.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_usewrguardstore_wrguardstate", + "target": "apps_extension_chromium_src_wrguard_types_emailprovider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/useWRGuardStore.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_usewrguardstore", + "target": "apps_extension_chromium_src_wrguard_types_protectedsitesource", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/useWRGuardStore.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_usewrguardstore", + "target": "apps_extension_chromium_src_wrguard_types_protectedsite", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/useWRGuardStore.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_usewrguardstore_wrguardstate", + "target": "apps_extension_chromium_src_wrguard_types_protectedsite", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/useWRGuardStore.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_usewrguardstore", + "target": "apps_extension_chromium_src_wrguard_types_default_protected_sites", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/useWRGuardStore.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_usewrguardstore", + "target": "apps_extension_chromium_src_wrguard_types_policyoverview", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/useWRGuardStore.ts", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_usewrguardstore_wrguardstate", + "target": "apps_extension_chromium_src_wrguard_types_policyoverview", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/useWRGuardStore.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_usewrguardstore", + "target": "apps_extension_chromium_src_wrguard_types_default_policy_overview", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/useWRGuardStore.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_usewrguardstore", + "target": "apps_extension_chromium_src_wrguard_types_runtimeconfig", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/useWRGuardStore.ts", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_usewrguardstore_wrguardstate", + "target": "apps_extension_chromium_src_wrguard_types_runtimeconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/useWRGuardStore.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_usewrguardstore", + "target": "apps_extension_chromium_src_wrguard_types_default_runtime_config", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/useWRGuardStore.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_usewrguardstore", + "target": "apps_extension_chromium_src_wrguard_types_wrguardconfig", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/useWRGuardStore.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_usewrguardstore_wrguardstate", + "target": "apps_extension_chromium_src_wrguard_types_wrguardconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/useWRGuardStore.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_usewrguardstore", + "target": "apps_extension_chromium_src_wrguard_types_wrguardsection", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/useWRGuardStore.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_usewrguardstore_wrguardstate", + "target": "apps_extension_chromium_src_wrguard_types_wrguardsection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/useWRGuardStore.ts", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_usewrguardstore", + "target": "apps_extension_chromium_src_wrguard_usewrguardstore_createinitialstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/useWRGuardStore.ts", + "source_location": "L455", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_usewrguardstore", + "target": "apps_extension_chromium_src_wrguard_usewrguardstore_useactivesection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/useWRGuardStore.ts", + "source_location": "L461", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_usewrguardstore", + "target": "apps_extension_chromium_src_wrguard_usewrguardstore_useconnectedproviders", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/useWRGuardStore.ts", + "source_location": "L458", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_usewrguardstore", + "target": "apps_extension_chromium_src_wrguard_usewrguardstore_useemailproviders", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/useWRGuardStore.ts", + "source_location": "L470", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_usewrguardstore", + "target": "apps_extension_chromium_src_wrguard_usewrguardstore_useiswrguardinitialized", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/useWRGuardStore.ts", + "source_location": "L467", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_usewrguardstore", + "target": "apps_extension_chromium_src_wrguard_usewrguardstore_usepolicyoverview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/useWRGuardStore.ts", + "source_location": "L464", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_usewrguardstore", + "target": "apps_extension_chromium_src_wrguard_usewrguardstore_useprotectedsites", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/useWRGuardStore.ts", + "source_location": "L166", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_usewrguardstore", + "target": "apps_extension_chromium_src_wrguard_usewrguardstore_usewrguardstore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/useWRGuardStore.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_usewrguardstore", + "target": "apps_extension_chromium_src_wrguard_usewrguardstore_wrguardstate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/useWRGuardStore.ts", + "source_location": "L456", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_usewrguardstore_useactivesection", + "target": "apps_extension_chromium_src_wrguard_usewrguardstore_usewrguardstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/useWRGuardStore.ts", + "source_location": "L462", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_usewrguardstore_useconnectedproviders", + "target": "apps_extension_chromium_src_wrguard_usewrguardstore_usewrguardstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/useWRGuardStore.ts", + "source_location": "L459", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_usewrguardstore_useemailproviders", + "target": "apps_extension_chromium_src_wrguard_usewrguardstore_usewrguardstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/useWRGuardStore.ts", + "source_location": "L471", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_usewrguardstore_useiswrguardinitialized", + "target": "apps_extension_chromium_src_wrguard_usewrguardstore_usewrguardstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/useWRGuardStore.ts", + "source_location": "L468", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_usewrguardstore_usepolicyoverview", + "target": "apps_extension_chromium_src_wrguard_usewrguardstore_usewrguardstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/src/wrguard/useWRGuardStore.ts", + "source_location": "L465", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_src_wrguard_usewrguardstore_useprotectedsites", + "target": "apps_extension_chromium_src_wrguard_usewrguardstore_usewrguardstore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/tsconfig.json", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_tsconfig", + "target": "apps_extension_chromium_tsconfig_compileroptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/tsconfig.json", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_tsconfig", + "target": "apps_extension_chromium_tsconfig_exclude", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/tsconfig.json", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_tsconfig_compileroptions", + "target": "apps_extension_chromium_tsconfig_compileroptions_allowsyntheticdefaultimports", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/tsconfig.json", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_tsconfig_compileroptions", + "target": "apps_extension_chromium_tsconfig_compileroptions_baseurl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/tsconfig.json", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_tsconfig_compileroptions", + "target": "apps_extension_chromium_tsconfig_compileroptions_esmoduleinterop", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/tsconfig.json", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_tsconfig_compileroptions", + "target": "apps_extension_chromium_tsconfig_compileroptions_jsx", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/tsconfig.json", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_tsconfig_compileroptions", + "target": "apps_extension_chromium_tsconfig_compileroptions_lib", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/tsconfig.json", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_tsconfig_compileroptions", + "target": "apps_extension_chromium_tsconfig_compileroptions_module", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/tsconfig.json", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_tsconfig_compileroptions", + "target": "apps_extension_chromium_tsconfig_compileroptions_moduleresolution", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/tsconfig.json", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_tsconfig_compileroptions", + "target": "apps_extension_chromium_tsconfig_compileroptions_paths", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/tsconfig.json", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_tsconfig_compileroptions", + "target": "apps_extension_chromium_tsconfig_compileroptions_skiplibcheck", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/tsconfig.json", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_tsconfig_compileroptions", + "target": "apps_extension_chromium_tsconfig_compileroptions_strict", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/tsconfig.json", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_tsconfig_compileroptions", + "target": "apps_extension_chromium_tsconfig_compileroptions_target", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/tsconfig.json", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_tsconfig_compileroptions", + "target": "apps_extension_chromium_tsconfig_compileroptions_types", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/tsconfig.json", + "source_location": "L5", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_tsconfig_compileroptions_lib", + "target": "apps_extension_chromium_tsconfig_json_ref_dom", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/tsconfig.json", + "source_location": "L5", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_tsconfig_compileroptions_lib", + "target": "apps_extension_chromium_tsconfig_json_ref_dom_iterable", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/tsconfig.json", + "source_location": "L5", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_tsconfig_compileroptions_lib", + "target": "ref_es2022", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/tsconfig.json", + "source_location": "L8", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_tsconfig_compileroptions_types", + "target": "ref_chrome", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/tsconfig.json", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_tsconfig_compileroptions_paths", + "target": "apps_extension_chromium_tsconfig_paths_shared", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/tsconfig.json", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_tsconfig_compileroptions_paths", + "target": "apps_extension_chromium_tsconfig_paths_shared_extension", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/tsconfig.json", + "source_location": "L15", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_tsconfig_paths_shared", + "target": "apps_extension_chromium_tsconfig_json_ref_packages_shared_src", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/tsconfig.json", + "source_location": "L16", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_tsconfig_paths_shared_extension", + "target": "ref_packages_shared_extension_src", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/tsconfig.json", + "source_location": "L19", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "apps_extension_chromium_tsconfig_exclude", + "target": "apps_extension_chromium_tsconfig_json_ref_tests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/extension-chromium/vite.config.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "apps_extension_chromium_vite_config", + "target": "apps_extension_chromium_vite_config_dirname", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "debug-session-data.js", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "debug_session_data", + "target": "debug_session_data_agentmodelkeys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "debug-session-data.js", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "debug_session_data", + "target": "debug_session_data_extensionactive", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "debug-session-data.js", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "debug_session_data", + "target": "debug_session_data_sessionkeys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "eslint.config.mjs", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "eslint_config", + "target": "eslint_config_beapcanonplugin", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "eslint.config.mjs", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "eslint_config", + "target": "eslint_config_extractpreparesql", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "eslint.config.mjs", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "eslint_config", + "target": "eslint_config_israwinboxselect", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "eslint.config.mjs", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "eslint_config", + "target": "eslint_config_israwinboxwrite", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "fix-tabs-and-text.mjs", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "fix_tabs_and_text", + "target": "fix_tabs_and_text_rep", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "fix-tabs-and-text.mjs", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "fix_tabs_and_text", + "target": "fix_tabs_and_text_s", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "install-pgadmin.ps1", + "source_location": "L301", + "weight": 1.0, + "_origin": "ast", + "source": "install_pgadmin", + "target": "install_pgadmin_find_pgadminexecutable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "install-pgadmin.ps1", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "install_pgadmin", + "target": "install_pgadmin_get_wingetpackageid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "install-pgadmin.ps1", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "install_pgadmin", + "target": "install_pgadmin_install_chocolatey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "install-pgadmin.ps1", + "source_location": "L178", + "weight": 1.0, + "_origin": "ast", + "source": "install_pgadmin", + "target": "install_pgadmin_install_pgadminchoco", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "install-pgadmin.ps1", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "install_pgadmin", + "target": "install_pgadmin_install_pgadminwinget", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "install-pgadmin.ps1", + "source_location": "L244", + "weight": 1.0, + "_origin": "ast", + "source": "install_pgadmin", + "target": "install_pgadmin_install_postgresqlchoco", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "install-pgadmin.ps1", + "source_location": "L204", + "weight": 1.0, + "_origin": "ast", + "source": "install_pgadmin", + "target": "install_pgadmin_install_postgresqlwinget", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "install-pgadmin.ps1", + "source_location": "L273", + "weight": 1.0, + "_origin": "ast", + "source": "install_pgadmin", + "target": "install_pgadmin_new_desktopshortcut", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "install-pgadmin.ps1", + "source_location": "L339", + "weight": 1.0, + "_origin": "ast", + "source": "install_pgadmin", + "target": "install_pgadmin_new_serversjsonfile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "install-pgadmin.ps1", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "install_pgadmin", + "target": "install_pgadmin_test_adminelevation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "install-pgadmin.ps1", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "install_pgadmin", + "target": "install_pgadmin_test_wingetavailable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "install-pgadmin.ps1", + "source_location": "L152", + "weight": 1.0, + "_origin": "ast", + "source": "install_pgadmin_install_pgadminwinget", + "target": "install_pgadmin_get_wingetpackageid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "install-pgadmin.ps1", + "source_location": "L215", + "weight": 1.0, + "_origin": "ast", + "source": "install_pgadmin_install_postgresqlwinget", + "target": "install_pgadmin_get_wingetpackageid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "package", + "target": "package_dependencies", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "package", + "target": "package_devdependencies", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "package", + "target": "package_lint_staged", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "package", + "target": "package_name", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "package", + "target": "package_packagemanager", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "package", + "target": "package_pnpm", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "package", + "target": "package_private", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "package", + "target": "package_scripts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "package", + "target": "package_version", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "package_pnpm", + "target": "package_pnpm_onlybuiltdependencies", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "package_pnpm", + "target": "package_pnpm_overrides", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L6", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "package_pnpm_onlybuiltdependencies", + "target": "package_json_ref_electron", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L6", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "package_pnpm_onlybuiltdependencies", + "target": "ref_better_sqlite3", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L6", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "package_pnpm_onlybuiltdependencies", + "target": "ref_canvas", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L6", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "package_pnpm_onlybuiltdependencies", + "target": "ref_esbuild", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/store.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_store", + "target": "ref_better_sqlite3", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/store.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_store", + "target": "ref_better_sqlite3", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "package_pnpm_overrides", + "target": "package_overrides_electron", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "package_scripts", + "target": "package_scripts_check_inbox_validator_gate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "package_scripts", + "target": "package_scripts_check_self_call_loopback", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "package_scripts", + "target": "package_scripts_check_write_boundary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "package_scripts", + "target": "package_scripts_check_write_boundary_win", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "package_scripts", + "target": "package_scripts_format", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "package_scripts", + "target": "package_scripts_format_check", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "package_scripts", + "target": "package_scripts_handshake_repair_counterparty", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "package_scripts", + "target": "package_scripts_lint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "package_scripts", + "target": "package_scripts_postinstall", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "package_scripts", + "target": "package_scripts_release_manifest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "package_scripts", + "target": "package_scripts_release_sign", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "package_scripts", + "target": "package_scripts_release_verify", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "package_scripts", + "target": "package_scripts_session_build", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "package_scripts", + "target": "package_scripts_session_configure_remote", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "package_scripts", + "target": "package_scripts_session_start", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "package_scripts", + "target": "package_scripts_session_stop", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "package_scripts", + "target": "package_scripts_test", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "package_scripts", + "target": "package_scripts_test_email_lifecycle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "package_scripts", + "target": "package_scripts_test_kill_switch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "package_scripts", + "target": "package_scripts_test_kill_switch_ci", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "package_scripts", + "target": "package_scripts_test_native_db", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "package_scripts", + "target": "package_scripts_test_quarantine", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "package_scripts", + "target": "package_scripts_test_redaction", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "package_scripts", + "target": "package_scripts_test_regression_relay_handshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "package_scripts", + "target": "package_scripts_test_scan_caps", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "package_scripts", + "target": "package_scripts_test_webmcp", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "package_scripts", + "target": "package_scripts_test_webmcp_ci", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "package_devdependencies", + "target": "package_devdependencies_eslint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "package_devdependencies", + "target": "package_devdependencies_eslint_config_prettier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "package_devdependencies", + "target": "package_devdependencies_husky", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "package_devdependencies", + "target": "package_devdependencies_lint_staged", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "package_devdependencies", + "target": "package_devdependencies_prettier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "package_devdependencies", + "target": "package_devdependencies_tsx", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "package_devdependencies", + "target": "package_devdependencies_typescript", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "package_devdependencies", + "target": "package_devdependencies_typescript_eslint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "package_devdependencies", + "target": "package_devdependencies_vitest", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L47", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "package_devdependencies_eslint", + "target": "package_json_eslint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L48", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "package_devdependencies_eslint_config_prettier", + "target": "eslint_config_prettier", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L49", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "package_devdependencies_husky", + "target": "husky", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L50", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "package_devdependencies_lint_staged", + "target": "lint_staged", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L51", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "package_devdependencies_prettier", + "target": "prettier", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L52", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "package_devdependencies_tsx", + "target": "tsx", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L53", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "package_devdependencies_typescript", + "target": "package_json_typescript", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L54", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "package_devdependencies_typescript_eslint", + "target": "typescript_eslint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L55", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "package_devdependencies_vitest", + "target": "package_json_vitest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "package_lint_staged", + "target": "package_lint_staged_js_jsx_ts_tsx_json_css_md", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L58", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "package_lint_staged_js_jsx_ts_tsx_json_css_md", + "target": "ref_eslint_fix", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L58", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "package_lint_staged_js_jsx_ts_tsx_json_css_md", + "target": "ref_prettier_write", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "package_dependencies", + "target": "package_dependencies_canvas", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L64", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "package_dependencies_canvas", + "target": "package_json_canvas", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/__tests__/beapStructuralValidator.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_tests_beapstructuralvalidator_test", + "target": "packages_beap_pod_src_beapstructuralvalidator", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/__tests__/beapStructuralValidator.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_tests_beapstructuralvalidator_test", + "target": "packages_beap_pod_src_beapstructuralvalidator_size_limits", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/__tests__/beapStructuralValidator.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_tests_beapstructuralvalidator_test", + "target": "packages_beap_pod_src_beapstructuralvalidator_validatebeapstructure", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/package.json", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_package", + "target": "packages_beap_pod_package_dependencies", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/package.json", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_package", + "target": "packages_beap_pod_package_devdependencies", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/package.json", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_package", + "target": "packages_beap_pod_package_engines", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/package.json", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_package", + "target": "packages_beap_pod_package_main", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/package.json", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_package", + "target": "packages_beap_pod_package_name", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/package.json", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_package", + "target": "packages_beap_pod_package_private", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/package.json", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_package", + "target": "packages_beap_pod_package_scripts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/package.json", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_package", + "target": "packages_beap_pod_package_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/package.json", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_package", + "target": "packages_beap_pod_package_version", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/package.json", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_package_scripts", + "target": "packages_beap_pod_package_scripts_build", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/package.json", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_package_scripts", + "target": "packages_beap_pod_package_scripts_docker_build", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/package.json", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_package_scripts", + "target": "packages_beap_pod_package_scripts_start", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/package.json", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_package_scripts", + "target": "packages_beap_pod_package_scripts_test", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/package.json", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_package_devdependencies", + "target": "packages_beap_pod_package_devdependencies_types_node", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/package.json", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_package_devdependencies", + "target": "packages_beap_pod_package_devdependencies_typescript", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/package.json", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_package_devdependencies", + "target": "packages_beap_pod_package_devdependencies_vitest", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/package.json", + "source_location": "L15", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "packages_beap_pod_package_devdependencies_types_node", + "target": "packages_beap_pod_package_json_types_node", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/package.json", + "source_location": "L16", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "packages_beap_pod_package_devdependencies_typescript", + "target": "packages_beap_pod_package_json_typescript", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/package.json", + "source_location": "L17", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "packages_beap_pod_package_devdependencies_vitest", + "target": "packages_beap_pod_package_json_vitest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/package.json", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_package_engines", + "target": "packages_beap_pod_package_engines_node", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/src/beapStructuralValidator.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_src_beapstructuralvalidator", + "target": "packages_beap_pod_src_beapstructuralvalidator_accepted_encodings", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/src/beapStructuralValidator.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_src_beapstructuralvalidator", + "target": "packages_beap_pod_src_beapstructuralvalidator_accepted_versions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/src/beapStructuralValidator.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_src_beapstructuralvalidator", + "target": "packages_beap_pod_src_beapstructuralvalidator_countfields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/src/beapStructuralValidator.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_src_beapstructuralvalidator", + "target": "packages_beap_pod_src_beapstructuralvalidator_measuredepth", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/src/beapStructuralValidator.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_src_beapstructuralvalidator", + "target": "packages_beap_pod_src_beapstructuralvalidator_poisoned_keys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/src/beapStructuralValidator.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_src_beapstructuralvalidator", + "target": "packages_beap_pod_src_beapstructuralvalidator_sha256hex", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/src/beapStructuralValidator.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_src_beapstructuralvalidator", + "target": "packages_beap_pod_src_beapstructuralvalidator_size_limits", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/src/beapStructuralValidator.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_src_beapstructuralvalidator", + "target": "packages_beap_pod_src_beapstructuralvalidator_structuralvalidationresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/src/beapStructuralValidator.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_src_beapstructuralvalidator", + "target": "packages_beap_pod_src_beapstructuralvalidator_validatebeapstructure", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/src/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_src_index", + "target": "packages_beap_pod_src_beapstructuralvalidator", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/src/podServer.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_src_podserver", + "target": "packages_beap_pod_src_beapstructuralvalidator", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/src/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_src_index", + "target": "packages_beap_pod_src_beapstructuralvalidator_size_limits", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/src/index.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_src_index", + "target": "packages_beap_pod_src_beapstructuralvalidator_structuralvalidationresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/src/beapStructuralValidator.ts", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_src_beapstructuralvalidator_validatebeapstructure", + "target": "packages_beap_pod_src_beapstructuralvalidator_measuredepth", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/src/beapStructuralValidator.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_src_beapstructuralvalidator_validatebeapstructure", + "target": "packages_beap_pod_src_beapstructuralvalidator_countfields", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/src/beapStructuralValidator.ts", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_src_beapstructuralvalidator_validatebeapstructure", + "target": "packages_beap_pod_src_beapstructuralvalidator_sha256hex", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/src/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_src_index", + "target": "packages_beap_pod_src_beapstructuralvalidator_validatebeapstructure", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/src/podServer.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_src_podserver", + "target": "packages_beap_pod_src_beapstructuralvalidator_validatebeapstructure", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/src/podServer.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_src_podserver_createhandler", + "target": "packages_beap_pod_src_beapstructuralvalidator_validatebeapstructure", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/src/index.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_src_index", + "target": "packages_beap_pod_src_index_filename", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/src/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_src_index", + "target": "packages_beap_pod_src_podserver", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/src/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_src_index", + "target": "packages_beap_pod_src_podserver_createpodserver", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/src/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_src_index", + "target": "packages_beap_pod_src_podserver_startpodserver", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/src/podServer.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_src_podserver", + "target": "packages_beap_pod_src_podserver_createhandler", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/src/podServer.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_src_podserver", + "target": "packages_beap_pod_src_podserver_createpodserver", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/src/podServer.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_src_podserver", + "target": "packages_beap_pod_src_podserver_port", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/src/podServer.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_src_podserver", + "target": "packages_beap_pod_src_podserver_readbody", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/src/podServer.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_src_podserver", + "target": "packages_beap_pod_src_podserver_sendjson", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/src/podServer.ts", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_src_podserver", + "target": "packages_beap_pod_src_podserver_startpodserver", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/src/podServer.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_src_podserver_createhandler", + "target": "packages_beap_pod_src_podserver_readbody", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/src/podServer.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_src_podserver_createhandler", + "target": "packages_beap_pod_src_podserver_sendjson", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/src/podServer.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_src_podserver_createpodserver", + "target": "packages_beap_pod_src_podserver_createhandler", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/src/podServer.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_src_podserver_startpodserver", + "target": "packages_beap_pod_src_podserver_createpodserver", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/tsconfig.json", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_tsconfig", + "target": "packages_beap_pod_tsconfig_compileroptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/tsconfig.json", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_tsconfig", + "target": "packages_beap_pod_tsconfig_exclude", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/tsconfig.json", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_tsconfig", + "target": "packages_beap_pod_tsconfig_include", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/tsconfig.json", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_tsconfig_compileroptions", + "target": "packages_beap_pod_tsconfig_compileroptions_module", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/tsconfig.json", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_tsconfig_compileroptions", + "target": "packages_beap_pod_tsconfig_compileroptions_moduleresolution", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/tsconfig.json", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_tsconfig_compileroptions", + "target": "packages_beap_pod_tsconfig_compileroptions_outdir", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/tsconfig.json", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_tsconfig_compileroptions", + "target": "packages_beap_pod_tsconfig_compileroptions_rootdir", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/tsconfig.json", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_tsconfig_compileroptions", + "target": "packages_beap_pod_tsconfig_compileroptions_skiplibcheck", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/tsconfig.json", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_tsconfig_compileroptions", + "target": "packages_beap_pod_tsconfig_compileroptions_strict", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/tsconfig.json", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "packages_beap_pod_tsconfig_compileroptions", + "target": "packages_beap_pod_tsconfig_compileroptions_target", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/tsconfig.json", + "source_location": "L11", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "packages_beap_pod_tsconfig_include", + "target": "packages_beap_pod_tsconfig_json_ref_src_ts", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/tsconfig.json", + "source_location": "L12", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "packages_beap_pod_tsconfig_exclude", + "target": "packages_beap_pod_tsconfig_json_ref_dist", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "packages/beap-pod/tsconfig.json", + "source_location": "L12", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "packages_beap_pod_tsconfig_exclude", + "target": "packages_beap_pod_tsconfig_json_ref_node_modules", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/__tests__/coordination.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tests_coordination_test", + "target": "packages_coordination_service_src_config", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/__tests__/coordination.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tests_coordination_test", + "target": "packages_coordination_service_src_config_coordinationconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/__tests__/coordination.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tests_coordination_test", + "target": "packages_coordination_service_src_server", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/__tests__/coordination.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tests_coordination_test", + "target": "packages_coordination_service_src_server_createserver", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/__tests__/coordination.test.ts", + "source_location": "L733", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tests_coordination_test", + "target": "packages_coordination_service_tests_coordination_test_internalinitiatecapsule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/__tests__/coordination.test.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tests_coordination_test", + "target": "packages_coordination_service_tests_coordination_test_makeconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/__tests__/coordination.test.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tests_coordination_test", + "target": "packages_coordination_service_tests_coordination_test_request", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/__tests__/coordination.test.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tests_coordination_test", + "target": "packages_coordination_service_tests_coordination_test_sameprincipalcapsule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/__tests__/coordination.test.ts", + "source_location": "L1929", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tests_coordination_test", + "target": "packages_coordination_service_tests_coordination_test_sandboxcapsule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/__tests__/coordination.test.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tests_coordination_test", + "target": "packages_coordination_service_tests_coordination_test_sealedservicerpccapsule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/__tests__/coordination.test.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tests_coordination_test", + "target": "packages_coordination_service_tests_coordination_test_validbeapcapsule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/__tests__/coordination.test.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tests_coordination_test", + "target": "packages_coordination_service_tests_coordination_test_wsconnect", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/__tests__/coordination.test.ts", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tests_coordination_test", + "target": "packages_coordination_service_tests_coordination_test_wsconnectwithdevice", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/__tests__/coordination.test.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tests_coordination_test_sameprincipalcapsule", + "target": "packages_coordination_service_tests_coordination_test_validbeapcapsule", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/__tests__/coordination.test.ts", + "source_location": "L1930", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tests_coordination_test_sandboxcapsule", + "target": "packages_coordination_service_tests_coordination_test_validbeapcapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/__tests__/p2pSignalSchema.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tests_p2psignalschema_test", + "target": "packages_coordination_service_src_p2psignal", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/__tests__/p2pSignalSchema.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tests_p2psignalschema_test", + "target": "packages_coordination_service_src_p2psignal_p2p_signal_max_body_bytes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/__tests__/p2pSignalSchema.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tests_p2psignalschema_test", + "target": "packages_coordination_service_src_p2psignal_tryparsep2psignalrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/__tests__/p2pSignalSchema.test.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tests_p2psignalschema_test", + "target": "packages_coordination_service_tests_p2psignalschema_test_beapadbase", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/__tests__/p2pSignalSchema.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tests_p2psignalschema_test", + "target": "packages_coordination_service_tests_p2psignalschema_test_icebase", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/__tests__/p2pSignalSchemaElectronAlignment.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tests_p2psignalschemaelectronalignment_test", + "target": "packages_coordination_service_src_p2psignal", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/__tests__/p2pSignalSchemaElectronAlignment.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tests_p2psignalschemaelectronalignment_test", + "target": "packages_coordination_service_src_p2psignal_p2p_signal_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/__tests__/pairing-code.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tests_pairing_code_test", + "target": "packages_coordination_service_src_config", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/__tests__/pairing-code.test.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tests_pairing_code_test", + "target": "packages_coordination_service_src_config_coordinationconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/__tests__/pairing-code.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tests_pairing_code_test", + "target": "packages_coordination_service_src_server", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/__tests__/pairing-code.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tests_pairing_code_test", + "target": "packages_coordination_service_src_server_createserver", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/__tests__/pairing-code.test.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tests_pairing_code_test", + "target": "packages_coordination_service_tests_pairing_code_test_makeconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/__tests__/pairing-code.test.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tests_pairing_code_test", + "target": "packages_coordination_service_tests_pairing_code_test_registerbody", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/__tests__/pairing-code.test.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tests_pairing_code_test", + "target": "packages_coordination_service_tests_pairing_code_test_request", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/__tests__/sandboxEgressGuard.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tests_sandboxegressguard_test", + "target": "packages_coordination_service_src_config", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/__tests__/sandboxEgressGuard.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tests_sandboxegressguard_test", + "target": "packages_coordination_service_src_config_coordinationconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/__tests__/sandboxEgressGuard.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tests_sandboxegressguard_test", + "target": "packages_coordination_service_src_server", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/__tests__/sandboxEgressGuard.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tests_sandboxegressguard_test", + "target": "packages_coordination_service_src_server_createserver", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/__tests__/sandboxEgressGuard.test.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tests_sandboxegressguard_test", + "target": "packages_coordination_service_tests_sandboxegressguard_test_lifecyclecapsule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/__tests__/sandboxEgressGuard.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tests_sandboxegressguard_test", + "target": "packages_coordination_service_tests_sandboxegressguard_test_makeconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/__tests__/sandboxEgressGuard.test.ts", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tests_sandboxegressguard_test", + "target": "packages_coordination_service_tests_sandboxegressguard_test_nativebeappackage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/__tests__/sandboxEgressGuard.test.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tests_sandboxegressguard_test", + "target": "packages_coordination_service_tests_sandboxegressguard_test_registersandboxhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/__tests__/sandboxEgressGuard.test.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tests_sandboxegressguard_test", + "target": "packages_coordination_service_tests_sandboxegressguard_test_request", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/__tests__/sandboxEgressGuard.test.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tests_sandboxegressguard_test", + "target": "packages_coordination_service_tests_sandboxegressguard_test_sealedservicerpccapsule", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/__tests__/sandboxEgressGuard.test.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tests_sandboxegressguard_test_registersandboxhandshake", + "target": "packages_coordination_service_tests_sandboxegressguard_test_request", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/__tests__/startup.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tests_startup_test", + "target": "packages_coordination_service_tests_startup_test_dirname", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/__tests__/startup.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tests_startup_test", + "target": "packages_coordination_service_tests_startup_test_distserver", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/__tests__/startup.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tests_startup_test", + "target": "packages_coordination_service_tests_startup_test_pkgroot", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/__tests__/tierResolution.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tests_tierresolution_test", + "target": "packages_coordination_service_src_auth", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/__tests__/tierResolution.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tests_tierresolution_test", + "target": "packages_coordination_service_src_auth_resolver_version", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/__tests__/tierResolution.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tests_tierresolution_test", + "target": "packages_coordination_service_src_tierresolution", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/__tests__/tierResolution.test.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tests_tierresolution_test", + "target": "packages_coordination_service_src_tierresolution_resolverelaytier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/package.json", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_package", + "target": "packages_coordination_service_package_dependencies", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/package.json", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_package", + "target": "packages_coordination_service_package_devdependencies", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/package.json", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_package", + "target": "packages_coordination_service_package_engines", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/package.json", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_package", + "target": "packages_coordination_service_package_main", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/package.json", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_package", + "target": "packages_coordination_service_package_name", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/package.json", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_package", + "target": "packages_coordination_service_package_private", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/package.json", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_package", + "target": "packages_coordination_service_package_scripts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/package.json", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_package", + "target": "packages_coordination_service_package_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/package.json", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_package", + "target": "packages_coordination_service_package_version", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/package.json", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_package_scripts", + "target": "packages_coordination_service_package_scripts_build", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/package.json", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_package_scripts", + "target": "packages_coordination_service_package_scripts_docker_build", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/package.json", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_package_scripts", + "target": "packages_coordination_service_package_scripts_start", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/package.json", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_package_scripts", + "target": "packages_coordination_service_package_scripts_test", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/package.json", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_package_dependencies", + "target": "packages_coordination_service_package_dependencies_better_sqlite3", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/package.json", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_package_dependencies", + "target": "packages_coordination_service_package_dependencies_jose", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/package.json", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_package_dependencies", + "target": "packages_coordination_service_package_dependencies_repo_ingestion_core", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/package.json", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_package_dependencies", + "target": "packages_coordination_service_package_dependencies_ws", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/package.json", + "source_location": "L14", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "packages_coordination_service_package_dependencies_repo_ingestion_core", + "target": "packages_coordination_service_package_json_repo_ingestion_core", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/package.json", + "source_location": "L15", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "packages_coordination_service_package_dependencies_better_sqlite3", + "target": "packages_coordination_service_package_json_better_sqlite3", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/package.json", + "source_location": "L16", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "packages_coordination_service_package_dependencies_jose", + "target": "packages_coordination_service_package_json_jose", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/package.json", + "source_location": "L17", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "packages_coordination_service_package_dependencies_ws", + "target": "packages_coordination_service_package_json_ws", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/package.json", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_package_devdependencies", + "target": "packages_coordination_service_package_devdependencies_types_better_sqlite3", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/package.json", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_package_devdependencies", + "target": "packages_coordination_service_package_devdependencies_types_node", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/package.json", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_package_devdependencies", + "target": "packages_coordination_service_package_devdependencies_types_ws", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/package.json", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_package_devdependencies", + "target": "packages_coordination_service_package_devdependencies_typescript", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/package.json", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_package_devdependencies", + "target": "packages_coordination_service_package_devdependencies_vitest", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/package.json", + "source_location": "L20", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "packages_coordination_service_package_devdependencies_types_better_sqlite3", + "target": "packages_coordination_service_package_json_types_better_sqlite3", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/package.json", + "source_location": "L21", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "packages_coordination_service_package_devdependencies_types_node", + "target": "packages_coordination_service_package_json_types_node", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/package.json", + "source_location": "L22", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "packages_coordination_service_package_devdependencies_types_ws", + "target": "packages_coordination_service_package_json_types_ws", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/package.json", + "source_location": "L23", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "packages_coordination_service_package_devdependencies_typescript", + "target": "packages_coordination_service_package_json_typescript", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/package.json", + "source_location": "L24", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "packages_coordination_service_package_devdependencies_vitest", + "target": "packages_coordination_service_package_json_vitest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/package.json", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_package_engines", + "target": "packages_coordination_service_package_engines_node", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/auth.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_auth", + "target": "packages_coordination_service_src_auth_authadapter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/auth.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_auth", + "target": "packages_coordination_service_src_auth_createauth", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/auth.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_auth", + "target": "packages_coordination_service_src_auth_resolver_version", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/auth.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_auth", + "target": "packages_coordination_service_src_auth_validatedidentity", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/auth.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_auth", + "target": "packages_coordination_service_src_store", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/auth.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_auth", + "target": "packages_coordination_service_src_store_storeadapter", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/auth.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_auth", + "target": "packages_coordination_service_src_tierresolution", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/auth.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_auth", + "target": "packages_coordination_service_src_tierresolution_resolverelaytier", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/health.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_health", + "target": "packages_coordination_service_src_auth", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/rateLimiter.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_ratelimiter", + "target": "packages_coordination_service_src_auth", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server", + "target": "packages_coordination_service_src_auth", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_wsmanager", + "target": "packages_coordination_service_src_auth", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/rateLimiter.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_ratelimiter", + "target": "packages_coordination_service_src_auth_validatedidentity", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/rateLimiter.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_ratelimiter_ratelimiteradapter_checkratelimit", + "target": "packages_coordination_service_src_auth_validatedidentity", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_wsmanager", + "target": "packages_coordination_service_src_auth_validatedidentity", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_wsmanager_wsmanageradapter_handleconnection", + "target": "packages_coordination_service_src_auth_validatedidentity", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/auth.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_auth_authadapter", + "target": "packages_coordination_service_src_auth_authadapter_checkjwkshealth", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/auth.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_auth_authadapter", + "target": "packages_coordination_service_src_auth_authadapter_extractbearertoken", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/auth.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_auth_authadapter", + "target": "packages_coordination_service_src_auth_authadapter_validateoidctoken", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/health.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_health", + "target": "packages_coordination_service_src_auth_authadapter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server", + "target": "packages_coordination_service_src_auth_createauth", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L1151", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server_createserver", + "target": "packages_coordination_service_src_auth_createauth" + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server_relayinstance", + "target": "packages_coordination_service_src_auth_createauth", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/cleanup.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_cleanup", + "target": "packages_coordination_service_src_cleanup_cleanupadapter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/cleanup.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_cleanup", + "target": "packages_coordination_service_src_cleanup_createcleanup", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/cleanup.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_cleanup", + "target": "packages_coordination_service_src_config", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/cleanup.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_cleanup", + "target": "packages_coordination_service_src_config_coordinationconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/cleanup.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_cleanup", + "target": "packages_coordination_service_src_store", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/cleanup.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_cleanup", + "target": "packages_coordination_service_src_store_storeadapter", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/index.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_index", + "target": "packages_coordination_service_src_cleanup", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/cleanup.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_cleanup_cleanupadapter", + "target": "packages_coordination_service_src_cleanup_cleanupadapter_run", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/cleanup.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_cleanup_cleanupadapter", + "target": "packages_coordination_service_src_cleanup_cleanupadapter_startinterval", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/index.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_index", + "target": "packages_coordination_service_src_cleanup_createcleanup", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/coordination-service/src/index.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_index_main", + "target": "packages_coordination_service_src_cleanup_createcleanup" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/config.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_config", + "target": "packages_coordination_service_src_config_coordinationconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/config.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_config", + "target": "packages_coordination_service_src_config_loadconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/index.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_index", + "target": "packages_coordination_service_src_config", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server", + "target": "packages_coordination_service_src_config", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/store.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_store", + "target": "packages_coordination_service_src_config", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server", + "target": "packages_coordination_service_src_config_coordinationconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/store.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_store", + "target": "packages_coordination_service_src_config_coordinationconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/index.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_index", + "target": "packages_coordination_service_src_config_loadconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/coordination-service/src/index.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_index_main", + "target": "packages_coordination_service_src_config_loadconfig" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/entitlements.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_entitlements", + "target": "packages_coordination_service_src_entitlements_hassandboxentitlement", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/entitlements.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_entitlements", + "target": "packages_coordination_service_src_entitlements_sandbox_entitled_tiers", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server", + "target": "packages_coordination_service_src_entitlements", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/coordination-service/src/entitlements.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_entitlements_hassandboxentitlement", + "target": "packages_coordination_service_src_entitlements_sandbox_entitled_tiers" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server", + "target": "packages_coordination_service_src_entitlements_hassandboxentitlement", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L1032", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server_createrequesthandler", + "target": "packages_coordination_service_src_entitlements_hassandboxentitlement", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/handshakeRegistry.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_handshakeregistry", + "target": "packages_coordination_service_src_handshakeregistry_createhandshakeregistry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/handshakeRegistry.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_handshakeregistry", + "target": "packages_coordination_service_src_handshakeregistry_handshakeentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/handshakeRegistry.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_handshakeregistry", + "target": "packages_coordination_service_src_handshakeregistry_handshakeregistryadapter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/handshakeRegistry.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_handshakeregistry", + "target": "packages_coordination_service_src_handshakeregistry_recipientroute", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/handshakeRegistry.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_handshakeregistry", + "target": "packages_coordination_service_src_store", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/handshakeRegistry.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_handshakeregistry", + "target": "packages_coordination_service_src_store_storeadapter", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server", + "target": "packages_coordination_service_src_handshakeregistry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server", + "target": "packages_coordination_service_src_handshakeregistry_handshakeentry", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/handshakeRegistry.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_handshakeregistry_handshakeregistryadapter", + "target": "packages_coordination_service_src_handshakeregistry_handshakeregistryadapter_getdeviceroleforsender", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/handshakeRegistry.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_handshakeregistry_handshakeregistryadapter", + "target": "packages_coordination_service_src_handshakeregistry_handshakeregistryadapter_gethandshake", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/handshakeRegistry.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_handshakeregistry_handshakeregistryadapter", + "target": "packages_coordination_service_src_handshakeregistry_handshakeregistryadapter_getrecipientforsender", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/handshakeRegistry.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_handshakeregistry_handshakeregistryadapter", + "target": "packages_coordination_service_src_handshakeregistry_handshakeregistryadapter_issameprincipalhandshake", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/handshakeRegistry.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_handshakeregistry_handshakeregistryadapter", + "target": "packages_coordination_service_src_handshakeregistry_handshakeregistryadapter_issenderauthorized", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/handshakeRegistry.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_handshakeregistry_handshakeregistryadapter", + "target": "packages_coordination_service_src_handshakeregistry_handshakeregistryadapter_registerhandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server", + "target": "packages_coordination_service_src_handshakeregistry_createhandshakeregistry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L1157", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server_createserver", + "target": "packages_coordination_service_src_handshakeregistry_createhandshakeregistry" + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server_relayinstance", + "target": "packages_coordination_service_src_handshakeregistry_createhandshakeregistry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/health.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_health", + "target": "packages_coordination_service_src_health_createhealth", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/health.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_health", + "target": "packages_coordination_service_src_health_healthadapter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/health.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_health", + "target": "packages_coordination_service_src_health_healthresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/health.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_health", + "target": "packages_coordination_service_src_health_hostaip2psignalingcapability", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/health.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_health", + "target": "packages_coordination_service_src_health_starttime", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/health.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_health", + "target": "packages_coordination_service_src_p2psignal", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/health.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_health", + "target": "packages_coordination_service_src_p2psignal_p2p_signal_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/health.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_health", + "target": "packages_coordination_service_src_store", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/health.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_health", + "target": "packages_coordination_service_src_store_storeadapter", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/health.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_health", + "target": "packages_coordination_service_src_wsmanager", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/health.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_health", + "target": "packages_coordination_service_src_wsmanager_wsmanageradapter", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server", + "target": "packages_coordination_service_src_health", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/health.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_health_healthadapter", + "target": "packages_coordination_service_src_health_healthadapter_check", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server", + "target": "packages_coordination_service_src_health_createhealth", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L1161", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server_createserver", + "target": "packages_coordination_service_src_health_createhealth" + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server_relayinstance", + "target": "packages_coordination_service_src_health_createhealth", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/index.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_index", + "target": "packages_coordination_service_src_index_main", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/index.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_index", + "target": "packages_coordination_service_src_p2psignal", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/index.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_index", + "target": "packages_coordination_service_src_p2psignal_p2p_signal_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_index", + "target": "packages_coordination_service_src_server", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_index", + "target": "packages_coordination_service_src_server_createserver", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/coordination-service/src/index.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_index_main", + "target": "packages_coordination_service_src_server_createserver" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/p2pSignal.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_p2psignal", + "target": "packages_coordination_service_src_p2psignal_coercecandidatefield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/p2pSignal.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_p2psignal", + "target": "packages_coordination_service_src_p2psignal_coerceschemaversion", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/p2pSignal.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_p2psignal", + "target": "packages_coordination_service_src_p2psignal_forbidden_top_level_keys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/p2pSignal.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_p2psignal", + "target": "packages_coordination_service_src_p2psignal_p2p_signal_expiry_parse_grace_ms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/p2pSignal.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_p2psignal", + "target": "packages_coordination_service_src_p2psignal_p2p_signal_max_body_bytes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/p2pSignal.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_p2psignal", + "target": "packages_coordination_service_src_p2psignal_p2p_signal_schema_version", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/p2pSignal.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_p2psignal", + "target": "packages_coordination_service_src_p2psignal_p2p_signal_types", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/p2pSignal.ts", + "source_location": "L238", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_p2psignal", + "target": "packages_coordination_service_src_p2psignal_p2psignalmessageid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/p2pSignal.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_p2psignal", + "target": "packages_coordination_service_src_p2psignal_p2psignalparsefail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/p2pSignal.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_p2psignal", + "target": "packages_coordination_service_src_p2psignal_p2psignalparseok", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/p2pSignal.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_p2psignal", + "target": "packages_coordination_service_src_p2psignal_p2psignalrejectreason", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/p2pSignal.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_p2psignal", + "target": "packages_coordination_service_src_p2psignal_p2psignaltype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/p2pSignal.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_p2psignal", + "target": "packages_coordination_service_src_p2psignal_parseiso", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/p2pSignal.ts", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_p2psignal", + "target": "packages_coordination_service_src_p2psignal_tryparsep2psignalrequest", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server", + "target": "packages_coordination_service_src_p2psignal", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/coordination-service/src/p2pSignal.ts", + "source_location": "L154", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_p2psignal_tryparsep2psignalrequest", + "target": "packages_coordination_service_src_p2psignal_p2p_signal_types" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server", + "target": "packages_coordination_service_src_p2psignal_p2p_signal_max_body_bytes", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/coordination-service/src/p2pSignal.ts", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_p2psignal_tryparsep2psignalrequest", + "target": "packages_coordination_service_src_p2psignal_forbidden_top_level_keys" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/p2pSignal.ts", + "source_location": "L172", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_p2psignal_tryparsep2psignalrequest", + "target": "packages_coordination_service_src_p2psignal_parseiso", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/p2pSignal.ts", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_p2psignal_tryparsep2psignalrequest", + "target": "packages_coordination_service_src_p2psignal_coerceschemaversion", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/p2pSignal.ts", + "source_location": "L151", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_p2psignal_tryparsep2psignalrequest", + "target": "packages_coordination_service_src_p2psignal_coercecandidatefield", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server", + "target": "packages_coordination_service_src_p2psignal_tryparsep2psignalrequest", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L583", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server_createrequesthandler", + "target": "packages_coordination_service_src_p2psignal_tryparsep2psignalrequest", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server", + "target": "packages_coordination_service_src_p2psignal_p2psignalmessageid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L649", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server_createrequesthandler", + "target": "packages_coordination_service_src_p2psignal_p2psignalmessageid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/pairingCodeRegistry.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_pairingcoderegistry", + "target": "packages_coordination_service_src_pairingcoderegistry_createpairingcoderegistry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/pairingCodeRegistry.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_pairingcoderegistry", + "target": "packages_coordination_service_src_pairingcoderegistry_pairingcodeentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/pairingCodeRegistry.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_pairingcoderegistry", + "target": "packages_coordination_service_src_pairingcoderegistry_pairingcoderegistryadapter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/pairingCodeRegistry.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_pairingcoderegistry", + "target": "packages_coordination_service_src_pairingcoderegistry_registerresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/pairingCodeRegistry.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_pairingcoderegistry", + "target": "packages_coordination_service_src_store", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/pairingCodeRegistry.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_pairingcoderegistry", + "target": "packages_coordination_service_src_store_storeadapter", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server", + "target": "packages_coordination_service_src_pairingcoderegistry", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/pairingCodeRegistry.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_pairingcoderegistry_pairingcoderegistryadapter", + "target": "packages_coordination_service_src_pairingcoderegistry_pairingcoderegistryadapter_getcodesforuser", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/pairingCodeRegistry.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_pairingcoderegistry_pairingcoderegistryadapter", + "target": "packages_coordination_service_src_pairingcoderegistry_pairingcoderegistryadapter_registerpairingcode", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/pairingCodeRegistry.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_pairingcoderegistry_pairingcoderegistryadapter", + "target": "packages_coordination_service_src_pairingcoderegistry_pairingcoderegistryadapter_resolvepairingcode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server", + "target": "packages_coordination_service_src_pairingcoderegistry_createpairingcoderegistry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L1158", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server_createserver", + "target": "packages_coordination_service_src_pairingcoderegistry_createpairingcoderegistry" + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server_relayinstance", + "target": "packages_coordination_service_src_pairingcoderegistry_createpairingcoderegistry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/rateLimiter.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_ratelimiter", + "target": "packages_coordination_service_src_ratelimiter_createratelimiter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/rateLimiter.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_ratelimiter", + "target": "packages_coordination_service_src_ratelimiter_ratelimiteradapter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/rateLimiter.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_ratelimiter", + "target": "packages_coordination_service_src_ratelimiter_tier_limits", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/rateLimiter.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_ratelimiter", + "target": "packages_coordination_service_src_ratelimiter_tierlimits", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server", + "target": "packages_coordination_service_src_ratelimiter", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/tierResolution.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_tierresolution", + "target": "packages_coordination_service_src_ratelimiter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/tierResolution.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_tierresolution", + "target": "packages_coordination_service_src_ratelimiter_tier_limits", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/rateLimiter.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_ratelimiter_ratelimiteradapter", + "target": "packages_coordination_service_src_ratelimiter_ratelimiteradapter_checkratelimit", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/rateLimiter.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_ratelimiter_ratelimiteradapter", + "target": "packages_coordination_service_src_ratelimiter_ratelimiteradapter_recordcapsulesent", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/rateLimiter.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_ratelimiter_ratelimiteradapter", + "target": "packages_coordination_service_src_ratelimiter_ratelimiteradapter_resetfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server", + "target": "packages_coordination_service_src_ratelimiter_createratelimiter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L1159", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server_createserver", + "target": "packages_coordination_service_src_ratelimiter_createratelimiter" + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server_relayinstance", + "target": "packages_coordination_service_src_ratelimiter_createratelimiter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server", + "target": "packages_coordination_service_src_server_createrequesthandler", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L1144", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server", + "target": "packages_coordination_service_src_server_createserver", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server", + "target": "packages_coordination_service_src_server_getclientip", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server", + "target": "packages_coordination_service_src_server_log", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server", + "target": "packages_coordination_service_src_server_peerdeviceidforhealth", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server", + "target": "packages_coordination_service_src_server_readbody", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server", + "target": "packages_coordination_service_src_server_relayinstance", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server", + "target": "packages_coordination_service_src_server_sandboxcontextsynclimiter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server", + "target": "packages_coordination_service_src_server_senderror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server", + "target": "packages_coordination_service_src_server_status_messages", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server", + "target": "packages_coordination_service_src_server_validatereporterdeviceforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server", + "target": "packages_coordination_service_src_store", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server", + "target": "packages_coordination_service_src_store_createstore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server", + "target": "packages_coordination_service_src_wsmanager", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server", + "target": "packages_coordination_service_src_wsmanager_createwsmanager", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L325", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server_createrequesthandler", + "target": "packages_coordination_service_src_server_log", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L1262", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server_createserver", + "target": "packages_coordination_service_src_server_log", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L1046", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server_createrequesthandler", + "target": "packages_coordination_service_src_server_getclientip", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L161", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server_createrequesthandler", + "target": "packages_coordination_service_src_server_senderror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server_createrequesthandler", + "target": "packages_coordination_service_src_server_readbody", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L406", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server_createrequesthandler", + "target": "packages_coordination_service_src_server_validatereporterdeviceforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L453", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server_createrequesthandler", + "target": "packages_coordination_service_src_server_peerdeviceidforhealth", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server_relayinstance", + "target": "packages_coordination_service_src_store_createstore", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L134", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server_relayinstance", + "target": "packages_coordination_service_src_wsmanager_createwsmanager", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L1173", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server_createserver", + "target": "packages_coordination_service_src_server_createrequesthandler", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L1148", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server_createserver", + "target": "packages_coordination_service_src_store_createstore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/coordination-service/src/server.ts", + "source_location": "L1160", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_server_createserver", + "target": "packages_coordination_service_src_wsmanager_createwsmanager" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/store.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_store", + "target": "packages_coordination_service_src_store_applyhandshakeregistrymigrations", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/store.ts", + "source_location": "L169", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_store", + "target": "packages_coordination_service_src_store_createstore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/store.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_store", + "target": "packages_coordination_service_src_store_storeadapter", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_wsmanager", + "target": "packages_coordination_service_src_store", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/store.ts", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_store_storeadapter", + "target": "packages_coordination_service_src_store_storeadapter_acknowledgecapsules", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/store.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_store_storeadapter", + "target": "packages_coordination_service_src_store_storeadapter_checkhealth", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/store.ts", + "source_location": "L144", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_store_storeadapter", + "target": "packages_coordination_service_src_store_storeadapter_cleanupacknowledged", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/store.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_store_storeadapter", + "target": "packages_coordination_service_src_store_storeadapter_cleanupexpired", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/store.ts", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_store_storeadapter", + "target": "packages_coordination_service_src_store_storeadapter_cleanupstalehandshakes", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/store.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_store_storeadapter", + "target": "packages_coordination_service_src_store_storeadapter_close", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/store.ts", + "source_location": "L137", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_store_storeadapter", + "target": "packages_coordination_service_src_store_storeadapter_countpending", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/store.ts", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_store_storeadapter", + "target": "packages_coordination_service_src_store_storeadapter_countpendingforrecipient", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/store.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_store_storeadapter", + "target": "packages_coordination_service_src_store_storeadapter_getcapsulerelayroute", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/store.ts", + "source_location": "L166", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_store_storeadapter", + "target": "packages_coordination_service_src_store_storeadapter_getdb", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/store.ts", + "source_location": "L154", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_store_storeadapter", + "target": "packages_coordination_service_src_store_storeadapter_gethandshakehealthreport", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/store.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_store_storeadapter", + "target": "packages_coordination_service_src_store_storeadapter_getpendingcapsules", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/store.ts", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_store_storeadapter", + "target": "packages_coordination_service_src_store_storeadapter_getpendingdeviceaggregateforuser", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/store.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_store_storeadapter", + "target": "packages_coordination_service_src_store_storeadapter_init", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/store.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_store_storeadapter", + "target": "packages_coordination_service_src_store_storeadapter_markpushed", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/store.ts", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_store_storeadapter", + "target": "packages_coordination_service_src_store_storeadapter_storecapsule", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/store.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_store_storeadapter", + "target": "packages_coordination_service_src_store_storeadapter_upserthandshakehealthreport", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_wsmanager", + "target": "packages_coordination_service_src_store_storeadapter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_wsmanager_deliverpendingtows", + "target": "packages_coordination_service_src_store_storeadapter_getpendingcapsules" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_wsmanager_deliverpendingtows", + "target": "packages_coordination_service_src_store_storeadapter_markpushed" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_wsmanager_logorphanedpendingforuser", + "target": "packages_coordination_service_src_store_storeadapter_getpendingdeviceaggregateforuser" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/tierResolution.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_tierresolution", + "target": "packages_coordination_service_src_tierresolution_canonical_tier_order", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/tierResolution.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_tierresolution", + "target": "packages_coordination_service_src_tierresolution_highesttierfromroles", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/tierResolution.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_tierresolution", + "target": "packages_coordination_service_src_tierresolution_isknowntier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/tierResolution.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_tierresolution", + "target": "packages_coordination_service_src_tierresolution_resolverelaytier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/tierResolution.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_tierresolution", + "target": "packages_coordination_service_src_tierresolution_tier_rank", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/tierResolution.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_tierresolution_resolverelaytier", + "target": "packages_coordination_service_src_tierresolution_isknowntier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/tierResolution.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_tierresolution_resolverelaytier", + "target": "packages_coordination_service_src_tierresolution_highesttierfromroles", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_wsmanager", + "target": "packages_coordination_service_src_wsmanager_compositekey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_wsmanager", + "target": "packages_coordination_service_src_wsmanager_connectedclient", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L151", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_wsmanager", + "target": "packages_coordination_service_src_wsmanager_createwsmanager", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_wsmanager", + "target": "packages_coordination_service_src_wsmanager_deliverpendingtows", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_wsmanager", + "target": "packages_coordination_service_src_wsmanager_logorphanedpendingforuser", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_wsmanager", + "target": "packages_coordination_service_src_wsmanager_parsecompositekey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_wsmanager", + "target": "packages_coordination_service_src_wsmanager_wsmanageradapter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_wsmanager_logorphanedpendingforuser", + "target": "packages_coordination_service_src_wsmanager_wsmanageradapter_getclientsbyuser", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_wsmanager_wsmanageradapter", + "target": "packages_coordination_service_src_wsmanager_wsmanageradapter_flushpendingtoconnectedclientsforuser", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L144", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_wsmanager_wsmanageradapter", + "target": "packages_coordination_service_src_wsmanager_wsmanageradapter_getclient", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_wsmanager_wsmanageradapter", + "target": "packages_coordination_service_src_wsmanager_wsmanageradapter_getclientbydevice", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_wsmanager_wsmanageradapter", + "target": "packages_coordination_service_src_wsmanager_wsmanageradapter_getclientsbyuser", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L139", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_wsmanager_wsmanageradapter", + "target": "packages_coordination_service_src_wsmanager_wsmanageradapter_getconnectedcount", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L142", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_wsmanager_wsmanageradapter", + "target": "packages_coordination_service_src_wsmanager_wsmanageradapter_getuseridforws", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_wsmanager_wsmanageradapter", + "target": "packages_coordination_service_src_wsmanager_wsmanageradapter_handleack", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_wsmanager_wsmanageradapter", + "target": "packages_coordination_service_src_wsmanager_wsmanageradapter_handleconnection", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_wsmanager_wsmanageradapter", + "target": "packages_coordination_service_src_wsmanager_wsmanageradapter_listconnecteddeviceidsforuser", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_wsmanager_wsmanageradapter", + "target": "packages_coordination_service_src_wsmanager_wsmanageradapter_onpong", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_wsmanager_wsmanageradapter", + "target": "packages_coordination_service_src_wsmanager_wsmanageradapter_pushbeapingestack", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_wsmanager_wsmanageradapter", + "target": "packages_coordination_service_src_wsmanager_wsmanageradapter_pushcapsule", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_wsmanager_wsmanageradapter", + "target": "packages_coordination_service_src_wsmanager_wsmanageradapter_pushp2psignal", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_wsmanager_wsmanageradapter", + "target": "packages_coordination_service_src_wsmanager_wsmanageradapter_pushsystemevent", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_wsmanager_wsmanageradapter", + "target": "packages_coordination_service_src_wsmanager_wsmanageradapter_removeclient", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_wsmanager_wsmanageradapter", + "target": "packages_coordination_service_src_wsmanager_wsmanageradapter_startheartbeat", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "collection", + "confidence": "INFERRED", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L388", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_wsmanager_createwsmanager", + "target": "packages_coordination_service_src_wsmanager_wsmanageradapter_getclient", + "confidence_score": 0.5 + }, + { + "relation": "indirect_call", + "context": "collection", + "confidence": "INFERRED", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L389", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_wsmanager_createwsmanager", + "target": "packages_coordination_service_src_wsmanager_wsmanageradapter_getclientbydevice", + "confidence_score": 0.5 + }, + { + "relation": "indirect_call", + "context": "collection", + "confidence": "INFERRED", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L390", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_wsmanager_createwsmanager", + "target": "packages_coordination_service_src_wsmanager_wsmanageradapter_getclientsbyuser", + "confidence_score": 0.5 + }, + { + "relation": "indirect_call", + "context": "collection", + "confidence": "INFERRED", + "source_file": "packages/coordination-service/src/wsManager.ts", + "source_location": "L394", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_src_wsmanager_createwsmanager", + "target": "packages_coordination_service_src_wsmanager_wsmanageradapter_removeclient", + "confidence_score": 0.5 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/tsconfig.json", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tsconfig", + "target": "packages_coordination_service_tsconfig_compileroptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/tsconfig.json", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tsconfig", + "target": "packages_coordination_service_tsconfig_exclude", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/tsconfig.json", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tsconfig", + "target": "packages_coordination_service_tsconfig_include", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/tsconfig.json", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tsconfig_compileroptions", + "target": "packages_coordination_service_tsconfig_compileroptions_declaration", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/tsconfig.json", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tsconfig_compileroptions", + "target": "packages_coordination_service_tsconfig_compileroptions_module", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/tsconfig.json", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tsconfig_compileroptions", + "target": "packages_coordination_service_tsconfig_compileroptions_moduleresolution", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/tsconfig.json", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tsconfig_compileroptions", + "target": "packages_coordination_service_tsconfig_compileroptions_outdir", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/tsconfig.json", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tsconfig_compileroptions", + "target": "packages_coordination_service_tsconfig_compileroptions_rootdir", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/tsconfig.json", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tsconfig_compileroptions", + "target": "packages_coordination_service_tsconfig_compileroptions_skiplibcheck", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/tsconfig.json", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tsconfig_compileroptions", + "target": "packages_coordination_service_tsconfig_compileroptions_strict", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/tsconfig.json", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "packages_coordination_service_tsconfig_compileroptions", + "target": "packages_coordination_service_tsconfig_compileroptions_target", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/tsconfig.json", + "source_location": "L12", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "packages_coordination_service_tsconfig_include", + "target": "packages_coordination_service_tsconfig_json_ref_src_ts", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/tsconfig.json", + "source_location": "L13", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "packages_coordination_service_tsconfig_exclude", + "target": "packages_coordination_service_tsconfig_json_ref_dist", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/tsconfig.json", + "source_location": "L13", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "packages_coordination_service_tsconfig_exclude", + "target": "packages_coordination_service_tsconfig_json_ref_node_modules", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "packages/coordination-service/tsconfig.json", + "source_location": "L13", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "packages_coordination_service_tsconfig_exclude", + "target": "packages_coordination_service_tsconfig_json_ref_tests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/hello/package.json", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "packages_hello_package", + "target": "packages_hello_package_name", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/hello/package.json", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "packages_hello_package", + "target": "packages_hello_package_scripts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/hello/package.json", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "packages_hello_package", + "target": "packages_hello_package_version", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/hello/package.json", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "packages_hello_package_scripts", + "target": "packages_hello_package_scripts_test", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/hello/tsconfig.json", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "packages_hello_tsconfig", + "target": "packages_hello_tsconfig_extends", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/hello/tsconfig.json", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "packages_hello_tsconfig", + "target": "packages_hello_tsconfig_include", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "packages/hello/tsconfig.json", + "source_location": "L1", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "packages_hello_tsconfig", + "target": "ref_tsconfig_base_json", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "packages/hello/tsconfig.json", + "source_location": "L1", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "packages_hello_tsconfig_include", + "target": "packages_hello_tsconfig_json_ref_src", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/__tests__/ingestion-core.test.ts", + "source_location": "L341", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_tests_ingestion_core_test", + "target": "packages_ingestion_core_tests_ingestion_core_test_draftcapsule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/__tests__/ingestion-core.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_tests_ingestion_core_test", + "target": "packages_ingestion_core_tests_ingestion_core_test_emptytransport", + "confidence_score": 1.0 + }, + { + "relation": "cites", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/__tests__/ingestion-core.test.ts", + "source_location": "L507", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_tests_ingestion_core_test", + "target": "packages_ingestion_core_tests_ingestion_core_test_ts_docref_rfc_3339", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/__tests__/ingestion-core.test.ts", + "source_location": "L805", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_tests_ingestion_core_test", + "target": "packages_ingestion_core_tests_ingestion_core_test_validartefactbase", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/__tests__/ingestion-core.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_tests_ingestion_core_test", + "target": "packages_ingestion_core_tests_ingestion_core_test_validbeappayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/__tests__/ingestion-core.test.ts", + "source_location": "L307", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_tests_ingestion_core_test", + "target": "packages_ingestion_core_tests_ingestion_core_test_validimportonlyartefact", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/__tests__/ingestion-core.test.ts", + "source_location": "L326", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_tests_ingestion_core_test", + "target": "packages_ingestion_core_tests_ingestion_core_test_validrunartefact", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/__tests__/ingestion-core.test.ts", + "source_location": "L293", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_tests_ingestion_core_test", + "target": "packages_ingestion_core_tests_ingestion_core_test_validsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/__tests__/ingestion-core.test.ts", + "source_location": "L317", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_tests_ingestion_core_test_validimportonlyartefact", + "target": "packages_ingestion_core_tests_ingestion_core_test_validsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/__tests__/ingestion-core.test.ts", + "source_location": "L330", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_tests_ingestion_core_test_validrunartefact", + "target": "packages_ingestion_core_tests_ingestion_core_test_validsession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/__tests__/ingestion-core.test.ts", + "source_location": "L328", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_tests_ingestion_core_test_validrunartefact", + "target": "packages_ingestion_core_tests_ingestion_core_test_validimportonlyartefact", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/__tests__/sandboxEgressClassification.test.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_tests_sandboxegressclassification_test", + "target": "packages_ingestion_core_tests_sandboxegressclassification_test_nativebeappackage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/__tests__/sealedServiceRpcCapsuleValidation.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_tests_sealedservicerpccapsulevalidation_test", + "target": "packages_ingestion_core_src_pipeline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/__tests__/sealedServiceRpcCapsuleValidation.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_tests_sealedservicerpccapsulevalidation_test", + "target": "packages_ingestion_core_src_pipeline_validateinput", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/__tests__/sealedServiceRpcCapsuleValidation.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_tests_sealedservicerpccapsulevalidation_test", + "target": "packages_ingestion_core_src_sealedservicerpcconstants", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/__tests__/sealedServiceRpcCapsuleValidation.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_tests_sealedservicerpccapsulevalidation_test", + "target": "packages_ingestion_core_src_sealedservicerpcconstants_sealed_service_rpc_capsule_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/__tests__/sealedServiceRpcCapsuleValidation.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_tests_sealedservicerpccapsulevalidation_test", + "target": "packages_ingestion_core_tests_sealedservicerpccapsulevalidation_test_minimalsealedcapsule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/package.json", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_package", + "target": "packages_ingestion_core_package_devdependencies", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/package.json", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_package", + "target": "packages_ingestion_core_package_engines", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/package.json", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_package", + "target": "packages_ingestion_core_package_exports", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/package.json", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_package", + "target": "packages_ingestion_core_package_main", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/package.json", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_package", + "target": "packages_ingestion_core_package_name", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/package.json", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_package", + "target": "packages_ingestion_core_package_private", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/package.json", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_package", + "target": "packages_ingestion_core_package_scripts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/package.json", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_package", + "target": "packages_ingestion_core_package_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/package.json", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_package", + "target": "packages_ingestion_core_package_types", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/package.json", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_package", + "target": "packages_ingestion_core_package_version", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/package.json", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_package_scripts", + "target": "packages_ingestion_core_package_scripts_build", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/package.json", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_package_scripts", + "target": "packages_ingestion_core_package_scripts_test", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/package.json", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_package_scripts", + "target": "packages_ingestion_core_package_scripts_test_watch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/package.json", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_package_devdependencies", + "target": "packages_ingestion_core_package_devdependencies_types_node", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/package.json", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_package_devdependencies", + "target": "packages_ingestion_core_package_devdependencies_typescript", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/package.json", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_package_devdependencies", + "target": "packages_ingestion_core_package_devdependencies_vitest", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/package.json", + "source_location": "L20", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "packages_ingestion_core_package_devdependencies_types_node", + "target": "packages_ingestion_core_package_json_types_node", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/package.json", + "source_location": "L21", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "packages_ingestion_core_package_devdependencies_typescript", + "target": "packages_ingestion_core_package_json_typescript", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/package.json", + "source_location": "L22", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "packages_ingestion_core_package_devdependencies_vitest", + "target": "packages_ingestion_core_package_json_vitest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/package.json", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_package_engines", + "target": "packages_ingestion_core_package_engines_node", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_beapdetection", + "target": "packages_ingestion_core_src_beapdetection_beap_header_keys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_beapdetection", + "target": "packages_ingestion_core_src_beapdetection_beap_mime_types", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L222", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_beapdetection", + "target": "packages_ingestion_core_src_beapdetection_checkattachmentmetadata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_beapdetection", + "target": "packages_ingestion_core_src_beapdetection_checkheadermarkers", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_beapdetection", + "target": "packages_ingestion_core_src_beapdetection_checkjsonstructure", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L202", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_beapdetection", + "target": "packages_ingestion_core_src_beapdetection_checkjsonstructuremessagepackage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_beapdetection", + "target": "packages_ingestion_core_src_beapdetection_checkmimetype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_beapdetection", + "target": "packages_ingestion_core_src_beapdetection_detectbeapcapsule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L179", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_beapdetection", + "target": "packages_ingestion_core_src_beapdetection_detectbeapmessagepackage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_beapdetection", + "target": "packages_ingestion_core_src_beapdetection_hasencryptedmessagepackagebody", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L144", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_beapdetection", + "target": "packages_ingestion_core_src_beapdetection_iscoordinationrelaynativebeap", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_beapdetection", + "target": "packages_ingestion_core_src_beapdetection_ismessagepackagestructure", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_beapdetection", + "target": "packages_ingestion_core_src_beapdetection_isplainobject", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_beapdetection", + "target": "packages_ingestion_core_src_beapdetection_normalizecoordinationrelaynativebeapwire", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_beapdetection", + "target": "packages_ingestion_core_src_beapdetection_relay_handshake_capsule_types", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L237", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_beapdetection", + "target": "packages_ingestion_core_src_beapdetection_tryparsebeapjson", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_beapdetection", + "target": "packages_ingestion_core_src_beapdetection_valid_message_package_encodings", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_beapdetection", + "target": "packages_ingestion_core_src_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_beapdetection", + "target": "packages_ingestion_core_src_types_beapdetectionresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_beapdetection", + "target": "packages_ingestion_core_src_types_detectionmethod", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_beapdetection", + "target": "packages_ingestion_core_src_types_rawinput", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_beapdetection", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/ingestor.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_ingestor", + "target": "packages_ingestion_core_src_beapdetection", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/pipeline.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_pipeline", + "target": "packages_ingestion_core_src_beapdetection", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/sandboxEgressClassification.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_sandboxegressclassification", + "target": "packages_ingestion_core_src_beapdetection", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L228", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_beapdetection_checkattachmentmetadata", + "target": "packages_ingestion_core_src_beapdetection_beap_mime_types" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_beapdetection_checkmimetype", + "target": "packages_ingestion_core_src_beapdetection_beap_mime_types" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_beapdetection_checkheadermarkers", + "target": "packages_ingestion_core_src_beapdetection_beap_header_keys" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_beapdetection_detectbeapcapsule", + "target": "packages_ingestion_core_src_beapdetection_checkattachmentmetadata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_beapdetection_detectbeapcapsule", + "target": "packages_ingestion_core_src_beapdetection_checkheadermarkers", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_beapdetection_detectbeapcapsule", + "target": "packages_ingestion_core_src_beapdetection_checkjsonstructure", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_beapdetection_detectbeapcapsule", + "target": "packages_ingestion_core_src_beapdetection_checkjsonstructuremessagepackage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_beapdetection_detectbeapcapsule", + "target": "packages_ingestion_core_src_beapdetection_checkmimetype", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_beapdetection_detectbeapcapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/ingestor.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_ingestor", + "target": "packages_ingestion_core_src_beapdetection_detectbeapcapsule", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/ingestion-core/src/ingestor.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_ingestor_ingestinput", + "target": "packages_ingestion_core_src_beapdetection_detectbeapcapsule" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_beapdetection_checkmimetype", + "target": "packages_ingestion_core_src_beapdetection_tryparsebeapjson", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_beapdetection_checkheadermarkers", + "target": "packages_ingestion_core_src_beapdetection_tryparsebeapjson", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L171", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_beapdetection_iscoordinationrelaynativebeap", + "target": "packages_ingestion_core_src_beapdetection_hasencryptedmessagepackagebody", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_beapdetection_ismessagepackagestructure", + "target": "packages_ingestion_core_src_beapdetection_hasencryptedmessagepackagebody", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_beapdetection_hasencryptedmessagepackagebody", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L208", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_beapdetection_checkjsonstructuremessagepackage", + "target": "packages_ingestion_core_src_beapdetection_ismessagepackagestructure", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L187", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_beapdetection_detectbeapmessagepackage", + "target": "packages_ingestion_core_src_beapdetection_ismessagepackagestructure", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_beapdetection_iscoordinationrelaynativebeap", + "target": "packages_ingestion_core_src_beapdetection_ismessagepackagestructure", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L241", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_beapdetection_tryparsebeapjson", + "target": "packages_ingestion_core_src_beapdetection_ismessagepackagestructure", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_beapdetection_ismessagepackagestructure", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L152", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_beapdetection_iscoordinationrelaynativebeap", + "target": "packages_ingestion_core_src_beapdetection_isplainobject", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_beapdetection_normalizecoordinationrelaynativebeapwire", + "target": "packages_ingestion_core_src_beapdetection_isplainobject", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_beapdetection_normalizecoordinationrelaynativebeapwire", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/pipeline.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_pipeline", + "target": "packages_ingestion_core_src_beapdetection_normalizecoordinationrelaynativebeapwire", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/ingestion-core/src/pipeline.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_pipeline_preparecoordinationrelaynativebeaprawinput", + "target": "packages_ingestion_core_src_beapdetection_normalizecoordinationrelaynativebeapwire" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_beapdetection_iscoordinationrelaynativebeap", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/pipeline.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_pipeline", + "target": "packages_ingestion_core_src_beapdetection_iscoordinationrelaynativebeap", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/ingestion-core/src/pipeline.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_pipeline_preparecoordinationrelaynativebeaprawinput", + "target": "packages_ingestion_core_src_beapdetection_iscoordinationrelaynativebeap" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/sandboxEgressClassification.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_sandboxegressclassification", + "target": "packages_ingestion_core_src_beapdetection_iscoordinationrelaynativebeap", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/ingestion-core/src/sandboxEgressClassification.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_sandboxegressclassification_classifysandboxoutboundcapsule", + "target": "packages_ingestion_core_src_beapdetection_iscoordinationrelaynativebeap" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/ingestion-core/src/sandboxEgressClassification.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_sandboxegressclassification_derivecapsuletypeforegress", + "target": "packages_ingestion_core_src_beapdetection_iscoordinationrelaynativebeap" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_beapdetection_detectbeapmessagepackage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/beapDetection.ts", + "source_location": "L224", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_beapdetection_checkattachmentmetadata", + "target": "packages_ingestion_core_src_beapdetection_tryparsebeapjson", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/contentValidator.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_contentvalidator", + "target": "packages_ingestion_core_src_contentvalidator_content_validator_version", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/contentValidator.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_contentvalidator", + "target": "packages_ingestion_core_src_contentvalidator_contentvalidationresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/contentValidator.ts", + "source_location": "L173", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_contentvalidator", + "target": "packages_ingestion_core_src_contentvalidator_ok", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/contentValidator.ts", + "source_location": "L359", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_contentvalidator", + "target": "packages_ingestion_core_src_contentvalidator_plain_email_required_strings", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/contentValidator.ts", + "source_location": "L405", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_contentvalidator", + "target": "packages_ingestion_core_src_contentvalidator_quarantine_required_strings", + "confidence_score": 1.0 + }, + { + "relation": "cites", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/contentValidator.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_contentvalidator", + "target": "packages_ingestion_core_src_contentvalidator_ts_docref_rfc_3339", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/contentValidator.ts", + "source_location": "L338", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_contentvalidator", + "target": "packages_ingestion_core_src_contentvalidator_validateaianalysisfield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/contentValidator.ts", + "source_location": "L269", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_contentvalidator", + "target": "packages_ingestion_core_src_contentvalidator_validateattachmentscanonical", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/contentValidator.ts", + "source_location": "L197", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_contentvalidator", + "target": "packages_ingestion_core_src_contentvalidator_validatebeapmessagecontent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/contentValidator.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_contentvalidator", + "target": "packages_ingestion_core_src_contentvalidator_validatedecryptedbeapcontent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/contentValidator.ts", + "source_location": "L426", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_contentvalidator", + "target": "packages_ingestion_core_src_contentvalidator_validatehostquarantinecontent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/contentValidator.ts", + "source_location": "L371", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_contentvalidator", + "target": "packages_ingestion_core_src_contentvalidator_validateplainemailcontent", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/contentValidator.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_contentvalidator", + "target": "packages_ingestion_core_src_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/contentValidator.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_contentvalidator", + "target": "packages_ingestion_core_src_types_validationreasoncode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/contentValidator.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_contentvalidator", + "target": "packages_ingestion_core_src_validator", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/contentValidator.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_contentvalidator", + "target": "packages_ingestion_core_src_validator_validatesessionimportartefact", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_contentvalidator", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_contentvalidator_content_validator_version", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/contentValidator.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_contentvalidator_contentvalidationresult", + "target": "packages_ingestion_core_src_types_validationreasoncode", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_contentvalidator_contentvalidationresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/contentValidator.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_contentvalidator_validatedecryptedbeapcontent", + "target": "packages_ingestion_core_src_contentvalidator_ok", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/contentValidator.ts", + "source_location": "L134", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_contentvalidator_validatedecryptedbeapcontent", + "target": "packages_ingestion_core_src_contentvalidator_validatebeapmessagecontent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/contentValidator.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_contentvalidator_validatedecryptedbeapcontent", + "target": "packages_ingestion_core_src_contentvalidator_validatehostquarantinecontent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/contentValidator.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_contentvalidator_validatedecryptedbeapcontent", + "target": "packages_ingestion_core_src_contentvalidator_validateplainemailcontent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/ingestion-core/src/contentValidator.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_contentvalidator_validatedecryptedbeapcontent", + "target": "packages_ingestion_core_src_validator_validatesessionimportartefact" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_contentvalidator_validatedecryptedbeapcontent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/contentValidator.ts", + "source_location": "L243", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_contentvalidator_validatebeapmessagecontent", + "target": "packages_ingestion_core_src_contentvalidator_ok", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/contentValidator.ts", + "source_location": "L452", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_contentvalidator_validatehostquarantinecontent", + "target": "packages_ingestion_core_src_contentvalidator_ok", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/contentValidator.ts", + "source_location": "L398", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_contentvalidator_validateplainemailcontent", + "target": "packages_ingestion_core_src_contentvalidator_ok", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/contentValidator.ts", + "source_location": "L240", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_contentvalidator_validatebeapmessagecontent", + "target": "packages_ingestion_core_src_contentvalidator_validateaianalysisfield", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/contentValidator.ts", + "source_location": "L214", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_contentvalidator_validatebeapmessagecontent", + "target": "packages_ingestion_core_src_contentvalidator_validateattachmentscanonical", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/contentValidator.ts", + "source_location": "L224", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_contentvalidator_validatebeapmessagecontent", + "target": "packages_ingestion_core_src_validator_validatesessionimportartefact", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/contentValidator.ts", + "source_location": "L388", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_contentvalidator_validateplainemailcontent", + "target": "packages_ingestion_core_src_contentvalidator_validateattachmentscanonical", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/contentValidator.ts", + "source_location": "L396", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_contentvalidator_validateplainemailcontent", + "target": "packages_ingestion_core_src_contentvalidator_validateaianalysisfield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/distributionGate.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_distributiongate", + "target": "packages_ingestion_core_src_distributiongate_routevalidatedcapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/distributionGate.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_distributiongate", + "target": "packages_ingestion_core_src_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/distributionGate.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_distributiongate", + "target": "packages_ingestion_core_src_types_distributiondecision", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/distributionGate.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_distributiongate", + "target": "packages_ingestion_core_src_types_validatedcapsule", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_distributiongate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/pipeline.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_pipeline", + "target": "packages_ingestion_core_src_distributiongate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_distributiongate_routevalidatedcapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/pipeline.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_pipeline", + "target": "packages_ingestion_core_src_distributiongate_routevalidatedcapsule", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/ingestion-core/src/pipeline.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_pipeline_validateinput", + "target": "packages_ingestion_core_src_distributiongate_routevalidatedcapsule" + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_ingestor", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_ingestor_ingestinput", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_pipeline", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_pipeline_pipelineresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_pipeline_preparecoordinationrelaynativebeaprawinput", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_pipeline_validateinput", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_plaintransform", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_plaintransform_buildplaindraftpayload", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_provenancemetadata", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_provenancemetadata_buildprovenancemetadata", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_provenancemetadata_buildtransportmetadata", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_provenancemetadata_computerawinputhash", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_sandboxegressclassification", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_sandboxegressclassification_classifysandboxoutboundcapsule", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_sandboxegressclassification_createsandboxcontextsyncratelimiter", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_sandboxegressclassification_derivecapsuletypeforegress", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_sandboxegressclassification_issandboxallowedoutboundtype", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_sandboxegressclassification_sandbox_context_sync_max_bytes", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_sandboxegressclassification_sandbox_context_sync_max_per_window", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_sandboxegressclassification_sandbox_context_sync_rate_window_ms", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_sandboxegressclassification_sandbox_outbound_allowed_types", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_sandboxegressclassification_sandboxcontextsyncratelimiter", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_sandboxegressclassification_sandboxegresscapsuleclass", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_sealedservicerpcconstants", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_sealedservicerpcconstants_sealed_service_rpc_capsule_type", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_sealedservicerpcconstants_sealedservicerpccapsuletype", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_sealedvalidation", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_sealedvalidation_sealedcontent", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_sealedvalidation_sealedquarantine", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_sealedvalidation_subprocessackmessage", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_sealedvalidation_subprocesscontrolmessage", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_sealedvalidation_subprocessinboundmessage", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_sealedvalidation_subprocessoutboundmessage", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_sealedvalidation_validaterequest", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_sealedvalidation_validateresponse", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_types", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_types_artefactvalidationresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_types_beapdetectionresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_types_candidatecapsuleenvelope", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_types_capsuletype", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_types_contenttypediscriminator", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_types_detectionmethod", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_types_distributiondecision", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_types_distributiontarget", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_types_ingestion_constants", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_types_inputclassification", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_types_originclassification", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_types_provenancemetadata", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_types_rawattachment", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_types_rawinput", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_types_sourcetype", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_types_transportmetadata", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_types_validatedcapsule", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_types_validatedcapsulepayload", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_types_validationreasoncode", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_types_validationresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_validator", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_validator_validatecapsule", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/index.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_index", + "target": "packages_ingestion_core_src_validator_validatesessionimportartefact", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/ingestor.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_ingestor", + "target": "packages_ingestion_core_src_ingestor_ingestinput", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/ingestor.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_ingestor", + "target": "packages_ingestion_core_src_plaintransform", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/ingestor.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_ingestor", + "target": "packages_ingestion_core_src_plaintransform_buildplaindraftpayload", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/ingestor.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_ingestor", + "target": "packages_ingestion_core_src_provenancemetadata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/ingestor.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_ingestor", + "target": "packages_ingestion_core_src_provenancemetadata_buildprovenancemetadata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/ingestor.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_ingestor", + "target": "packages_ingestion_core_src_provenancemetadata_buildtransportmetadata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/ingestor.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_ingestor", + "target": "packages_ingestion_core_src_provenancemetadata_computerawinputhash", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/ingestor.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_ingestor", + "target": "packages_ingestion_core_src_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/ingestor.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_ingestor", + "target": "packages_ingestion_core_src_types_candidatecapsuleenvelope", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/ingestor.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_ingestor", + "target": "packages_ingestion_core_src_types_ingestion_constants", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/ingestor.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_ingestor", + "target": "packages_ingestion_core_src_types_inputclassification", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/ingestor.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_ingestor", + "target": "packages_ingestion_core_src_types_rawinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/ingestor.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_ingestor", + "target": "packages_ingestion_core_src_types_sourcetype", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/ingestor.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_ingestor", + "target": "packages_ingestion_core_src_types_transportmetadata", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/pipeline.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_pipeline", + "target": "packages_ingestion_core_src_ingestor", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/ingestion-core/src/ingestor.ts", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_ingestor_ingestinput", + "target": "packages_ingestion_core_src_plaintransform_buildplaindraftpayload" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/ingestion-core/src/ingestor.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_ingestor_ingestinput", + "target": "packages_ingestion_core_src_provenancemetadata_buildprovenancemetadata" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/ingestion-core/src/ingestor.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_ingestor_ingestinput", + "target": "packages_ingestion_core_src_provenancemetadata_buildtransportmetadata" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/ingestion-core/src/ingestor.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_ingestor_ingestinput", + "target": "packages_ingestion_core_src_provenancemetadata_computerawinputhash" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/pipeline.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_pipeline", + "target": "packages_ingestion_core_src_ingestor_ingestinput", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/ingestion-core/src/pipeline.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_pipeline_validateinput", + "target": "packages_ingestion_core_src_ingestor_ingestinput" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/pipeline.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_pipeline", + "target": "packages_ingestion_core_src_pipeline_pipelineresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/pipeline.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_pipeline", + "target": "packages_ingestion_core_src_pipeline_preparecoordinationrelaynativebeaprawinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/pipeline.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_pipeline", + "target": "packages_ingestion_core_src_pipeline_validateinput", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/pipeline.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_pipeline", + "target": "packages_ingestion_core_src_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/pipeline.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_pipeline", + "target": "packages_ingestion_core_src_types_ingestion_constants", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/pipeline.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_pipeline", + "target": "packages_ingestion_core_src_types_rawinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/pipeline.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_pipeline", + "target": "packages_ingestion_core_src_types_sourcetype", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/pipeline.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_pipeline", + "target": "packages_ingestion_core_src_types_transportmetadata", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/pipeline.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_pipeline", + "target": "packages_ingestion_core_src_validator", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/pipeline.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_pipeline", + "target": "packages_ingestion_core_src_validator_validatecapsule", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/pipeline.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_pipeline_validateinput", + "target": "packages_ingestion_core_src_pipeline_preparecoordinationrelaynativebeaprawinput", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/ingestion-core/src/pipeline.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_pipeline_validateinput", + "target": "packages_ingestion_core_src_validator_validatecapsule" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/plainTransform.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_plaintransform", + "target": "packages_ingestion_core_src_plaintransform_buildplaindraftpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/provenanceMetadata.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_provenancemetadata", + "target": "packages_ingestion_core_src_provenancemetadata_buildprovenancemetadata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/provenanceMetadata.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_provenancemetadata", + "target": "packages_ingestion_core_src_provenancemetadata_buildtransportmetadata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/provenanceMetadata.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_provenancemetadata", + "target": "packages_ingestion_core_src_provenancemetadata_computerawinputhash", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/provenanceMetadata.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_provenancemetadata", + "target": "packages_ingestion_core_src_provenancemetadata_deriveoriginclassification", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/provenanceMetadata.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_provenancemetadata", + "target": "packages_ingestion_core_src_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/provenanceMetadata.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_provenancemetadata", + "target": "packages_ingestion_core_src_types_ingestion_constants", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/provenanceMetadata.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_provenancemetadata", + "target": "packages_ingestion_core_src_types_inputclassification", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/provenanceMetadata.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_provenancemetadata", + "target": "packages_ingestion_core_src_types_provenancemetadata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/provenanceMetadata.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_provenancemetadata", + "target": "packages_ingestion_core_src_types_rawinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/provenanceMetadata.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_provenancemetadata", + "target": "packages_ingestion_core_src_types_sourcetype", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/provenanceMetadata.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_provenancemetadata", + "target": "packages_ingestion_core_src_types_transportmetadata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/provenanceMetadata.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_provenancemetadata_buildprovenancemetadata", + "target": "packages_ingestion_core_src_provenancemetadata_deriveoriginclassification", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/sandboxEgressClassification.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_sandboxegressclassification", + "target": "packages_ingestion_core_src_sandboxegressclassification_classifysandboxoutboundcapsule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/sandboxEgressClassification.ts", + "source_location": "L150", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_sandboxegressclassification", + "target": "packages_ingestion_core_src_sandboxegressclassification_createsandboxcontextsyncratelimiter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/sandboxEgressClassification.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_sandboxegressclassification", + "target": "packages_ingestion_core_src_sandboxegressclassification_derivecapsuletypeforegress", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/sandboxEgressClassification.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_sandboxegressclassification", + "target": "packages_ingestion_core_src_sandboxegressclassification_issandboxallowedoutboundtype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/sandboxEgressClassification.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_sandboxegressclassification", + "target": "packages_ingestion_core_src_sandboxegressclassification_sandbox_context_sync_max_bytes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/sandboxEgressClassification.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_sandboxegressclassification", + "target": "packages_ingestion_core_src_sandboxegressclassification_sandbox_context_sync_max_per_window", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/sandboxEgressClassification.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_sandboxegressclassification", + "target": "packages_ingestion_core_src_sandboxegressclassification_sandbox_context_sync_rate_window_ms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/sandboxEgressClassification.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_sandboxegressclassification", + "target": "packages_ingestion_core_src_sandboxegressclassification_sandbox_outbound_allowed_types", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/sandboxEgressClassification.ts", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_sandboxegressclassification", + "target": "packages_ingestion_core_src_sandboxegressclassification_sandboxcontextsyncratelimiter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/sandboxEgressClassification.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_sandboxegressclassification", + "target": "packages_ingestion_core_src_sandboxegressclassification_sandboxegresscapsuleclass", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/sandboxEgressClassification.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_sandboxegressclassification", + "target": "packages_ingestion_core_src_sealedservicerpcconstants", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/sandboxEgressClassification.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_sandboxegressclassification", + "target": "packages_ingestion_core_src_sealedservicerpcconstants_sealed_service_rpc_capsule_type", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/ingestion-core/src/sandboxEgressClassification.ts", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_sandboxegressclassification_issandboxallowedoutboundtype", + "target": "packages_ingestion_core_src_sandboxegressclassification_sandbox_outbound_allowed_types" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/sandboxEgressClassification.ts", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_sandboxegressclassification_classifysandboxoutboundcapsule", + "target": "packages_ingestion_core_src_sandboxegressclassification_derivecapsuletypeforegress", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/sandboxEgressClassification.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_sandboxegressclassification_classifysandboxoutboundcapsule", + "target": "packages_ingestion_core_src_sandboxegressclassification_issandboxallowedoutboundtype", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/sandboxEgressClassification.ts", + "source_location": "L142", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_sandboxegressclassification_sandboxcontextsyncratelimiter", + "target": "packages_ingestion_core_src_sandboxegressclassification_sandboxcontextsyncratelimiter_check", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/sealedServiceRpcConstants.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_sealedservicerpcconstants", + "target": "packages_ingestion_core_src_sealedservicerpcconstants_sealed_service_rpc_capsule_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/sealedServiceRpcConstants.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_sealedservicerpcconstants", + "target": "packages_ingestion_core_src_sealedservicerpcconstants_sealedservicerpccapsuletype", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_sealedservicerpcconstants", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_sealedservicerpcconstants_sealed_service_rpc_capsule_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/sealedValidation.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_sealedvalidation", + "target": "packages_ingestion_core_src_sealedvalidation_sealedcontent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/sealedValidation.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_sealedvalidation", + "target": "packages_ingestion_core_src_sealedvalidation_sealedquarantine", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/sealedValidation.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_sealedvalidation", + "target": "packages_ingestion_core_src_sealedvalidation_subprocessackmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/sealedValidation.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_sealedvalidation", + "target": "packages_ingestion_core_src_sealedvalidation_subprocesscontrolmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/sealedValidation.ts", + "source_location": "L144", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_sealedvalidation", + "target": "packages_ingestion_core_src_sealedvalidation_subprocessinboundmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/sealedValidation.ts", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_sealedvalidation", + "target": "packages_ingestion_core_src_sealedvalidation_subprocessoutboundmessage", + "confidence_score": 1.0 + }, + { + "relation": "cites", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/sealedValidation.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_sealedvalidation", + "target": "packages_ingestion_core_src_sealedvalidation_ts_docref_rfc_3339", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/sealedValidation.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_sealedvalidation", + "target": "packages_ingestion_core_src_sealedvalidation_validaterequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/sealedValidation.ts", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_sealedvalidation", + "target": "packages_ingestion_core_src_sealedvalidation_validateresponse", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/sealedValidation.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_sealedvalidation", + "target": "packages_ingestion_core_src_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/sealedValidation.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_sealedvalidation", + "target": "packages_ingestion_core_src_types_provenancemetadata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/sealedValidation.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_sealedvalidation", + "target": "packages_ingestion_core_src_types_validationreasoncode", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/sealedValidation.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_sealedvalidation_validaterequest", + "target": "packages_ingestion_core_src_types_provenancemetadata", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/sealedValidation.ts", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_sealedvalidation_sealedquarantine", + "target": "packages_ingestion_core_src_types_validationreasoncode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_types", + "target": "packages_ingestion_core_src_types_acceptcapsulepayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L240", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_types", + "target": "packages_ingestion_core_src_types_artefactvalidationresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L197", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_types", + "target": "packages_ingestion_core_src_types_beapdetectionresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_types", + "target": "packages_ingestion_core_src_types_candidatecapsuleenvelope", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_types", + "target": "packages_ingestion_core_src_types_capsulepayloadbase", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_types", + "target": "packages_ingestion_core_src_types_capsuletype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_types", + "target": "packages_ingestion_core_src_types_contenttypediscriminator", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L154", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_types", + "target": "packages_ingestion_core_src_types_contextsynccapsulepayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L195", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_types", + "target": "packages_ingestion_core_src_types_detectionmethod", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L252", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_types", + "target": "packages_ingestion_core_src_types_distributiondecision", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L246", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_types", + "target": "packages_ingestion_core_src_types_distributiontarget", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L260", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_types", + "target": "packages_ingestion_core_src_types_ingestion_constants", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_types", + "target": "packages_ingestion_core_src_types_initiatecapsulepayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_types", + "target": "packages_ingestion_core_src_types_inputclassification", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L161", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_types", + "target": "packages_ingestion_core_src_types_internaldraftcapsulepayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L168", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_types", + "target": "packages_ingestion_core_src_types_messagepackagecapsulepayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_types", + "target": "packages_ingestion_core_src_types_originclassification", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_types", + "target": "packages_ingestion_core_src_types_provenancemetadata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_types", + "target": "packages_ingestion_core_src_types_rawattachment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_types", + "target": "packages_ingestion_core_src_types_rawinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L142", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_types", + "target": "packages_ingestion_core_src_types_refreshcapsulepayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_types", + "target": "packages_ingestion_core_src_types_revokecapsulepayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_types", + "target": "packages_ingestion_core_src_types_sessionimportartefact", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_types", + "target": "packages_ingestion_core_src_types_sourcetype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_types", + "target": "packages_ingestion_core_src_types_transportmetadata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_types", + "target": "packages_ingestion_core_src_types_validatedcapsule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L184", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_types", + "target": "packages_ingestion_core_src_types_validatedcapsulepayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L207", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_types", + "target": "packages_ingestion_core_src_types_validationreasoncode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L203", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_types", + "target": "packages_ingestion_core_src_types_validationresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_types_candidatecapsuleenvelope", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_types_validatedcapsule", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_types_capsuletype", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_types_acceptcapsulepayload", + "target": "packages_ingestion_core_src_types_capsulepayloadbase", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L154", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_types_contextsynccapsulepayload", + "target": "packages_ingestion_core_src_types_capsulepayloadbase", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_types_initiatecapsulepayload", + "target": "packages_ingestion_core_src_types_capsulepayloadbase", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L161", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_types_internaldraftcapsulepayload", + "target": "packages_ingestion_core_src_types_capsulepayloadbase", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L168", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_types_messagepackagecapsulepayload", + "target": "packages_ingestion_core_src_types_capsulepayloadbase", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L142", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_types_refreshcapsulepayload", + "target": "packages_ingestion_core_src_types_capsulepayloadbase", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/types.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_types_revokecapsulepayload", + "target": "packages_ingestion_core_src_types_capsulepayloadbase", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_types_messagepackagecapsulepayload", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_types_validatedcapsulepayload", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_types_validationresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_types_validationreasoncode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_types_artefactvalidationresult", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_types_ingestion_constants", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L158", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_validator_artefact_policy_keys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_validator_artefact_purpose_keys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_validator_artefact_top_level_keys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L192", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_validator_canonical_agent_box_config_top_keys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L178", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_validator_canonical_agent_config_top_keys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L235", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_validator_checknounknownkeys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L679", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_validator_countfields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L1006", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_validator_createvalidatedcapsule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_validator_display_grid_config_keys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L166", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_validator_display_grid_inner_config_keys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L169", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_validator_display_grid_slot_config_keys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L815", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_validator_extracthandshakeidfrommessagepackage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L1020", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_validator_fail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L227", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_validator_failartefact", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L151", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_validator_full_session_export_keys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L134", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_validator_handshake_binding_keys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L727", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_validator_hasmessagepackageencryptedbody", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L738", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_validator_ismessagepackageshape", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L660", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_validator_measurejsondepth", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_validator_message_package_required_top_level", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_validator_orchestrator_session_keys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_validator_poisoned_keys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L156", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_validator_processing_event_keys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L724", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_validator_relay_handshake_capsule_types", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_validator_required_fields_by_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_validator_requiredfieldspec", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L827", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_validator_runvalidation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L751", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_validator_runvalidationmessagepackage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L695", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_validator_sanitizeobject", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_validator_scope_constraints_keys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L160", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_validator_sensitive_subcapsule_keys", + "confidence_score": 1.0 + }, + { + "relation": "cites", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L508", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_validator_ts_docref_rfc_3339", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L208", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_validator_valid_boundaries", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L217", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_validator_valid_capability_classes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_validator_valid_capsule_types", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_validator_valid_cloud_payload_modes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L207", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_validator_valid_event_classes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_validator_valid_external_processing", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_validator_valid_message_package_encodings", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L223", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_validator_valid_purpose_identifiers", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L203", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_validator_valid_requested_actions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L209", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_validator_valid_scopes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L205", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_validator_valid_session_kinds_v1_0", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L206", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_validator_valid_session_kinds_v1_1", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_validator_valid_sharing_modes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L715", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_validator_validatecapsule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L249", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_validator_validatedisplaygridentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L317", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_validator_validatefullsessionexportentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L353", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_validator_validatesessionentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L467", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator", + "target": "packages_ingestion_core_src_validator_validatesessionimportartefact", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L870", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator_runvalidation", + "target": "packages_ingestion_core_src_validator_valid_capsule_types" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L886", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator_runvalidation", + "target": "packages_ingestion_core_src_validator_valid_sharing_modes" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L894", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator_runvalidation", + "target": "packages_ingestion_core_src_validator_valid_external_processing" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L899", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator_runvalidation", + "target": "packages_ingestion_core_src_validator_valid_cloud_payload_modes" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L601", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator_validatesessionimportartefact", + "target": "packages_ingestion_core_src_validator_valid_requested_actions" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L589", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator_validatesessionimportartefact", + "target": "packages_ingestion_core_src_validator_valid_event_classes" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L338", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator_validatefullsessionexportentry", + "target": "packages_ingestion_core_src_validator_valid_capability_classes" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L446", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator_validatesessionentry", + "target": "packages_ingestion_core_src_validator_valid_capability_classes" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L542", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator_validatesessionimportartefact", + "target": "packages_ingestion_core_src_validator_valid_purpose_identifiers" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L242", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator_checknounknownkeys", + "target": "packages_ingestion_core_src_validator_failartefact", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L254", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator_validatedisplaygridentry", + "target": "packages_ingestion_core_src_validator_failartefact", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L325", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator_validatefullsessionexportentry", + "target": "packages_ingestion_core_src_validator_failartefact", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L360", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator_validatesessionentry", + "target": "packages_ingestion_core_src_validator_failartefact", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L470", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator_validatesessionimportartefact", + "target": "packages_ingestion_core_src_validator_failartefact", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L266", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator_validatedisplaygridentry", + "target": "packages_ingestion_core_src_validator_checknounknownkeys", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L321", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator_validatefullsessionexportentry", + "target": "packages_ingestion_core_src_validator_checknounknownkeys", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L384", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator_validatesessionentry", + "target": "packages_ingestion_core_src_validator_checknounknownkeys", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L475", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator_validatesessionimportartefact", + "target": "packages_ingestion_core_src_validator_checknounknownkeys", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L427", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator_validatesessionentry", + "target": "packages_ingestion_core_src_validator_validatedisplaygridentry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L379", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator_validatesessionentry", + "target": "packages_ingestion_core_src_validator_validatefullsessionexportentry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L566", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator_validatesessionimportartefact", + "target": "packages_ingestion_core_src_validator_validatesessionentry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L993", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator_runvalidation", + "target": "packages_ingestion_core_src_validator_validatesessionimportartefact", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L850", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator_runvalidation", + "target": "packages_ingestion_core_src_validator_measurejsondepth", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L755", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator_runvalidationmessagepackage", + "target": "packages_ingestion_core_src_validator_measurejsondepth", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L856", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator_runvalidation", + "target": "packages_ingestion_core_src_validator_countfields", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L761", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator_runvalidationmessagepackage", + "target": "packages_ingestion_core_src_validator_countfields", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L979", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator_runvalidation", + "target": "packages_ingestion_core_src_validator_sanitizeobject", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L798", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator_runvalidationmessagepackage", + "target": "packages_ingestion_core_src_validator_sanitizeobject", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L717", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator_validatecapsule", + "target": "packages_ingestion_core_src_validator_runvalidation", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L748", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator_ismessagepackageshape", + "target": "packages_ingestion_core_src_validator_hasmessagepackageencryptedbody", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L774", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator_runvalidationmessagepackage", + "target": "packages_ingestion_core_src_validator_hasmessagepackageencryptedbody", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L846", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator_runvalidation", + "target": "packages_ingestion_core_src_validator_ismessagepackageshape", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L847", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator_runvalidation", + "target": "packages_ingestion_core_src_validator_runvalidationmessagepackage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L811", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator_runvalidationmessagepackage", + "target": "packages_ingestion_core_src_validator_createvalidatedcapsule", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L805", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator_runvalidationmessagepackage", + "target": "packages_ingestion_core_src_validator_extracthandshakeidfrommessagepackage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L757", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator_runvalidationmessagepackage", + "target": "packages_ingestion_core_src_validator_fail", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L1002", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator_runvalidation", + "target": "packages_ingestion_core_src_validator_createvalidatedcapsule", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/src/validator.ts", + "source_location": "L829", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_src_validator_runvalidation", + "target": "packages_ingestion_core_src_validator_fail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/tsconfig.json", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_tsconfig", + "target": "packages_ingestion_core_tsconfig_compileroptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/tsconfig.json", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_tsconfig", + "target": "packages_ingestion_core_tsconfig_exclude", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/tsconfig.json", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_tsconfig", + "target": "packages_ingestion_core_tsconfig_include", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/tsconfig.json", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_tsconfig_compileroptions", + "target": "packages_ingestion_core_tsconfig_compileroptions_declaration", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/tsconfig.json", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_tsconfig_compileroptions", + "target": "packages_ingestion_core_tsconfig_compileroptions_declarationmap", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/tsconfig.json", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_tsconfig_compileroptions", + "target": "packages_ingestion_core_tsconfig_compileroptions_module", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/tsconfig.json", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_tsconfig_compileroptions", + "target": "packages_ingestion_core_tsconfig_compileroptions_moduleresolution", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/tsconfig.json", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_tsconfig_compileroptions", + "target": "packages_ingestion_core_tsconfig_compileroptions_outdir", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/tsconfig.json", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_tsconfig_compileroptions", + "target": "packages_ingestion_core_tsconfig_compileroptions_rootdir", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/tsconfig.json", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_tsconfig_compileroptions", + "target": "packages_ingestion_core_tsconfig_compileroptions_skiplibcheck", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/tsconfig.json", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_tsconfig_compileroptions", + "target": "packages_ingestion_core_tsconfig_compileroptions_strict", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/tsconfig.json", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_tsconfig_compileroptions", + "target": "packages_ingestion_core_tsconfig_compileroptions_target", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/tsconfig.json", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "packages_ingestion_core_tsconfig_compileroptions", + "target": "packages_ingestion_core_tsconfig_compileroptions_types", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/tsconfig.json", + "source_location": "L4", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "packages_ingestion_core_tsconfig_compileroptions_types", + "target": "packages_ingestion_core_tsconfig_json_ref_node", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/tsconfig.json", + "source_location": "L14", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "packages_ingestion_core_tsconfig_include", + "target": "packages_ingestion_core_tsconfig_json_ref_src_ts", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/tsconfig.json", + "source_location": "L15", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "packages_ingestion_core_tsconfig_exclude", + "target": "packages_ingestion_core_tsconfig_json_ref_dist", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/tsconfig.json", + "source_location": "L15", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "packages_ingestion_core_tsconfig_exclude", + "target": "packages_ingestion_core_tsconfig_json_ref_node_modules", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "packages/ingestion-core/tsconfig.json", + "source_location": "L15", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "packages_ingestion_core_tsconfig_exclude", + "target": "packages_ingestion_core_tsconfig_json_ref_tests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/__tests__/relay-server.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_tests_relay_server_test", + "target": "packages_relay_server_src_config", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/__tests__/relay-server.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_tests_relay_server_test", + "target": "packages_relay_server_src_config_relayconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/__tests__/relay-server.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_tests_relay_server_test", + "target": "packages_relay_server_src_ratelimiter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/__tests__/relay-server.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_tests_relay_server_test", + "target": "packages_relay_server_src_ratelimiter_resetratelimitsfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/__tests__/relay-server.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_tests_relay_server_test", + "target": "packages_relay_server_src_server", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/__tests__/relay-server.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_tests_relay_server_test", + "target": "packages_relay_server_src_server_createserver", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/__tests__/relay-server.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_tests_relay_server_test", + "target": "packages_relay_server_src_store", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/__tests__/relay-server.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_tests_relay_server_test", + "target": "packages_relay_server_src_store_cleanupexpired", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/__tests__/relay-server.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_tests_relay_server_test", + "target": "packages_relay_server_src_store_closestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/__tests__/relay-server.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_tests_relay_server_test", + "target": "packages_relay_server_src_store_getdb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/__tests__/relay-server.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_tests_relay_server_test", + "target": "packages_relay_server_src_store_initstore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/__tests__/relay-server.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_tests_relay_server_test", + "target": "packages_relay_server_src_store_registerhandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/__tests__/relay-server.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_tests_relay_server_test", + "target": "packages_relay_server_src_store_storecapsule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/__tests__/relay-server.test.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_tests_relay_server_test", + "target": "packages_relay_server_tests_relay_server_test_makeconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/__tests__/relay-server.test.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_tests_relay_server_test", + "target": "packages_relay_server_tests_relay_server_test_nativebeapcapsule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/__tests__/relay-server.test.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_tests_relay_server_test", + "target": "packages_relay_server_tests_relay_server_test_request", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/__tests__/relay-server.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_tests_relay_server_test", + "target": "packages_relay_server_tests_relay_server_test_validbeapcapsule", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/__tests__/relay-server.test.ts", + "source_location": "L374", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_tests_relay_server_test_rationale_374", + "target": "packages_relay_server_tests_relay_server_test", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/__tests__/sandboxEgressGuard.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_tests_sandboxegressguard_test", + "target": "packages_relay_server_src_config", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/__tests__/sandboxEgressGuard.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_tests_sandboxegressguard_test", + "target": "packages_relay_server_src_config_relayconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/__tests__/sandboxEgressGuard.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_tests_sandboxegressguard_test", + "target": "packages_relay_server_src_ratelimiter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/__tests__/sandboxEgressGuard.test.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_tests_sandboxegressguard_test", + "target": "packages_relay_server_src_ratelimiter_resetratelimitsfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/__tests__/sandboxEgressGuard.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_tests_sandboxegressguard_test", + "target": "packages_relay_server_src_server", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/__tests__/sandboxEgressGuard.test.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_tests_sandboxegressguard_test", + "target": "packages_relay_server_src_server_createserver", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/__tests__/sandboxEgressGuard.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_tests_sandboxegressguard_test", + "target": "packages_relay_server_src_store", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/__tests__/sandboxEgressGuard.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_tests_sandboxegressguard_test", + "target": "packages_relay_server_src_store_closestore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/__tests__/sandboxEgressGuard.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_tests_sandboxegressguard_test", + "target": "packages_relay_server_src_store_getdb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/__tests__/sandboxEgressGuard.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_tests_sandboxegressguard_test", + "target": "packages_relay_server_src_store_initstore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/__tests__/sandboxEgressGuard.test.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_tests_sandboxegressguard_test", + "target": "packages_relay_server_tests_sandboxegressguard_test_lifecyclecapsule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/__tests__/sandboxEgressGuard.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_tests_sandboxegressguard_test", + "target": "packages_relay_server_tests_sandboxegressguard_test_makeconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/__tests__/sandboxEgressGuard.test.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_tests_sandboxegressguard_test", + "target": "packages_relay_server_tests_sandboxegressguard_test_nativebeappackage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/__tests__/sandboxEgressGuard.test.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_tests_sandboxegressguard_test", + "target": "packages_relay_server_tests_sandboxegressguard_test_registerdevicerole", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/__tests__/sandboxEgressGuard.test.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_tests_sandboxegressguard_test", + "target": "packages_relay_server_tests_sandboxegressguard_test_registerhandshaketoken", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/__tests__/sandboxEgressGuard.test.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_tests_sandboxegressguard_test", + "target": "packages_relay_server_tests_sandboxegressguard_test_request", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/__tests__/sandboxEgressGuard.test.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_tests_sandboxegressguard_test_registerdevicerole", + "target": "packages_relay_server_tests_sandboxegressguard_test_request", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/__tests__/sandboxEgressGuard.test.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_tests_sandboxegressguard_test_registerhandshaketoken", + "target": "packages_relay_server_tests_sandboxegressguard_test_request", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/package.json", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_package", + "target": "packages_relay_server_package_dependencies", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/package.json", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_package", + "target": "packages_relay_server_package_devdependencies", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/package.json", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_package", + "target": "packages_relay_server_package_engines", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/package.json", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_package", + "target": "packages_relay_server_package_main", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/package.json", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_package", + "target": "packages_relay_server_package_name", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/package.json", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_package", + "target": "packages_relay_server_package_private", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/package.json", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_package", + "target": "packages_relay_server_package_scripts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/package.json", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_package", + "target": "packages_relay_server_package_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/package.json", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_package", + "target": "packages_relay_server_package_version", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/package.json", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_package_scripts", + "target": "packages_relay_server_package_scripts_build", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/package.json", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_package_scripts", + "target": "packages_relay_server_package_scripts_docker_build", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/package.json", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_package_scripts", + "target": "packages_relay_server_package_scripts_docker_push", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/package.json", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_package_scripts", + "target": "packages_relay_server_package_scripts_docker_run", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/package.json", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_package_scripts", + "target": "packages_relay_server_package_scripts_docker_stop", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/package.json", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_package_scripts", + "target": "packages_relay_server_package_scripts_start", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/package.json", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_package_scripts", + "target": "packages_relay_server_package_scripts_test", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/package.json", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_package_dependencies", + "target": "packages_relay_server_package_dependencies_better_sqlite3", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/package.json", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_package_dependencies", + "target": "packages_relay_server_package_dependencies_repo_ingestion_core", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/package.json", + "source_location": "L17", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "packages_relay_server_package_dependencies_repo_ingestion_core", + "target": "packages_relay_server_package_json_repo_ingestion_core", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/package.json", + "source_location": "L18", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "packages_relay_server_package_dependencies_better_sqlite3", + "target": "packages_relay_server_package_json_better_sqlite3", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/package.json", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_package_devdependencies", + "target": "packages_relay_server_package_devdependencies_types_better_sqlite3", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/package.json", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_package_devdependencies", + "target": "packages_relay_server_package_devdependencies_types_node", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/package.json", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_package_devdependencies", + "target": "packages_relay_server_package_devdependencies_typescript", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/package.json", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_package_devdependencies", + "target": "packages_relay_server_package_devdependencies_vitest", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/package.json", + "source_location": "L21", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "packages_relay_server_package_devdependencies_types_better_sqlite3", + "target": "packages_relay_server_package_json_types_better_sqlite3", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/package.json", + "source_location": "L22", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "packages_relay_server_package_devdependencies_types_node", + "target": "packages_relay_server_package_json_types_node", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/package.json", + "source_location": "L23", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "packages_relay_server_package_devdependencies_typescript", + "target": "packages_relay_server_package_json_typescript", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/package.json", + "source_location": "L24", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "packages_relay_server_package_devdependencies_vitest", + "target": "packages_relay_server_package_json_vitest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/package.json", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_package_engines", + "target": "packages_relay_server_package_engines_node", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/auth.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_auth", + "target": "packages_relay_server_src_auth_extractbearertoken", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/auth.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_auth", + "target": "packages_relay_server_src_auth_verifyhostauth", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/auth.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_auth", + "target": "packages_relay_server_src_auth_verifyingestauth", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server", + "target": "packages_relay_server_src_auth", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server", + "target": "packages_relay_server_src_auth_extractbearertoken", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L243", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server_createrequesthandler", + "target": "packages_relay_server_src_auth_extractbearertoken" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server", + "target": "packages_relay_server_src_auth_verifyhostauth", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L341", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server_createrequesthandler", + "target": "packages_relay_server_src_auth_verifyhostauth" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server", + "target": "packages_relay_server_src_auth_verifyingestauth", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L245", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server_createrequesthandler", + "target": "packages_relay_server_src_auth_verifyingestauth" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/config.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_config", + "target": "packages_relay_server_src_config_loadfromenv", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/config.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_config", + "target": "packages_relay_server_src_config_loadfromfile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/config.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_config", + "target": "packages_relay_server_src_config_loadrelayconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/config.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_config", + "target": "packages_relay_server_src_config_relayconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/index.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_index", + "target": "packages_relay_server_src_config", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server", + "target": "packages_relay_server_src_config", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/store.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_store", + "target": "packages_relay_server_src_config", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server", + "target": "packages_relay_server_src_config_relayconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/store.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_store", + "target": "packages_relay_server_src_config_relayconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/config.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_config_loadrelayconfig", + "target": "packages_relay_server_src_config_loadfromenv", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/config.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_config_loadrelayconfig", + "target": "packages_relay_server_src_config_loadfromfile", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/index.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_index", + "target": "packages_relay_server_src_config_loadrelayconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/index.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_index_main", + "target": "packages_relay_server_src_config_loadrelayconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/health.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_health", + "target": "packages_relay_server_src_health_gethealthpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/health.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_health", + "target": "packages_relay_server_src_health_starttime", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/health.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_health", + "target": "packages_relay_server_src_store", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/health.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_health", + "target": "packages_relay_server_src_store_countunacknowledged", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server", + "target": "packages_relay_server_src_health", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/relay-server/src/health.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_health_gethealthpayload", + "target": "packages_relay_server_src_store_countunacknowledged" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server", + "target": "packages_relay_server_src_health_gethealthpayload", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L208", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server_createrequesthandler", + "target": "packages_relay_server_src_health_gethealthpayload" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/index.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_index", + "target": "packages_relay_server_src_index_main", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/index.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_index", + "target": "packages_relay_server_src_server", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/index.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_index", + "target": "packages_relay_server_src_server_createserver", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/index.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_index", + "target": "packages_relay_server_src_server_startcleanupinterval", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_index", + "target": "packages_relay_server_src_store", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_index", + "target": "packages_relay_server_src_store_initstore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/index.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_index_main", + "target": "packages_relay_server_src_server_createserver", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/index.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_index_main", + "target": "packages_relay_server_src_server_startcleanupinterval", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/index.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_index_main", + "target": "packages_relay_server_src_store_initstore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/rateLimiter.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_ratelimiter", + "target": "packages_relay_server_src_ratelimiter_authfailcounts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/rateLimiter.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_ratelimiter", + "target": "packages_relay_server_src_ratelimiter_checkauthfaillimit", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/rateLimiter.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_ratelimiter", + "target": "packages_relay_server_src_ratelimiter_checkhandshakelimit", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/rateLimiter.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_ratelimiter", + "target": "packages_relay_server_src_ratelimiter_checkiplimit", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/rateLimiter.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_ratelimiter", + "target": "packages_relay_server_src_ratelimiter_entry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/rateLimiter.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_ratelimiter", + "target": "packages_relay_server_src_ratelimiter_handshakecounts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/rateLimiter.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_ratelimiter", + "target": "packages_relay_server_src_ratelimiter_ipcounts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/rateLimiter.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_ratelimiter", + "target": "packages_relay_server_src_ratelimiter_pruneauthfail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/rateLimiter.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_ratelimiter", + "target": "packages_relay_server_src_ratelimiter_pruneiphandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/rateLimiter.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_ratelimiter", + "target": "packages_relay_server_src_ratelimiter_recordauthfailure", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/rateLimiter.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_ratelimiter", + "target": "packages_relay_server_src_ratelimiter_resetratelimitsfortests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server", + "target": "packages_relay_server_src_ratelimiter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/rateLimiter.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_ratelimiter_checkhandshakelimit", + "target": "packages_relay_server_src_ratelimiter_pruneiphandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/rateLimiter.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_ratelimiter_checkiplimit", + "target": "packages_relay_server_src_ratelimiter_pruneiphandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/rateLimiter.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_ratelimiter_checkauthfaillimit", + "target": "packages_relay_server_src_ratelimiter_pruneauthfail", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server", + "target": "packages_relay_server_src_ratelimiter_checkiplimit", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L219", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server_createrequesthandler", + "target": "packages_relay_server_src_ratelimiter_checkiplimit" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server", + "target": "packages_relay_server_src_ratelimiter_checkhandshakelimit", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L239", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server_createrequesthandler", + "target": "packages_relay_server_src_ratelimiter_checkhandshakelimit" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server", + "target": "packages_relay_server_src_ratelimiter_checkauthfaillimit", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L215", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server_createrequesthandler", + "target": "packages_relay_server_src_ratelimiter_checkauthfaillimit" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server", + "target": "packages_relay_server_src_ratelimiter_recordauthfailure", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L246", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server_createrequesthandler", + "target": "packages_relay_server_src_ratelimiter_recordauthfailure" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server", + "target": "packages_relay_server_src_server_createrequesthandler", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L479", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server", + "target": "packages_relay_server_src_server_createserver", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server", + "target": "packages_relay_server_src_server_fanout_capsule_types", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server", + "target": "packages_relay_server_src_server_getclientip", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server", + "target": "packages_relay_server_src_server_isnativebeapcapsule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L168", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server", + "target": "packages_relay_server_src_server_parsehandshakeid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L189", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server", + "target": "packages_relay_server_src_server_parsequeryparam", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server", + "target": "packages_relay_server_src_server_parsesenderdeviceid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L178", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server", + "target": "packages_relay_server_src_server_readbody", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server", + "target": "packages_relay_server_src_server_sandboxcontextsynclimiter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L155", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server", + "target": "packages_relay_server_src_server_senderror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server", + "target": "packages_relay_server_src_server_shouldstoreashostonly", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L497", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server", + "target": "packages_relay_server_src_server_startcleanupinterval", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server", + "target": "packages_relay_server_src_server_status_messages", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server", + "target": "packages_relay_server_src_store", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server", + "target": "packages_relay_server_src_store_acknowledgecapsules", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server", + "target": "packages_relay_server_src_store_cleanupexpired", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server", + "target": "packages_relay_server_src_store_devicerole", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server", + "target": "packages_relay_server_src_store_getdevicerole", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server", + "target": "packages_relay_server_src_store_getregistereddevicecount", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server", + "target": "packages_relay_server_src_store_getregisteredhostcount", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server", + "target": "packages_relay_server_src_store_getunacknowledgedcapsules", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server", + "target": "packages_relay_server_src_store_lookuphandshaketoken", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server", + "target": "packages_relay_server_src_store_registerdevice", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server", + "target": "packages_relay_server_src_store_registerhandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server", + "target": "packages_relay_server_src_store_storecapsule", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L259", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server_createrequesthandler", + "target": "packages_relay_server_src_server_parsesenderdeviceid", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server_isnativebeapcapsule", + "target": "packages_relay_server_src_server_fanout_capsule_types" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server_shouldstoreashostonly", + "target": "packages_relay_server_src_server_isnativebeapcapsule", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L321", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server_createrequesthandler", + "target": "packages_relay_server_src_server_shouldstoreashostonly", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L134", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server_shouldstoreashostonly", + "target": "packages_relay_server_src_store_getregistereddevicecount", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server_shouldstoreashostonly", + "target": "packages_relay_server_src_store_getregisteredhostcount", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L203", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server_createrequesthandler", + "target": "packages_relay_server_src_server_getclientip", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L216", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server_createrequesthandler", + "target": "packages_relay_server_src_server_senderror", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L233", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server_createrequesthandler", + "target": "packages_relay_server_src_server_parsehandshakeid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L228", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server_createrequesthandler", + "target": "packages_relay_server_src_server_readbody", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L349", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server_createrequesthandler", + "target": "packages_relay_server_src_server_parsequeryparam", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L394", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server_createrequesthandler", + "target": "packages_relay_server_src_store_acknowledgecapsules" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L260", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server_createrequesthandler", + "target": "packages_relay_server_src_store_getdevicerole" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L326", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server_createrequesthandler", + "target": "packages_relay_server_src_store_getregisteredhostcount" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L359", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server_createrequesthandler", + "target": "packages_relay_server_src_store_getunacknowledgedcapsules" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L244", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server_createrequesthandler", + "target": "packages_relay_server_src_store_lookuphandshaketoken" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L467", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server_createrequesthandler", + "target": "packages_relay_server_src_store_registerdevice" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L431", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server_createrequesthandler", + "target": "packages_relay_server_src_store_registerhandshake" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L333", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server_createrequesthandler", + "target": "packages_relay_server_src_store_storecapsule" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L480", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server_createserver", + "target": "packages_relay_server_src_server_createrequesthandler", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/relay-server/src/server.ts", + "source_location": "L498", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_server_startcleanupinterval", + "target": "packages_relay_server_src_store_cleanupexpired" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/store.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_store", + "target": "packages_relay_server_src_store_acknowledgecapsules", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/store.ts", + "source_location": "L144", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_store", + "target": "packages_relay_server_src_store_cleanupexpired", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/store.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_store", + "target": "packages_relay_server_src_store_closestore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/store.ts", + "source_location": "L171", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_store", + "target": "packages_relay_server_src_store_countunacknowledged", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/store.ts", + "source_location": "L179", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_store", + "target": "packages_relay_server_src_store_devicerole", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/store.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_store", + "target": "packages_relay_server_src_store_generateid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/store.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_store", + "target": "packages_relay_server_src_store_getdb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/store.ts", + "source_location": "L198", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_store", + "target": "packages_relay_server_src_store_getdevicerole", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/store.ts", + "source_location": "L229", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_store", + "target": "packages_relay_server_src_store_getregistereddevicecount", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/store.ts", + "source_location": "L219", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_store", + "target": "packages_relay_server_src_store_getregisteredhostcount", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/store.ts", + "source_location": "L209", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_store", + "target": "packages_relay_server_src_store_getregisteredhostids", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/store.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_store", + "target": "packages_relay_server_src_store_getunacknowledgedcapsules", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/store.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_store", + "target": "packages_relay_server_src_store_initstore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/store.ts", + "source_location": "L165", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_store", + "target": "packages_relay_server_src_store_lookuphandshaketoken", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/store.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_store", + "target": "packages_relay_server_src_store_migrations", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/store.ts", + "source_location": "L185", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_store", + "target": "packages_relay_server_src_store_registerdevice", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/store.ts", + "source_location": "L151", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_store", + "target": "packages_relay_server_src_store_registerhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/store.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_store", + "target": "packages_relay_server_src_store_relaycapsulerow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/store.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_store", + "target": "packages_relay_server_src_store_storecapsule", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/store.ts", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_store_acknowledgecapsules", + "target": "packages_relay_server_src_store_getdb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/store.ts", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_store_cleanupexpired", + "target": "packages_relay_server_src_store_getdb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/store.ts", + "source_location": "L172", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_store_countunacknowledged", + "target": "packages_relay_server_src_store_getdb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/store.ts", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_store_getdevicerole", + "target": "packages_relay_server_src_store_getdb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/store.ts", + "source_location": "L230", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_store_getregistereddevicecount", + "target": "packages_relay_server_src_store_getdb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/store.ts", + "source_location": "L220", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_store_getregisteredhostcount", + "target": "packages_relay_server_src_store_getdb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/store.ts", + "source_location": "L210", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_store_getregisteredhostids", + "target": "packages_relay_server_src_store_getdb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/store.ts", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_store_getunacknowledgedcapsules", + "target": "packages_relay_server_src_store_getdb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/store.ts", + "source_location": "L166", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_store_lookuphandshaketoken", + "target": "packages_relay_server_src_store_getdb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/store.ts", + "source_location": "L186", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_store_registerdevice", + "target": "packages_relay_server_src_store_getdb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/store.ts", + "source_location": "L156", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_store_registerhandshake", + "target": "packages_relay_server_src_store_getdb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/store.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_store_storecapsule", + "target": "packages_relay_server_src_store_getdb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/src/store.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_src_store_storecapsule", + "target": "packages_relay_server_src_store_generateid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/tsconfig.json", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_tsconfig", + "target": "packages_relay_server_tsconfig_compileroptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/tsconfig.json", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_tsconfig", + "target": "packages_relay_server_tsconfig_exclude", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/tsconfig.json", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_tsconfig", + "target": "packages_relay_server_tsconfig_include", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/tsconfig.json", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_tsconfig_compileroptions", + "target": "packages_relay_server_tsconfig_compileroptions_declaration", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/tsconfig.json", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_tsconfig_compileroptions", + "target": "packages_relay_server_tsconfig_compileroptions_module", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/tsconfig.json", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_tsconfig_compileroptions", + "target": "packages_relay_server_tsconfig_compileroptions_moduleresolution", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/tsconfig.json", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_tsconfig_compileroptions", + "target": "packages_relay_server_tsconfig_compileroptions_outdir", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/tsconfig.json", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_tsconfig_compileroptions", + "target": "packages_relay_server_tsconfig_compileroptions_rootdir", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/tsconfig.json", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_tsconfig_compileroptions", + "target": "packages_relay_server_tsconfig_compileroptions_skiplibcheck", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/tsconfig.json", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_tsconfig_compileroptions", + "target": "packages_relay_server_tsconfig_compileroptions_strict", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/tsconfig.json", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "packages_relay_server_tsconfig_compileroptions", + "target": "packages_relay_server_tsconfig_compileroptions_target", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/tsconfig.json", + "source_location": "L12", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "packages_relay_server_tsconfig_include", + "target": "packages_relay_server_tsconfig_json_ref_src_ts", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/tsconfig.json", + "source_location": "L13", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "packages_relay_server_tsconfig_exclude", + "target": "packages_relay_server_tsconfig_json_ref_dist", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/tsconfig.json", + "source_location": "L13", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "packages_relay_server_tsconfig_exclude", + "target": "packages_relay_server_tsconfig_json_ref_node_modules", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "packages/relay-server/tsconfig.json", + "source_location": "L13", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "packages_relay_server_tsconfig_exclude", + "target": "packages_relay_server_tsconfig_json_ref_tests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/package.json", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_package", + "target": "packages_shared_beap_ui_package_devdependencies", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/package.json", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_package", + "target": "packages_shared_beap_ui_package_exports", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/package.json", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_package", + "target": "packages_shared_beap_ui_package_main", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/package.json", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_package", + "target": "packages_shared_beap_ui_package_name", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/package.json", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_package", + "target": "packages_shared_beap_ui_package_peerdependencies", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/package.json", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_package", + "target": "packages_shared_beap_ui_package_private", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/package.json", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_package", + "target": "packages_shared_beap_ui_package_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/package.json", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_package", + "target": "packages_shared_beap_ui_package_types", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/package.json", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_package", + "target": "packages_shared_beap_ui_package_version", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/package.json", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_package_peerdependencies", + "target": "packages_shared_beap_ui_package_peerdependencies_react", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/package.json", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_package_peerdependencies", + "target": "packages_shared_beap_ui_package_peerdependencies_react_dom", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/package.json", + "source_location": "L16", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "packages_shared_beap_ui_package_peerdependencies_react", + "target": "packages_shared_beap_ui_package_json_react", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/package.json", + "source_location": "L21", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "packages_shared_beap_ui_package_devdependencies_react", + "target": "packages_shared_beap_ui_package_json_react", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/package.json", + "source_location": "L17", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "packages_shared_beap_ui_package_peerdependencies_react_dom", + "target": "packages_shared_beap_ui_package_json_react_dom", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/package.json", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_package_devdependencies", + "target": "packages_shared_beap_ui_package_devdependencies_react", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/package.json", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_package_devdependencies", + "target": "packages_shared_beap_ui_package_devdependencies_types_react", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/package.json", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_package_devdependencies", + "target": "packages_shared_beap_ui_package_devdependencies_typescript", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/package.json", + "source_location": "L20", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "packages_shared_beap_ui_package_devdependencies_types_react", + "target": "packages_shared_beap_ui_package_json_types_react", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/package.json", + "source_location": "L22", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "packages_shared_beap_ui_package_devdependencies_typescript", + "target": "packages_shared_beap_ui_package_json_typescript", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/src/AttachmentPicker.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_src_attachmentpicker", + "target": "packages_shared_beap_ui_src_attachmentpicker_attachmentpicker", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/src/AttachmentPicker.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_src_attachmentpicker", + "target": "packages_shared_beap_ui_src_attachmentpicker_attachmentpickerprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/src/AttachmentPicker.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_src_attachmentpicker", + "target": "packages_shared_beap_ui_src_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/src/AttachmentPicker.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_src_attachmentpicker", + "target": "packages_shared_beap_ui_src_types_attachmentitem", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/src/index.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_src_index", + "target": "packages_shared_beap_ui_src_attachmentpicker", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/src/AttachmentPicker.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_src_attachmentpicker_attachmentpickerprops", + "target": "packages_shared_beap_ui_src_types_attachmentitem", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/src/index.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_src_index", + "target": "packages_shared_beap_ui_src_attachmentpicker_attachmentpickerprops", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/src/index.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_src_index", + "target": "packages_shared_beap_ui_src_attachmentpicker_attachmentpicker", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/src/BeapIdentityBadge.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_src_beapidentitybadge", + "target": "packages_shared_beap_ui_src_beapidentitybadge_beapidentitybadge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/src/BeapIdentityBadge.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_src_beapidentitybadge", + "target": "packages_shared_beap_ui_src_beapidentitybadge_beapidentitybadgeprops", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/src/index.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_src_index", + "target": "packages_shared_beap_ui_src_beapidentitybadge", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/src/index.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_src_index", + "target": "packages_shared_beap_ui_src_beapidentitybadge_beapidentitybadgeprops", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/src/index.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_src_index", + "target": "packages_shared_beap_ui_src_beapidentitybadge_beapidentitybadge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/src/BeapMessageBody.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_src_beapmessagebody", + "target": "packages_shared_beap_ui_src_beapmessagebody_beapmessagebody", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/src/BeapMessageBody.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_src_beapmessagebody", + "target": "packages_shared_beap_ui_src_beapmessagebody_beapmessagebodyprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/src/BeapMessageBody.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_src_beapmessagebody", + "target": "packages_shared_beap_ui_src_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/src/BeapMessageBody.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_src_beapmessagebody", + "target": "packages_shared_beap_ui_src_types_beapmessagebodysessionref", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/src/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_src_index", + "target": "packages_shared_beap_ui_src_beapmessagebody", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/src/BeapMessageBody.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_src_beapmessagebody_beapmessagebodyprops", + "target": "packages_shared_beap_ui_src_types_beapmessagebodysessionref", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/src/index.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_src_index", + "target": "packages_shared_beap_ui_src_beapmessagebody_beapmessagebodyprops", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/src/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_src_index", + "target": "packages_shared_beap_ui_src_beapmessagebody_beapmessagebody", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/src/CapsuleFields.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_src_capsulefields", + "target": "packages_shared_beap_ui_src_capsulefields_capsulefields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/src/CapsuleFields.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_src_capsulefields", + "target": "packages_shared_beap_ui_src_capsulefields_capsulefieldsprops", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/src/index.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_src_index", + "target": "packages_shared_beap_ui_src_capsulefields", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/src/index.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_src_index", + "target": "packages_shared_beap_ui_src_capsulefields_capsulefieldsprops", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/src/index.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_src_index", + "target": "packages_shared_beap_ui_src_capsulefields_capsulefields", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/src/index.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_src_index", + "target": "packages_shared_beap_ui_src_sessionselector", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/src/SessionSelector.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_src_sessionselector", + "target": "packages_shared_beap_ui_src_sessionselector_sessionselector", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/src/SessionSelector.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_src_sessionselector", + "target": "packages_shared_beap_ui_src_sessionselector_sessionselectorprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/src/SessionSelector.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_src_sessionselector", + "target": "packages_shared_beap_ui_src_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/src/SessionSelector.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_src_sessionselector", + "target": "packages_shared_beap_ui_src_types_sessionoption", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/src/index.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_src_index", + "target": "packages_shared_beap_ui_src_sessionselector_sessionselectorprops", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/src/SessionSelector.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_src_sessionselector_sessionselectorprops", + "target": "packages_shared_beap_ui_src_types_sessionoption", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/src/index.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_src_index", + "target": "packages_shared_beap_ui_src_sessionselector_sessionselector", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/src/css.d.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_src_css_d", + "target": "packages_shared_beap_ui_src_css_d_css", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/src/index.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_src_index", + "target": "packages_shared_beap_ui_src_types", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/src/index.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_src_index", + "target": "packages_shared_beap_ui_src_types_attachmentitem", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/src/index.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_src_index", + "target": "packages_shared_beap_ui_src_types_beapmessagebodysessionref", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/src/index.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_src_index", + "target": "packages_shared_beap_ui_src_types_capsuledraftstate", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/src/index.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_src_index", + "target": "packages_shared_beap_ui_src_types_sessionoption", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/src/types.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_src_types", + "target": "packages_shared_beap_ui_src_types_attachmentitem", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/src/types.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_src_types", + "target": "packages_shared_beap_ui_src_types_beapmessagebodysessionref", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/src/types.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_src_types", + "target": "packages_shared_beap_ui_src_types_capsuledraftstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/src/types.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_src_types", + "target": "packages_shared_beap_ui_src_types_sessionoption", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/tsconfig.json", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_tsconfig", + "target": "packages_shared_beap_ui_tsconfig_compileroptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/tsconfig.json", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_tsconfig", + "target": "packages_shared_beap_ui_tsconfig_include", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/tsconfig.json", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_tsconfig_compileroptions", + "target": "packages_shared_beap_ui_tsconfig_compileroptions_declaration", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/tsconfig.json", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_tsconfig_compileroptions", + "target": "packages_shared_beap_ui_tsconfig_compileroptions_esmoduleinterop", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/tsconfig.json", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_tsconfig_compileroptions", + "target": "packages_shared_beap_ui_tsconfig_compileroptions_jsx", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/tsconfig.json", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_tsconfig_compileroptions", + "target": "packages_shared_beap_ui_tsconfig_compileroptions_lib", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/tsconfig.json", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_tsconfig_compileroptions", + "target": "packages_shared_beap_ui_tsconfig_compileroptions_module", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/tsconfig.json", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_tsconfig_compileroptions", + "target": "packages_shared_beap_ui_tsconfig_compileroptions_moduleresolution", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/tsconfig.json", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_tsconfig_compileroptions", + "target": "packages_shared_beap_ui_tsconfig_compileroptions_outdir", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/tsconfig.json", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_tsconfig_compileroptions", + "target": "packages_shared_beap_ui_tsconfig_compileroptions_rootdir", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/tsconfig.json", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_tsconfig_compileroptions", + "target": "packages_shared_beap_ui_tsconfig_compileroptions_skiplibcheck", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/tsconfig.json", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_tsconfig_compileroptions", + "target": "packages_shared_beap_ui_tsconfig_compileroptions_strict", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/tsconfig.json", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_beap_ui_tsconfig_compileroptions", + "target": "packages_shared_beap_ui_tsconfig_compileroptions_target", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/tsconfig.json", + "source_location": "L4", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "packages_shared_beap_ui_tsconfig_compileroptions_lib", + "target": "packages_shared_beap_ui_tsconfig_json_ref_dom", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/tsconfig.json", + "source_location": "L4", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "packages_shared_beap_ui_tsconfig_compileroptions_lib", + "target": "packages_shared_beap_ui_tsconfig_json_ref_dom_iterable", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/tsconfig.json", + "source_location": "L4", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "packages_shared_beap_ui_tsconfig_compileroptions_lib", + "target": "packages_shared_beap_ui_tsconfig_json_ref_es2020", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "packages/shared-beap-ui/tsconfig.json", + "source_location": "L15", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "packages_shared_beap_ui_tsconfig_include", + "target": "packages_shared_beap_ui_tsconfig_json_ref_src", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared-extension/package.json", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_extension_package", + "target": "packages_shared_extension_package_main", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared-extension/package.json", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_extension_package", + "target": "packages_shared_extension_package_name", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared-extension/package.json", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_extension_package", + "target": "packages_shared_extension_package_private", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared-extension/package.json", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_extension_package", + "target": "packages_shared_extension_package_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared-extension/package.json", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_extension_package", + "target": "packages_shared_extension_package_types", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared-extension/package.json", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_extension_package", + "target": "packages_shared_extension_package_version", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared-extension/src/index.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_extension_src_index", + "target": "packages_shared_extension_src_index_msg", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared-extension/src/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_extension_src_index", + "target": "packages_shared_extension_src_index_parsemsg", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared-extension/src/index.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_extension_src_index", + "target": "packages_shared_extension_src_index_ping", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared-extension/src/index.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_extension_src_index", + "target": "packages_shared_extension_src_index_pong", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared-extension/src/storage/ChromeStorageAdapter.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_extension_src_storage_chromestorageadapter", + "target": "packages_shared_extension_src_storage_chromestorageadapter_chromestorageadapter", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/shared-extension/src/storage/ChromeStorageAdapter.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_extension_src_storage_chromestorageadapter_chromestorageadapter", + "target": "packages_shared_extension_src_storage_chromestorageadapter_chromestorageadapter_get", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/shared-extension/src/storage/ChromeStorageAdapter.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_extension_src_storage_chromestorageadapter_chromestorageadapter", + "target": "packages_shared_extension_src_storage_chromestorageadapter_chromestorageadapter_getall", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/shared-extension/src/storage/ChromeStorageAdapter.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_extension_src_storage_chromestorageadapter_chromestorageadapter", + "target": "packages_shared_extension_src_storage_chromestorageadapter_chromestorageadapter_set", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/shared-extension/src/storage/ChromeStorageAdapter.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_extension_src_storage_chromestorageadapter_chromestorageadapter", + "target": "packages_shared_extension_src_storage_chromestorageadapter_chromestorageadapter_setall", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/shared-extension/src/storage/ChromeStorageAdapter.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_extension_src_storage_chromestorageadapter_chromestorageadapter_getall", + "target": "packages_shared_extension_src_storage_chromestorageadapter_chromestorageadapter_get", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/package.json", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_package", + "target": "packages_shared_package_main", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/package.json", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_package", + "target": "packages_shared_package_name", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/package.json", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_package", + "target": "packages_shared_package_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/package.json", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_package", + "target": "packages_shared_package_types", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/package.json", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_package", + "target": "packages_shared_package_version", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/activeHandshakeHealthIssue.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_activehandshakehealthissue", + "target": "packages_shared_src_handshake_activehandshakehealthissue_activehandshakehealthissue", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/activeHandshakeHealthIssue.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_activehandshakehealthissue", + "target": "packages_shared_src_handshake_activehandshakehealthissue_handshakehealthreason", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/activeHandshakeHealthIssue.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_activehandshakehealthissue", + "target": "packages_shared_src_handshake_activehandshakehealthissue_handshakehealthtier", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/index.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_index", + "target": "packages_shared_src_handshake_activehandshakehealthissue", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/contextGovernance.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_contextgovernance", + "target": "packages_shared_src_handshake_contextgovernance_content_types", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/contextGovernance.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_contextgovernance", + "target": "packages_shared_src_handshake_contextgovernance_contenttype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/contextGovernance.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_contextgovernance", + "target": "packages_shared_src_handshake_contextgovernance_contextitemgovernance", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/contextGovernance.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_contextgovernance", + "target": "packages_shared_src_handshake_contextgovernance_contextorigin", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/contextGovernance.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_contextgovernance", + "target": "packages_shared_src_handshake_contextgovernance_contextprovenance", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/contextGovernance.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_contextgovernance", + "target": "packages_shared_src_handshake_contextgovernance_contextverification", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/contextGovernance.ts", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_contextgovernance", + "target": "packages_shared_src_handshake_contextgovernance_createdefaultgovernance", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/contextGovernance.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_contextgovernance", + "target": "packages_shared_src_handshake_contextgovernance_createmessagegovernance", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/contextGovernance.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_contextgovernance", + "target": "packages_shared_src_handshake_contextgovernance_default_usage_policy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/contextGovernance.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_contextgovernance", + "target": "packages_shared_src_handshake_contextgovernance_message_default_policy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/contextGovernance.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_contextgovernance", + "target": "packages_shared_src_handshake_contextgovernance_sensitivity", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/contextGovernance.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_contextgovernance", + "target": "packages_shared_src_handshake_contextgovernance_sensitivity_levels", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/contextGovernance.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_contextgovernance", + "target": "packages_shared_src_handshake_contextgovernance_usagepolicy", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/index.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_index", + "target": "packages_shared_src_handshake_contextgovernance", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/contextGovernance.ts", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_contextgovernance_createmessagegovernance", + "target": "packages_shared_src_handshake_contextgovernance_createdefaultgovernance", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/hsContextFieldValidation.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_hscontextfieldvalidation", + "target": "packages_shared_src_handshake_hscontextfieldvalidation_allowed_document_types", + "confidence_score": 1.0 + }, + { + "relation": "cites", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/hsContextFieldValidation.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_hscontextfieldvalidation", + "target": "packages_shared_src_handshake_hscontextfieldvalidation_ts_docref_rfc_5322", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/hsContextFieldValidation.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_hscontextfieldvalidation", + "target": "packages_shared_src_handshake_hscontextfieldvalidation_validatedocumentlabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/hsContextFieldValidation.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_hscontextfieldvalidation", + "target": "packages_shared_src_handshake_hscontextfieldvalidation_validatedocumenttype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/hsContextFieldValidation.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_hscontextfieldvalidation", + "target": "packages_shared_src_handshake_hscontextfieldvalidation_validateemail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/hsContextFieldValidation.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_hscontextfieldvalidation", + "target": "packages_shared_src_handshake_hscontextfieldvalidation_validateidentifier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/hsContextFieldValidation.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_hscontextfieldvalidation", + "target": "packages_shared_src_handshake_hscontextfieldvalidation_validateopeninghoursentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/hsContextFieldValidation.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_hscontextfieldvalidation", + "target": "packages_shared_src_handshake_hscontextfieldvalidation_validatephone", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/hsContextFieldValidation.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_hscontextfieldvalidation", + "target": "packages_shared_src_handshake_hscontextfieldvalidation_validateplaintext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/hsContextFieldValidation.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_hscontextfieldvalidation", + "target": "packages_shared_src_handshake_hscontextfieldvalidation_validateurl", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/hsContextFieldValidation.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_hscontextfieldvalidation", + "target": "packages_shared_src_handshake_linkvalidation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/hsContextFieldValidation.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_hscontextfieldvalidation", + "target": "packages_shared_src_handshake_linkvalidation_validatehscontextlink", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/hsContextHardening.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_hscontexthardening_test", + "target": "packages_shared_src_handshake_hscontextfieldvalidation", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/shared/src/handshake/hsContextFieldValidation.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_hscontextfieldvalidation_validateurl", + "target": "packages_shared_src_handshake_linkvalidation_validatehscontextlink" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/hsContextHardening.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_hscontexthardening_test", + "target": "packages_shared_src_handshake_hscontextfieldvalidation_validateurl", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/hsContextHardening.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_hscontexthardening_test", + "target": "packages_shared_src_handshake_hscontextfieldvalidation_validateemail", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/hsContextHardening.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_hscontexthardening_test", + "target": "packages_shared_src_handshake_hscontextfieldvalidation_validatephone", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/hsContextHardening.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_hscontexthardening_test", + "target": "packages_shared_src_handshake_hscontextfieldvalidation_validateidentifier", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/hsContextHardening.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_hscontexthardening_test", + "target": "packages_shared_src_handshake_hscontextfieldvalidation_validateplaintext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/hsContextHardening.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_hscontexthardening_test", + "target": "packages_shared_src_handshake_hscontextfieldvalidation_validatedocumentlabel", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/shared/src/handshake/hsContextFieldValidation.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_hscontextfieldvalidation_validatedocumenttype", + "target": "packages_shared_src_handshake_hscontextfieldvalidation_allowed_document_types" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/hsContextHardening.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_hscontexthardening_test", + "target": "packages_shared_src_handshake_hscontextfieldvalidation_validatedocumenttype", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/hsContextHardening.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_hscontexthardening_test", + "target": "packages_shared_src_handshake_linkvalidation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/hsContextHardening.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_hscontexthardening_test", + "target": "packages_shared_src_handshake_linkvalidation_linkentityid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/hsContextHardening.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_hscontexthardening_test", + "target": "packages_shared_src_handshake_linkvalidation_validatehscontextlink", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/hsContextHardening.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_hscontexthardening_test", + "target": "packages_shared_src_vault_vaultcapabilities", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/hsContextHardening.test.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_hscontexthardening_test", + "target": "packages_shared_src_vault_vaultcapabilities_canaccessrecordtype", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/index.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_index", + "target": "packages_shared_src_handshake_internalendpointvalidation", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/index.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_index", + "target": "packages_shared_src_handshake_internalidentityui", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/index.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_index", + "target": "packages_shared_src_handshake_receiveremailvalidation", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/index.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_index", + "target": "packages_shared_src_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalendpointvalidation_test", + "target": "packages_shared_src_handshake_internalendpointvalidation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalendpointvalidation_test", + "target": "packages_shared_src_handshake_internalendpointvalidation_internal_endpoint_error_codes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalendpointvalidation_test", + "target": "packages_shared_src_handshake_internalendpointvalidation_internalendpointidentity", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalendpointvalidation_test", + "target": "packages_shared_src_handshake_internalendpointvalidation_normalizecomputernameforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalendpointvalidation_test", + "target": "packages_shared_src_handshake_internalendpointvalidation_validateinternalcapsuledeviceids", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalendpointvalidation_test", + "target": "packages_shared_src_handshake_internalendpointvalidation_validateinternalendpointfields", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalendpointvalidation_test", + "target": "packages_shared_src_handshake_internalendpointvalidation_validateinternalendpointidentity", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalendpointvalidation_test", + "target": "packages_shared_src_handshake_internalendpointvalidation_validateinternalendpointpair", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalendpointvalidation_test", + "target": "packages_shared_src_handshake_internalendpointvalidation_validateinternalendpointpairdistinct", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L435", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalendpointvalidation", + "target": "packages_shared_src_handshake_internalendpointvalidation_formatpairingcodefordisplay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalendpointvalidation", + "target": "packages_shared_src_handshake_internalendpointvalidation_internal_endpoint_error_codes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalendpointvalidation", + "target": "packages_shared_src_handshake_internalendpointvalidation_internaldevicerole", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalendpointvalidation", + "target": "packages_shared_src_handshake_internalendpointvalidation_internalendpointerrorcode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalendpointvalidation", + "target": "packages_shared_src_handshake_internalendpointvalidation_internalendpointidentity", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalendpointvalidation", + "target": "packages_shared_src_handshake_internalendpointvalidation_internalendpointidentityfromcamel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalendpointvalidation", + "target": "packages_shared_src_handshake_internalendpointvalidation_internalendpointidentitytocamel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalendpointvalidation", + "target": "packages_shared_src_handshake_internalendpointvalidation_internalendpointmissingfield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalendpointvalidation", + "target": "packages_shared_src_handshake_internalendpointvalidation_internalendpointpairvalidationresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalendpointvalidation", + "target": "packages_shared_src_handshake_internalendpointvalidation_internalendpointside", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalendpointvalidation", + "target": "packages_shared_src_handshake_internalendpointvalidation_internalhandshakeendpoint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalendpointvalidation", + "target": "packages_shared_src_handshake_internalendpointvalidation_isnonempty", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L354", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalendpointvalidation", + "target": "packages_shared_src_handshake_internalendpointvalidation_isvalidpairingcodeformat", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L152", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalendpointvalidation", + "target": "packages_shared_src_handshake_internalendpointvalidation_messageformissingfield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalendpointvalidation", + "target": "packages_shared_src_handshake_internalendpointvalidation_normalizecomputernameforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L360", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalendpointvalidation", + "target": "packages_shared_src_handshake_internalendpointvalidation_normalizepairingcode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalendpointvalidation", + "target": "packages_shared_src_handshake_internalendpointvalidation_sidefromlabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L304", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalendpointvalidation", + "target": "packages_shared_src_handshake_internalendpointvalidation_validateinternalcapsuledeviceids", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L324", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalendpointvalidation", + "target": "packages_shared_src_handshake_internalendpointvalidation_validateinternalendpointfields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L183", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalendpointvalidation", + "target": "packages_shared_src_handshake_internalendpointvalidation_validateinternalendpointidentity", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L228", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalendpointvalidation", + "target": "packages_shared_src_handshake_internalendpointvalidation_validateinternalendpointpair", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L341", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalendpointvalidation", + "target": "packages_shared_src_handshake_internalendpointvalidation_validateinternalendpointpairdistinct", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L380", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalendpointvalidation", + "target": "packages_shared_src_handshake_internalendpointvalidation_validateinternalinitiatecontract", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalendpointvalidation", + "target": "packages_shared_src_handshake_internalendpointvalidation_validrole", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L273", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalendpointvalidation_validateinternalendpointpair", + "target": "packages_shared_src_handshake_internalendpointvalidation_normalizecomputernameforhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L345", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalendpointvalidation_validateinternalendpointpairdistinct", + "target": "packages_shared_src_handshake_internalendpointvalidation_internalendpointidentityfromcamel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L192", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalendpointvalidation_validateinternalendpointidentity", + "target": "packages_shared_src_handshake_internalendpointvalidation_isnonempty", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L388", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalendpointvalidation_validateinternalinitiatecontract", + "target": "packages_shared_src_handshake_internalendpointvalidation_isnonempty", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L201", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalendpointvalidation_validateinternalendpointidentity", + "target": "packages_shared_src_handshake_internalendpointvalidation_validrole", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L397", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalendpointvalidation_validateinternalinitiatecontract", + "target": "packages_shared_src_handshake_internalendpointvalidation_validrole", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalendpointvalidation_validateinternalendpointidentity", + "target": "packages_shared_src_handshake_internalendpointvalidation_sidefromlabel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L196", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalendpointvalidation_validateinternalendpointidentity", + "target": "packages_shared_src_handshake_internalendpointvalidation_messageformissingfield", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L330", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalendpointvalidation_validateinternalendpointfields", + "target": "packages_shared_src_handshake_internalendpointvalidation_validateinternalendpointidentity", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L236", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalendpointvalidation_validateinternalendpointpair", + "target": "packages_shared_src_handshake_internalendpointvalidation_validateinternalendpointidentity", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L345", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalendpointvalidation_validateinternalendpointpairdistinct", + "target": "packages_shared_src_handshake_internalendpointvalidation_validateinternalendpointpair", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalEndpointValidation.ts", + "source_location": "L415", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalendpointvalidation_validateinternalinitiatecontract", + "target": "packages_shared_src_handshake_internalendpointvalidation_isvalidpairingcodeformat", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalIdentityUi.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalidentityui_test", + "target": "packages_shared_src_handshake_internalidentityui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalIdentityUi.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalidentityui_test", + "target": "packages_shared_src_handshake_internalidentityui_deriveinternalhandshakeroles", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalIdentityUi.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalidentityui_test", + "target": "packages_shared_src_handshake_internalidentityui_formatinternalbeaptargetsummary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalIdentityUi.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalidentityui_test", + "target": "packages_shared_src_handshake_internalidentityui_formatinternallistsubtitle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalIdentityUi.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalidentityui_test", + "target": "packages_shared_src_handshake_internalidentityui_formatinternalpairingidline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalIdentityUi.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalidentityui_test", + "target": "packages_shared_src_handshake_internalidentityui_formatinternalprimaryline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalIdentityUi.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalidentityui_test", + "target": "packages_shared_src_handshake_internalidentityui_formatpairingcodefordisplay", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalIdentityUi.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalidentityui_test", + "target": "packages_shared_src_handshake_internalidentityui_internalhandshakerolesource", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalIdentityUi.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalidentityui_test", + "target": "packages_shared_src_handshake_internalidentityui_internalidentitysource", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalIdentityUi.test.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalidentityui_test", + "target": "packages_shared_src_handshake_internalidentityui_test_activeinternal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalIdentityUi.test.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalidentityui_test", + "target": "packages_shared_src_handshake_internalidentityui_test_base", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalidentityui", + "target": "packages_shared_src_handshake_internalidentityui_derivedinternalhandshakeroles", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalidentityui", + "target": "packages_shared_src_handshake_internalidentityui_deriveinternalhandshakeroles", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L218", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalidentityui", + "target": "packages_shared_src_handshake_internalidentityui_formatinternalbeaptargetsummary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L211", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalidentityui", + "target": "packages_shared_src_handshake_internalidentityui_formatinternallistsubtitle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L198", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalidentityui", + "target": "packages_shared_src_handshake_internalidentityui_formatinternalpairingidline", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L188", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalidentityui", + "target": "packages_shared_src_handshake_internalidentityui_formatinternalprimaryline", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L178", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalidentityui", + "target": "packages_shared_src_handshake_internalidentityui_formatpairingcodefordisplay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalidentityui", + "target": "packages_shared_src_handshake_internalidentityui_internalhandshakerolesource", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L226", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalidentityui", + "target": "packages_shared_src_handshake_internalidentityui_internalidentityneedsattention", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalidentityui", + "target": "packages_shared_src_handshake_internalidentityui_internalidentitysource", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalidentityui", + "target": "packages_shared_src_handshake_internalidentityui_isinternalhandshake", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalidentityui", + "target": "packages_shared_src_handshake_internalidentityui_localcoordinationdeviceid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalidentityui", + "target": "packages_shared_src_handshake_internalidentityui_localorchestratorkind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalidentityui", + "target": "packages_shared_src_handshake_internalidentityui_normalizedevicerole", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalidentityui", + "target": "packages_shared_src_handshake_internalidentityui_orchestratorkind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalidentityui", + "target": "packages_shared_src_handshake_internalidentityui_orchestratoruserlabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L137", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalidentityui", + "target": "packages_shared_src_handshake_internalidentityui_peercoordinationdeviceid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L161", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalidentityui", + "target": "packages_shared_src_handshake_internalidentityui_peerdevicedisplayname", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L169", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalidentityui", + "target": "packages_shared_src_handshake_internalidentityui_peerdisplaycomputername", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalidentityui", + "target": "packages_shared_src_handshake_internalidentityui_peerorchestratorkind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L153", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalidentityui", + "target": "packages_shared_src_handshake_internalidentityui_peerstableidentifier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalidentityui", + "target": "packages_shared_src_handshake_internalidentityui_shortdeviceidforui", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalidentityui", + "target": "packages_shared_src_handshake_internalidentityui_sixdigitpairingcodeforui", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalidentityui", + "target": "packages_shared_src_handshake_internalidentityui_trimname", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalidentityui_deriveinternalhandshakeroles", + "target": "packages_shared_src_handshake_internalidentityui_normalizedevicerole", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalidentityui_deriveinternalhandshakeroles", + "target": "packages_shared_src_handshake_internalidentityui_trimname", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalidentityui_deriveinternalhandshakeroles", + "target": "packages_shared_src_handshake_internalidentityui_sixdigitpairingcodeforui", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalidentityui_internalhandshakerolesource", + "target": "packages_shared_src_handshake_internalidentityui_internalidentitysource", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L219", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalidentityui_formatinternalbeaptargetsummary", + "target": "packages_shared_src_handshake_internalidentityui_isinternalhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalidentityui_formatinternalpairingidline", + "target": "packages_shared_src_handshake_internalidentityui_isinternalhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L189", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalidentityui_formatinternalprimaryline", + "target": "packages_shared_src_handshake_internalidentityui_isinternalhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L227", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalidentityui_internalidentityneedsattention", + "target": "packages_shared_src_handshake_internalidentityui_isinternalhandshake", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalidentityui_formatinternalprimaryline", + "target": "packages_shared_src_handshake_internalidentityui_peerorchestratorkind", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L192", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalidentityui_formatinternalprimaryline", + "target": "packages_shared_src_handshake_internalidentityui_orchestratoruserlabel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L154", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalidentityui_peerstableidentifier", + "target": "packages_shared_src_handshake_internalidentityui_peercoordinationdeviceid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L172", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalidentityui_peerdisplaycomputername", + "target": "packages_shared_src_handshake_internalidentityui_peerdevicedisplayname", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L190", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalidentityui_formatinternalprimaryline", + "target": "packages_shared_src_handshake_internalidentityui_peerdisplaycomputername", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalidentityui_formatinternalpairingidline", + "target": "packages_shared_src_handshake_internalidentityui_formatpairingcodefordisplay", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L220", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalidentityui_formatinternalbeaptargetsummary", + "target": "packages_shared_src_handshake_internalidentityui_formatinternalprimaryline", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L212", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalidentityui_formatinternallistsubtitle", + "target": "packages_shared_src_handshake_internalidentityui_formatinternalprimaryline", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/internalIdentityUi.ts", + "source_location": "L222", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_internalidentityui_formatinternalbeaptargetsummary", + "target": "packages_shared_src_handshake_internalidentityui_formatinternalpairingidline", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/linkValidation.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_linkvalidation", + "target": "packages_shared_src_handshake_linkvalidation_linkentityid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/linkValidation.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_linkvalidation", + "target": "packages_shared_src_handshake_linkvalidation_safe_protocols", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/linkValidation.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_linkvalidation", + "target": "packages_shared_src_handshake_linkvalidation_unsafe_protocols", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/linkValidation.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_linkvalidation", + "target": "packages_shared_src_handshake_linkvalidation_validatehscontextlink", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/shared/src/handshake/linkValidation.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_linkvalidation_validatehscontextlink", + "target": "packages_shared_src_handshake_linkvalidation_unsafe_protocols" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/shared/src/handshake/linkValidation.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_linkvalidation_validatehscontextlink", + "target": "packages_shared_src_handshake_linkvalidation_safe_protocols" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/policyUtils.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_policyutils_test", + "target": "packages_shared_src_handshake_policyutils", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/policyUtils.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_policyutils_test", + "target": "packages_shared_src_handshake_policyutils_default_ai_processing_mode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/policyUtils.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_policyutils_test", + "target": "packages_shared_src_handshake_policyutils_legacytoaiprocessingmode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/policyUtils.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_policyutils_test", + "target": "packages_shared_src_handshake_policyutils_modetolegacy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/policyUtils.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_policyutils_test", + "target": "packages_shared_src_handshake_policyutils_modetousageflags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/policyUtils.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_policyutils_test", + "target": "packages_shared_src_handshake_policyutils_parsepolicytomode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/policyUtils.test.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_policyutils_test", + "target": "packages_shared_src_handshake_policyutils_serializepolicyfordb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/policyUtils.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_policyutils", + "target": "packages_shared_src_handshake_policyutils_default_ai_processing_mode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/policyUtils.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_policyutils", + "target": "packages_shared_src_handshake_policyutils_legacypolicyselection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/policyUtils.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_policyutils", + "target": "packages_shared_src_handshake_policyutils_legacytoaiprocessingmode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/policyUtils.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_policyutils", + "target": "packages_shared_src_handshake_policyutils_modetolegacy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/policyUtils.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_policyutils", + "target": "packages_shared_src_handshake_policyutils_modetousageflags", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/policyUtils.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_policyutils", + "target": "packages_shared_src_handshake_policyutils_parsepolicytomode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/policyUtils.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_policyutils", + "target": "packages_shared_src_handshake_policyutils_policyselectioninput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/policyUtils.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_policyutils", + "target": "packages_shared_src_handshake_policyutils_policyselectionnew", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/policyUtils.ts", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_policyutils", + "target": "packages_shared_src_handshake_policyutils_serializepolicyfordb", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/policyUtils.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_policyutils", + "target": "packages_shared_src_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/policyUtils.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_policyutils", + "target": "packages_shared_src_handshake_types_aiprocessingmode", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/policyUtils.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_policyutils_policyselectionnew", + "target": "packages_shared_src_handshake_types_aiprocessingmode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/policyUtils.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_policyutils_parsepolicytomode", + "target": "packages_shared_src_handshake_policyutils_legacytoaiprocessingmode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/policyUtils.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_policyutils_serializepolicyfordb", + "target": "packages_shared_src_handshake_policyutils_modetolegacy", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/receiverEmailValidation.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_receiveremailvalidation_test", + "target": "packages_shared_src_handshake_receiveremailvalidation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/receiverEmailValidation.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_receiveremailvalidation_test", + "target": "packages_shared_src_handshake_receiveremailvalidation_validatereceiveremail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/receiverEmailValidation.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_receiveremailvalidation", + "target": "packages_shared_src_handshake_receiveremailvalidation_issameaccounthandshakeemails", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/receiverEmailValidation.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_receiveremailvalidation", + "target": "packages_shared_src_handshake_receiveremailvalidation_normalizehandshakeemail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/receiverEmailValidation.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_receiveremailvalidation", + "target": "packages_shared_src_handshake_receiveremailvalidation_receiveremailvalidationresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/receiverEmailValidation.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_receiveremailvalidation", + "target": "packages_shared_src_handshake_receiveremailvalidation_toemailarray", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/receiverEmailValidation.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_receiveremailvalidation", + "target": "packages_shared_src_handshake_receiveremailvalidation_validatereceiveremail", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/receiverEmailValidation.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_receiveremailvalidation_issameaccounthandshakeemails", + "target": "packages_shared_src_handshake_receiveremailvalidation_normalizehandshakeemail", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/receiverEmailValidation.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_receiveremailvalidation_toemailarray", + "target": "packages_shared_src_handshake_receiveremailvalidation_normalizehandshakeemail", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/receiverEmailValidation.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_receiveremailvalidation_validatereceiveremail", + "target": "packages_shared_src_handshake_receiveremailvalidation_normalizehandshakeemail", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/receiverEmailValidation.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_receiveremailvalidation_validatereceiveremail", + "target": "packages_shared_src_handshake_receiveremailvalidation_toemailarray", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/types.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_types", + "target": "packages_shared_src_handshake_types_actiontype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/types.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_types", + "target": "packages_shared_src_handshake_types_aiprocessingmode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/types.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_types", + "target": "packages_shared_src_handshake_types_contextblockwithpolicy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/types.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_types", + "target": "packages_shared_src_handshake_types_contextitempolicy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/types.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_types", + "target": "packages_shared_src_handshake_types_handshakeipcevent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/types.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_types", + "target": "packages_shared_src_handshake_types_handshakeipcrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/types.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_types", + "target": "packages_shared_src_handshake_types_handshakeipcresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/types.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_types", + "target": "packages_shared_src_handshake_types_handshakestate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/types.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_types", + "target": "packages_shared_src_handshake_types_handshaketier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/types.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_types", + "target": "packages_shared_src_handshake_types_policymode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/types.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_types", + "target": "packages_shared_src_handshake_types_policyselection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/types.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_types", + "target": "packages_shared_src_handshake_types_profilecontextitem", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/handshake/types.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_handshake_types", + "target": "packages_shared_src_handshake_types_sharingmode", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/index.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_index", + "target": "packages_shared_src_handshake_types", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/index.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_index", + "target": "packages_shared_src_index_app_name", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_index", + "target": "packages_shared_src_security_sanitizereturnto", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_index", + "target": "packages_shared_src_security_sanitizereturnto_isreturntosafe", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_index", + "target": "packages_shared_src_security_sanitizereturnto_sanitizeresult", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_index", + "target": "packages_shared_src_security_sanitizereturnto_sanitizereturnto", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_index", + "target": "packages_shared_src_security_sanitizereturnto_sanitizereturntoconfig", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/index.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_index", + "target": "packages_shared_src_security_sanitizereturnto_sanitizereturntosimple", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/index.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_index", + "target": "packages_shared_src_vault_vaultcapabilities", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/index.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_index", + "target": "packages_shared_src_wrchat_difftrigger", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/index.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_index", + "target": "packages_shared_src_wrchat_difftrigger_difftrigger", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/ingestion/index.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_ingestion_index", + "target": "packages_shared_src_ingestion_types", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/ingestion/types.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_ingestion_types", + "target": "packages_shared_src_ingestion_types_distributiontarget", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/ingestion/types.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_ingestion_types", + "target": "packages_shared_src_ingestion_types_ingestionipcresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/ingestion/types.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_ingestion_types", + "target": "packages_shared_src_ingestion_types_inputclassification", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/ingestion/types.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_ingestion_types", + "target": "packages_shared_src_ingestion_types_originclassification", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/ingestion/types.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_ingestion_types", + "target": "packages_shared_src_ingestion_types_sourcetype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/ingestion/types.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_ingestion_types", + "target": "packages_shared_src_ingestion_types_validationreasoncode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/security/sanitizeReturnTo.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_security_sanitizereturnto_test", + "target": "packages_shared_src_security_sanitizereturnto", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/security/sanitizeReturnTo.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_security_sanitizereturnto_test", + "target": "packages_shared_src_security_sanitizereturnto_isreturntosafe", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/security/sanitizeReturnTo.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_security_sanitizereturnto_test", + "target": "packages_shared_src_security_sanitizereturnto_sanitizereturnto", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/security/sanitizeReturnTo.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_security_sanitizereturnto_test", + "target": "packages_shared_src_security_sanitizereturnto_sanitizereturntoconfig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/security/sanitizeReturnTo.test.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_security_sanitizereturnto_test", + "target": "packages_shared_src_security_sanitizereturnto_sanitizereturntosimple", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/security/sanitizeReturnTo.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_security_sanitizereturnto", + "target": "packages_shared_src_security_sanitizereturnto_dangerous_schemes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/security/sanitizeReturnTo.ts", + "source_location": "L211", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_security_sanitizereturnto", + "target": "packages_shared_src_security_sanitizereturnto_isreturntosafe", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/security/sanitizeReturnTo.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_security_sanitizereturnto", + "target": "packages_shared_src_security_sanitizereturnto_sanitizeresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/security/sanitizeReturnTo.ts", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_security_sanitizereturnto", + "target": "packages_shared_src_security_sanitizereturnto_sanitizereturnto", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/security/sanitizeReturnTo.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_security_sanitizereturnto", + "target": "packages_shared_src_security_sanitizereturnto_sanitizereturntoconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/security/sanitizeReturnTo.ts", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_security_sanitizereturnto", + "target": "packages_shared_src_security_sanitizereturnto_sanitizereturntosimple", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/security/sanitizeReturnTo.ts", + "source_location": "L215", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_security_sanitizereturnto_isreturntosafe", + "target": "packages_shared_src_security_sanitizereturnto_sanitizereturnto", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/security/sanitizeReturnTo.ts", + "source_location": "L204", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_security_sanitizereturnto_sanitizereturntosimple", + "target": "packages_shared_src_security_sanitizereturnto_sanitizereturnto", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/storage/StorageAdapter.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_storage_storageadapter", + "target": "packages_shared_src_storage_storageadapter_adapterresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/storage/StorageAdapter.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_storage_storageadapter", + "target": "packages_shared_src_storage_storageadapter_backendconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/storage/StorageAdapter.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_storage_storageadapter", + "target": "packages_shared_src_storage_storageadapter_storageadapter", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/storage/StorageAdapter.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_storage_storageadapter_storageadapter", + "target": "packages_shared_src_storage_storageadapter_storageadapter_get", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/storage/StorageAdapter.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_storage_storageadapter_storageadapter", + "target": "packages_shared_src_storage_storageadapter_storageadapter_getall", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/storage/StorageAdapter.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_storage_storageadapter_storageadapter", + "target": "packages_shared_src_storage_storageadapter_storageadapter_remove", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/storage/StorageAdapter.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_storage_storageadapter_storageadapter", + "target": "packages_shared_src_storage_storageadapter_storageadapter_set", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/storage/StorageAdapter.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_storage_storageadapter_storageadapter", + "target": "packages_shared_src_storage_storageadapter_storageadapter_setall", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/fieldTaxonomy.ts", + "source_location": "L387", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_fieldtaxonomy", + "target": "packages_shared_src_vault_fieldtaxonomy_anti_signals", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/fieldTaxonomy.ts", + "source_location": "L1232", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_fieldtaxonomy", + "target": "packages_shared_src_vault_fieldtaxonomy_autofillsectiontoggles", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/fieldTaxonomy.ts", + "source_location": "L291", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_fieldtaxonomy", + "target": "packages_shared_src_vault_fieldtaxonomy_confidence_hint_threshold", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/fieldTaxonomy.ts", + "source_location": "L285", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_fieldtaxonomy", + "target": "packages_shared_src_vault_fieldtaxonomy_confidence_threshold", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/fieldTaxonomy.ts", + "source_location": "L1240", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_fieldtaxonomy", + "target": "packages_shared_src_vault_fieldtaxonomy_default_section_toggles", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/fieldTaxonomy.ts", + "source_location": "L220", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_fieldtaxonomy", + "target": "packages_shared_src_vault_fieldtaxonomy_domsignal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/fieldTaxonomy.ts", + "source_location": "L1152", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_fieldtaxonomy", + "target": "packages_shared_src_vault_fieldtaxonomy_field_by_kind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/fieldTaxonomy.ts", + "source_location": "L482", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_fieldtaxonomy", + "target": "packages_shared_src_vault_fieldtaxonomy_field_registry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/fieldTaxonomy.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_fieldtaxonomy", + "target": "packages_shared_src_vault_fieldtaxonomy_field_section", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/fieldTaxonomy.ts", + "source_location": "L1322", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_fieldtaxonomy", + "target": "packages_shared_src_vault_fieldtaxonomy_field_taxonomy_version", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/fieldTaxonomy.ts", + "source_location": "L1254", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_fieldtaxonomy", + "target": "packages_shared_src_vault_fieldtaxonomy_fielddetectionresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/fieldTaxonomy.ts", + "source_location": "L1181", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_fieldtaxonomy", + "target": "packages_shared_src_vault_fieldtaxonomy_fieldentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/fieldTaxonomy.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_fieldtaxonomy", + "target": "packages_shared_src_vault_fieldtaxonomy_fieldkind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/fieldTaxonomy.ts", + "source_location": "L1161", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_fieldtaxonomy", + "target": "packages_shared_src_vault_fieldtaxonomy_fields_by_section", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/fieldTaxonomy.ts", + "source_location": "L257", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_fieldtaxonomy", + "target": "packages_shared_src_vault_fieldtaxonomy_fieldsignalspec", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/fieldTaxonomy.ts", + "source_location": "L1157", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_fieldtaxonomy", + "target": "packages_shared_src_vault_fieldtaxonomy_fillable_fields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/fieldTaxonomy.ts", + "source_location": "L412", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_fieldtaxonomy", + "target": "packages_shared_src_vault_fieldtaxonomy_form_context_signals", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/fieldTaxonomy.ts", + "source_location": "L410", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_fieldtaxonomy", + "target": "packages_shared_src_vault_fieldtaxonomy_formcontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/fieldTaxonomy.ts", + "source_location": "L304", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_fieldtaxonomy", + "target": "packages_shared_src_vault_fieldtaxonomy_kw", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/fieldTaxonomy.ts", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_fieldtaxonomy", + "target": "packages_shared_src_vault_fieldtaxonomy_legacy_key_map", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/fieldTaxonomy.ts", + "source_location": "L297", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_fieldtaxonomy", + "target": "packages_shared_src_vault_fieldtaxonomy_max_signals_per_element", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/fieldTaxonomy.ts", + "source_location": "L1278", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_fieldtaxonomy", + "target": "packages_shared_src_vault_fieldtaxonomy_pagescanresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/fieldTaxonomy.ts", + "source_location": "L348", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_fieldtaxonomy", + "target": "packages_shared_src_vault_fieldtaxonomy_rx", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/fieldTaxonomy.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_fieldtaxonomy", + "target": "packages_shared_src_vault_fieldtaxonomy_section_meta", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/fieldTaxonomy.ts", + "source_location": "L1208", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_fieldtaxonomy", + "target": "packages_shared_src_vault_fieldtaxonomy_vaultprofile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/fieldTaxonomy.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_fieldtaxonomy", + "target": "packages_shared_src_vault_fieldtaxonomy_vaultsection", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline", + "target": "packages_shared_src_vault_fieldtaxonomy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline", + "target": "packages_shared_src_vault_fieldtaxonomy_vaultsection", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline", + "target": "packages_shared_src_vault_fieldtaxonomy_fieldkind", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L492", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline_commiterror", + "target": "packages_shared_src_vault_fieldtaxonomy_fieldkind", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L476", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline_commitfieldresult", + "target": "packages_shared_src_vault_fieldtaxonomy_fieldkind", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L224", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline_fieldcandidate", + "target": "packages_shared_src_vault_fieldtaxonomy_fieldkind", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L258", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline_matchresult", + "target": "packages_shared_src_vault_fieldtaxonomy_fieldkind", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline", + "target": "packages_shared_src_vault_fieldtaxonomy_formcontext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L239", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline_fieldcandidate", + "target": "packages_shared_src_vault_fieldtaxonomy_formcontext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline", + "target": "packages_shared_src_vault_fieldtaxonomy_fieldentry", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L783", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline_ioverlaymanager_createsession", + "target": "packages_shared_src_vault_fieldtaxonomy_fieldentry", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L434", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline_overlaytarget", + "target": "packages_shared_src_vault_fieldtaxonomy_fieldentry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline", + "target": "packages_shared_src_vault_fieldtaxonomy_vaultprofile", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L783", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline_ioverlaymanager_createsession", + "target": "packages_shared_src_vault_fieldtaxonomy_vaultprofile", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L838", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline_iquickselect_open", + "target": "packages_shared_src_vault_fieldtaxonomy_vaultprofile", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L392", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline_overlaysession", + "target": "packages_shared_src_vault_fieldtaxonomy_vaultprofile", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline", + "target": "packages_shared_src_vault_fieldtaxonomy_autofillsectiontoggles", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L766", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline_ifieldscanner_rescan", + "target": "packages_shared_src_vault_fieldtaxonomy_autofillsectiontoggles", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L761", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline_ifieldscanner_scan", + "target": "packages_shared_src_vault_fieldtaxonomy_autofillsectiontoggles", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/haMode.ts", + "source_location": "L259", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_hamode", + "target": "packages_shared_src_vault_hamode_activateha", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/haMode.ts", + "source_location": "L233", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_hamode", + "target": "packages_shared_src_vault_hamode_candeactivateha", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/haMode.ts", + "source_location": "L285", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_hamode", + "target": "packages_shared_src_vault_hamode_deactivateha", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/haMode.ts", + "source_location": "L194", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_hamode", + "target": "packages_shared_src_vault_hamode_default_ha_state", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/haMode.ts", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_hamode", + "target": "packages_shared_src_vault_hamode_ha_config", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/haMode.ts", + "source_location": "L458", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_hamode", + "target": "packages_shared_src_vault_hamode_ha_ipc_allowlist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/haMode.ts", + "source_location": "L491", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_hamode", + "target": "packages_shared_src_vault_hamode_ha_tier_overrides", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/haMode.ts", + "source_location": "L421", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_hamode", + "target": "packages_shared_src_vault_hamode_haallows", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/haMode.ts", + "source_location": "L472", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_hamode", + "target": "packages_shared_src_vault_hamode_haallowsipc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/haMode.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_hamode", + "target": "packages_shared_src_vault_hamode_haconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/haMode.ts", + "source_location": "L434", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_hamode", + "target": "packages_shared_src_vault_hamode_hadenyreason", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/haMode.ts", + "source_location": "L401", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_hamode", + "target": "packages_shared_src_vault_hamode_hagatedaction", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/haMode.ts", + "source_location": "L169", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_hamode", + "target": "packages_shared_src_vault_hamode_hamodestate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/haMode.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_hamode", + "target": "packages_shared_src_vault_hamode_hastate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/haMode.ts", + "source_location": "L243", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_hamode", + "target": "packages_shared_src_vault_hamode_hatransitionresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/haMode.ts", + "source_location": "L526", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_hamode", + "target": "packages_shared_src_vault_hamode_haverificationitem", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/haMode.ts", + "source_location": "L207", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_hamode", + "target": "packages_shared_src_vault_hamode_initial_ha_state_off", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/haMode.ts", + "source_location": "L221", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_hamode", + "target": "packages_shared_src_vault_hamode_ishaactive", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/haMode.ts", + "source_location": "L227", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_hamode", + "target": "packages_shared_src_vault_hamode_ishalocked", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/haMode.ts", + "source_location": "L317", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_hamode", + "target": "packages_shared_src_vault_hamode_lockha", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/haMode.ts", + "source_location": "L347", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_hamode", + "target": "packages_shared_src_vault_hamode_unlockha", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/haMode.ts", + "source_location": "L533", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_hamode", + "target": "packages_shared_src_vault_hamode_verifyhaenforcement", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/haMode.ts", + "source_location": "L426", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_hamode_haallows", + "target": "packages_shared_src_vault_hamode_ishaactive", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/haMode.ts", + "source_location": "L476", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_hamode_haallowsipc", + "target": "packages_shared_src_vault_hamode_ishaactive", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/haMode.ts", + "source_location": "L547", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_hamode_verifyhaenforcement", + "target": "packages_shared_src_vault_hamode_ishaactive", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/shared/src/vault/haMode.ts", + "source_location": "L477", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_hamode_haallowsipc", + "target": "packages_shared_src_vault_hamode_ha_ipc_allowlist" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L903", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline", + "target": "packages_shared_src_vault_insertionpipeline_autofillmessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L913", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline", + "target": "packages_shared_src_vault_insertionpipeline_autofillresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L954", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline", + "target": "packages_shared_src_vault_insertionpipeline_blocked_input_types", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L488", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline", + "target": "packages_shared_src_vault_insertionpipeline_commiterror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L495", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline", + "target": "packages_shared_src_vault_insertionpipeline_commiterrorcode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L474", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline", + "target": "packages_shared_src_vault_insertionpipeline_commitfieldresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L459", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline", + "target": "packages_shared_src_vault_insertionpipeline_commitresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L716", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline", + "target": "packages_shared_src_vault_insertionpipeline_computedisplayvalue", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L699", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline", + "target": "packages_shared_src_vault_insertionpipeline_default_masking", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L597", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline", + "target": "packages_shared_src_vault_insertionpipeline_default_overlay_config", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L927", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline", + "target": "packages_shared_src_vault_insertionpipeline_default_session_timeout_ms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L328", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline", + "target": "packages_shared_src_vault_insertionpipeline_domfingerprint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L345", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline", + "target": "packages_shared_src_vault_insertionpipeline_domfingerprintproperties", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L875", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline", + "target": "packages_shared_src_vault_insertionpipeline_extractedcredentials", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L215", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline", + "target": "packages_shared_src_vault_insertionpipeline_fieldcandidate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L930", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline", + "target": "packages_shared_src_vault_insertionpipeline_fingerprint_max_age_ms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L366", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline", + "target": "packages_shared_src_vault_insertionpipeline_fingerprintinvalidreason", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L360", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline", + "target": "packages_shared_src_vault_insertionpipeline_fingerprintvalidation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L279", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline", + "target": "packages_shared_src_vault_insertionpipeline_firedsignal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L814", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline", + "target": "packages_shared_src_vault_insertionpipeline_icommitter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L756", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline", + "target": "packages_shared_src_vault_insertionpipeline_ifieldscanner", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L778", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline", + "target": "packages_shared_src_vault_insertionpipeline_ioverlaymanager", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L833", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline", + "target": "packages_shared_src_vault_insertionpipeline_iquickselect", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L855", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline", + "target": "packages_shared_src_vault_insertionpipeline_isubmitwatcher", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L667", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline", + "target": "packages_shared_src_vault_insertionpipeline_maskingconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L250", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline", + "target": "packages_shared_src_vault_insertionpipeline_matchresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L936", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline", + "target": "packages_shared_src_vault_insertionpipeline_max_active_sessions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L924", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline", + "target": "packages_shared_src_vault_insertionpipeline_max_session_timeout_ms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L939", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline", + "target": "packages_shared_src_vault_insertionpipeline_mutation_rescan_debounce_ms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L570", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline", + "target": "packages_shared_src_vault_insertionpipeline_overlayrenderconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L387", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline", + "target": "packages_shared_src_vault_insertionpipeline_overlaysession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L424", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline", + "target": "packages_shared_src_vault_insertionpipeline_overlaysessionstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L432", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline", + "target": "packages_shared_src_vault_insertionpipeline_overlaytarget", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L933", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline", + "target": "packages_shared_src_vault_insertionpipeline_rect_tolerance_px", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L537", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline", + "target": "packages_shared_src_vault_insertionpipeline_safetycheck", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L548", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline", + "target": "packages_shared_src_vault_insertionpipeline_safetycheckname", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L529", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline", + "target": "packages_shared_src_vault_insertionpipeline_safetycheckresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L942", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline", + "target": "packages_shared_src_vault_insertionpipeline_scan_throttle_ms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L948", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline", + "target": "packages_shared_src_vault_insertionpipeline_valid_target_tags", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L766", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline_ifieldscanner", + "target": "packages_shared_src_vault_insertionpipeline_ifieldscanner_rescan", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L761", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline_ifieldscanner", + "target": "packages_shared_src_vault_insertionpipeline_ifieldscanner_scan", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L771", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline_ifieldscanner", + "target": "packages_shared_src_vault_insertionpipeline_ifieldscanner_scoreelement", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L783", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline_ioverlaymanager", + "target": "packages_shared_src_vault_insertionpipeline_ioverlaymanager_createsession", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L797", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline_ioverlaymanager", + "target": "packages_shared_src_vault_insertionpipeline_ioverlaymanager_dismiss", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L802", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline_ioverlaymanager", + "target": "packages_shared_src_vault_insertionpipeline_ioverlaymanager_getactivesession", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L792", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline_ioverlaymanager", + "target": "packages_shared_src_vault_insertionpipeline_ioverlaymanager_show", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L807", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline_ioverlaymanager", + "target": "packages_shared_src_vault_insertionpipeline_ioverlaymanager_teardownall", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L826", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline_icommitter", + "target": "packages_shared_src_vault_insertionpipeline_icommitter_commit", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L843", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline_iquickselect", + "target": "packages_shared_src_vault_insertionpipeline_iquickselect_close", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L848", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline_iquickselect", + "target": "packages_shared_src_vault_insertionpipeline_iquickselect_isopen", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L838", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline_iquickselect", + "target": "packages_shared_src_vault_insertionpipeline_iquickselect_open", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L869", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline_isubmitwatcher", + "target": "packages_shared_src_vault_insertionpipeline_isubmitwatcher_oncredentialsubmit", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L859", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline_isubmitwatcher", + "target": "packages_shared_src_vault_insertionpipeline_isubmitwatcher_start", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/insertionPipeline.ts", + "source_location": "L864", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_insertionpipeline_isubmitwatcher", + "target": "packages_shared_src_vault_insertionpipeline_isubmitwatcher_stop", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/originPolicy.ts", + "source_location": "L368", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_originpolicy", + "target": "packages_shared_src_vault_originpolicy_classifyrelevance", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/originPolicy.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_originpolicy", + "target": "packages_shared_src_vault_originpolicy_default_ports", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/originPolicy.ts", + "source_location": "L336", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_originpolicy", + "target": "packages_shared_src_vault_originpolicy_ispublicsuffix", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/originPolicy.ts", + "source_location": "L252", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_originpolicy", + "target": "packages_shared_src_vault_originpolicy_matchorigin", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/originPolicy.ts", + "source_location": "L190", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_originpolicy", + "target": "packages_shared_src_vault_originpolicy_normalizetoorigin", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/originPolicy.ts", + "source_location": "L224", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_originpolicy", + "target": "packages_shared_src_vault_originpolicy_originmatchoptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/originPolicy.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_originpolicy", + "target": "packages_shared_src_vault_originpolicy_originmatchresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/originPolicy.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_originpolicy", + "target": "packages_shared_src_vault_originpolicy_parsedorigin", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/originPolicy.ts", + "source_location": "L150", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_originpolicy", + "target": "packages_shared_src_vault_originpolicy_parseorigin", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/originPolicy.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_originpolicy", + "target": "packages_shared_src_vault_originpolicy_public_suffixes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/originPolicy.ts", + "source_location": "L203", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_originpolicy", + "target": "packages_shared_src_vault_originpolicy_registrabledomain", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/originPolicy.ts", + "source_location": "L353", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_originpolicy", + "target": "packages_shared_src_vault_originpolicy_relevancetier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/originPolicy.ts", + "source_location": "L402", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_originpolicy", + "target": "packages_shared_src_vault_originpolicy_relevanceweight", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/originPolicy.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_originpolicy", + "target": "packages_shared_src_vault_originpolicy_subdomainpolicy", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "packages/shared/src/vault/originPolicy.ts", + "source_location": "L337", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_originpolicy_ispublicsuffix", + "target": "packages_shared_src_vault_originpolicy_public_suffixes" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/originPolicy.ts", + "source_location": "L380", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_originpolicy_classifyrelevance", + "target": "packages_shared_src_vault_originpolicy_parseorigin", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/originPolicy.ts", + "source_location": "L259", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_originpolicy_matchorigin", + "target": "packages_shared_src_vault_originpolicy_parseorigin", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/originPolicy.ts", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_originpolicy_normalizetoorigin", + "target": "packages_shared_src_vault_originpolicy_parseorigin", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/originPolicy.ts", + "source_location": "L382", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_originpolicy_classifyrelevance", + "target": "packages_shared_src_vault_originpolicy_registrabledomain", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/originPolicy.ts", + "source_location": "L297", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_originpolicy_matchorigin", + "target": "packages_shared_src_vault_originpolicy_registrabledomain", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/originPolicy.ts", + "source_location": "L376", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_originpolicy_classifyrelevance", + "target": "packages_shared_src_vault_originpolicy_matchorigin", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/vaultCapabilities.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_vaultcapabilities_test", + "target": "packages_shared_src_vault_vaultcapabilities", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/vaultCapabilities.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_vaultcapabilities_test", + "target": "packages_shared_src_vault_vaultcapabilities_all_item_categories", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/vaultCapabilities.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_vaultcapabilities_test", + "target": "packages_shared_src_vault_vaultcapabilities_canaccesscategory", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/vaultCapabilities.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_vaultcapabilities_test", + "target": "packages_shared_src_vault_vaultcapabilities_canaccessrecordtype", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/vaultCapabilities.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_vaultcapabilities_test", + "target": "packages_shared_src_vault_vaultcapabilities_canattachcontext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/vaultCapabilities.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_vaultcapabilities_test", + "target": "packages_shared_src_vault_vaultcapabilities_default_binding_policy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/vaultCapabilities.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_vaultcapabilities_test", + "target": "packages_shared_src_vault_vaultcapabilities_getaccessiblerecordtypes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/vaultCapabilities.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_vaultcapabilities_test", + "target": "packages_shared_src_vault_vaultcapabilities_getcategoryoptionsfortier", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/vaultCapabilities.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_vaultcapabilities_test", + "target": "packages_shared_src_vault_vaultcapabilities_handshakebindingpolicy", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/vaultCapabilities.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_vaultcapabilities_test", + "target": "packages_shared_src_vault_vaultcapabilities_handshaketarget", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/vaultCapabilities.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_vaultcapabilities_test", + "target": "packages_shared_src_vault_vaultcapabilities_legacy_category_to_record_type", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/vaultCapabilities.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_vaultcapabilities_test", + "target": "packages_shared_src_vault_vaultcapabilities_legacyitemcategory", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/vaultCapabilities.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_vaultcapabilities_test", + "target": "packages_shared_src_vault_vaultcapabilities_matchdomainglob", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/vaultCapabilities.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_vaultcapabilities_test", + "target": "packages_shared_src_vault_vaultcapabilities_record_type_to_default_category", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/vaultCapabilities.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_vaultcapabilities_test", + "target": "packages_shared_src_vault_vaultcapabilities_vaultrecordtype", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/vaultCapabilities.test.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_vaultcapabilities_test", + "target": "packages_shared_src_vault_vaultcapabilities_vaulttier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L373", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_vaultcapabilities", + "target": "packages_shared_src_vault_vaultcapabilities_all_item_categories", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L459", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_vaultcapabilities", + "target": "packages_shared_src_vault_vaultcapabilities_attachblockreason", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L467", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_vaultcapabilities", + "target": "packages_shared_src_vault_vaultcapabilities_attachevalresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L403", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_vaultcapabilities", + "target": "packages_shared_src_vault_vaultcapabilities_canaccesscategory", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_vaultcapabilities", + "target": "packages_shared_src_vault_vaultcapabilities_canaccessrecordtype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L491", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_vaultcapabilities", + "target": "packages_shared_src_vault_vaultcapabilities_canattachcontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L320", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_vaultcapabilities", + "target": "packages_shared_src_vault_vaultcapabilities_category_ui_map", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L309", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_vaultcapabilities", + "target": "packages_shared_src_vault_vaultcapabilities_categoryuilabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L437", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_vaultcapabilities", + "target": "packages_shared_src_vault_vaultcapabilities_default_binding_policy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L173", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_vaultcapabilities", + "target": "packages_shared_src_vault_vaultcapabilities_getaccessiblerecordtypes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L387", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_vaultcapabilities", + "target": "packages_shared_src_vault_vaultcapabilities_getcategoryoptionsfortier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L423", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_vaultcapabilities", + "target": "packages_shared_src_vault_vaultcapabilities_handshakebindingpolicy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L449", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_vaultcapabilities", + "target": "packages_shared_src_vault_vaultcapabilities_handshaketarget", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L268", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_vaultcapabilities", + "target": "packages_shared_src_vault_vaultcapabilities_legacy_category_to_record_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L256", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_vaultcapabilities", + "target": "packages_shared_src_vault_vaultcapabilities_legacyitemcategory", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L565", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_vaultcapabilities", + "target": "packages_shared_src_vault_vaultcapabilities_matchdomainglob", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L195", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_vaultcapabilities", + "target": "packages_shared_src_vault_vaultcapabilities_record_type_display", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_vaultcapabilities", + "target": "packages_shared_src_vault_vaultcapabilities_record_type_min_tier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_vaultcapabilities", + "target": "packages_shared_src_vault_vaultcapabilities_record_type_min_tier_write", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L284", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_vaultcapabilities", + "target": "packages_shared_src_vault_vaultcapabilities_record_type_to_default_category", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L181", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_vaultcapabilities", + "target": "packages_shared_src_vault_vaultcapabilities_recordtypedisplayinfo", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_vaultcapabilities", + "target": "packages_shared_src_vault_vaultcapabilities_tier_allowed_actions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_vaultcapabilities", + "target": "packages_shared_src_vault_vaultcapabilities_tier_level", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_vaultcapabilities", + "target": "packages_shared_src_vault_vaultcapabilities_vault_record_types", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_vaultcapabilities", + "target": "packages_shared_src_vault_vaultcapabilities_vaultaction", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_vaultcapabilities", + "target": "packages_shared_src_vault_vaultcapabilities_vaultrecordtype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_vaultcapabilities", + "target": "packages_shared_src_vault_vaultcapabilities_vaulttier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L410", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_vaultcapabilities_canaccesscategory", + "target": "packages_shared_src_vault_vaultcapabilities_canaccessrecordtype", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L497", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_vaultcapabilities_canattachcontext", + "target": "packages_shared_src_vault_vaultcapabilities_canaccessrecordtype", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_vaultcapabilities_getaccessiblerecordtypes", + "target": "packages_shared_src_vault_vaultcapabilities_canaccessrecordtype", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L392", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_vaultcapabilities_getcategoryoptionsfortier", + "target": "packages_shared_src_vault_vaultcapabilities_canaccessrecordtype", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/vault/vaultCapabilities.ts", + "source_location": "L517", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_vault_vaultcapabilities_canattachcontext", + "target": "packages_shared_src_vault_vaultcapabilities_matchdomainglob", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "packages/shared/src/wrChat/diffTrigger.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "packages_shared_src_wrchat_difftrigger", + "target": "packages_shared_src_wrchat_difftrigger_difftrigger", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/check-inbox-validator-gate.sh", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_check_inbox_validator_gate", + "target": "scripts_check_inbox_validator_gate_sh__entry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/check-self-call-loopback.cjs", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_check_self_call_loopback", + "target": "scripts_check_self_call_loopback_allowlist_suffixes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/check-self-call-loopback.cjs", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_check_self_call_loopback", + "target": "scripts_check_self_call_loopback_checkfile", + "confidence_score": 1.0 + }, + { + "relation": "cites", + "confidence": "EXTRACTED", + "source_file": "scripts/check-self-call-loopback.cjs", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_check_self_call_loopback", + "target": "scripts_check_self_call_loopback_cjs_docref_rfc_1918", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/check-self-call-loopback.cjs", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_check_self_call_loopback", + "target": "scripts_check_self_call_loopback_code_root", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/check-self-call-loopback.cjs", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_check_self_call_loopback", + "target": "scripts_check_self_call_loopback_fs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/check-self-call-loopback.cjs", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_check_self_call_loopback", + "target": "scripts_check_self_call_loopback_isallowlisted", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/check-self-call-loopback.cjs", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_check_self_call_loopback", + "target": "scripts_check_self_call_loopback_main", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/check-self-call-loopback.cjs", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_check_self_call_loopback", + "target": "scripts_check_self_call_loopback_path", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/check-self-call-loopback.cjs", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_check_self_call_loopback", + "target": "scripts_check_self_call_loopback_scan_root", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/check-self-call-loopback.cjs", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_check_self_call_loopback", + "target": "scripts_check_self_call_loopback_walk", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "scripts/check-self-call-loopback.cjs", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_check_self_call_loopback_isallowlisted", + "target": "scripts_check_self_call_loopback_allowlist_suffixes" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "scripts/check-self-call-loopback.cjs", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_check_self_call_loopback_checkfile", + "target": "scripts_check_self_call_loopback_isallowlisted", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "scripts/check-self-call-loopback.cjs", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_check_self_call_loopback_main", + "target": "scripts_check_self_call_loopback_walk", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "scripts/check-self-call-loopback.cjs", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_check_self_call_loopback_main", + "target": "scripts_check_self_call_loopback_checkfile", + "confidence_score": 0.5 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/check-write-boundary.ps1", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_check_write_boundary_ps1_scripts_check_write_boundary", + "target": "scripts_check_write_boundary_find_infiles", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/check-write-boundary.sh", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_check_write_boundary_sh_scripts_check_write_boundary", + "target": "scripts_check_write_boundary_sh__entry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/run-native-db-tests.cjs", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_run_native_db_tests", + "target": "scripts_run_native_db_tests_default_files", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/run-native-db-tests.cjs", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_run_native_db_tests", + "target": "scripts_run_native_db_tests_electronbin", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/run-native-db-tests.cjs", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_run_native_db_tests", + "target": "scripts_run_native_db_tests_files", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/run-native-db-tests.cjs", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_run_native_db_tests", + "target": "scripts_run_native_db_tests_path", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/run-native-db-tests.cjs", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_run_native_db_tests", + "target": "scripts_run_native_db_tests_res", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/run-native-db-tests.cjs", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_run_native_db_tests", + "target": "scripts_run_native_db_tests_spawnsync", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/run-native-db-tests.cjs", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_run_native_db_tests", + "target": "scripts_run_native_db_tests_vitestentry", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "scripts/run-native-db-tests.cjs", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_run_native_db_tests_rationale_6", + "target": "scripts_run_native_db_tests", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "scripts/session-build.cjs", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_build_cjs_scripts_session_build_e222db", + "target": "scripts_session_build_cjs_scripts_session_build_860cbb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/session-build.cjs", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_build_cjs_scripts_session_build_e222db", + "target": "scripts_session_build_ensurerelayup", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "scripts/session-build.cjs", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_build_cjs_scripts_session_build_e222db", + "target": "scripts_session_build_formatbuildline", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/session-build.cjs", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_build_cjs_scripts_session_build_e222db", + "target": "scripts_session_build_formatbuildline_runorchestratorbuild", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/session-build.cjs", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_build_cjs_scripts_session_build_e222db", + "target": "scripts_session_build_main", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "scripts/session-build.cjs", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_build_cjs_scripts_session_build_e222db", + "target": "scripts_session_build_runorchestratorbuild", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "scripts/session-build.cjs", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_build_cjs_scripts_session_build_e222db", + "target": "scripts_session_lib", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "scripts/session-build.cjs", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_build_cjs_scripts_session_build_e222db", + "target": "scripts_session_lib_ensurerelayup", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "scripts/session-build.cjs", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_build_main", + "target": "scripts_session_build_formatbuildline" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "scripts/session-build.cjs", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_build_main", + "target": "scripts_session_build_runorchestratorbuild" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "scripts/session-build.cjs", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_build_main", + "target": "scripts_session_lib_ensurerelayup" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/session-configure-remote.cjs", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_configure_remote", + "target": "scripts_session_configure_remote_configurecoordinationonmachine", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/session-configure-remote.cjs", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_configure_remote", + "target": "scripts_session_configure_remote_main", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "scripts/session-configure-remote.cjs", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_configure_remote", + "target": "scripts_session_lib", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "scripts/session-configure-remote.cjs", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_configure_remote", + "target": "scripts_session_lib_configurecoordinationonmachine", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "scripts/session-configure-remote.cjs", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_configure_remote_main", + "target": "scripts_session_lib_configurecoordinationonmachine" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "scripts/session-start.cjs", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_start", + "target": "scripts_session_build_cjs_scripts_session_build_860cbb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "scripts/session-start.cjs", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_start", + "target": "scripts_session_build_formatbuildline", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "scripts/session-start.cjs", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_start", + "target": "scripts_session_build_runorchestratorbuild", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "scripts/session-start.cjs", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_start", + "target": "scripts_session_lib", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "scripts/session-start.cjs", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_start", + "target": "scripts_session_lib_configurecoordinationonmachine", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "scripts/session-start.cjs", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_start", + "target": "scripts_session_lib_detectlanipv4", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "scripts/session-start.cjs", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_start", + "target": "scripts_session_lib_startrelay", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "scripts/session-start.cjs", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_start", + "target": "scripts_session_lib_waitforhealth", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "scripts/session-start.cjs", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_start", + "target": "scripts_session_lib_windowshostline", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/session-start.cjs", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_start", + "target": "scripts_session_start_detectlanipv4_configurecoordinationonmachine_startrelay_waitforhealth_windowshostline", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/session-start.cjs", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_start", + "target": "scripts_session_start_formatbuildline_runorchestratorbuild", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/session-start.cjs", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_start", + "target": "scripts_session_start_main", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "scripts/session-start.cjs", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_start_main", + "target": "scripts_session_build_formatbuildline" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "scripts/session-start.cjs", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_start_main", + "target": "scripts_session_build_runorchestratorbuild" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "scripts/session-start.cjs", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_start_main", + "target": "scripts_session_lib_configurecoordinationonmachine" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "scripts/session-start.cjs", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_start_main", + "target": "scripts_session_lib_detectlanipv4" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "scripts/session-start.cjs", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_start_main", + "target": "scripts_session_lib_startrelay" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "scripts/session-start.cjs", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_start_main", + "target": "scripts_session_lib_waitforhealth" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "scripts/session-start.cjs", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_start_main", + "target": "scripts_session_lib_windowshostline" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "scripts/session-stop.cjs", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_stop", + "target": "scripts_session_lib", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "scripts/session-stop.cjs", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_stop", + "target": "scripts_session_lib_stoprelay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/session-stop.cjs", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_stop", + "target": "scripts_session_stop_main", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/session-stop.cjs", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_stop", + "target": "scripts_session_stop_stoprelay_relay_db", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "scripts/session-stop.cjs", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_stop_main", + "target": "scripts_session_lib_stoprelay" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/session/build.cjs", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_build_cjs_scripts_session_build_860cbb", + "target": "scripts_session_build_builder_cfg", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/session/build.cjs", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_build_cjs_scripts_session_build_860cbb", + "target": "scripts_session_build_code_root", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/session/build.cjs", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_build_cjs_scripts_session_build_860cbb", + "target": "scripts_session_build_electron_app", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/session/build.cjs", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_build_cjs_scripts_session_build_860cbb", + "target": "scripts_session_build_execsync_spawnsync", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "confidence": "INFERRED", + "source_file": "scripts/session/build.cjs", + "source_location": "L160", + "weight": 1.0, + "_origin": "ast", + "context": "collection", + "source": "scripts_session_build_cjs_scripts_session_build_860cbb", + "target": "scripts_session_build_formatbuildline", + "confidence_score": 0.5 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/session/build.cjs", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_build_cjs_scripts_session_build_860cbb", + "target": "scripts_session_build_fs", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "confidence": "INFERRED", + "source_file": "scripts/session/build.cjs", + "source_location": "L156", + "weight": 1.0, + "_origin": "ast", + "context": "collection", + "source": "scripts_session_build_cjs_scripts_session_build_860cbb", + "target": "scripts_session_build_killorchestrator", + "confidence_score": 0.5 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/session/build.cjs", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_build_cjs_scripts_session_build_860cbb", + "target": "scripts_session_build_main_bundle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/session/build.cjs", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_build_cjs_scripts_session_build_860cbb", + "target": "scripts_session_build_path", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/session/build.cjs", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_build_cjs_scripts_session_build_860cbb", + "target": "scripts_session_build_provenance_manifest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/session/build.cjs", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_build_cjs_scripts_session_build_860cbb", + "target": "scripts_session_build_readbuildstampfromconfig", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "confidence": "INFERRED", + "source_file": "scripts/session/build.cjs", + "source_location": "L158", + "weight": 1.0, + "_origin": "ast", + "context": "collection", + "source": "scripts_session_build_cjs_scripts_session_build_860cbb", + "target": "scripts_session_build_readbuiltprovenance", + "confidence_score": 0.5 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/session/build.cjs", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_build_cjs_scripts_session_build_860cbb", + "target": "scripts_session_build_readdefinefrombundle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/session/build.cjs", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_build_cjs_scripts_session_build_860cbb", + "target": "scripts_session_build_readwindowsexecutablename", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/session/build.cjs", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_build_cjs_scripts_session_build_860cbb", + "target": "scripts_session_build_readwindowsoutputbasename", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "confidence": "INFERRED", + "source_file": "scripts/session/build.cjs", + "source_location": "L159", + "weight": 1.0, + "_origin": "ast", + "context": "collection", + "source": "scripts_session_build_cjs_scripts_session_build_860cbb", + "target": "scripts_session_build_resolvelaunchpath", + "confidence_score": 0.5 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/session/build.cjs", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_build_cjs_scripts_session_build_860cbb", + "target": "scripts_session_build_resolvelinuxlaunchpath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/session/build.cjs", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_build_cjs_scripts_session_build_860cbb", + "target": "scripts_session_build_resolvewindowslaunchpath", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "confidence": "INFERRED", + "source_file": "scripts/session/build.cjs", + "source_location": "L157", + "weight": 1.0, + "_origin": "ast", + "context": "collection", + "source": "scripts_session_build_cjs_scripts_session_build_860cbb", + "target": "scripts_session_build_runorchestratorbuild", + "confidence_score": 0.5 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/session/build.cjs", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_build_cjs_scripts_session_build_860cbb", + "target": "scripts_session_build_spawnpnpmsync_formatspawnfailure", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/session/build.cjs", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_build_cjs_scripts_session_build_860cbb", + "target": "scripts_session_build_writebuiltprovenance", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "scripts/session/build.cjs", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_build_cjs_scripts_session_build_860cbb", + "target": "scripts_session_lib", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "scripts/session/build.cjs", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_build_cjs_scripts_session_build_860cbb", + "target": "scripts_session_lib_formatspawnfailure", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "scripts/session/build.cjs", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_build_cjs_scripts_session_build_860cbb", + "target": "scripts_session_lib_spawnpnpmsync", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "scripts/session/build.cjs", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_build_runorchestratorbuild", + "target": "scripts_session_build_killorchestrator", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "scripts/session/build.cjs", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_build_readbuiltprovenance", + "target": "scripts_session_build_readdefinefrombundle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "scripts/session/build.cjs", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_build_runorchestratorbuild", + "target": "scripts_session_build_readdefinefrombundle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "scripts/session/build.cjs", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_build_readbuiltprovenance", + "target": "scripts_session_build_readbuildstampfromconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "scripts/session/build.cjs", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_build_runorchestratorbuild", + "target": "scripts_session_build_readbuildstampfromconfig", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "scripts/session/build.cjs", + "source_location": "L150", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_build_runorchestratorbuild", + "target": "scripts_session_build_writebuiltprovenance", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "scripts/session/build.cjs", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_build_resolvewindowslaunchpath", + "target": "scripts_session_build_readwindowsoutputbasename", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "scripts/session/build.cjs", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_build_resolvewindowslaunchpath", + "target": "scripts_session_build_readwindowsexecutablename", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "scripts/session/build.cjs", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_build_resolvelaunchpath", + "target": "scripts_session_build_resolvelinuxlaunchpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "scripts/session/build.cjs", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_build_resolvelaunchpath", + "target": "scripts_session_build_resolvewindowslaunchpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "scripts/session/build.cjs", + "source_location": "L151", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_build_runorchestratorbuild", + "target": "scripts_session_build_resolvelaunchpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "scripts/session/build.cjs", + "source_location": "L139", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_build_runorchestratorbuild", + "target": "scripts_session_lib_formatspawnfailure" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "scripts/session/build.cjs", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_build_runorchestratorbuild", + "target": "scripts_session_lib_spawnpnpmsync" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/session/configure-coordination-worker.cjs", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_configure_coordination_worker", + "target": "scripts_session_configure_coordination_worker_buildledgersessiontoken", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/session/configure-coordination-worker.cjs", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_configure_coordination_worker", + "target": "scripts_session_configure_coordination_worker_crypto", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/session/configure-coordination-worker.cjs", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_configure_coordination_worker", + "target": "scripts_session_configure_coordination_worker_decodejwtpayload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/session/configure-coordination-worker.cjs", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_configure_coordination_worker", + "target": "scripts_session_configure_coordination_worker_loadidentity", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/session/configure-coordination-worker.cjs", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_configure_coordination_worker", + "target": "scripts_session_configure_coordination_worker_main", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/session/configure-coordination-worker.cjs", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_configure_coordination_worker", + "target": "scripts_session_configure_coordination_worker_openledger", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/session/configure-coordination-worker.cjs", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_configure_coordination_worker", + "target": "scripts_session_configure_coordination_worker_path", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/session/configure-coordination-worker.cjs", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_configure_coordination_worker", + "target": "scripts_session_configure_coordination_worker_upsertcoordination", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "scripts/session/configure-coordination-worker.cjs", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_configure_coordination_worker_loadidentity", + "target": "scripts_session_configure_coordination_worker_buildledgersessiontoken", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "scripts/session/configure-coordination-worker.cjs", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_configure_coordination_worker_loadidentity", + "target": "scripts_session_configure_coordination_worker_decodejwtpayload", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "scripts/session/configure-coordination-worker.cjs", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_configure_coordination_worker_main", + "target": "scripts_session_configure_coordination_worker_loadidentity", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "scripts/session/configure-coordination-worker.cjs", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_configure_coordination_worker_main", + "target": "scripts_session_configure_coordination_worker_openledger", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "scripts/session/configure-coordination-worker.cjs", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_configure_coordination_worker_main", + "target": "scripts_session_configure_coordination_worker_upsertcoordination", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/session/lib.cjs", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_lib", + "target": "scripts_session_lib_buildcoordinationservice", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/session/lib.cjs", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_lib", + "target": "scripts_session_lib_code_root", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "confidence": "INFERRED", + "source_file": "scripts/session/lib.cjs", + "source_location": "L247", + "weight": 1.0, + "_origin": "ast", + "context": "collection", + "source": "scripts_session_lib", + "target": "scripts_session_lib_configurecoordinationonmachine", + "confidence_score": 0.5 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/session/lib.cjs", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_lib", + "target": "scripts_session_lib_coord_pkg", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "confidence": "INFERRED", + "source_file": "scripts/session/lib.cjs", + "source_location": "L245", + "weight": 1.0, + "_origin": "ast", + "context": "collection", + "source": "scripts_session_lib", + "target": "scripts_session_lib_detectlanipv4", + "confidence_score": 0.5 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/session/lib.cjs", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_lib", + "target": "scripts_session_lib_electron_app", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "confidence": "INFERRED", + "source_file": "scripts/session/lib.cjs", + "source_location": "L249", + "weight": 1.0, + "_origin": "ast", + "context": "collection", + "source": "scripts_session_lib", + "target": "scripts_session_lib_ensurerelayup", + "confidence_score": 0.5 + }, + { + "relation": "indirect_call", + "confidence": "INFERRED", + "source_file": "scripts/session/lib.cjs", + "source_location": "L244", + "weight": 1.0, + "_origin": "ast", + "context": "collection", + "source": "scripts_session_lib", + "target": "scripts_session_lib_formatspawnfailure", + "confidence_score": 0.5 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/session/lib.cjs", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_lib", + "target": "scripts_session_lib_fs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/session/lib.cjs", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_lib", + "target": "scripts_session_lib_http", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/session/lib.cjs", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_lib", + "target": "scripts_session_lib_isprocessalive", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/session/lib.cjs", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_lib", + "target": "scripts_session_lib_ledgerdbpath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/session/lib.cjs", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_lib", + "target": "scripts_session_lib_os", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/session/lib.cjs", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_lib", + "target": "scripts_session_lib_path", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/session/lib.cjs", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_lib", + "target": "scripts_session_lib_readpid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/session/lib.cjs", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_lib", + "target": "scripts_session_lib_relay_log", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "confidence": "INFERRED", + "source_file": "scripts/session/lib.cjs", + "source_location": "L246", + "weight": 1.0, + "_origin": "ast", + "context": "collection", + "source": "scripts_session_lib", + "target": "scripts_session_lib_relayurls", + "confidence_score": 0.5 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/session/lib.cjs", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_lib", + "target": "scripts_session_lib_runelectronnode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/session/lib.cjs", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_lib", + "target": "scripts_session_lib_spawn_spawnsync", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "confidence": "INFERRED", + "source_file": "scripts/session/lib.cjs", + "source_location": "L243", + "weight": 1.0, + "_origin": "ast", + "context": "collection", + "source": "scripts_session_lib", + "target": "scripts_session_lib_spawnpnpmsync", + "confidence_score": 0.5 + }, + { + "relation": "indirect_call", + "confidence": "INFERRED", + "source_file": "scripts/session/lib.cjs", + "source_location": "L248", + "weight": 1.0, + "_origin": "ast", + "context": "collection", + "source": "scripts_session_lib", + "target": "scripts_session_lib_startrelay", + "confidence_score": 0.5 + }, + { + "relation": "indirect_call", + "confidence": "INFERRED", + "source_file": "scripts/session/lib.cjs", + "source_location": "L250", + "weight": 1.0, + "_origin": "ast", + "context": "collection", + "source": "scripts_session_lib", + "target": "scripts_session_lib_stoprelay", + "confidence_score": 0.5 + }, + { + "relation": "indirect_call", + "confidence": "INFERRED", + "source_file": "scripts/session/lib.cjs", + "source_location": "L251", + "weight": 1.0, + "_origin": "ast", + "context": "collection", + "source": "scripts_session_lib", + "target": "scripts_session_lib_waitforhealth", + "confidence_score": 0.5 + }, + { + "relation": "indirect_call", + "confidence": "INFERRED", + "source_file": "scripts/session/lib.cjs", + "source_location": "L252", + "weight": 1.0, + "_origin": "ast", + "context": "collection", + "source": "scripts_session_lib", + "target": "scripts_session_lib_windowshostline", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "scripts/session/lib.cjs", + "source_location": "L112", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_lib_buildcoordinationservice", + "target": "scripts_session_lib_spawnpnpmsync", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "scripts/session/lib.cjs", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_lib_buildcoordinationservice", + "target": "scripts_session_lib_formatspawnfailure", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "scripts/session/lib.cjs", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_lib_configurecoordinationonmachine", + "target": "scripts_session_lib_ledgerdbpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "scripts/session/lib.cjs", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_lib_configurecoordinationonmachine", + "target": "scripts_session_lib_relayurls", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "scripts/session/lib.cjs", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_lib_configurecoordinationonmachine", + "target": "scripts_session_lib_runelectronnode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "scripts/session/lib.cjs", + "source_location": "L171", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_lib_startrelay", + "target": "scripts_session_lib_buildcoordinationservice", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "scripts/session/lib.cjs", + "source_location": "L166", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_lib_startrelay", + "target": "scripts_session_lib_readpid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "scripts/session/lib.cjs", + "source_location": "L209", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_lib_stoprelay", + "target": "scripts_session_lib_readpid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "scripts/session/lib.cjs", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_lib_startrelay", + "target": "scripts_session_lib_isprocessalive", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "scripts/session/lib.cjs", + "source_location": "L211", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_lib_stoprelay", + "target": "scripts_session_lib_isprocessalive", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "scripts/session/lib.cjs", + "source_location": "L202", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_lib_ensurerelayup", + "target": "scripts_session_lib_waitforhealth", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "scripts/session/lib.cjs", + "source_location": "L201", + "weight": 1.0, + "_origin": "ast", + "source": "scripts_session_lib_ensurerelayup", + "target": "scripts_session_lib_startrelay", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "test/harness/sealed-storage.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "test_harness_sealed_storage_test", + "target": "test_harness_sealed_storage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "test/harness/sealed-storage.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "test_harness_sealed_storage_test", + "target": "test_harness_sealed_storage_buildvalidsealforrowid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "test/harness/sealed-storage.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "test_harness_sealed_storage_test", + "target": "test_harness_sealed_storage_createharnessdb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "test/harness/sealed-storage.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "test_harness_sealed_storage_test", + "target": "test_harness_sealed_storage_createsealedstoragetestcontext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "test/harness/sealed-storage.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "test_harness_sealed_storage_test", + "target": "test_harness_sealed_storage_sealedstoragetestcontext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "test/harness/sealed-storage.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "test_harness_sealed_storage_test", + "target": "test_harness_sealed_storage_sealedstoragetestcontext_buildvalidsealforrowid", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "test/harness/sealed-storage.test.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "source": "test_harness_sealed_storage_test", + "target": "test_harness_sealed_storage_test_dek", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "test/harness/sealed-storage.ts", + "source_location": "L157", + "weight": 1.0, + "_origin": "ast", + "source": "test_harness_sealed_storage", + "target": "test_harness_sealed_storage_buildvalidsealforrowid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "test/harness/sealed-storage.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "test_harness_sealed_storage", + "target": "test_harness_sealed_storage_createharnessdb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "test/harness/sealed-storage.ts", + "source_location": "L215", + "weight": 1.0, + "_origin": "ast", + "source": "test_harness_sealed_storage", + "target": "test_harness_sealed_storage_createsealedstoragetestcontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "test/harness/sealed-storage.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "test_harness_sealed_storage", + "target": "test_harness_sealed_storage_harnessdatabase", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "test/harness/sealed-storage.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "source": "test_harness_sealed_storage", + "target": "test_harness_sealed_storage_req", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "test/harness/sealed-storage.ts", + "source_location": "L178", + "weight": 1.0, + "_origin": "ast", + "source": "test_harness_sealed_storage", + "target": "test_harness_sealed_storage_sealedstoragetestcontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "test/harness/sealed-storage.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "test_harness_sealed_storage", + "target": "test_harness_sealed_storage_test_dek", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "test/harness/sealed-storage.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "test_harness_sealed_storage", + "target": "test_harness_sealed_storage_test_vault_master_key", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "test/harness/sealed-storage.ts", + "source_location": "L225", + "weight": 1.0, + "_origin": "ast", + "source": "test_harness_sealed_storage_createsealedstoragetestcontext", + "target": "test_harness_sealed_storage_createharnessdb", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "test/harness/sealed-storage.ts", + "source_location": "L194", + "weight": 1.0, + "_origin": "ast", + "source": "test_harness_sealed_storage_sealedstoragetestcontext", + "target": "test_harness_sealed_storage_sealedstoragetestcontext_buildvalidsealforrowid", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "test/harness/sealed-storage.ts", + "source_location": "L202", + "weight": 1.0, + "_origin": "ast", + "source": "test_harness_sealed_storage_sealedstoragetestcontext", + "target": "test_harness_sealed_storage_sealedstoragetestcontext_cleanup", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron", + "target": "test_mocks_electron_app", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L137", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron", + "target": "test_mocks_electron_browserwindow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L239", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron", + "target": "test_mocks_electron_clipboard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L264", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron", + "target": "test_mocks_electron_contextbridge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L190", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron", + "target": "test_mocks_electron_dialog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L347", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron", + "target": "test_mocks_electron_electron", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron", + "target": "test_mocks_electron_ipcmain", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron", + "target": "test_mocks_electron_ipcrenderer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L271", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron", + "target": "test_mocks_electron_menu", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L282", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron", + "target": "test_mocks_electron_menuitem", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron", + "target": "test_mocks_electron_mockwebcontents", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L254", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron", + "target": "test_mocks_electron_nativeimage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron", + "target": "test_mocks_electron_nativetheme", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L333", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron", + "target": "test_mocks_electron_net", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L298", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron", + "target": "test_mocks_electron_notification", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L210", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron", + "target": "test_mocks_electron_powermonitor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L324", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron", + "target": "test_mocks_electron_powersaveblocker", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron", + "target": "test_mocks_electron_safestorage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L221", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron", + "target": "test_mocks_electron_screen", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L308", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron", + "target": "test_mocks_electron_session", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L179", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron", + "target": "test_mocks_electron_shell", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron", + "target": "test_mocks_electron_testuserdata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L286", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron", + "target": "test_mocks_electron_tray", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L152", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron_browserwindow", + "target": "test_mocks_electron_browserwindow_blur", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L166", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron_browserwindow", + "target": "test_mocks_electron_browserwindow_center", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron_browserwindow", + "target": "test_mocks_electron_browserwindow_close", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L150", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron_browserwindow", + "target": "test_mocks_electron_browserwindow_destroy", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L173", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron_browserwindow", + "target": "test_mocks_electron_browserwindow_emit", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L151", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron_browserwindow", + "target": "test_mocks_electron_browserwindow_focus", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L142", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron_browserwindow", + "target": "test_mocks_electron_browserwindow_fromid", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron_browserwindow", + "target": "test_mocks_electron_browserwindow_fromwebcontents", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron_browserwindow", + "target": "test_mocks_electron_browserwindow_getallwindows", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L168", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron_browserwindow", + "target": "test_mocks_electron_browserwindow_getbounds", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron_browserwindow", + "target": "test_mocks_electron_browserwindow_getfocusedwindow", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron_browserwindow", + "target": "test_mocks_electron_browserwindow_getsize", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L165", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron_browserwindow", + "target": "test_mocks_electron_browserwindow_gettitle", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron_browserwindow", + "target": "test_mocks_electron_browserwindow_hide", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L154", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron_browserwindow", + "target": "test_mocks_electron_browserwindow_isdestroyed", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L153", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron_browserwindow", + "target": "test_mocks_electron_browserwindow_isfocused", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L159", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron_browserwindow", + "target": "test_mocks_electron_browserwindow_ismaximized", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L160", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron_browserwindow", + "target": "test_mocks_electron_browserwindow_isminimized", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L155", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron_browserwindow", + "target": "test_mocks_electron_browserwindow_isvisible", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron_browserwindow", + "target": "test_mocks_electron_browserwindow_loadfile", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron_browserwindow", + "target": "test_mocks_electron_browserwindow_loadurl", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L157", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron_browserwindow", + "target": "test_mocks_electron_browserwindow_maximize", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L156", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron_browserwindow", + "target": "test_mocks_electron_browserwindow_minimize", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L169", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron_browserwindow", + "target": "test_mocks_electron_browserwindow_on", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L170", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron_browserwindow", + "target": "test_mocks_electron_browserwindow_once", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L172", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron_browserwindow", + "target": "test_mocks_electron_browserwindow_removealllisteners", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L171", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron_browserwindow", + "target": "test_mocks_electron_browserwindow_removelistener", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L161", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron_browserwindow", + "target": "test_mocks_electron_browserwindow_restore", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron_browserwindow", + "target": "test_mocks_electron_browserwindow_setbounds", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron_browserwindow", + "target": "test_mocks_electron_browserwindow_setsize", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron_browserwindow", + "target": "test_mocks_electron_browserwindow_settitle", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron_browserwindow", + "target": "test_mocks_electron_browserwindow_show", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L158", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron_browserwindow", + "target": "test_mocks_electron_browserwindow_unmaximize", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L277", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron_menu", + "target": "test_mocks_electron_menu_append", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L274", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron_menu", + "target": "test_mocks_electron_menu_buildfromtemplate", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L276", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron_menu", + "target": "test_mocks_electron_menu_closepopup", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L273", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron_menu", + "target": "test_mocks_electron_menu_getapplicationmenu", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L278", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron_menu", + "target": "test_mocks_electron_menu_insert", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L275", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron_menu", + "target": "test_mocks_electron_menu_popup", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L272", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron_menu", + "target": "test_mocks_electron_menu_setapplicationmenu", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L283", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron_menuitem", + "target": "test_mocks_electron_menuitem_constructor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L287", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron_tray", + "target": "test_mocks_electron_tray_constructor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L288", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron_tray", + "target": "test_mocks_electron_tray_destroy", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L292", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron_tray", + "target": "test_mocks_electron_tray_on", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L291", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron_tray", + "target": "test_mocks_electron_tray_setcontextmenu", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L289", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron_tray", + "target": "test_mocks_electron_tray_setimage", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L290", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron_tray", + "target": "test_mocks_electron_tray_settooltip", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L301", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron_notification", + "target": "test_mocks_electron_notification_close", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L299", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron_notification", + "target": "test_mocks_electron_notification_issupported", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L302", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron_notification", + "target": "test_mocks_electron_notification_on", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "test/mocks/electron.ts", + "source_location": "L300", + "weight": 1.0, + "_origin": "ast", + "source": "test_mocks_electron_notification", + "target": "test_mocks_electron_notification_show", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "test/setup.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "test_setup", + "target": "test_setup_escape", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tsconfig.base.json", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "source": "tsconfig_base", + "target": "tsconfig_base_compileroptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tsconfig.base.json", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "tsconfig_base_compileroptions", + "target": "tsconfig_base_compileroptions_module", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tsconfig.base.json", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "tsconfig_base_compileroptions", + "target": "tsconfig_base_compileroptions_moduleresolution", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tsconfig.base.json", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "tsconfig_base_compileroptions", + "target": "tsconfig_base_compileroptions_noemit", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tsconfig.base.json", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "tsconfig_base_compileroptions", + "target": "tsconfig_base_compileroptions_skiplibcheck", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tsconfig.base.json", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "tsconfig_base_compileroptions", + "target": "tsconfig_base_compileroptions_strict", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tsconfig.base.json", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "tsconfig_base_compileroptions", + "target": "tsconfig_base_compileroptions_target", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tsconfig.base.json", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "tsconfig_base_compileroptions", + "target": "tsconfig_base_compileroptions_types", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "tsconfig.base.json", + "source_location": "L9", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "tsconfig_base_compileroptions_types", + "target": "tsconfig_base_json_ref_node", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "vitest.config.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "vitest_config", + "target": "vitest_config_bypasselectronrenderershims", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "wp-content/themes/blocksy-child/functions.php", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "wp_content_themes_blocksy_child_functions", + "target": "wp_content_themes_blocksy_child_functions_blocksy_child_container_background_fix", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "wp-content/themes/blocksy-child/functions.php", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "wp_content_themes_blocksy_child_functions", + "target": "wp_content_themes_blocksy_child_functions_blocksy_child_enqueue_styles", + "confidence_score": 1.0 + } + ], + "hyperedges": [], + "built_at_commit": "754e87e88a904ebb626cf22104cfe8a800645afd" +} \ No newline at end of file diff --git a/graphify-out/manifest.json b/graphify-out/manifest.json new file mode 100644 index 000000000..f5aa75b6c --- /dev/null +++ b/graphify-out/manifest.json @@ -0,0 +1,9962 @@ +{ + "New-ServersJson.ps1": { + "mtime": 1786206352.4506645, + "ast_hash": "2e6cbab16ca1021c68fd7322e36bff2a", + "semantic_hash": "2e6cbab16ca1021c68fd7322e36bff2a" + }, + "apps/desktop/create-shortcut-fixed.ps1": { + "mtime": 1786206352.454664, + "ast_hash": "4c294c38f8cd0a2084b57e147e853bdc", + "semantic_hash": "4c294c38f8cd0a2084b57e147e853bdc" + }, + "apps/desktop/create-shortcut-with-icon.ps1": { + "mtime": 1786206352.454664, + "ast_hash": "35907b7e3b0d79287c64977622829224", + "semantic_hash": "35907b7e3b0d79287c64977622829224" + }, + "apps/desktop/main.js": { + "mtime": 1786206352.454664, + "ast_hash": "2ad6acd0bd31ea0321ab86afb758b39a", + "semantic_hash": "2ad6acd0bd31ea0321ab86afb758b39a" + }, + "apps/desktop/package.json": { + "mtime": 1786206352.454664, + "ast_hash": "51fc6dd20e6be116f4ed5b718018b553", + "semantic_hash": "51fc6dd20e6be116f4ed5b718018b553" + }, + "apps/desktop/start-optimando.ps1": { + "mtime": 1786206352.454664, + "ast_hash": "cf6aaaf596e86f5659ea01a90ca192ef", + "semantic_hash": "cf6aaaf596e86f5659ea01a90ca192ef" + }, + "apps/desktop/start-server.js": { + "mtime": 1786206352.454664, + "ast_hash": "2db4a84850b9d86f1fee60d106ab049e", + "semantic_hash": "2db4a84850b9d86f1fee60d106ab049e" + }, + "apps/desktop/websocket-server.js": { + "mtime": 1786206352.454664, + "ast_hash": "47fd74977e9c62ef7af543ba54f95c4a", + "semantic_hash": "47fd74977e9c62ef7af543ba54f95c4a" + }, + "apps/electron-vite-project/.eslintrc.cjs": { + "mtime": 1786206352.454664, + "ast_hash": "1abfb00b00533ae6fe13303b26ca60ac", + "semantic_hash": "1abfb00b00533ae6fe13303b26ca60ac" + }, + "apps/electron-vite-project/RESTART_WITH_CPU_CHECK.ps1": { + "mtime": 1786206352.454664, + "ast_hash": "9479f84ef7c15ffdee9ddc932583fc68", + "semantic_hash": "9479f84ef7c15ffdee9ddc932583fc68" + }, + "apps/electron-vite-project/check-sqlite-db.ps1": { + "mtime": 1786206352.454664, + "ast_hash": "66eec1f43383b1fd23d1e20567831c6f", + "semantic_hash": "66eec1f43383b1fd23d1e20567831c6f" + }, + "apps/electron-vite-project/electron-builder.config.cjs": { + "mtime": 1786206352.4586632, + "ast_hash": "7d9c4a957191262982d8cf5bc6e4395d", + "semantic_hash": "7d9c4a957191262982d8cf5bc6e4395d" + }, + "apps/electron-vite-project/electron-builder.json": { + "mtime": 1786206352.4586632, + "ast_hash": "c95251f90a0fe5211dee130d00355fc8", + "semantic_hash": "c95251f90a0fe5211dee130d00355fc8" + }, + "apps/electron-vite-project/electron/__tests__/handshakeAcceptSafeOpts.regression.test.ts": { + "mtime": 1786206352.4586632, + "ast_hash": "cd02277955bb37022bb099ba7b7b331c", + "semantic_hash": "cd02277955bb37022bb099ba7b7b331c" + }, + "apps/electron-vite-project/electron/bootstrapUserData.ts": { + "mtime": 1786206352.4586632, + "ast_hash": "0329a377b57ec6dacdc36d5453e289d8", + "semantic_hash": "0329a377b57ec6dacdc36d5453e289d8" + }, + "apps/electron-vite-project/electron/diffWatcher.ts": { + "mtime": 1786206352.4586632, + "ast_hash": "7767b1643a269eb0f86b988f93a8c14a", + "semantic_hash": "7767b1643a269eb0f86b988f93a8c14a" + }, + "apps/electron-vite-project/electron/electron-env.d.ts": { + "mtime": 1786206352.4586632, + "ast_hash": "780c88f910ab93212c07c10800d5ea16", + "semantic_hash": "780c88f910ab93212c07c10800d5ea16" + }, + "apps/electron-vite-project/electron/handshakeAcceptSafeOpts.ts": { + "mtime": 1786206352.4586632, + "ast_hash": "72a5ce145c2cc2c626c0fa38721e8a97", + "semantic_hash": "72a5ce145c2cc2c626c0fa38721e8a97" + }, + "apps/electron-vite-project/electron/ipc/db.ts": { + "mtime": 1786206352.4586632, + "ast_hash": "2566161e592cea0ee60ddd07692bcf50", + "semantic_hash": "2566161e592cea0ee60ddd07692bcf50" + }, + "apps/electron-vite-project/electron/lmgtfy/capture.ts": { + "mtime": 1786206352.4586632, + "ast_hash": "7d7ad9e924acd987ead8575bf5fac64c", + "semantic_hash": "7d7ad9e924acd987ead8575bf5fac64c" + }, + "apps/electron-vite-project/electron/lmgtfy/ipc.ts": { + "mtime": 1786206352.4586632, + "ast_hash": "a60744ace5c9424fc03345423fa4abcc", + "semantic_hash": "a60744ace5c9424fc03345423fa4abcc" + }, + "apps/electron-vite-project/electron/lmgtfy/overlay.ts": { + "mtime": 1786206352.4586632, + "ast_hash": "559e9d3670077330b42d3f4db435eeaf", + "semantic_hash": "559e9d3670077330b42d3f4db435eeaf" + }, + "apps/electron-vite-project/electron/lmgtfy/presets.ts": { + "mtime": 1786206352.4586632, + "ast_hash": "f8b3414dbce7ecd418e20e37132ad449", + "semantic_hash": "f8b3414dbce7ecd418e20e37132ad449" + }, + "apps/electron-vite-project/electron/mailguard/gmail-api.ts": { + "mtime": 1786206352.4586632, + "ast_hash": "49e72b36d32708ccd02be515d549ed33", + "semantic_hash": "49e72b36d32708ccd02be515d549ed33" + }, + "apps/electron-vite-project/electron/mailguard/overlay.ts": { + "mtime": 1786206352.4586632, + "ast_hash": "435a5f3d0194480818fcf1711c705940", + "semantic_hash": "435a5f3d0194480818fcf1711c705940" + }, + "apps/electron-vite-project/electron/main.ts": { + "mtime": 1786206352.4626627, + "ast_hash": "f4d113d12c120d97b04001e57035b74e", + "semantic_hash": "f4d113d12c120d97b04001e57035b74e" + }, + "apps/electron-vite-project/electron/main/__tests__/invariants.test.ts": { + "mtime": 1786206352.4626627, + "ast_hash": "a3a0958740e3492f5d7ce40f87e5be4e", + "semantic_hash": "a3a0958740e3492f5d7ce40f87e5be4e" + }, + "apps/electron-vite-project/electron/main/autosortDiagnostics.ts": { + "mtime": 1786206352.4626627, + "ast_hash": "f4f10fdf4711e4d6ec1a5e2c73b64b4c", + "semantic_hash": "f4f10fdf4711e4d6ec1a5e2c73b64b4c" + }, + "apps/electron-vite-project/electron/main/beap/autoresponderAudit.ts": { + "mtime": 1786206352.4626627, + "ast_hash": "ca393462290aab15bef6280b9efafe0b", + "semantic_hash": "ca393462290aab15bef6280b9efafe0b" + }, + "apps/electron-vite-project/electron/main/beap/autoresponderEvaluator.ts": { + "mtime": 1786206352.4626627, + "ast_hash": "c0fee78d4abefeeede9e7995334fcfcd", + "semantic_hash": "c0fee78d4abefeeede9e7995334fcfcd" + }, + "apps/electron-vite-project/electron/main/beap/beapEnvelopeAad.ts": { + "mtime": 1786206352.4626627, + "ast_hash": "7f0ceb58d2c3c9adf3610a676e5bf3f1", + "semantic_hash": "7f0ceb58d2c3c9adf3610a676e5bf3f1" + }, + "apps/electron-vite-project/electron/main/beap/decryptQBeapPackage.ts": { + "mtime": 1786206352.4626627, + "ast_hash": "aeca738dcf0ef7c3fcaa003e465f76fc", + "semantic_hash": "aeca738dcf0ef7c3fcaa003e465f76fc" + }, + "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.devbox.test.ts": { + "mtime": 1786206352.4626627, + "ast_hash": "d8381270de57ea55c98397bcdd8d380f", + "semantic_hash": "d8381270de57ea55c98397bcdd8d380f" + }, + "apps/electron-vite-project/electron/main/critical-jobs/__tests__/cutoverParity.test.ts": { + "mtime": 1786206352.4626627, + "ast_hash": "45771ac82245f837ece18a902f596059", + "semantic_hash": "45771ac82245f837ece18a902f596059" + }, + "apps/electron-vite-project/electron/main/critical-jobs/__tests__/depackageEmailCutover.test.ts": { + "mtime": 1786206352.4626627, + "ast_hash": "1df77726a65dfc3b1910e011ba044c77", + "semantic_hash": "1df77726a65dfc3b1910e011ba044c77" + }, + "apps/electron-vite-project/electron/main/critical-jobs/__tests__/depackageParity.test.ts": { + "mtime": 1786206352.4626627, + "ast_hash": "a603a9cec1895a7e27e9f5594b10ae8d", + "semantic_hash": "a603a9cec1895a7e27e9f5594b10ae8d" + }, + "apps/electron-vite-project/electron/main/critical-jobs/__tests__/depackageParityCorpus.ts": { + "mtime": 1786206352.4626627, + "ast_hash": "77493dba1120f1a4a2cb9f8dd5fc1e88", + "semantic_hash": "77493dba1120f1a4a2cb9f8dd5fc1e88" + }, + "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.email.rig.test.ts": { + "mtime": 1786206352.4626627, + "ast_hash": "cf476e2510eeb81ef88afe5a12980472", + "semantic_hash": "cf476e2510eeb81ef88afe5a12980472" + }, + "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.microvm.rig.test.ts": { + "mtime": 1786206352.4626627, + "ast_hash": "7c8ccb029c6edf947b4f61ed91546dc0", + "semantic_hash": "7c8ccb029c6edf947b4f61ed91546dc0" + }, + "apps/electron-vite-project/electron/main/critical-jobs/__tests__/dispatcher.test.ts": { + "mtime": 1786206352.4626627, + "ast_hash": "2dc9e78adbea05cec8569e9284189dc0", + "semantic_hash": "2dc9e78adbea05cec8569e9284189dc0" + }, + "apps/electron-vite-project/electron/main/critical-jobs/__tests__/envelope.test.ts": { + "mtime": 1786206352.4626627, + "ast_hash": "864e02844a806a7d6b5a002066ed2e62", + "semantic_hash": "864e02844a806a7d6b5a002066ed2e62" + }, + "apps/electron-vite-project/electron/main/critical-jobs/__tests__/inProcessExecutor.test.ts": { + "mtime": 1786206352.4626627, + "ast_hash": "62ef59640b9c4076a44a2b7a7346b390", + "semantic_hash": "62ef59640b9c4076a44a2b7a7346b390" + }, + "apps/electron-vite-project/electron/main/critical-jobs/__tests__/localMicrovmRouting.test.ts": { + "mtime": 1786206352.4626627, + "ast_hash": "1d0542a29c1a59a9bd4d086b8bd9e783", + "semantic_hash": "1d0542a29c1a59a9bd4d086b8bd9e783" + }, + "apps/electron-vite-project/electron/main/critical-jobs/__tests__/resolution.test.ts": { + "mtime": 1786206352.4626627, + "ast_hash": "87bd3edc1441314b81e773150c23e9d8", + "semantic_hash": "87bd3edc1441314b81e773150c23e9d8" + }, + "apps/electron-vite-project/electron/main/critical-jobs/__tests__/sandboxEmailDelivery.test.ts": { + "mtime": 1786206352.4626627, + "ast_hash": "3351d9d3d323d02d0f4587736ac7b7e5", + "semantic_hash": "3351d9d3d323d02d0f4587736ac7b7e5" + }, + "apps/electron-vite-project/electron/main/critical-jobs/__tests__/verify.test.ts": { + "mtime": 1786206352.4626627, + "ast_hash": "c833670bb02157032893cb806abfa778", + "semantic_hash": "c833670bb02157032893cb806abfa778" + }, + "apps/electron-vite-project/electron/main/critical-jobs/context.ts": { + "mtime": 1786206352.4626627, + "ast_hash": "e0877f3512570ed8b0c6b0a412944d1d", + "semantic_hash": "e0877f3512570ed8b0c6b0a412944d1d" + }, + "apps/electron-vite-project/electron/main/critical-jobs/dispatcher.ts": { + "mtime": 1786206352.4626627, + "ast_hash": "f1892762f1deb86cb608320781c00092", + "semantic_hash": "f1892762f1deb86cb608320781c00092" + }, + "apps/electron-vite-project/electron/main/critical-jobs/executor.ts": { + "mtime": 1786206352.4626627, + "ast_hash": "bb16fb2bf64fcaf25086917eccb7490f", + "semantic_hash": "bb16fb2bf64fcaf25086917eccb7490f" + }, + "apps/electron-vite-project/electron/main/critical-jobs/executors/inProcessExecutor.ts": { + "mtime": 1786206352.4626627, + "ast_hash": "20e9bf7b9a7d732d96dabd1f40f13385", + "semantic_hash": "20e9bf7b9a7d732d96dabd1f40f13385" + }, + "apps/electron-vite-project/electron/main/critical-jobs/executors/microVmExecutor.ts": { + "mtime": 1786206352.4626627, + "ast_hash": "e4842f142224c02d9a915443600c0905", + "semantic_hash": "e4842f142224c02d9a915443600c0905" + }, + "apps/electron-vite-project/electron/main/critical-jobs/executors/remoteHandshakeExecutor.ts": { + "mtime": 1786206352.4626627, + "ast_hash": "0e003e6561a1afc2791d8e5a4600a81b", + "semantic_hash": "0e003e6561a1afc2791d8e5a4600a81b" + }, + "apps/electron-vite-project/electron/main/critical-jobs/featureFlags.ts": { + "mtime": 1786206352.4626627, + "ast_hash": "e721cad89a8e9136d04bdbbd1457cd4d", + "semantic_hash": "e721cad89a8e9136d04bdbbd1457cd4d" + }, + "apps/electron-vite-project/electron/main/critical-jobs/index.ts": { + "mtime": 1786206352.4626627, + "ast_hash": "f498fecda3ae528d95f02683314e4198", + "semantic_hash": "f498fecda3ae528d95f02683314e4198" + }, + "apps/electron-vite-project/electron/main/critical-jobs/liveDepackageCutover.ts": { + "mtime": 1786206352.4626627, + "ast_hash": "287830aad723caeecad77ee999618810", + "semantic_hash": "287830aad723caeecad77ee999618810" + }, + "apps/electron-vite-project/electron/main/critical-jobs/liveValidationCutover.ts": { + "mtime": 1786206352.4626627, + "ast_hash": "9106331d1524b96677ab57dd89bb51a8", + "semantic_hash": "9106331d1524b96677ab57dd89bb51a8" + }, + "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/executor.test.ts": { + "mtime": 1786206352.4626627, + "ast_hash": "27eb0f1b31a88613bb4d2b72a86f5a23", + "semantic_hash": "27eb0f1b31a88613bb4d2b72a86f5a23" + }, + "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.email.rig.test.ts": { + "mtime": 1786206352.4626627, + "ast_hash": "4ee54d88faf37d660524a5513469e642", + "semantic_hash": "4ee54d88faf37d660524a5513469e642" + }, + "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/loopbackHttp.test.ts": { + "mtime": 1786206352.4626627, + "ast_hash": "fc68415f6247c019c3d54bcd0d3c6abb", + "semantic_hash": "fc68415f6247c019c3d54bcd0d3c6abb" + }, + "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/receiver.test.ts": { + "mtime": 1786206352.4626627, + "ast_hash": "5f8324e9913530298daf5d6a77bf9c09", + "semantic_hash": "5f8324e9913530298daf5d6a77bf9c09" + }, + "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/relayExclusion.test.ts": { + "mtime": 1786206352.4626627, + "ast_hash": "e1241a1c3c77ae034f799425d4146718", + "semantic_hash": "e1241a1c3c77ae034f799425d4146718" + }, + "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/roundtrip.test.ts": { + "mtime": 1786206352.4626627, + "ast_hash": "ca744940fb63d93ee6b7572b2ecc9812", + "semantic_hash": "ca744940fb63d93ee6b7572b2ecc9812" + }, + "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/serialize.test.ts": { + "mtime": 1786206352.4626627, + "ast_hash": "921b44b6bd25d771ce05d189ecca91bb", + "semantic_hash": "921b44b6bd25d771ce05d189ecca91bb" + }, + "apps/electron-vite-project/electron/main/critical-jobs/remote/__tests__/topology.test.ts": { + "mtime": 1786206352.4626627, + "ast_hash": "5c7010576d04ff90bf376c64d128ed74", + "semantic_hash": "5c7010576d04ff90bf376c64d128ed74" + }, + "apps/electron-vite-project/electron/main/critical-jobs/remote/criticalJobServiceDispatch.ts": { + "mtime": 1786206352.4626627, + "ast_hash": "be05bc6f0f1b210670a1256513299837", + "semantic_hash": "be05bc6f0f1b210670a1256513299837" + }, + "apps/electron-vite-project/electron/main/critical-jobs/remote/receiver.ts": { + "mtime": 1786206352.4626627, + "ast_hash": "850972bb0aa9f90b7b2f139280c6d853", + "semantic_hash": "850972bb0aa9f90b7b2f139280c6d853" + }, + "apps/electron-vite-project/electron/main/critical-jobs/remote/receiverDispatcher.ts": { + "mtime": 1786206352.4666622, + "ast_hash": "5cd9b20171d6b2cf2686a6f6f80f2894", + "semantic_hash": "5cd9b20171d6b2cf2686a6f6f80f2894" + }, + "apps/electron-vite-project/electron/main/critical-jobs/remote/sandboxEmailDelivery.ts": { + "mtime": 1786206352.4666622, + "ast_hash": "0091b5321abc3ebdee0ba480ab708dfe", + "semantic_hash": "0091b5321abc3ebdee0ba480ab708dfe" + }, + "apps/electron-vite-project/electron/main/critical-jobs/remote/send.ts": { + "mtime": 1786206352.4666622, + "ast_hash": "4009d2dc94038a41bd2b4b4b3f61e509", + "semantic_hash": "4009d2dc94038a41bd2b4b4b3f61e509" + }, + "apps/electron-vite-project/electron/main/critical-jobs/remote/serialize.ts": { + "mtime": 1786206352.4666622, + "ast_hash": "e3916e39252b9aea8288d876ba657daf", + "semantic_hash": "e3916e39252b9aea8288d876ba657daf" + }, + "apps/electron-vite-project/electron/main/critical-jobs/remote/wire.ts": { + "mtime": 1786206352.4666622, + "ast_hash": "f223eadaf6346a3decec2c2b4c04d9d1", + "semantic_hash": "f223eadaf6346a3decec2c2b4c04d9d1" + }, + "apps/electron-vite-project/electron/main/critical-jobs/resolution.ts": { + "mtime": 1786206352.4666622, + "ast_hash": "ee5d89c6b07b6c8b1dda63218cdf7ba6", + "semantic_hash": "ee5d89c6b07b6c8b1dda63218cdf7ba6" + }, + "apps/electron-vite-project/electron/main/critical-jobs/topology.ts": { + "mtime": 1786206352.4666622, + "ast_hash": "0bbb8175f6295893ea2d70838a932b7b", + "semantic_hash": "0bbb8175f6295893ea2d70838a932b7b" + }, + "apps/electron-vite-project/electron/main/critical-jobs/types.ts": { + "mtime": 1786206352.4666622, + "ast_hash": "9d1eb8fb60ce66786eeae8ce0a2e96c2", + "semantic_hash": "9d1eb8fb60ce66786eeae8ce0a2e96c2" + }, + "apps/electron-vite-project/electron/main/critical-jobs/verify.ts": { + "mtime": 1786206352.4666622, + "ast_hash": "4a7906d2d331bedf2d7c05716a1cfce5", + "semantic_hash": "4a7906d2d331bedf2d7c05716a1cfce5" + }, + "apps/electron-vite-project/electron/main/customModes/__tests__/builtInModes.test.ts": { + "mtime": 1786206352.4666622, + "ast_hash": "ada1adc25c9a500b0eec857805c402d0", + "semantic_hash": "ada1adc25c9a500b0eec857805c402d0" + }, + "apps/electron-vite-project/electron/main/customModes/__tests__/customModesStore.test.ts": { + "mtime": 1786206352.4666622, + "ast_hash": "788868ead4bfde5bbfe2fabbab571b6d", + "semantic_hash": "788868ead4bfde5bbfe2fabbab571b6d" + }, + "apps/electron-vite-project/electron/main/customModes/__tests__/scamWatchdogBuiltIn.test.ts": { + "mtime": 1786206352.4666622, + "ast_hash": "5df58ea9cca869bff2280b5c46f3fc8c", + "semantic_hash": "5df58ea9cca869bff2280b5c46f3fc8c" + }, + "apps/electron-vite-project/electron/main/customModes/broadcast.ts": { + "mtime": 1786206352.4666622, + "ast_hash": "d81aba5c184512b2dac896cd11d3ada8", + "semantic_hash": "d81aba5c184512b2dac896cd11d3ada8" + }, + "apps/electron-vite-project/electron/main/customModes/builtInModes.ts": { + "mtime": 1786206352.4666622, + "ast_hash": "e9123b468351b59afb291641283bb265", + "semantic_hash": "e9123b468351b59afb291641283bb265" + }, + "apps/electron-vite-project/electron/main/customModes/customModesStore.ts": { + "mtime": 1786206352.4666622, + "ast_hash": "2f1e08bed543d676be46d0f581e9af9e", + "semantic_hash": "2f1e08bed543d676be46d0f581e9af9e" + }, + "apps/electron-vite-project/electron/main/customModes/ipc.ts": { + "mtime": 1786206352.4666622, + "ast_hash": "964e6b86cc62b9e172210bced6710649", + "semantic_hash": "964e6b86cc62b9e172210bced6710649" + }, + "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/blindCourier.invariant.test.ts": { + "mtime": 1786206352.4666622, + "ast_hash": "cc30908f1e5a9cca7a3cb4f249ad70e9", + "semantic_hash": "cc30908f1e5a9cca7a3cb4f249ad70e9" + }, + "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmImageBundlePreflight.test.ts": { + "mtime": 1786206352.4666622, + "ast_hash": "5b1d642cdbc91a568afe8ea664b15ad0", + "semantic_hash": "5b1d642cdbc91a568afe8ea664b15ad0" + }, + "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/crosvmProvider.rig.test.ts": { + "mtime": 1786206352.4666622, + "ast_hash": "a215daaf19a272e65c417e59b81de9e1", + "semantic_hash": "a215daaf19a272e65c417e59b81de9e1" + }, + "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/defenseInDepthDetection.test.ts": { + "mtime": 1786206352.4666622, + "ast_hash": "98aaa8a9ea0e0a74b0da5ac2ec94e9e1", + "semantic_hash": "98aaa8a9ea0e0a74b0da5ac2ec94e9e1" + }, + "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/depackagingService.test.ts": { + "mtime": 1786206352.4666622, + "ast_hash": "b06174f47613ec37458ae8a1d51955a3", + "semantic_hash": "b06174f47613ec37458ae8a1d51955a3" + }, + "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/displayEnvelope.test.ts": { + "mtime": 1786206352.4666622, + "ast_hash": "df9988004a5cb992e2b7e36bf3588ac0", + "semantic_hash": "df9988004a5cb992e2b7e36bf3588ac0" + }, + "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/emailDepackage.test.ts": { + "mtime": 1786206352.4666622, + "ast_hash": "f8adb1d36316a7e9daa37875a9dfeae5", + "semantic_hash": "f8adb1d36316a7e9daa37875a9dfeae5" + }, + "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/emailResultSigning.test.ts": { + "mtime": 1786206352.4666622, + "ast_hash": "f1f46b833333f882dc4919f90e9a5235", + "semantic_hash": "f1f46b833333f882dc4919f90e9a5235" + }, + "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/htmlToText.equivalence.test.ts": { + "mtime": 1786206352.4666622, + "ast_hash": "e990babf63e54a48bc2c2307d41ac588", + "semantic_hash": "e990babf63e54a48bc2c2307d41ac588" + }, + "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/inertSinkAudit.test.ts": { + "mtime": 1786206352.4666622, + "ast_hash": "714941519268a0dfef9bffd70b0f2a64", + "semantic_hash": "714941519268a0dfef9bffd70b0f2a64" + }, + "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/livePbeapTrust.test.ts": { + "mtime": 1786206352.4666622, + "ast_hash": "315bf4e718788b8e579e5fa3ee8dca32", + "semantic_hash": "315bf4e718788b8e579e5fa3ee8dca32" + }, + "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/providerStructuredWalker.equivalence.test.ts": { + "mtime": 1786206352.4666622, + "ast_hash": "dc0d85ba9b35cba59173e3b37fa2d922", + "semantic_hash": "dc0d85ba9b35cba59173e3b37fa2d922" + }, + "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/revalidate.trust.repair.test.ts": { + "mtime": 1786206352.4666622, + "ast_hash": "38dd4d29ee86d11c277c0ea3427fb4f8", + "semantic_hash": "38dd4d29ee86d11c277c0ea3427fb4f8" + }, + "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/textPurity.invariant.test.ts": { + "mtime": 1786206352.4666622, + "ast_hash": "1f4b3b3c0094a6a89aa9023b39db900d", + "semantic_hash": "1f4b3b3c0094a6a89aa9023b39db900d" + }, + "apps/electron-vite-project/electron/main/depackaging-microvm/__tests__/vmIdentitySigning.test.ts": { + "mtime": 1786206352.4666622, + "ast_hash": "588ff21587c7b13ea02fe5bac3c477ef", + "semantic_hash": "588ff21587c7b13ea02fe5bac3c477ef" + }, + "apps/electron-vite-project/electron/main/depackaging-microvm/blindCourier.ts": { + "mtime": 1786206352.4666622, + "ast_hash": "ec276c139fb3361a6043626d743d37ad", + "semantic_hash": "ec276c139fb3361a6043626d743d37ad" + }, + "apps/electron-vite-project/electron/main/depackaging-microvm/crosvmProvider.ts": { + "mtime": 1786206352.4666622, + "ast_hash": "d493b386cea3667f6cede27413a1dee8", + "semantic_hash": "d493b386cea3667f6cede27413a1dee8" + }, + "apps/electron-vite-project/electron/main/depackaging-microvm/defenseInDepthDetection.ts": { + "mtime": 1786206352.4666622, + "ast_hash": "3e7cad10be7db08dbfe8b83de413e819", + "semantic_hash": "3e7cad10be7db08dbfe8b83de413e819" + }, + "apps/electron-vite-project/electron/main/depackaging-microvm/depackageModel.ts": { + "mtime": 1786206352.4666622, + "ast_hash": "8acc6132b5c6279d22b563fe001e03e6", + "semantic_hash": "8acc6132b5c6279d22b563fe001e03e6" + }, + "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingService.ts": { + "mtime": 1786206352.4666622, + "ast_hash": "6779ae2c680137179c447a5eee53a382", + "semantic_hash": "6779ae2c680137179c447a5eee53a382" + }, + "apps/electron-vite-project/electron/main/depackaging-microvm/depackagingWorker.ts": { + "mtime": 1786206352.4666622, + "ast_hash": "f2b68051c9def4e8913729ed29c11116", + "semantic_hash": "f2b68051c9def4e8913729ed29c11116" + }, + "apps/electron-vite-project/electron/main/depackaging-microvm/displayEnvelope.ts": { + "mtime": 1786206352.4666622, + "ast_hash": "ff6d4889b3525137a23203693d05c553", + "semantic_hash": "ff6d4889b3525137a23203693d05c553" + }, + "apps/electron-vite-project/electron/main/depackaging-microvm/emailDepackage.ts": { + "mtime": 1786206352.4666622, + "ast_hash": "ae91ff0995cd56ce8b11324244913704", + "semantic_hash": "ae91ff0995cd56ce8b11324244913704" + }, + "apps/electron-vite-project/electron/main/depackaging-microvm/htmlToText.ts": { + "mtime": 1786206352.4666622, + "ast_hash": "73272dc508313e1dd14871bb85ddbc53", + "semantic_hash": "73272dc508313e1dd14871bb85ddbc53" + }, + "apps/electron-vite-project/electron/main/depackaging-microvm/hypervisorProvider.ts": { + "mtime": 1786206352.4666622, + "ast_hash": "c2cd0aec321c10745559b0c7bb2203a7", + "semantic_hash": "c2cd0aec321c10745559b0c7bb2203a7" + }, + "apps/electron-vite-project/electron/main/depackaging-microvm/legacyRepair.ts": { + "mtime": 1786206352.4666622, + "ast_hash": "86ff0c540700657cedb423c3c6b5c2fd", + "semantic_hash": "86ff0c540700657cedb423c3c6b5c2fd" + }, + "apps/electron-vite-project/electron/main/depackaging-microvm/livePbeapTrust.ts": { + "mtime": 1786206352.4666622, + "ast_hash": "f0d7eb39202bb4f0c93e15dcc5b96fd5", + "semantic_hash": "f0d7eb39202bb4f0c93e15dcc5b96fd5" + }, + "apps/electron-vite-project/electron/main/depackaging-microvm/mimeExtract.ts": { + "mtime": 1786206352.4666622, + "ast_hash": "eef2f7cb94a7290ae3ccc98b9a9cb00e", + "semantic_hash": "eef2f7cb94a7290ae3ccc98b9a9cb00e" + }, + "apps/electron-vite-project/electron/main/depackaging-microvm/pbeapTrust.ts": { + "mtime": 1786206352.4666622, + "ast_hash": "7a0d2d273cb6d47847a4cebf500a4562", + "semantic_hash": "7a0d2d273cb6d47847a4cebf500a4562" + }, + "apps/electron-vite-project/electron/main/depackaging-microvm/providerStructuredWalker.ts": { + "mtime": 1786206352.4666622, + "ast_hash": "e2f4a55a288c8bb7826aaf6142667a3b", + "semantic_hash": "e2f4a55a288c8bb7826aaf6142667a3b" + }, + "apps/electron-vite-project/electron/main/depackaging-microvm/rig/build-golden-image.sh": { + "mtime": 1786206352.4666622, + "ast_hash": "423dd6fda4a3554827bc21dc0a4e4640", + "semantic_hash": "423dd6fda4a3554827bc21dc0a4e4640" + }, + "apps/electron-vite-project/electron/main/depackaging-microvm/rig/buildWorkerBundle.mjs": { + "mtime": 1786206352.4666622, + "ast_hash": "d9cf681f0a3c3483016f7919b8cd73bc", + "semantic_hash": "d9cf681f0a3c3483016f7919b8cd73bc" + }, + "apps/electron-vite-project/electron/main/depackaging-microvm/rig/crosvm-launch.sh": { + "mtime": 1786206352.4666622, + "ast_hash": "58bceb2cf0e5a3befa17206a5551aebe", + "semantic_hash": "58bceb2cf0e5a3befa17206a5551aebe" + }, + "apps/electron-vite-project/electron/main/depackaging-microvm/rig/guestEntry.ts": { + "mtime": 1786206352.4666622, + "ast_hash": "868da1d47c7b5c958e29b4d455d40d3e", + "semantic_hash": "868da1d47c7b5c958e29b4d455d40d3e" + }, + "apps/electron-vite-project/electron/main/depackaging-microvm/rig/host-setup-root.sh": { + "mtime": 1786206352.4666622, + "ast_hash": "a00948fc203c26be084b8b0bd4a94195", + "semantic_hash": "a00948fc203c26be084b8b0bd4a94195" + }, + "apps/electron-vite-project/electron/main/depackaging-microvm/rig/smokeTest.mjs": { + "mtime": 1786206352.4666622, + "ast_hash": "ed2367f7887c16e5dac26f8aef9fcfdc", + "semantic_hash": "ed2367f7887c16e5dac26f8aef9fcfdc" + }, + "apps/electron-vite-project/electron/main/depackaging-microvm/rig/vsock-echo.c": { + "mtime": 1786206352.4666622, + "ast_hash": "de13b24ce8775dd1b441a22827eb865a", + "semantic_hash": "de13b24ce8775dd1b441a22827eb865a" + }, + "apps/electron-vite-project/electron/main/depackaging-microvm/rig/vsock-echo.sh": { + "mtime": 1786206352.4666622, + "ast_hash": "af73b52a97d7aee7b56d7bc3f60c9eb3", + "semantic_hash": "af73b52a97d7aee7b56d7bc3f60c9eb3" + }, + "apps/electron-vite-project/electron/main/depackaging-microvm/rig/vsock-host-client.c": { + "mtime": 1786206352.4666622, + "ast_hash": "6e167d84a442171e100d1da5a40c34a0", + "semantic_hash": "6e167d84a442171e100d1da5a40c34a0" + }, + "apps/electron-vite-project/electron/main/depackaging-microvm/rig/vsock-job-server.c": { + "mtime": 1786206352.4666622, + "ast_hash": "7e75d065044bfbcd77532bebbfed0802", + "semantic_hash": "7e75d065044bfbcd77532bebbfed0802" + }, + "apps/electron-vite-project/electron/main/depackaging-microvm/safeText.ts": { + "mtime": 1786206352.4666622, + "ast_hash": "64109a0e28a97c8db54cfe93293d0a24", + "semantic_hash": "64109a0e28a97c8db54cfe93293d0a24" + }, + "apps/electron-vite-project/electron/main/device-keys/deviceKeyMigration.ts": { + "mtime": 1786206352.4666622, + "ast_hash": "2a761cf3aa07e4af7866a13d93e381ab", + "semantic_hash": "2a761cf3aa07e4af7866a13d93e381ab" + }, + "apps/electron-vite-project/electron/main/device-keys/deviceKeyStore.ts": { + "mtime": 1786206352.4706614, + "ast_hash": "d84c49622fdc27c889c1f8055a3bb122", + "semantic_hash": "d84c49622fdc27c889c1f8055a3bb122" + }, + "apps/electron-vite-project/electron/main/email/__tests__/a2SandboxIngestion.test.ts": { + "mtime": 1786206352.4706614, + "ast_hash": "b4460f6408fe914906d6930c384f18dc", + "semantic_hash": "b4460f6408fe914906d6930c384f18dc" + }, + "apps/electron-vite-project/electron/main/email/__tests__/accountDeleteAtomic.test.ts": { + "mtime": 1786206352.4706614, + "ast_hash": "c3109df2df478f378fbde88253a89dac", + "semantic_hash": "c3109df2df478f378fbde88253a89dac" + }, + "apps/electron-vite-project/electron/main/email/__tests__/autosortSessionReview.regression.test.ts": { + "mtime": 1786206352.4706614, + "ast_hash": "cad779457c60f362a4050f32a22e8008", + "semantic_hash": "cad779457c60f362a4050f32a22e8008" + }, + "apps/electron-vite-project/electron/main/email/__tests__/b2LiveIngestion.rig.test.ts": { + "mtime": 1786206352.4706614, + "ast_hash": "47421d70f62578c75a3fc983cf4bccd2", + "semantic_hash": "47421d70f62578c75a3fc983cf4bccd2" + }, + "apps/electron-vite-project/electron/main/email/__tests__/b31GapClosure.test.ts": { + "mtime": 1786206352.4706614, + "ast_hash": "1ac30dd9979e906dc0309e19a7a7dae8", + "semantic_hash": "1ac30dd9979e906dc0309e19a7a7dae8" + }, + "apps/electron-vite-project/electron/main/email/__tests__/b4P2PRelayMigration.test.ts": { + "mtime": 1786206352.4706614, + "ast_hash": "c3154cf0d0ca42c3ebbabae3e8f570b0", + "semantic_hash": "c3154cf0d0ca42c3ebbabae3e8f570b0" + }, + "apps/electron-vite-project/electron/main/email/__tests__/b51ExtensionMergeBypass.test.ts": { + "mtime": 1786206352.4706614, + "ast_hash": "c3b0c3ad6a3b756c3e9e782ad3002252", + "semantic_hash": "c3b0c3ad6a3b756c3e9e782ad3002252" + }, + "apps/electron-vite-project/electron/main/email/__tests__/b5ExtensionMerge.test.ts": { + "mtime": 1786206352.4706614, + "ast_hash": "14f743be7f2a50c98a5c0f7f351ebb49", + "semantic_hash": "14f743be7f2a50c98a5c0f7f351ebb49" + }, + "apps/electron-vite-project/electron/main/email/__tests__/b71OperationalGate.test.ts": { + "mtime": 1786206352.4706614, + "ast_hash": "33b17bb10643f2308a3300685b6b54d0", + "semantic_hash": "33b17bb10643f2308a3300685b6b54d0" + }, + "apps/electron-vite-project/electron/main/email/__tests__/b72DecryptedContentReseal.test.ts": { + "mtime": 1786206352.4706614, + "ast_hash": "35bdfdb3c848b26862c1f56ab1fd23bf", + "semantic_hash": "35bdfdb3c848b26862c1f56ab1fd23bf" + }, + "apps/electron-vite-project/electron/main/email/__tests__/b7IpcContentUpdates.test.ts": { + "mtime": 1786206352.4706614, + "ast_hash": "768f1d1252ac2223adcb051502b4c0cd", + "semantic_hash": "768f1d1252ac2223adcb051502b4c0cd" + }, + "apps/electron-vite-project/electron/main/email/__tests__/b9OutboundCloneIntegrity.test.ts": { + "mtime": 1786206352.4706614, + "ast_hash": "964aa581c6777a78b143dc5c554ab67e", + "semantic_hash": "964aa581c6777a78b143dc5c554ab67e" + }, + "apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepare.test.ts": { + "mtime": 1786206352.4706614, + "ast_hash": "46e953df4c5ec0fe23c990abadc4e4cd", + "semantic_hash": "46e953df4c5ec0fe23c990abadc4e4cd" + }, + "apps/electron-vite-project/electron/main/email/__tests__/beapInboxClonePrepareSealGate.test.ts": { + "mtime": 1786206352.4706614, + "ast_hash": "c92cf9ec16ea30d711c66979d99743f0", + "semantic_hash": "c92cf9ec16ea30d711c66979d99743f0" + }, + "apps/electron-vite-project/electron/main/email/__tests__/beapInboxCloneVaultRequirement.test.ts": { + "mtime": 1786206352.4706614, + "ast_hash": "a5a37ee7764c9116c2c5d25b03c0da7f", + "semantic_hash": "a5a37ee7764c9116c2c5d25b03c0da7f" + }, + "apps/electron-vite-project/electron/main/email/__tests__/beapRedirectSource.inbox.test.ts": { + "mtime": 1786206352.4706614, + "ast_hash": "ea68caee244c4f586313acd9870fd568", + "semantic_hash": "ea68caee244c4f586313acd9870fd568" + }, + "apps/electron-vite-project/electron/main/email/__tests__/beapSync.test.ts": { + "mtime": 1786206352.4706614, + "ast_hash": "d03acda6a6c7ebf9c99a5baf8dc94fe9", + "semantic_hash": "d03acda6a6c7ebf9c99a5baf8dc94fe9" + }, + "apps/electron-vite-project/electron/main/email/__tests__/connectToDisplay.regression.test.ts": { + "mtime": 1786206352.4706614, + "ast_hash": "41f0cf5744cf7108865688d8a468dae6", + "semantic_hash": "41f0cf5744cf7108865688d8a468dae6" + }, + "apps/electron-vite-project/electron/main/email/__tests__/dedicatedSandboxReadProviderStatus.test.ts": { + "mtime": 1786206352.4706614, + "ast_hash": "fce69e073583017452b25b0abb30b19b", + "semantic_hash": "fce69e073583017452b25b0abb30b19b" + }, + "apps/electron-vite-project/electron/main/email/__tests__/dedicatedSandboxSelfTrigger.test.ts": { + "mtime": 1786206352.4706614, + "ast_hash": "12fe042420f157201d84c6f1219505a8", + "semantic_hash": "12fe042420f157201d84c6f1219505a8" + }, + "apps/electron-vite-project/electron/main/email/__tests__/emailInboxAttachmentInvariants.test.ts": { + "mtime": 1786206352.4706614, + "ast_hash": "092b082102ce098f2d281df8746d2fd2", + "semantic_hash": "092b082102ce098f2d281df8746d2fd2" + }, + "apps/electron-vite-project/electron/main/email/__tests__/emailSyncPauseAndImapScheduler.test.ts": { + "mtime": 1786206352.4706614, + "ast_hash": "0bb8360487cf545e9f48483dacd6730c", + "semantic_hash": "0bb8360487cf545e9f48483dacd6730c" + }, + "apps/electron-vite-project/electron/main/email/__tests__/imapBruteForceAutoSync.regression.test.ts": { + "mtime": 1786206352.4706614, + "ast_hash": "bfc6358eb48f545ce96e9656455c1659", + "semantic_hash": "bfc6358eb48f545ce96e9656455c1659" + }, + "apps/electron-vite-project/electron/main/email/__tests__/inboxAiErrorMapping.contextOverflow.test.ts": { + "mtime": 1786206352.4706614, + "ast_hash": "0f31179bb208fd639b61ea594ab646d9", + "semantic_hash": "0f31179bb208fd639b61ea594ab646d9" + }, + "apps/electron-vite-project/electron/main/email/__tests__/inboxAiTaskDedup.attach.test.ts": { + "mtime": 1786206352.4706614, + "ast_hash": "b0fcd80dadaec7e280b09641f37d6ffa", + "semantic_hash": "b0fcd80dadaec7e280b09641f37d6ffa" + }, + "apps/electron-vite-project/electron/main/email/__tests__/inboxAiTaskDedup.replay.test.ts": { + "mtime": 1786206352.4706614, + "ast_hash": "e1bf89f09750a0bf29ed48497f8fd216", + "semantic_hash": "e1bf89f09750a0bf29ed48497f8fd216" + }, + "apps/electron-vite-project/electron/main/email/__tests__/inboxLifecycleEngine.tick.test.ts": { + "mtime": 1786206352.4706614, + "ast_hash": "25e60d72c5b5e553a61781ae7291bd7f", + "semantic_hash": "25e60d72c5b5e553a61781ae7291bd7f" + }, + "apps/electron-vite-project/electron/main/email/__tests__/inboxOllamaAnalyzeStreamSandbox.regression.test.ts": { + "mtime": 1786206352.4706614, + "ast_hash": "04a5e2f622a0cdf10f736772fa2ab724", + "semantic_hash": "04a5e2f622a0cdf10f736772fa2ab724" + }, + "apps/electron-vite-project/electron/main/email/__tests__/inboxOrchestratorRemoteQueue.enqueue.test.ts": { + "mtime": 1786206352.4706614, + "ast_hash": "4c25b4ffed73f6079f3a7bee5a1e5879", + "semantic_hash": "4c25b4ffed73f6079f3a7bee5a1e5879" + }, + "apps/electron-vite-project/electron/main/email/__tests__/inboxPromptGuard.test.ts": { + "mtime": 1786206352.4706614, + "ast_hash": "e66e20e38e1de282436896dbb9dfb568", + "semantic_hash": "e66e20e38e1de282436896dbb9dfb568" + }, + "apps/electron-vite-project/electron/main/email/__tests__/inboxSealedRead.test.ts": { + "mtime": 1786206352.4706614, + "ast_hash": "3b640dd9c89c68818e94de0a5a4c172b", + "semantic_hash": "3b640dd9c89c68818e94de0a5a4c172b" + }, + "apps/electron-vite-project/electron/main/email/__tests__/ingestionOwnership.test.ts": { + "mtime": 1786206352.4706614, + "ast_hash": "41a2481e5f73cb53741283e1d74f50bd", + "semantic_hash": "41a2481e5f73cb53741283e1d74f50bd" + }, + "apps/electron-vite-project/electron/main/email/__tests__/ingestionStatus.test.ts": { + "mtime": 1786206352.4706614, + "ast_hash": "bc89f6f393de5ab770156a7b4d636f91", + "semantic_hash": "bc89f6f393de5ab770156a7b4d636f91" + }, + "apps/electron-vite-project/electron/main/email/__tests__/inlineParseGuard.test.ts": { + "mtime": 1786206352.4706614, + "ast_hash": "d47490bf1c5ec605faebeca29d082475", + "semantic_hash": "d47490bf1c5ec605faebeca29d082475" + }, + "apps/electron-vite-project/electron/main/email/__tests__/ipcSyncResultShape.test.ts": { + "mtime": 1786206352.4706614, + "ast_hash": "e30d615a2a0f9201a922b53d55f6c106", + "semantic_hash": "e30d615a2a0f9201a922b53d55f6c106" + }, + "apps/electron-vite-project/electron/main/email/__tests__/localInboxDeletion.regression.test.ts": { + "mtime": 1786206352.4706614, + "ast_hash": "fa0a013f244a6e2912adee91126130aa", + "semantic_hash": "fa0a013f244a6e2912adee91126130aa" + }, + "apps/electron-vite-project/electron/main/email/__tests__/mergeExtensionDepackaged.validation.test.ts": { + "mtime": 1786206352.4706614, + "ast_hash": "e8e8603c80c9f1c62a9b177920a7e4ae", + "semantic_hash": "e8e8603c80c9f1c62a9b177920a7e4ae" + }, + "apps/electron-vite-project/electron/main/email/__tests__/messageRouter.depackageSeam.test.ts": { + "mtime": 1786206352.4706614, + "ast_hash": "1547fd6975a73bbf9ea4c7e7ed77cccb", + "semantic_hash": "1547fd6975a73bbf9ea4c7e7ed77cccb" + }, + "apps/electron-vite-project/electron/main/email/__tests__/messageRouter.ingestTransaction.test.ts": { + "mtime": 1786206352.4706614, + "ast_hash": "9a427a1f3e5b771dbd26b4fe2a4996ed", + "semantic_hash": "9a427a1f3e5b771dbd26b4fe2a4996ed" + }, + "apps/electron-vite-project/electron/main/email/__tests__/oauthScopeSplit.test.ts": { + "mtime": 1786206352.4706614, + "ast_hash": "e0417991bc3249d4b8a047226b69978d", + "semantic_hash": "e0417991bc3249d4b8a047226b69978d" + }, + "apps/electron-vite-project/electron/main/email/__tests__/opaqueIngestion.test.ts": { + "mtime": 1786206352.4706614, + "ast_hash": "ba2f513ebcb7fb4bc93c049731a38b7a", + "semantic_hash": "ba2f513ebcb7fb4bc93c049731a38b7a" + }, + "apps/electron-vite-project/electron/main/email/__tests__/originMailboxDelete.regression.test.ts": { + "mtime": 1786206352.4706614, + "ast_hash": "dc29ca6b84acfc210730a6242643da3d", + "semantic_hash": "dc29ca6b84acfc210730a6242643da3d" + }, + "apps/electron-vite-project/electron/main/email/__tests__/outlookOpaqueFailClosed.test.ts": { + "mtime": 1786206352.4706614, + "ast_hash": "4b5c07ec24f3c14572650e721119e9c7", + "semantic_hash": "4b5c07ec24f3c14572650e721119e9c7" + }, + "apps/electron-vite-project/electron/main/email/__tests__/outlookRfc822Fidelity.test.ts": { + "mtime": 1786206352.4706614, + "ast_hash": "7512e1a5ab3ac88b7f4ce819ad748c3e", + "semantic_hash": "7512e1a5ab3ac88b7f4ce819ad748c3e" + }, + "apps/electron-vite-project/electron/main/email/__tests__/pbeapTrustPersistence.regression.test.ts": { + "mtime": 1786206352.4706614, + "ast_hash": "6c1d7db4dfd8e56782204d9f32205bae", + "semantic_hash": "6c1d7db4dfd8e56782204d9f32205bae" + }, + "apps/electron-vite-project/electron/main/email/__tests__/pbeapValidation.test.ts": { + "mtime": 1786206352.4706614, + "ast_hash": "7353e7c98f0def782812f7c875bb8089", + "semantic_hash": "7353e7c98f0def782812f7c875bb8089" + }, + "apps/electron-vite-project/electron/main/email/__tests__/pr22SecurityDeferrals.test.ts": { + "mtime": 1786206352.4706614, + "ast_hash": "3cba9ee4f0d5c8801888544fb22a1e4c", + "semantic_hash": "3cba9ee4f0d5c8801888544fb22a1e4c" + }, + "apps/electron-vite-project/electron/main/email/__tests__/pr51DepackagerDeterminism.test.ts": { + "mtime": 1786206352.4706614, + "ast_hash": "c81422e1df5afa79c0a884d0e7e00ac8", + "semantic_hash": "c81422e1df5afa79c0a884d0e7e00ac8" + }, + "apps/electron-vite-project/electron/main/email/__tests__/pr52CloneDeterminism.test.ts": { + "mtime": 1786206352.4706614, + "ast_hash": "cb2976d484977e11ccb541fc7ff01b8d", + "semantic_hash": "cb2976d484977e11ccb541fc7ff01b8d" + }, + "apps/electron-vite-project/electron/main/email/__tests__/readConsentScopeGuard.test.ts": { + "mtime": 1786206352.4706614, + "ast_hash": "0a30aac140b92e6387e50504aa942566", + "semantic_hash": "0a30aac140b92e6387e50504aa942566" + }, + "apps/electron-vite-project/electron/main/email/__tests__/remoteDeletion.orphanAccount.test.ts": { + "mtime": 1786206352.4706614, + "ast_hash": "0d121c656c3c004b0294d12a21053e2f", + "semantic_hash": "0d121c656c3c004b0294d12a21053e2f" + }, + "apps/electron-vite-project/electron/main/email/__tests__/roleAwareConsent.test.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "0ff6436b0834f9abf99cc4fe3265120e", + "semantic_hash": "0ff6436b0834f9abf99cc4fe3265120e" + }, + "apps/electron-vite-project/electron/main/email/__tests__/roleScopedTokenStore.test.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "4178d8a52fca9d95909a69a53756ce10", + "semantic_hash": "4178d8a52fca9d95909a69a53756ce10" + }, + "apps/electron-vite-project/electron/main/email/__tests__/sandboxCloneInboxFilter.test.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "a689b2549c25f28c9185f8b94ecc5f7e", + "semantic_hash": "a689b2549c25f28c9185f8b94ecc5f7e" + }, + "apps/electron-vite-project/electron/main/email/__tests__/sandboxCloneReceiveDisplay.test.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "19bf51cd2595da5eaf6c3574ef7ae4a9", + "semantic_hash": "19bf51cd2595da5eaf6c3574ef7ae4a9" + }, + "apps/electron-vite-project/electron/main/email/__tests__/sandboxEmailFetch.oauth.test.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "96266844b992eaf4a37c7ed395bb79ab", + "semantic_hash": "96266844b992eaf4a37c7ed395bb79ab" + }, + "apps/electron-vite-project/electron/main/email/__tests__/sandboxIngestionProduction.test.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "a5e4279c5cf1f4817edbcdec3c0e061d", + "semantic_hash": "a5e4279c5cf1f4817edbcdec3c0e061d" + }, + "apps/electron-vite-project/electron/main/email/__tests__/scamWatchdog.test.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "3b649aabe0ea8974911f08cfa45100b6", + "semantic_hash": "3b649aabe0ea8974911f08cfa45100b6" + }, + "apps/electron-vite-project/electron/main/email/__tests__/setupFlow.topologyCondition.test.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "6e07483b8af89eb01db8f6ebcd9b5530", + "semantic_hash": "6e07483b8af89eb01db8f6ebcd9b5530" + }, + "apps/electron-vite-project/electron/main/email/__tests__/syncOrchestrator.ingestionGate.test.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "6814987cafb42ddc8c425cfb55f53969", + "semantic_hash": "6814987cafb42ddc8c425cfb55f53969" + }, + "apps/electron-vite-project/electron/main/email/__tests__/syncOrchestrator.processingPaused.test.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "af5db8a951cf3c84e6fbef9aaa20af8d", + "semantic_hash": "af5db8a951cf3c84e6fbef9aaa20af8d" + }, + "apps/electron-vite-project/electron/main/email/__tests__/userDataBootstrapPersistence.test.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "370805aadc8eb140e5ed9f39c3a6f902", + "semantic_hash": "370805aadc8eb140e5ed9f39c3a6f902" + }, + "apps/electron-vite-project/electron/main/email/accountDeletePersistence.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "f0b27e0452baa8a7e7c820bc4d4252bb", + "semantic_hash": "f0b27e0452baa8a7e7c820bc4d4252bb" + }, + "apps/electron-vite-project/electron/main/email/attachmentBlobCrypto.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "354a64325bdd9a6ccfbdbfc4b1b17504", + "semantic_hash": "354a64325bdd9a6ccfbdbfc4b1b17504" + }, + "apps/electron-vite-project/electron/main/email/autoSyncLoopRegistry.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "d464456d7f993fec53df1f12ce2e421c", + "semantic_hash": "d464456d7f993fec53df1f12ce2e421c" + }, + "apps/electron-vite-project/electron/main/email/beapEmailIngestion.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "3a23cacb91f526d2c91fe95b353d1f20", + "semantic_hash": "3a23cacb91f526d2c91fe95b353d1f20" + }, + "apps/electron-vite-project/electron/main/email/beapInboxClonePrepare.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "cc47a4f912df324e078529995f208a2d", + "semantic_hash": "cc47a4f912df324e078529995f208a2d" + }, + "apps/electron-vite-project/electron/main/email/beapInboxDashboardNotify.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "6e62f50286c5b4cf0ae23bcb908e8651", + "semantic_hash": "6e62f50286c5b4cf0ae23bcb908e8651" + }, + "apps/electron-vite-project/electron/main/email/beapRedirectSource.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "064c5f8420267a40e7db4e3b48f23f48", + "semantic_hash": "064c5f8420267a40e7db4e3b48f23f48" + }, + "apps/electron-vite-project/electron/main/email/beapSync.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "ce2f9383bf7d2d104b21bf355f42d37b", + "semantic_hash": "ce2f9383bf7d2d104b21bf355f42d37b" + }, + "apps/electron-vite-project/electron/main/email/builtinGoogleOAuthSupplement.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "33b043e9fb0699eba521966c446e014f", + "semantic_hash": "33b043e9fb0699eba521966c446e014f" + }, + "apps/electron-vite-project/electron/main/email/credentials.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "f33afa4dfcf5468de3cf8ec716b9c76c", + "semantic_hash": "f33afa4dfcf5468de3cf8ec716b9c76c" + }, + "apps/electron-vite-project/electron/main/email/dashboardSnapshot.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "dabf0ebb1ca155b1a98039a4c5f0eaba", + "semantic_hash": "dabf0ebb1ca155b1a98039a4c5f0eaba" + }, + "apps/electron-vite-project/electron/main/email/dedicatedSandboxReadProviderStatus.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "6a9c2a06e8dec9a5da7a7c03284d3284", + "semantic_hash": "6a9c2a06e8dec9a5da7a7c03284d3284" + }, + "apps/electron-vite-project/electron/main/email/diagnoseImapStandalone.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "2f289b850ebf1fde9f5e7aefb0b30969", + "semantic_hash": "2f289b850ebf1fde9f5e7aefb0b30969" + }, + "apps/electron-vite-project/electron/main/email/domain/accountAggregate.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "57b616cb5ee7c8e08ce69c0d46147400", + "semantic_hash": "57b616cb5ee7c8e08ce69c0d46147400" + }, + "apps/electron-vite-project/electron/main/email/domain/accountIdentity.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "e775e1b83de122e43acfba3844401939", + "semantic_hash": "e775e1b83de122e43acfba3844401939" + }, + "apps/electron-vite-project/electron/main/email/domain/accountRowPicker.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "6e0b96c8c709a1b9f855e27792835233", + "semantic_hash": "6e0b96c8c709a1b9f855e27792835233" + }, + "apps/electron-vite-project/electron/main/email/domain/capabilitiesRegistry.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "acdee8830f2913ea87325e55b09d48fe", + "semantic_hash": "acdee8830f2913ea87325e55b09d48fe" + }, + "apps/electron-vite-project/electron/main/email/domain/customImapSmtpPayloadValidation.test.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "ab713557995a54f70e0928b22c22d010", + "semantic_hash": "ab713557995a54f70e0928b22c22d010" + }, + "apps/electron-vite-project/electron/main/email/domain/customImapSmtpPayloadValidation.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "c5ce59131f1acc463497acc1d7ff1dd3", + "semantic_hash": "c5ce59131f1acc463497acc1d7ff1dd3" + }, + "apps/electron-vite-project/electron/main/email/domain/imapLegacyFolders.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "4f6a35d995928c78313ee19c44a44c0a", + "semantic_hash": "4f6a35d995928c78313ee19c44a44c0a" + }, + "apps/electron-vite-project/electron/main/email/domain/imapPullFolders.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "de433fed4ff1b22b368a71011016eb85", + "semantic_hash": "de433fed4ff1b22b368a71011016eb85" + }, + "apps/electron-vite-project/electron/main/email/domain/index.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "13874f2c8235fae5e7c02176673c49ca", + "semantic_hash": "13874f2c8235fae5e7c02176673c49ca" + }, + "apps/electron-vite-project/electron/main/email/domain/mailboxAccountDedupe.test.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "3915f5014925906e34e4a2fcf954458f", + "semantic_hash": "3915f5014925906e34e4a2fcf954458f" + }, + "apps/electron-vite-project/electron/main/email/domain/mailboxAccountDedupe.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "97c60083ed44892b2f4e58dcae8dc686", + "semantic_hash": "97c60083ed44892b2f4e58dcae8dc686" + }, + "apps/electron-vite-project/electron/main/email/domain/mailboxLifecycleMapping.test.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "bbe0fee6a750d5f715a8df09c3238ef0", + "semantic_hash": "bbe0fee6a750d5f715a8df09c3238ef0" + }, + "apps/electron-vite-project/electron/main/email/domain/mailboxLifecycleMapping.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "491ead920425c4620d281097243bdf33", + "semantic_hash": "491ead920425c4620d281097243bdf33" + }, + "apps/electron-vite-project/electron/main/email/domain/mailboxResolution.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "696c9494ada7cf0c36c0326f9a8463f8", + "semantic_hash": "696c9494ada7cf0c36c0326f9a8463f8" + }, + "apps/electron-vite-project/electron/main/email/domain/mailboxSyncPlan.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "00e7c848de7aace71a56a4df702640c9", + "semantic_hash": "00e7c848de7aace71a56a4df702640c9" + }, + "apps/electron-vite-project/electron/main/email/domain/orchestratorRemoteTypes.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "625892c700c6d1e7c996eb780bdea496", + "semantic_hash": "625892c700c6d1e7c996eb780bdea496" + }, + "apps/electron-vite-project/electron/main/email/domain/remoteLifecycleAbstraction.test.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "8f73199e05a2a42063b329bc44ecd99f", + "semantic_hash": "8f73199e05a2a42063b329bc44ecd99f" + }, + "apps/electron-vite-project/electron/main/email/domain/remoteLifecycleAbstraction.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "9f3cfcb0c6f9b05c8a84ac30a474147b", + "semantic_hash": "9f3cfcb0c6f9b05c8a84ac30a474147b" + }, + "apps/electron-vite-project/electron/main/email/domain/securityModeNormalize.test.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "4f8f50d5c9b9781267ba4e1e49e70f9d", + "semantic_hash": "4f8f50d5c9b9781267ba4e1e49e70f9d" + }, + "apps/electron-vite-project/electron/main/email/domain/securityModeNormalize.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "578495918f0b52ff9cc0b92f0758e364", + "semantic_hash": "578495918f0b52ff9cc0b92f0758e364" + }, + "apps/electron-vite-project/electron/main/email/domain/smartSyncPrefs.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "d1d35898041cea6c64018b19ba1bd7eb", + "semantic_hash": "d1d35898041cea6c64018b19ba1bd7eb" + }, + "apps/electron-vite-project/electron/main/email/domain/syncLastSyncAnchorPolicy.test.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "674d38a530f76f15beafa7406210c43f", + "semantic_hash": "674d38a530f76f15beafa7406210c43f" + }, + "apps/electron-vite-project/electron/main/email/domain/syncLastSyncAnchorPolicy.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "0230f8dd1a03013c5905709064af3025", + "semantic_hash": "0230f8dd1a03013c5905709064af3025" + }, + "apps/electron-vite-project/electron/main/email/emailAuthErrors.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "d2ddb8b85c525fbc78bff354322f2035", + "semantic_hash": "d2ddb8b85c525fbc78bff354322f2035" + }, + "apps/electron-vite-project/electron/main/email/emailDebug.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "491bedf9db1d71e676af5fac3f902370", + "semantic_hash": "491bedf9db1d71e676af5fac3f902370" + }, + "apps/electron-vite-project/electron/main/email/extensionMergeRetryBuffer.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "cb19b5221c82f821761ccedd43939bdd", + "semantic_hash": "cb19b5221c82f821761ccedd43939bdd" + }, + "apps/electron-vite-project/electron/main/email/gateway.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "effbb25e137f5f671e9ee0cfdc89cb30", + "semantic_hash": "effbb25e137f5f671e9ee0cfdc89cb30" + }, + "apps/electron-vite-project/electron/main/email/gatewayOrphanAccountError.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "2d08adadf6a3bd7ec552ff5bd1feb700", + "semantic_hash": "2d08adadf6a3bd7ec552ff5bd1feb700" + }, + "apps/electron-vite-project/electron/main/email/gmailCredentialsCheckPayload.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "08e76109e1d39b2da0e7da3b2eff0fc8", + "semantic_hash": "08e76109e1d39b2da0e7da3b2eff0fc8" + }, + "apps/electron-vite-project/electron/main/email/gmailOAuthConnectDebug.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "180c10df3b112e0667ce66c933d1cb1e", + "semantic_hash": "180c10df3b112e0667ce66c933d1cb1e" + }, + "apps/electron-vite-project/electron/main/email/gmailOAuthResolve.test.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "bc882d8c00b6c9b452b2dd09e8d5392c", + "semantic_hash": "bc882d8c00b6c9b452b2dd09e8d5392c" + }, + "apps/electron-vite-project/electron/main/email/gmailOAuthResolve.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "2889b0e1c01d3c982c731c9e4f0afb43", + "semantic_hash": "2889b0e1c01d3c982c731c9e4f0afb43" + }, + "apps/electron-vite-project/electron/main/email/gmailOAuthRuntimeProof.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "70f79351446cc20b330f11bf445049d1", + "semantic_hash": "70f79351446cc20b330f11bf445049d1" + }, + "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.packaged.test.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "cc0bc72732bfa4b08461ce71784546aa", + "semantic_hash": "cc0bc72732bfa4b08461ce71784546aa" + }, + "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.test.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "e45bb7499d9b919bda68a06d001b6a2a", + "semantic_hash": "e45bb7499d9b919bda68a06d001b6a2a" + }, + "apps/electron-vite-project/electron/main/email/googleOAuthBuiltin.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "df793aa19883d0e5fd0e17050cd04a85", + "semantic_hash": "df793aa19883d0e5fd0e17050cd04a85" + }, + "apps/electron-vite-project/electron/main/email/imapLifecycleReconcile.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "cc735edb527194debf2a18303d6a9e77", + "semantic_hash": "cc735edb527194debf2a18303d6a9e77" + }, + "apps/electron-vite-project/electron/main/email/imapSyncTelemetry.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "57286443109046ae13c83db4f8951c71", + "semantic_hash": "57286443109046ae13c83db4f8951c71" + }, + "apps/electron-vite-project/electron/main/email/inboxAiErrorMapping.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "abce68f34df64f4885d2205c82f7ef25", + "semantic_hash": "abce68f34df64f4885d2205c82f7ef25" + }, + "apps/electron-vite-project/electron/main/email/inboxAiTaskDedup.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "779df9553358312a720a324ba5acd098", + "semantic_hash": "779df9553358312a720a324ba5acd098" + }, + "apps/electron-vite-project/electron/main/email/inboxLifecycleEngine.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "7d3dd69e35b5e9ffc22693e67d211b2e", + "semantic_hash": "7d3dd69e35b5e9ffc22693e67d211b2e" + }, + "apps/electron-vite-project/electron/main/email/inboxLlmChat.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "d69e95576fed1f083a8fe89ec1a82121", + "semantic_hash": "d69e95576fed1f083a8fe89ec1a82121" + }, + "apps/electron-vite-project/electron/main/email/inboxOllamaChatStreamSandbox.ts": { + "mtime": 1786206352.4746609, + "ast_hash": "14a283484be4fc09d54edd107ba9bad4", + "semantic_hash": "14a283484be4fc09d54edd107ba9bad4" + }, + "apps/electron-vite-project/electron/main/email/inboxOrchestratorRemoteQueue.ts": { + "mtime": 1786206352.4786603, + "ast_hash": "7fdb87f4e570dc49fde82b472aed280b", + "semantic_hash": "7fdb87f4e570dc49fde82b472aed280b" + }, + "apps/electron-vite-project/electron/main/email/inboxPromptGuard.ts": { + "mtime": 1786206352.4786603, + "ast_hash": "a3bb71bb0070e7756fc34e40b92d92f1", + "semantic_hash": "a3bb71bb0070e7756fc34e40b92d92f1" + }, + "apps/electron-vite-project/electron/main/email/inboxRowSealPolicy.ts": { + "mtime": 1786206352.4786603, + "ast_hash": "71c118cae172f88cb9ca19c4b734cc4b", + "semantic_hash": "71c118cae172f88cb9ca19c4b734cc4b" + }, + "apps/electron-vite-project/electron/main/email/inboxSealedRead.ts": { + "mtime": 1786206352.4786603, + "ast_hash": "40546bb8c25be5c9a7a55f6f37480f19", + "semantic_hash": "40546bb8c25be5c9a7a55f6f37480f19" + }, + "apps/electron-vite-project/electron/main/email/inboxWhereClause.ts": { + "mtime": 1786206352.4786603, + "ast_hash": "081a3fd4aa49b20b73d11b7bc6cf0ebe", + "semantic_hash": "081a3fd4aa49b20b73d11b7bc6cf0ebe" + }, + "apps/electron-vite-project/electron/main/email/index.ts": { + "mtime": 1786206352.4786603, + "ast_hash": "d3d62079f16075b522e67051a10c18e0", + "semantic_hash": "d3d62079f16075b522e67051a10c18e0" + }, + "apps/electron-vite-project/electron/main/email/ingestionOwnership.ts": { + "mtime": 1786206352.4786603, + "ast_hash": "b5f0e03bdd972908facc80e19c7ff2a4", + "semantic_hash": "b5f0e03bdd972908facc80e19c7ff2a4" + }, + "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/crossNetworkPollArchitecture.test.ts": { + "mtime": 1786206352.4786603, + "ast_hash": "2d362261d104ec3faff1297ff9c7f44a", + "semantic_hash": "2d362261d104ec3faff1297ff9c7f44a" + }, + "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/dedicatedHostIngestionPollTrigger.test.ts": { + "mtime": 1786206352.4786603, + "ast_hash": "cc391962ba6392ec7a0af9b8ff363881", + "semantic_hash": "cc391962ba6392ec7a0af9b8ff363881" + }, + "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/hostIngestionPollCompletion.test.ts": { + "mtime": 1786206352.4786603, + "ast_hash": "80bd633facebe5f2b6ff4c1c5bc93465", + "semantic_hash": "80bd633facebe5f2b6ff4c1c5bc93465" + }, + "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayCapsuleHandler.test.ts": { + "mtime": 1786206352.4786603, + "ast_hash": "60dba5f117899308fb8140f0b0d30de7", + "semantic_hash": "60dba5f117899308fb8140f0b0d30de7" + }, + "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/relayResultCapsuleHandler.test.ts": { + "mtime": 1786206352.4786603, + "ast_hash": "f3f1e970ef65af2997be93ad90ea756b", + "semantic_hash": "f3f1e970ef65af2997be93ad90ea756b" + }, + "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/sealedRelayHostPollTrigger.test.ts": { + "mtime": 1786206352.4786603, + "ast_hash": "72f2ab430d61008e742b4ae9540a0791", + "semantic_hash": "72f2ab430d61008e742b4ae9540a0791" + }, + "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/__tests__/sealedServiceRpcRelayDispatch.test.ts": { + "mtime": 1786206352.4786603, + "ast_hash": "36f8d0d20416a06990e988ce06c12325", + "semantic_hash": "36f8d0d20416a06990e988ce06c12325" + }, + "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostAckStore.ts": { + "mtime": 1786206352.4786603, + "ast_hash": "8b1c87e7072c82dd11297eb864fc9002", + "semantic_hash": "8b1c87e7072c82dd11297eb864fc9002" + }, + "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostIngestionPollCompletion.ts": { + "mtime": 1786206352.4786603, + "ast_hash": "4c82eb084d41fe5933d7c3adef0bcbdd", + "semantic_hash": "4c82eb084d41fe5933d7c3adef0bcbdd" + }, + "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostPendingStore.ts": { + "mtime": 1786206352.4786603, + "ast_hash": "fcd21c4d07dbe97e6226f5114801a010", + "semantic_hash": "fcd21c4d07dbe97e6226f5114801a010" + }, + "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/hostTrigger.ts": { + "mtime": 1786206352.4786603, + "ast_hash": "33dc8ffd4cb9f7d3826f730461462243", + "semantic_hash": "33dc8ffd4cb9f7d3826f730461462243" + }, + "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/pollIdempotencyCache.ts": { + "mtime": 1786206352.4786603, + "ast_hash": "1c5a2b33f6e411499c644be56115218b", + "semantic_hash": "1c5a2b33f6e411499c644be56115218b" + }, + "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/receiver.ts": { + "mtime": 1786206352.4786603, + "ast_hash": "bd0ce1c5dfa20ecdfc598ee4cb9087cc", + "semantic_hash": "bd0ce1c5dfa20ecdfc598ee4cb9087cc" + }, + "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayCapsuleHandler.ts": { + "mtime": 1786206352.4786603, + "ast_hash": "263b1282e0951ebf25770a4da431c99b", + "semantic_hash": "263b1282e0951ebf25770a4da431c99b" + }, + "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relayResultCapsuleHandler.ts": { + "mtime": 1786206352.4786603, + "ast_hash": "25af559f81491106f66d3ca8b7937e17", + "semantic_hash": "25af559f81491106f66d3ca8b7937e17" + }, + "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/relaySend.ts": { + "mtime": 1786206352.4786603, + "ast_hash": "3aaf26895569dc618fc6c78bc94c7d3c", + "semantic_hash": "3aaf26895569dc618fc6c78bc94c7d3c" + }, + "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/sealedServiceRpcRelayDispatch.ts": { + "mtime": 1786206352.4786603, + "ast_hash": "c22df0bb78e2e35e4b17ede147c378f6", + "semantic_hash": "c22df0bb78e2e35e4b17ede147c378f6" + }, + "apps/electron-vite-project/electron/main/email/ingestionPollTrigger/wire.ts": { + "mtime": 1786206352.4786603, + "ast_hash": "95b897bb14517cc322bd3e34f32f1282", + "semantic_hash": "95b897bb14517cc322bd3e34f32f1282" + }, + "apps/electron-vite-project/electron/main/email/ingestionStatus.ts": { + "mtime": 1786206352.4786603, + "ast_hash": "f84e34cbd1e8a1e770901ab00742730c", + "semantic_hash": "f84e34cbd1e8a1e770901ab00742730c" + }, + "apps/electron-vite-project/electron/main/email/inlineParseGuard.ts": { + "mtime": 1786206352.4786603, + "ast_hash": "cc43f0226d27f0f395b389b3ba7ce533", + "semantic_hash": "cc43f0226d27f0f395b389b3ba7ce533" + }, + "apps/electron-vite-project/electron/main/email/ipc.ts": { + "mtime": 1786206352.4786603, + "ast_hash": "55a0b5ff8bc637465a44eb371647a1d4", + "semantic_hash": "55a0b5ff8bc637465a44eb371647a1d4" + }, + "apps/electron-vite-project/electron/main/email/ipcSyncResultShape.ts": { + "mtime": 1786206352.4786603, + "ast_hash": "8bd6be9a42df1f471383236bdc79cf3b", + "semantic_hash": "8bd6be9a42df1f471383236bdc79cf3b" + }, + "apps/electron-vite-project/electron/main/email/localInboxDeletion.ts": { + "mtime": 1786206352.4786603, + "ast_hash": "87d6e5472a8f8f4e098b4ff4706a3fcd", + "semantic_hash": "87d6e5472a8f8f4e098b4ff4706a3fcd" + }, + "apps/electron-vite-project/electron/main/email/mergeExtensionDepackaged.ts": { + "mtime": 1786206352.4786603, + "ast_hash": "32ce9341780f1cd9fd87df69c2c58d52", + "semantic_hash": "32ce9341780f1cd9fd87df69c2c58d52" + }, + "apps/electron-vite-project/electron/main/email/messageRouter.ts": { + "mtime": 1786206352.4786603, + "ast_hash": "fd1fec5e22a760e0bcfde2fd4d200b84", + "semantic_hash": "fd1fec5e22a760e0bcfde2fd4d200b84" + }, + "apps/electron-vite-project/electron/main/email/oauth-server.ts": { + "mtime": 1786206352.4786603, + "ast_hash": "c005f79bcb49cb91b6d9256d27be36c2", + "semantic_hash": "c005f79bcb49cb91b6d9256d27be36c2" + }, + "apps/electron-vite-project/electron/main/email/oauthScopes.ts": { + "mtime": 1786206352.4786603, + "ast_hash": "8769ed955d10b6d0e5452b33c88a96cb", + "semantic_hash": "8769ed955d10b6d0e5452b33c88a96cb" + }, + "apps/electron-vite-project/electron/main/email/opaqueIngestion.ts": { + "mtime": 1786206352.4786603, + "ast_hash": "570915fa76376e9aecbec2186c8c5b2f", + "semantic_hash": "570915fa76376e9aecbec2186c8c5b2f" + }, + "apps/electron-vite-project/electron/main/email/originMailboxDelete.ts": { + "mtime": 1786206352.4786603, + "ast_hash": "9552dc490f5d0773fe37e9f76e3a4be8", + "semantic_hash": "9552dc490f5d0773fe37e9f76e3a4be8" + }, + "apps/electron-vite-project/electron/main/email/originMailboxDeleteCapability.ts": { + "mtime": 1786206352.4786603, + "ast_hash": "7b9faeacc23a679c4765e69c933b2559", + "semantic_hash": "7b9faeacc23a679c4765e69c933b2559" + }, + "apps/electron-vite-project/electron/main/email/pdf-extractor.ts": { + "mtime": 1786206352.4786603, + "ast_hash": "b57fa8b9d3b4d2a254ae9f154932224b", + "semantic_hash": "b57fa8b9d3b4d2a254ae9f154932224b" + }, + "apps/electron-vite-project/electron/main/email/plainEmailConverter.ts": { + "mtime": 1786206352.4786603, + "ast_hash": "cf650b0e4925b0a2187b9290d104cdb2", + "semantic_hash": "cf650b0e4925b0a2187b9290d104cdb2" + }, + "apps/electron-vite-project/electron/main/email/providers/base.ts": { + "mtime": 1786206352.4786603, + "ast_hash": "2b23df462673b5f1ca3c3efd54aea783", + "semantic_hash": "2b23df462673b5f1ca3c3efd54aea783" + }, + "apps/electron-vite-project/electron/main/email/providers/gmail.ts": { + "mtime": 1786206352.4786603, + "ast_hash": "4a0f363eb5e2d28aea17e5d253f20d25", + "semantic_hash": "4a0f363eb5e2d28aea17e5d253f20d25" + }, + "apps/electron-vite-project/electron/main/email/providers/imap.ts": { + "mtime": 1786206352.4786603, + "ast_hash": "28b1400e6db4c4e9c73764cec5fef14d", + "semantic_hash": "28b1400e6db4c4e9c73764cec5fef14d" + }, + "apps/electron-vite-project/electron/main/email/providers/imapFetchReliable.ts": { + "mtime": 1786206352.4786603, + "ast_hash": "0b7ba1192e0bc327cb12b3f705f9c90a", + "semantic_hash": "0b7ba1192e0bc327cb12b3f705f9c90a" + }, + "apps/electron-vite-project/electron/main/email/providers/outlook.ts": { + "mtime": 1786206352.4826596, + "ast_hash": "08f67ad01ab660b6b584c353004a4670", + "semantic_hash": "08f67ad01ab660b6b584c353004a4670" + }, + "apps/electron-vite-project/electron/main/email/providers/zoho.ts": { + "mtime": 1786206352.4826596, + "ast_hash": "1060f319be7fcfdb2640bc4b0ddb8db3", + "semantic_hash": "1060f319be7fcfdb2640bc4b0ddb8db3" + }, + "apps/electron-vite-project/electron/main/email/remoteDeletion.ts": { + "mtime": 1786206352.4826596, + "ast_hash": "1fc16d31a00d3778b1c66348f31745cf", + "semantic_hash": "1fc16d31a00d3778b1c66348f31745cf" + }, + "apps/electron-vite-project/electron/main/email/resolveConnectOAuthScopeRole.ts": { + "mtime": 1786206352.4826596, + "ast_hash": "bd25471c0d9d0685f8aab14df73cb5d2", + "semantic_hash": "bd25471c0d9d0685f8aab14df73cb5d2" + }, + "apps/electron-vite-project/electron/main/email/roleAwareConsent.ts": { + "mtime": 1786206352.4826596, + "ast_hash": "fe32bbf15c83411e2c87e1158c859b76", + "semantic_hash": "fe32bbf15c83411e2c87e1158c859b76" + }, + "apps/electron-vite-project/electron/main/email/roleScopedTokenStore.ts": { + "mtime": 1786206352.4826596, + "ast_hash": "bfd8aeb6f8b84202319b48de33fc077e", + "semantic_hash": "bfd8aeb6f8b84202319b48de33fc077e" + }, + "apps/electron-vite-project/electron/main/email/sandboxCloneInboxFilter.ts": { + "mtime": 1786206352.4826596, + "ast_hash": "c3c469658015bbda6c3faba9652e94a9", + "semantic_hash": "c3c469658015bbda6c3faba9652e94a9" + }, + "apps/electron-vite-project/electron/main/email/sandboxEmailFetch.ts": { + "mtime": 1786206352.4826596, + "ast_hash": "30ce80b5d2c908104e23e09c0bc0ca91", + "semantic_hash": "30ce80b5d2c908104e23e09c0bc0ca91" + }, + "apps/electron-vite-project/electron/main/email/sandboxIngestion.ts": { + "mtime": 1786206352.4826596, + "ast_hash": "76530329dae217024da1d70e18ee3eec", + "semantic_hash": "76530329dae217024da1d70e18ee3eec" + }, + "apps/electron-vite-project/electron/main/email/sandboxIngestionProduction.ts": { + "mtime": 1786206352.4826596, + "ast_hash": "ab76ec4e6b623096dddf8c2b576fc3b6", + "semantic_hash": "ab76ec4e6b623096dddf8c2b576fc3b6" + }, + "apps/electron-vite-project/electron/main/email/sandboxOpaqueFetchRouter.ts": { + "mtime": 1786206352.4826596, + "ast_hash": "853771721ee776fbc2d1c91f63e5198d", + "semantic_hash": "853771721ee776fbc2d1c91f63e5198d" + }, + "apps/electron-vite-project/electron/main/email/sanitizer.ts": { + "mtime": 1786206352.4826596, + "ast_hash": "e730f8a0f9879a7533926946b32f0091", + "semantic_hash": "e730f8a0f9879a7533926946b32f0091" + }, + "apps/electron-vite-project/electron/main/email/scamWatchdog.ts": { + "mtime": 1786206352.4826596, + "ast_hash": "a129923ea43a7544ff1c68a9a92ac898", + "semantic_hash": "a129923ea43a7544ff1c68a9a92ac898" + }, + "apps/electron-vite-project/electron/main/email/sealedContentUpdate.ts": { + "mtime": 1786206352.4826596, + "ast_hash": "0169e8bef0aec8e1e192f3b4a121c09b", + "semantic_hash": "0169e8bef0aec8e1e192f3b4a121c09b" + }, + "apps/electron-vite-project/electron/main/email/secure-storage.ts": { + "mtime": 1786206352.4826596, + "ast_hash": "3f97d06acac0ac38b1d4d9da7220d1b1", + "semantic_hash": "3f97d06acac0ac38b1d4d9da7220d1b1" + }, + "apps/electron-vite-project/electron/main/email/syncOrchestrator.ts": { + "mtime": 1786206352.4826596, + "ast_hash": "b6a06ef7d586d4d915f71f8b9240b62a", + "semantic_hash": "b6a06ef7d586d4d915f71f8b9240b62a" + }, + "apps/electron-vite-project/electron/main/email/syncPullLock.ts": { + "mtime": 1786206352.4826596, + "ast_hash": "34ceabad3c8f5380e34f77aa5d4deb1d", + "semantic_hash": "34ceabad3c8f5380e34f77aa5d4deb1d" + }, + "apps/electron-vite-project/electron/main/email/types.ts": { + "mtime": 1786206352.4826596, + "ast_hash": "2cb02926a2831feae77202da1a80c127", + "semantic_hash": "2cb02926a2831feae77202da1a80c127" + }, + "apps/electron-vite-project/electron/main/enforcement/authorizeToolInvocation.ts": { + "mtime": 1786206352.4826596, + "ast_hash": "6fe8f3f01f1d2d9da9718eb11d797163", + "semantic_hash": "6fe8f3f01f1d2d9da9718eb11d797163" + }, + "apps/electron-vite-project/electron/main/execution/__tests__/executeToolRequest.test.ts": { + "mtime": 1786206352.4826596, + "ast_hash": "13b1549c158b35c7a2acce6727473bf0", + "semantic_hash": "13b1549c158b35c7a2acce6727473bf0" + }, + "apps/electron-vite-project/electron/main/execution/__tests__/noBypass.test.ts": { + "mtime": 1786206352.4826596, + "ast_hash": "a893e9a6a9ffb2896f7ec8bc3e762efe", + "semantic_hash": "a893e9a6a9ffb2896f7ec8bc3e762efe" + }, + "apps/electron-vite-project/electron/main/execution/executeToolRequest.ts": { + "mtime": 1786206352.4826596, + "ast_hash": "ea7745ab0ab4e6abdb04fa74de30f133", + "semantic_hash": "ea7745ab0ab4e6abdb04fa74de30f133" + }, + "apps/electron-vite-project/electron/main/execution/toolRegistry.ts": { + "mtime": 1786206352.4826596, + "ast_hash": "e971a54dc921725d0322111290b38e96", + "semantic_hash": "e971a54dc921725d0322111290b38e96" + }, + "apps/electron-vite-project/electron/main/execution/types.ts": { + "mtime": 1786206352.4826596, + "ast_hash": "4b78540d7716d174fd865dc7ccc134c1", + "semantic_hash": "4b78540d7716d174fd865dc7ccc134c1" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.internal.regression.test.ts": { + "mtime": 1786206352.4826596, + "ast_hash": "ef078bb5da295174497d47c14372bbd7", + "semantic_hash": "ef078bb5da295174497d47c14372bbd7" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/acceptX25519Binding.regression.test.ts": { + "mtime": 1786206352.4826596, + "ast_hash": "920e5247a2e2e184ae4923b5eaea07b2", + "semantic_hash": "920e5247a2e2e184ae4923b5eaea07b2" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/b81BeapInboxPagination.test.ts": { + "mtime": 1786206352.4826596, + "ast_hash": "7d5ab261b0648af84788b50623f1ea93", + "semantic_hash": "7d5ab261b0648af84788b50623f1ea93" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/b8BeapInboxIpc.test.ts": { + "mtime": 1786206352.4826596, + "ast_hash": "ee00cd74de52bb49bea2b761085c17b1", + "semantic_hash": "ee00cd74de52bb49bea2b761085c17b1" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/blockExtraction.customFields.test.ts": { + "mtime": 1786206352.4826596, + "ast_hash": "e941e08f9cc31d5434dd451e31d3b76e", + "semantic_hash": "e941e08f9cc31d5434dd451e31d3b76e" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/canonicalRebuild.test.ts": { + "mtime": 1786206352.4826596, + "ast_hash": "1a60d12df4d2b3cbf608537d62e8301d", + "semantic_hash": "1a60d12df4d2b3cbf608537d62e8301d" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/capsuleBuilder.internalRelay.test.ts": { + "mtime": 1786206352.4826596, + "ast_hash": "de0104cec7e4416570a7c0082ffa6e91", + "semantic_hash": "de0104cec7e4416570a7c0082ffa6e91" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/chainIntegrity.test.ts": { + "mtime": 1786206352.4826596, + "ast_hash": "b856899d78d19a118fe7c68004da34bd", + "semantic_hash": "b856899d78d19a118fe7c68004da34bd" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/cloudSnippet.test.ts": { + "mtime": 1786206352.4826596, + "ast_hash": "792d4e42140ff93f062fddd043e36667", + "semantic_hash": "792d4e42140ff93f062fddd043e36667" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/contextBlocks.test.ts": { + "mtime": 1786206352.4826596, + "ast_hash": "a5f7211e5e6ac8dcf5e3cf3fe9477dad", + "semantic_hash": "a5f7211e5e6ac8dcf5e3cf3fe9477dad" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/contextGovernance.test.ts": { + "mtime": 1786206352.4826596, + "ast_hash": "bce3838c96085f258fe3d7e2041a8e42", + "semantic_hash": "bce3838c96085f258fe3d7e2041a8e42" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/contextHash.test.ts": { + "mtime": 1786206352.4826596, + "ast_hash": "a356cb4aa27db8cd7864a5a8b450a6fe", + "semantic_hash": "a356cb4aa27db8cd7864a5a8b450a6fe" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/contextIngestion.test.ts": { + "mtime": 1786206352.4826596, + "ast_hash": "7d1a437cb1fb1eecad2ef92908cb5fcd", + "semantic_hash": "7d1a437cb1fb1eecad2ef92908cb5fcd" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/contextSyncEnqueue.uxShape.test.ts": { + "mtime": 1786206352.4826596, + "ast_hash": "7a157c178e29ab13fc65533a1052f315", + "semantic_hash": "7a157c178e29ab13fc65533a1052f315" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyKeyBinding.regression.test.ts": { + "mtime": 1786206352.4826596, + "ast_hash": "7f3f11c0bca15aa7c99195b2d2b15eb0", + "semantic_hash": "7f3f11c0bca15aa7c99195b2d2b15eb0" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/counterpartyRepair.test.ts": { + "mtime": 1786206352.4826596, + "ast_hash": "365b64bcfd14def988cd60fc28fe630d", + "semantic_hash": "365b64bcfd14def988cd60fc28fe630d" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.pipeline.test.ts": { + "mtime": 1786206352.4826596, + "ast_hash": "0fac3178309d0feb7abddf0c30d2ae23", + "semantic_hash": "0fac3178309d0feb7abddf0c30d2ae23" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/e2e.roundtrip.test.ts": { + "mtime": 1786206352.4826596, + "ast_hash": "3e6ceffda8df0b6def7be9e0ad80087d", + "semantic_hash": "3e6ceffda8df0b6def7be9e0ad80087d" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/emailTransport.test.ts": { + "mtime": 1786206352.486659, + "ast_hash": "2760391aa230c2a1c79803fe7fb4a817", + "semantic_hash": "2760391aa230c2a1c79803fe7fb4a817" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.remoteRevoke.test.ts": { + "mtime": 1786206352.486659, + "ast_hash": "569295063327b6d62069199110af8636", + "semantic_hash": "569295063327b6d62069199110af8636" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/enforcement.test.ts": { + "mtime": 1786206352.486659, + "ast_hash": "51939408cf8bc3623d67e7c89e384d31", + "semantic_hash": "51939408cf8bc3623d67e7c89e384d31" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/externalProcessing.test.ts": { + "mtime": 1786206352.486659, + "ast_hash": "06afc08cdb426d7b1d1ec3053af5147c", + "semantic_hash": "06afc08cdb426d7b1d1ec3053af5147c" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/handshake-e2e-hardened.test.ts": { + "mtime": 1786206352.486659, + "ast_hash": "ab3e2c8bb9375aa5683c715d9600ca1a", + "semantic_hash": "ab3e2c8bb9375aa5683c715d9600ca1a" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/handshakeAccountIsolation.test.ts": { + "mtime": 1786206352.486659, + "ast_hash": "8010e869457f8c182d80c9ada4c27845", + "semantic_hash": "8010e869457f8c182d80c9ada4c27845" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/handshakeCrossSurface.regression.todo.test.ts": { + "mtime": 1786206352.486659, + "ast_hash": "70f52a738d0ddeac4cde719fe2ea8e75", + "semantic_hash": "70f52a738d0ddeac4cde719fe2ea8e75" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/handshakeRefactorRegression.matrix.test.ts": { + "mtime": 1786206352.486659, + "ast_hash": "fe33b7be2bcaf89e6b8b37e3255ee4dd", + "semantic_hash": "fe33b7be2bcaf89e6b8b37e3255ee4dd" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/handshakeTestDb.ts": { + "mtime": 1786206352.486659, + "ast_hash": "f1f9eaf21e0093ad50b6fab89aaff9fb", + "semantic_hash": "f1f9eaf21e0093ad50b6fab89aaff9fb" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/handshakeVerification.test.ts": { + "mtime": 1786206352.486659, + "ast_hash": "c0557e5ab14036422c9d7f0edfc4b1fe", + "semantic_hash": "c0557e5ab14036422c9d7f0edfc4b1fe" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/hardening-verification.test.ts": { + "mtime": 1786206352.486659, + "ast_hash": "757828acae37f962b840d6e5d66d5751", + "semantic_hash": "757828acae37f962b840d6e5d66d5751" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/helpers.ts": { + "mtime": 1786206352.486659, + "ast_hash": "470962c5bfa3efb02fd10208baf7c525", + "semantic_hash": "470962c5bfa3efb02fd10208baf7c525" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/intentClassifier.test.ts": { + "mtime": 1786206352.486659, + "ast_hash": "c195b2d52918be13aa71827cc5d5f4d9", + "semantic_hash": "c195b2d52918be13aa71827cc5d5f4d9" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/internalCoordinationWire.test.ts": { + "mtime": 1786206352.486659, + "ast_hash": "e6da1812c4cc1462e393f621749db88f", + "semantic_hash": "e6da1812c4cc1462e393f621749db88f" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/internalDeviceIdentity.flow.test.ts": { + "mtime": 1786206352.486659, + "ast_hash": "9ba2a86da0291d99900957fba8085a8e", + "semantic_hash": "9ba2a86da0291d99900957fba8085a8e" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/internalPersistence.test.ts": { + "mtime": 1786206352.486659, + "ast_hash": "e063bced4efc6756c20fbf2dd9daabad", + "semantic_hash": "e063bced4efc6756c20fbf2dd9daabad" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/internalRelayOutboundGuards.test.ts": { + "mtime": 1786206352.486659, + "ast_hash": "be924828b179fb15e733ebe64a14e84c", + "semantic_hash": "be924828b179fb15e733ebe64a14e84c" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/internalSamePrincipal.contextSync.regression.test.ts": { + "mtime": 1786206352.486659, + "ast_hash": "ed608ce066c6b0c3128dc5fc079f42b5", + "semantic_hash": "ed608ce066c6b0c3128dc5fc079f42b5" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.handshake.test.ts": { + "mtime": 1786206352.486659, + "ast_hash": "211e89ff72a3c7325fd049b1fdfa3089", + "semantic_hash": "211e89ff72a3c7325fd049b1fdfa3089" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.accept.validation.test.ts": { + "mtime": 1786206352.486659, + "ast_hash": "c2592ce69a3f24808c0e80119cd4a41f", + "semantic_hash": "c2592ce69a3f24808c0e80119cd4a41f" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.deviceId.test.ts": { + "mtime": 1786206352.486659, + "ast_hash": "02fb976d3bfa0def1c90a5d26bb4954b", + "semantic_hash": "02fb976d3bfa0def1c90a5d26bb4954b" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.internal.relayPush.test.ts": { + "mtime": 1786206352.486659, + "ast_hash": "e87a880d9f534fe4e8f44f4c5b8c5d3b", + "semantic_hash": "e87a880d9f534fe4e8f44f4c5b8c5d3b" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/ipc.sandboxBeapSend.test.ts": { + "mtime": 1786206352.486659, + "ast_hash": "448fdda8495ff0aea0d45a97126edb5d", + "semantic_hash": "448fdda8495ff0aea0d45a97126edb5d" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/mockKeypair.ts": { + "mtime": 1786206352.486659, + "ast_hash": "7f53690dd3eb3db2961158d9ae8267de", + "semantic_hash": "7f53690dd3eb3db2961158d9ae8267de" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.backoff.test.ts": { + "mtime": 1786206352.486659, + "ast_hash": "955fd69bdea7d19ce8b1e6d8e3b4789d", + "semantic_hash": "955fd69bdea7d19ce8b1e6d8e3b4789d" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/outboundQueue.sandboxEgress.test.ts": { + "mtime": 1786206352.486659, + "ast_hash": "3deb2ab91a1b52caa7b11eae961a8586", + "semantic_hash": "3deb2ab91a1b52caa7b11eae961a8586" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/p2pTransport.coordination.test.ts": { + "mtime": 1786206352.486659, + "ast_hash": "2e296fca320cd179ece721215d357d5a", + "semantic_hash": "2e296fca320cd179ece721215d357d5a" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/p2pTransport.diagnostics.test.ts": { + "mtime": 1786206352.486659, + "ast_hash": "3dfa190600d73a4ba39754b4960cbdcd", + "semantic_hash": "3dfa190600d73a4ba39754b4960cbdcd" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/pairingActivation.rig.test.ts": { + "mtime": 1786206352.486659, + "ast_hash": "a54ab1b334752788a93be9ac795716a3", + "semantic_hash": "a54ab1b334752788a93be9ac795716a3" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/pairingCodeRelayGap.rig.test.ts": { + "mtime": 1786206352.486659, + "ast_hash": "5720fef64c692f6cbc4d21875046ae2e", + "semantic_hash": "5720fef64c692f6cbc4d21875046ae2e" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/parseDirectIngestHttpAck.test.ts": { + "mtime": 1786206352.486659, + "ast_hash": "074ba3bdda6b2da0bee9288469d96228", + "semantic_hash": "074ba3bdda6b2da0bee9288469d96228" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/pipeline.test.ts": { + "mtime": 1786206352.486659, + "ast_hash": "12ffbd2250765860f7d4e48278e45b1f", + "semantic_hash": "12ffbd2250765860f7d4e48278e45b1f" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/policyResolution.test.ts": { + "mtime": 1786206352.486659, + "ast_hash": "87f23f5df40813f9547e5e25ca2bb853", + "semantic_hash": "87f23f5df40813f9547e5e25ca2bb853" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/postAcceptContextSync.ingestPaths.regression.test.ts": { + "mtime": 1786206352.486659, + "ast_hash": "aec8e75e057dddf39818581f2cbdc332", + "semantic_hash": "aec8e75e057dddf39818581f2cbdc332" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/qbeapTransports.rig.test.ts": { + "mtime": 1786206352.486659, + "ast_hash": "15fa02a2ea444919c2c42dade0052cf5", + "semantic_hash": "15fa02a2ea444919c2c42dade0052cf5" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/regressionMatrix.relayHandshakeSandbox.test.ts": { + "mtime": 1786206352.486659, + "ast_hash": "0c419c175dddc33a097f26e8e50bbbbf", + "semantic_hash": "0c419c175dddc33a097f26e8e50bbbbf" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/relayAllowlistSealedServiceRpc.test.ts": { + "mtime": 1786206352.486659, + "ast_hash": "c6c5180179f93f59e05e28c98a45ca3d", + "semantic_hash": "c6c5180179f93f59e05e28c98a45ca3d" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/relayFailureMode.rig.test.ts": { + "mtime": 1786206352.486659, + "ast_hash": "942f55bea30fccb0c6ffe61b1ace171c", + "semantic_hash": "942f55bea30fccb0c6ffe61b1ace171c" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/relayOutboundClassification.test.ts": { + "mtime": 1786206352.486659, + "ast_hash": "1318a6316dd247ead71a1abb93d99a50", + "semantic_hash": "1318a6316dd247ead71a1abb93d99a50" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/relayQueueTransportOutcome.test.ts": { + "mtime": 1786206352.486659, + "ast_hash": "3859b1dfaede8c59a18e97b938670a7a", + "semantic_hash": "3859b1dfaede8c59a18e97b938670a7a" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/resilience.chaos.test.ts": { + "mtime": 1786206352.486659, + "ast_hash": "8d00f902f56d75df7a6db65da3e83724", + "semantic_hash": "8d00f902f56d75df7a6db65da3e83724" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/revocation.test.ts": { + "mtime": 1786206352.486659, + "ast_hash": "216329165e49cdb1fecb83d6f9f28d5d", + "semantic_hash": "216329165e49cdb1fecb83d6f9f28d5d" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/revoke.outboundSeq.regression.test.ts": { + "mtime": 1786206352.486659, + "ast_hash": "b03518a2ee2bbb19bf403710740ca3d3", + "semantic_hash": "b03518a2ee2bbb19bf403710740ca3d3" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/revokeRepair.rig.test.ts": { + "mtime": 1786206352.486659, + "ast_hash": "07a1aa9240e6cda3d482decfdb01b5d7", + "semantic_hash": "07a1aa9240e6cda3d482decfdb01b5d7" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/rig/coordinationRelayHarness.ts": { + "mtime": 1786206352.486659, + "ast_hash": "8a4b8bb204a16427fad5a94f9c533e60", + "semantic_hash": "8a4b8bb204a16427fad5a94f9c533e60" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/rig/pairingFlow.ts": { + "mtime": 1786206352.486659, + "ast_hash": "1ad61a7c990169c2648b4290e3cc1829", + "semantic_hash": "1ad61a7c990169c2648b4290e3cc1829" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/sandboxTopologyKind.test.ts": { + "mtime": 1786206352.486659, + "ast_hash": "6369536ab6f85410db542321b0c3ec48", + "semantic_hash": "6369536ab6f85410db542321b0c3ec48" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/semanticSearch.embedFailure.fallback.regression.test.ts": { + "mtime": 1786206352.486659, + "ast_hash": "b821996f5b9bf6ede44b7388ef6c8afc", + "semantic_hash": "b821996f5b9bf6ede44b7388ef6c8afc" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/sharingMode.test.ts": { + "mtime": 1786206352.486659, + "ast_hash": "de7cb1d13b6a8fd4192da44dd4e68be2", + "semantic_hash": "de7cb1d13b6a8fd4192da44dd4e68be2" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/signatureKeys.test.ts": { + "mtime": 1786206352.486659, + "ast_hash": "15225cad4293b9b644dd446e706267d1", + "semantic_hash": "15225cad4293b9b644dd446e706267d1" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/stateMachine.test.ts": { + "mtime": 1786206352.486659, + "ast_hash": "9e9612ff9a880137acd6569e005bb75f", + "semantic_hash": "9e9612ff9a880137acd6569e005bb75f" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/structuredQuery.test.ts": { + "mtime": 1786206352.486659, + "ast_hash": "25f9a22d4c0eb76c61a07f3100f23cf9", + "semantic_hash": "25f9a22d4c0eb76c61a07f3100f23cf9" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/tierClassification.test.ts": { + "mtime": 1786206352.486659, + "ast_hash": "df3a8ee310db19c27d84fefe3fc0d6d0", + "semantic_hash": "df3a8ee310db19c27d84fefe3fc0d6d0" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/topologyAutoWire.delegationCallback.test.ts": { + "mtime": 1786206352.486659, + "ast_hash": "dcce83eabe6dd0ceb5cafc0fed6eb6a7", + "semantic_hash": "dcce83eabe6dd0ceb5cafc0fed6eb6a7" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/topologyAutoWire.test.ts": { + "mtime": 1786206352.486659, + "ast_hash": "0d95b1803a033be98288590684c6689d", + "semantic_hash": "0d95b1803a033be98288590684c6689d" + }, + "apps/electron-vite-project/electron/main/handshake/__tests__/vaultGating.test.ts": { + "mtime": 1786206352.486659, + "ast_hash": "6e517498995c6d0834a9e544dd0aa776", + "semantic_hash": "6e517498995c6d0834a9e544dd0aa776" + }, + "apps/electron-vite-project/electron/main/handshake/activeHandshakeHealth.ts": { + "mtime": 1786206352.486659, + "ast_hash": "ff3694dc5d0188c82b3e6d96873b8cc7", + "semantic_hash": "ff3694dc5d0188c82b3e6d96873b8cc7" + }, + "apps/electron-vite-project/electron/main/handshake/aiProviders.ts": { + "mtime": 1786206352.4906583, + "ast_hash": "f1d359bb89b4d4577ea7e1ef92d82aa9", + "semantic_hash": "f1d359bb89b4d4577ea7e1ef92d82aa9" + }, + "apps/electron-vite-project/electron/main/handshake/auditLog.ts": { + "mtime": 1786206352.4906583, + "ast_hash": "6074ee737fc35a7063aedae6bbe98b8e", + "semantic_hash": "6074ee737fc35a7063aedae6bbe98b8e" + }, + "apps/electron-vite-project/electron/main/handshake/blockExtraction.ts": { + "mtime": 1786206352.4906583, + "ast_hash": "9279a9a7da0eaada3bb4c434f9476441", + "semantic_hash": "9279a9a7da0eaada3bb4c434f9476441" + }, + "apps/electron-vite-project/electron/main/handshake/blockRetrieval.ts": { + "mtime": 1786206352.4906583, + "ast_hash": "e533f8ff026be1637abbabe39a85b57d", + "semantic_hash": "e533f8ff026be1637abbabe39a85b57d" + }, + "apps/electron-vite-project/electron/main/handshake/canonicalRebuild.ts": { + "mtime": 1786206352.4906583, + "ast_hash": "e4b040193e8b73104d8a94fa986cee86", + "semantic_hash": "e4b040193e8b73104d8a94fa986cee86" + }, + "apps/electron-vite-project/electron/main/handshake/capsuleBlockIndexer.ts": { + "mtime": 1786206352.4906583, + "ast_hash": "b965b8a10dfbe661b80af6de682c936f", + "semantic_hash": "b965b8a10dfbe661b80af6de682c936f" + }, + "apps/electron-vite-project/electron/main/handshake/capsuleBuilder.ts": { + "mtime": 1786206352.4906583, + "ast_hash": "53a86a7b9200519a46620e47d737dcc6", + "semantic_hash": "53a86a7b9200519a46620e47d737dcc6" + }, + "apps/electron-vite-project/electron/main/handshake/capsuleHash.ts": { + "mtime": 1786206352.1187153, + "ast_hash": "d9d57ce8fb5fde738a56633e12f2c251", + "semantic_hash": "d9d57ce8fb5fde738a56633e12f2c251" + }, + "apps/electron-vite-project/electron/main/handshake/capsuleTransport.ts": { + "mtime": 1786206352.1187153, + "ast_hash": "ef9fe6e228402b3997fe69399d4e384b", + "semantic_hash": "ef9fe6e228402b3997fe69399d4e384b" + }, + "apps/electron-vite-project/electron/main/handshake/cloudSnippet.ts": { + "mtime": 1786206352.1187153, + "ast_hash": "41389a982c4a77d11b789b909dea45f6", + "semantic_hash": "41389a982c4a77d11b789b909dea45f6" + }, + "apps/electron-vite-project/electron/main/handshake/contextBlocks.ts": { + "mtime": 1786206352.1187153, + "ast_hash": "fccf5cbc5bd350ce94ec4e364e4376e5", + "semantic_hash": "fccf5cbc5bd350ce94ec4e364e4376e5" + }, + "apps/electron-vite-project/electron/main/handshake/contextCommitment.ts": { + "mtime": 1786206352.1187153, + "ast_hash": "833d5003e32a2922554bf7b34e375b6c", + "semantic_hash": "833d5003e32a2922554bf7b34e375b6c" + }, + "apps/electron-vite-project/electron/main/handshake/contextGovernance.ts": { + "mtime": 1786206352.1187153, + "ast_hash": "a4380b0e8bfbdd9e987ea054d80c64f6", + "semantic_hash": "a4380b0e8bfbdd9e987ea054d80c64f6" + }, + "apps/electron-vite-project/electron/main/handshake/contextHash.ts": { + "mtime": 1786206352.1187153, + "ast_hash": "ad9bb5608dbd67afa77c101f3fa2fb48", + "semantic_hash": "ad9bb5608dbd67afa77c101f3fa2fb48" + }, + "apps/electron-vite-project/electron/main/handshake/contextIngestion.ts": { + "mtime": 1786206352.1187153, + "ast_hash": "15e84d56ba95c10e8a123310449cc9c8", + "semantic_hash": "15e84d56ba95c10e8a123310449cc9c8" + }, + "apps/electron-vite-project/electron/main/handshake/contextRetrievalTypes.ts": { + "mtime": 1786206352.1187153, + "ast_hash": "06e45cb86d9547e9ee2fa908e6dfd874", + "semantic_hash": "06e45cb86d9547e9ee2fa908e6dfd874" + }, + "apps/electron-vite-project/electron/main/handshake/contextSyncActiveGate.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "06e2de2626967bd8201ac1fe469eec60", + "semantic_hash": "06e2de2626967bd8201ac1fe469eec60" + }, + "apps/electron-vite-project/electron/main/handshake/contextSyncEnqueue.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "3d0fb7fea5944df659181dcfc764e4c4", + "semantic_hash": "3d0fb7fea5944df659181dcfc764e4c4" + }, + "apps/electron-vite-project/electron/main/handshake/contextSyncSeal.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "1d3d458a6f066d8160472529d0418f7d", + "semantic_hash": "1d3d458a6f066d8160472529d0418f7d" + }, + "apps/electron-vite-project/electron/main/handshake/counterpartyRepair.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "1b3ed352983c5fe37ee01001a273143e", + "semantic_hash": "1b3ed352983c5fe37ee01001a273143e" + }, + "apps/electron-vite-project/electron/main/handshake/db.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "cc0f7ac281d3c69a3e155e73d93b3899", + "semantic_hash": "cc0f7ac281d3c69a3e155e73d93b3899" + }, + "apps/electron-vite-project/electron/main/handshake/emailTransport.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "d952fcc9540ea00b7c9b2f95914fc325", + "semantic_hash": "d952fcc9540ea00b7c9b2f95914fc325" + }, + "apps/electron-vite-project/electron/main/handshake/embeddings.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "7b967d2a20578f3dc89b13aa8940946d", + "semantic_hash": "7b967d2a20578f3dc89b13aa8940946d" + }, + "apps/electron-vite-project/electron/main/handshake/enforcement.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "5b74406fc1c557967ebcff3d20c1b806", + "semantic_hash": "5b74406fc1c557967ebcff3d20c1b806" + }, + "apps/electron-vite-project/electron/main/handshake/handshakeAccountIsolation.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "c297994f7316e728b13886b0a31708ca", + "semantic_hash": "c297994f7316e728b13886b0a31708ca" + }, + "apps/electron-vite-project/electron/main/handshake/handshakeConfidentiality.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "9ff12734c4c68fd50048c0587d94a505", + "semantic_hash": "9ff12734c4c68fd50048c0587d94a505" + }, + "apps/electron-vite-project/electron/main/handshake/handshakeHealthRemoteCheck.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "9d20db80a6c1751a1908b5fbd9eab531", + "semantic_hash": "9d20db80a6c1751a1908b5fbd9eab531" + }, + "apps/electron-vite-project/electron/main/handshake/handshakeHealthStartupLog.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "9e8cbf5da7eb4b82524552065a8584f5", + "semantic_hash": "9e8cbf5da7eb4b82524552065a8584f5" + }, + "apps/electron-vite-project/electron/main/handshake/handshakeVerification.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "ec6eeb9b2c98311bdf63a10db1c4c254", + "semantic_hash": "ec6eeb9b2c98311bdf63a10db1c4c254" + }, + "apps/electron-vite-project/electron/main/handshake/hybridSearch.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "492dec86f4797bb4b223163bd28d7922", + "semantic_hash": "492dec86f4797bb4b223163bd28d7922" + }, + "apps/electron-vite-project/electron/main/handshake/index.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "993b326a825affe90f528d4fa08693a3", + "semantic_hash": "993b326a825affe90f528d4fa08693a3" + }, + "apps/electron-vite-project/electron/main/handshake/initiatorPersist.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "dfc41c919cd540d30ab0a5f9ab1b8f77", + "semantic_hash": "dfc41c919cd540d30ab0a5f9ab1b8f77" + }, + "apps/electron-vite-project/electron/main/handshake/intentClassifier.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "bc820e65049b2cb4ae5098f384e5bf6c", + "semantic_hash": "bc820e65049b2cb4ae5098f384e5bf6c" + }, + "apps/electron-vite-project/electron/main/handshake/intentExecution.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "169747a8ce60d119f55974d5de460c8c", + "semantic_hash": "169747a8ce60d119f55974d5de460c8c" + }, + "apps/electron-vite-project/electron/main/handshake/intentRouter.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "b1d3405583a253dea248d4449e4d5b19", + "semantic_hash": "b1d3405583a253dea248d4449e4d5b19" + }, + "apps/electron-vite-project/electron/main/handshake/internalCoordinationWire.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "78f7ca0efa0fcd1009598f616c25c37f", + "semantic_hash": "78f7ca0efa0fcd1009598f616c25c37f" + }, + "apps/electron-vite-project/electron/main/handshake/internalPersistence.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "5c4018a71a60df195fa05ad52859a8d7", + "semantic_hash": "5c4018a71a60df195fa05ad52859a8d7" + }, + "apps/electron-vite-project/electron/main/handshake/internalRelayOutboundGuards.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "3aa3ec62b6389b96c40c09ba16941e6e", + "semantic_hash": "3aa3ec62b6389b96c40c09ba16941e6e" + }, + "apps/electron-vite-project/electron/main/handshake/internalSandboxesApi.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "9b25f42f53331ec9f3ec40d0742e96d7", + "semantic_hash": "9b25f42f53331ec9f3ec40d0742e96d7" + }, + "apps/electron-vite-project/electron/main/handshake/ipc.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "dbb602f0a5a62b260639fa11908a3216", + "semantic_hash": "dbb602f0a5a62b260639fa11908a3216" + }, + "apps/electron-vite-project/electron/main/handshake/keyBindingDebug.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "e0660224618002ffa8864ce7496b7ed8", + "semantic_hash": "e0660224618002ffa8864ce7496b7ed8" + }, + "apps/electron-vite-project/electron/main/handshake/keywordSearch.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "d64dcf2bfaf70abeaa9b79a65ae74d3c", + "semantic_hash": "d64dcf2bfaf70abeaa9b79a65ae74d3c" + }, + "apps/electron-vite-project/electron/main/handshake/latencyInstrumentation.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "cf59d178ff29ac00862a221b207f12ab", + "semantic_hash": "cf59d178ff29ac00862a221b207f12ab" + }, + "apps/electron-vite-project/electron/main/handshake/ledger.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "b6c31e8f688cb03e337d0df097ed9612", + "semantic_hash": "b6c31e8f688cb03e337d0df097ed9612" + }, + "apps/electron-vite-project/electron/main/handshake/llmStream.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "75d42c5831224ab2b54269c1849beee7", + "semantic_hash": "75d42c5831224ab2b54269c1849beee7" + }, + "apps/electron-vite-project/electron/main/handshake/outboundQueue.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "becaccc8c4569d9f5938406a89d86cee", + "semantic_hash": "becaccc8c4569d9f5938406a89d86cee" + }, + "apps/electron-vite-project/electron/main/handshake/p2pTokenBackfill.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "63a004fbd7aa0942dd44907748c099af", + "semantic_hash": "63a004fbd7aa0942dd44907748c099af" + }, + "apps/electron-vite-project/electron/main/handshake/p2pTransport.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "275482cf524a8c1f89ae7dd87fb7078e", + "semantic_hash": "275482cf524a8c1f89ae7dd87fb7078e" + }, + "apps/electron-vite-project/electron/main/handshake/pipeline.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "788d8fce730c3783694b92c87e69984a", + "semantic_hash": "788d8fce730c3783694b92c87e69984a" + }, + "apps/electron-vite-project/electron/main/handshake/policyHash.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "d73bb5db8b3e77868013c6dc73072c9c", + "semantic_hash": "d73bb5db8b3e77868013c6dc73072c9c" + }, + "apps/electron-vite-project/electron/main/handshake/queryCache.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "672c8674272237b51b251825e3528351", + "semantic_hash": "672c8674272237b51b251825e3528351" + }, + "apps/electron-vite-project/electron/main/handshake/recipientPersist.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "39aecb6569230260a46540b967071411", + "semantic_hash": "39aecb6569230260a46540b967071411" + }, + "apps/electron-vite-project/electron/main/handshake/relationshipId.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "d188e4a16d8b476c5104fe77c0e96797", + "semantic_hash": "d188e4a16d8b476c5104fe77c0e96797" + }, + "apps/electron-vite-project/electron/main/handshake/relayOutboundClassification.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "4afe214576c7f832bc76e6ef58a5d901", + "semantic_hash": "4afe214576c7f832bc76e6ef58a5d901" + }, + "apps/electron-vite-project/electron/main/handshake/relayQueueTransportOutcome.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "581d7c4356214cefc2849d93ba3b83f9", + "semantic_hash": "581d7c4356214cefc2849d93ba3b83f9" + }, + "apps/electron-vite-project/electron/main/handshake/remoteRevokeCallbackRegistry.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "8e3e28ee7f0677f9ab5ae068a79665ba", + "semantic_hash": "8e3e28ee7f0677f9ab5ae068a79665ba" + }, + "apps/electron-vite-project/electron/main/handshake/resolvePairingCode.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "0cb99b4f75a79e5b9d93e233382ba9f8", + "semantic_hash": "0cb99b4f75a79e5b9d93e233382ba9f8" + }, + "apps/electron-vite-project/electron/main/handshake/retentionJob.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "4ede86902ffcaac2a1ae8de57e0d18bd", + "semantic_hash": "4ede86902ffcaac2a1ae8de57e0d18bd" + }, + "apps/electron-vite-project/electron/main/handshake/revocation.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "a14875968b9fe00f7c37dad40746c81e", + "semantic_hash": "a14875968b9fe00f7c37dad40746c81e" + }, + "apps/electron-vite-project/electron/main/handshake/sandboxTopologyKind.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "536894ff3bd269ae4657aca0e87b718a", + "semantic_hash": "536894ff3bd269ae4657aca0e87b718a" + }, + "apps/electron-vite-project/electron/main/handshake/sanitize.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "364f3051b6c5f6f5de67911412a7c066", + "semantic_hash": "364f3051b6c5f6f5de67911412a7c066" + }, + "apps/electron-vite-project/electron/main/handshake/sessionFactory.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "58f62ae8a7450fdcca7d652847ab477d", + "semantic_hash": "58f62ae8a7450fdcca7d652847ab477d" + }, + "apps/electron-vite-project/electron/main/handshake/signatureKeys.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "37d16197c90d86f7ac8babb40fe380a6", + "semantic_hash": "37d16197c90d86f7ac8babb40fe380a6" + }, + "apps/electron-vite-project/electron/main/handshake/steps/chainIntegrity.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "d407b77f243e50f3b8cac3d8c90784b8", + "semantic_hash": "d407b77f243e50f3b8cac3d8c90784b8" + }, + "apps/electron-vite-project/electron/main/handshake/steps/contextBinding.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "64cba5b1ad59d731cbe0d53549df73f8", + "semantic_hash": "64cba5b1ad59d731cbe0d53549df73f8" + }, + "apps/electron-vite-project/electron/main/handshake/steps/contextVersions.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "a4f54c841a5ab91e6b77dba3554f3cc9", + "semantic_hash": "a4f54c841a5ab91e6b77dba3554f3cc9" + }, + "apps/electron-vite-project/electron/main/handshake/steps/dedup.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "d7181d268f0b98b90591f1f9b12d144c", + "semantic_hash": "d7181d268f0b98b90591f1f9b12d144c" + }, + "apps/electron-vite-project/electron/main/handshake/steps/domain.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "091a8a3558b11247f845d61ca2dfa2dd", + "semantic_hash": "091a8a3558b11247f845d61ca2dfa2dd" + }, + "apps/electron-vite-project/electron/main/handshake/steps/expiry.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "d5a4746b67493d545f0291977013f9f7", + "semantic_hash": "d5a4746b67493d545f0291977013f9f7" + }, + "apps/electron-vite-project/electron/main/handshake/steps/externalProcessing.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "ef6c4243317a11f1c7bc657d73b27d45", + "semantic_hash": "ef6c4243317a11f1c7bc657d73b27d45" + }, + "apps/electron-vite-project/electron/main/handshake/steps/index.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "3c8e6a5ce54ef00bd723db5ae7bcd138", + "semantic_hash": "3c8e6a5ce54ef00bd723db5ae7bcd138" + }, + "apps/electron-vite-project/electron/main/handshake/steps/inputLimits.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "40ad046c59b02aa5b59598b527434994", + "semantic_hash": "40ad046c59b02aa5b59598b527434994" + }, + "apps/electron-vite-project/electron/main/handshake/steps/internalRoutingCapsule.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "256e7bd1ea50f782a35ab1a05a8f3fc2", + "semantic_hash": "256e7bd1ea50f782a35ab1a05a8f3fc2" + }, + "apps/electron-vite-project/electron/main/handshake/steps/ownership.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "61ce8272afdc722192e3decb5670af32", + "semantic_hash": "61ce8272afdc722192e3decb5670af32" + }, + "apps/electron-vite-project/electron/main/handshake/steps/policyAnchor.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "05ef04fe093c8bb2cd4155a104fcb38e", + "semantic_hash": "05ef04fe093c8bb2cd4155a104fcb38e" + }, + "apps/electron-vite-project/electron/main/handshake/steps/policyResolution.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "71e8adb2b6a124b806f9e9398b83157f", + "semantic_hash": "71e8adb2b6a124b806f9e9398b83157f" + }, + "apps/electron-vite-project/electron/main/handshake/steps/receiverBinding.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "eb8bb09ccb5e2ac2d3fa31493d74b025", + "semantic_hash": "eb8bb09ccb5e2ac2d3fa31493d74b025" + }, + "apps/electron-vite-project/electron/main/handshake/steps/schemaCheck.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "c3c4682cb2b3285759e2e00522486848", + "semantic_hash": "c3c4682cb2b3285759e2e00522486848" + }, + "apps/electron-vite-project/electron/main/handshake/steps/scopePurpose.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "3c7a9d76f63eb2b6766b3049cc2b1317", + "semantic_hash": "3c7a9d76f63eb2b6766b3049cc2b1317" + }, + "apps/electron-vite-project/electron/main/handshake/steps/sharingMode.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "da83a5d0361d2700524f082b87989e67", + "semantic_hash": "da83a5d0361d2700524f082b87989e67" + }, + "apps/electron-vite-project/electron/main/handshake/steps/stateTransition.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "79e91440e338b4e211c16bab1c66cf95", + "semantic_hash": "79e91440e338b4e211c16bab1c66cf95" + }, + "apps/electron-vite-project/electron/main/handshake/steps/tierSteps.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "80c87cfe32d4d5250260476c93450bff", + "semantic_hash": "80c87cfe32d4d5250260476c93450bff" + }, + "apps/electron-vite-project/electron/main/handshake/steps/timestamp.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "c709175120a7a02f3c7cc5a73d44c25c", + "semantic_hash": "c709175120a7a02f3c7cc5a73d44c25c" + }, + "apps/electron-vite-project/electron/main/handshake/steps/verifyCapsuleHash.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "f34f35a008b5cd34dd6352cc45e9d202", + "semantic_hash": "f34f35a008b5cd34dd6352cc45e9d202" + }, + "apps/electron-vite-project/electron/main/handshake/steps/verifyContextHash.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "5c0c8ff6ade82ec7737f43320d304414", + "semantic_hash": "5c0c8ff6ade82ec7737f43320d304414" + }, + "apps/electron-vite-project/electron/main/handshake/structuredQuery.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "8b14aa1528c8bbcac39801c31165061a", + "semantic_hash": "8b14aa1528c8bbcac39801c31165061a" + }, + "apps/electron-vite-project/electron/main/handshake/tierClassification.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "b1d9ed96ea4d14c7ec419a46b55b59d9", + "semantic_hash": "b1d9ed96ea4d14c7ec419a46b55b59d9" + }, + "apps/electron-vite-project/electron/main/handshake/topologyAutoWire.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "46cbf4f6325200e4a45f29ce3356cb16", + "semantic_hash": "46cbf4f6325200e4a45f29ce3356cb16" + }, + "apps/electron-vite-project/electron/main/handshake/types.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "ccecb02f1787441b6ddbace9c8f21146", + "semantic_hash": "ccecb02f1787441b6ddbace9c8f21146" + }, + "apps/electron-vite-project/electron/main/handshake/vaultGating.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "9798d27dbbef3280bd9b647d5630fe5e", + "semantic_hash": "9798d27dbbef3280bd9b647d5630fe5e" + }, + "apps/electron-vite-project/electron/main/handshake/visibilityFilter.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "cc634f03d5c37e823d030e9723c2d2da", + "semantic_hash": "cc634f03d5c37e823d030e9723c2d2da" + }, + "apps/electron-vite-project/electron/main/inference/__tests__/gpuStatus.test.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "e8f58f9fe3c4770bb2b9bc82284ba518", + "semantic_hash": "e8f58f9fe3c4770bb2b9bc82284ba518" + }, + "apps/electron-vite-project/electron/main/inference/__tests__/inferenceCapabilityResolver.test.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "cdb41e743b70bf7329f5b8c5e58caa23", + "semantic_hash": "cdb41e743b70bf7329f5b8c5e58caa23" + }, + "apps/electron-vite-project/electron/main/inference/__tests__/inferenceGate.test.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "cfc843b4be782eb3f1eaa74663949b2e", + "semantic_hash": "cfc843b4be782eb3f1eaa74663949b2e" + }, + "apps/electron-vite-project/electron/main/inference/gpuStatus.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "f23e2d0e4aed917c11a19bfe54d6a9d4", + "semantic_hash": "f23e2d0e4aed917c11a19bfe54d6a9d4" + }, + "apps/electron-vite-project/electron/main/inference/inferenceCapabilityResolver.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "b5b77d98f5892914e4aa4b7d9d991ba8", + "semantic_hash": "b5b77d98f5892914e4aa4b7d9d991ba8" + }, + "apps/electron-vite-project/electron/main/inference/inferenceGate.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "f3a1933530feac4813cbc635fa4124ce", + "semantic_hash": "f3a1933530feac4813cbc635fa4124ce" + }, + "apps/electron-vite-project/electron/main/ingestion/__tests__/adversarial.test.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "cc6b8720ddad61d185184ed435c5f471", + "semantic_hash": "cc6b8720ddad61d185184ed435c5f471" + }, + "apps/electron-vite-project/electron/main/ingestion/__tests__/authorization.test.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "8093a6a24d58921b64a59f2771e2af7b", + "semantic_hash": "8093a6a24d58921b64a59f2771e2af7b" + }, + "apps/electron-vite-project/electron/main/ingestion/__tests__/beapDetection.test.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "4139a74834b77238f5df12e1d557e6d1", + "semantic_hash": "4139a74834b77238f5df12e1d557e6d1" + }, + "apps/electron-vite-project/electron/main/ingestion/__tests__/distributionGate.test.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "0206830ecd0020b141ba933a068530e2", + "semantic_hash": "0206830ecd0020b141ba933a068530e2" + }, + "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.http.test.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "215974b187867e3672549b7d1a4bbb32", + "semantic_hash": "215974b187867e3672549b7d1a4bbb32" + }, + "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.ipc.test.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "48e872d9427684863480ba2a24d99f3c", + "semantic_hash": "48e872d9427684863480ba2a24d99f3c" + }, + "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.transport.test.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "520f0d9fab699c022cb4ebf820dceeb4", + "semantic_hash": "520f0d9fab699c022cb4ebf820dceeb4" + }, + "apps/electron-vite-project/electron/main/ingestion/__tests__/e2e.websocket.test.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "746ef7b1874a541861a49bd02506de2e", + "semantic_hash": "746ef7b1874a541861a49bd02506de2e" + }, + "apps/electron-vite-project/electron/main/ingestion/__tests__/entrypoint.guard.test.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "99ba5eeaefadc13ef5fc007b7ec366be", + "semantic_hash": "99ba5eeaefadc13ef5fc007b7ec366be" + }, + "apps/electron-vite-project/electron/main/ingestion/__tests__/entrypoints.guard.e2e.test.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "f5f351ff438ac5edf368fc4524d33e04", + "semantic_hash": "f5f351ff438ac5edf368fc4524d33e04" + }, + "apps/electron-vite-project/electron/main/ingestion/__tests__/fixtures/capsules.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "87a2a1fbf492e75a9070c57c4a95561e", + "semantic_hash": "87a2a1fbf492e75a9070c57c4a95561e" + }, + "apps/electron-vite-project/electron/main/ingestion/__tests__/hardening.test.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "24e526f600abc2e52d3bdfadf5393533", + "semantic_hash": "24e526f600abc2e52d3bdfadf5393533" + }, + "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testDb.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "f9cb41864178c37e40ceb67eb70f7637", + "semantic_hash": "f9cb41864178c37e40ceb67eb70f7637" + }, + "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testIpcHarness.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "d335ae6d6e40277f5e72d81dc0454957", + "semantic_hash": "d335ae6d6e40277f5e72d81dc0454957" + }, + "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testServer.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "e4bcc48410fd6ad11bbe2310bab1050f", + "semantic_hash": "e4bcc48410fd6ad11bbe2310bab1050f" + }, + "apps/electron-vite-project/electron/main/ingestion/__tests__/helpers/testWsClient.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "4cabd47de750850689084ec7939eff3e", + "semantic_hash": "4cabd47de750850689084ec7939eff3e" + }, + "apps/electron-vite-project/electron/main/ingestion/__tests__/ingestor.test.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "1dc4d296aff43a0f6986a9a1a2e2cfdb", + "semantic_hash": "1dc4d296aff43a0f6986a9a1a2e2cfdb" + }, + "apps/electron-vite-project/electron/main/ingestion/__tests__/integration.test.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "01246acd36b695255dbd49e3adda1921", + "semantic_hash": "01246acd36b695255dbd49e3adda1921" + }, + "apps/electron-vite-project/electron/main/ingestion/__tests__/plainTransform.test.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "b34b4615ad269a2d300a8d365c456437", + "semantic_hash": "b34b4615ad269a2d300a8d365c456437" + }, + "apps/electron-vite-project/electron/main/ingestion/__tests__/validator.test.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "b2a3eb1853382d889acb043b50d296cf", + "semantic_hash": "b2a3eb1853382d889acb043b50d296cf" + }, + "apps/electron-vite-project/electron/main/ingestion/index.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "0a92b542ec26055efe5dbb130ba60ad3", + "semantic_hash": "0a92b542ec26055efe5dbb130ba60ad3" + }, + "apps/electron-vite-project/electron/main/ingestion/ingestionErrors.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "5447c756bf03a14254e74f5ee695c78d", + "semantic_hash": "5447c756bf03a14254e74f5ee695c78d" + }, + "apps/electron-vite-project/electron/main/ingestion/ingestionPipeline.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "d96b620d9ba05f625959f6637709561f", + "semantic_hash": "d96b620d9ba05f625959f6637709561f" + }, + "apps/electron-vite-project/electron/main/ingestion/ipc.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "0fc30ddd7646eea605d680ecb994fa61", + "semantic_hash": "0fc30ddd7646eea605d680ecb994fa61" + }, + "apps/electron-vite-project/electron/main/ingestion/persistenceDb.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "a1fdc4e48e417bb1459567a57e469b20", + "semantic_hash": "a1fdc4e48e417bb1459567a57e469b20" + }, + "apps/electron-vite-project/electron/main/ingestion/sandboxStub.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "a0ca4f056d73cbb89fa97bb58e104e1e", + "semantic_hash": "a0ca4f056d73cbb89fa97bb58e104e1e" + }, + "apps/electron-vite-project/electron/main/ingestion/types.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "ea8de409115d614539466c4f7f6e18c6", + "semantic_hash": "ea8de409115d614539466c4f7f6e18c6" + }, + "apps/electron-vite-project/electron/main/integrity/verifier.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "f55a12a4bdfe54e497048d27883a774d", + "semantic_hash": "f55a12a4bdfe54e497048d27883a774d" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/decideInternalInferenceTransport.test.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "d92fb95bd60cd8748789cd4165046c74", + "semantic_hash": "d92fb95bd60cd8748789cd4165046c74" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/directP2pReachability.test.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "d2b69d06f4d6dc449880e4182025114a", + "semantic_hash": "d2b69d06f4d6dc449880e4182025114a" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiBeapAdOllamaModelCount.regression.test.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "26ad92c5c2602a6543606e377582fde0", + "semantic_hash": "26ad92c5c2602a6543606e377582fde0" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiCrossDeviceStateMachine.regression.test.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "ae144abebadc022a8eb8b4b4d2cd1bb2", + "semantic_hash": "ae144abebadc022a8eb8b4b4d2cd1bb2" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiDirectBeapAdPublish.explicitPolicyDeny.test.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "7dacb41a9bc45d4712b0975fff5b93c5", + "semantic_hash": "7dacb41a9bc45d4712b0975fff5b93c5" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiDirectBeapAdPublish.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "29746105501a0871a5228dcb0af32966", + "semantic_hash": "29746105501a0871a5228dcb0af32966" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiDirectBeapAdWire.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "fde2e1368ca10fd8e5a4160ff993b234", + "semantic_hash": "fde2e1368ca10fd8e5a4160ff993b234" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiE2eSandboxToHostSuccess.integration.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "d7383e301860fbc754d5ba8a22af793b", + "semantic_hash": "d7383e301860fbc754d5ba8a22af793b" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiEffectiveRole.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "a0146a1870ea3e5dd96ea856d784f87f", + "semantic_hash": "a0146a1870ea3e5dd96ea856d784f87f" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiInternalPairingLedger.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "9b67d8aafb9d499e30b4f2f5d32b2b80", + "semantic_hash": "9b67d8aafb9d499e30b4f2f5d32b2b80" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiInternalPeerRoles.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "28ea8f07fd584570bc1e23029f011c1a", + "semantic_hash": "28ea8f07fd584570bc1e23029f011c1a" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiLogContracts.validation.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "d9cefd83ff19e3c3628b9080c3ef9cd0", + "semantic_hash": "d9cefd83ff19e3c3628b9080c3ef9cd0" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiP2pSessionSingleOwner.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "e3a690ac3154951b0d5caeeccd7a57e1", + "semantic_hash": "e3a690ac3154951b0d5caeeccd7a57e1" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiP2pSignalSchemaRejectLog.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "8629d33c4dc400dee0c93f8311a921b1", + "semantic_hash": "8629d33c4dc400dee0c93f8311a921b1" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiP2pStaleSessionNoReuse.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "27c8e3bc6e64ceeec4bf019589dcec82", + "semantic_hash": "27c8e3bc6e64ceeec4bf019589dcec82" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiPairingStateStore.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "35e151bdf5d13e93e8e6f1f7131c3734", + "semantic_hash": "35e151bdf5d13e93e8e6f1f7131c3734" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiPeerEndpointAndAdvertisement.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "1579e96bdd63e869de2cde764983ac66", + "semantic_hash": "1579e96bdd63e869de2cde764983ac66" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiPeerLivePresence.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "7f23def03cc543019eb76b8c2e6ced5f", + "semantic_hash": "7f23def03cc543019eb76b8c2e6ced5f" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiProviderAdvertisementBlockedReason.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "1f68bbeb43bc30fb73de5fa92980fc02", + "semantic_hash": "1f68bbeb43bc30fb73de5fa92980fc02" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiProviderAdvertisementLog.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "3f05a2c3370eb8cb85e10205b4a00ef6", + "semantic_hash": "3f05a2c3370eb8cb85e10205b4a00ef6" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRemoteInferencePolicyResolve.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "2b2e8db4c86a741d7b39580ed7ca384e", + "semantic_hash": "2b2e8db4c86a741d7b39580ed7ca384e" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRouteCandidate.predicates.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "c01b9511e4b1e354a862c4332aa3f432", + "semantic_hash": "c01b9511e4b1e354a862c4332aa3f432" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRouteResolve.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "038054158f27c5f03a083d00175f330a", + "semantic_hash": "038054158f27c5f03a083d00175f330a" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiRoutingCorrectness.regression.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "08974ee0beacaa39b28bd166597f7006", + "semantic_hash": "08974ee0beacaa39b28bd166597f7006" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiSealedInferenceRelayResultHandler.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "bee89285f87cd67d01913c9443bef9e8", + "semantic_hash": "bee89285f87cd67d01913c9443bef9e8" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiStageLog.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "72cc6adb13cfd1aa1f8265e3c203aec7", + "semantic_hash": "72cc6adb13cfd1aa1f8265e3c203aec7" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiStaleDatachannelOpenRecovery.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "fd7c7c9731457baaab28abd31e07aa98", + "semantic_hash": "fd7c7c9731457baaab28abd31e07aa98" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiTargetAvailabilityGating.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "de6cc009ed902d264b187eccfd6d1331", + "semantic_hash": "de6cc009ed902d264b187eccfd6d1331" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiTransportDecideLog.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "6554eb31cb6af58330a2f9a658a0ce40", + "semantic_hash": "6554eb31cb6af58330a2f9a658a0ce40" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiTransportMatrix.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "339125efde0dd982b88dffa5e783fb6f", + "semantic_hash": "339125efde0dd982b88dffa5e783fb6f" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiUnifiedRelayRegistration.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "04fbbe25dbd083e4f86049557d7fa9ad", + "semantic_hash": "04fbbe25dbd083e4f86049557d7fa9ad" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/hostAiUnifiedServiceRpcRelay.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "1d742e2cf80c5c0502ffc84c2f044fbb", + "semantic_hash": "1d742e2cf80c5c0502ffc84c2f044fbb" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/hostInferenceCore.policy.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "72c2051c244c135a559203a8c22f291f", + "semantic_hash": "72c2051c244c135a559203a8c22f291f" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/hostInferenceExecute.modelAlias.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "fd90d4794b371e2f33e613d6817b021b", + "semantic_hash": "fd90d4794b371e2f33e613d6817b021b" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/hostInferenceRequestRateLimit.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "f8095781c8f23d95de1440a7fdf87942", + "semantic_hash": "f8095781c8f23d95de1440a7fdf87942" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/inferenceHandshakeTrust.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "4c0d598b006e360a67afe30e5f11bced", + "semantic_hash": "4c0d598b006e360a67afe30e5f11bced" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInference.directHost.regression.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "3bf6362ec8b3f1f7d73613d1abae85f6", + "semantic_hash": "3bf6362ec8b3f1f7d73613d1abae85f6" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceLogRedact.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "6a73fdc9db403f414421bea932de582b", + "semantic_hash": "6a73fdc9db403f414421bea932de582b" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceService.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "37703973529e7231e1f2fc4d653f57fb", + "semantic_hash": "37703973529e7231e1f2fc4d653f57fb" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/internalInferenceTransport.decide.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "8a5fc912db3f04f88edf2a04b4a0359e", + "semantic_hash": "8a5fc912db3f04f88edf2a04b4a0359e" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/listHostCapabilities.hostAiRoute.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "4802ba0306ce35257fba8de666e004e9", + "semantic_hash": "4802ba0306ce35257fba8de666e004e9" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/listInferenceIpc.modelSelectorLifecycle.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "7fd470bed97216968cd2b8b558a58f1e", + "semantic_hash": "7fd470bed97216968cd2b8b558a58f1e" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/listInferenceTargets.step8.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "eb5eb12f3be684a33e58d3c402707e84", + "semantic_hash": "eb5eb12f3be684a33e58d3c402707e84" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pDcCapabilities.roleGate.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "608080bc3dfeae5c5fc3ad8d6455364a", + "semantic_hash": "608080bc3dfeae5c5fc3ad8d6455364a" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pEndpointRepair.hostAi.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "a3e6d51d6e9f0a1e1668ef6274650a96", + "semantic_hash": "a3e6d51d6e9f0a1e1668ef6274650a96" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pInferenceFlags.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "2ef33d6d57fbc550e47e23e5b0d1a475", + "semantic_hash": "2ef33d6d57fbc550e47e23e5b0d1a475" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pInferenceFlagsTestSetup.ts": { + "mtime": 1786206352.134713, + "ast_hash": "5fb2b69cd2e017c016b22b7842d92f6d", + "semantic_hash": "5fb2b69cd2e017c016b22b7842d92f6d" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pSessionWait.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "00546addc196d06d3a7e12ddbf2324c5", + "semantic_hash": "00546addc196d06d3a7e12ddbf2324c5" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pSignalRelayCircuit.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "4b0b1972a5e0d9838450a8766b618bd5", + "semantic_hash": "4b0b1972a5e0d9838450a8766b618bd5" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/p2pSignalRelayPost.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "c3e44856cb51dfc14df233c8142a68ba", + "semantic_hash": "c3e44856cb51dfc14df233c8142a68ba" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.electronMain.transportAndHostPolicy.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "88b2e79e4ff6d867c8ec332a0c631175", + "semantic_hash": "88b2e79e4ff6d867c8ec332a0c631175" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.p2pDcWire.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "3ba111c156247626bdfc398355f430ba", + "semantic_hash": "3ba111c156247626bdfc398355f430ba" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/phase11.p2pSessionManager.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "309d38c380c5e08392f6d2246d10bfce", + "semantic_hash": "309d38c380c5e08392f6d2246d10bfce" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/phase3SealedBoundary.regression.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "3f340e6896582ec6c58f0c02eb38b887", + "semantic_hash": "3f340e6896582ec6c58f0c02eb38b887" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/policy.internalInference.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "72ef121e918f830daf4a6fc999c6a44c", + "semantic_hash": "72ef121e918f830daf4a6fc999c6a44c" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/policy.internalInferencePolicyGetRole.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "29a209c2e20b14afc45a1457b1200090", + "semantic_hash": "29a209c2e20b14afc45a1457b1200090" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/postHostAiDirectBeapAd403Recovery.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "f4fe77c1edb7dbd7ee547f498c5c4cfa", + "semantic_hash": "f4fe77c1edb7dbd7ee547f498c5c4cfa" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/relayP2pSignalHandler.republishRequest.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "14abfc48a0cd54572b7b69adadb9ff95", + "semantic_hash": "14abfc48a0cd54572b7b69adadb9ff95" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/relayP2pSignalHandler.stale.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "ed131b1cebe5417a51f75b4d81b4fe0e", + "semantic_hash": "ed131b1cebe5417a51f75b4d81b4fe0e" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/resolveSandboxInferenceTarget.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "3cbba736a37f7d05da2ec088cfeb38f3", + "semantic_hash": "3cbba736a37f7d05da2ec088cfeb38f3" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/sandboxHostAiDirectBeapAdRequest.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "e064479e842448d582f5fbc72b5b4741", + "semantic_hash": "e064479e842448d582f5fbc72b5b4741" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/sandboxHostAiOllamaDirectSyntheticProbe.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "c86eb51a0bae61ce517d9f68c9532bf4", + "semantic_hash": "c86eb51a0bae61ce517d9f68c9532bf4" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/sandboxHostRosterSelectionMigration.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "aa6c58d3923c62f967db1e2ba3c46f47", + "semantic_hash": "aa6c58d3923c62f967db1e2ba3c46f47" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/sandbox_lists_remote_ollama_models_even_when_beap_endpoint_missing.regression.test.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "aa61e1297326849e6200c5c795c534b4", + "semantic_hash": "aa61e1297326849e6200c5c795c534b4" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/serviceRpcGatesAndLifecycle.rig.test.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "52da6c53930b5d2c2cd37785bc1d42aa", + "semantic_hash": "52da6c53930b5d2c2cd37785bc1d42aa" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/transportDecide.unifiedRelay.test.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "2ff99626bb3d52812fff6eff35abf6b2", + "semantic_hash": "2ff99626bb3d52812fff6eff35abf6b2" + }, + "apps/electron-vite-project/electron/main/internalInference/__tests__/unifiedServiceRpcRelayFlags.test.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "7aa3851c5db6357f2e17e2d909d69805", + "semantic_hash": "7aa3851c5db6357f2e17e2d909d69805" + }, + "apps/electron-vite-project/electron/main/internalInference/beapContentAiRoute.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "c343876508c3303f2fb7844ad39343d3", + "semantic_hash": "c343876508c3303f2fb7844ad39343d3" + }, + "apps/electron-vite-project/electron/main/internalInference/chatWithContextRagOllamaGeneration.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "2d2d293fe35fef9ade21d79823130f4f", + "semantic_hash": "2d2d293fe35fef9ade21d79823130f4f" + }, + "apps/electron-vite-project/electron/main/internalInference/dbAccess.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "5f0715c1ddc6a18613c55dafa979e56f", + "semantic_hash": "5f0715c1ddc6a18613c55dafa979e56f" + }, + "apps/electron-vite-project/electron/main/internalInference/directP2pReachability.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "aa09d4e732fbb99a430cfbb949967565", + "semantic_hash": "aa09d4e732fbb99a430cfbb949967565" + }, + "apps/electron-vite-project/electron/main/internalInference/errors.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "50799f33e183d8e315c85150c5e955bf", + "semantic_hash": "50799f33e183d8e315c85150c5e955bf" + }, + "apps/electron-vite-project/electron/main/internalInference/hostAiBeapAdOllamaModelCount.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "7cd4ed28ca38d9dabd79e3b23b0ed00a", + "semantic_hash": "7cd4ed28ca38d9dabd79e3b23b0ed00a" + }, + "apps/electron-vite-project/electron/main/internalInference/hostAiCapsRoleGateLog.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "7294d2da977698bda93251b254ec7847", + "semantic_hash": "7294d2da977698bda93251b254ec7847" + }, + "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdPublish.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "5630511b7b54e3a0bc251fd03c4a93e2", + "semantic_hash": "5630511b7b54e3a0bc251fd03c4a93e2" + }, + "apps/electron-vite-project/electron/main/internalInference/hostAiDirectBeapAdWire.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "430d1ce26d847a89fdf1ffecfa073b9d", + "semantic_hash": "430d1ce26d847a89fdf1ffecfa073b9d" + }, + "apps/electron-vite-project/electron/main/internalInference/hostAiEffectiveRole.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "a55af6e35819fbfc75f1eed70e974745", + "semantic_hash": "a55af6e35819fbfc75f1eed70e974745" + }, + "apps/electron-vite-project/electron/main/internalInference/hostAiEndpointCandidate.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "d07e7304f253423aecb14f52b9aa4472", + "semantic_hash": "d07e7304f253423aecb14f52b9aa4472" + }, + "apps/electron-vite-project/electron/main/internalInference/hostAiEndpointSelectLog.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "62cffe5222029e1e23d281d52e6f330b", + "semantic_hash": "62cffe5222029e1e23d281d52e6f330b" + }, + "apps/electron-vite-project/electron/main/internalInference/hostAiHostOrchestratorHealth.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "07397ec39c0335a923529d11ece1661f", + "semantic_hash": "07397ec39c0335a923529d11ece1661f" + }, + "apps/electron-vite-project/electron/main/internalInference/hostAiInferLog.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "b332154137007d33b6cf11d2277449f7", + "semantic_hash": "b332154137007d33b6cf11d2277449f7" + }, + "apps/electron-vite-project/electron/main/internalInference/hostAiInternalPairingLedger.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "c8267b6722dc645b3fa1c1942886e59f", + "semantic_hash": "c8267b6722dc645b3fa1c1942886e59f" + }, + "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirect.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "4e2aa9fe953e5a5768a13e04a4fc912e", + "semantic_hash": "4e2aa9fe953e5a5768a13e04a4fc912e" + }, + "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectAdvertisement.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "7e519f2038e1f0dc750791c65ca0ba44", + "semantic_hash": "7e519f2038e1f0dc750791c65ca0ba44" + }, + "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectLanIp.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "9241123b5a638d0aa086a371b123acbd", + "semantic_hash": "9241123b5a638d0aa086a371b123acbd" + }, + "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaDirectProactiveRefresh.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "4acf69c00b0b373ae08220f4b5ff88cf", + "semantic_hash": "4acf69c00b0b373ae08220f4b5ff88cf" + }, + "apps/electron-vite-project/electron/main/internalInference/hostAiOllamaNativeDiscovery.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "ad7444171862de9c2dfed4abd326d7f4", + "semantic_hash": "ad7444171862de9c2dfed4abd326d7f4" + }, + "apps/electron-vite-project/electron/main/internalInference/hostAiOrchestratorBuildSync.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "203e38a30278d8afd92b4408fb9dc709", + "semantic_hash": "203e38a30278d8afd92b4408fb9dc709" + }, + "apps/electron-vite-project/electron/main/internalInference/hostAiP2pSignalSchemaRejectLog.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "d5c9e41e4933d3c1034625d054b2c172", + "semantic_hash": "d5c9e41e4933d3c1034625d054b2c172" + }, + "apps/electron-vite-project/electron/main/internalInference/hostAiPairingStateStore.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "64817e0054935d24c68a348ff02a08cc", + "semantic_hash": "64817e0054935d24c68a348ff02a08cc" + }, + "apps/electron-vite-project/electron/main/internalInference/hostAiPeerLivePresence.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "f4c033ad9883afd45f295088640efc70", + "semantic_hash": "f4c033ad9883afd45f295088640efc70" + }, + "apps/electron-vite-project/electron/main/internalInference/hostAiProbeRouteLog.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "9d62d23c668f97d9ae5797352c46c607", + "semantic_hash": "9d62d23c668f97d9ae5797352c46c607" + }, + "apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementBlockedReason.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "20356ef0faf801926350829d25c1b5b7", + "semantic_hash": "20356ef0faf801926350829d25c1b5b7" + }, + "apps/electron-vite-project/electron/main/internalInference/hostAiProviderAdvertisementLog.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "d509bd165d5679f85c15be71b310e7e2", + "semantic_hash": "d509bd165d5679f85c15be71b310e7e2" + }, + "apps/electron-vite-project/electron/main/internalInference/hostAiRelayCapability.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "2a75875a3d3ff06a2e7e71886077d72a", + "semantic_hash": "2a75875a3d3ff06a2e7e71886077d72a" + }, + "apps/electron-vite-project/electron/main/internalInference/hostAiRemoteInferencePolicyResolve.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "257af1e83cf3a083b6da0b07c625dbeb", + "semantic_hash": "257af1e83cf3a083b6da0b07c625dbeb" + }, + "apps/electron-vite-project/electron/main/internalInference/hostAiRoleGateLog.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "f7d8933f1ce3a2e8d60e8b9348add17c", + "semantic_hash": "f7d8933f1ce3a2e8d60e8b9348add17c" + }, + "apps/electron-vite-project/electron/main/internalInference/hostAiRouteSelectLog.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "7895728d631412c86db96d236a41faaf", + "semantic_hash": "7895728d631412c86db96d236a41faaf" + }, + "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayHandler.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "b0e0b1662d7c09f3cc5371eadc7219b6", + "semantic_hash": "b0e0b1662d7c09f3cc5371eadc7219b6" + }, + "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayResultHandler.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "d56999c55ca65f66e8d3990538761e39", + "semantic_hash": "d56999c55ca65f66e8d3990538761e39" + }, + "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelaySend.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "d85e96af828b926f286f1a5d21db996e", + "semantic_hash": "d85e96af828b926f286f1a5d21db996e" + }, + "apps/electron-vite-project/electron/main/internalInference/hostAiSealedInferenceRelayWire.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "4f5657e4558893b9b08909170a22e019", + "semantic_hash": "4f5657e4558893b9b08909170a22e019" + }, + "apps/electron-vite-project/electron/main/internalInference/hostAiStageLog.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "54a44a99a48a7c5ad667e6ea9d66f1a5", + "semantic_hash": "54a44a99a48a7c5ad667e6ea9d66f1a5" + }, + "apps/electron-vite-project/electron/main/internalInference/hostAiTargetStatus.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "527b83a54e89d389ccd65b30c94f4870", + "semantic_hash": "527b83a54e89d389ccd65b30c94f4870" + }, + "apps/electron-vite-project/electron/main/internalInference/hostAiTransportDecideLog.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "e0457701201fc20ce3ae4bbe90c4d98a", + "semantic_hash": "e0457701201fc20ce3ae4bbe90c4d98a" + }, + "apps/electron-vite-project/electron/main/internalInference/hostAiTransportMatrix.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "eb1006de3d57dc0f6cc11da2d9f056f5", + "semantic_hash": "eb1006de3d57dc0f6cc11da2d9f056f5" + }, + "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedRelayRegistration.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "ff6a94ac624ba3854b97f19159f7c865", + "semantic_hash": "ff6a94ac624ba3854b97f19159f7c865" + }, + "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelay.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "3e7208aa3c211c4391ad8c5d382fe23b", + "semantic_hash": "3e7208aa3c211c4391ad8c5d382fe23b" + }, + "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayHandler.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "703afeef08cd17efe2b098705ea19a07", + "semantic_hash": "703afeef08cd17efe2b098705ea19a07" + }, + "apps/electron-vite-project/electron/main/internalInference/hostAiUnifiedServiceRpcRelayWire.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "f59d7aeca8efafe6944ca69622d4ce45", + "semantic_hash": "f59d7aeca8efafe6944ca69622d4ce45" + }, + "apps/electron-vite-project/electron/main/internalInference/hostAiWebrtcOfferStart.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "e8ace6aafc3619cd57248ac205a0bbc3", + "semantic_hash": "e8ace6aafc3619cd57248ac205a0bbc3" + }, + "apps/electron-vite-project/electron/main/internalInference/hostInferenceCapabilities.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "e92b5b3c2d31ca5796f530c246bc2e14", + "semantic_hash": "e92b5b3c2d31ca5796f530c246bc2e14" + }, + "apps/electron-vite-project/electron/main/internalInference/hostInferenceConcurrency.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "8bff2ebc89d2467944d218ee66091848", + "semantic_hash": "8bff2ebc89d2467944d218ee66091848" + }, + "apps/electron-vite-project/electron/main/internalInference/hostInferenceCore.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "2c39b31a60114486c62ca6bc8ba2f798", + "semantic_hash": "2c39b31a60114486c62ca6bc8ba2f798" + }, + "apps/electron-vite-project/electron/main/internalInference/hostInferenceExecute.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "8724c5250928c2f8a5448e5630cc7bf5", + "semantic_hash": "8724c5250928c2f8a5448e5630cc7bf5" + }, + "apps/electron-vite-project/electron/main/internalInference/hostInferencePolicyStore.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "f938913a30b659d6dfc7f1e1d251bd88", + "semantic_hash": "f938913a30b659d6dfc7f1e1d251bd88" + }, + "apps/electron-vite-project/electron/main/internalInference/hostInferenceRequestRateLimit.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "f4d33ced8b3dafa375053149af51ce05", + "semantic_hash": "f4d33ced8b3dafa375053149af51ce05" + }, + "apps/electron-vite-project/electron/main/internalInference/inferenceRoutingIpcPayload.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "573e8e84e8c2469b08fa625f326da9e3", + "semantic_hash": "573e8e84e8c2469b08fa625f326da9e3" + }, + "apps/electron-vite-project/electron/main/internalInference/internalInferenceLogRedact.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "5a49e05ee57b96963ff0795bc44743aa", + "semantic_hash": "5a49e05ee57b96963ff0795bc44743aa" + }, + "apps/electron-vite-project/electron/main/internalInference/internalP2pHandshakeInspect.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "54cea5a5486af9d8ab6251f5bba51e2c", + "semantic_hash": "54cea5a5486af9d8ab6251f5bba51e2c" + }, + "apps/electron-vite-project/electron/main/internalInference/ipc.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "b905536df7da9182d9fcce36869190ff", + "semantic_hash": "b905536df7da9182d9fcce36869190ff" + }, + "apps/electron-vite-project/electron/main/internalInference/listInferenceTargets.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "70002a229f0ad257e614eb508a17a9fd", + "semantic_hash": "70002a229f0ad257e614eb508a17a9fd" + }, + "apps/electron-vite-project/electron/main/internalInference/logging.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "a28897969385987e8ecca18f269894ee", + "semantic_hash": "a28897969385987e8ecca18f269894ee" + }, + "apps/electron-vite-project/electron/main/internalInference/orchestratorSandboxEmbedding.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "a1a943c59bdd6691409c872a4aeee1e4", + "semantic_hash": "a1a943c59bdd6691409c872a4aeee1e4" + }, + "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcCapabilities.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "dff0d39ef916f50cfe7e711e2b9bbdcb", + "semantic_hash": "dff0d39ef916f50cfe7e711e2b9bbdcb" + }, + "apps/electron-vite-project/electron/main/internalInference/p2pDc/p2pDcInference.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "83f40b15c838b8fc7c228b94b26dcaf6", + "semantic_hash": "83f40b15c838b8fc7c228b94b26dcaf6" + }, + "apps/electron-vite-project/electron/main/internalInference/p2pEndpointRepair.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "dcd37ba93dfde5a8236939fbb7c2ffbb", + "semantic_hash": "dcd37ba93dfde5a8236939fbb7c2ffbb" + }, + "apps/electron-vite-project/electron/main/internalInference/p2pHostPolicyGet.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "7712040666c07d539672567f52d0234f", + "semantic_hash": "7712040666c07d539672567f52d0234f" + }, + "apps/electron-vite-project/electron/main/internalInference/p2pInferenceFlags.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "e69212208c7e8b730246d81cf83232e2", + "semantic_hash": "e69212208c7e8b730246d81cf83232e2" + }, + "apps/electron-vite-project/electron/main/internalInference/p2pInferenceTransportLog.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "5d322518b252d9a88f3211de441672a1", + "semantic_hash": "5d322518b252d9a88f3211de441672a1" + }, + "apps/electron-vite-project/electron/main/internalInference/p2pReachabilityGet.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "4844b61bd9f7e919beacd9b77196fce9", + "semantic_hash": "4844b61bd9f7e919beacd9b77196fce9" + }, + "apps/electron-vite-project/electron/main/internalInference/p2pServiceDispatch.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "ce76c9628bfb23d14c27faa0271c4d7d", + "semantic_hash": "ce76c9628bfb23d14c27faa0271c4d7d" + }, + "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pInferenceSessionManager.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "decebc469b2fb4df61d20493c461f128", + "semantic_hash": "decebc469b2fb4df61d20493c461f128" + }, + "apps/electron-vite-project/electron/main/internalInference/p2pSession/p2pSessionWait.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "a0d0159c94abeeb16fa9f1da4b84e116", + "semantic_hash": "a0d0159c94abeeb16fa9f1da4b84e116" + }, + "apps/electron-vite-project/electron/main/internalInference/p2pSessionManagerStub.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "57d9b0d8c3bd93cc385352fc2b193a57", + "semantic_hash": "57d9b0d8c3bd93cc385352fc2b193a57" + }, + "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayCircuit.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "9fe54c01779cbf7863910e43023c30df", + "semantic_hash": "9fe54c01779cbf7863910e43023c30df" + }, + "apps/electron-vite-project/electron/main/internalInference/p2pSignalRelayPost.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "71cad1f42496a00dc2bacb8c9a8aa85f", + "semantic_hash": "71cad1f42496a00dc2bacb8c9a8aa85f" + }, + "apps/electron-vite-project/electron/main/internalInference/p2pSignalWireSchemaVersion.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "22c8cdb42a56fdb89f672bc77c67ad7f", + "semantic_hash": "22c8cdb42a56fdb89f672bc77c67ad7f" + }, + "apps/electron-vite-project/electron/main/internalInference/pendingRequests.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "fa3a0d6164c6010cac07478985105114", + "semantic_hash": "fa3a0d6164c6010cac07478985105114" + }, + "apps/electron-vite-project/electron/main/internalInference/policy.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "11a009ccdb9a44879e6fdcfef0ceae86", + "semantic_hash": "11a009ccdb9a44879e6fdcfef0ceae86" + }, + "apps/electron-vite-project/electron/main/internalInference/relayP2pSignalHandler.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "0135240b489b5ed441ed89af773fc472", + "semantic_hash": "0135240b489b5ed441ed89af773fc472" + }, + "apps/electron-vite-project/electron/main/internalInference/resolveSandboxInferenceTarget.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "4049b677ee583e058ddb522fd804fde9", + "semantic_hash": "4049b677ee583e058ddb522fd804fde9" + }, + "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiDirectBeapAdRequest.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "4a1e0f1096f6cee755b16c2e56b2368e", + "semantic_hash": "4a1e0f1096f6cee755b16c2e56b2368e" + }, + "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiListRefreshDecision.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "2ada969987cc3af521763aa6fd0643eb", + "semantic_hash": "2ada969987cc3af521763aa6fd0643eb" + }, + "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectCandidate.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "3bdd6f5c88c89f891e5acb830ebbbf10", + "semantic_hash": "3bdd6f5c88c89f891e5acb830ebbbf10" + }, + "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectSyntheticProbe.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "8f9823c872911ae0cc4d8ff5bb222bc8", + "semantic_hash": "8f9823c872911ae0cc4d8ff5bb222bc8" + }, + "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiOllamaDirectTags.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "7ba496743f2751b86f07ecf55937ff90", + "semantic_hash": "7ba496743f2751b86f07ecf55937ff90" + }, + "apps/electron-vite-project/electron/main/internalInference/sandboxHostAiRouteSelectCaps.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "87fadf2486731135aa4776d004035521", + "semantic_hash": "87fadf2486731135aa4776d004035521" + }, + "apps/electron-vite-project/electron/main/internalInference/sandboxHostChat.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "9c5b23cd81e92489cac8eacc0b5bc6ea", + "semantic_hash": "9c5b23cd81e92489cac8eacc0b5bc6ea" + }, + "apps/electron-vite-project/electron/main/internalInference/sandboxHostRosterSelectionMigration.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "2754056334a42847e16f4ae842700309", + "semantic_hash": "2754056334a42847e16f4ae842700309" + }, + "apps/electron-vite-project/electron/main/internalInference/sandboxHostUi.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "fe6ed0db31ed88a19bd52435eb103174", + "semantic_hash": "fe6ed0db31ed88a19bd52435eb103174" + }, + "apps/electron-vite-project/electron/main/internalInference/sandboxOllamaDirectCapsRefresh.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "ada9e9e0b1fece2d541eba45837a0705", + "semantic_hash": "ada9e9e0b1fece2d541eba45837a0705" + }, + "apps/electron-vite-project/electron/main/internalInference/sandboxOllamaDirectTransport.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "46363fa90e962d4622f1bfa8cdc0ff9f", + "semantic_hash": "46363fa90e962d4622f1bfa8cdc0ff9f" + }, + "apps/electron-vite-project/electron/main/internalInference/sandboxRequest.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "bf91f67a3dbf574a7861618d9e5faa07", + "semantic_hash": "bf91f67a3dbf574a7861618d9e5faa07" + }, + "apps/electron-vite-project/electron/main/internalInference/transport/decideInternalInferenceTransport.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "a03006367088ea066606973c1ceb8304", + "semantic_hash": "a03006367088ea066606973c1ceb8304" + }, + "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteCandidate.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "1fae6e82354ce46e87c386c8ac3f587b", + "semantic_hash": "1fae6e82354ce46e87c386c8ac3f587b" + }, + "apps/electron-vite-project/electron/main/internalInference/transport/hostAiRouteResolve.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "b89045627bec59759fa82592148005c7", + "semantic_hash": "b89045627bec59759fa82592148005c7" + }, + "apps/electron-vite-project/electron/main/internalInference/transport/hostAiTransportLog.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "ef6926e51e59feab6046209480f605bc", + "semantic_hash": "ef6926e51e59feab6046209480f605bc" + }, + "apps/electron-vite-project/electron/main/internalInference/transport/hostAiTransportTypes.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "8eccb757ac1f2ee09bec16412bba295f", + "semantic_hash": "8eccb757ac1f2ee09bec16412bba295f" + }, + "apps/electron-vite-project/electron/main/internalInference/transport/inferenceDirectHttpTrust.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "940f1a3c1123ad5f26acac7b97e66018", + "semantic_hash": "940f1a3c1123ad5f26acac7b97e66018" + }, + "apps/electron-vite-project/electron/main/internalInference/transport/internalInferenceTransport.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "aa15e23918bac35890acfaf4669b2f79", + "semantic_hash": "aa15e23918bac35890acfaf4669b2f79" + }, + "apps/electron-vite-project/electron/main/internalInference/transport/transportDecide.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "0a5480028fa1dc95e321eeaf4530b5cf", + "semantic_hash": "0a5480028fa1dc95e321eeaf4530b5cf" + }, + "apps/electron-vite-project/electron/main/internalInference/types.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "6317c373dbc7f152b242bcb52ed7bfb0", + "semantic_hash": "6317c373dbc7f152b242bcb52ed7bfb0" + }, + "apps/electron-vite-project/electron/main/internalInference/unifiedServiceRpcRelayFlags.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "6c348ec3614b5286333ab57ea59904ea", + "semantic_hash": "6c348ec3614b5286333ab57ea59904ea" + }, + "apps/electron-vite-project/electron/main/internalInference/webrtc/p2pSignalOutbound.ts": { + "mtime": 1786206352.146711, + "ast_hash": "d20ed65ad6aedd0eb6933f8124cf5bc8", + "semantic_hash": "d20ed65ad6aedd0eb6933f8124cf5bc8" + }, + "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportIpc.ts": { + "mtime": 1786206352.146711, + "ast_hash": "dfd4f370cbe10e3497bc61bb801c16b2", + "semantic_hash": "dfd4f370cbe10e3497bc61bb801c16b2" + }, + "apps/electron-vite-project/electron/main/internalInference/webrtc/webrtcTransportWindow.ts": { + "mtime": 1786206352.146711, + "ast_hash": "16780a26d204161be8699f11643ed889", + "semantic_hash": "16780a26d204161be8699f11643ed889" + }, + "apps/electron-vite-project/electron/main/letter/builtinTemplateRenderer.ts": { + "mtime": 1786206352.146711, + "ast_hash": "b6c6001c3923756f17f8255701765cc4", + "semantic_hash": "b6c6001c3923756f17f8255701765cc4" + }, + "apps/electron-vite-project/electron/main/letter/fillDocxPlaceholders.ts": { + "mtime": 1786206352.146711, + "ast_hash": "8336d1fc3b27bc31c13dd26d21269a1e", + "semantic_hash": "8336d1fc3b27bc31c13dd26d21269a1e" + }, + "apps/electron-vite-project/electron/main/letter/legacyDocumentToHtml.ts": { + "mtime": 1786206352.146711, + "ast_hash": "0833e9d02643fdafa2d2f07bc35fcede", + "semantic_hash": "0833e9d02643fdafa2d2f07bc35fcede" + }, + "apps/electron-vite-project/electron/main/letter/letterComposerIpc.ts": { + "mtime": 1786206352.146711, + "ast_hash": "6816ad2ae10b4c52787dcbe38efbf3a0", + "semantic_hash": "6816ad2ae10b4c52787dcbe38efbf3a0" + }, + "apps/electron-vite-project/electron/main/letter/letterScanExtract.ts": { + "mtime": 1786206352.146711, + "ast_hash": "2b17b78fbf2267b918ecacab8a6f7236", + "semantic_hash": "2b17b78fbf2267b918ecacab8a6f7236" + }, + "apps/electron-vite-project/electron/main/letter/letterScanNormalize.ts": { + "mtime": 1786206352.146711, + "ast_hash": "68d3b9e92773aebb4fcb9bbabb684c99", + "semantic_hash": "68d3b9e92773aebb4fcb9bbabb684c99" + }, + "apps/electron-vite-project/electron/main/letter/letterScanProcessing.ts": { + "mtime": 1786206352.146711, + "ast_hash": "0d843c6e644dd4d0a2d62713206c7476", + "semantic_hash": "0d843c6e644dd4d0a2d62713206c7476" + }, + "apps/electron-vite-project/electron/main/letter/odtToHtml.ts": { + "mtime": 1786206352.146711, + "ast_hash": "f3b8d637b330a6d3cf0070867e182855", + "semantic_hash": "f3b8d637b330a6d3cf0070867e182855" + }, + "apps/electron-vite-project/electron/main/letter/renderPdfPagesInBrowser.ts": { + "mtime": 1786206352.146711, + "ast_hash": "e450f3b9ef1c8c18ced77b4fa2f7ac55", + "semantic_hash": "e450f3b9ef1c8c18ced77b4fa2f7ac55" + }, + "apps/electron-vite-project/electron/main/letter/templateFieldDetect.ts": { + "mtime": 1786206352.146711, + "ast_hash": "0a1b42577cbf210d09115fd10e6ece42", + "semantic_hash": "0a1b42577cbf210d09115fd10e6ece42" + }, + "apps/electron-vite-project/electron/main/letter/templatePdfPreviewRender.ts": { + "mtime": 1786206352.146711, + "ast_hash": "0200b258b57d8672cb3ee50d036de0dd", + "semantic_hash": "0200b258b57d8672cb3ee50d036de0dd" + }, + "apps/electron-vite-project/electron/main/letter/templatePdfTextLayer.ts": { + "mtime": 1786206352.146711, + "ast_hash": "59a0816eeaeaf64def5a2a653331378e", + "semantic_hash": "59a0816eeaeaf64def5a2a653331378e" + }, + "apps/electron-vite-project/electron/main/libreoffice/libreofficeService.ts": { + "mtime": 1786206352.146711, + "ast_hash": "fe8eb8480026b150eec95e0b79c53773", + "semantic_hash": "fe8eb8480026b150eec95e0b79c53773" + }, + "apps/electron-vite-project/electron/main/llm/__tests__/adaptiveWarmupStrategy.test.ts": { + "mtime": 1786206352.146711, + "ast_hash": "e3b1d43fb9c01dd4435ed01a3f70c4b4", + "semantic_hash": "e3b1d43fb9c01dd4435ed01a3f70c4b4" + }, + "apps/electron-vite-project/electron/main/llm/__tests__/detectVramCapacity.test.ts": { + "mtime": 1786206352.146711, + "ast_hash": "96e640787aa9cf0c43cb5cd52bfde2ad", + "semantic_hash": "96e640787aa9cf0c43cb5cd52bfde2ad" + }, + "apps/electron-vite-project/electron/main/llm/__tests__/diagnostics.test.ts": { + "mtime": 1786206352.146711, + "ast_hash": "862c5b2e0378ceac32325daf5e42e2f4", + "semantic_hash": "862c5b2e0378ceac32325daf5e42e2f4" + }, + "apps/electron-vite-project/electron/main/llm/__tests__/hardware-capability.test.ts": { + "mtime": 1786206352.146711, + "ast_hash": "4b00ffaaf0cef58b252dfe09d9281be8", + "semantic_hash": "4b00ffaaf0cef58b252dfe09d9281be8" + }, + "apps/electron-vite-project/electron/main/llm/__tests__/internalHostInferenceOllama.resolveModel.test.ts": { + "mtime": 1786206352.146711, + "ast_hash": "71f2ec2e0fdcff07e41d4ccb44da4e44", + "semantic_hash": "71f2ec2e0fdcff07e41d4ccb44da4e44" + }, + "apps/electron-vite-project/electron/main/llm/__tests__/llamaChatResponseContent.test.ts": { + "mtime": 1786206352.146711, + "ast_hash": "931c1dcba3e80ed5b5b810453f107e80", + "semantic_hash": "931c1dcba3e80ed5b5b810453f107e80" + }, + "apps/electron-vite-project/electron/main/llm/__tests__/llamaContextOverflow.test.ts": { + "mtime": 1786206352.146711, + "ast_hash": "9571b093af1aced20690a3849f6eb09e", + "semantic_hash": "9571b093af1aced20690a3849f6eb09e" + }, + "apps/electron-vite-project/electron/main/llm/__tests__/llamaServerArgs.test.ts": { + "mtime": 1786206352.146711, + "ast_hash": "d80604fbdce5dfe7a470ca12752b5dc5", + "semantic_hash": "d80604fbdce5dfe7a470ca12752b5dc5" + }, + "apps/electron-vite-project/electron/main/llm/__tests__/llamaServerBinaryInstall.assets.test.ts": { + "mtime": 1786206352.146711, + "ast_hash": "bb62ec38140c6300ee84a1e44afa6e7a", + "semantic_hash": "bb62ec38140c6300ee84a1e44afa6e7a" + }, + "apps/electron-vite-project/electron/main/llm/__tests__/local-llm-manager.probeCache.test.ts": { + "mtime": 1786206352.146711, + "ast_hash": "9baf9aac33d8e682f424766a8120bae6", + "semantic_hash": "9baf9aac33d8e682f424766a8120bae6" + }, + "apps/electron-vite-project/electron/main/llm/__tests__/localLlmLifecycle.test.ts": { + "mtime": 1786206352.146711, + "ast_hash": "e3d27b5de2f50787ec5d2f81dacf7604", + "semantic_hash": "e3d27b5de2f50787ec5d2f81dacf7604" + }, + "apps/electron-vite-project/electron/main/llm/__tests__/localLlmModelInstall.download.test.ts": { + "mtime": 1786206352.146711, + "ast_hash": "1739d0a2bfb6e275047916c9ec94b6a3", + "semantic_hash": "1739d0a2bfb6e275047916c9ec94b6a3" + }, + "apps/electron-vite-project/electron/main/llm/__tests__/localLlmModelInstall.test.ts": { + "mtime": 1786206352.146711, + "ast_hash": "16b3d6e77343eebdfe10ca13397b7dfa", + "semantic_hash": "16b3d6e77343eebdfe10ca13397b7dfa" + }, + "apps/electron-vite-project/electron/main/llm/__tests__/localLlmServerConfig.test.ts": { + "mtime": 1786206352.146711, + "ast_hash": "f29b6c3d44615b72843d226e05356725", + "semantic_hash": "f29b6c3d44615b72843d226e05356725" + }, + "apps/electron-vite-project/electron/main/llm/__tests__/localModelIdentity.test.ts": { + "mtime": 1786206352.146711, + "ast_hash": "eaae39a548e768c797ba530a76a104f5", + "semantic_hash": "eaae39a548e768c797ba530a76a104f5" + }, + "apps/electron-vite-project/electron/main/llm/__tests__/modeModelWarmupTrigger.test.ts": { + "mtime": 1786206352.146711, + "ast_hash": "aa6699f335e2a0c9b9625619a98aaa73", + "semantic_hash": "aa6699f335e2a0c9b9625619a98aaa73" + }, + "apps/electron-vite-project/electron/main/llm/__tests__/ollamaManager.inferenceGate.contract.test.ts": { + "mtime": 1786206352.146711, + "ast_hash": "7a0397a0c89127ba1bdc61adcd32edbf", + "semantic_hash": "7a0397a0c89127ba1bdc61adcd32edbf" + }, + "apps/electron-vite-project/electron/main/llm/__tests__/resolveAiExecutionContext.effectiveSandbox.test.ts": { + "mtime": 1786206352.146711, + "ast_hash": "01886c1f9e063c7e587c0be54a10d6a0", + "semantic_hash": "01886c1f9e063c7e587c0be54a10d6a0" + }, + "apps/electron-vite-project/electron/main/llm/__tests__/resolveDeclaredModelAvailability.test.ts": { + "mtime": 1786206352.146711, + "ast_hash": "80931b6156102295385de32ec96c7717", + "semantic_hash": "80931b6156102295385de32ec96c7717" + }, + "apps/electron-vite-project/electron/main/llm/__tests__/startupWarmup.test.ts": { + "mtime": 1786206352.146711, + "ast_hash": "0acd744fa3f9a72976febc067728a160", + "semantic_hash": "0acd744fa3f9a72976febc067728a160" + }, + "apps/electron-vite-project/electron/main/llm/__tests__/warmupOnServerHealthy.test.ts": { + "mtime": 1786206352.146711, + "ast_hash": "2f6c994c3f8e472c7a847c90903417cc", + "semantic_hash": "2f6c994c3f8e472c7a847c90903417cc" + }, + "apps/electron-vite-project/electron/main/llm/activeLocalModelStore.ts": { + "mtime": 1786206352.146711, + "ast_hash": "5ca18a5c12c73d7f8bd9e034af32d1dc", + "semantic_hash": "5ca18a5c12c73d7f8bd9e034af32d1dc" + }, + "apps/electron-vite-project/electron/main/llm/activeOllamaModelStore.test.ts": { + "mtime": 1786206352.146711, + "ast_hash": "f9e33759bb45931868139aa134daca76", + "semantic_hash": "f9e33759bb45931868139aa134daca76" + }, + "apps/electron-vite-project/electron/main/llm/adaptiveWarmupStrategy.ts": { + "mtime": 1786206352.146711, + "ast_hash": "0789bc1159efbcdb35158a9c3575af19", + "semantic_hash": "0789bc1159efbcdb35158a9c3575af19" + }, + "apps/electron-vite-project/electron/main/llm/aiExecutionContextStore.ts": { + "mtime": 1786206352.146711, + "ast_hash": "4e074b8578bbeb11cbea5a3797323aab", + "semantic_hash": "4e074b8578bbeb11cbea5a3797323aab" + }, + "apps/electron-vite-project/electron/main/llm/aiExecutionTypes.ts": { + "mtime": 1786206352.146711, + "ast_hash": "99304ff18667952de80d551082ddd2d8", + "semantic_hash": "99304ff18667952de80d551082ddd2d8" + }, + "apps/electron-vite-project/electron/main/llm/broadcastActiveModel.ts": { + "mtime": 1786206352.146711, + "ast_hash": "4b8127a37e7fb725a33d039e15035d72", + "semantic_hash": "4b8127a37e7fb725a33d039e15035d72" + }, + "apps/electron-vite-project/electron/main/llm/broadcastModelsChanged.ts": { + "mtime": 1786206352.146711, + "ast_hash": "13eedcf9422da08300e9e3b657eba0f5", + "semantic_hash": "13eedcf9422da08300e9e3b657eba0f5" + }, + "apps/electron-vite-project/electron/main/llm/config.ts": { + "mtime": 1786206352.146711, + "ast_hash": "e53206564ff7b34004f6504f6741866d", + "semantic_hash": "e53206564ff7b34004f6504f6741866d" + }, + "apps/electron-vite-project/electron/main/llm/create-phi3-low.js": { + "mtime": 1786206352.146711, + "ast_hash": "c2673819044beb3517302b5d92656955", + "semantic_hash": "c2673819044beb3517302b5d92656955" + }, + "apps/electron-vite-project/electron/main/llm/detectVramCapacity.ts": { + "mtime": 1786206352.146711, + "ast_hash": "f3aed84d8f49741eb0f9284b00f5a949", + "semantic_hash": "f3aed84d8f49741eb0f9284b00f5a949" + }, + "apps/electron-vite-project/electron/main/llm/ggufFileUtils.ts": { + "mtime": 1786206352.146711, + "ast_hash": "8e40036ac00c65ab881d8c2ddaa7ef25", + "semantic_hash": "8e40036ac00c65ab881d8c2ddaa7ef25" + }, + "apps/electron-vite-project/electron/main/llm/handshakeAvailableModelsCompute.ts": { + "mtime": 1786206352.146711, + "ast_hash": "45b88bd2bf5aafac4fd3e0f355c83fd8", + "semantic_hash": "45b88bd2bf5aafac4fd3e0f355c83fd8" + }, + "apps/electron-vite-project/electron/main/llm/hardware-capability-check.ts": { + "mtime": 1786206352.1507106, + "ast_hash": "2e71d32504f6306f2d944b36e3b81494", + "semantic_hash": "2e71d32504f6306f2d944b36e3b81494" + }, + "apps/electron-vite-project/electron/main/llm/hardware-diagnostics.ts": { + "mtime": 1786206352.1507106, + "ast_hash": "081bf6ed35c58af156a1e936fbb29026", + "semantic_hash": "081bf6ed35c58af156a1e936fbb29026" + }, + "apps/electron-vite-project/electron/main/llm/hardware.ts": { + "mtime": 1786206352.1507106, + "ast_hash": "4e605020c064ee9337e144eaea727346", + "semantic_hash": "4e605020c064ee9337e144eaea727346" + }, + "apps/electron-vite-project/electron/main/llm/huggingFaceModelDownloadAllowlist.ts": { + "mtime": 1786206352.1507106, + "ast_hash": "61ee144c147ca709748a6a2ab11ced30", + "semantic_hash": "61ee144c147ca709748a6a2ab11ced30" + }, + "apps/electron-vite-project/electron/main/llm/inboxAutosortRuntime.ts": { + "mtime": 1786206352.1507106, + "ast_hash": "bd4e1935828e84a8c060e80ae18cce98", + "semantic_hash": "bd4e1935828e84a8c060e80ae18cce98" + }, + "apps/electron-vite-project/electron/main/llm/internalHostInferenceLocal.ts": { + "mtime": 1786206352.1507106, + "ast_hash": "1b843fa677199000c3caf659d8b01942", + "semantic_hash": "1b843fa677199000c3caf659d8b01942" + }, + "apps/electron-vite-project/electron/main/llm/ipc.ts": { + "mtime": 1786206352.1507106, + "ast_hash": "803ee7a7e87aa9c4ad078e92899cf0f8", + "semantic_hash": "803ee7a7e87aa9c4ad078e92899cf0f8" + }, + "apps/electron-vite-project/electron/main/llm/llamaChatResponseContent.ts": { + "mtime": 1786206352.1507106, + "ast_hash": "3487bdd0a72e30009b0be7dd94230859", + "semantic_hash": "3487bdd0a72e30009b0be7dd94230859" + }, + "apps/electron-vite-project/electron/main/llm/llamaContextOverflow.ts": { + "mtime": 1786206352.1507106, + "ast_hash": "37976b8eaf6de6b8ba5101182ac45ec2", + "semantic_hash": "37976b8eaf6de6b8ba5101182ac45ec2" + }, + "apps/electron-vite-project/electron/main/llm/llamaServerArgs.ts": { + "mtime": 1786206352.1507106, + "ast_hash": "21d32dc5fc68bb1a9f3d6196da1bfa22", + "semantic_hash": "21d32dc5fc68bb1a9f3d6196da1bfa22" + }, + "apps/electron-vite-project/electron/main/llm/llamaServerBinaryDownloadAllowlist.ts": { + "mtime": 1786206352.1507106, + "ast_hash": "05b1b165482b2179a2aa101d5a72013e", + "semantic_hash": "05b1b165482b2179a2aa101d5a72013e" + }, + "apps/electron-vite-project/electron/main/llm/llamaServerBinaryInstall.ts": { + "mtime": 1786206352.1507106, + "ast_hash": "89bcaf1a302556159241f7b0dd916756", + "semantic_hash": "89bcaf1a302556159241f7b0dd916756" + }, + "apps/electron-vite-project/electron/main/llm/llamaServerLog.ts": { + "mtime": 1786206352.1507106, + "ast_hash": "75e16d8f833ccbe97a3fb6ddcb6c7e75", + "semantic_hash": "75e16d8f833ccbe97a3fb6ddcb6c7e75" + }, + "apps/electron-vite-project/electron/main/llm/llamacppHttpBases.ts": { + "mtime": 1786206352.1507106, + "ast_hash": "61ae56a9ec3714e32d15d331bc2a5ed6", + "semantic_hash": "61ae56a9ec3714e32d15d331bc2a5ed6" + }, + "apps/electron-vite-project/electron/main/llm/local-llm-manager.ts": { + "mtime": 1786206352.1507106, + "ast_hash": "ed23818575d3a8a922b3a43a53dcbcae", + "semantic_hash": "ed23818575d3a8a922b3a43a53dcbcae" + }, + "apps/electron-vite-project/electron/main/llm/localLlmBulkPrewarm.ts": { + "mtime": 1786206352.1507106, + "ast_hash": "3ee88723de8a81f54ee09dc36d4c69a9", + "semantic_hash": "3ee88723de8a81f54ee09dc36d4c69a9" + }, + "apps/electron-vite-project/electron/main/llm/localLlmLifecycle.ts": { + "mtime": 1786206352.1507106, + "ast_hash": "3367616c1e952e4dc16e9f5f39bfb27b", + "semantic_hash": "3367616c1e952e4dc16e9f5f39bfb27b" + }, + "apps/electron-vite-project/electron/main/llm/localLlmModelInstall.ts": { + "mtime": 1786206352.1507106, + "ast_hash": "d0f5d0d752c8ba29fe30affd838fa35a", + "semantic_hash": "d0f5d0d752c8ba29fe30affd838fa35a" + }, + "apps/electron-vite-project/electron/main/llm/localLlmPaths.ts": { + "mtime": 1786206352.1507106, + "ast_hash": "846628c8abd404d72c4300ed16e36ee8", + "semantic_hash": "846628c8abd404d72c4300ed16e36ee8" + }, + "apps/electron-vite-project/electron/main/llm/localLlmProviderStatus.ts": { + "mtime": 1786206352.1507106, + "ast_hash": "479f7513d56a6e79cf1b086054e3494a", + "semantic_hash": "479f7513d56a6e79cf1b086054e3494a" + }, + "apps/electron-vite-project/electron/main/llm/localLlmRuntimeDiagnostics.ts": { + "mtime": 1786206352.1507106, + "ast_hash": "d5eb27494594f9972b3a08cb95910dc1", + "semantic_hash": "d5eb27494594f9972b3a08cb95910dc1" + }, + "apps/electron-vite-project/electron/main/llm/localLlmRuntimeStatus.ts": { + "mtime": 1786206352.1507106, + "ast_hash": "4c9a08d489de48702e048a59d5b47392", + "semantic_hash": "4c9a08d489de48702e048a59d5b47392" + }, + "apps/electron-vite-project/electron/main/llm/localLlmServerConfig.ts": { + "mtime": 1786206352.1507106, + "ast_hash": "0aa7ea7709d425b1a4d6510ae0e3f721", + "semantic_hash": "0aa7ea7709d425b1a4d6510ae0e3f721" + }, + "apps/electron-vite-project/electron/main/llm/localLlmServerConfigApi.ts": { + "mtime": 1786206352.1507106, + "ast_hash": "1413f92fe86a71f531313eb0efd39aec", + "semantic_hash": "1413f92fe86a71f531313eb0efd39aec" + }, + "apps/electron-vite-project/electron/main/llm/localModelIdentity.ts": { + "mtime": 1786206352.1507106, + "ast_hash": "2f349c28697b31c6769f2e985b4210ad", + "semantic_hash": "2f349c28697b31c6769f2e985b4210ad" + }, + "apps/electron-vite-project/electron/main/llm/modeModelWarmupTrigger.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "c48865353541c020cda846ff38ee3cda", + "semantic_hash": "c48865353541c020cda846ff38ee3cda" + }, + "apps/electron-vite-project/electron/main/llm/ollamaEmbeddingCapability.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "ae134297e24ee0def2034e056bb6d58f", + "semantic_hash": "ae134297e24ee0def2034e056bb6d58f" + }, + "apps/electron-vite-project/electron/main/llm/openAiSseChatStream.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "265f6ee279401e2df351b21fd6bd8c18", + "semantic_hash": "265f6ee279401e2df351b21fd6bd8c18" + }, + "apps/electron-vite-project/electron/main/llm/resolveAiExecutionContext.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "4389bce156eb2e4dd77cf80dc472b20b", + "semantic_hash": "4389bce156eb2e4dd77cf80dc472b20b" + }, + "apps/electron-vite-project/electron/main/llm/resolveDeclaredModelAvailability.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "73f5b2fcabbc6bee3f8ae8182a837e2f", + "semantic_hash": "73f5b2fcabbc6bee3f8ae8182a837e2f" + }, + "apps/electron-vite-project/electron/main/llm/rotating-logger.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "b34814fdac0ea6b207927db2c706c0f9", + "semantic_hash": "b34814fdac0ea6b207927db2c706c0f9" + }, + "apps/electron-vite-project/electron/main/llm/startupWarmup.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "f66e1d64a68b271e71b4c9474163beac", + "semantic_hash": "f66e1d64a68b271e71b4c9474163beac" + }, + "apps/electron-vite-project/electron/main/llm/types.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "4aa4b1200b426ebe3bb3c94a8dda8481", + "semantic_hash": "4aa4b1200b426ebe3bb3c94a8dda8481" + }, + "apps/electron-vite-project/electron/main/llm/warmModel.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "bf95c010f948da428d6e9cb6037dd710", + "semantic_hash": "bf95c010f948da428d6e9cb6037dd710" + }, + "apps/electron-vite-project/electron/main/llm/warmupOnServerHealthy.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "e76bceaa2847a421b69f3e0650410e3f", + "semantic_hash": "e76bceaa2847a421b69f3e0650410e3f" + }, + "apps/electron-vite-project/electron/main/mainWindowAccessor.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "2c0afa822b75eab9fef1f0d400e384c3", + "semantic_hash": "2c0afa822b75eab9fef1f0d400e384c3" + }, + "apps/electron-vite-project/electron/main/ocr/cloudConfigFromOptimandoKeys.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "b14e291be770b12d75f283185eadaf99", + "semantic_hash": "b14e291be770b12d75f283185eadaf99" + }, + "apps/electron-vite-project/electron/main/ocr/index.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "252fc9b1a887aae138c8cbbcc1a6986f", + "semantic_hash": "252fc9b1a887aae138c8cbbcc1a6986f" + }, + "apps/electron-vite-project/electron/main/ocr/ipc.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "ced30d279639d518de099928912dc36f", + "semantic_hash": "ced30d279639d518de099928912dc36f" + }, + "apps/electron-vite-project/electron/main/ocr/ocr-service.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "3c4131e60aaf69aa6f1867bbbc980141", + "semantic_hash": "3c4131e60aaf69aa6f1867bbbc980141" + }, + "apps/electron-vite-project/electron/main/ocr/router.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "8e8ce8fa8fe9922889b58e7566fa037a", + "semantic_hash": "8e8ce8fa8fe9922889b58e7566fa037a" + }, + "apps/electron-vite-project/electron/main/ocr/types.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "84f64e6957ec7bfb9cb322a5d937e7e4", + "semantic_hash": "84f64e6957ec7bfb9cb322a5d937e7e4" + }, + "apps/electron-vite-project/electron/main/orchestrator-db/__tests__/beapSessionImportRun.test.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "e75ec12f68a6bbd9b45fd2c2e68ebf8f", + "semantic_hash": "e75ec12f68a6bbd9b45fd2c2e68ebf8f" + }, + "apps/electron-vite-project/electron/main/orchestrator-db/__tests__/sessionKeyUtils.test.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "073d53fbc20cee4f2eb0c4b97d3e822f", + "semantic_hash": "073d53fbc20cee4f2eb0c4b97d3e822f" + }, + "apps/electron-vite-project/electron/main/orchestrator-db/beapRunAutomationWaiter.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "4979bb49f942af522b0585d8cfa1f223", + "semantic_hash": "4979bb49f942af522b0585d8cfa1f223" + }, + "apps/electron-vite-project/electron/main/orchestrator-db/beapSessionImportRun.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "522c45319344ee14c3ea72d1925313c2", + "semantic_hash": "522c45319344ee14c3ea72d1925313c2" + }, + "apps/electron-vite-project/electron/main/orchestrator-db/db.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "4e11f90209046aed2a7a6b9150a807ed", + "semantic_hash": "4e11f90209046aed2a7a6b9150a807ed" + }, + "apps/electron-vite-project/electron/main/orchestrator-db/service.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "e85e9f078449456b99c066e2a2723d75", + "semantic_hash": "e85e9f078449456b99c066e2a2723d75" + }, + "apps/electron-vite-project/electron/main/orchestrator-db/sessionImportArtefactUnwrap.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "bfd3f45bbfba6491c587e46d31b8f30d", + "semantic_hash": "bfd3f45bbfba6491c587e46d31b8f30d" + }, + "apps/electron-vite-project/electron/main/orchestrator-db/sessionKeyUtils.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "5061d79dbacf51c87cd8899d6e6a01c5", + "semantic_hash": "5061d79dbacf51c87cd8899d6e6a01c5" + }, + "apps/electron-vite-project/electron/main/orchestrator-db/types.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "87bfc838122828ee71d86bb155ff4a41", + "semantic_hash": "87bfc838122828ee71d86bb155ff4a41" + }, + "apps/electron-vite-project/electron/main/orchestrator/broadcastModeChange.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "43e4195ff47080d148c46eeac0b2a41e", + "semantic_hash": "43e4195ff47080d148c46eeac0b2a41e" + }, + "apps/electron-vite-project/electron/main/orchestrator/ipc.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "c7ac5f47cc7750bffcb2fa76cbc5d6f9", + "semantic_hash": "c7ac5f47cc7750bffcb2fa76cbc5d6f9" + }, + "apps/electron-vite-project/electron/main/orchestrator/orchestratorModeStore.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "4596237f52c5fee0b87924c5a2e5da72", + "semantic_hash": "4596237f52c5fee0b87924c5a2e5da72" + }, + "apps/electron-vite-project/electron/main/p2p/__tests__/beapDeliveryAck.test.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "91ae5fcc1e2aa0bf6bc64734a8726f15", + "semantic_hash": "91ae5fcc1e2aa0bf6bc64734a8726f15" + }, + "apps/electron-vite-project/electron/main/p2p/__tests__/coordination-client.test.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "8a001ee4c75fd0b9269f78ad4866f353", + "semantic_hash": "8a001ee4c75fd0b9269f78ad4866f353" + }, + "apps/electron-vite-project/electron/main/p2p/__tests__/coordinationSamePrincipalInbound.test.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "07fd52efc16e282c35ae8537309ad2ef", + "semantic_hash": "07fd52efc16e282c35ae8537309ad2ef" + }, + "apps/electron-vite-project/electron/main/p2p/__tests__/coordinationUrlLocalDial.test.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "4dfb5c65df92a0a5cb835540095eabf9", + "semantic_hash": "4dfb5c65df92a0a5cb835540095eabf9" + }, + "apps/electron-vite-project/electron/main/p2p/__tests__/relay-integration.test.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "d752403c392c2c4f83504c09f46a23eb", + "semantic_hash": "d752403c392c2c4f83504c09f46a23eb" + }, + "apps/electron-vite-project/electron/main/p2p/__tests__/relayPull.deviceRegister.test.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "ad6cb129f515175b1f785c0f3d59dba8", + "semantic_hash": "ad6cb129f515175b1f785c0f3d59dba8" + }, + "apps/electron-vite-project/electron/main/p2p/__tests__/relayPull.messageRelay.test.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "b61366d521c87e26bd810dc35b6bee1f", + "semantic_hash": "b61366d521c87e26bd810dc35b6bee1f" + }, + "apps/electron-vite-project/electron/main/p2p/__tests__/relaySync.coordination403.test.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "359d60703c83d863ad84bab58e3ce422", + "semantic_hash": "359d60703c83d863ad84bab58e3ce422" + }, + "apps/electron-vite-project/electron/main/p2p/beapDeliveryAck.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "8a1b51ef30a24f8c38564e5aecfe787d", + "semantic_hash": "8a1b51ef30a24f8c38564e5aecfe787d" + }, + "apps/electron-vite-project/electron/main/p2p/beapIngressLog.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "b1b5907497926f49b14c3d00e4ff05d1", + "semantic_hash": "b1b5907497926f49b14c3d00e4ff05d1" + }, + "apps/electron-vite-project/electron/main/p2p/beapRecipientNotify.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "e433410b2a2c3ee509d04bfea6442941", + "semantic_hash": "e433410b2a2c3ee509d04bfea6442941" + }, + "apps/electron-vite-project/electron/main/p2p/coordinationFlushQueued.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "6f9dead7b72a50b6f5b22367677c718d", + "semantic_hash": "6f9dead7b72a50b6f5b22367677c718d" + }, + "apps/electron-vite-project/electron/main/p2p/coordinationHandshakePostIngest.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "3d876b0c2ecebdcaa75e7ad93a101587", + "semantic_hash": "3d876b0c2ecebdcaa75e7ad93a101587" + }, + "apps/electron-vite-project/electron/main/p2p/coordinationSamePrincipalInbound.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "a47af453b7051649b5fc11abd54ac7ec", + "semantic_hash": "a47af453b7051649b5fc11abd54ac7ec" + }, + "apps/electron-vite-project/electron/main/p2p/coordinationUrlLocalDial.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "fa3f4ed324e7304e43b10012dc6dfcb6", + "semantic_hash": "fa3f4ed324e7304e43b10012dc6dfcb6" + }, + "apps/electron-vite-project/electron/main/p2p/coordinationWs.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "f5a069faa930b41c28a3d3349e72dc7c", + "semantic_hash": "f5a069faa930b41c28a3d3349e72dc7c" + }, + "apps/electron-vite-project/electron/main/p2p/coordinationWsHolder.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "2f9622d51165361df9bb532699feaefe", + "semantic_hash": "2f9622d51165361df9bb532699feaefe" + }, + "apps/electron-vite-project/electron/main/p2p/coordinationWsLifecycle.test.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "9d1a2beda850f74c6780f9d59ef10e93", + "semantic_hash": "9d1a2beda850f74c6780f9d59ef10e93" + }, + "apps/electron-vite-project/electron/main/p2p/p2pConfig.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "566eec461a18dde6485912ac94762856", + "semantic_hash": "566eec461a18dde6485912ac94762856" + }, + "apps/electron-vite-project/electron/main/p2p/p2pHealth.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "b0f8a001df40397ed155b1dce1d90ef9", + "semantic_hash": "b0f8a001df40397ed155b1dce1d90ef9" + }, + "apps/electron-vite-project/electron/main/p2p/peerDeliveryAck.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "b115b9593d291140861bcce9bd9ce300", + "semantic_hash": "b115b9593d291140861bcce9bd9ce300" + }, + "apps/electron-vite-project/electron/main/p2p/rateLimiter.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "c930579f87ad6354225fce35b3c7ca84", + "semantic_hash": "c930579f87ad6354225fce35b3c7ca84" + }, + "apps/electron-vite-project/electron/main/p2p/relayDeviceBinding.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "8fbc90fac704210063f4ef5999e0f067", + "semantic_hash": "8fbc90fac704210063f4ef5999e0f067" + }, + "apps/electron-vite-project/electron/main/p2p/relayIdentity.test.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "5a496bdff2a02be0ee520aff765654b6", + "semantic_hash": "5a496bdff2a02be0ee520aff765654b6" + }, + "apps/electron-vite-project/electron/main/p2p/relayIdentity.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "d810e529a29979e0a2a60e9619caae5c", + "semantic_hash": "d810e529a29979e0a2a60e9619caae5c" + }, + "apps/electron-vite-project/electron/main/p2p/relayPull.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "1a12c0a3b3403ea5b58ff036784bdd42", + "semantic_hash": "1a12c0a3b3403ea5b58ff036784bdd42" + }, + "apps/electron-vite-project/electron/main/p2p/relaySync.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "f858cbbf532e152754e766cb213ae559", + "semantic_hash": "f858cbbf532e152754e766cb213ae559" + }, + "apps/electron-vite-project/electron/main/pdfjsWorkerSrc.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "01e6764fec83af0e2262fd80b664dde5", + "semantic_hash": "01e6764fec83af0e2262fd80b664dde5" + }, + "apps/electron-vite-project/electron/main/platform.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "10f792e05922073b037a3be74cde8b6b", + "semantic_hash": "10f792e05922073b037a3be74cde8b6b" + }, + "apps/electron-vite-project/electron/main/policy/db.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "621842d8b7c99f3d01be238155c0c1c6", + "semantic_hash": "621842d8b7c99f3d01be238155c0c1c6" + }, + "apps/electron-vite-project/electron/main/policy/index.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "9cbb070f4c6b6a237833877c6b51d940", + "semantic_hash": "9cbb070f4c6b6a237833877c6b51d940" + }, + "apps/electron-vite-project/electron/main/policy/service.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "1c916c359f7853ee4cee758efdeaa046", + "semantic_hash": "1c916c359f7853ee4cee758efdeaa046" + }, + "apps/electron-vite-project/electron/main/policy/types.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "183e25a4296ea8cf468b95702add52d0", + "semantic_hash": "183e25a4296ea8cf468b95702add52d0" + }, + "apps/electron-vite-project/electron/main/projects/optimizerHttpInvoke.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "cef25521d10ba001f3fc9a2319bd5ff4", + "semantic_hash": "cef25521d10ba001f3fc9a2319bd5ff4" + }, + "apps/electron-vite-project/electron/main/projects/triggerProjectList.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "70ef781b1e62f96e68267def1d1852ca", + "semantic_hash": "70ef781b1e62f96e68267def1d1852ca" + }, + "apps/electron-vite-project/electron/main/quarantine-blob-storage/index.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "b559037830966c2dd14c4f44fbe3ade9", + "semantic_hash": "b559037830966c2dd14c4f44fbe3ade9" + }, + "apps/electron-vite-project/electron/main/quarantine-encrypt/index.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "23d90d7ffdc0fe20a15722d16e6f2e03", + "semantic_hash": "23d90d7ffdc0fe20a15722d16e6f2e03" + }, + "apps/electron-vite-project/electron/main/retention/__tests__/retentionJob.test.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "c3bde5f41664026ec01432e5fa6c8f90", + "semantic_hash": "c3bde5f41664026ec01432e5fa6c8f90" + }, + "apps/electron-vite-project/electron/main/retention/retentionConfig.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "711c30346d2d1da446516f8f9bed814a", + "semantic_hash": "711c30346d2d1da446516f8f9bed814a" + }, + "apps/electron-vite-project/electron/main/retention/retentionJob.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "99e420bb0e75489aedd59256669c1e7c", + "semantic_hash": "99e420bb0e75489aedd59256669c1e7c" + }, + "apps/electron-vite-project/electron/main/sandbox/__tests__/sandboxInterface.test.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "8b21ee778cd119d8bc4a2bcc6bcb2cb7", + "semantic_hash": "8b21ee778cd119d8bc4a2bcc6bcb2cb7" + }, + "apps/electron-vite-project/electron/main/sandbox/__tests__/sandboxOutboundPolicy.test.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "5234f022216ebdf567dc3bacea1a20dc", + "semantic_hash": "5234f022216ebdf567dc3bacea1a20dc" + }, + "apps/electron-vite-project/electron/main/sandbox/__tests__/sandboxProcess.test.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "825434cf405a44b6f1cd6c7142cf9225", + "semantic_hash": "825434cf405a44b6f1cd6c7142cf9225" + }, + "apps/electron-vite-project/electron/main/sandbox/sandboxClient.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "5659906f9cc531d9daa286ae289842dc", + "semantic_hash": "5659906f9cc531d9daa286ae289842dc" + }, + "apps/electron-vite-project/electron/main/sandbox/sandboxOutboundPolicy.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "fc1f02c58d24d003b7f3e9fa6137ed78", + "semantic_hash": "fc1f02c58d24d003b7f3e9fa6137ed78" + }, + "apps/electron-vite-project/electron/main/sandbox/sandboxProcessBridge.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "d21127c3e244007d15f983e757e90554", + "semantic_hash": "d21127c3e244007d15f983e757e90554" + }, + "apps/electron-vite-project/electron/main/sandbox/sandboxServiceStub.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "afed7028b81989a989bbbe51312cfa25", + "semantic_hash": "afed7028b81989a989bbbe51312cfa25" + }, + "apps/electron-vite-project/electron/main/sandbox/sandboxWorker.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "b30231b851cfd8f861bf372fc538e2ce", + "semantic_hash": "b30231b851cfd8f861bf372fc538e2ce" + }, + "apps/electron-vite-project/electron/main/sandbox/types.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "4af0046b9f88587c40c7321675406cb4", + "semantic_hash": "4af0046b9f88587c40c7321675406cb4" + }, + "apps/electron-vite-project/electron/main/sealed-storage/__tests__/b73AttachmentHashVerification.test.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "be778a1fb60698eea057076d6bf30bf3", + "semantic_hash": "be778a1fb60698eea057076d6bf30bf3" + }, + "apps/electron-vite-project/electron/main/sealed-storage/__tests__/sealedQueryDualProvider.test.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "766abfdfe14a1a655f85b8756bbe3bff", + "semantic_hash": "766abfdfe14a1a655f85b8756bbe3bff" + }, + "apps/electron-vite-project/electron/main/sealed-storage/__tests__/structural-property.test.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "f3e96ddc39c26043d6cf75348844d0e0", + "semantic_hash": "f3e96ddc39c26043d6cf75348844d0e0" + }, + "apps/electron-vite-project/electron/main/sealed-storage/index.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "8ccde8c2b42f553c8d10a12107c89ab2", + "semantic_hash": "8ccde8c2b42f553c8d10a12107c89ab2" + }, + "apps/electron-vite-project/electron/main/sealed-storage/ledgerSealKey.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "84650f0ae3d4a76f2783fd370d6d0e62", + "semantic_hash": "84650f0ae3d4a76f2783fd370d6d0e62" + }, + "apps/electron-vite-project/electron/main/security/__tests__/ed25519WeakKey.test.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "048c749cc64c550d00ce501c25a112f5", + "semantic_hash": "048c749cc64c550d00ce501c25a112f5" + }, + "apps/electron-vite-project/electron/main/security/cryptoFingerprint.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "672d60d0cf1dbe8f9c7fcffde302fc41", + "semantic_hash": "672d60d0cf1dbe8f9c7fcffde302fc41" + }, + "apps/electron-vite-project/electron/main/security/ed25519WeakKey.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "6d8cc7519fa94f71c1f050172828ffc6", + "semantic_hash": "6d8cc7519fa94f71c1f050172828ffc6" + }, + "apps/electron-vite-project/electron/main/security/secureOperationResult.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "5c1a09c655ebec66ba8b6352ea09fc08", + "semantic_hash": "5c1a09c655ebec66ba8b6352ea09fc08" + }, + "apps/electron-vite-project/electron/main/serviceRpc/__tests__/sealedServiceRpc.deviceKeyOpen.test.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "e7826ca3226da76221f38724d10a1756", + "semantic_hash": "e7826ca3226da76221f38724d10a1756" + }, + "apps/electron-vite-project/electron/main/serviceRpc/__tests__/sealedServiceRpc.test.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "f4182707d96fdb6fc2dd693560d06348", + "semantic_hash": "f4182707d96fdb6fc2dd693560d06348" + }, + "apps/electron-vite-project/electron/main/serviceRpc/sealedServiceRpc.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "422fc968ab41a367154671f3bdb92c8a", + "semantic_hash": "422fc968ab41a367154671f3bdb92c8a" + }, + "apps/electron-vite-project/electron/main/utils/keyFingerprint.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "3d32609203283ef5b9d0bba0982bb4ef", + "semantic_hash": "3d32609203283ef5b9d0bba0982bb4ef" + }, + "apps/electron-vite-project/electron/main/validator-process/__tests__/lifecycle.test.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "5127b8f9fcbb47ca140a3d5861f6995e", + "semantic_hash": "5127b8f9fcbb47ca140a3d5861f6995e" + }, + "apps/electron-vite-project/electron/main/validator-process/index.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "cf88d6d13057c3d2a77505c75424cb67", + "semantic_hash": "cf88d6d13057c3d2a77505c75424cb67" + }, + "apps/electron-vite-project/electron/main/validator-process/orchestrator.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "dda32aeacc37a9164acf9a274379c12a", + "semantic_hash": "dda32aeacc37a9164acf9a274379c12a" + }, + "apps/electron-vite-project/electron/main/validator-process/test-session.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "a2e8affd669f32e9876658abb116d6be", + "semantic_hash": "a2e8affd669f32e9876658abb116d6be" + }, + "apps/electron-vite-project/electron/main/validatorReadiness.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "f4b79050959a467dd87df2d086f11243", + "semantic_hash": "f4b79050959a467dd87df2d086f11243" + }, + "apps/electron-vite-project/electron/main/vault/atomicWrite.test.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "625be36f5029ba997573920c114d8070", + "semantic_hash": "625be36f5029ba997573920c114d8070" + }, + "apps/electron-vite-project/electron/main/vault/atomicWrite.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "8f1d368ec5c0de20984240591b65b0d3", + "semantic_hash": "8f1d368ec5c0de20984240591b65b0d3" + }, + "apps/electron-vite-project/electron/main/vault/cache.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "521363a7090a2b117e5d6965eb447e45", + "semantic_hash": "521363a7090a2b117e5d6965eb447e45" + }, + "apps/electron-vite-project/electron/main/vault/capabilities.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "0378a2833b9ec7821da4eb5dcbff642e", + "semantic_hash": "0378a2833b9ec7821da4eb5dcbff642e" + }, + "apps/electron-vite-project/electron/main/vault/capabilityBroker.test.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "ac57e791d2e648a57591087c3381214a", + "semantic_hash": "ac57e791d2e648a57591087c3381214a" + }, + "apps/electron-vite-project/electron/main/vault/capabilityBroker.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "128407e5d2e506436932c891a81d9ded", + "semantic_hash": "128407e5d2e506436932c891a81d9ded" + }, + "apps/electron-vite-project/electron/main/vault/capabilityGate.test.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "29829012150d072a23a3a82a1160dd7d", + "semantic_hash": "29829012150d072a23a3a82a1160dd7d" + }, + "apps/electron-vite-project/electron/main/vault/challengeStore.test.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "ca73c0c123bb7e4a8faf8f2803e7e8c6", + "semantic_hash": "ca73c0c123bb7e4a8faf8f2803e7e8c6" + }, + "apps/electron-vite-project/electron/main/vault/challengeStore.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "57974baf5188c28bd65aa9a21b414392", + "semantic_hash": "57974baf5188c28bd65aa9a21b414392" + }, + "apps/electron-vite-project/electron/main/vault/crypto.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "c4bcc4b04c15ac83ccd215d8099d35c5", + "semantic_hash": "c4bcc4b04c15ac83ccd215d8099d35c5" + }, + "apps/electron-vite-project/electron/main/vault/db.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "ab151095e377be8b667caae5ac4f8f42", + "semantic_hash": "ab151095e377be8b667caae5ac4f8f42" + }, + "apps/electron-vite-project/electron/main/vault/documentService.test.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "c06735b79f0ab1976289cfb34744f113", + "semantic_hash": "c06735b79f0ab1976289cfb34744f113" + }, + "apps/electron-vite-project/electron/main/vault/documentService.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "e0d2f5f580cbb74a29e117c0e93c8b54", + "semantic_hash": "e0d2f5f580cbb74a29e117c0e93c8b54" + }, + "apps/electron-vite-project/electron/main/vault/envelope.test.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "29a6168be75e3a3b898d1f51faee152a", + "semantic_hash": "29a6168be75e3a3b898d1f51faee152a" + }, + "apps/electron-vite-project/electron/main/vault/envelope.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "605fee261f92870b8f879024c8ba38b8", + "semantic_hash": "605fee261f92870b8f879024c8ba38b8" + }, + "apps/electron-vite-project/electron/main/vault/hsContextAccessService.test.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "21ce4f0bb8b49bb5a1e8267ee9e4ae88", + "semantic_hash": "21ce4f0bb8b49bb5a1e8267ee9e4ae88" + }, + "apps/electron-vite-project/electron/main/vault/hsContextAccessService.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "78cdde9f3d257fd9040eddf82e4def1b", + "semantic_hash": "78cdde9f3d257fd9040eddf82e4def1b" + }, + "apps/electron-vite-project/electron/main/vault/hsContextNormalize.test.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "9a89435aac053e4ed0e9ed3af8c20817", + "semantic_hash": "9a89435aac053e4ed0e9ed3af8c20817" + }, + "apps/electron-vite-project/electron/main/vault/hsContextNormalize.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "f540791bad991aeb5c1317c8cd5ef0bf", + "semantic_hash": "f540791bad991aeb5c1317c8cd5ef0bf" + }, + "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.test.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "329258833cd8a569e721ab061982f4de", + "semantic_hash": "329258833cd8a569e721ab061982f4de" + }, + "apps/electron-vite-project/electron/main/vault/hsContextOcrJob.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "5eb251f084ff3b1802fbe84252332257", + "semantic_hash": "5eb251f084ff3b1802fbe84252332257" + }, + "apps/electron-vite-project/electron/main/vault/hsContextProfileService.test.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "88f076a668a8106f0664f3e68f8471a1", + "semantic_hash": "88f076a668a8106f0664f3e68f8471a1" + }, + "apps/electron-vite-project/electron/main/vault/hsContextProfileService.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "8c4ac4888405a612443b8a6f2a720ffc", + "semantic_hash": "8c4ac4888405a612443b8a6f2a720ffc" + }, + "apps/electron-vite-project/electron/main/vault/hsContextServiceRegression.test.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "65fc75b8ba144b833b722f616aeb9105", + "semantic_hash": "65fc75b8ba144b833b722f616aeb9105" + }, + "apps/electron-vite-project/electron/main/vault/lazyDecrypt.test.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "1c8b658d33770293d9863f72113b8c06", + "semantic_hash": "1c8b658d33770293d9863f72113b8c06" + }, + "apps/electron-vite-project/electron/main/vault/rpc.ts": { + "mtime": 1786206352.1627088, + "ast_hash": "37bc3fd8362199f02eada05977d51781", + "semantic_hash": "37bc3fd8362199f02eada05977d51781" + }, + "apps/electron-vite-project/electron/main/vault/rpcAuth.test.ts": { + "mtime": 1786206352.1627088, + "ast_hash": "47ebe4a6b69521b12534bad54c85399b", + "semantic_hash": "47ebe4a6b69521b12534bad54c85399b" + }, + "apps/electron-vite-project/electron/main/vault/schemas.ts": { + "mtime": 1786206352.1627088, + "ast_hash": "213d0f87fbeed7df95fb62d2490e7604", + "semantic_hash": "213d0f87fbeed7df95fb62d2490e7604" + }, + "apps/electron-vite-project/electron/main/vault/security-regression.test.ts": { + "mtime": 1786206352.1627088, + "ast_hash": "fc59ade231798d9c3233a946666a78b2", + "semantic_hash": "fc59ade231798d9c3233a946666a78b2" + }, + "apps/electron-vite-project/electron/main/vault/service.ts": { + "mtime": 1786206352.1627088, + "ast_hash": "276ddc2941d8d0aa838be4566cd2b022", + "semantic_hash": "276ddc2941d8d0aa838be4566cd2b022" + }, + "apps/electron-vite-project/electron/main/vault/sessionLock.test.ts": { + "mtime": 1786206352.1627088, + "ast_hash": "189029c484742d09a93e3bb72e14ce3e", + "semantic_hash": "189029c484742d09a93e3bb72e14ce3e" + }, + "apps/electron-vite-project/electron/main/vault/sessionPlanExtraction.test.ts": { + "mtime": 1786206352.1627088, + "ast_hash": "da7e1503fb39397795db4b31489b99d8", + "semantic_hash": "da7e1503fb39397795db4b31489b99d8" + }, + "apps/electron-vite-project/electron/main/vault/tierResolution.test.ts": { + "mtime": 1786206352.1627088, + "ast_hash": "3f6084e9ea6d6a2c3458f8eec1e40cae", + "semantic_hash": "3f6084e9ea6d6a2c3458f8eec1e40cae" + }, + "apps/electron-vite-project/electron/main/vault/types.ts": { + "mtime": 1786206352.1627088, + "ast_hash": "599eebe81fada6a9f715efb84face19a", + "semantic_hash": "599eebe81fada6a9f715efb84face19a" + }, + "apps/electron-vite-project/electron/main/vault/unlockProvider.ts": { + "mtime": 1786206352.1627088, + "ast_hash": "44025b1beff68b3a391078ff2f22e601", + "semantic_hash": "44025b1beff68b3a391078ff2f22e601" + }, + "apps/electron-vite-project/electron/main/vault/vaultAccountGuards.ts": { + "mtime": 1786206352.1627088, + "ast_hash": "174ea55823c64479fd1d9dce19616c55", + "semantic_hash": "174ea55823c64479fd1d9dce19616c55" + }, + "apps/electron-vite-project/electron/main/vault/vaultAccountIsolation.test.ts": { + "mtime": 1786206352.1627088, + "ast_hash": "c0f57985202bc66f67741121173ca70d", + "semantic_hash": "c0f57985202bc66f67741121173ca70d" + }, + "apps/electron-vite-project/electron/main/vault/vaultApiKeyService.ts": { + "mtime": 1786206352.1627088, + "ast_hash": "212708e05b59cd52c0ab111eab515558", + "semantic_hash": "212708e05b59cd52c0ab111eab515558" + }, + "apps/electron-vite-project/electron/main/vault/vaultCanon.ts": { + "mtime": 1786206352.1627088, + "ast_hash": "e805d305a4aca231200fd93a94f4cc98", + "semantic_hash": "e805d305a4aca231200fd93a94f4cc98" + }, + "apps/electron-vite-project/electron/main/vault/vaultOwnerIdentity.ts": { + "mtime": 1786206352.1627088, + "ast_hash": "77ac515834984949da225560cd6c5a71", + "semantic_hash": "77ac515834984949da225560cd6c5a71" + }, + "apps/electron-vite-project/electron/main/vault/vsbt.test.ts": { + "mtime": 1786206352.1627088, + "ast_hash": "016fa85271116680de2b0ae2c5777884", + "semantic_hash": "016fa85271116680de2b0ae2c5777884" + }, + "apps/electron-vite-project/electron/preload.ts": { + "mtime": 1786206352.1627088, + "ast_hash": "14ef0a4ea2715cec04265d2427277bff", + "semantic_hash": "14ef0a4ea2715cec04265d2427277bff" + }, + "apps/electron-vite-project/electron/preload/webrtcTransportPreload.ts": { + "mtime": 1786206352.1627088, + "ast_hash": "639e9c6aa977b1db32ce33b76b534336", + "semantic_hash": "639e9c6aa977b1db32ce33b76b534336" + }, + "apps/electron-vite-project/electron/storage/PostgresAdapter.ts": { + "mtime": 1786206352.1627088, + "ast_hash": "c58d4e2deb6117dec36e617da7bba50a", + "semantic_hash": "c58d4e2deb6117dec36e617da7bba50a" + }, + "apps/electron-vite-project/electron/storage/migrations.ts": { + "mtime": 1786206352.1627088, + "ast_hash": "5c31802e0b6749542d04b5e271badf53", + "semantic_hash": "5c31802e0b6749542d04b5e271badf53" + }, + "apps/electron-vite-project/electron/storage/migrations/001_kv_store.sql": { + "mtime": 1786206352.1627088, + "ast_hash": "144b81287d832443c8a3c02efadcef03", + "semantic_hash": "144b81287d832443c8a3c02efadcef03" + }, + "apps/electron-vite-project/electron/userDataBootstrapState.ts": { + "mtime": 1786206352.1627088, + "ast_hash": "b657bea8d21faf3246724f7165b2421a", + "semantic_hash": "b657bea8d21faf3246724f7165b2421a" + }, + "apps/electron-vite-project/electron/watchdog/watchdogService.ts": { + "mtime": 1786206352.1627088, + "ast_hash": "778bcef79d24f0c92af013614d5ab02d", + "semantic_hash": "778bcef79d24f0c92af013614d5ab02d" + }, + "apps/electron-vite-project/electron/wrChatSurface.ts": { + "mtime": 1786206352.1627088, + "ast_hash": "d451a1c4bc1706f2615c2e7ba9cb9fca", + "semantic_hash": "d451a1c4bc1706f2615c2e7ba9cb9fca" + }, + "apps/electron-vite-project/get-logs.ps1": { + "mtime": 1786206352.1627088, + "ast_hash": "10e314a2e98ce0e49c2fea5cbd60fd12", + "semantic_hash": "10e314a2e98ce0e49c2fea5cbd60fd12" + }, + "apps/electron-vite-project/main.js": { + "mtime": 1786206352.1627088, + "ast_hash": "f05cc32768d07011d0eabd0dbdd261a0", + "semantic_hash": "f05cc32768d07011d0eabd0dbdd261a0" + }, + "apps/electron-vite-project/package.json": { + "mtime": 1786206352.1627088, + "ast_hash": "8d6c9c69bdab269a9dcd033c78d69dff", + "semantic_hash": "8d6c9c69bdab269a9dcd033c78d69dff" + }, + "apps/electron-vite-project/query-orchestrator-api.ps1": { + "mtime": 1786206352.1627088, + "ast_hash": "16b1b3bb00c9542eadd9365d90e404a4", + "semantic_hash": "16b1b3bb00c9542eadd9365d90e404a4" + }, + "apps/electron-vite-project/read-electron-logs.ps1": { + "mtime": 1786206352.1627088, + "ast_hash": "19cec2a17149308e165c1d9e0ae12949", + "semantic_hash": "19cec2a17149308e165c1d9e0ae12949" + }, + "apps/electron-vite-project/rebuild-and-restart.ps1": { + "mtime": 1786206352.1627088, + "ast_hash": "7c9889555a5fa9c5ef8b71dd9a92bce5", + "semantic_hash": "7c9889555a5fa9c5ef8b71dd9a92bce5" + }, + "apps/electron-vite-project/rebuild.sh": { + "mtime": 1786206352.1627088, + "ast_hash": "c83c5e8748a2fb3f82fd8557c334f28a", + "semantic_hash": "c83c5e8748a2fb3f82fd8557c334f28a" + }, + "apps/electron-vite-project/reset-vault.ps1": { + "mtime": 1786206352.1627088, + "ast_hash": "97fb48d40a08f5f18a406f86c8fb5599", + "semantic_hash": "97fb48d40a08f5f18a406f86c8fb5599" + }, + "apps/electron-vite-project/restart-opengiraffe.ps1": { + "mtime": 1786206352.1627088, + "ast_hash": "7492bdabc35abf23186aff077342fdf2", + "semantic_hash": "7492bdabc35abf23186aff077342fdf2" + }, + "apps/electron-vite-project/scripts/build-workspace-ingestion-core.cjs": { + "mtime": 1786206352.1627088, + "ast_hash": "c147375ceec8db2533b18fc1ea36fa36", + "semantic_hash": "c147375ceec8db2533b18fc1ea36fa36" + }, + "apps/electron-vite-project/scripts/clean-windows-build-output.cjs": { + "mtime": 1786206352.1627088, + "ast_hash": "985f7266ccaa11452d9e886adeed9119", + "semantic_hash": "985f7266ccaa11452d9e886adeed9119" + }, + "apps/electron-vite-project/scripts/clean.cjs": { + "mtime": 1786206352.1627088, + "ast_hash": "f6d36454a2dbcb09c917d992529bb92c", + "semantic_hash": "f6d36454a2dbcb09c917d992529bb92c" + }, + "apps/electron-vite-project/scripts/clear-build-caches.cjs": { + "mtime": 1786206352.1627088, + "ast_hash": "1428455e18b2bbed07e3fc298dff714c", + "semantic_hash": "1428455e18b2bbed07e3fc298dff714c" + }, + "apps/electron-vite-project/scripts/copy-pnpm-transitive-deps.cjs": { + "mtime": 1786206352.1627088, + "ast_hash": "b495ee184288afce0cd48d44abb61a4b", + "semantic_hash": "b495ee184288afce0cd48d44abb61a4b" + }, + "apps/electron-vite-project/scripts/diagnose-websocket.js": { + "mtime": 1786206352.1627088, + "ast_hash": "62dfe2c5b4593f483e0751fc4e1a4b7f", + "semantic_hash": "62dfe2c5b4593f483e0751fc4e1a4b7f" + }, + "apps/electron-vite-project/scripts/dist-clean-artifacts.cjs": { + "mtime": 1786206352.1627088, + "ast_hash": "be6a9f7cf1dafa40d376900b29b5a8cc", + "semantic_hash": "be6a9f7cf1dafa40d376900b29b5a8cc" + }, + "apps/electron-vite-project/scripts/guest/__tests__/winHomeGuest.test.ts": { + "mtime": 1786206352.1627088, + "ast_hash": "5e25a2cd355c47a4a8131317816a8d52", + "semantic_hash": "5e25a2cd355c47a4a8131317816a8d52" + }, + "apps/electron-vite-project/scripts/guest/guestPorts.ts": { + "mtime": 1786206352.1627088, + "ast_hash": "39832f502b114c0350b98222ed856761", + "semantic_hash": "39832f502b114c0350b98222ed856761" + }, + "apps/electron-vite-project/scripts/installer/__tests__/winRoleInstaller.test.ts": { + "mtime": 1786206352.1627088, + "ast_hash": "f35327dfea4250c6bc6c691735935d4a", + "semantic_hash": "f35327dfea4250c6bc6c691735935d4a" + }, + "apps/electron-vite-project/scripts/installer/winRoleEdition.ts": { + "mtime": 1786206352.1627088, + "ast_hash": "385a8e5448e5dc9b328f3e221750c277", + "semantic_hash": "385a8e5448e5dc9b328f3e221750c277" + }, + "apps/electron-vite-project/scripts/kill-stale-build-output-processes.ps1": { + "mtime": 1786206352.1627088, + "ast_hash": "16ebb90c045181065063c17830ce659e", + "semantic_hash": "16ebb90c045181065063c17830ce659e" + }, + "apps/electron-vite-project/scripts/kill-wr-desk-unix.sh": { + "mtime": 1786206352.1627088, + "ast_hash": "e5863d5538972775a42238f17d7d4a48", + "semantic_hash": "e5863d5538972775a42238f17d7d4a48" + }, + "apps/electron-vite-project/scripts/kill-wr-desk.cjs": { + "mtime": 1786206352.1627088, + "ast_hash": "b91e8c61f4c06d42932a4b646095e048", + "semantic_hash": "b91e8c61f4c06d42932a4b646095e048" + }, + "apps/electron-vite-project/scripts/postinstall-native.cjs": { + "mtime": 1786206352.1627088, + "ast_hash": "d225ec3112f204052adda6071a227259", + "semantic_hash": "d225ec3112f204052adda6071a227259" + }, + "apps/electron-vite-project/scripts/prepare-google-oauth-resource.cjs": { + "mtime": 1786206352.1627088, + "ast_hash": "afa86e80af6adb9a6a12aa985ed6bda8", + "semantic_hash": "afa86e80af6adb9a6a12aa985ed6bda8" + }, + "apps/electron-vite-project/scripts/purge-build017.ps1": { + "mtime": 1786206352.1627088, + "ast_hash": "768458eeeca910f80b06aab19790c311", + "semantic_hash": "768458eeeca910f80b06aab19790c311" + }, + "apps/electron-vite-project/scripts/rebuild.cjs": { + "mtime": 1786206352.1627088, + "ast_hash": "e0683d16acbf5945c54e187fd172fd02", + "semantic_hash": "e0683d16acbf5945c54e187fd172fd02" + }, + "apps/electron-vite-project/scripts/repair-handshake-counterparty.ts": { + "mtime": 1786206352.1627088, + "ast_hash": "d140df0554252aa5158bf25bad29469a", + "semantic_hash": "d140df0554252aa5158bf25bad29469a" + }, + "apps/electron-vite-project/scripts/restart.sh": { + "mtime": 1786206352.1627088, + "ast_hash": "a163c1667068c74db2a75251f5ba9abd", + "semantic_hash": "a163c1667068c74db2a75251f5ba9abd" + }, + "apps/electron-vite-project/scripts/run-electron-builder.cjs": { + "mtime": 1786206352.1627088, + "ast_hash": "74bf1c394deac2b15c8b9e89ab7425f8", + "semantic_hash": "74bf1c394deac2b15c8b9e89ab7425f8" + }, + "apps/electron-vite-project/scripts/smoke-pdfjs-parser.cjs": { + "mtime": 1786206352.1627088, + "ast_hash": "ce59f5ef28a2379374cb2925b465c8c7", + "semantic_hash": "ce59f5ef28a2379374cb2925b465c8c7" + }, + "apps/electron-vite-project/scripts/verify-windows-unpacked.cjs": { + "mtime": 1786206352.1627088, + "ast_hash": "32e7f237ad0190e96b3b0e6565a240f5", + "semantic_hash": "32e7f237ad0190e96b3b0e6565a240f5" + }, + "apps/electron-vite-project/src/App.tsx": { + "mtime": 1786206352.166708, + "ast_hash": "da5effa3bb9a04745b831f7ab1d55a7f", + "semantic_hash": "da5effa3bb9a04745b831f7ab1d55a7f" + }, + "apps/electron-vite-project/src/ErrorBoundary.tsx": { + "mtime": 1786206352.166708, + "ast_hash": "2239ed2bab909d459e9916ceec5a1e60", + "semantic_hash": "2239ed2bab909d459e9916ceec5a1e60" + }, + "apps/electron-vite-project/src/auth/capabilities.ts": { + "mtime": 1786206352.166708, + "ast_hash": "1c7b6203649a41c6fb2f697c64365269", + "semantic_hash": "1c7b6203649a41c6fb2f697c64365269" + }, + "apps/electron-vite-project/src/auth/discovery.ts": { + "mtime": 1786206352.166708, + "ast_hash": "c04d11a23d8f607c540f06c01c2512e6", + "semantic_hash": "c04d11a23d8f607c540f06c01c2512e6" + }, + "apps/electron-vite-project/src/auth/jwtVerify.ts": { + "mtime": 1786206352.166708, + "ast_hash": "bb7f8f8b6cacc51a162d25b404adfaeb", + "semantic_hash": "bb7f8f8b6cacc51a162d25b404adfaeb" + }, + "apps/electron-vite-project/src/auth/login.ts": { + "mtime": 1786206352.166708, + "ast_hash": "449d871a3b4b4a9184ca55804b14000c", + "semantic_hash": "449d871a3b4b4a9184ca55804b14000c" + }, + "apps/electron-vite-project/src/auth/logout.ts": { + "mtime": 1786206352.166708, + "ast_hash": "b4a93d813a9952cb033281202a488ae9", + "semantic_hash": "b4a93d813a9952cb033281202a488ae9" + }, + "apps/electron-vite-project/src/auth/loopback.ts": { + "mtime": 1786206352.166708, + "ast_hash": "2ebf4c7b8b04880c50e86dbc5e327e38", + "semantic_hash": "2ebf4c7b8b04880c50e86dbc5e327e38" + }, + "apps/electron-vite-project/src/auth/oidcConfig.ts": { + "mtime": 1786206352.166708, + "ast_hash": "40bac2e4d1094df8b6116446c8ce05dd", + "semantic_hash": "40bac2e4d1094df8b6116446c8ce05dd" + }, + "apps/electron-vite-project/src/auth/pkce.ts": { + "mtime": 1786206352.166708, + "ast_hash": "b02ddfd48de0c4c87b1d015a3b85fdde", + "semantic_hash": "b02ddfd48de0c4c87b1d015a3b85fdde" + }, + "apps/electron-vite-project/src/auth/refresh.ts": { + "mtime": 1786206352.166708, + "ast_hash": "87e886903a788e47b74282665227aec0", + "semantic_hash": "87e886903a788e47b74282665227aec0" + }, + "apps/electron-vite-project/src/auth/session.ts": { + "mtime": 1786206352.166708, + "ast_hash": "63aff2f34f511367e6775151a2f4c590", + "semantic_hash": "63aff2f34f511367e6775151a2f4c590" + }, + "apps/electron-vite-project/src/auth/sessionCache.ts": { + "mtime": 1786206352.166708, + "ast_hash": "bc2934bfec7f8a4f2abfd76df6386f95", + "semantic_hash": "bc2934bfec7f8a4f2abfd76df6386f95" + }, + "apps/electron-vite-project/src/auth/tokenStore.ts": { + "mtime": 1786206352.166708, + "ast_hash": "5b38841eecfd34d8d7a5233ebbf70555", + "semantic_hash": "5b38841eecfd34d8d7a5233ebbf70555" + }, + "apps/electron-vite-project/src/chat/routing/letterComposerChat.ts": { + "mtime": 1786206352.166708, + "ast_hash": "6561f6ab4bf204216d663ce9d16399bc", + "semantic_hash": "6561f6ab4bf204216d663ce9d16399bc" + }, + "apps/electron-vite-project/src/chat/routing/letterComposerPrompt.ts": { + "mtime": 1786206352.166708, + "ast_hash": "bab0cd7f7cc6f4ccc22ce04cf13beaa7", + "semantic_hash": "bab0cd7f7cc6f4ccc22ce04cf13beaa7" + }, + "apps/electron-vite-project/src/chat/routing/letterVaultHelper.ts": { + "mtime": 1786206352.166708, + "ast_hash": "04e94cfccb04bae89a4064785a017383", + "semantic_hash": "04e94cfccb04bae89a4064785a017383" + }, + "apps/electron-vite-project/src/chat/routing/resolveChatRoute.ts": { + "mtime": 1786206352.166708, + "ast_hash": "9e704ce66ea12a552c3fee06b2007fe8", + "semantic_hash": "9e704ce66ea12a552c3fee06b2007fe8" + }, + "apps/electron-vite-project/src/components/AcceptHandshakeModal.tsx": { + "mtime": 1786206352.166708, + "ast_hash": "f041d82099ee9c3b5049008ddc7f3f4f", + "semantic_hash": "f041d82099ee9c3b5049008ddc7f3f4f" + }, + "apps/electron-vite-project/src/components/AiDraftContextRail.tsx": { + "mtime": 1786206352.166708, + "ast_hash": "8cd65b719478591206ca6541708191c1", + "semantic_hash": "8cd65b719478591206ca6541708191c1" + }, + "apps/electron-vite-project/src/components/AnalysisCanvas.tsx": { + "mtime": 1786206352.166708, + "ast_hash": "0ea28c6a2ab5742f9b6e33199593d769", + "semantic_hash": "0ea28c6a2ab5742f9b6e33199593d769" + }, + "apps/electron-vite-project/src/components/AutoSortSessionHistory.tsx": { + "mtime": 1786206352.166708, + "ast_hash": "d2c1208395514cefa4adbb0ed2a0a8d5", + "semantic_hash": "d2c1208395514cefa4adbb0ed2a0a8d5" + }, + "apps/electron-vite-project/src/components/AutoSortSessionReview.tsx": { + "mtime": 1786206352.166708, + "ast_hash": "b1b9709db21b7eda6081b88163b61d4f", + "semantic_hash": "b1b9709db21b7eda6081b88163b61d4f" + }, + "apps/electron-vite-project/src/components/AutosortRuntimeStatus.tsx": { + "mtime": 1786206352.166708, + "ast_hash": "4f2c20e0b78982ff860e5f30a27cf592", + "semantic_hash": "4f2c20e0b78982ff860e5f30a27cf592" + }, + "apps/electron-vite-project/src/components/BeapActionIconButton.tsx": { + "mtime": 1786206352.166708, + "ast_hash": "d5a75490096663314e699d1988a0492b", + "semantic_hash": "d5a75490096663314e699d1988a0492b" + }, + "apps/electron-vite-project/src/components/BeapBulkInboxDashboard.tsx": { + "mtime": 1786206352.1707075, + "ast_hash": "8e7028c3a5725bcd140bef165f03f013", + "semantic_hash": "8e7028c3a5725bcd140bef165f03f013" + }, + "apps/electron-vite-project/src/components/BeapInboxDashboard.tsx": { + "mtime": 1786206352.1707075, + "ast_hash": "2c48eb90407f1e67271a74cf1b436c47", + "semantic_hash": "2c48eb90407f1e67271a74cf1b436c47" + }, + "apps/electron-vite-project/src/components/BeapInboxFirstRun.tsx": { + "mtime": 1786206352.1707075, + "ast_hash": "a932af4951821a230cf709992620ec29", + "semantic_hash": "a932af4951821a230cf709992620ec29" + }, + "apps/electron-vite-project/src/components/BeapInboxRedirectIcon.tsx": { + "mtime": 1786206352.1707075, + "ast_hash": "9e890f4e9e7f1d0b48f69b238ce34e1b", + "semantic_hash": "9e890f4e9e7f1d0b48f69b238ce34e1b" + }, + "apps/electron-vite-project/src/components/BeapInboxRunAutomationIcon.tsx": { + "mtime": 1786206352.1707075, + "ast_hash": "4af765c6b848305bafd3c2d8eb9d9f22", + "semantic_hash": "4af765c6b848305bafd3c2d8eb9d9f22" + }, + "apps/electron-vite-project/src/components/BeapInboxSandboxCloneIcon.tsx": { + "mtime": 1786206352.1707075, + "ast_hash": "f7b4592e1a5db7e2a49f466a55820efd", + "semantic_hash": "f7b4592e1a5db7e2a49f466a55820efd" + }, + "apps/electron-vite-project/src/components/BeapInboxView.tsx": { + "mtime": 1786206352.1707075, + "ast_hash": "219ddc913db208c43e988f44cee035be", + "semantic_hash": "219ddc913db208c43e988f44cee035be" + }, + "apps/electron-vite-project/src/components/BeapInlineComposer.tsx": { + "mtime": 1786206352.1707075, + "ast_hash": "955960f11d9cd7f03412029907b6af23", + "semantic_hash": "955960f11d9cd7f03412029907b6af23" + }, + "apps/electron-vite-project/src/components/BeapMessageImportZone.tsx": { + "mtime": 1786206352.1707075, + "ast_hash": "b5cc94176b0b1dce5083ca4f30d71789", + "semantic_hash": "b5cc94176b0b1dce5083ca4f30d71789" + }, + "apps/electron-vite-project/src/components/BeapMessageSafeLinkParts.tsx": { + "mtime": 1786206352.1707075, + "ast_hash": "745bd804b4fa62cedc9262423b715265", + "semantic_hash": "745bd804b4fa62cedc9262423b715265" + }, + "apps/electron-vite-project/src/components/BeapMessageUploadZone.tsx": { + "mtime": 1786206352.1707075, + "ast_hash": "3d33631985c47f7bb9c64e6579a446ff", + "semantic_hash": "3d33631985c47f7bb9c64e6579a446ff" + }, + "apps/electron-vite-project/src/components/BeapRedirectDialog.tsx": { + "mtime": 1786206352.1707075, + "ast_hash": "c1d5eb8a7530aeb4dc158b25c0a5cd97", + "semantic_hash": "c1d5eb8a7530aeb4dc158b25c0a5cd97" + }, + "apps/electron-vite-project/src/components/BeapSandboxCloneDialog.tsx": { + "mtime": 1786206352.1707075, + "ast_hash": "fc42f65ed5b0f2ecd92d484bdb1477cd", + "semantic_hash": "fc42f65ed5b0f2ecd92d484bdb1477cd" + }, + "apps/electron-vite-project/src/components/BeapSandboxUnavailableDialog.tsx": { + "mtime": 1786206352.1707075, + "ast_hash": "294a762f0c56d5d23403a146530c12e1", + "semantic_hash": "294a762f0c56d5d23403a146530c12e1" + }, + "apps/electron-vite-project/src/components/BeapSessionAutomationPanel.tsx": { + "mtime": 1786206352.1707075, + "ast_hash": "cd03cb403ed5f7b10ab89019d4f26a21", + "semantic_hash": "cd03cb403ed5f7b10ab89019d4f26a21" + }, + "apps/electron-vite-project/src/components/BulkInboxAttachmentsStrip.tsx": { + "mtime": 1786206352.1707075, + "ast_hash": "24d418eb6902baa8350e3a2791a63b4c", + "semantic_hash": "24d418eb6902baa8350e3a2791a63b4c" + }, + "apps/electron-vite-project/src/components/BulkOllamaModelSelect.tsx": { + "mtime": 1786206352.1707075, + "ast_hash": "9625cfb590afea2e92c850d6c35141c7", + "semantic_hash": "9625cfb590afea2e92c850d6c35141c7" + }, + "apps/electron-vite-project/src/components/CapsuleUploadZone.tsx": { + "mtime": 1786206352.1707075, + "ast_hash": "c53df32e35f5399a1333e4c50cf344fd", + "semantic_hash": "c53df32e35f5399a1333e4c50cf344fd" + }, + "apps/electron-vite-project/src/components/CollapsibleSection.tsx": { + "mtime": 1786206352.1707075, + "ast_hash": "aa6bc4ab19b333f2fa9dc25d088ab93b", + "semantic_hash": "aa6bc4ab19b333f2fa9dc25d088ab93b" + }, + "apps/electron-vite-project/src/components/ComposeButtons.tsx": { + "mtime": 1786206352.1707075, + "ast_hash": "dff90bc77853ab9f77ed09f93b7c706b", + "semantic_hash": "dff90bc77853ab9f77ed09f93b7c706b" + }, + "apps/electron-vite-project/src/components/ComposeFieldsForm.tsx": { + "mtime": 1786206352.1707075, + "ast_hash": "3a119d47af33b4cae11d7571ffa60907", + "semantic_hash": "3a119d47af33b4cae11d7571ffa60907" + }, + "apps/electron-vite-project/src/components/ComposerAttachmentButton.tsx": { + "mtime": 1786206352.1707075, + "ast_hash": "42c89f0c186a2adc4ca9bb7e6d397e09", + "semantic_hash": "42c89f0c186a2adc4ca9bb7e6d397e09" + }, + "apps/electron-vite-project/src/components/ContextItemEditor.tsx": { + "mtime": 1786206352.1707075, + "ast_hash": "6f2adea93c18cf0a5caac8f30510290e", + "semantic_hash": "6f2adea93c18cf0a5caac8f30510290e" + }, + "apps/electron-vite-project/src/components/DashboardBeapComposer.tsx": { + "mtime": 1786206352.1707075, + "ast_hash": "066429ee87cf1c8ed7c876184101d3ee", + "semantic_hash": "066429ee87cf1c8ed7c876184101d3ee" + }, + "apps/electron-vite-project/src/components/DashboardEmailComposer.tsx": { + "mtime": 1786206352.1707075, + "ast_hash": "57e057feadf09b6992105b2f0fa141f6", + "semantic_hash": "57e057feadf09b6992105b2f0fa141f6" + }, + "apps/electron-vite-project/src/components/DashboardHome.tsx": { + "mtime": 1786206352.1747067, + "ast_hash": "80e4ef04c33d2bb8638074e27ae5e565", + "semantic_hash": "80e4ef04c33d2bb8638074e27ae5e565" + }, + "apps/electron-vite-project/src/components/DebugLogViewer.tsx": { + "mtime": 1786206352.1747067, + "ast_hash": "da91c12c44451abdc292d99d5bf6aba3", + "semantic_hash": "da91c12c44451abdc292d99d5bf6aba3" + }, + "apps/electron-vite-project/src/components/DraftRefineLabel.tsx": { + "mtime": 1786206352.1747067, + "ast_hash": "4d015f140cb8bbb8e681a76a0041c13f", + "semantic_hash": "4d015f140cb8bbb8e681a76a0041c13f" + }, + "apps/electron-vite-project/src/components/EmailComposeOverlay.tsx": { + "mtime": 1786206352.1747067, + "ast_hash": "71041618ce73afb83966ee50e7159c6a", + "semantic_hash": "71041618ce73afb83966ee50e7159c6a" + }, + "apps/electron-vite-project/src/components/EmailInboxBulkView.tsx": { + "mtime": 1786206352.1747067, + "ast_hash": "134f4d1fcee6fa81d2bcf98d0aceeb5d", + "semantic_hash": "134f4d1fcee6fa81d2bcf98d0aceeb5d" + }, + "apps/electron-vite-project/src/components/EmailInboxSyncControls.dedicatedSandbox.test.tsx": { + "mtime": 1786206352.1747067, + "ast_hash": "175f1bb8645e3ea073c89cf62ba3db4f", + "semantic_hash": "175f1bb8645e3ea073c89cf62ba3db4f" + }, + "apps/electron-vite-project/src/components/EmailInboxSyncControls.tsx": { + "mtime": 1786206352.1747067, + "ast_hash": "70e30051659d6a4572290f8bfc534dda", + "semantic_hash": "70e30051659d6a4572290f8bfc534dda" + }, + "apps/electron-vite-project/src/components/EmailInboxToolbar.tsx": { + "mtime": 1786206352.1747067, + "ast_hash": "1edcc01c7d0d0b3c3466b91432ffede4", + "semantic_hash": "1edcc01c7d0d0b3c3466b91432ffede4" + }, + "apps/electron-vite-project/src/components/EmailInboxView.sandboxAffordances.test.tsx": { + "mtime": 1786206352.1747067, + "ast_hash": "91d82625b1f97b1c61db36619ea15ec0", + "semantic_hash": "91d82625b1f97b1c61db36619ea15ec0" + }, + "apps/electron-vite-project/src/components/EmailInboxView.tsx": { + "mtime": 1786206352.1747067, + "ast_hash": "f865ca8605f138538a3e18c0e3fcd84a", + "semantic_hash": "f865ca8605f138538a3e18c0e3fcd84a" + }, + "apps/electron-vite-project/src/components/EmailInlineComposer.tsx": { + "mtime": 1786206352.1747067, + "ast_hash": "c076b3db453a5e4af39b663940235fee", + "semantic_hash": "c076b3db453a5e4af39b663940235fee" + }, + "apps/electron-vite-project/src/components/EmailMessageDetail.sandboxLockNotice.test.tsx": { + "mtime": 1786206352.1747067, + "ast_hash": "bd4831b62b134db278939f450ab6ce85", + "semantic_hash": "bd4831b62b134db278939f450ab6ce85" + }, + "apps/electron-vite-project/src/components/EmailMessageDetail.tsx": { + "mtime": 1786206352.1747067, + "ast_hash": "daba1c5b33eec0e2ccab8f528b1c53ed", + "semantic_hash": "daba1c5b33eec0e2ccab8f528b1c53ed" + }, + "apps/electron-vite-project/src/components/FieldMappingOverlay.tsx": { + "mtime": 1786206352.1747067, + "ast_hash": "9ef7a3eeb341df42757d11ab4a67903d", + "semantic_hash": "9ef7a3eeb341df42757d11ab4a67903d" + }, + "apps/electron-vite-project/src/components/GpuInferenceBarBadge.test.ts": { + "mtime": 1786206352.1747067, + "ast_hash": "08ea151567fe7b424dcfdee7918dbba1", + "semantic_hash": "08ea151567fe7b424dcfdee7918dbba1" + }, + "apps/electron-vite-project/src/components/GpuInferenceBarBadge.tsx": { + "mtime": 1786206352.1747067, + "ast_hash": "112208aad40066667902c76f3eb0fbb1", + "semantic_hash": "112208aad40066667902c76f3eb0fbb1" + }, + "apps/electron-vite-project/src/components/HandshakeBeapMessages.tsx": { + "mtime": 1786206352.1787062, + "ast_hash": "7e142a71e863c82f5f3c871fb60cef38", + "semantic_hash": "7e142a71e863c82f5f3c871fb60cef38" + }, + "apps/electron-vite-project/src/components/HandshakeChatSidebar.tsx": { + "mtime": 1786206352.1787062, + "ast_hash": "69746e6955b15be51d668caaee4cd29a", + "semantic_hash": "69746e6955b15be51d668caaee4cd29a" + }, + "apps/electron-vite-project/src/components/HandshakeContextSection.tsx": { + "mtime": 1786206352.1787062, + "ast_hash": "45788ad2f306f6395d0dabafb03bb052", + "semantic_hash": "45788ad2f306f6395d0dabafb03bb052" + }, + "apps/electron-vite-project/src/components/HandshakeHealthOrchestratorBanner.tsx": { + "mtime": 1786206352.1787062, + "ast_hash": "2849c0aa3aa98d7a4aa737d4d942f305", + "semantic_hash": "2849c0aa3aa98d7a4aa737d4d942f305" + }, + "apps/electron-vite-project/src/components/HandshakeInitiateModal.tsx": { + "mtime": 1786206352.1787062, + "ast_hash": "d32b974eb12c82c7d3dee0fdac814c18", + "semantic_hash": "d32b974eb12c82c7d3dee0fdac814c18" + }, + "apps/electron-vite-project/src/components/HandshakeQuickReview.tsx": { + "mtime": 1786206352.1787062, + "ast_hash": "fea39ae507d73a9f4704eeeb3d57e4a4", + "semantic_hash": "fea39ae507d73a9f4704eeeb3d57e4a4" + }, + "apps/electron-vite-project/src/components/HandshakeRequestView.tsx": { + "mtime": 1786206352.1787062, + "ast_hash": "0604375b4d69ad46643e22dc57662355", + "semantic_hash": "0604375b4d69ad46643e22dc57662355" + }, + "apps/electron-vite-project/src/components/HandshakeView.tsx": { + "mtime": 1786206352.1787062, + "ast_hash": "e973c740e723175b3d1e29d977c1f53e", + "semantic_hash": "e973c740e723175b3d1e29d977c1f53e" + }, + "apps/electron-vite-project/src/components/HandshakeWorkspace.tsx": { + "mtime": 1786206352.1787062, + "ast_hash": "22237864bcf5629820d6381d1e8b263d", + "semantic_hash": "22237864bcf5629820d6381d1e8b263d" + }, + "apps/electron-vite-project/src/components/HsContextDocumentReader.tsx": { + "mtime": 1786206352.1787062, + "ast_hash": "b3aabc7447389a816a3cbc4caaa02433", + "semantic_hash": "b3aabc7447389a816a3cbc4caaa02433" + }, + "apps/electron-vite-project/src/components/HybridSearch.tsx": { + "mtime": 1786206352.1787062, + "ast_hash": "2a2c3d5098eaa13e5e0848dbfbfff13b", + "semantic_hash": "2a2c3d5098eaa13e5e0848dbfbfff13b" + }, + "apps/electron-vite-project/src/components/InboxActionIcons.tsx": { + "mtime": 1786206352.1787062, + "ast_hash": "ff9ade619debeacdcd1f6334d0fc4b2a", + "semantic_hash": "ff9ade619debeacdcd1f6334d0fc4b2a" + }, + "apps/electron-vite-project/src/components/InboxAttachmentRow.tsx": { + "mtime": 1786206352.1787062, + "ast_hash": "5c62b51f3f3160adc4be0dcc259df728", + "semantic_hash": "5c62b51f3f3160adc4be0dcc259df728" + }, + "apps/electron-vite-project/src/components/InboxBeapSourceBadge.tsx": { + "mtime": 1786206352.1787062, + "ast_hash": "afb5513003204c7ca6b9d3809b8326de", + "semantic_hash": "afb5513003204c7ca6b9d3809b8326de" + }, + "apps/electron-vite-project/src/components/InboxBulkActionsBar.tsx": { + "mtime": 1786206352.1827056, + "ast_hash": "3278b1dea331644efc7b493673615524", + "semantic_hash": "3278b1dea331644efc7b493673615524" + }, + "apps/electron-vite-project/src/components/InboxDocumentReaderModal.tsx": { + "mtime": 1786206352.1827056, + "ast_hash": "b640ce655712b59b97ad764569b33746", + "semantic_hash": "b640ce655712b59b97ad764569b33746" + }, + "apps/electron-vite-project/src/components/InboxHandshakeNavIcon.tsx": { + "mtime": 1786206352.1827056, + "ast_hash": "cd89ab56167618390e8d36b78bf648b4", + "semantic_hash": "cd89ab56167618390e8d36b78bf648b4" + }, + "apps/electron-vite-project/src/components/InboxMessageKindSelect.tsx": { + "mtime": 1786206352.1827056, + "ast_hash": "496b60ddac9edbcb4a8f021455ec7e9b", + "semantic_hash": "496b60ddac9edbcb4a8f021455ec7e9b" + }, + "apps/electron-vite-project/src/components/InboxUrgencyMeter.tsx": { + "mtime": 1786206352.1827056, + "ast_hash": "b5d7d4a30e8cd66c21c6e73800e60f9a", + "semantic_hash": "b5d7d4a30e8cd66c21c6e73800e60f9a" + }, + "apps/electron-vite-project/src/components/IngestionDelegationModal.test.tsx": { + "mtime": 1786206352.1827056, + "ast_hash": "3d74bbcb0b3ca6c0cbbfdf19e97a9e9a", + "semantic_hash": "3d74bbcb0b3ca6c0cbbfdf19e97a9e9a" + }, + "apps/electron-vite-project/src/components/IngestionDelegationModal.tsx": { + "mtime": 1786206352.1827056, + "ast_hash": "e954442c063e5f86b848eb799c487386", + "semantic_hash": "e954442c063e5f86b848eb799c487386" + }, + "apps/electron-vite-project/src/components/IngestionStatusBanner.test.tsx": { + "mtime": 1786206352.1827056, + "ast_hash": "c4900e0ffa91a1b9583b7216bbdcdd28", + "semantic_hash": "c4900e0ffa91a1b9583b7216bbdcdd28" + }, + "apps/electron-vite-project/src/components/IngestionStatusBanner.tsx": { + "mtime": 1786206352.1827056, + "ast_hash": "ebc09ab785711be97e790f5eec9b9ab9", + "semantic_hash": "ebc09ab785711be97e790f5eec9b9ab9" + }, + "apps/electron-vite-project/src/components/InternalHandshakeIdentityPanel.tsx": { + "mtime": 1786206352.1827056, + "ast_hash": "014270ba2e624010f81bb0be228e4b46", + "semantic_hash": "014270ba2e624010f81bb0be228e4b46" + }, + "apps/electron-vite-project/src/components/LETmeGIRAFFETHATFORYOUIcons.tsx": { + "mtime": 1786206352.1827056, + "ast_hash": "dd9f83f3b7e7c5fb3ef4636c80be5080", + "semantic_hash": "dd9f83f3b7e7c5fb3ef4636c80be5080" + }, + "apps/electron-vite-project/src/components/LetterComposerPortSelectButton.tsx": { + "mtime": 1786206352.1827056, + "ast_hash": "1662986b7486eba6b61f0edb8381a2d0", + "semantic_hash": "1662986b7486eba6b61f0edb8381a2d0" + }, + "apps/electron-vite-project/src/components/LetterComposerView.tsx": { + "mtime": 1786206352.1827056, + "ast_hash": "95f78771daa36fe8e3775732066b6a08", + "semantic_hash": "95f78771daa36fe8e3775732066b6a08" + }, + "apps/electron-vite-project/src/components/LetterTemplatePort.tsx": { + "mtime": 1786206352.1827056, + "ast_hash": "5f4b0ffa2a116747f8a92170372e6af4", + "semantic_hash": "5f4b0ffa2a116747f8a92170372e6af4" + }, + "apps/electron-vite-project/src/components/LetterViewerPort.tsx": { + "mtime": 1786206352.1827056, + "ast_hash": "427d5906be111b683a4dd8c3a781f97a", + "semantic_hash": "427d5906be111b683a4dd8c3a781f97a" + }, + "apps/electron-vite-project/src/components/LinkWarningDialog.tsx": { + "mtime": 1786206352.1827056, + "ast_hash": "7fd47370ff5c0583fd75431e35ecb5e2", + "semantic_hash": "7fd47370ff5c0583fd75431e35ecb5e2" + }, + "apps/electron-vite-project/src/components/LiveExecutionAnalysis.tsx": { + "mtime": 1786206352.1827056, + "ast_hash": "c32021716aea6a138ed80ff6c48bf265", + "semantic_hash": "c32021716aea6a138ed80ff6c48bf265" + }, + "apps/electron-vite-project/src/components/P2PStatusBadge.tsx": { + "mtime": 1786206352.1827056, + "ast_hash": "240f44cfb0e732d67550387a9886d1d2", + "semantic_hash": "240f44cfb0e732d67550387a9886d1d2" + }, + "apps/electron-vite-project/src/components/PendingSlideOut.tsx": { + "mtime": 1786206352.1827056, + "ast_hash": "1ba5dd340dcade1ba456ffa99153fb67", + "semantic_hash": "1ba5dd340dcade1ba456ffa99153fb67" + }, + "apps/electron-vite-project/src/components/PolicyRadioGroup.tsx": { + "mtime": 1786206352.1827056, + "ast_hash": "18ceb506f45cc4a582a4f64c50169e7f", + "semantic_hash": "18ceb506f45cc4a582a4f64c50169e7f" + }, + "apps/electron-vite-project/src/components/PostExecutionVerification.tsx": { + "mtime": 1786206352.1827056, + "ast_hash": "d86448aca2a147739f2a9420779d6025", + "semantic_hash": "d86448aca2a147739f2a9420779d6025" + }, + "apps/electron-vite-project/src/components/PreExecutionAnalysis.tsx": { + "mtime": 1786206352.1827056, + "ast_hash": "8529d330a51c52bf3ba7097575e33693", + "semantic_hash": "8529d330a51c52bf3ba7097575e33693" + }, + "apps/electron-vite-project/src/components/ProtectedAccessWarningDialog.tsx": { + "mtime": 1786206352.1827056, + "ast_hash": "ece6538a9c94e50dab204b8d7266f249", + "semantic_hash": "ece6538a9c94e50dab204b8d7266f249" + }, + "apps/electron-vite-project/src/components/RelationshipDetail.tsx": { + "mtime": 1786206352.1827056, + "ast_hash": "5d7358229701e1415715b32e3d3f357d", + "semantic_hash": "5d7358229701e1415715b32e3d3f357d" + }, + "apps/electron-vite-project/src/components/RelaySetupWizard.tsx": { + "mtime": 1786206352.1827056, + "ast_hash": "b83f0386d3bddf181a0c5ee86770a6d2", + "semantic_hash": "b83f0386d3bddf181a0c5ee86770a6d2" + }, + "apps/electron-vite-project/src/components/RevocationNoticeBanner.test.tsx": { + "mtime": 1786206352.1827056, + "ast_hash": "c25750fb50e9c89cbc0d32e01e995f29", + "semantic_hash": "c25750fb50e9c89cbc0d32e01e995f29" + }, + "apps/electron-vite-project/src/components/RevocationNoticeBanner.tsx": { + "mtime": 1786206352.1827056, + "ast_hash": "b678d3f72a00610f1d7b4eb247cb32ac", + "semantic_hash": "b678d3f72a00610f1d7b4eb247cb32ac" + }, + "apps/electron-vite-project/src/components/SandboxCloneDisclosure.tsx": { + "mtime": 1786206352.1827056, + "ast_hash": "7ed875b8fa3b99a22a706aa1ca5a4b7a", + "semantic_hash": "7ed875b8fa3b99a22a706aa1ca5a4b7a" + }, + "apps/electron-vite-project/src/components/SandboxCloneFeedbackBadge.tsx": { + "mtime": 1786206352.1827056, + "ast_hash": "2759232d89c67edf72df82cd61162fea", + "semantic_hash": "2759232d89c67edf72df82cd61162fea" + }, + "apps/electron-vite-project/src/components/SandboxLinkInfoDialog.tsx": { + "mtime": 1786206352.1827056, + "ast_hash": "8ac9b749fb787aa879c78b65ea4fc1a8", + "semantic_hash": "8ac9b749fb787aa879c78b65ea4fc1a8" + }, + "apps/electron-vite-project/src/components/SandboxLockSurface.test.tsx": { + "mtime": 1786206352.1827056, + "ast_hash": "141410c0a4ab2e596599ef196c7294a1", + "semantic_hash": "141410c0a4ab2e596599ef196c7294a1" + }, + "apps/electron-vite-project/src/components/SandboxLockSurface.tsx": { + "mtime": 1786206352.1867049, + "ast_hash": "0c8c4695cf4b920b33dc048d81190aca", + "semantic_hash": "0c8c4695cf4b920b33dc048d81190aca" + }, + "apps/electron-vite-project/src/components/SandboxReadCleanupHint.test.tsx": { + "mtime": 1786206352.1867049, + "ast_hash": "d1f58f4fc7d3bb1c0c2da99966a9604b", + "semantic_hash": "d1f58f4fc7d3bb1c0c2da99966a9604b" + }, + "apps/electron-vite-project/src/components/SandboxReadCleanupHint.tsx": { + "mtime": 1786206352.1867049, + "ast_hash": "c96a054ed7ec76ab06079eabbb901b40", + "semantic_hash": "c96a054ed7ec76ab06079eabbb901b40" + }, + "apps/electron-vite-project/src/components/SecureContextSyncPendingBanner.tsx": { + "mtime": 1786206352.1867049, + "ast_hash": "7f9b2786fb2ec3d870acfc14b3217f5d", + "semantic_hash": "7f9b2786fb2ec3d870acfc14b3217f5d" + }, + "apps/electron-vite-project/src/components/SessionImportDialog.tsx": { + "mtime": 1786206352.1867049, + "ast_hash": "038f98ca6c7d45132b347cc54dd4cea6", + "semantic_hash": "038f98ca6c7d45132b347cc54dd4cea6" + }, + "apps/electron-vite-project/src/components/StructuredHsContextPanel.tsx": { + "mtime": 1786206352.1867049, + "ast_hash": "a67347c01e3b8de2a7721e8bc73afe6c", + "semantic_hash": "a67347c01e3b8de2a7721e8bc73afe6c" + }, + "apps/electron-vite-project/src/components/SyncFailureBanner.test.tsx": { + "mtime": 1786206352.1867049, + "ast_hash": "6c4b1780bae9191ca0cce7cf11b9fd25", + "semantic_hash": "6c4b1780bae9191ca0cce7cf11b9fd25" + }, + "apps/electron-vite-project/src/components/SyncFailureBanner.tsx": { + "mtime": 1786206352.1867049, + "ast_hash": "98c3dee4c7820d69d141c78a36676cf4", + "semantic_hash": "98c3dee4c7820d69d141c78a36676cf4" + }, + "apps/electron-vite-project/src/components/ThisDeviceCard.test.tsx": { + "mtime": 1786206352.1867049, + "ast_hash": "4aea83b814a50da3beeec5702a6eb420", + "semantic_hash": "4aea83b814a50da3beeec5702a6eb420" + }, + "apps/electron-vite-project/src/components/ThisDeviceCard.tsx": { + "mtime": 1786206352.1867049, + "ast_hash": "e15721503d51bec7859ec6ab263ba9ad", + "semantic_hash": "e15721503d51bec7859ec6ab263ba9ad" + }, + "apps/electron-vite-project/src/components/VaultStatusIndicator.tsx": { + "mtime": 1786206352.1867049, + "ast_hash": "30c752a58d9486e60789450f5890be62", + "semantic_hash": "30c752a58d9486e60789450f5890be62" + }, + "apps/electron-vite-project/src/components/WRChatDashboardView.tsx": { + "mtime": 1786206352.1867049, + "ast_hash": "562133c8b7c7c483afd4d5481991a99d", + "semantic_hash": "562133c8b7c7c483afd4d5481991a99d" + }, + "apps/electron-vite-project/src/components/WrChatDashboardPanel.tsx": { + "mtime": 1786206352.1867049, + "ast_hash": "0d06222d19ed91c4cdc66ef26c552894", + "semantic_hash": "0d06222d19ed91c4cdc66ef26c552894" + }, + "apps/electron-vite-project/src/components/analysis/EvidenceDrawer.tsx": { + "mtime": 1786206352.1867049, + "ast_hash": "ea0f64578a57919d6673e735a4d4a686", + "semantic_hash": "ea0f64578a57919d6673e735a4d4a686" + }, + "apps/electron-vite-project/src/components/analysis/HeroKPI.tsx": { + "mtime": 1786206352.1867049, + "ast_hash": "ffdde8630b74849a7fa8d560763bf504", + "semantic_hash": "ffdde8630b74849a7fa8d560763bf504" + }, + "apps/electron-vite-project/src/components/analysis/StatusBadge.tsx": { + "mtime": 1786206352.1867049, + "ast_hash": "8ca8dd76e01fa0a3ae9c020be8ac4136", + "semantic_hash": "8ca8dd76e01fa0a3ae9c020be8ac4136" + }, + "apps/electron-vite-project/src/components/analysis/canvasState.ts": { + "mtime": 1786206352.1867049, + "ast_hash": "098490403c9d304d9e0808477476a83b", + "semantic_hash": "098490403c9d304d9e0808477476a83b" + }, + "apps/electron-vite-project/src/components/analysis/computePriorityAction.ts": { + "mtime": 1786206352.1867049, + "ast_hash": "310dd679abf3ffac0aa4d8479e75da75", + "semantic_hash": "310dd679abf3ffac0aa4d8479e75da75" + }, + "apps/electron-vite-project/src/components/analysis/dashboard/ActiveAutomationWorkspace.tsx": { + "mtime": 1786206352.1867049, + "ast_hash": "bc9adc475c59d13ffc0b15f5c35baddb", + "semantic_hash": "bc9adc475c59d13ffc0b15f5c35baddb" + }, + "apps/electron-vite-project/src/components/analysis/dashboard/ActivityFeedColumn.tsx": { + "mtime": 1786206352.1867049, + "ast_hash": "a44c30ef9aed9436a24d6f0c7467981c", + "semantic_hash": "a44c30ef9aed9436a24d6f0c7467981c" + }, + "apps/electron-vite-project/src/components/analysis/dashboard/DashboardAutomationHome.tsx": { + "mtime": 1786206352.1867049, + "ast_hash": "03850bee09023a40692a3ab0db2bb7f5", + "semantic_hash": "03850bee09023a40692a3ab0db2bb7f5" + }, + "apps/electron-vite-project/src/components/analysis/dashboard/DashboardHandshakeSummarySection.tsx": { + "mtime": 1786206352.1867049, + "ast_hash": "60a8ae0359607468d182233d445a190a", + "semantic_hash": "60a8ae0359607468d182233d445a190a" + }, + "apps/electron-vite-project/src/components/analysis/dashboard/DashboardTopCardsRow.tsx": { + "mtime": 1786206352.1867049, + "ast_hash": "f0a9605c52ee69cf7392eb0b43a67736", + "semantic_hash": "f0a9605c52ee69cf7392eb0b43a67736" + }, + "apps/electron-vite-project/src/components/analysis/dashboard/IntelligenceDashboard.tsx": { + "mtime": 1786206352.1867049, + "ast_hash": "ef626b6e85085fe487825730aa5275f3", + "semantic_hash": "ef626b6e85085fe487825730aa5275f3" + }, + "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArchiveSection.tsx": { + "mtime": 1786206352.1867049, + "ast_hash": "95306722a2b33ade7e0d919fa236d646", + "semantic_hash": "95306722a2b33ade7e0d919fa236d646" + }, + "apps/electron-vite-project/src/components/analysis/dashboard/PoaeArtifactsPanel.tsx": { + "mtime": 1786206352.1867049, + "ast_hash": "692a60f0d6c7549421e9270817a591df", + "semantic_hash": "692a60f0d6c7549421e9270817a591df" + }, + "apps/electron-vite-project/src/components/analysis/dashboard/ProjectAssistantConfigModal.tsx": { + "mtime": 1786206352.1867049, + "ast_hash": "04e5dd68033312a1195ee542a4a25e4a", + "semantic_hash": "04e5dd68033312a1195ee542a4a25e4a" + }, + "apps/electron-vite-project/src/components/analysis/dashboard/ProjectOptimizationPanel.tsx": { + "mtime": 1786206352.1867049, + "ast_hash": "9101e3a08827270d67e185c7a3e2bc69", + "semantic_hash": "9101e3a08827270d67e185c7a3e2bc69" + }, + "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupModal.tsx": { + "mtime": 1786206352.1907043, + "ast_hash": "3073617d5eda89a89f8f7e7e4efe77c9", + "semantic_hash": "3073617d5eda89a89f8f7e7e4efe77c9" + }, + "apps/electron-vite-project/src/components/analysis/dashboard/ProjectSetupSection.tsx": { + "mtime": 1786206352.1907043, + "ast_hash": "7dc7b0b7dc345f70d7a5bca0f9054c17", + "semantic_hash": "7dc7b0b7dc345f70d7a5bca0f9054c17" + }, + "apps/electron-vite-project/src/components/analysis/dashboard/StatusToggle.tsx": { + "mtime": 1786206352.1907043, + "ast_hash": "b476f8c6d30b2fb514b60dff1bf8c4b5", + "semantic_hash": "b476f8c6d30b2fb514b60dff1bf8c4b5" + }, + "apps/electron-vite-project/src/components/analysis/dashboard/UrgentAutosortSessionSection.tsx": { + "mtime": 1786206352.1907043, + "ast_hash": "ecf88bfd60aa8a981d78a7e60a7b3fb9", + "semantic_hash": "ecf88bfd60aa8a981d78a7e60a7b3fb9" + }, + "apps/electron-vite-project/src/components/analysis/dashboard/UrgentMessagesPanel.tsx": { + "mtime": 1786206352.1907043, + "ast_hash": "b67b3e23e4e6a90269fe00cdcb9d9ba8", + "semantic_hash": "b67b3e23e4e6a90269fe00cdcb9d9ba8" + }, + "apps/electron-vite-project/src/components/analysis/dashboard/index.ts": { + "mtime": 1786206352.1907043, + "ast_hash": "51a053c335e9d3fa5afdc0a5e97c39be", + "semantic_hash": "51a053c335e9d3fa5afdc0a5e97c39be" + }, + "apps/electron-vite-project/src/components/analysis/dashboard/projectIconChoices.ts": { + "mtime": 1786206352.1907043, + "ast_hash": "0b02ffc819cea0c9d6125193b1ec88a3", + "semantic_hash": "0b02ffc819cea0c9d6125193b1ec88a3" + }, + "apps/electron-vite-project/src/components/analysis/focusLayoutEngine.ts": { + "mtime": 1786206352.1907043, + "ast_hash": "0777fe48b3ae034079be302db1b4979b", + "semantic_hash": "0777fe48b3ae034079be302db1b4979b" + }, + "apps/electron-vite-project/src/components/analysis/index.ts": { + "mtime": 1786206352.1907043, + "ast_hash": "875650dd90f79ec2fffcf12f5ba753e1", + "semantic_hash": "875650dd90f79ec2fffcf12f5ba753e1" + }, + "apps/electron-vite-project/src/components/analysis/useCanvasState.ts": { + "mtime": 1786206352.1907043, + "ast_hash": "02eb08877f06ef577926c3ea12954274", + "semantic_hash": "02eb08877f06ef577926c3ea12954274" + }, + "apps/electron-vite-project/src/components/bulkInboxAttachmentHydration.test.ts": { + "mtime": 1786206352.1907043, + "ast_hash": "f70871dbd98df267f53342eb01e954d1", + "semantic_hash": "f70871dbd98df267f53342eb01e954d1" + }, + "apps/electron-vite-project/src/components/bulkInboxAttachmentHydration.ts": { + "mtime": 1786206352.1907043, + "ast_hash": "8dfda8436e7310ab28326e97405d8e82", + "semantic_hash": "8dfda8436e7310ab28326e97405d8e82" + }, + "apps/electron-vite-project/src/components/contextEscaping.ts": { + "mtime": 1786206352.1907043, + "ast_hash": "f7859c7ed9c21b9be5fbce526dd9f7ff", + "semantic_hash": "f7859c7ed9c21b9be5fbce526dd9f7ff" + }, + "apps/electron-vite-project/src/components/handshakeViewTypes.ts": { + "mtime": 1786206352.1907043, + "ast_hash": "f112975f3bf951022fe8c70fa963b68e", + "semantic_hash": "f112975f3bf951022fe8c70fa963b68e" + }, + "apps/electron-vite-project/src/components/shared/EmailAccountSelector.tsx": { + "mtime": 1786206352.1907043, + "ast_hash": "3d99aa2248eaa2d1fba39d19ebd01ab6", + "semantic_hash": "3d99aa2248eaa2d1fba39d19ebd01ab6" + }, + "apps/electron-vite-project/src/hooks/useActiveHandshakeHealthBanner.ts": { + "mtime": 1786206352.1907043, + "ast_hash": "8800ad998969db2b3166043c46ff3ff5", + "semantic_hash": "8800ad998969db2b3166043c46ff3ff5" + }, + "apps/electron-vite-project/src/hooks/useDeleteFromProviderOnLocalDelete.ts": { + "mtime": 1786206352.1907043, + "ast_hash": "a5e7e869bdc8c8dee9dd63f1a0b9857f", + "semantic_hash": "a5e7e869bdc8c8dee9dd63f1a0b9857f" + }, + "apps/electron-vite-project/src/hooks/useHostToSandboxDirectReachability.ts": { + "mtime": 1786206352.1907043, + "ast_hash": "5a81d024f36590e3ec6f5cf72e7d42b2", + "semantic_hash": "5a81d024f36590e3ec6f5cf72e7d42b2" + }, + "apps/electron-vite-project/src/hooks/useInboxPreloadQueue.ts": { + "mtime": 1786206352.1907043, + "ast_hash": "7b2df97dd07ef5488d2de12f4c7e387a", + "semantic_hash": "7b2df97dd07ef5488d2de12f4c7e387a" + }, + "apps/electron-vite-project/src/hooks/useIngestionStatus.test.ts": { + "mtime": 1786206352.1907043, + "ast_hash": "d79359ba3cce2a37bf4648aa0d13ccf5", + "semantic_hash": "d79359ba3cce2a37bf4648aa0d13ccf5" + }, + "apps/electron-vite-project/src/hooks/useIngestionStatus.ts": { + "mtime": 1786206352.1907043, + "ast_hash": "19f4d1ba077c1cb6c27a21e8568f60cf", + "semantic_hash": "19f4d1ba077c1cb6c27a21e8568f60cf" + }, + "apps/electron-vite-project/src/hooks/useInternalSandboxesList.ts": { + "mtime": 1786206352.1187153, + "ast_hash": "fe5c475bd35cad76cc5589ef9baf2379", + "semantic_hash": "fe5c475bd35cad76cc5589ef9baf2379" + }, + "apps/electron-vite-project/src/hooks/useOrchestratorMode.ts": { + "mtime": 1786206352.1187153, + "ast_hash": "d0bc7f60a9dfae964d516a699324045b", + "semantic_hash": "d0bc7f60a9dfae964d516a699324045b" + }, + "apps/electron-vite-project/src/hooks/useRevocationBanner.logic.test.ts": { + "mtime": 1786206352.1187153, + "ast_hash": "68a1832e0cf1f20aae575191a92f2dc1", + "semantic_hash": "68a1832e0cf1f20aae575191a92f2dc1" + }, + "apps/electron-vite-project/src/hooks/useRevocationBanner.ts": { + "mtime": 1786206352.1187153, + "ast_hash": "b37e3b3d35a37f878362ef05e700fcbb", + "semantic_hash": "b37e3b3d35a37f878362ef05e700fcbb" + }, + "apps/electron-vite-project/src/hooks/useSandboxHostInference.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "4d494de83f3bd76205610ce34a189dbf", + "semantic_hash": "4d494de83f3bd76205610ce34a189dbf" + }, + "apps/electron-vite-project/src/hooks/useSandboxReadCleanupHint.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "33895ccce11bd0e505033777a98324ec", + "semantic_hash": "33895ccce11bd0e505033777a98324ec" + }, + "apps/electron-vite-project/src/hooks/useTopologyDelegationModal.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "9c433910152012a9b26c9eca338a93fb", + "semantic_hash": "9c433910152012a9b26c9eca338a93fb" + }, + "apps/electron-vite-project/src/internal-inference-p2p-transport/transportPage.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "7a56101daaad2e6d520fe1bd20f42656", + "semantic_hash": "7a56101daaad2e6d520fe1bd20f42656" + }, + "apps/electron-vite-project/src/lib/__tests__/beapInboxActionTooltips.test.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "08a946f8441e31d3a882eb2e07b0d373", + "semantic_hash": "08a946f8441e31d3a882eb2e07b0d373" + }, + "apps/electron-vite-project/src/lib/__tests__/beapInboxHostSandboxClickPolicy.test.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "7aa386ca3a7e1af624569117f6ccd50b", + "semantic_hash": "7aa386ca3a7e1af624569117f6ccd50b" + }, + "apps/electron-vite-project/src/lib/__tests__/beapInboxSandboxVisibility.test.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "d7c2acc8ad5fb4529850ffc89112a39e", + "semantic_hash": "d7c2acc8ad5fb4529850ffc89112a39e" + }, + "apps/electron-vite-project/src/lib/__tests__/beapInboxUxSourceRegressions.test.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "9be9bb4487ee2b25bb9f1482cb86ff20", + "semantic_hash": "9be9bb4487ee2b25bb9f1482cb86ff20" + }, + "apps/electron-vite-project/src/lib/__tests__/beapInboxVisibleSandboxClone.test.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "4e38efc6d0ee4f0405a06fe1af259af6", + "semantic_hash": "4e38efc6d0ee4f0405a06fe1af259af6" + }, + "apps/electron-vite-project/src/lib/__tests__/beapSandboxCloneDeliverySemantics.test.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "2955453606a1536ce00e3bc69c3035b8", + "semantic_hash": "2955453606a1536ce00e3bc69c3035b8" + }, + "apps/electron-vite-project/src/lib/__tests__/buildBSandboxViewportUi.test.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "914760416c929bf0598cb2e83404cf54", + "semantic_hash": "914760416c929bf0598cb2e83404cf54" + }, + "apps/electron-vite-project/src/lib/__tests__/coalescedListInferenceTargets.test.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "059ba1a3db16ff0e544ceeb0e803c2f2", + "semantic_hash": "059ba1a3db16ff0e544ceeb0e803c2f2" + }, + "apps/electron-vite-project/src/lib/__tests__/debugLogClipboard.test.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "6bafdc4b29de055df4b3e3590b7d5cae", + "semantic_hash": "6bafdc4b29de055df4b3e3590b7d5cae" + }, + "apps/electron-vite-project/src/lib/__tests__/dedicatedSandboxIngestionUi.test.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "413e9d91e8980215e4f6b3581a9309e6", + "semantic_hash": "413e9d91e8980215e4f6b3581a9309e6" + }, + "apps/electron-vite-project/src/lib/__tests__/fetchSelectorModelListFromHostDiscovery.test.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "f58365b27cb7750ef33a3bdb0e370090", + "semantic_hash": "f58365b27cb7750ef33a3bdb0e370090" + }, + "apps/electron-vite-project/src/lib/__tests__/finalAcceptance.hostAiInvariants.test.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "aff70d24a563b030f999e55c4a908664", + "semantic_hash": "aff70d24a563b030f999e55c4a908664" + }, + "apps/electron-vite-project/src/lib/__tests__/hostActiveModelSelection.test.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "22c06706c7a211ee25360573dc5adf52", + "semantic_hash": "22c06706c7a211ee25360573dc5adf52" + }, + "apps/electron-vite-project/src/lib/__tests__/hostAiRemoteChatLane.test.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "3948a597db19b725ceab82ea034bf0f7", + "semantic_hash": "3948a597db19b725ceab82ea034bf0f7" + }, + "apps/electron-vite-project/src/lib/__tests__/hostAiTargetConnectionPresentation.test.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "847effb541a41cf29dcf6438d5b393ea", + "semantic_hash": "847effb541a41cf29dcf6438d5b393ea" + }, + "apps/electron-vite-project/src/lib/__tests__/hostAiTargetUiNormalization.test.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "9bbbc6f504e321b763d07750d211b3a6", + "semantic_hash": "9bbbc6f504e321b763d07750d211b3a6" + }, + "apps/electron-vite-project/src/lib/__tests__/hostAiUiDiagnostics.test.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "ce5616b31b67077c541b2fae2a26d874", + "semantic_hash": "ce5616b31b67077c541b2fae2a26d874" + }, + "apps/electron-vite-project/src/lib/__tests__/hostInferenceDirectReachabilityUi.test.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "01409cac7fa80e6d725dbd5c3b0d7b27", + "semantic_hash": "01409cac7fa80e6d725dbd5c3b0d7b27" + }, + "apps/electron-vite-project/src/lib/__tests__/hostInferenceModelIds.test.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "4adaa02ac2b982e4a1c0ea73debd2f32", + "semantic_hash": "4adaa02ac2b982e4a1c0ea73debd2f32" + }, + "apps/electron-vite-project/src/lib/__tests__/hostInferenceSelectorIntegration.test.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "c632cd107ddb9295771c66b28efe2a38", + "semantic_hash": "c632cd107ddb9295771c66b28efe2a38" + }, + "apps/electron-vite-project/src/lib/__tests__/hostInferenceSurface.regression.test.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "62c752fac7b4ae1c9205bfc7694722e0", + "semantic_hash": "62c752fac7b4ae1c9205bfc7694722e0" + }, + "apps/electron-vite-project/src/lib/__tests__/hostInferenceUiGates.test.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "b9ddc9a75d3ca415978aebee122f0f22", + "semantic_hash": "b9ddc9a75d3ca415978aebee122f0f22" + }, + "apps/electron-vite-project/src/lib/__tests__/hostModelSelectorRowUi.test.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "f8c6d8f0645cbf9b1cab962e54903720", + "semantic_hash": "f8c6d8f0645cbf9b1cab962e54903720" + }, + "apps/electron-vite-project/src/lib/__tests__/hybridChatRagSuccessDisplay.test.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "2e0728cfc950397aafe7c4f134ce1bb8", + "semantic_hash": "2e0728cfc950397aafe7c4f134ce1bb8" + }, + "apps/electron-vite-project/src/lib/__tests__/inboxAiCloneClassification.test.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "51b121d43970b9607ab34c3db78b0f5e", + "semantic_hash": "51b121d43970b9607ab34c3db78b0f5e" + }, + "apps/electron-vite-project/src/lib/__tests__/inboxDetailAnalysisSelection.test.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "fce7d8b9a3e73cc598c41ae59a890024", + "semantic_hash": "fce7d8b9a3e73cc598c41ae59a890024" + }, + "apps/electron-vite-project/src/lib/__tests__/inboxMessageActionable.test.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "84621be2cc60c600260d7dd276ac96e8", + "semantic_hash": "84621be2cc60c600260d7dd276ac96e8" + }, + "apps/electron-vite-project/src/lib/__tests__/inboxMessageSandboxClone.test.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "dd3ea00a44f99213413664a94ffef3ba", + "semantic_hash": "dd3ea00a44f99213413664a94ffef3ba" + }, + "apps/electron-vite-project/src/lib/__tests__/inboxSessionArtefact.test.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "723b8262e654d7e101756819e6bd3939", + "semantic_hash": "723b8262e654d7e101756819e6bd3939" + }, + "apps/electron-vite-project/src/lib/__tests__/inferenceSandboxVsHostContext.test.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "57279f299bf4d74024475820af5512f4", + "semantic_hash": "57279f299bf4d74024475820af5512f4" + }, + "apps/electron-vite-project/src/lib/__tests__/inferenceSelectionPersistence.ollamaDirect.test.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "840b0755beb8b08af2bcb2f7da550e25", + "semantic_hash": "840b0755beb8b08af2bcb2f7da550e25" + }, + "apps/electron-vite-project/src/lib/__tests__/modelSelectorHostRefreshVisibility.test.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "46213a93d5abd2820d691e18f49beadb", + "semantic_hash": "46213a93d5abd2820d691e18f49beadb" + }, + "apps/electron-vite-project/src/lib/__tests__/phase11.beapRegression.test.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "90122233331d39996ef887f06fa4d435", + "semantic_hash": "90122233331d39996ef887f06fa4d435" + }, + "apps/electron-vite-project/src/lib/__tests__/phase11.uiInvariants.test.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "9f828b846a056683f18e76c038ec5f0c", + "semantic_hash": "9f828b846a056683f18e76c038ec5f0c" + }, + "apps/electron-vite-project/src/lib/__tests__/resolveActiveSandboxCloneTargets.test.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "c1f4a6fb6787b824bc508b93255a5b26", + "semantic_hash": "c1f4a6fb6787b824bc508b93255a5b26" + }, + "apps/electron-vite-project/src/lib/__tests__/sandboxCloneEntitlementFeedback.test.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "1af0befbf7473a88d3a4ba8ba5ab4301", + "semantic_hash": "1af0befbf7473a88d3a4ba8ba5ab4301" + }, + "apps/electron-vite-project/src/lib/__tests__/sandboxComposerGate.test.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "f46d4205b3f82085bd158e572c4cccdd", + "semantic_hash": "f46d4205b3f82085bd158e572c4cccdd" + }, + "apps/electron-vite-project/src/lib/__tests__/step10.productionReadiness.acceptance.test.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "86d0e8cc8c1a42c68e5e31b17c304ff5", + "semantic_hash": "86d0e8cc8c1a42c68e5e31b17c304ff5" + }, + "apps/electron-vite-project/src/lib/__tests__/step10.wrChatHostDiscoveryOrder.contract.test.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "810d4738cba3efcdcd97eee25d420791", + "semantic_hash": "810d4738cba3efcdcd97eee25d420791" + }, + "apps/electron-vite-project/src/lib/__tests__/step8.productionSafety.integration.test.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "e9be7538823b3707b6ceec7083f9408f", + "semantic_hash": "e9be7538823b3707b6ceec7083f9408f" + }, + "apps/electron-vite-project/src/lib/__tests__/step8.productionSafety.regression.test.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "36d56709fec87b9eaf974027b7edbfb8", + "semantic_hash": "36d56709fec87b9eaf974027b7edbfb8" + }, + "apps/electron-vite-project/src/lib/__tests__/step8.sandboxHostUiAndClone.test.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "c83c44b4b921a0336296392510da6fab", + "semantic_hash": "c83c44b4b921a0336296392510da6fab" + }, + "apps/electron-vite-project/src/lib/__tests__/step8.themeContrastRegressions.test.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "5bbc34e37e3c8e34470b981123ea73f5", + "semantic_hash": "5bbc34e37e3c8e34470b981123ea73f5" + }, + "apps/electron-vite-project/src/lib/__tests__/step9.regression.test.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "c48386726d5931095a7ed483b9c1a8e5", + "semantic_hash": "c48386726d5931095a7ed483b9c1a8e5" + }, + "apps/electron-vite-project/src/lib/aiExecutionContextFromSelection.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "061f4fcca445d4faa42880b279398cbb", + "semantic_hash": "061f4fcca445d4faa42880b279398cbb" + }, + "apps/electron-vite-project/src/lib/appendHostRowsFromListInference.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "0327b200d9cb0b4443ce3fed72c640b5", + "semantic_hash": "0327b200d9cb0b4443ce3fed72c640b5" + }, + "apps/electron-vite-project/src/lib/autoOptimizationEngine.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "b8c7101a153d8fd69fd637ba1fcb8a74", + "semantic_hash": "b8c7101a153d8fd69fd637ba1fcb8a74" + }, + "apps/electron-vite-project/src/lib/autoOptimizationFingerprint.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "58b2fc255bf579ca0903e9a39f7cc213", + "semantic_hash": "58b2fc255bf579ca0903e9a39f7cc213" + }, + "apps/electron-vite-project/src/lib/autoOptimizationGuards.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "8d43f7ab532e89bf02cc53b96ab40bdd", + "semantic_hash": "8d43f7ab532e89bf02cc53b96ab40bdd" + }, + "apps/electron-vite-project/src/lib/autoSortSessionReviewCharts.test.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "989db9e8e66c21e66f43154cc84e6a95", + "semantic_hash": "989db9e8e66c21e66f43154cc84e6a95" + }, + "apps/electron-vite-project/src/lib/autoSortSessionReviewCharts.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "20258411c9fa225be25285b51b477a4e", + "semantic_hash": "20258411c9fa225be25285b51b477a4e" + }, + "apps/electron-vite-project/src/lib/autosortDiagnostics.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "d0a6a6a76acf4ec227b403a89ab927d4", + "semantic_hash": "d0a6a6a76acf4ec227b403a89ab927d4" + }, + "apps/electron-vite-project/src/lib/beapInboxActionTooltips.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "316d56f685d815967b11330ad601ab4c", + "semantic_hash": "316d56f685d815967b11330ad601ab4c" + }, + "apps/electron-vite-project/src/lib/beapInboxCloneToSandbox.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "47bff57ed0e3acbbd45219649d4e5e53", + "semantic_hash": "47bff57ed0e3acbbd45219649d4e5e53" + }, + "apps/electron-vite-project/src/lib/beapInboxHostSandboxClickPolicy.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "a151f7c0c4161bac9d11986135c2eb36", + "semantic_hash": "a151f7c0c4161bac9d11986135c2eb36" + }, + "apps/electron-vite-project/src/lib/beapInboxSandboxVisibility.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "fab3d4e721b4a00f883dd73cb57cae59", + "semantic_hash": "fab3d4e721b4a00f883dd73cb57cae59" + }, + "apps/electron-vite-project/src/lib/beapInboxVisibleSandboxClone.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "75576c62f77371cfa7d09c9f744d7549", + "semantic_hash": "75576c62f77371cfa7d09c9f744d7549" + }, + "apps/electron-vite-project/src/lib/beapPackageAttachmentPreview.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "085ac5f20ed03bcdffe8876b5a5bc1cc", + "semantic_hash": "085ac5f20ed03bcdffe8876b5a5bc1cc" + }, + "apps/electron-vite-project/src/lib/beapSandboxCloneDeliverySemantics.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "2138b2f939ccc225190bd86f201459ea", + "semantic_hash": "2138b2f939ccc225190bd86f201459ea" + }, + "apps/electron-vite-project/src/lib/buildProjectSetupChatPrefix.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "b685eb1f0d569ad4d3451ed92cc31482", + "semantic_hash": "b685eb1f0d569ad4d3451ed92cc31482" + }, + "apps/electron-vite-project/src/lib/coalescedListInferenceTargets.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "3bc95c5d1b76d166809e1b8eda985c68", + "semantic_hash": "3bc95c5d1b76d166809e1b8eda985c68" + }, + "apps/electron-vite-project/src/lib/debugLogClipboard.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "2355f9534d39e3d20c895c60cd59af3b", + "semantic_hash": "2355f9534d39e3d20c895c60cd59af3b" + }, + "apps/electron-vite-project/src/lib/dedicatedSandboxIngestionUi.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "72d1d6f590544d56308dc8169382f3cd", + "semantic_hash": "72d1d6f590544d56308dc8169382f3cd" + }, + "apps/electron-vite-project/src/lib/dedicatedSandboxMissingReadProviderCopy.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "8062c37872d0cc92e1d8457f4d4202e8", + "semantic_hash": "8062c37872d0cc92e1d8457f4d4202e8" + }, + "apps/electron-vite-project/src/lib/fetchAnalysisDashboardSnapshot.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "d59a3184232f26e297bea5866f420760", + "semantic_hash": "d59a3184232f26e297bea5866f420760" + }, + "apps/electron-vite-project/src/lib/handshakeHealthBannerCopy.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "2535bece123a8cba7c172cf051d918ae", + "semantic_hash": "2535bece123a8cba7c172cf051d918ae" + }, + "apps/electron-vite-project/src/lib/handshakeRecipientMap.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "de9beb4a3bf4bb7e901e997227e376ce", + "semantic_hash": "de9beb4a3bf4bb7e901e997227e376ce" + }, + "apps/electron-vite-project/src/lib/hostActiveModelSelection.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "d09f75969e4573b8d162fd1310db7241", + "semantic_hash": "d09f75969e4573b8d162fd1310db7241" + }, + "apps/electron-vite-project/src/lib/hostAiRemoteChatLane.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "d37687f6cea176dbba17ff22e9d03c73", + "semantic_hash": "d37687f6cea176dbba17ff22e9d03c73" + }, + "apps/electron-vite-project/src/lib/hostAiSelectorCopy.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "78ceba1d1e1bb85af9e47148c50929f4", + "semantic_hash": "78ceba1d1e1bb85af9e47148c50929f4" + }, + "apps/electron-vite-project/src/lib/hostAiTargetConnectionPresentation.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "3dcda1eb60ec0dcb0f6efef660eef63f", + "semantic_hash": "3dcda1eb60ec0dcb0f6efef660eef63f" + }, + "apps/electron-vite-project/src/lib/hostAiTargetUiNormalization.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "e1d7375df358c30a41fbb7d713e9f11b", + "semantic_hash": "e1d7375df358c30a41fbb7d713e9f11b" + }, + "apps/electron-vite-project/src/lib/hostAiUiDiagnostics.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "d91e729b2e12a49dcc4ca9b8d01e83e8", + "semantic_hash": "d91e729b2e12a49dcc4ca9b8d01e83e8" + }, + "apps/electron-vite-project/src/lib/hostInferenceModelIds.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "8f086206fe82e0ff3b8679bf8227f0c5", + "semantic_hash": "8f086206fe82e0ff3b8679bf8227f0c5" + }, + "apps/electron-vite-project/src/lib/hostInferenceUiGates.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "2210ab1452af64d4bcaf2804531b02d2", + "semantic_hash": "2210ab1452af64d4bcaf2804531b02d2" + }, + "apps/electron-vite-project/src/lib/hostModelSelectorRowUi.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "730f962ad731a522f3474828f3ea67b3", + "semantic_hash": "730f962ad731a522f3474828f3ea67b3" + }, + "apps/electron-vite-project/src/lib/hostRefreshFeedback.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "2d77b1aad14d90d4ae204d8a4be42eac", + "semantic_hash": "2d77b1aad14d90d4ae204d8a4be42eac" + }, + "apps/electron-vite-project/src/lib/inboxAiCloneClassification.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "f192ea4ed12933a8c1d0eb2f6b1661d5", + "semantic_hash": "f192ea4ed12933a8c1d0eb2f6b1661d5" + }, + "apps/electron-vite-project/src/lib/inboxAiUserMessages.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "50e796b220acfdc68c2faf68962ecf43", + "semantic_hash": "50e796b220acfdc68c2faf68962ecf43" + }, + "apps/electron-vite-project/src/lib/inboxBeapOutbound.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "3ad91e82c7b81f88971f4b1f4cb25954", + "semantic_hash": "3ad91e82c7b81f88971f4b1f4cb25954" + }, + "apps/electron-vite-project/src/lib/inboxBeapRowEligibility.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "5e7e8ee85f2bb3e16eb83001ff581445", + "semantic_hash": "5e7e8ee85f2bb3e16eb83001ff581445" + }, + "apps/electron-vite-project/src/lib/inboxClassificationReconcile.test.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "c5a6ceb280635ebf3da1fc234e4ca044", + "semantic_hash": "c5a6ceb280635ebf3da1fc234e4ca044" + }, + "apps/electron-vite-project/src/lib/inboxClassificationReconcile.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "c850338382ee876c42f68f5a57a986c9", + "semantic_hash": "c850338382ee876c42f68f5a57a986c9" + }, + "apps/electron-vite-project/src/lib/inboxDetailAnalysisSelection.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "50f1a2226c5530f8e2c6db81b5790c9e", + "semantic_hash": "50f1a2226c5530f8e2c6db81b5790c9e" + }, + "apps/electron-vite-project/src/lib/inboxMessageActionable.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "8fc1d4ee0c495e6e2f2c4a989d1ff9da", + "semantic_hash": "8fc1d4ee0c495e6e2f2c4a989d1ff9da" + }, + "apps/electron-vite-project/src/lib/inboxMessageKind.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "f34eb313b67da375377c13fce6c32878", + "semantic_hash": "f34eb313b67da375377c13fce6c32878" + }, + "apps/electron-vite-project/src/lib/inboxMessageSandboxClone.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "a01d0909187226c2d7d58ac5659b4fe4", + "semantic_hash": "a01d0909187226c2d7d58ac5659b4fe4" + }, + "apps/electron-vite-project/src/lib/inboxSessionArtefact.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "8b30fbaa5047e49af65361de569e5eec", + "semantic_hash": "8b30fbaa5047e49af65361de569e5eec" + }, + "apps/electron-vite-project/src/lib/inboxSessionReviewOpen.test.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "b258d3daf534d135bb9370ae3fbd88d8", + "semantic_hash": "b258d3daf534d135bb9370ae3fbd88d8" + }, + "apps/electron-vite-project/src/lib/inboxSessionReviewOpen.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "03d27b81b5054a09cb9a1ef4d5dbe1d1", + "semantic_hash": "03d27b81b5054a09cb9a1ef4d5dbe1d1" + }, + "apps/electron-vite-project/src/lib/inboxSortSourceWeighting.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "55d3d61db5ef9638a05b460699a61f7c", + "semantic_hash": "55d3d61db5ef9638a05b460699a61f7c" + }, + "apps/electron-vite-project/src/lib/inferenceSelectionPersistence.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "64a44453eac8f1269cd5349eb55f2cac", + "semantic_hash": "64a44453eac8f1269cd5349eb55f2cac" + }, + "apps/electron-vite-project/src/lib/inferenceTargetRefreshLog.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "112485c8ba6595b4b93ecd1cf31b827f", + "semantic_hash": "112485c8ba6595b4b93ecd1cf31b827f" + }, + "apps/electron-vite-project/src/lib/inferenceTargetTypes.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "09c280d9b1365c7d29e0311cdf39cd85", + "semantic_hash": "09c280d9b1365c7d29e0311cdf39cd85" + }, + "apps/electron-vite-project/src/lib/ingestAiContextFiles.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "3162442e149f5043dff170e4b548f20e", + "semantic_hash": "3162442e149f5043dff170e4b548f20e" + }, + "apps/electron-vite-project/src/lib/letterTemplateMultiVersion.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "de231e64833d07512f5bb3a211a2055f", + "semantic_hash": "de231e64833d07512f5bb3a211a2055f" + }, + "apps/electron-vite-project/src/lib/modelSelectorHostRefreshVisibility.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "0fa8d88cee088a71d6460b43454b9d45", + "semantic_hash": "0fa8d88cee088a71d6460b43454b9d45" + }, + "apps/electron-vite-project/src/lib/modelSelectorMerge.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "6cab981d80abfcc7f38fa6b469925e65", + "semantic_hash": "6cab981d80abfcc7f38fa6b469925e65" + }, + "apps/electron-vite-project/src/lib/modelSelectorTargetsLog.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "3dfa83893542023f8427a977aad69794", + "semantic_hash": "3dfa83893542023f8427a977aad69794" + }, + "apps/electron-vite-project/src/lib/openAppExternalUrl.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "835f6d1142d0f4adfa178c067759197d", + "semantic_hash": "835f6d1142d0f4adfa178c067759197d" + }, + "apps/electron-vite-project/src/lib/openSessionDisplayGridsFromDashboard.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "efc6e995284b8d042aa06de8d5f7ca56", + "semantic_hash": "efc6e995284b8d042aa06de8d5f7ca56" + }, + "apps/electron-vite-project/src/lib/optimizationAgentBoxModel.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "c36a2b98ed9b604ce845ad36e6f1c3d8", + "semantic_hash": "c36a2b98ed9b604ce845ad36e6f1c3d8" + }, + "apps/electron-vite-project/src/lib/optimizationAgentRunner.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "e68429093d6040cf5ecb172016bb2621", + "semantic_hash": "e68429093d6040cf5ecb172016bb2621" + }, + "apps/electron-vite-project/src/lib/optimizationChainRunner.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "170dc5efb412d2fe135f22b65bd553cf", + "semantic_hash": "170dc5efb412d2fe135f22b65bd553cf" + }, + "apps/electron-vite-project/src/lib/optimizationContextAssembler.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "52015e0a1b3e2056ceced5203f75062a", + "semantic_hash": "52015e0a1b3e2056ceced5203f75062a" + }, + "apps/electron-vite-project/src/lib/optimizationLlmAdapter.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "88b14bfd1b1ad864586f0c5b0cb62ba2", + "semantic_hash": "88b14bfd1b1ad864586f0c5b0cb62ba2" + }, + "apps/electron-vite-project/src/lib/optimizationPromptBuilder.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "c5730b4e89f537944fc4d9a2b3aa546b", + "semantic_hash": "c5730b4e89f537944fc4d9a2b3aa546b" + }, + "apps/electron-vite-project/src/lib/optimizationRunCoordinator.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "c54ec4419dde2a7c0ec34ab42f0b2bd5", + "semantic_hash": "c54ec4419dde2a7c0ec34ab42f0b2bd5" + }, + "apps/electron-vite-project/src/lib/orchestratorModeVsHandshake.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "263079a353dd8169792e3e38fd8e9b80", + "semantic_hash": "263079a353dd8169792e3e38fd8e9b80" + }, + "apps/electron-vite-project/src/lib/orchestratorSessionClient.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "6baa005193a98750c81b92c91b4830ba", + "semantic_hash": "6baa005193a98750c81b92c91b4830ba" + }, + "apps/electron-vite-project/src/lib/projectAssistantAiFieldContracts.test.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "6d97ade7377d6907cfa3ad4b6b8bb14b", + "semantic_hash": "6d97ade7377d6907cfa3ad4b6b8bb14b" + }, + "apps/electron-vite-project/src/lib/projectAssistantAiFieldContracts.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "e9c879fcfe3bc7c8c51ed1f1b59c5d1c", + "semantic_hash": "e9c879fcfe3bc7c8c51ed1f1b59c5d1c" + }, + "apps/electron-vite-project/src/lib/refreshHostInferenceTargets.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "cac70bbd439a1d44afa4af046684d2fc", + "semantic_hash": "cac70bbd439a1d44afa4af046684d2fc" + }, + "apps/electron-vite-project/src/lib/refreshOrchestratorSessions.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "c78ef56c9048b7061f8b5d903755b589", + "semantic_hash": "c78ef56c9048b7061f8b5d903755b589" + }, + "apps/electron-vite-project/src/lib/resolveActiveSandboxCloneTargets.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "0f9b3f264b54eff41a09b522529fb3ff", + "semantic_hash": "0f9b3f264b54eff41a09b522529fb3ff" + }, + "apps/electron-vite-project/src/lib/runBeapSessionAutomation.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "855c3fd27dc4f6c1fd8b1c1e59e4f31e", + "semantic_hash": "855c3fd27dc4f6c1fd8b1c1e59e4f31e" + }, + "apps/electron-vite-project/src/lib/sandboxCloneFeedbackUi.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "fa6d62f23cfcbafa878cac7c4c36a862", + "semantic_hash": "fa6d62f23cfcbafa878cac7c4c36a862" + }, + "apps/electron-vite-project/src/lib/selectorModelListFromHostDiscovery.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "9b3d5b8248aed9ce75fa7020af949684", + "semantic_hash": "9b3d5b8248aed9ce75fa7020af949684" + }, + "apps/electron-vite-project/src/lib/useAnalysisDashboardSnapshot.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "e96b47ef9c7108670dc40ad1d55e4031", + "semantic_hash": "e96b47ef9c7108670dc40ad1d55e4031" + }, + "apps/electron-vite-project/src/lib/wrChatDashboardBootstrap.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "c6b62a5210e6f43eec50a7691aca1cad", + "semantic_hash": "c6b62a5210e6f43eec50a7691aca1cad" + }, + "apps/electron-vite-project/src/lib/wrChatDashboardConstants.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "6322a595b112ae658bd6b57372da60de", + "semantic_hash": "6322a595b112ae658bd6b57372da60de" + }, + "apps/electron-vite-project/src/lib/wrChatDashboardLog.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "34f55074a7bad55a92e0bd9a4aa9dfb8", + "semantic_hash": "34f55074a7bad55a92e0bd9a4aa9dfb8" + }, + "apps/electron-vite-project/src/lib/wrChatDashboardSpeechContext.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "8cd1dd9dbb1aecb9f6217923f1444134", + "semantic_hash": "8cd1dd9dbb1aecb9f6217923f1444134" + }, + "apps/electron-vite-project/src/lib/wrChatRuntimeMode.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "494fff8a233c9794f74bfbaf8a8638f3", + "semantic_hash": "494fff8a233c9794f74bfbaf8a8638f3" + }, + "apps/electron-vite-project/src/lib/wrDeskOptimizerHttpBridge.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "54a374ac3aa8941c7d78bf6cca0287d9", + "semantic_hash": "54a374ac3aa8941c7d78bf6cca0287d9" + }, + "apps/electron-vite-project/src/lib/wrdeskUiEvents.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "74852bbec57c4a1dee4ef0619a898c17", + "semantic_hash": "74852bbec57c4a1dee4ef0619a898c17" + }, + "apps/electron-vite-project/src/main.tsx": { + "mtime": 1786206352.1307135, + "ast_hash": "115da71d60bb0596067c06f83dacaee9", + "semantic_hash": "115da71d60bb0596067c06f83dacaee9" + }, + "apps/electron-vite-project/src/shims/__tests__/handshakeRpc.acceptX25519.shim.regression.test.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "10f5ae90e85d8c837f4448707c25206f", + "semantic_hash": "10f5ae90e85d8c837f4448707c25206f" + }, + "apps/electron-vite-project/src/shims/audit.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "a4ef93d45959b198fab43aad43e2bf39", + "semantic_hash": "a4ef93d45959b198fab43aad43e2bf39" + }, + "apps/electron-vite-project/src/shims/envelope-evaluation.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "d419aea4499b438ca1fdcf84dd270680", + "semantic_hash": "d419aea4499b438ca1fdcf84dd270680" + }, + "apps/electron-vite-project/src/shims/handshakeRpc.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "75d0215f3da73f659a3f2b6aa9a27f2c", + "semantic_hash": "75d0215f3da73f659a3f2b6aa9a27f2c" + }, + "apps/electron-vite-project/src/shims/hsContextProfilesRpc.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "2b28b7fdf47f46558178e63a3a124e6b", + "semantic_hash": "2b28b7fdf47f46558178e63a3a124e6b" + }, + "apps/electron-vite-project/src/shims/ingress.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "a0b3e66c29bbabe6c3b06547f23011a8", + "semantic_hash": "a0b3e66c29bbabe6c3b06547f23011a8" + }, + "apps/electron-vite-project/src/shims/reconstruction.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "7caceb34b9fafedfc38d19fecd32e935", + "semantic_hash": "7caceb34b9fafedfc38d19fecd32e935" + }, + "apps/electron-vite-project/src/shims/wrChatDashboardChrome.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "eb936a349f8a218172206a3ec292c723", + "semantic_hash": "eb936a349f8a218172206a3ec292c723" + }, + "apps/electron-vite-project/src/shims/wrChatDashboardModeInterval.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "8184b5c153938c91ab613c5258f27ae7", + "semantic_hash": "8184b5c153938c91ab613c5258f27ae7" + }, + "apps/electron-vite-project/src/shims/wrChatDashboardModeRunBridge.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "d786a813903a0d623c383ebb3e6a2189", + "semantic_hash": "d786a813903a0d623c383ebb3e6a2189" + }, + "apps/electron-vite-project/src/stores/useAiDraftContextStore.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "353ff0a0250b63b736ea7b0429c6642d", + "semantic_hash": "353ff0a0250b63b736ea7b0429c6642d" + }, + "apps/electron-vite-project/src/stores/useDraftRefineStore.ts": { + "mtime": 1786206352.134713, + "ast_hash": "ac189a8195815c5648f879d7dc13bfec", + "semantic_hash": "ac189a8195815c5648f879d7dc13bfec" + }, + "apps/electron-vite-project/src/stores/useEmailInboxStore.ts": { + "mtime": 1786206352.134713, + "ast_hash": "693aa9a8ac1ca9bf6b2038add4a21f88", + "semantic_hash": "693aa9a8ac1ca9bf6b2038add4a21f88" + }, + "apps/electron-vite-project/src/stores/useLetterComposerStore.ts": { + "mtime": 1786206352.134713, + "ast_hash": "b8e88a7f70267c688933e57330572274", + "semantic_hash": "b8e88a7f70267c688933e57330572274" + }, + "apps/electron-vite-project/src/stores/useProjectSetupChatContextStore.ts": { + "mtime": 1786206352.134713, + "ast_hash": "6ac528afeca413d5699c7d019be0b6f9", + "semantic_hash": "6ac528afeca413d5699c7d019be0b6f9" + }, + "apps/electron-vite-project/src/stores/useProjectStore.ts": { + "mtime": 1786206352.134713, + "ast_hash": "d44f3531e812767bf92b8d6df19b1bce", + "semantic_hash": "d44f3531e812767bf92b8d6df19b1bce" + }, + "apps/electron-vite-project/src/styles/uiContrastTokens.ts": { + "mtime": 1786206352.134713, + "ast_hash": "1af8eef59952324fb7238bc801b26dff", + "semantic_hash": "1af8eef59952324fb7238bc801b26dff" + }, + "apps/electron-vite-project/src/types/analysisDashboardSnapshot.ts": { + "mtime": 1786206352.134713, + "ast_hash": "15df6030ec1a6fba530d1b256b152f9e", + "semantic_hash": "15df6030ec1a6fba530d1b256b152f9e" + }, + "apps/electron-vite-project/src/types/beapInboxClone.ts": { + "mtime": 1786206352.134713, + "ast_hash": "33d1f4838dae1f164ab561ed61a5025f", + "semantic_hash": "33d1f4838dae1f164ab561ed61a5025f" + }, + "apps/electron-vite-project/src/types/inboxAi.ts": { + "mtime": 1786206352.134713, + "ast_hash": "60921d223e0d9d69b775601789c2ad34", + "semantic_hash": "60921d223e0d9d69b775601789c2ad34" + }, + "apps/electron-vite-project/src/types/optimizationTypes.ts": { + "mtime": 1786206352.134713, + "ast_hash": "0334f4025b826e8574ab498b421cd0ee", + "semantic_hash": "0334f4025b826e8574ab498b421cd0ee" + }, + "apps/electron-vite-project/src/types/projectTypes.ts": { + "mtime": 1786206352.134713, + "ast_hash": "9ed59f1f357788dbb673625fb736a779", + "semantic_hash": "9ed59f1f357788dbb673625fb736a779" + }, + "apps/electron-vite-project/src/types/sandboxOrchestratorAvailability.ts": { + "mtime": 1786206352.134713, + "ast_hash": "4eb76f89be7cb2c82e8939cc5da3fb2d", + "semantic_hash": "4eb76f89be7cb2c82e8939cc5da3fb2d" + }, + "apps/electron-vite-project/src/utils/__tests__/validationState.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "04a685a729af44f46fed6fc8f8bb8196", + "semantic_hash": "04a685a729af44f46fed6fc8f8bb8196" + }, + "apps/electron-vite-project/src/utils/activeEmailAccountIdsForSync.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "201a71a0f645958c3aed7a1ed450b31d", + "semantic_hash": "201a71a0f645958c3aed7a1ed450b31d" + }, + "apps/electron-vite-project/src/utils/contextBlockHash.ts": { + "mtime": 1786206352.134713, + "ast_hash": "847cc704115af96147ea55a018f1f4ab", + "semantic_hash": "847cc704115af96147ea55a018f1f4ab" + }, + "apps/electron-vite-project/src/utils/inboxNewMessagesBackgroundRefresh.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "2ab2d3f8cae4c32cb9d3361693821975", + "semantic_hash": "2ab2d3f8cae4c32cb9d3361693821975" + }, + "apps/electron-vite-project/src/utils/inboxNewMessagesBackgroundRefresh.ts": { + "mtime": 1786206352.134713, + "ast_hash": "460fa8d9f4a0cf8a6b3bc8d4ce57237a", + "semantic_hash": "460fa8d9f4a0cf8a6b3bc8d4ce57237a" + }, + "apps/electron-vite-project/src/utils/originDeleteFlow.ts": { + "mtime": 1786206352.134713, + "ast_hash": "d3d4393f58d93e20a7091bfd75d99e82", + "semantic_hash": "d3d4393f58d93e20a7091bfd75d99e82" + }, + "apps/electron-vite-project/src/utils/parseInboxAiJson.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "1ffa4658f830b8355475d150565bf423", + "semantic_hash": "1ffa4658f830b8355475d150565bf423" + }, + "apps/electron-vite-project/src/utils/parseInboxAiJson.ts": { + "mtime": 1786206352.134713, + "ast_hash": "cb9c24a5c1ddcc4c3870a7f332da75cc", + "semantic_hash": "cb9c24a5c1ddcc4c3870a7f332da75cc" + }, + "apps/electron-vite-project/src/utils/parseInboxAiScamWatchdog.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "f55986b474657ac67d5b551ffb70fd8c", + "semantic_hash": "f55986b474657ac67d5b551ffb70fd8c" + }, + "apps/electron-vite-project/src/utils/safeLinks.ts": { + "mtime": 1786206352.134713, + "ast_hash": "734874d6992ef3fb08d4f306501bfac3", + "semantic_hash": "734874d6992ef3fb08d4f306501bfac3" + }, + "apps/electron-vite-project/src/utils/syncFailureUi.test.ts": { + "mtime": 1786206352.134713, + "ast_hash": "141affe0305b8a178c7095fbb4f99953", + "semantic_hash": "141affe0305b8a178c7095fbb4f99953" + }, + "apps/electron-vite-project/src/utils/syncFailureUi.ts": { + "mtime": 1786206352.134713, + "ast_hash": "e0ece6ef38f385c343bace1aa44320ee", + "semantic_hash": "e0ece6ef38f385c343bace1aa44320ee" + }, + "apps/electron-vite-project/src/utils/validationState.ts": { + "mtime": 1786206352.134713, + "ast_hash": "b06164f7c4107536b8c9d2977075a493", + "semantic_hash": "b06164f7c4107536b8c9d2977075a493" + }, + "apps/electron-vite-project/src/vite-env.d.ts": { + "mtime": 1786206352.134713, + "ast_hash": "5d8eb714c30802f98e630a03e2e13a4e", + "semantic_hash": "5d8eb714c30802f98e630a03e2e13a4e" + }, + "apps/electron-vite-project/start-opengiraffe.ps1": { + "mtime": 1786206352.134713, + "ast_hash": "cea78d688e3d06f1d24c49e2193a997b", + "semantic_hash": "cea78d688e3d06f1d24c49e2193a997b" + }, + "apps/electron-vite-project/stop-opengiraffe.ps1": { + "mtime": 1786206352.134713, + "ast_hash": "528ed6ace50552886cd0f020b635edf4", + "semantic_hash": "528ed6ace50552886cd0f020b635edf4" + }, + "apps/electron-vite-project/tsconfig.json": { + "mtime": 1786206352.134713, + "ast_hash": "85b3ee6545a5fb0f7c539fc9daa7400b", + "semantic_hash": "85b3ee6545a5fb0f7c539fc9daa7400b" + }, + "apps/electron-vite-project/tsconfig.node.json": { + "mtime": 1786206352.134713, + "ast_hash": "df562a73dce2f53f022bc93ee20099c2", + "semantic_hash": "df562a73dce2f53f022bc93ee20099c2" + }, + "apps/electron-vite-project/vite.config.ts": { + "mtime": 1786206352.134713, + "ast_hash": "2de0725544e3d33ac0caa1286f55f8f7", + "semantic_hash": "2de0725544e3d33ac0caa1286f55f8f7" + }, + "apps/electron-vite-project/websocket-diagnostic-report.json": { + "mtime": 1786206352.134713, + "ast_hash": "251152af1c1c9574e85a88c993e88a6f", + "semantic_hash": "251152af1c1c9574e85a88c993e88a6f" + }, + "apps/extension-chromium/check-chrome-storage.js": { + "mtime": 1786206352.134713, + "ast_hash": "f4c3496bc0b75d60d20cdb2a59708290", + "semantic_hash": "f4c3496bc0b75d60d20cdb2a59708290" + }, + "apps/extension-chromium/manifest.config.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "882009f55fb1c9f4e07051af77981213", + "semantic_hash": "882009f55fb1c9f4e07051af77981213" + }, + "apps/extension-chromium/package.json": { + "mtime": 1786206352.1387124, + "ast_hash": "4251ee289a75820005ca47e7fc089b62", + "semantic_hash": "4251ee289a75820005ca47e7fc089b62" + }, + "apps/extension-chromium/public/grid-display.js": { + "mtime": 1786206352.1387124, + "ast_hash": "7d54a1fab917952aa79724b152e6c506", + "semantic_hash": "7d54a1fab917952aa79724b152e6c506" + }, + "apps/extension-chromium/public/grid-integration-default-badge.js": { + "mtime": 1786206352.1387124, + "ast_hash": "43efbc00954355c3d8b00fe26b70c7da", + "semantic_hash": "43efbc00954355c3d8b00fe26b70c7da" + }, + "apps/extension-chromium/public/grid-script-backup.js": { + "mtime": 1786206352.1387124, + "ast_hash": "483d4006e78f6702ce155d64a5d648c0", + "semantic_hash": "483d4006e78f6702ce155d64a5d648c0" + }, + "apps/extension-chromium/public/grid-script-v2.js": { + "mtime": 1786206352.1387124, + "ast_hash": "46f824b5ee351d470dabcaa92368d2a8", + "semantic_hash": "46f824b5ee351d470dabcaa92368d2a8" + }, + "apps/extension-chromium/public/grid-script.js": { + "mtime": 1786206352.1387124, + "ast_hash": "7b39e9dc9de1defecde9c5040353d196", + "semantic_hash": "7b39e9dc9de1defecde9c5040353d196" + }, + "apps/extension-chromium/public/orchestration.js": { + "mtime": 1786206352.1387124, + "ast_hash": "2d03526b1476a6a6fbc78d53abaaa737", + "semantic_hash": "2d03526b1476a6a6fbc78d53abaaa737" + }, + "apps/extension-chromium/schemas/agent.schema.json": { + "mtime": 1786206352.1387124, + "ast_hash": "161958b19113fe336066c127dde7b3c6", + "semantic_hash": "161958b19113fe336066c127dde7b3c6" + }, + "apps/extension-chromium/schemas/agent.template.json": { + "mtime": 1786206352.1387124, + "ast_hash": "9cdb985d5689d6438dbfa475026c265f", + "semantic_hash": "9cdb985d5689d6438dbfa475026c265f" + }, + "apps/extension-chromium/schemas/agentbox.schema.json": { + "mtime": 1786206352.1387124, + "ast_hash": "04aa288049237da6bd086282f9a93d65", + "semantic_hash": "04aa288049237da6bd086282f9a93d65" + }, + "apps/extension-chromium/schemas/agentbox.template.json": { + "mtime": 1786206352.1387124, + "ast_hash": "15082ed2569e4aa8a894775bc730f5cb", + "semantic_hash": "15082ed2569e4aa8a894775bc730f5cb" + }, + "apps/extension-chromium/schemas/example-agent.json": { + "mtime": 1786206352.1387124, + "ast_hash": "6046dfb6740e84f72df8efda02af569a", + "semantic_hash": "6046dfb6740e84f72df8efda02af569a" + }, + "apps/extension-chromium/schemas/optimando.schema.json": { + "mtime": 1786206352.1387124, + "ast_hash": "20eef60d4b7e4423aeedea6d50737d75", + "semantic_hash": "20eef60d4b7e4423aeedea6d50737d75" + }, + "apps/extension-chromium/schemas/optimando.template.json": { + "mtime": 1786206352.1387124, + "ast_hash": "6ac424cfe172a1be86f0a687d0c3cec1", + "semantic_hash": "6ac424cfe172a1be86f0a687d0c3cec1" + }, + "apps/extension-chromium/src/agent-manager-v2.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "c6cc158c76580c161d143c62c9aaaaae", + "semantic_hash": "c6cc158c76580c161d143c62c9aaaaae" + }, + "apps/extension-chromium/src/audit/archivalService.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "b49919f2e8e265f643a5a5ecdf504505", + "semantic_hash": "b49919f2e8e265f643a5a5ecdf504505" + }, + "apps/extension-chromium/src/audit/components/ArchiveButton.tsx": { + "mtime": 1786206352.1387124, + "ast_hash": "bfcce54d48ccbb5a0dd7b68a10eddf2b", + "semantic_hash": "bfcce54d48ccbb5a0dd7b68a10eddf2b" + }, + "apps/extension-chromium/src/audit/components/AuditTrailPanel.tsx": { + "mtime": 1786206352.1387124, + "ast_hash": "2fb1a97dca770e3183239c7e5cbf95ed", + "semantic_hash": "2fb1a97dca770e3183239c7e5cbf95ed" + }, + "apps/extension-chromium/src/audit/components/index.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "5e82bb1e7dd320bc76da3bec57327305", + "semantic_hash": "5e82bb1e7dd320bc76da3bec57327305" + }, + "apps/extension-chromium/src/audit/exportService.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "bff3ba9bed82a6c494d786460ac2baad", + "semantic_hash": "bff3ba9bed82a6c494d786460ac2baad" + }, + "apps/extension-chromium/src/audit/index.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "577244e78a1e91f8853b28197fc62ad2", + "semantic_hash": "577244e78a1e91f8853b28197fc62ad2" + }, + "apps/extension-chromium/src/audit/types.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "cb9fe9dd726456c90b269f165c2d0421", + "semantic_hash": "cb9fe9dd726456c90b269f165c2d0421" + }, + "apps/extension-chromium/src/audit/useAuditStore.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "b383e61eeb025c6229b4e8abb375d294", + "semantic_hash": "b383e61eeb025c6229b4e8abb375d294" + }, + "apps/extension-chromium/src/automation/ListenerManager.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "69783921f6d848fa5243071c3eb9f469", + "semantic_hash": "69783921f6d848fa5243071c3eb9f469" + }, + "apps/extension-chromium/src/automation/__tests__/ConditionEngine.test.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "6ad2486a2c79d7d02b40ae6de6bd2929", + "semantic_hash": "6ad2486a2c79d7d02b40ae6de6bd2929" + }, + "apps/extension-chromium/src/automation/__tests__/LegacyConfigAdapter.test.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "2b3ad4870665e42ff53ccbb3d8be1347", + "semantic_hash": "2b3ad4870665e42ff53ccbb3d8be1347" + }, + "apps/extension-chromium/src/automation/__tests__/ListenerManager.test.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "241e4f50bec038b080cbc34343818c58", + "semantic_hash": "241e4f50bec038b080cbc34343818c58" + }, + "apps/extension-chromium/src/automation/__tests__/TriggerRegistry.test.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "c67c22d1cfba7486ee634a5cc5dfc390", + "semantic_hash": "c67c22d1cfba7486ee634a5cc5dfc390" + }, + "apps/extension-chromium/src/automation/__tests__/WorkflowRunner.test.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "657b90393ab6fb7268f251e1bc2433d6", + "semantic_hash": "657b90393ab6fb7268f251e1bc2433d6" + }, + "apps/extension-chromium/src/automation/adapters/LegacyConfigAdapter.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "06b4b4b40da3818823e114afe78d87de", + "semantic_hash": "06b4b4b40da3818823e114afe78d87de" + }, + "apps/extension-chromium/src/automation/adapters/TriggerMigration.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "576eef1d55102ebd0bdf55eb619fcd69", + "semantic_hash": "576eef1d55102ebd0bdf55eb619fcd69" + }, + "apps/extension-chromium/src/automation/adapters/index.ts": { + "mtime": 1786206352.1387124, + "ast_hash": "0385250621c0e6ec8495a53541009ca7", + "semantic_hash": "0385250621c0e6ec8495a53541009ca7" + }, + "apps/extension-chromium/src/automation/conditions/ConditionEngine.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "4298e42221c4671b5355d39e391c83d7", + "semantic_hash": "4298e42221c4671b5355d39e391c83d7" + }, + "apps/extension-chromium/src/automation/conditions/EventTagMatcher.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "c6debd1cd0cada751aea8a9154827947", + "semantic_hash": "c6debd1cd0cada751aea8a9154827947" + }, + "apps/extension-chromium/src/automation/conditions/index.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "07deb1edba21bc76772313e628a2b010", + "semantic_hash": "07deb1edba21bc76772313e628a2b010" + }, + "apps/extension-chromium/src/automation/conditions/operators.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "d3e30b0445e0dd66378e1dbe7f899f9c", + "semantic_hash": "d3e30b0445e0dd66378e1dbe7f899f9c" + }, + "apps/extension-chromium/src/automation/index.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "e5e29295ff91c2221178f738cac5ea69", + "semantic_hash": "e5e29295ff91c2221178f738cac5ea69" + }, + "apps/extension-chromium/src/automation/triggers/BaseTrigger.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "35578444b01645403eb89d4e6d0bd124", + "semantic_hash": "35578444b01645403eb89d4e6d0bd124" + }, + "apps/extension-chromium/src/automation/triggers/ChatTrigger.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "1b393798e48da67bd6594800cecc5b1d", + "semantic_hash": "1b393798e48da67bd6594800cecc5b1d" + }, + "apps/extension-chromium/src/automation/triggers/CronTrigger.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "9a290c39d6dc3277bf1e8b5848e43c55", + "semantic_hash": "9a290c39d6dc3277bf1e8b5848e43c55" + }, + "apps/extension-chromium/src/automation/triggers/TriggerRegistry.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "6c001b3d72875593834f5d616a3b8a55", + "semantic_hash": "6c001b3d72875593834f5d616a3b8a55" + }, + "apps/extension-chromium/src/automation/triggers/index.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "e47a217c8bfbfa06005c36a0ae6a7b20", + "semantic_hash": "e47a217c8bfbfa06005c36a0ae6a7b20" + }, + "apps/extension-chromium/src/automation/types.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "3927b11fcfe49de720536671df6abcc4", + "semantic_hash": "3927b11fcfe49de720536671df6abcc4" + }, + "apps/extension-chromium/src/automation/workflows/ActionWorkflow.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "ae28d642e3939d544542b3bcb942206e", + "semantic_hash": "ae28d642e3939d544542b3bcb942206e" + }, + "apps/extension-chromium/src/automation/workflows/SensorWorkflow.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "f6ffd960359859296deb4c5e858ec8f0", + "semantic_hash": "f6ffd960359859296deb4c5e858ec8f0" + }, + "apps/extension-chromium/src/automation/workflows/WorkflowRegistry.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "7bef17867163c8ef99a284e4299f70b2", + "semantic_hash": "7bef17867163c8ef99a284e4299f70b2" + }, + "apps/extension-chromium/src/automation/workflows/WorkflowRunner.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "c299f717f5063cc16605f4f3b6bf2e98", + "semantic_hash": "c299f717f5063cc16605f4f3b6bf2e98" + }, + "apps/extension-chromium/src/automation/workflows/index.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "018202622c17bb5924fbb1973deeeb26", + "semantic_hash": "018202622c17bb5924fbb1973deeeb26" + }, + "apps/extension-chromium/src/background.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "af94b69cbe2a34f287c9d92dc65bf52e", + "semantic_hash": "af94b69cbe2a34f287c9d92dc65bf52e" + }, + "apps/extension-chromium/src/beap-builder/__tests__/buildSessionImportArtefact.test.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "dacba1bd179093530ddad59853c400c0", + "semantic_hash": "dacba1bd179093530ddad59853c400c0" + }, + "apps/extension-chromium/src/beap-builder/__tests__/draftAttachmentAutoParse.test.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "5bc62f3fb08c6c328140432e5540f85d", + "semantic_hash": "5bc62f3fb08c6c328140432e5540f85d" + }, + "apps/extension-chromium/src/beap-builder/__tests__/handshakeRefresh.test.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "c2c5c67e516256397dd4b49f56b736b6", + "semantic_hash": "c2c5c67e516256397dd4b49f56b736b6" + }, + "apps/extension-chromium/src/beap-builder/__tests__/parserService.test.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "6792c1f218a8bbdd72a917b2fbe1eaeb", + "semantic_hash": "6792c1f218a8bbdd72a917b2fbe1eaeb" + }, + "apps/extension-chromium/src/beap-builder/__tests__/pr41OrchestratorReads.test.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "5d8b667fe9aed5d66b0159e6d3be2611", + "semantic_hash": "5d8b667fe9aed5d66b0159e6d3be2611" + }, + "apps/extension-chromium/src/beap-builder/__tests__/pr4SenderPlumbing.test.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "f8bdfaf3a26bc400612fa2de3575b232", + "semantic_hash": "f8bdfaf3a26bc400612fa2de3575b232" + }, + "apps/extension-chromium/src/beap-builder/anthropicApiKeyStorage.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "bacb331a13c3e9d13f42f8725d757c91", + "semantic_hash": "bacb331a13c3e9d13f42f8725d757c91" + }, + "apps/extension-chromium/src/beap-builder/boundary-types.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "6bafe3eebdcd58c5768a3177f4e3ba80", + "semantic_hash": "6bafe3eebdcd58c5768a3177f4e3ba80" + }, + "apps/extension-chromium/src/beap-builder/buildSessionImportArtefact.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "dbe33d084e63d2558f36c33b5aa592f7", + "semantic_hash": "dbe33d084e63d2558f36c33b5aa592f7" + }, + "apps/extension-chromium/src/beap-builder/canonical-types.ts": { + "mtime": 1786206352.1427116, + "ast_hash": "843b25f9bd7fe12a0575cf65c3af24f5", + "semantic_hash": "843b25f9bd7fe12a0575cf65c3af24f5" + }, + "apps/extension-chromium/src/beap-builder/components/AttachmentStatusBadge.tsx": { + "mtime": 1786206352.1427116, + "ast_hash": "fc74e4b6e8f060208cfcf27daf85c44e", + "semantic_hash": "fc74e4b6e8f060208cfcf27daf85c44e" + }, + "apps/extension-chromium/src/beap-builder/components/BeapDocumentReaderModal.tsx": { + "mtime": 1786206352.1427116, + "ast_hash": "6d33560173f51882d1c6735850c46a60", + "semantic_hash": "6d33560173f51882d1c6735850c46a60" + }, + "apps/extension-chromium/src/beap-builder/components/DeliveryOptions.tsx": { + "mtime": 1786206352.1427116, + "ast_hash": "9e424d70860a5df1d6223f2361978b21", + "semantic_hash": "9e424d70860a5df1d6223f2361978b21" + }, + "apps/extension-chromium/src/beap-builder/components/EnvelopeSection.tsx": { + "mtime": 1786206352.146711, + "ast_hash": "957f2409f3faa9a48051d3a682a93f30", + "semantic_hash": "957f2409f3faa9a48051d3a682a93f30" + }, + "apps/extension-chromium/src/beap-builder/components/EnvelopeSummaryPanel.tsx": { + "mtime": 1786206352.146711, + "ast_hash": "2a14af7e38a9c1b3ed673ce158bb1a16", + "semantic_hash": "2a14af7e38a9c1b3ed673ce158bb1a16" + }, + "apps/extension-chromium/src/beap-builder/components/ExecutionBoundaryPanel.tsx": { + "mtime": 1786206352.146711, + "ast_hash": "92f95e7f2d5e9c43af8fcef1b7af7c9e", + "semantic_hash": "92f95e7f2d5e9c43af8fcef1b7af7c9e" + }, + "apps/extension-chromium/src/beap-builder/components/ExecutionBoundarySection.tsx": { + "mtime": 1786206352.146711, + "ast_hash": "f9ecf7839a3ccbd201f8f3b9679e3211", + "semantic_hash": "f9ecf7839a3ccbd201f8f3b9679e3211" + }, + "apps/extension-chromium/src/beap-builder/components/VisionFallbackButton.tsx": { + "mtime": 1786206352.146711, + "ast_hash": "f2bcaba6303e03794848540c653ff9b3", + "semantic_hash": "f2bcaba6303e03794848540c653ff9b3" + }, + "apps/extension-chromium/src/beap-builder/components/index.ts": { + "mtime": 1786206352.146711, + "ast_hash": "34cd7a6ef5d039ca4a6392b2c54ba7c9", + "semantic_hash": "34cd7a6ef5d039ca4a6392b2c54ba7c9" + }, + "apps/extension-chromium/src/beap-builder/dispatch-types.ts": { + "mtime": 1786206352.146711, + "ast_hash": "88115145cba9d4882080b77f2dd3bee1", + "semantic_hash": "88115145cba9d4882080b77f2dd3bee1" + }, + "apps/extension-chromium/src/beap-builder/draftAttachmentAutoParse.ts": { + "mtime": 1786206352.146711, + "ast_hash": "ead266d5bb603ddb43e7abe0aacb20a1", + "semantic_hash": "ead266d5bb603ddb43e7abe0aacb20a1" + }, + "apps/extension-chromium/src/beap-builder/handshakeRefresh.ts": { + "mtime": 1786206352.146711, + "ast_hash": "b2e09c29d1b26e933bdb95585273edcc", + "semantic_hash": "b2e09c29d1b26e933bdb95585273edcc" + }, + "apps/extension-chromium/src/beap-builder/index.ts": { + "mtime": 1786206352.146711, + "ast_hash": "506dc2da7e21b0d07e3f1d2ecaa83de8", + "semantic_hash": "506dc2da7e21b0d07e3f1d2ecaa83de8" + }, + "apps/extension-chromium/src/beap-builder/parserService.ts": { + "mtime": 1786206352.146711, + "ast_hash": "f09b570bf5e3da6548e26db328d005d5", + "semantic_hash": "f09b570bf5e3da6548e26db328d005d5" + }, + "apps/extension-chromium/src/beap-builder/requiresBuilder.ts": { + "mtime": 1786206352.146711, + "ast_hash": "aa290d49b94e6980e65badd038eef427", + "semantic_hash": "aa290d49b94e6980e65badd038eef427" + }, + "apps/extension-chromium/src/beap-builder/types.ts": { + "mtime": 1786206352.146711, + "ast_hash": "8c9fe58806a64ed68f84cfad790ef285", + "semantic_hash": "8c9fe58806a64ed68f84cfad790ef285" + }, + "apps/extension-chromium/src/beap-builder/useEnvelopeGenerator.ts": { + "mtime": 1786206352.146711, + "ast_hash": "58c0b7d91b3922e9dc0f26abd579d9e8", + "semantic_hash": "58c0b7d91b3922e9dc0f26abd579d9e8" + }, + "apps/extension-chromium/src/beap-builder/useOutboxStore.ts": { + "mtime": 1786206352.146711, + "ast_hash": "bcd5d1f73b6c7fba7ea62899e5bad2b3", + "semantic_hash": "bcd5d1f73b6c7fba7ea62899e5bad2b3" + }, + "apps/extension-chromium/src/beap-builder/visionExtractionService.ts": { + "mtime": 1786206352.146711, + "ast_hash": "0edc7b0501b348b5f7d9e4a6b845d2d5", + "semantic_hash": "0edc7b0501b348b5f7d9e4a6b845d2d5" + }, + "apps/extension-chromium/src/beap-messages/__tests__/activationPipeline.test.ts": { + "mtime": 1786206352.146711, + "ast_hash": "0ab56113c9268e1adc963693d8c14cfb", + "semantic_hash": "0ab56113c9268e1adc963693d8c14cfb" + }, + "apps/extension-chromium/src/beap-messages/__tests__/attachmentPickerLimits.test.ts": { + "mtime": 1786206352.146711, + "ast_hash": "070f75e9f4ee5fd49b0ea9400c01e1a7", + "semantic_hash": "070f75e9f4ee5fd49b0ea9400c01e1a7" + }, + "apps/extension-chromium/src/beap-messages/__tests__/b81InboxPagination.test.ts": { + "mtime": 1786206352.146711, + "ast_hash": "f8d513a73f832b26960db58cd98e196a", + "semantic_hash": "f8d513a73f832b26960db58cd98e196a" + }, + "apps/extension-chromium/src/beap-messages/__tests__/b82PatchMode.test.ts": { + "mtime": 1786206352.146711, + "ast_hash": "04c705d5a14000ed98756f0562f9783a", + "semantic_hash": "04c705d5a14000ed98756f0562f9783a" + }, + "apps/extension-chromium/src/beap-messages/__tests__/b8InboxStoreMirror.test.ts": { + "mtime": 1786206352.146711, + "ast_hash": "2d57a6fb88bf708ec8b0f2c80d5c874b", + "semantic_hash": "2d57a6fb88bf708ec8b0f2c80d5c874b" + }, + "apps/extension-chromium/src/beap-messages/__tests__/beapInboxBridges.test.ts": { + "mtime": 1786206352.146711, + "ast_hash": "187c63e9566e49ac8131c1c27577bd31", + "semantic_hash": "187c63e9566e49ac8131c1c27577bd31" + }, + "apps/extension-chromium/src/beap-messages/__tests__/beapModeRunEligibility.test.ts": { + "mtime": 1786206352.146711, + "ast_hash": "b0fd12318ed6a9e5e65d20fb43f003b4", + "semantic_hash": "b0fd12318ed6a9e5e65d20fb43f003b4" + }, + "apps/extension-chromium/src/beap-messages/__tests__/beapSessionBridgeGuards.test.ts": { + "mtime": 1786206352.146711, + "ast_hash": "75bc005d23931bf6a12dc3f120b45468", + "semantic_hash": "75bc005d23931bf6a12dc3f120b45468" + }, + "apps/extension-chromium/src/beap-messages/__tests__/integrationDefaultAutomationMetadata.test.ts": { + "mtime": 1786206352.146711, + "ast_hash": "b200c5d3f71acea0d551bc154d3d13d2", + "semantic_hash": "b200c5d3f71acea0d551bc154d3d13d2" + }, + "apps/extension-chromium/src/beap-messages/__tests__/modeRunExecutionPipeline.test.ts": { + "mtime": 1786206352.146711, + "ast_hash": "cdf9fc254f50cc3bd24c76932270ebd2", + "semantic_hash": "cdf9fc254f50cc3bd24c76932270ebd2" + }, + "apps/extension-chromium/src/beap-messages/__tests__/pr5InboxWiring.test.ts": { + "mtime": 1786206352.146711, + "ast_hash": "f28cb8ec8c6e8163096fcd6599262989", + "semantic_hash": "f28cb8ec8c6e8163096fcd6599262989" + }, + "apps/extension-chromium/src/beap-messages/__tests__/pr6ReplyPath.test.ts": { + "mtime": 1786206352.146711, + "ast_hash": "5cdee798558c771b63402ef37117b64c", + "semantic_hash": "5cdee798558c771b63402ef37117b64c" + }, + "apps/extension-chromium/src/beap-messages/__tests__/pr7BulkInbox.test.ts": { + "mtime": 1786206352.146711, + "ast_hash": "ec5c8e8e22d89d4e12e02595116bdf50", + "semantic_hash": "ec5c8e8e22d89d4e12e02595116bdf50" + }, + "apps/extension-chromium/src/beap-messages/__tests__/sessionImportPayloadResolver.test.ts": { + "mtime": 1786206352.146711, + "ast_hash": "e162e1e10abaaa5e6360c8512b39e8d1", + "semantic_hash": "e162e1e10abaaa5e6360c8512b39e8d1" + }, + "apps/extension-chromium/src/beap-messages/attachmentPickerLimits.ts": { + "mtime": 1786206352.146711, + "ast_hash": "05dca2f7c51813d0af797fa99f029a9c", + "semantic_hash": "05dca2f7c51813d0af797fa99f029a9c" + }, + "apps/extension-chromium/src/beap-messages/beapInboxTypes.ts": { + "mtime": 1786206352.146711, + "ast_hash": "0f54ea04dbab171d39cea49ffa33858a", + "semantic_hash": "0f54ea04dbab171d39cea49ffa33858a" + }, + "apps/extension-chromium/src/beap-messages/beapSessionBridgeGuards.ts": { + "mtime": 1786206352.1507106, + "ast_hash": "b0b4d2b8dafd4fdfd7932ec92da90f2c", + "semantic_hash": "b0b4d2b8dafd4fdfd7932ec92da90f2c" + }, + "apps/extension-chromium/src/beap-messages/beapSessionEditBridge.ts": { + "mtime": 1786206352.1507106, + "ast_hash": "fb241651dd571c61ab3c6ac16770dcc1", + "semantic_hash": "fb241651dd571c61ab3c6ac16770dcc1" + }, + "apps/extension-chromium/src/beap-messages/beapSessionRunBridge.ts": { + "mtime": 1786206352.1507106, + "ast_hash": "bd70328a57a30c35ca6e79784e774b64", + "semantic_hash": "bd70328a57a30c35ca6e79784e774b64" + }, + "apps/extension-chromium/src/beap-messages/components/ActiveHandshakesView.tsx": { + "mtime": 1786206352.1507106, + "ast_hash": "f1aa5bb56ca6328c022c7fa89f876b1a", + "semantic_hash": "f1aa5bb56ca6328c022c7fa89f876b1a" + }, + "apps/extension-chromium/src/beap-messages/components/AiEntryContent.tsx": { + "mtime": 1786206352.1507106, + "ast_hash": "87317b5293c6d3a588b5c91360ef4f32", + "semantic_hash": "87317b5293c6d3a588b5c91360ef4f32" + }, + "apps/extension-chromium/src/beap-messages/components/BeapAttachmentReader.tsx": { + "mtime": 1786206352.1507106, + "ast_hash": "44b8a51bcedc065def612d534deab905", + "semantic_hash": "44b8a51bcedc065def612d534deab905" + }, + "apps/extension-chromium/src/beap-messages/components/BeapBulkInbox.tsx": { + "mtime": 1786206352.1507106, + "ast_hash": "29db70cfe645e73dd78875166c7246b6", + "semantic_hash": "29db70cfe645e73dd78875166c7246b6" + }, + "apps/extension-chromium/src/beap-messages/components/BeapDraftComposer.tsx": { + "mtime": 1786206352.1507106, + "ast_hash": "6a1db2ede98aa1e9de2c0b75421b2b1f", + "semantic_hash": "6a1db2ede98aa1e9de2c0b75421b2b1f" + }, + "apps/extension-chromium/src/beap-messages/components/BeapInboxSidebar.tsx": { + "mtime": 1786206352.1507106, + "ast_hash": "08d1473c73d2de8ca64adca13eb67caf", + "semantic_hash": "08d1473c73d2de8ca64adca13eb67caf" + }, + "apps/extension-chromium/src/beap-messages/components/BeapInboxView.tsx": { + "mtime": 1786206352.1507106, + "ast_hash": "5041cd06e88cdd425c3223285a983a19", + "semantic_hash": "5041cd06e88cdd425c3223285a983a19" + }, + "apps/extension-chromium/src/beap-messages/components/BeapMessageDetailPanel.tsx": { + "mtime": 1786206352.1507106, + "ast_hash": "5d7ee7ae677246319661676f98c299dc", + "semantic_hash": "5d7ee7ae677246319661676f98c299dc" + }, + "apps/extension-chromium/src/beap-messages/components/BeapMessageListView.tsx": { + "mtime": 1786206352.1507106, + "ast_hash": "ec425c1afbb914b159152e7b3de2b796", + "semantic_hash": "ec425c1afbb914b159152e7b3de2b796" + }, + "apps/extension-chromium/src/beap-messages/components/BeapMessagePreview.tsx": { + "mtime": 1786206352.1507106, + "ast_hash": "d385f73b4f5da80cd584144530c3a0cd", + "semantic_hash": "d385f73b4f5da80cd584144530c3a0cd" + }, + "apps/extension-chromium/src/beap-messages/components/BeapMessageRow.tsx": { + "mtime": 1786206352.1507106, + "ast_hash": "aafb3271bb15d2e4159cbb554cde4607", + "semantic_hash": "aafb3271bb15d2e4159cbb554cde4607" + }, + "apps/extension-chromium/src/beap-messages/components/BeapReplyComposer.tsx": { + "mtime": 1786206352.1507106, + "ast_hash": "110432255afedab68af3637ac0675217", + "semantic_hash": "110432255afedab68af3637ac0675217" + }, + "apps/extension-chromium/src/beap-messages/components/DeliveryMethodPanel.tsx": { + "mtime": 1786206352.1507106, + "ast_hash": "b8ceea6f2d6dca6bfc6189423b9838dd", + "semantic_hash": "b8ceea6f2d6dca6bfc6189423b9838dd" + }, + "apps/extension-chromium/src/beap-messages/components/InboxErrorBoundary.tsx": { + "mtime": 1786206352.1507106, + "ast_hash": "7564a4360ead1c3d977f925dc72526e4", + "semantic_hash": "7564a4360ead1c3d977f925dc72526e4" + }, + "apps/extension-chromium/src/beap-messages/components/InboxMessagePreview.tsx": { + "mtime": 1786206352.1507106, + "ast_hash": "5f11b0f908772bb5977051aa295d7ff9", + "semantic_hash": "5f11b0f908772bb5977051aa295d7ff9" + }, + "apps/extension-chromium/src/beap-messages/components/OutboxMessagePreview.tsx": { + "mtime": 1786206352.1507106, + "ast_hash": "1c73dc98cf27df5b2b988bd02bf11000", + "semantic_hash": "1c73dc98cf27df5b2b988bd02bf11000" + }, + "apps/extension-chromium/src/beap-messages/components/ProtectedAccessWarningDialog.tsx": { + "mtime": 1786206352.1507106, + "ast_hash": "35b2c8863e04c27590a12a308be83932", + "semantic_hash": "35b2c8863e04c27590a12a308be83932" + }, + "apps/extension-chromium/src/beap-messages/components/RecipientHandshakeSelect.tsx": { + "mtime": 1786206352.1507106, + "ast_hash": "de1890e1ab62823906c21d794d1231bc", + "semantic_hash": "de1890e1ab62823906c21d794d1231bc" + }, + "apps/extension-chromium/src/beap-messages/components/RecipientModeSwitch.tsx": { + "mtime": 1786206352.1507106, + "ast_hash": "6f60584001085858b5dce1118d5bbecb", + "semantic_hash": "6f60584001085858b5dce1118d5bbecb" + }, + "apps/extension-chromium/src/beap-messages/components/RejectedMessagePreview.tsx": { + "mtime": 1786206352.1507106, + "ast_hash": "87c08260320f70260ea389949304dd02", + "semantic_hash": "87c08260320f70260ea389949304dd02" + }, + "apps/extension-chromium/src/beap-messages/components/index.ts": { + "mtime": 1786206352.1507106, + "ast_hash": "7dcb48f1dfb2ea217d0ab6d25a373b87", + "semantic_hash": "7dcb48f1dfb2ea217d0ab6d25a373b87" + }, + "apps/extension-chromium/src/beap-messages/hooks/index.ts": { + "mtime": 1786206352.1507106, + "ast_hash": "3c43221d9e4887b66efec9f66d19eaba", + "semantic_hash": "3c43221d9e4887b66efec9f66d19eaba" + }, + "apps/extension-chromium/src/beap-messages/hooks/useBeapDraftActions.ts": { + "mtime": 1786206352.1507106, + "ast_hash": "b0aa0652c1a0e13a2712cb13b0d7463b", + "semantic_hash": "b0aa0652c1a0e13a2712cb13b0d7463b" + }, + "apps/extension-chromium/src/beap-messages/hooks/useBeapMessageAi.ts": { + "mtime": 1786206352.1507106, + "ast_hash": "dd67e3bb504987c179bb12c681a34f0c", + "semantic_hash": "dd67e3bb504987c179bb12c681a34f0c" + }, + "apps/extension-chromium/src/beap-messages/hooks/useBeapSessionImportResolution.ts": { + "mtime": 1786206352.1507106, + "ast_hash": "c43e4edd9a0e0d26bd3ab22901b5e52b", + "semantic_hash": "c43e4edd9a0e0d26bd3ab22901b5e52b" + }, + "apps/extension-chromium/src/beap-messages/hooks/useBulkClassification.ts": { + "mtime": 1786206352.1507106, + "ast_hash": "0550f6f6ef34d09a58564ae511d0dc42", + "semantic_hash": "0550f6f6ef34d09a58564ae511d0dc42" + }, + "apps/extension-chromium/src/beap-messages/hooks/useBulkSend.ts": { + "mtime": 1786206352.1507106, + "ast_hash": "3f5b6d8d62c0723cf8ee5e7555cca59c", + "semantic_hash": "3f5b6d8d62c0723cf8ee5e7555cca59c" + }, + "apps/extension-chromium/src/beap-messages/hooks/useInboxKeyboardNav.ts": { + "mtime": 1786206352.1507106, + "ast_hash": "ce1c7ca139c39189784c8ed3033a2b02", + "semantic_hash": "ce1c7ca139c39189784c8ed3033a2b02" + }, + "apps/extension-chromium/src/beap-messages/hooks/useMediaQuery.ts": { + "mtime": 1786206352.1507106, + "ast_hash": "d895930741642662d97c92a1951dac86", + "semantic_hash": "d895930741642662d97c92a1951dac86" + }, + "apps/extension-chromium/src/beap-messages/hooks/useReplyComposer.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "8e2876fbe08ad57ee03f1256d5d86050", + "semantic_hash": "8e2876fbe08ad57ee03f1256d5d86050" + }, + "apps/extension-chromium/src/beap-messages/hooks/useViewOriginalArtefact.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "f19a753b9731b540ed274d9b099f87c9", + "semantic_hash": "f19a753b9731b540ed274d9b099f87c9" + }, + "apps/extension-chromium/src/beap-messages/inboxRowToBeapMessage.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "f6f6aa2f2aa6d93bb5b0e1cf4fa613e0", + "semantic_hash": "f6f6aa2f2aa6d93bb5b0e1cf4fa613e0" + }, + "apps/extension-chromium/src/beap-messages/index.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "cc8e8da6aa2cf1d9f9e61a1954b75c25", + "semantic_hash": "cc8e8da6aa2cf1d9f9e61a1954b75c25" + }, + "apps/extension-chromium/src/beap-messages/initBeapPqAuth.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "5730b17800c88a22e736fcf1fdb71537", + "semantic_hash": "5730b17800c88a22e736fcf1fdb71537" + }, + "apps/extension-chromium/src/beap-messages/integrationDefaultAutomationMetadata.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "802b9d2433ae0ef3c57d9a549536cc8e", + "semantic_hash": "802b9d2433ae0ef3c57d9a549536cc8e" + }, + "apps/extension-chromium/src/beap-messages/sandbox/index.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "7e72946d438a13e7677e16734b3f1fc0", + "semantic_hash": "7e72946d438a13e7677e16734b3f1fc0" + }, + "apps/extension-chromium/src/beap-messages/sandbox/sandbox.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "e1424f2efe93f9f208549dbf7fd9005d", + "semantic_hash": "e1424f2efe93f9f208549dbf7fd9005d" + }, + "apps/extension-chromium/src/beap-messages/sandbox/sandboxClient.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "e49cde1becfd1764c684ea3981b4bbef", + "semantic_hash": "e49cde1becfd1764c684ea3981b4bbef" + }, + "apps/extension-chromium/src/beap-messages/sandbox/sandboxProtocol.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "389c415a82cd2853aff4399b3c85e1bf", + "semantic_hash": "389c415a82cd2853aff4399b3c85e1bf" + }, + "apps/extension-chromium/src/beap-messages/sanitisedPackageToBeapMessage.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "41b306db3fb5389eeff7de1e5ff34352", + "semantic_hash": "41b306db3fb5389eeff7de1e5ff34352" + }, + "apps/extension-chromium/src/beap-messages/seedData.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "12454534681a1c6b8d3370f2ac0932d4", + "semantic_hash": "12454534681a1c6b8d3370f2ac0932d4" + }, + "apps/extension-chromium/src/beap-messages/services/BeapPackageBuilder.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "292021f7731152f4d328b2e369329b05", + "semantic_hash": "292021f7731152f4d328b2e369329b05" + }, + "apps/extension-chromium/src/beap-messages/services/__tests__/BeapPackageBuilder.test.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "64ee29f12bdb08dbcc93b729985fe5cf", + "semantic_hash": "64ee29f12bdb08dbcc93b729985fe5cf" + }, + "apps/extension-chromium/src/beap-messages/services/__tests__/beapCrypto.test.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "7e8647105697dca5727bd49a35a9468d", + "semantic_hash": "7e8647105697dca5727bd49a35a9468d" + }, + "apps/extension-chromium/src/beap-messages/services/__tests__/executeP2PAction.test.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "fa03415df6895607306a06efa11fb94e", + "semantic_hash": "fa03415df6895607306a06efa11fb94e" + }, + "apps/extension-chromium/src/beap-messages/services/__tests__/sessionImportArtefact.test.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "4a86170552f2ffa2822d66f37035df3f", + "semantic_hash": "4a86170552f2ffa2822d66f37035df3f" + }, + "apps/extension-chromium/src/beap-messages/services/__tests__/transportChannelSafety.test.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "d87cc3c4224e913f9a64a4f3e6acdbbe", + "semantic_hash": "d87cc3c4224e913f9a64a4f3e6acdbbe" + }, + "apps/extension-chromium/src/beap-messages/services/beapClassificationEngine.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "84c11b06bdfc5ab2d5b88bf5a6ca0929", + "semantic_hash": "84c11b06bdfc5ab2d5b88bf5a6ca0929" + }, + "apps/extension-chromium/src/beap-messages/services/beapCrypto.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "05a232e592b4bee4028620ede75feb05", + "semantic_hash": "05a232e592b4bee4028620ede75feb05" + }, + "apps/extension-chromium/src/beap-messages/services/beapDecrypt.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "f8857e687539389b8cb5160fd706a49a", + "semantic_hash": "f8857e687539389b8cb5160fd706a49a" + }, + "apps/extension-chromium/src/beap-messages/services/beapReplyAiProvider.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "90e85c312060e708310dbf61390b5bb9", + "semantic_hash": "90e85c312060e708310dbf61390b5bb9" + }, + "apps/extension-chromium/src/beap-messages/services/depackagingPipeline.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "0778e01b74248a303f1411031ffeea59", + "semantic_hash": "0778e01b74248a303f1411031ffeea59" + }, + "apps/extension-chromium/src/beap-messages/services/eligibilityCheck.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "b4e10ddd8e9f0f63eaef1e30ed95962b", + "semantic_hash": "b4e10ddd8e9f0f63eaef1e30ed95962b" + }, + "apps/extension-chromium/src/beap-messages/services/index.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "5ff18954ab7bf1c122fdbe9650e4ad02", + "semantic_hash": "5ff18954ab7bf1c122fdbe9650e4ad02" + }, + "apps/extension-chromium/src/beap-messages/services/outerEnvelope.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "0c3692a2bc497df6756dea35b49094f3", + "semantic_hash": "0c3692a2bc497df6756dea35b49094f3" + }, + "apps/extension-chromium/src/beap-messages/services/poae.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "015f7a52c15367ab0678a2f2197a7243", + "semantic_hash": "015f7a52c15367ab0678a2f2197a7243" + }, + "apps/extension-chromium/src/beap-messages/services/processingEventGate.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "b6b362dc4e788ef843c03863e6498780", + "semantic_hash": "b6b362dc4e788ef843c03863e6498780" + }, + "apps/extension-chromium/src/beap-messages/services/processingEvents.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "dc9a2785411129fe0a2a33028b3caae6", + "semantic_hash": "dc9a2785411129fe0a2a33028b3caae6" + }, + "apps/extension-chromium/src/beap-messages/services/signingKeyVault.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "748d644d8ba92652242cac54b5101217", + "semantic_hash": "748d644d8ba92652242cac54b5101217" + }, + "apps/extension-chromium/src/beap-messages/services/stripAgentBoxesFromGrids.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "c0e0dba678b3fc51be424c4829771da9", + "semantic_hash": "c0e0dba678b3fc51be424c4829771da9" + }, + "apps/extension-chromium/src/beap-messages/services/urlNormalizer.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "e2bb330135713b1de47ff23c7c15b4d6", + "semantic_hash": "e2bb330135713b1de47ff23c7c15b4d6" + }, + "apps/extension-chromium/src/beap-messages/services/x25519KeyAgreement.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "a7cd80e58684a840979dbbc797b28ca2", + "semantic_hash": "a7cd80e58684a840979dbbc797b28ca2" + }, + "apps/extension-chromium/src/beap-messages/sessionImportPayloadResolver.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "a5bba92dc7b74a5225c4f8a024d4fa90", + "semantic_hash": "a5bba92dc7b74a5225c4f8a024d4fa90" + }, + "apps/extension-chromium/src/beap-messages/types.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "bf1525b275322d24547cff3ad6886245", + "semantic_hash": "bf1525b275322d24547cff3ad6886245" + }, + "apps/extension-chromium/src/beap-messages/useBeapInboxStore.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "360df6879d13cb8cf93f63f426408190", + "semantic_hash": "360df6879d13cb8cf93f63f426408190" + }, + "apps/extension-chromium/src/beap-messages/useBeapMessagesStore.ts": { + "mtime": 1786206352.1547098, + "ast_hash": "a986fb6cd95cb3d4f8569be9fb289e6d", + "semantic_hash": "a986fb6cd95cb3d4f8569be9fb289e6d" + }, + "apps/extension-chromium/src/beap-messages/validation/beapBuildValidation.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "e9a72a1536631fd89f09ca29ba6e1b07", + "semantic_hash": "e9a72a1536631fd89f09ca29ba6e1b07" + }, + "apps/extension-chromium/src/beap-messages/validationState.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "28193d61b2b2be302dde37378518d56d", + "semantic_hash": "28193d61b2b2be302dde37378518d56d" + }, + "apps/extension-chromium/src/bundled-tools/components/ThirdPartyLicensesView.tsx": { + "mtime": 1786206352.1587093, + "ast_hash": "6cf9aae75dffc0d17ae18aaf0d9d3966", + "semantic_hash": "6cf9aae75dffc0d17ae18aaf0d9d3966" + }, + "apps/extension-chromium/src/bundled-tools/components/index.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "89c1b74cc26c03df2b13d6d49e91a78d", + "semantic_hash": "89c1b74cc26c03df2b13d6d49e91a78d" + }, + "apps/extension-chromium/src/bundled-tools/executor.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "de01ee3bcfada9462e9b6375a752d4d7", + "semantic_hash": "de01ee3bcfada9462e9b6375a752d4d7" + }, + "apps/extension-chromium/src/bundled-tools/index.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "a72ae431775579b30d7b079b61cbbb32", + "semantic_hash": "a72ae431775579b30d7b079b61cbbb32" + }, + "apps/extension-chromium/src/bundled-tools/licenses.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "cf2121cb1aa8de17e93e87d160cd7406", + "semantic_hash": "cf2121cb1aa8de17e93e87d160cd7406" + }, + "apps/extension-chromium/src/bundled-tools/registry.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "c402f49f92a21981add7aec8830391dc", + "semantic_hash": "c402f49f92a21981add7aec8830391dc" + }, + "apps/extension-chromium/src/bundled-tools/types.ts": { + "mtime": 1786206352.1587093, + "ast_hash": "c63c1a0c3ee536eab14848e1e1334247", + "semantic_hash": "c63c1a0c3ee536eab14848e1e1334247" + }, + "apps/extension-chromium/src/components/BackendConfigLightbox.tsx": { + "mtime": 1786206352.1587093, + "ast_hash": "f85dd43e2ae6f3d89349202c946a7ac0", + "semantic_hash": "f85dd43e2ae6f3d89349202c946a7ac0" + }, + "apps/extension-chromium/src/components/BackendSwitcher.tsx": { + "mtime": 1786206352.1587093, + "ast_hash": "562b36eff624f8bd50e252fbfdec51e2", + "semantic_hash": "562b36eff624f8bd50e252fbfdec51e2" + }, + "apps/extension-chromium/src/components/BackendSwitcherInline.tsx": { + "mtime": 1786206352.1587093, + "ast_hash": "eb3631571f80e7616ccedfe50e03337e", + "semantic_hash": "eb3631571f80e7616ccedfe50e03337e" + }, + "apps/extension-chromium/src/components/BackendSwitcherNew.tsx": { + "mtime": 1786206352.1587093, + "ast_hash": "b1aeb9d78d52dcbc569a1bcedf535105", + "semantic_hash": "b1aeb9d78d52dcbc569a1bcedf535105" + }, + "apps/extension-chromium/src/components/DevTools.tsx": { + "mtime": 1786206352.166708, + "ast_hash": "2c725b6061ba9b94844184f2649f1a3b", + "semantic_hash": "2c725b6061ba9b94844184f2649f1a3b" + }, + "apps/extension-chromium/src/components/HardwareWarningDialog.tsx": { + "mtime": 1786206352.166708, + "ast_hash": "4eb4d8c7b08dee471649b91345f07d9c", + "semantic_hash": "4eb4d8c7b08dee471649b91345f07d9c" + }, + "apps/extension-chromium/src/components/ImageEngineSettings.tsx": { + "mtime": 1786206352.166708, + "ast_hash": "a199932f44f654a6300de2606ac6baca", + "semantic_hash": "a199932f44f654a6300de2606ac6baca" + }, + "apps/extension-chromium/src/components/LlmSettings.tsx": { + "mtime": 1786206352.166708, + "ast_hash": "23d69cf7eeaedcff306818daec39a5f6", + "semantic_hash": "23d69cf7eeaedcff306818daec39a5f6" + }, + "apps/extension-chromium/src/components/P2pOutboundDebugModal.tsx": { + "mtime": 1786206352.166708, + "ast_hash": "56dc1d7a4ad4c27da10483335f6c7259", + "semantic_hash": "56dc1d7a4ad4c27da10483335f6c7259" + }, + "apps/extension-chromium/src/components/backend-config-lightbox-init.tsx": { + "mtime": 1786206352.166708, + "ast_hash": "a356bd8ef31471e209175ecbee599feb", + "semantic_hash": "a356bd8ef31471e209175ecbee599feb" + }, + "apps/extension-chromium/src/constants/providers.ts": { + "mtime": 1786206352.166708, + "ast_hash": "ac0f5bdf8a5744c0f5bcb9a183d682d3", + "semantic_hash": "ac0f5bdf8a5744c0f5bcb9a183d682d3" + }, + "apps/extension-chromium/src/content-script-clean.tsx": { + "mtime": 1786206352.166708, + "ast_hash": "485836043bafc0e839b0baceac28768f", + "semantic_hash": "485836043bafc0e839b0baceac28768f" + }, + "apps/extension-chromium/src/content-script-globals.d.ts": { + "mtime": 1786206352.166708, + "ast_hash": "9af9f7b498f7618fe993b65a9f63b5f2", + "semantic_hash": "9af9f7b498f7618fe993b65a9f63b5f2" + }, + "apps/extension-chromium/src/content-script.tsx": { + "mtime": 1786206352.1707075, + "ast_hash": "f4b9a24d8eaa6459cec449bd5633ae10", + "semantic_hash": "f4b9a24d8eaa6459cec449bd5633ae10" + }, + "apps/extension-chromium/src/content/index.ts": { + "mtime": 1786206352.1707075, + "ast_hash": "06b39850b9ebdfed7f9ae989b3371216", + "semantic_hash": "06b39850b9ebdfed7f9ae989b3371216" + }, + "apps/extension-chromium/src/content/overlay.ts": { + "mtime": 1786206352.1707075, + "ast_hash": "8865e4843d549c86e80bb52af0403cb8", + "semantic_hash": "8865e4843d549c86e80bb52af0403cb8" + }, + "apps/extension-chromium/src/content/types.d.ts": { + "mtime": 1786206352.1707075, + "ast_hash": "19ab49a09d3dd9e946e355ea67a7434a", + "semantic_hash": "19ab49a09d3dd9e946e355ea67a7434a" + }, + "apps/extension-chromium/src/content/ui/FrameOverlay.ts": { + "mtime": 1786206352.1707075, + "ast_hash": "596d27b1e3b317845a5a2e26cbae6d72", + "semantic_hash": "596d27b1e3b317845a5a2e26cbae6d72" + }, + "apps/extension-chromium/src/content/ui/frameStyles.ts": { + "mtime": 1786206352.1707075, + "ast_hash": "206f56e4dd1684eb7889ba97f69cdfa9", + "semantic_hash": "206f56e4dd1684eb7889ba97f69cdfa9" + }, + "apps/extension-chromium/src/envelope-evaluation/evaluateEnvelope.ts": { + "mtime": 1786206352.1707075, + "ast_hash": "1c9c34e103312230a39a91837954e077", + "semantic_hash": "1c9c34e103312230a39a91837954e077" + }, + "apps/extension-chromium/src/envelope-evaluation/index.ts": { + "mtime": 1786206352.1707075, + "ast_hash": "4fdc99933f55aa0e44eee0b25147da3b", + "semantic_hash": "4fdc99933f55aa0e44eee0b25147da3b" + }, + "apps/extension-chromium/src/envelope-evaluation/types.ts": { + "mtime": 1786206352.1707075, + "ast_hash": "19309fe1962cfd9931f7995ec77a0b41", + "semantic_hash": "19309fe1962cfd9931f7995ec77a0b41" + }, + "apps/extension-chromium/src/envelope-evaluation/useVerifyMessage.ts": { + "mtime": 1786206352.1707075, + "ast_hash": "0982f5e388f6549e8aeeced6b4293510", + "semantic_hash": "0982f5e388f6549e8aeeced6b4293510" + }, + "apps/extension-chromium/src/fix-buttons.mjs": { + "mtime": 1786206352.1707075, + "ast_hash": "1a3edaded999d00cba13e2c8fc2a2e19", + "semantic_hash": "1a3edaded999d00cba13e2c8fc2a2e19" + }, + "apps/extension-chromium/src/fix-context-memory.mjs": { + "mtime": 1786206352.1707075, + "ast_hash": "e90d93356075603968e57e1fed031144", + "semantic_hash": "e90d93356075603968e57e1fed031144" + }, + "apps/extension-chromium/src/grid-content-script.ts": { + "mtime": 1786206352.1707075, + "ast_hash": "33a624c90b0e703f170275f02b607081", + "semantic_hash": "33a624c90b0e703f170275f02b607081" + }, + "apps/extension-chromium/src/handshake/__tests__/buildInitiateContextOptions.test.ts": { + "mtime": 1786206352.1707075, + "ast_hash": "338ce3d4c85ebe62a3d51574b7549364", + "semantic_hash": "338ce3d4c85ebe62a3d51574b7549364" + }, + "apps/extension-chromium/src/handshake/__tests__/handshakeRpc.test.ts": { + "mtime": 1786206352.1707075, + "ast_hash": "4c324e6c565a69f7f46307595a93717b", + "semantic_hash": "4c324e6c565a69f7f46307595a93717b" + }, + "apps/extension-chromium/src/handshake/__tests__/migration.test.ts": { + "mtime": 1786206352.1707075, + "ast_hash": "b481967579bba174b887c32da2c3163f", + "semantic_hash": "b481967579bba174b887c32da2c3163f" + }, + "apps/extension-chromium/src/handshake/__tests__/pendingP2PBeapQueue.batched-refresh.test.ts": { + "mtime": 1786206352.1747067, + "ast_hash": "8b161186a74853e988716ccd5f3a63d6", + "semantic_hash": "8b161186a74853e988716ccd5f3a63d6" + }, + "apps/extension-chromium/src/handshake/buildInitiateContextOptions.ts": { + "mtime": 1786206352.1747067, + "ast_hash": "d0ee99c430e03904ae67be99b93b616f", + "semantic_hash": "d0ee99c430e03904ae67be99b93b616f" + }, + "apps/extension-chromium/src/handshake/components/HandshakeAcceptModal.tsx": { + "mtime": 1786206352.1747067, + "ast_hash": "85afb0a78f9d8177156660b1798c99d6", + "semantic_hash": "85afb0a78f9d8177156660b1798c99d6" + }, + "apps/extension-chromium/src/handshake/components/HandshakeContextProfilePicker.tsx": { + "mtime": 1786206352.1747067, + "ast_hash": "6cf9856f84b3c0290088edab98e89238", + "semantic_hash": "6cf9856f84b3c0290088edab98e89238" + }, + "apps/extension-chromium/src/handshake/components/HandshakeDetailsPanel.tsx": { + "mtime": 1786206352.1747067, + "ast_hash": "53596600ffc1fe96909f5b945e18e4c3", + "semantic_hash": "53596600ffc1fe96909f5b945e18e4c3" + }, + "apps/extension-chromium/src/handshake/components/HandshakeManagementPanel.tsx": { + "mtime": 1786206352.1747067, + "ast_hash": "81195c305493a65b4a6cb4dd391229e1", + "semantic_hash": "81195c305493a65b4a6cb4dd391229e1" + }, + "apps/extension-chromium/src/handshake/components/HandshakeRequestForm.tsx": { + "mtime": 1786206352.1747067, + "ast_hash": "be38ed9534847bc403802a233951c0e5", + "semantic_hash": "be38ed9534847bc403802a233951c0e5" + }, + "apps/extension-chromium/src/handshake/components/HandshakeSelectItem.tsx": { + "mtime": 1786206352.1747067, + "ast_hash": "fdc3651b827c466b1ec5876e0116a26d", + "semantic_hash": "fdc3651b827c466b1ec5876e0116a26d" + }, + "apps/extension-chromium/src/handshake/components/InitiateHandshakeDialog.tsx": { + "mtime": 1786206352.1747067, + "ast_hash": "2be450fdcc24cb13ebf4f42da6cf45fb", + "semantic_hash": "2be450fdcc24cb13ebf4f42da6cf45fb" + }, + "apps/extension-chromium/src/handshake/components/PackageHeaderMeta.tsx": { + "mtime": 1786206352.1747067, + "ast_hash": "aba61fb1e67523b84a3a397ac8938ff8", + "semantic_hash": "aba61fb1e67523b84a3a397ac8938ff8" + }, + "apps/extension-chromium/src/handshake/components/SendHandshakeDelivery.tsx": { + "mtime": 1786206352.1747067, + "ast_hash": "2f9944a5af95505d09eeeacdbfb20053", + "semantic_hash": "2f9944a5af95505d09eeeacdbfb20053" + }, + "apps/extension-chromium/src/handshake/components/index.ts": { + "mtime": 1786206352.1747067, + "ast_hash": "89a5203d0bf6dc42f412312e9cdb81fa", + "semantic_hash": "89a5203d0bf6dc42f412312e9cdb81fa" + }, + "apps/extension-chromium/src/handshake/fingerprint.ts": { + "mtime": 1786206352.1747067, + "ast_hash": "c044748e479645c8e756837cbbb00fab", + "semantic_hash": "c044748e479645c8e756837cbbb00fab" + }, + "apps/extension-chromium/src/handshake/handshakeRpc.ts": { + "mtime": 1786206352.1747067, + "ast_hash": "d09c4015dbb1020a94a67cf48fd63fb3", + "semantic_hash": "d09c4015dbb1020a94a67cf48fd63fb3" + }, + "apps/extension-chromium/src/handshake/handshakeService.ts": { + "mtime": 1786206352.1747067, + "ast_hash": "aae8bcb3503f78cd5778502a0ad6baa7", + "semantic_hash": "aae8bcb3503f78cd5778502a0ad6baa7" + }, + "apps/extension-chromium/src/handshake/index.ts": { + "mtime": 1786206352.1747067, + "ast_hash": "22eb685b3bd569c28332f740e8deb68f", + "semantic_hash": "22eb685b3bd569c28332f740e8deb68f" + }, + "apps/extension-chromium/src/handshake/microcopy.ts": { + "mtime": 1786206352.1747067, + "ast_hash": "708a5bb1d6ba38f1d86611119d78020b", + "semantic_hash": "708a5bb1d6ba38f1d86611119d78020b" + }, + "apps/extension-chromium/src/handshake/mlkemHandshakeStorage.ts": { + "mtime": 1786206352.1747067, + "ast_hash": "3eb0bce95f49329f6305d7b94f169e27", + "semantic_hash": "3eb0bce95f49329f6305d7b94f169e27" + }, + "apps/extension-chromium/src/handshake/pendingP2PBeapQueue.ts": { + "mtime": 1786206352.1747067, + "ast_hash": "66a77a61202f6491c2f5b61bc8471777", + "semantic_hash": "66a77a61202f6491c2f5b61bc8471777" + }, + "apps/extension-chromium/src/handshake/rpcTypes.ts": { + "mtime": 1786206352.1747067, + "ast_hash": "dfe968ff1a8f1d7ccbb720abfc0fff41", + "semantic_hash": "dfe968ff1a8f1d7ccbb720abfc0fff41" + }, + "apps/extension-chromium/src/handshake/types.ts": { + "mtime": 1786206352.1747067, + "ast_hash": "be04592931bfcabed347789476a8f194", + "semantic_hash": "be04592931bfcabed347789476a8f194" + }, + "apps/extension-chromium/src/handshake/useHandshakes.ts": { + "mtime": 1786206352.1747067, + "ast_hash": "18c344cb155f6fbcc91425d3be46291e", + "semantic_hash": "18c344cb155f6fbcc91425d3be46291e" + }, + "apps/extension-chromium/src/handshake/usePendingP2PBeapIngestion.ts": { + "mtime": 1786206352.1747067, + "ast_hash": "3e76fec7a5e94884f762faa67bdd250e", + "semantic_hash": "3e76fec7a5e94884f762faa67bdd250e" + }, + "apps/extension-chromium/src/ingress/components/ImportEmailModal.tsx": { + "mtime": 1786206352.1747067, + "ast_hash": "1d6af9c73d1885b572500be86524b564", + "semantic_hash": "1d6af9c73d1885b572500be86524b564" + }, + "apps/extension-chromium/src/ingress/components/ImportFileModal.tsx": { + "mtime": 1786206352.1747067, + "ast_hash": "0f1c8c0b6a56fd79a775d436a06749cf", + "semantic_hash": "0f1c8c0b6a56fd79a775d436a06749cf" + }, + "apps/extension-chromium/src/ingress/components/ImportMessengerModal.tsx": { + "mtime": 1786206352.1747067, + "ast_hash": "e19486e2100d073abd16017b683f44db", + "semantic_hash": "e19486e2100d073abd16017b683f44db" + }, + "apps/extension-chromium/src/ingress/components/InboxImportBar.tsx": { + "mtime": 1786206352.1747067, + "ast_hash": "97e7dba54723f8cd9648da464c3235e2", + "semantic_hash": "97e7dba54723f8cd9648da464c3235e2" + }, + "apps/extension-chromium/src/ingress/components/index.ts": { + "mtime": 1786206352.1747067, + "ast_hash": "e0ede6c75c106a5e05c4b550d7107b76", + "semantic_hash": "e0ede6c75c106a5e05c4b550d7107b76" + }, + "apps/extension-chromium/src/ingress/electronDepackagedSync.ts": { + "mtime": 1786206352.1747067, + "ast_hash": "b04fa674a724ce742d8ab6b18cd57e5f", + "semantic_hash": "b04fa674a724ce742d8ab6b18cd57e5f" + }, + "apps/extension-chromium/src/ingress/importPipeline.ts": { + "mtime": 1786206352.1747067, + "ast_hash": "406a51086ff4d4e49d740926085eca3f", + "semantic_hash": "406a51086ff4d4e49d740926085eca3f" + }, + "apps/extension-chromium/src/ingress/index.ts": { + "mtime": 1786206352.1747067, + "ast_hash": "179c879ec53c52756257710740d99241", + "semantic_hash": "179c879ec53c52756257710740d99241" + }, + "apps/extension-chromium/src/ingress/types.ts": { + "mtime": 1786206352.1747067, + "ast_hash": "281fe6c68e7089a7b323c0d251fd33ae", + "semantic_hash": "281fe6c68e7089a7b323c0d251fd33ae" + }, + "apps/extension-chromium/src/ingress/useIngressStore.ts": { + "mtime": 1786206352.1747067, + "ast_hash": "b3ad662de30edbd2cc09a526681ad756", + "semantic_hash": "b3ad662de30edbd2cc09a526681ad756" + }, + "apps/extension-chromium/src/lib/__tests__/declaredModelAvailability.test.ts": { + "mtime": 1786206352.1747067, + "ast_hash": "b55ce9fbf751587f8718ff6f50708b98", + "semantic_hash": "b55ce9fbf751587f8718ff6f50708b98" + }, + "apps/extension-chromium/src/lib/__tests__/globalSessionContextLlmPrefix.test.ts": { + "mtime": 1786206352.1747067, + "ast_hash": "ada9662c335ed59a4d49a2500a1a6a96", + "semantic_hash": "ada9662c335ed59a4d49a2500a1a6a96" + }, + "apps/extension-chromium/src/lib/__tests__/globalSessionContextLlmPrefixRunMode.test.ts": { + "mtime": 1786206352.1747067, + "ast_hash": "f2317e4104b6ff36deb6fab6b3543d1d", + "semantic_hash": "f2317e4104b6ff36deb6fab6b3543d1d" + }, + "apps/extension-chromium/src/lib/__tests__/resolveOrchestratorSessionKey.test.ts": { + "mtime": 1786206352.1747067, + "ast_hash": "6363643116ba389133a1c6a810b03373", + "semantic_hash": "6363643116ba389133a1c6a810b03373" + }, + "apps/extension-chromium/src/lib/agentBoxInferencePreSend.ts": { + "mtime": 1786206352.1747067, + "ast_hash": "b309bae46842793aa0fb5c70f57c3350", + "semantic_hash": "b309bae46842793aa0fb5c70f57c3350" + }, + "apps/extension-chromium/src/lib/declaredModelAvailability.ts": { + "mtime": 1786206352.1747067, + "ast_hash": "e3d4c7a3345337d5d2e96d61f6036249", + "semantic_hash": "e3d4c7a3345337d5d2e96d61f6036249" + }, + "apps/extension-chromium/src/lib/globalSessionContextLlmPrefix.ts": { + "mtime": 1786206352.1747067, + "ast_hash": "ef4ef4af1cd2af10c71c5f16a7594c7b", + "semantic_hash": "ef4ef4af1cd2af10c71c5f16a7594c7b" + }, + "apps/extension-chromium/src/lib/globalSessionContextStorage.ts": { + "mtime": 1786206352.1747067, + "ast_hash": "f7659be63c82312fb182bf1408d25f6a", + "semantic_hash": "f7659be63c82312fb182bf1408d25f6a" + }, + "apps/extension-chromium/src/lib/hostAiSelectorCopy.ts": { + "mtime": 1786206352.1747067, + "ast_hash": "7b6972ab54aa4cb6becc5f74ba4705c4", + "semantic_hash": "7b6972ab54aa4cb6becc5f74ba4705c4" + }, + "apps/extension-chromium/src/lib/hostInferenceRouteIds.ts": { + "mtime": 1786206352.1747067, + "ast_hash": "15381c5292819e3724be18e297d69c04", + "semantic_hash": "15381c5292819e3724be18e297d69c04" + }, + "apps/extension-chromium/src/lib/inferenceSubmitRouting.ts": { + "mtime": 1786206352.1747067, + "ast_hash": "522aa6a0ed99ae65dba9cab107e1acf1", + "semantic_hash": "522aa6a0ed99ae65dba9cab107e1acf1" + }, + "apps/extension-chromium/src/lib/localModelIdentity.ts": { + "mtime": 1786206352.1747067, + "ast_hash": "2f623b8b4da964b484cb8570e0b8e1b5", + "semantic_hash": "2f623b8b4da964b484cb8570e0b8e1b5" + }, + "apps/extension-chromium/src/lib/resolveOrchestratorSessionKey.ts": { + "mtime": 1786206352.1747067, + "ast_hash": "a24b38eff9d75ea2c2a1b76788f4d346", + "semantic_hash": "a24b38eff9d75ea2c2a1b76788f4d346" + }, + "apps/extension-chromium/src/lib/wrChatExtensionAiContext.ts": { + "mtime": 1786206352.1747067, + "ast_hash": "317caa85acac7cab7bb85ece32bd488b", + "semantic_hash": "317caa85acac7cab7bb85ece32bd488b" + }, + "apps/extension-chromium/src/lib/wrChatExtensionModelPersistence.ts": { + "mtime": 1786206352.1747067, + "ast_hash": "e4f9a336cc06d59d720c11dd2dbc41cb", + "semantic_hash": "e4f9a336cc06d59d720c11dd2dbc41cb" + }, + "apps/extension-chromium/src/lib/wrChatExtensionPreSend.ts": { + "mtime": 1786206352.1747067, + "ast_hash": "e3e9d3a831b9a34b1c56a7376f3d480b", + "semantic_hash": "e3e9d3a831b9a34b1c56a7376f3d480b" + }, + "apps/extension-chromium/src/lib/wrChatHostInferenceShared.ts": { + "mtime": 1786206352.1747067, + "ast_hash": "704cf8b162e982ff4f2e57d06e6fcb4f", + "semantic_hash": "704cf8b162e982ff4f2e57d06e6fcb4f" + }, + "apps/extension-chromium/src/lib/wrChatModelsFromLlmStatus.ts": { + "mtime": 1786206352.1747067, + "ast_hash": "898ce1914490a8662895319901e308a8", + "semantic_hash": "898ce1914490a8662895319901e308a8" + }, + "apps/extension-chromium/src/lib/wrChatSelectionHygiene.ts": { + "mtime": 1786206352.1747067, + "ast_hash": "054194e4bf7cff56edfd9d2a54c5a25f", + "semantic_hash": "054194e4bf7cff56edfd9d2a54c5a25f" + }, + "apps/extension-chromium/src/lib/wrdeskOptimizationEvents.ts": { + "mtime": 1786206352.1787062, + "ast_hash": "9816523fbb46b5508128b7816f51f8f3", + "semantic_hash": "9816523fbb46b5508128b7816f51f8f3" + }, + "apps/extension-chromium/src/mailguard-content-script.ts": { + "mtime": 1786206352.1787062, + "ast_hash": "e5b07efa0c8a17cc5461c7b99f36a479", + "semantic_hash": "e5b07efa0c8a17cc5461c7b99f36a479" + }, + "apps/extension-chromium/src/nlp/NlpClassifier.ts": { + "mtime": 1786206352.1787062, + "ast_hash": "23dbc6da71d23f1971e32f141e785107", + "semantic_hash": "23dbc6da71d23f1971e32f141e785107" + }, + "apps/extension-chromium/src/nlp/__tests__/NlpClassifier.test.ts": { + "mtime": 1786206352.1787062, + "ast_hash": "dc8a68bb821bcbd18dd2102c1c594701", + "semantic_hash": "dc8a68bb821bcbd18dd2102c1c594701" + }, + "apps/extension-chromium/src/nlp/index.ts": { + "mtime": 1786206352.1787062, + "ast_hash": "81bd20c2e6865ce4a19151c4e43b01f9", + "semantic_hash": "81bd20c2e6865ce4a19151c4e43b01f9" + }, + "apps/extension-chromium/src/nlp/types.ts": { + "mtime": 1786206352.1787062, + "ast_hash": "e0d0c0b2ec16ecf05f5bb4ffc4c53cb1", + "semantic_hash": "e0d0c0b2ec16ecf05f5bb4ffc4c53cb1" + }, + "apps/extension-chromium/src/packages/components/PackageList.tsx": { + "mtime": 1786206352.1787062, + "ast_hash": "55515ed609d7a7a7ef12f8d832c9336c", + "semantic_hash": "55515ed609d7a7a7ef12f8d832c9336c" + }, + "apps/extension-chromium/src/packages/components/PackageListItem.tsx": { + "mtime": 1786206352.1787062, + "ast_hash": "f3b71428a74b9a3e095e0132eadd22b8", + "semantic_hash": "f3b71428a74b9a3e095e0132eadd22b8" + }, + "apps/extension-chromium/src/packages/components/index.ts": { + "mtime": 1786206352.1787062, + "ast_hash": "b6c794010e48059b3d8fcca46b66bba4", + "semantic_hash": "b6c794010e48059b3d8fcca46b66bba4" + }, + "apps/extension-chromium/src/packages/index.ts": { + "mtime": 1786206352.1787062, + "ast_hash": "08f6d6df7e440d39e8c54c941ff7c353", + "semantic_hash": "08f6d6df7e440d39e8c54c941ff7c353" + }, + "apps/extension-chromium/src/packages/registrationService.ts": { + "mtime": 1786206352.1787062, + "ast_hash": "ae52a765fb8932705e667d21797f58fd", + "semantic_hash": "ae52a765fb8932705e667d21797f58fd" + }, + "apps/extension-chromium/src/packages/types.ts": { + "mtime": 1786206352.1787062, + "ast_hash": "5cdb405def1df8c53477ca4de2c67388", + "semantic_hash": "5cdb405def1df8c53477ca4de2c67388" + }, + "apps/extension-chromium/src/packages/usePackageStore.ts": { + "mtime": 1786206352.1787062, + "ast_hash": "439fb6f566f1c9a1fc66ed029162228a", + "semantic_hash": "439fb6f566f1c9a1fc66ed029162228a" + }, + "apps/extension-chromium/src/policy/components/ConsentDialog.tsx": { + "mtime": 1786206352.1787062, + "ast_hash": "7a110e2be43bef67d6cf04340f6f57be", + "semantic_hash": "7a110e2be43bef67d6cf04340f6f57be" + }, + "apps/extension-chromium/src/policy/components/DomainEditor/ChannelsEditor.tsx": { + "mtime": 1786206352.1787062, + "ast_hash": "4f7a74ef6156eefb48ed63530d8c25db", + "semantic_hash": "4f7a74ef6156eefb48ed63530d8c25db" + }, + "apps/extension-chromium/src/policy/components/DomainEditor/DerivationsEditor.tsx": { + "mtime": 1786206352.1787062, + "ast_hash": "07525be3b7f677bfefa974afb4cb9258", + "semantic_hash": "07525be3b7f677bfefa974afb4cb9258" + }, + "apps/extension-chromium/src/policy/components/DomainEditor/EgressEditor.tsx": { + "mtime": 1786206352.1787062, + "ast_hash": "3613e6a3d7a5641a4bffe167e01b2731", + "semantic_hash": "3613e6a3d7a5641a4bffe167e01b2731" + }, + "apps/extension-chromium/src/policy/components/DomainEditor/IngressEditor.tsx": { + "mtime": 1786206352.1787062, + "ast_hash": "c336a5d4d8bb69bff11cb37fac69e97e", + "semantic_hash": "c336a5d4d8bb69bff11cb37fac69e97e" + }, + "apps/extension-chromium/src/policy/components/DomainEditor/PreVerificationEditor.tsx": { + "mtime": 1786206352.1787062, + "ast_hash": "6e4aa9d91d8598f8f31fa3fa509943e2", + "semantic_hash": "6e4aa9d91d8598f8f31fa3fa509943e2" + }, + "apps/extension-chromium/src/policy/components/DomainEditor/index.ts": { + "mtime": 1786206352.1787062, + "ast_hash": "57410279947d07f4713eaa6f954ea6f1", + "semantic_hash": "57410279947d07f4713eaa6f954ea6f1" + }, + "apps/extension-chromium/src/policy/components/EffectivePreview.tsx": { + "mtime": 1786206352.1787062, + "ast_hash": "38fe719ec5f64bec950db74c4c5817a3", + "semantic_hash": "38fe719ec5f64bec950db74c4c5817a3" + }, + "apps/extension-chromium/src/policy/components/LocalPolicyEditor.tsx": { + "mtime": 1786206352.1787062, + "ast_hash": "35a971c3d1817380483f009cbe0bea23", + "semantic_hash": "35a971c3d1817380483f009cbe0bea23" + }, + "apps/extension-chromium/src/policy/components/PackageBuilderPolicy.tsx": { + "mtime": 1786206352.1787062, + "ast_hash": "82cb850c81665eb6aee08b9244df95d3", + "semantic_hash": "82cb850c81665eb6aee08b9244df95d3" + }, + "apps/extension-chromium/src/policy/components/PolicyDiffView.tsx": { + "mtime": 1786206352.1787062, + "ast_hash": "00ec11ba177c605f31bc7c5554d7fd0d", + "semantic_hash": "00ec11ba177c605f31bc7c5554d7fd0d" + }, + "apps/extension-chromium/src/policy/components/PolicyLightbox.tsx": { + "mtime": 1786206352.1787062, + "ast_hash": "822b52b9fcb27ad2331d0b0312f8175e", + "semantic_hash": "822b52b9fcb27ad2331d0b0312f8175e" + }, + "apps/extension-chromium/src/policy/components/RiskLabel.tsx": { + "mtime": 1786206352.1787062, + "ast_hash": "d1a8e9237f9736b278fe26d10f797a64", + "semantic_hash": "d1a8e9237f9736b278fe26d10f797a64" + }, + "apps/extension-chromium/src/policy/components/index.ts": { + "mtime": 1786206352.1787062, + "ast_hash": "9a25dd8484e82785fc4326b9c964e985", + "semantic_hash": "9a25dd8484e82785fc4326b9c964e985" + }, + "apps/extension-chromium/src/policy/components/policy-lightbox-init.tsx": { + "mtime": 1786206352.1787062, + "ast_hash": "f6c15165c135bdbc4d59215f25168bb7", + "semantic_hash": "f6c15165c135bdbc4d59215f25168bb7" + }, + "apps/extension-chromium/src/policy/engine/__tests__/evaluator.test.ts": { + "mtime": 1786206352.1787062, + "ast_hash": "f2f35021d172bce20d624b0365284548", + "semantic_hash": "f2f35021d172bce20d624b0365284548" + }, + "apps/extension-chromium/src/policy/engine/__tests__/intersection.test.ts": { + "mtime": 1786206352.1787062, + "ast_hash": "31d02daeb6bbf4914429462e04d5894f", + "semantic_hash": "31d02daeb6bbf4914429462e04d5894f" + }, + "apps/extension-chromium/src/policy/engine/decisions.ts": { + "mtime": 1786206352.1787062, + "ast_hash": "9fe34c54e789381c42e825a863602f6d", + "semantic_hash": "9fe34c54e789381c42e825a863602f6d" + }, + "apps/extension-chromium/src/policy/engine/evaluator.ts": { + "mtime": 1786206352.1787062, + "ast_hash": "ed57235b0374e86b4aad5e017b09acd8", + "semantic_hash": "ed57235b0374e86b4aad5e017b09acd8" + }, + "apps/extension-chromium/src/policy/engine/index.ts": { + "mtime": 1786206352.1787062, + "ast_hash": "d269a61d0ed5c64bb5285cb1e338c8dd", + "semantic_hash": "d269a61d0ed5c64bb5285cb1e338c8dd" + }, + "apps/extension-chromium/src/policy/engine/intersection.ts": { + "mtime": 1786206352.1787062, + "ast_hash": "cc79a2e0e7f47373cd1804db7dbba944", + "semantic_hash": "cc79a2e0e7f47373cd1804db7dbba944" + }, + "apps/extension-chromium/src/policy/index.ts": { + "mtime": 1786206352.1787062, + "ast_hash": "e125fd8d23f2099b6da2723f7ae1e243", + "semantic_hash": "e125fd8d23f2099b6da2723f7ae1e243" + }, + "apps/extension-chromium/src/policy/schema/domains/automation-risk.ts": { + "mtime": 1786206352.1787062, + "ast_hash": "eb2dd1f18abd48f45874a5dba54f473b", + "semantic_hash": "eb2dd1f18abd48f45874a5dba54f473b" + }, + "apps/extension-chromium/src/policy/schema/domains/channels.ts": { + "mtime": 1786206352.1787062, + "ast_hash": "aa2bbe6fe37c84ad9b1032409e08dd9a", + "semantic_hash": "aa2bbe6fe37c84ad9b1032409e08dd9a" + }, + "apps/extension-chromium/src/policy/schema/domains/derivations.ts": { + "mtime": 1786206352.1787062, + "ast_hash": "2af1eeb03875d6e54b14a1027a5714a8", + "semantic_hash": "2af1eeb03875d6e54b14a1027a5714a8" + }, + "apps/extension-chromium/src/policy/schema/domains/egress.ts": { + "mtime": 1786206352.1787062, + "ast_hash": "a601c2af1e3b99829eaf4de8fc02cf5b", + "semantic_hash": "a601c2af1e3b99829eaf4de8fc02cf5b" + }, + "apps/extension-chromium/src/policy/schema/domains/execution.ts": { + "mtime": 1786206352.1787062, + "ast_hash": "eff775f78267d308128a00e356f7f3b5", + "semantic_hash": "eff775f78267d308128a00e356f7f3b5" + }, + "apps/extension-chromium/src/policy/schema/domains/handshake-overrides.ts": { + "mtime": 1786206352.1787062, + "ast_hash": "fd42fa157b16d2be2a67b97fd4d4e288", + "semantic_hash": "fd42fa157b16d2be2a67b97fd4d4e288" + }, + "apps/extension-chromium/src/policy/schema/domains/identity.ts": { + "mtime": 1786206352.1787062, + "ast_hash": "944b58dc6c77f0e51148a543e337c970", + "semantic_hash": "944b58dc6c77f0e51148a543e337c970" + }, + "apps/extension-chromium/src/policy/schema/domains/index.ts": { + "mtime": 1786206352.1827056, + "ast_hash": "61a10156826a436e9b9e4214a05dede4", + "semantic_hash": "61a10156826a436e9b9e4214a05dede4" + }, + "apps/extension-chromium/src/policy/schema/domains/ingress.ts": { + "mtime": 1786206352.1827056, + "ast_hash": "584cd74679438517ff23caa6542a7651", + "semantic_hash": "584cd74679438517ff23caa6542a7651" + }, + "apps/extension-chromium/src/policy/schema/domains/pre-verification.ts": { + "mtime": 1786206352.1827056, + "ast_hash": "eafba4bfc8658892c79095779b8ec483", + "semantic_hash": "eafba4bfc8658892c79095779b8ec483" + }, + "apps/extension-chromium/src/policy/schema/domains/session-restrictions.ts": { + "mtime": 1786206352.1827056, + "ast_hash": "9661456b04287d951d1ac4acf1e21cd3", + "semantic_hash": "9661456b04287d951d1ac4acf1e21cd3" + }, + "apps/extension-chromium/src/policy/schema/domains/vault-access.ts": { + "mtime": 1786206352.1827056, + "ast_hash": "3acc010611570397e6cc8a04394f1e9d", + "semantic_hash": "3acc010611570397e6cc8a04394f1e9d" + }, + "apps/extension-chromium/src/policy/schema/index.ts": { + "mtime": 1786206352.1827056, + "ast_hash": "78a86e8e0d3882198fb5136426cadcad", + "semantic_hash": "78a86e8e0d3882198fb5136426cadcad" + }, + "apps/extension-chromium/src/policy/schema/policy.schema.ts": { + "mtime": 1786206352.1827056, + "ast_hash": "0a1ea55e6718469b653e1852397ab201", + "semantic_hash": "0a1ea55e6718469b653e1852397ab201" + }, + "apps/extension-chromium/src/policy/schema/types.ts": { + "mtime": 1786206352.1827056, + "ast_hash": "5ada83bcf7476032a2b8deaea6c2b828", + "semantic_hash": "5ada83bcf7476032a2b8deaea6c2b828" + }, + "apps/extension-chromium/src/policy/store/index.ts": { + "mtime": 1786206352.1827056, + "ast_hash": "2fd1756788cdc2fbd84a374f9635f15d", + "semantic_hash": "2fd1756788cdc2fbd84a374f9635f15d" + }, + "apps/extension-chromium/src/policy/store/usePolicyStore.ts": { + "mtime": 1786206352.1827056, + "ast_hash": "5022e553ef78fbd3dfecdf11151e4f3e", + "semantic_hash": "5022e553ef78fbd3dfecdf11151e4f3e" + }, + "apps/extension-chromium/src/policy/templates/index.ts": { + "mtime": 1786206352.1827056, + "ast_hash": "5d0caf1858fa61228f84e50606210428", + "semantic_hash": "5d0caf1858fa61228f84e50606210428" + }, + "apps/extension-chromium/src/policy/templates/permissive.ts": { + "mtime": 1786206352.1827056, + "ast_hash": "450e7457fd346b4f4a38735f13bacb18", + "semantic_hash": "450e7457fd346b4f4a38735f13bacb18" + }, + "apps/extension-chromium/src/policy/templates/restrictive.ts": { + "mtime": 1786206352.1827056, + "ast_hash": "b80678dcc53d1ee531f688926ad08b73", + "semantic_hash": "b80678dcc53d1ee531f688926ad08b73" + }, + "apps/extension-chromium/src/policy/templates/standard.ts": { + "mtime": 1786206352.1827056, + "ast_hash": "707f84c736d7361c2c0067580828375d", + "semantic_hash": "707f84c736d7361c2c0067580828375d" + }, + "apps/extension-chromium/src/popup-chat.tsx": { + "mtime": 1786206352.1827056, + "ast_hash": "24767a32bda28001d9f4f98ce99a7808", + "semantic_hash": "24767a32bda28001d9f4f98ce99a7808" + }, + "apps/extension-chromium/src/reconstruction/components/RasterPreview.tsx": { + "mtime": 1786206352.1827056, + "ast_hash": "36022da2ede15d72d7acee1ae6cee3d2", + "semantic_hash": "36022da2ede15d72d7acee1ae6cee3d2" + }, + "apps/extension-chromium/src/reconstruction/components/ReconstructionStatus.tsx": { + "mtime": 1786206352.1827056, + "ast_hash": "d820f6a193626a55d6e0d7d72a922279", + "semantic_hash": "d820f6a193626a55d6e0d7d72a922279" + }, + "apps/extension-chromium/src/reconstruction/components/SafePreviewPanel.tsx": { + "mtime": 1786206352.1827056, + "ast_hash": "e08e74ab011469ddcd32320760b4de9b", + "semantic_hash": "e08e74ab011469ddcd32320760b4de9b" + }, + "apps/extension-chromium/src/reconstruction/components/SemanticPreview.tsx": { + "mtime": 1786206352.1827056, + "ast_hash": "ad1c81746dc8fef54b593200e13a4c96", + "semantic_hash": "ad1c81746dc8fef54b593200e13a4c96" + }, + "apps/extension-chromium/src/reconstruction/components/index.ts": { + "mtime": 1786206352.1827056, + "ast_hash": "44ef22143bd0ec0ae1e847f93837436c", + "semantic_hash": "44ef22143bd0ec0ae1e847f93837436c" + }, + "apps/extension-chromium/src/reconstruction/index.ts": { + "mtime": 1786206352.1827056, + "ast_hash": "eb862d557177610dc464edbecefa007a", + "semantic_hash": "eb862d557177610dc464edbecefa007a" + }, + "apps/extension-chromium/src/reconstruction/reconstructionService.ts": { + "mtime": 1786206352.1827056, + "ast_hash": "d8fbcb8520d9788808cfc18c328a7330", + "semantic_hash": "d8fbcb8520d9788808cfc18c328a7330" + }, + "apps/extension-chromium/src/reconstruction/types.ts": { + "mtime": 1786206352.1827056, + "ast_hash": "413881fe18d8fb8198ec1ab1ac27d4ee", + "semantic_hash": "413881fe18d8fb8198ec1ab1ac27d4ee" + }, + "apps/extension-chromium/src/reconstruction/useReconstruction.ts": { + "mtime": 1786206352.1827056, + "ast_hash": "f6ce41c3eda1d28fbc658579ca68cf7c", + "semantic_hash": "f6ce41c3eda1d28fbc658579ca68cf7c" + }, + "apps/extension-chromium/src/reconstruction/useReconstructionStore.ts": { + "mtime": 1786206352.1827056, + "ast_hash": "87038cf0a3e3941e1b020cc0b109b9aa", + "semantic_hash": "87038cf0a3e3941e1b020cc0b109b9aa" + }, + "apps/extension-chromium/src/rpc/electronRpc.ts": { + "mtime": 1786206352.1827056, + "ast_hash": "678e6e154baf9d92de7e31056168c8ff", + "semantic_hash": "678e6e154baf9d92de7e31056168c8ff" + }, + "apps/extension-chromium/src/services/InputCoordinator.ts": { + "mtime": 1786206352.1827056, + "ast_hash": "b1af81c3988a6f9f9676f14e5e2a2ec5", + "semantic_hash": "b1af81c3988a6f9f9676f14e5e2a2ec5" + }, + "apps/extension-chromium/src/services/TypeSystemService.ts": { + "mtime": 1786206352.1827056, + "ast_hash": "a55edae3e8578f3dbf6380e1da949b56", + "semantic_hash": "a55edae3e8578f3dbf6380e1da949b56" + }, + "apps/extension-chromium/src/services/__tests__/beapRunAutomationResult.test.ts": { + "mtime": 1786206352.1827056, + "ast_hash": "6f7c3bc90d7757461df29c23f7427f26", + "semantic_hash": "6f7c3bc90d7757461df29c23f7427f26" + }, + "apps/extension-chromium/src/services/__tests__/modeIntervalScheduler.test.ts": { + "mtime": 1786206352.1827056, + "ast_hash": "2e924f3bebf10698a10eb613b583769b", + "semantic_hash": "2e924f3bebf10698a10eb613b583769b" + }, + "apps/extension-chromium/src/services/__tests__/modeSessionRunInFlightExecute.test.ts": { + "mtime": 1786206352.1827056, + "ast_hash": "8a3e181fa256ef3dfb87b1bae62a156c", + "semantic_hash": "8a3e181fa256ef3dfb87b1bae62a156c" + }, + "apps/extension-chromium/src/services/__tests__/modeSessionRunResultReporting.test.ts": { + "mtime": 1786206352.1827056, + "ast_hash": "29c39b22b1365272d7fb0edf696447cd", + "semantic_hash": "29c39b22b1365272d7fb0edf696447cd" + }, + "apps/extension-chromium/src/services/__tests__/runModeAllocatedSessionAutomation.test.ts": { + "mtime": 1786206352.1827056, + "ast_hash": "d6e77f640153612ca04575bcb2211c54", + "semantic_hash": "d6e77f640153612ca04575bcb2211c54" + }, + "apps/extension-chromium/src/services/__tests__/sessionImportArtefactUnwrap.test.ts": { + "mtime": 1786206352.1827056, + "ast_hash": "b348775201a23382a01b6a8d6ada4879", + "semantic_hash": "b348775201a23382a01b6a8d6ada4879" + }, + "apps/extension-chromium/src/services/beapRunAutomationResult.ts": { + "mtime": 1786206352.1827056, + "ast_hash": "518ce75fdc1fdb11fbda11893975c42a", + "semantic_hash": "518ce75fdc1fdb11fbda11893975c42a" + }, + "apps/extension-chromium/src/services/customModesClient.ts": { + "mtime": 1786206352.1827056, + "ast_hash": "865be7f2ca562db1bf63575bd37ee395", + "semantic_hash": "865be7f2ca562db1bf63575bd37ee395" + }, + "apps/extension-chromium/src/services/customModesMigration.ts": { + "mtime": 1786206352.1827056, + "ast_hash": "997ddada7756f6b975365293be082f52", + "semantic_hash": "997ddada7756f6b975365293be082f52" + }, + "apps/extension-chromium/src/services/displayGridAgentSelection.ts": { + "mtime": 1786206352.1827056, + "ast_hash": "d81555f233ceda07a7226030d7ad8822", + "semantic_hash": "d81555f233ceda07a7226030d7ad8822" + }, + "apps/extension-chromium/src/services/domSnapshotBridge.ts": { + "mtime": 1786206352.1827056, + "ast_hash": "054d998329034f4067b97d654f7437d1", + "semantic_hash": "054d998329034f4067b97d654f7437d1" + }, + "apps/extension-chromium/src/services/domSnapshotCapture.ts": { + "mtime": 1786206352.1827056, + "ast_hash": "6fce390119d289130ea838e7b59c3160", + "semantic_hash": "6fce390119d289130ea838e7b59c3160" + }, + "apps/extension-chromium/src/services/domSnapshotMessageTypes.ts": { + "mtime": 1786206352.1827056, + "ast_hash": "4d00071afb734c176c56300eb2462c65", + "semantic_hash": "4d00071afb734c176c56300eb2462c65" + }, + "apps/extension-chromium/src/services/ensureLaunchSecretForElectronHttp.ts": { + "mtime": 1786206352.1827056, + "ast_hash": "7d0fbd6033d9af2f6327d8bf389e1b23", + "semantic_hash": "7d0fbd6033d9af2f6327d8bf389e1b23" + }, + "apps/extension-chromium/src/services/fetchOptimizerTrigger.ts": { + "mtime": 1786206352.1827056, + "ast_hash": "55880e1384f8751c42016f9a46cd2e5b", + "semantic_hash": "55880e1384f8751c42016f9a46cd2e5b" + }, + "apps/extension-chromium/src/services/fetchOrchestratorSession.ts": { + "mtime": 1786206352.1827056, + "ast_hash": "88b2ce85ffc2f028cadc8f443dc1e343", + "semantic_hash": "88b2ce85ffc2f028cadc8f443dc1e343" + }, + "apps/extension-chromium/src/services/fetchOrchestratorSessionsList.ts": { + "mtime": 1786206352.1827056, + "ast_hash": "211288da934414807c81dcfe27c82cfa", + "semantic_hash": "211288da934414807c81dcfe27c82cfa" + }, + "apps/extension-chromium/src/services/fetchTriggerProjects.ts": { + "mtime": 1786206352.1827056, + "ast_hash": "3cbf7724f6e7e48198a760a89e45a2d5", + "semantic_hash": "3cbf7724f6e7e48198a760a89e45a2d5" + }, + "apps/extension-chromium/src/services/localOllamaModels.ts": { + "mtime": 1786206352.1827056, + "ast_hash": "b585e0c07ead7d1351f8cb553ab8a8cc", + "semantic_hash": "b585e0c07ead7d1351f8cb553ab8a8cc" + }, + "apps/extension-chromium/src/services/modeIntervalRunner.ts": { + "mtime": 1786206352.1827056, + "ast_hash": "c724b93a5e1be132b2738300120e1888", + "semantic_hash": "c724b93a5e1be132b2738300120e1888" + }, + "apps/extension-chromium/src/services/modeIntervalScheduler.ts": { + "mtime": 1786206352.1827056, + "ast_hash": "bc3f7d746e882204f79e81c70fd02578", + "semantic_hash": "bc3f7d746e882204f79e81c70fd02578" + }, + "apps/extension-chromium/src/services/modeModelWarmOnTrigger.ts": { + "mtime": 1786206352.1827056, + "ast_hash": "6038b1ca8648a831264f8614cf7eabf7", + "semantic_hash": "6038b1ca8648a831264f8614cf7eabf7" + }, + "apps/extension-chromium/src/services/modeRunExecution.ts": { + "mtime": 1786206352.1867049, + "ast_hash": "4a80494a6258367f3a7417e541f74366", + "semantic_hash": "4a80494a6258367f3a7417e541f74366" + }, + "apps/extension-chromium/src/services/modeSessionRunInFlightExecute.ts": { + "mtime": 1786206352.1867049, + "ast_hash": "26bf3bd383c103e5fdfd723f70a3696e", + "semantic_hash": "26bf3bd383c103e5fdfd723f70a3696e" + }, + "apps/extension-chromium/src/services/modeSessionRunResultReporting.ts": { + "mtime": 1786206352.1867049, + "ast_hash": "8ef6a041c35f961be4b59c2b62022990", + "semantic_hash": "8ef6a041c35f961be4b59c2b62022990" + }, + "apps/extension-chromium/src/services/optimizationSidebarChatSync.ts": { + "mtime": 1786206352.1867049, + "ast_hash": "467a991e50037762ddf66618c16b602c", + "semantic_hash": "467a991e50037762ddf66618c16b602c" + }, + "apps/extension-chromium/src/services/presentOrchestratorDisplayGridSession.ts": { + "mtime": 1786206352.1867049, + "ast_hash": "1289336e03a6b36c2a0e383d0be35712", + "semantic_hash": "1289336e03a6b36c2a0e383d0be35712" + }, + "apps/extension-chromium/src/services/processFlow.ts": { + "mtime": 1786206352.1867049, + "ast_hash": "cc4dc857ec0bc1462372243e78b89f43", + "semantic_hash": "cc4dc857ec0bc1462372243e78b89f43" + }, + "apps/extension-chromium/src/services/runModeAllocatedSessionAutomation.ts": { + "mtime": 1786206352.1867049, + "ast_hash": "861c11a4a5bdc19e6017432eaa0a8b76", + "semantic_hash": "861c11a4a5bdc19e6017432eaa0a8b76" + }, + "apps/extension-chromium/src/services/sessionActivationForOptimization.ts": { + "mtime": 1786206352.1867049, + "ast_hash": "c43a34b5d9058e47bcc72ef7a2fda5f0", + "semantic_hash": "c43a34b5d9058e47bcc72ef7a2fda5f0" + }, + "apps/extension-chromium/src/services/sessionImportArtefactUnwrap.ts": { + "mtime": 1786206352.1867049, + "ast_hash": "97f1f4d417e0ce022edb9fbfca668fa2", + "semantic_hash": "97f1f4d417e0ce022edb9fbfca668fa2" + }, + "apps/extension-chromium/src/services/sessionImportCore.ts": { + "mtime": 1786206352.1867049, + "ast_hash": "430c9eb1879391a0ef1e43c79386f88d", + "semantic_hash": "430c9eb1879391a0ef1e43c79386f88d" + }, + "apps/extension-chromium/src/services/sessionOrigin.ts": { + "mtime": 1786206352.1867049, + "ast_hash": "82fdff51ce1dfa095affd3fb5fd306a5", + "semantic_hash": "82fdff51ce1dfa095affd3fb5fd306a5" + }, + "apps/extension-chromium/src/services/sessionSurfaceResolver.ts": { + "mtime": 1786206352.1867049, + "ast_hash": "d32ced558c7bdd4f5e26581f171c9bc8", + "semantic_hash": "d32ced558c7bdd4f5e26581f171c9bc8" + }, + "apps/extension-chromium/src/services/syncCustomModeDiffWatcher.ts": { + "mtime": 1786206352.1867049, + "ast_hash": "9bdb3f32f05d3aeca137cf758a05e2b4", + "semantic_hash": "9bdb3f32f05d3aeca137cf758a05e2b4" + }, + "apps/extension-chromium/src/shared/beap/ALIGNMENT_REPORT.ts": { + "mtime": 1786206352.1867049, + "ast_hash": "fe3fc0ddc997b1c70b8fbd2c9c50e988", + "semantic_hash": "fe3fc0ddc997b1c70b8fbd2c9c50e988" + }, + "apps/extension-chromium/src/shared/beap/constants.ts": { + "mtime": 1786206352.1867049, + "ast_hash": "47539361e4ecd68795dd74b0094214f1", + "semantic_hash": "47539361e4ecd68795dd74b0094214f1" + }, + "apps/extension-chromium/src/shared/beap/index.ts": { + "mtime": 1786206352.1867049, + "ast_hash": "6beb1d7a68c49c4792034067427c63be", + "semantic_hash": "6beb1d7a68c49c4792034067427c63be" + }, + "apps/extension-chromium/src/shared/beap/types.ts": { + "mtime": 1786206352.1867049, + "ast_hash": "b735bccc637098df97289d5514e11931", + "semantic_hash": "b735bccc637098df97289d5514e11931" + }, + "apps/extension-chromium/src/shared/beap/validators.ts": { + "mtime": 1786206352.1867049, + "ast_hash": "bd0f5faed8583f28a792d6ea4df0e31b", + "semantic_hash": "bd0f5faed8583f28a792d6ea4df0e31b" + }, + "apps/extension-chromium/src/shared/components/EmailConnectWizard.tsx": { + "mtime": 1786206352.1867049, + "ast_hash": "6eaf2c2aed17db4dca98b6932e531d2e", + "semantic_hash": "6eaf2c2aed17db4dca98b6932e531d2e" + }, + "apps/extension-chromium/src/shared/email/ImapConnectionNotice.tsx": { + "mtime": 1786206352.1867049, + "ast_hash": "ff60019f1ceb42f2c4af873a8a298967", + "semantic_hash": "ff60019f1ceb42f2c4af873a8a298967" + }, + "apps/extension-chromium/src/shared/email/connectEmail.launch.test.ts": { + "mtime": 1786206352.1867049, + "ast_hash": "9d9e53f2c8870035cee5d7f22d4c0083", + "semantic_hash": "9d9e53f2c8870035cee5d7f22d4c0083" + }, + "apps/extension-chromium/src/shared/email/connectEmailFlow.tsx": { + "mtime": 1786206352.1867049, + "ast_hash": "127a75f4c805158fb1fa09fae8d79853", + "semantic_hash": "127a75f4c805158fb1fa09fae8d79853" + }, + "apps/extension-chromium/src/shared/email/connectEmailTypes.ts": { + "mtime": 1786206352.1867049, + "ast_hash": "180bf01e3c7dde98695d0b57777e1db2", + "semantic_hash": "180bf01e3c7dde98695d0b57777e1db2" + }, + "apps/extension-chromium/src/shared/email/pickDefaultAccountRow.ts": { + "mtime": 1786206352.1867049, + "ast_hash": "f7fc25546d0c3c159fa9e3e55bb3981c", + "semantic_hash": "f7fc25546d0c3c159fa9e3e55bb3981c" + }, + "apps/extension-chromium/src/shared/ui/__tests__/customModeProfileFields.test.ts": { + "mtime": 1786206352.1867049, + "ast_hash": "c6e22a7d773c061e60cc22551cb3f712", + "semantic_hash": "c6e22a7d773c061e60cc22551cb3f712" + }, + "apps/extension-chromium/src/shared/ui/__tests__/customModeSystemInstructions.test.ts": { + "mtime": 1786206352.1867049, + "ast_hash": "7eb8d879c7757ad2038d867aecf0d084", + "semantic_hash": "7eb8d879c7757ad2038d867aecf0d084" + }, + "apps/extension-chromium/src/shared/ui/__tests__/isUserOwnedCustomMode.test.ts": { + "mtime": 1786206352.1867049, + "ast_hash": "9e510cad32d52633e1e4bfcf232bfe4a", + "semantic_hash": "9e510cad32d52633e1e4bfcf232bfe4a" + }, + "apps/extension-chromium/src/shared/ui/__tests__/scamWatchdogBuiltIn.test.ts": { + "mtime": 1786206352.1867049, + "ast_hash": "933a83895cc5e835f098c8db7288f456", + "semantic_hash": "933a83895cc5e835f098c8db7288f456" + }, + "apps/extension-chromium/src/shared/ui/__tests__/uiStateDefaults.test.ts": { + "mtime": 1786206352.1867049, + "ast_hash": "a2152829994c6b9f123f4d293a967b55", + "semantic_hash": "a2152829994c6b9f123f4d293a967b55" + }, + "apps/extension-chromium/src/shared/ui/__tests__/watchdogPromptsChatScanSplit.test.ts": { + "mtime": 1786206352.1867049, + "ast_hash": "727ea2909e48e705ddf50bab3b90d4aa", + "semantic_hash": "727ea2909e48e705ddf50bab3b90d4aa" + }, + "apps/extension-chromium/src/shared/ui/capabilities.ts": { + "mtime": 1786206352.1867049, + "ast_hash": "025bdd2aac44fb1922bf3f992c13f60c", + "semantic_hash": "025bdd2aac44fb1922bf3f992c13f60c" + }, + "apps/extension-chromium/src/shared/ui/customModeDisplay.ts": { + "mtime": 1786206352.1867049, + "ast_hash": "f92d1b1cefd32b06de4b6a9cb0cba8f6", + "semantic_hash": "f92d1b1cefd32b06de4b6a9cb0cba8f6" + }, + "apps/extension-chromium/src/shared/ui/customModeIntervalPresets.ts": { + "mtime": 1786206352.1867049, + "ast_hash": "2ee1e79c44bfdd2a29375cb0f797b849", + "semantic_hash": "2ee1e79c44bfdd2a29375cb0f797b849" + }, + "apps/extension-chromium/src/shared/ui/customModePersistence.ts": { + "mtime": 1786206352.1867049, + "ast_hash": "919c04645350abbcedc80c5c9565b1b9", + "semantic_hash": "919c04645350abbcedc80c5c9565b1b9" + }, + "apps/extension-chromium/src/shared/ui/customModeRuntime.ts": { + "mtime": 1786206352.1867049, + "ast_hash": "144a2d5074eb47118fff82b49a152505", + "semantic_hash": "144a2d5074eb47118fff82b49a152505" + }, + "apps/extension-chromium/src/shared/ui/customModeTypes.ts": { + "mtime": 1786206352.1867049, + "ast_hash": "05df8770af4e7084cdab2f1de183b66a", + "semantic_hash": "05df8770af4e7084cdab2f1de183b66a" + }, + "apps/extension-chromium/src/shared/ui/lightboxTheme.ts": { + "mtime": 1786206352.1867049, + "ast_hash": "8cd289682c35b42ad6995fc20fd4d726", + "semantic_hash": "8cd289682c35b42ad6995fc20fd4d726" + }, + "apps/extension-chromium/src/shared/ui/scamWatchdogBuiltIn.ts": { + "mtime": 1786206352.1867049, + "ast_hash": "5c4fab1b6bfa7f47cbb854f3306a6923", + "semantic_hash": "5c4fab1b6bfa7f47cbb854f3306a6923" + }, + "apps/extension-chromium/src/shared/ui/uiState.ts": { + "mtime": 1786206352.1867049, + "ast_hash": "9598c76288ad47ea09857080354978a7", + "semantic_hash": "9598c76288ad47ea09857080354978a7" + }, + "apps/extension-chromium/src/shared/ui/watchdogPrompts.ts": { + "mtime": 1786206352.1867049, + "ast_hash": "4a56ec087039e7fb2135a52cf91a6878", + "semantic_hash": "4a56ec087039e7fb2135a52cf91a6878" + }, + "apps/extension-chromium/src/sidepanel.tsx": { + "mtime": 1786206352.1907043, + "ast_hash": "51312340aec579c364711f58ebacbd2a", + "semantic_hash": "51312340aec579c364711f58ebacbd2a" + }, + "apps/extension-chromium/src/storage/OrchestratorSQLiteAdapter.ts": { + "mtime": 1786206352.1907043, + "ast_hash": "450b2650288661cda7de0f0ab5212ef9", + "semantic_hash": "450b2650288661cda7de0f0ab5212ef9" + }, + "apps/extension-chromium/src/storage/getActiveAdapter.ts": { + "mtime": 1786206352.1907043, + "ast_hash": "85da2d610b52ac4a9e19be45aa413328", + "semantic_hash": "85da2d610b52ac4a9e19be45aa413328" + }, + "apps/extension-chromium/src/storage/migration.ts": { + "mtime": 1786206352.1907043, + "ast_hash": "bc596685609d7d5f9d293de3f17d327d", + "semantic_hash": "bc596685609d7d5f9d293de3f17d327d" + }, + "apps/extension-chromium/src/storage/storageWrapper.ts": { + "mtime": 1786206352.1907043, + "ast_hash": "803b48ca56ad1eedf77ba6d5629195c2", + "semantic_hash": "803b48ca56ad1eedf77ba6d5629195c2" + }, + "apps/extension-chromium/src/stores/activeCustomModeRuntime.ts": { + "mtime": 1786206352.1907043, + "ast_hash": "68e424c287fcc41a3f6275d3d160b116", + "semantic_hash": "68e424c287fcc41a3f6275d3d160b116" + }, + "apps/extension-chromium/src/stores/chatFocusStore.ts": { + "mtime": 1786206352.1907043, + "ast_hash": "0b5f7cd6dffb7d3622d19be45f37f99f", + "semantic_hash": "0b5f7cd6dffb7d3622d19be45f37f99f" + }, + "apps/extension-chromium/src/stores/useCustomModesStore.ts": { + "mtime": 1786206352.1907043, + "ast_hash": "01768238faf50f43397e9222858a662c", + "semantic_hash": "01768238faf50f43397e9222858a662c" + }, + "apps/extension-chromium/src/stores/useUIStore.ts": { + "mtime": 1786206352.1907043, + "ast_hash": "cd4f0647b89bb9f7183b1d207fff85cd", + "semantic_hash": "cd4f0647b89bb9f7183b1d207fff85cd" + }, + "apps/extension-chromium/src/tests/agentBoxInferenceResolve.test.ts": { + "mtime": 1786206352.1907043, + "ast_hash": "07c8859bf05ea0f50b79397b48ab81df", + "semantic_hash": "07c8859bf05ea0f50b79397b48ab81df" + }, + "apps/extension-chromium/src/tests/modeRunExecution.test.ts": { + "mtime": 1786206352.1907043, + "ast_hash": "034fa4278e60bafd67c86b8fe1c8b8a3", + "semantic_hash": "034fa4278e60bafd67c86b8fe1c8b8a3" + }, + "apps/extension-chromium/src/tests/wrChatExtensionModelPersistence.test.ts": { + "mtime": 1786206352.1907043, + "ast_hash": "571b1dcf03e4373656cbfeeca317a457", + "semantic_hash": "571b1dcf03e4373656cbfeeca317a457" + }, + "apps/extension-chromium/src/tests/wrChatPipeline.test.ts": { + "mtime": 1786206352.1907043, + "ast_hash": "894304b7830576cf2d39dc38db492469", + "semantic_hash": "894304b7830576cf2d39dc38db492469" + }, + "apps/extension-chromium/src/tests/wrChatSelectionHygiene.test.ts": { + "mtime": 1786206352.1907043, + "ast_hash": "a0ee1274f75f7e35b025c7da0a5dad43", + "semantic_hash": "a0ee1274f75f7e35b025c7da0a5dad43" + }, + "apps/extension-chromium/src/types/AIChatCaptureConfig.ts": { + "mtime": 1786206352.1907043, + "ast_hash": "b2fe0e368f6208fcc57b7db29e9ebd9e", + "semantic_hash": "b2fe0e368f6208fcc57b7db29e9ebd9e" + }, + "apps/extension-chromium/src/types/AgentExportImport.ts": { + "mtime": 1786206352.1907043, + "ast_hash": "ac94e9d1af280f82411bb2be8c806bc9", + "semantic_hash": "ac94e9d1af280f82411bb2be8c806bc9" + }, + "apps/extension-chromium/src/types/AgentTypeSchema.ts": { + "mtime": 1786206352.1907043, + "ast_hash": "757144931b32a9d214fadd37abb200df", + "semantic_hash": "757144931b32a9d214fadd37abb200df" + }, + "apps/extension-chromium/src/types/AgentValidator.ts": { + "mtime": 1786206352.1907043, + "ast_hash": "92e6c604f40c6d77de8a3a5a2c7f5326", + "semantic_hash": "92e6c604f40c6d77de8a3a5a2c7f5326" + }, + "apps/extension-chromium/src/types/CanonicalAgentBoxConfig.ts": { + "mtime": 1786206352.1907043, + "ast_hash": "b06262232e5e364e2a7ae990914666a3", + "semantic_hash": "b06262232e5e364e2a7ae990914666a3" + }, + "apps/extension-chromium/src/types/CanonicalAgentConfig.ts": { + "mtime": 1786206352.1907043, + "ast_hash": "d65844026f1938a3eb18a0bcaa6f72bd", + "semantic_hash": "d65844026f1938a3eb18a0bcaa6f72bd" + }, + "apps/extension-chromium/src/types/CanonicalDisplayGridConfig.ts": { + "mtime": 1786206352.1907043, + "ast_hash": "20e7a1f1f01716f00a189c17cf407f1f", + "semantic_hash": "20e7a1f1f01716f00a189c17cf407f1f" + }, + "apps/extension-chromium/src/types/imageProviders.ts": { + "mtime": 1786206352.1907043, + "ast_hash": "184b7ba643ba821d325e0d0e351e1eca", + "semantic_hash": "184b7ba643ba821d325e0d0e351e1eca" + }, + "apps/extension-chromium/src/types/index.ts": { + "mtime": 1786206352.1907043, + "ast_hash": "5a9c9a94f29f6159d3fc7cfff94316fd", + "semantic_hash": "5a9c9a94f29f6159d3fc7cfff94316fd" + }, + "apps/extension-chromium/src/types/optimizationTypes.ts": { + "mtime": 1786206352.1907043, + "ast_hash": "79a81b5fbf92138cf8d829d27ee213ac", + "semantic_hash": "79a81b5fbf92138cf8d829d27ee213ac" + }, + "apps/extension-chromium/src/types/orchestration.ts": { + "mtime": 1786206352.1907043, + "ast_hash": "fc735a5cc724ddc30a602b07324a3d38", + "semantic_hash": "fc735a5cc724ddc30a602b07324a3d38" + }, + "apps/extension-chromium/src/types/triggerTypes.ts": { + "mtime": 1786206352.1907043, + "ast_hash": "9c4398f2b9c22e83d8bd70bd3483baa6", + "semantic_hash": "9c4398f2b9c22e83d8bd70bd3483baa6" + }, + "apps/extension-chromium/src/ui/components/AIAssistPopover.tsx": { + "mtime": 1786206352.1907043, + "ast_hash": "26790c3f778dc4839d7359d1c25a40a6", + "semantic_hash": "26790c3f778dc4839d7359d1c25a40a6" + }, + "apps/extension-chromium/src/ui/components/AddModeWizardHost.tsx": { + "mtime": 1786206352.1907043, + "ast_hash": "14a6fd2b506065aed624cfb3bab47166", + "semantic_hash": "14a6fd2b506065aed624cfb3bab47166" + }, + "apps/extension-chromium/src/ui/components/AdminPoliciesPlaceholder.tsx": { + "mtime": 1786206352.1907043, + "ast_hash": "57d6baeb50c1a3d9e1c72695d9033773", + "semantic_hash": "57d6baeb50c1a3d9e1c72695d9033773" + }, + "apps/extension-chromium/src/ui/components/ChatFocusBanner.tsx": { + "mtime": 1786206352.1907043, + "ast_hash": "ae557b794af7ba7bc357749cd37e4401", + "semantic_hash": "ae557b794af7ba7bc357749cd37e4401" + }, + "apps/extension-chromium/src/ui/components/CommandChatView.tsx": { + "mtime": 1786206352.1907043, + "ast_hash": "0283781dd31fe864cc64c4edfbc4e8c6", + "semantic_hash": "0283781dd31fe864cc64c4edfbc4e8c6" + }, + "apps/extension-chromium/src/ui/components/ComposerToolbelt.tsx": { + "mtime": 1786206352.1907043, + "ast_hash": "945aee15f90d64797c390416f4c402ff", + "semantic_hash": "945aee15f90d64797c390416f4c402ff" + }, + "apps/extension-chromium/src/ui/components/CustomModeWizard.tsx": { + "mtime": 1786206352.1907043, + "ast_hash": "4652de897fc023c95006b18794ddf3d7", + "semantic_hash": "4652de897fc023c95006b18794ddf3d7" + }, + "apps/extension-chromium/src/ui/components/DiffTriggerDialog.tsx": { + "mtime": 1786206352.1907043, + "ast_hash": "999e0a895578115a5702906f3e08d706", + "semantic_hash": "999e0a895578115a5702906f3e08d706" + }, + "apps/extension-chromium/src/ui/components/GroupChatPlaceholder.tsx": { + "mtime": 1786206352.1947038, + "ast_hash": "50a61928f828b4c547f848a6c02e642b", + "semantic_hash": "50a61928f828b4c547f848a6c02e642b" + }, + "apps/extension-chromium/src/ui/components/ModeHeaderBadge.tsx": { + "mtime": 1786206352.1947038, + "ast_hash": "8c59afa5e86f158cf81f4d6169706dc9", + "semantic_hash": "8c59afa5e86f158cf81f4d6169706dc9" + }, + "apps/extension-chromium/src/ui/components/ModeRowAffordances.tsx": { + "mtime": 1786206352.1947038, + "ast_hash": "c9963db3bfd37cfeeb0e08ccb1e5fada", + "semantic_hash": "c9963db3bfd37cfeeb0e08ccb1e5fada" + }, + "apps/extension-chromium/src/ui/components/ModeSelect.tsx": { + "mtime": 1786206352.1947038, + "ast_hash": "dcfa98a2c55af32dec9046c287f080be", + "semantic_hash": "dcfa98a2c55af32dec9046c287f080be" + }, + "apps/extension-chromium/src/ui/components/OptimizationInfobox.tsx": { + "mtime": 1786206352.1947038, + "ast_hash": "d2a5fcb6fc99c2d759083bc91cb5398e", + "semantic_hash": "d2a5fcb6fc99c2d759083bc91cb5398e" + }, + "apps/extension-chromium/src/ui/components/P2PChatPlaceholder.tsx": { + "mtime": 1786206352.1947038, + "ast_hash": "2eb64b7e4f740ddebdf092593980240a", + "semantic_hash": "2eb64b7e4f740ddebdf092593980240a" + }, + "apps/extension-chromium/src/ui/components/P2PStreamPlaceholder.tsx": { + "mtime": 1786206352.1947038, + "ast_hash": "3ef120259b895bc227e947a48f2cddc1", + "semantic_hash": "3ef120259b895bc227e947a48f2cddc1" + }, + "apps/extension-chromium/src/ui/components/PopupChatView.tsx": { + "mtime": 1786206352.1947038, + "ast_hash": "e0fdf79d120fdfbbee66f05594f5dbb8", + "semantic_hash": "e0fdf79d120fdfbbee66f05594f5dbb8" + }, + "apps/extension-chromium/src/ui/components/WatchdogIcon.tsx": { + "mtime": 1786206352.1947038, + "ast_hash": "c668deaab1507afb1dd2c36aa3c2c689", + "semantic_hash": "c668deaab1507afb1dd2c36aa3c2c689" + }, + "apps/extension-chromium/src/ui/components/WrChatCaptureButton.tsx": { + "mtime": 1786206352.1947038, + "ast_hash": "6104f2709051304c557a191e6b7e59cc", + "semantic_hash": "6104f2709051304c557a191e6b7e59cc" + }, + "apps/extension-chromium/src/ui/components/WrChatDiffButton.tsx": { + "mtime": 1786206352.1947038, + "ast_hash": "8a494d1743da76a050338c19d4c5cc35", + "semantic_hash": "8a494d1743da76a050338c19d4c5cc35" + }, + "apps/extension-chromium/src/ui/components/WrChatWatchdogButton.tsx": { + "mtime": 1786206352.1947038, + "ast_hash": "c670032f994d07acfeaf4f114c572f86", + "semantic_hash": "c670032f994d07acfeaf4f114c572f86" + }, + "apps/extension-chromium/src/ui/components/__tests__/modeRowActions.test.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "2b42dbda515f058ce2c815474b0b95b2", + "semantic_hash": "2b42dbda515f058ce2c815474b0b95b2" + }, + "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizard.tsx": { + "mtime": 1786206352.1947038, + "ast_hash": "ea3dfc033395236893657e3142e14053", + "semantic_hash": "ea3dfc033395236893657e3142e14053" + }, + "apps/extension-chromium/src/ui/components/addModeWizard/AddModeWizardStepBody.tsx": { + "mtime": 1786206352.1947038, + "ast_hash": "eab8011a8c7479723eaef1c33ac75acd", + "semantic_hash": "eab8011a8c7479723eaef1c33ac75acd" + }, + "apps/extension-chromium/src/ui/components/addModeWizard/addModeWizardTypes.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "5be3e631186a6862f5d05999f4230827", + "semantic_hash": "5be3e631186a6862f5d05999f4230827" + }, + "apps/extension-chromium/src/ui/components/addModeWizard/addModeWizardValidation.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "c9a9661eba1bc6244c33de5f079c71e7", + "semantic_hash": "c9a9661eba1bc6244c33de5f079c71e7" + }, + "apps/extension-chromium/src/ui/components/addModeWizard/customModeDraftDirty.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "1e3019c568ea5b3e85b38ee8e2be6e4e", + "semantic_hash": "1e3019c568ea5b3e85b38ee8e2be6e4e" + }, + "apps/extension-chromium/src/ui/components/addModeWizard/index.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "5688b76b800e54a3b95d1476a1eb6c27", + "semantic_hash": "5688b76b800e54a3b95d1476a1eb6c27" + }, + "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepBasics.tsx": { + "mtime": 1786206352.1947038, + "ast_hash": "dc6acbe11b6f25ff69c795321a64114f", + "semantic_hash": "dc6acbe11b6f25ff69c795321a64114f" + }, + "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepFocus.tsx": { + "mtime": 1786206352.1947038, + "ast_hash": "f7bfd0b2d7277094ee3a1d589428c30d", + "semantic_hash": "f7bfd0b2d7277094ee3a1d589428c30d" + }, + "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepModel.tsx": { + "mtime": 1786206352.1947038, + "ast_hash": "2dce8c33822e935717ead4120360a8aa", + "semantic_hash": "2dce8c33822e935717ead4120360a8aa" + }, + "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepProfileFields.tsx": { + "mtime": 1786206352.1947038, + "ast_hash": "632e568ff81a272438616346ac8d6ab9", + "semantic_hash": "632e568ff81a272438616346ac8d6ab9" + }, + "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepReview.tsx": { + "mtime": 1786206352.1947038, + "ast_hash": "42d915cd55a7d185904e9bd11c0b4167", + "semantic_hash": "42d915cd55a7d185904e9bd11c0b4167" + }, + "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepRun.tsx": { + "mtime": 1786206352.1947038, + "ast_hash": "568f9330f61a2a056b3d0d7fd04c391a", + "semantic_hash": "568f9330f61a2a056b3d0d7fd04c391a" + }, + "apps/extension-chromium/src/ui/components/addModeWizard/steps/StepSession.tsx": { + "mtime": 1786206352.1947038, + "ast_hash": "df30291262056969e36720ea01bd395f", + "semantic_hash": "df30291262056969e36720ea01bd395f" + }, + "apps/extension-chromium/src/ui/components/addModeWizard/steps/WizardFieldError.tsx": { + "mtime": 1786206352.1947038, + "ast_hash": "578d176ecf819bd6727e14ae7f833751", + "semantic_hash": "578d176ecf819bd6727e14ae7f833751" + }, + "apps/extension-chromium/src/ui/components/addModeWizard/wizardConstants.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "2a8d2dc9a0236e696c5305648148acbe", + "semantic_hash": "2a8d2dc9a0236e696c5305648148acbe" + }, + "apps/extension-chromium/src/ui/components/addModeWizard/wizardStyles.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "539faee0f15ae192e92fc22990131e6b", + "semantic_hash": "539faee0f15ae192e92fc22990131e6b" + }, + "apps/extension-chromium/src/ui/components/index.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "b388815607c66c79871cb13d1997be12", + "semantic_hash": "b388815607c66c79871cb13d1997be12" + }, + "apps/extension-chromium/src/ui/components/modeRowActions.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "e16d402e9919b4596c83a049df4acaf1", + "semantic_hash": "e16d402e9919b4596c83a049df4acaf1" + }, + "apps/extension-chromium/src/ui/components/optimization/AgentOptimizationResult.tsx": { + "mtime": 1786206352.1947038, + "ast_hash": "7876f68305b0614977faea79ea58b646", + "semantic_hash": "7876f68305b0614977faea79ea58b646" + }, + "apps/extension-chromium/src/ui/components/optimization/OptimizationRunHeader.tsx": { + "mtime": 1786206352.1947038, + "ast_hash": "101a20344444971d3c3ae11b67b8590d", + "semantic_hash": "101a20344444971d3c3ae11b67b8590d" + }, + "apps/extension-chromium/src/ui/components/wrChatCaptureDispatch.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "4fe8b2e9bb6bc3ebf4c449fef42eb9ad", + "semantic_hash": "4fe8b2e9bb6bc3ebf4c449fef42eb9ad" + }, + "apps/extension-chromium/src/ui/components/wrChatSurface.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "8c654ace9c600b594968596493422e0c", + "semantic_hash": "8c654ace9c600b594968596493422e0c" + }, + "apps/extension-chromium/src/ui/components/wrMultiTrigger/TriggerButtonShell.tsx": { + "mtime": 1786206352.1947038, + "ast_hash": "3770416f264dff0c5242cb0c06edfc7b", + "semantic_hash": "3770416f264dff0c5242cb0c06edfc7b" + }, + "apps/extension-chromium/src/ui/components/wrMultiTrigger/WrMultiTriggerBar.tsx": { + "mtime": 1786206352.1947038, + "ast_hash": "d68e3771e2672cd2548c1cadfdde523b", + "semantic_hash": "d68e3771e2672cd2548c1cadfdde523b" + }, + "apps/extension-chromium/src/ui/components/wrMultiTrigger/__tests__/dropdownSections.test.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "9fe455148c3f7a9568d27422f6af9235", + "semantic_hash": "9fe455148c3f7a9568d27422f6af9235" + }, + "apps/extension-chromium/src/ui/components/wrMultiTrigger/automationUiKind.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "f670431a6b83d3b900b44c75ad08f12a", + "semantic_hash": "f670431a6b83d3b900b44c75ad08f12a" + }, + "apps/extension-chromium/src/ui/components/wrMultiTrigger/dropdownSections.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "94d78f3bd967865f059a51009bea23e0", + "semantic_hash": "94d78f3bd967865f059a51009bea23e0" + }, + "apps/extension-chromium/src/ui/components/wrMultiTrigger/index.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "69f121b9b61344e768fcfeb14374c6bd", + "semantic_hash": "69f121b9b61344e768fcfeb14374c6bd" + }, + "apps/extension-chromium/src/ui/docked/DockedCommandChat.tsx": { + "mtime": 1786206352.1947038, + "ast_hash": "d215688e6037ab9a8069af3c36c23128", + "semantic_hash": "d215688e6037ab9a8069af3c36c23128" + }, + "apps/extension-chromium/src/ui/docked/index.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "5d4c8b238d87ec601ced749ebe194fd4", + "semantic_hash": "5d4c8b238d87ec601ced749ebe194fd4" + }, + "apps/extension-chromium/src/utils/__tests__/chatFocusLlmPrefixScamWatchdog.test.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "b3a626997451aac03703b6ebae276d76", + "semantic_hash": "b3a626997451aac03703b6ebae276d76" + }, + "apps/extension-chromium/src/utils/__tests__/customModeLlmPrefixWrChat.test.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "9ca9a9d2e7e8cf5859595dd2eb8b21c8", + "semantic_hash": "9ca9a9d2e7e8cf5859595dd2eb8b21c8" + }, + "apps/extension-chromium/src/utils/chatFocusLlmPrefix.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "126585faf894328e9b74d6b628f6fc81", + "semantic_hash": "126585faf894328e9b74d6b628f6fc81" + }, + "apps/extension-chromium/src/utils/contextBlockHash.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "3581380754b0a2b2422e948cc38e4437", + "semantic_hash": "3581380754b0a2b2422e948cc38e4437" + }, + "apps/extension-chromium/src/utils/customModeLlmPrefix.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "68caa5eb27feec327129116717603ff7", + "semantic_hash": "68caa5eb27feec327129116717603ff7" + }, + "apps/extension-chromium/src/utils/electronPickDirectory.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "1ffd41ed3eed1b2234da8e5a5302df1b", + "semantic_hash": "1ffd41ed3eed1b2234da8e5a5302df1b" + }, + "apps/extension-chromium/src/utils/errorMessages.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "b7163230e8efe85e7e0a669b02b2c0ed", + "semantic_hash": "b7163230e8efe85e7e0a669b02b2c0ed" + }, + "apps/extension-chromium/src/utils/formatWatchdogAlert.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "0c0396030220c793b7cca195ef5869fe", + "semantic_hash": "0c0396030220c793b7cca195ef5869fe" + }, + "apps/extension-chromium/src/utils/image-resolve.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "80113f977f1b19b5b0eea7cfcf8fdc24", + "semantic_hash": "80113f977f1b19b5b0eea7cfcf8fdc24" + }, + "apps/extension-chromium/src/utils/mergeTaggedTriggersFromHost.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "2905fed3197280f16120a501480ebbef", + "semantic_hash": "2905fed3197280f16120a501480ebbef" + }, + "apps/extension-chromium/src/utils/normaliseTriggerTag.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "0036bb9fd9d79530e0292f578acad4e4", + "semantic_hash": "0036bb9fd9d79530e0292f578acad4e4" + }, + "apps/extension-chromium/src/utils/parseWrExpertMarkdown.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "65d2577967a2caa07700d26c776dd4a0", + "semantic_hash": "65d2577967a2caa07700d26c776dd4a0" + }, + "apps/extension-chromium/src/utils/pickWatchFolderPath.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "4947551df7f0e643da7088621269890e", + "semantic_hash": "4947551df7f0e643da7088621269890e" + }, + "apps/extension-chromium/src/utils/prependChatFocusToLastUser.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "da44506b458a3e44768368eac12b09c6", + "semantic_hash": "da44506b458a3e44768368eac12b09c6" + }, + "apps/extension-chromium/src/utils/sessionDisplayLabel.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "f6b11c355adf71f28cc55555ee6b8847", + "semantic_hash": "f6b11c355adf71f28cc55555ee6b8847" + }, + "apps/extension-chromium/src/utils/watchdogDomExtract.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "a82d07b29931a7584519b2e16347bb99", + "semantic_hash": "a82d07b29931a7584519b2e16347bb99" + }, + "apps/extension-chromium/src/vault/UnlockView.tsx": { + "mtime": 1786206352.1947038, + "ast_hash": "eb7de5b597da9f1882efe546400cceb3", + "semantic_hash": "eb7de5b597da9f1882efe546400cceb3" + }, + "apps/extension-chromium/src/vault/VaultUI.tsx": { + "mtime": 1786206352.198703, + "ast_hash": "de5f40463bf28d84d823e6596bb0b4ee", + "semantic_hash": "de5f40463bf28d84d823e6596bb0b4ee" + }, + "apps/extension-chromium/src/vault/__tests__/browser-safe-imports.test.ts": { + "mtime": 1786206352.198703, + "ast_hash": "b2044bbb8a3e7d0d5ec778f29b9ec4b6", + "semantic_hash": "b2044bbb8a3e7d0d5ec778f29b9ec4b6" + }, + "apps/extension-chromium/src/vault/api.ts": { + "mtime": 1786206352.198703, + "ast_hash": "01906a3906826a754240c4ce720eda9d", + "semantic_hash": "01906a3906826a754240c4ce720eda9d" + }, + "apps/extension-chromium/src/vault/autofill/__tests__/acceptance-criteria.ts": { + "mtime": 1786206352.198703, + "ast_hash": "604123264f42e0a368e5dbf5917f19c0", + "semantic_hash": "604123264f42e0a368e5dbf5917f19c0" + }, + "apps/extension-chromium/src/vault/autofill/__tests__/audit-retention-export.test.ts": { + "mtime": 1786206352.198703, + "ast_hash": "058549d61a10d12721abae5b05029e83", + "semantic_hash": "058549d61a10d12721abae5b05029e83" + }, + "apps/extension-chromium/src/vault/autofill/__tests__/background-sender-gate.test.ts": { + "mtime": 1786206352.198703, + "ast_hash": "ab2c5460027409f4718398e620a62eab", + "semantic_hash": "ab2c5460027409f4718398e620a62eab" + }, + "apps/extension-chromium/src/vault/autofill/__tests__/datavault-classifier.test.ts": { + "mtime": 1786206352.198703, + "ast_hash": "05ad3f5d537a9d387c771c728b479d47", + "semantic_hash": "05ad3f5d537a9d387c771c728b479d47" + }, + "apps/extension-chromium/src/vault/autofill/__tests__/datavault-improvements.test.ts": { + "mtime": 1786206352.198703, + "ast_hash": "60159035aef83546a1f2b1d54451e4eb", + "semantic_hash": "60159035aef83546a1f2b1d54451e4eb" + }, + "apps/extension-chromium/src/vault/autofill/__tests__/e2e-autofill.spec.ts": { + "mtime": 1786206352.198703, + "ast_hash": "de8dc0f9a798e4948e3c35f4e4bd9280", + "semantic_hash": "de8dc0f9a798e4948e3c35f4e4bd9280" + }, + "apps/extension-chromium/src/vault/autofill/__tests__/e2e-security-regression.spec.ts": { + "mtime": 1786206352.198703, + "ast_hash": "4d4c23af8c8bc83d513a80eeddc0916c", + "semantic_hash": "4d4c23af8c8bc83d513a80eeddc0916c" + }, + "apps/extension-chromium/src/vault/autofill/__tests__/e2e-webmcp-no-write.spec.ts": { + "mtime": 1786206352.198703, + "ast_hash": "402a41931ca469b4fef7a1ddb9e6d95f", + "semantic_hash": "402a41931ca469b4fef7a1ddb9e6d95f" + }, + "apps/extension-chromium/src/vault/autofill/__tests__/e2e-webmcp-preview.spec.ts": { + "mtime": 1786206352.198703, + "ast_hash": "1516137062962181cd6ddbda9be72a11", + "semantic_hash": "1516137062962181cd6ddbda9be72a11" + }, + "apps/extension-chromium/src/vault/autofill/__tests__/form-intent.test.ts": { + "mtime": 1786206352.198703, + "ast_hash": "80c1af62eba6275e66743f95bac67085", + "semantic_hash": "80c1af62eba6275e66743f95bac67085" + }, + "apps/extension-chromium/src/vault/autofill/__tests__/hardening.test.ts": { + "mtime": 1786206352.198703, + "ast_hash": "3e86e02d9b5be0d9d52de81fbdf0f32b", + "semantic_hash": "3e86e02d9b5be0d9d52de81fbdf0f32b" + }, + "apps/extension-chromium/src/vault/autofill/__tests__/log-redaction-proof.test.ts": { + "mtime": 1786206352.198703, + "ast_hash": "cf3c3eee6ce3f458f630013440acfe72", + "semantic_hash": "cf3c3eee6ce3f458f630013440acfe72" + }, + "apps/extension-chromium/src/vault/autofill/__tests__/meta-sanitization.test.ts": { + "mtime": 1786206352.198703, + "ast_hash": "5155a4963077ac6499f6d030b07cc252", + "semantic_hash": "5155a4963077ac6499f6d030b07cc252" + }, + "apps/extension-chromium/src/vault/autofill/__tests__/overlay-lifecycle.test.ts": { + "mtime": 1786206352.198703, + "ast_hash": "fb8eaef8c6a6e3ff8d36ae17e0a57916", + "semantic_hash": "fb8eaef8c6a6e3ff8d36ae17e0a57916" + }, + "apps/extension-chromium/src/vault/autofill/__tests__/qso-engine.test.ts": { + "mtime": 1786206352.198703, + "ast_hash": "2a4f3808f96fa444123a279a42633fcb", + "semantic_hash": "2a4f3808f96fa444123a279a42633fcb" + }, + "apps/extension-chromium/src/vault/autofill/__tests__/qso-isolation.test.ts": { + "mtime": 1786206352.198703, + "ast_hash": "8182ede5ba983103a2d43f3b9ca10696", + "semantic_hash": "8182ede5ba983103a2d43f3b9ca10696" + }, + "apps/extension-chromium/src/vault/autofill/__tests__/qso-remap.test.ts": { + "mtime": 1786206352.198703, + "ast_hash": "28f8eddeb4d3f38d826622efb87e1be3", + "semantic_hash": "28f8eddeb4d3f38d826622efb87e1be3" + }, + "apps/extension-chromium/src/vault/autofill/__tests__/qso-state-matrix.test.ts": { + "mtime": 1786206352.198703, + "ast_hash": "12079d9103341b5c11897948bd0c3ae8", + "semantic_hash": "12079d9103341b5c11897948bd0c3ae8" + }, + "apps/extension-chromium/src/vault/autofill/__tests__/scan-dos-caps.test.ts": { + "mtime": 1786206352.198703, + "ast_hash": "60bfeb9051424c00b737b82b6bcd4a16", + "semantic_hash": "60bfeb9051424c00b737b82b6bcd4a16" + }, + "apps/extension-chromium/src/vault/autofill/__tests__/security-regression.test.ts": { + "mtime": 1786206352.198703, + "ast_hash": "267c4addf6775e0eb50161caa142ba7f", + "semantic_hash": "267c4addf6775e0eb50161caa142ba7f" + }, + "apps/extension-chromium/src/vault/autofill/__tests__/submit-guard.test.ts": { + "mtime": 1786206352.198703, + "ast_hash": "faafb9b829fb40e57c044f2697038f32", + "semantic_hash": "faafb9b829fb40e57c044f2697038f32" + }, + "apps/extension-chromium/src/vault/autofill/__tests__/unit-test-index.ts": { + "mtime": 1786206352.198703, + "ast_hash": "8763ae8605bca4dece2c1546729cf1bb", + "semantic_hash": "8763ae8605bca4dece2c1546729cf1bb" + }, + "apps/extension-chromium/src/vault/autofill/__tests__/webmcp-isolation.test.ts": { + "mtime": 1786206352.198703, + "ast_hash": "05f2c9ca8a0113c5d06c443d0af5befa", + "semantic_hash": "05f2c9ca8a0113c5d06c443d0af5befa" + }, + "apps/extension-chromium/src/vault/autofill/__tests__/writes-kill-switch.test.ts": { + "mtime": 1786206352.198703, + "ast_hash": "38829e1846627f3dd1b227ed1328e8cd", + "semantic_hash": "38829e1846627f3dd1b227ed1328e8cd" + }, + "apps/extension-chromium/src/vault/autofill/autofillOrchestrator.ts": { + "mtime": 1786206352.198703, + "ast_hash": "3ed3b16f3754328edf5af7e2911841ee", + "semantic_hash": "3ed3b16f3754328edf5af7e2911841ee" + }, + "apps/extension-chromium/src/vault/autofill/committer.test.ts": { + "mtime": 1786206352.198703, + "ast_hash": "137864084a2ef8b43f366f0b22279a33", + "semantic_hash": "137864084a2ef8b43f366f0b22279a33" + }, + "apps/extension-chromium/src/vault/autofill/committer.ts": { + "mtime": 1786206352.198703, + "ast_hash": "145b43cc4f2a79dcfc9711426f7169d7", + "semantic_hash": "145b43cc4f2a79dcfc9711426f7169d7" + }, + "apps/extension-chromium/src/vault/autofill/credentialStore.ts": { + "mtime": 1786206352.198703, + "ast_hash": "d3a2ed761c0ed14609d6153aa973b8d6", + "semantic_hash": "d3a2ed761c0ed14609d6153aa973b8d6" + }, + "apps/extension-chromium/src/vault/autofill/dataVaultAdapter.ts": { + "mtime": 1786206352.198703, + "ast_hash": "0204d031aba564a6cccd3aff42b0b208", + "semantic_hash": "0204d031aba564a6cccd3aff42b0b208" + }, + "apps/extension-chromium/src/vault/autofill/dataVaultFillEngine.ts": { + "mtime": 1786206352.198703, + "ast_hash": "e05c40010161701e8b783c16593e555b", + "semantic_hash": "e05c40010161701e8b783c16593e555b" + }, + "apps/extension-chromium/src/vault/autofill/dataVaultIcons.ts": { + "mtime": 1786206352.198703, + "ast_hash": "4c5b519205afdddc68df173fa782c731", + "semantic_hash": "4c5b519205afdddc68df173fa782c731" + }, + "apps/extension-chromium/src/vault/autofill/dataVaultOrchestrator.ts": { + "mtime": 1786206352.198703, + "ast_hash": "71ee3668971cbabf6cf6c00e4d3c11c0", + "semantic_hash": "71ee3668971cbabf6cf6c00e4d3c11c0" + }, + "apps/extension-chromium/src/vault/autofill/dataVaultPopup.ts": { + "mtime": 1786206352.198703, + "ast_hash": "d3ecdce31a6d1d2b768008e65d0237e3", + "semantic_hash": "d3ecdce31a6d1d2b768008e65d0237e3" + }, + "apps/extension-chromium/src/vault/autofill/domFingerprint.ts": { + "mtime": 1786206352.2027025, + "ast_hash": "fad7e7fbb84cf21295a348237445325f", + "semantic_hash": "fad7e7fbb84cf21295a348237445325f" + }, + "apps/extension-chromium/src/vault/autofill/dvNlpBooster.ts": { + "mtime": 1786206352.2027025, + "ast_hash": "6fdf74ee6b6c185d07fd048573bb2958", + "semantic_hash": "6fdf74ee6b6c185d07fd048573bb2958" + }, + "apps/extension-chromium/src/vault/autofill/dvSiteLearning.ts": { + "mtime": 1786206352.2027025, + "ast_hash": "99e6ccbef6ce20d63f26dda8b9a14ee3", + "semantic_hash": "99e6ccbef6ce20d63f26dda8b9a14ee3" + }, + "apps/extension-chromium/src/vault/autofill/fieldIcons.ts": { + "mtime": 1786206352.2027025, + "ast_hash": "b4ec1e074fb00877d55067f26d9b5b83", + "semantic_hash": "b4ec1e074fb00877d55067f26d9b5b83" + }, + "apps/extension-chromium/src/vault/autofill/fieldScanner.test.ts": { + "mtime": 1786206352.1187153, + "ast_hash": "e93981ca6ad84e7d6d0ed15356c176a5", + "semantic_hash": "e93981ca6ad84e7d6d0ed15356c176a5" + }, + "apps/extension-chromium/src/vault/autofill/fieldScanner.ts": { + "mtime": 1786206352.1187153, + "ast_hash": "b279689438bcb83f460800f1cd19effd", + "semantic_hash": "b279689438bcb83f460800f1cd19effd" + }, + "apps/extension-chromium/src/vault/autofill/fillPreview.ts": { + "mtime": 1786206352.1187153, + "ast_hash": "885fc81a1f6e9c14c21c4351424d3172", + "semantic_hash": "885fc81a1f6e9c14c21c4351424d3172" + }, + "apps/extension-chromium/src/vault/autofill/haGuard.ts": { + "mtime": 1786206352.1187153, + "ast_hash": "6b87d0a107877ac57f5d1242d9db1c1a", + "semantic_hash": "6b87d0a107877ac57f5d1242d9db1c1a" + }, + "apps/extension-chromium/src/vault/autofill/hardening.ts": { + "mtime": 1786206352.1187153, + "ast_hash": "3a6597cebfd802b878aa541cc2430a2e", + "semantic_hash": "3a6597cebfd802b878aa541cc2430a2e" + }, + "apps/extension-chromium/src/vault/autofill/index.ts": { + "mtime": 1786206352.1187153, + "ast_hash": "f3f8f59f60312e8f7e70197dc15b30ec", + "semantic_hash": "f3f8f59f60312e8f7e70197dc15b30ec" + }, + "apps/extension-chromium/src/vault/autofill/inlinePopover.ts": { + "mtime": 1786206352.1187153, + "ast_hash": "76e340e97add60dab2195b4057afce27", + "semantic_hash": "76e340e97add60dab2195b4057afce27" + }, + "apps/extension-chromium/src/vault/autofill/microcopy.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "64637baf00565cf0cbd0552127080e72", + "semantic_hash": "64637baf00565cf0cbd0552127080e72" + }, + "apps/extension-chromium/src/vault/autofill/moduleManifest.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "ccc118eb41c24d758e6d7513b2861798", + "semantic_hash": "ccc118eb41c24d758e6d7513b2861798" + }, + "apps/extension-chromium/src/vault/autofill/mutationGuard.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "bdfc6e181970d8bf81a9f6d694c7119f", + "semantic_hash": "bdfc6e181970d8bf81a9f6d694c7119f" + }, + "apps/extension-chromium/src/vault/autofill/overlayManager.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "6a841fc20bc0379d068007873161a2d0", + "semantic_hash": "6a841fc20bc0379d068007873161a2d0" + }, + "apps/extension-chromium/src/vault/autofill/overlayStyles.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "9a94c4a2394cf9941ab645ea355c9b43", + "semantic_hash": "9a94c4a2394cf9941ab645ea355c9b43" + }, + "apps/extension-chromium/src/vault/autofill/qso/mappingStore.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "956325dead9598fb5d9f17c33e27032f", + "semantic_hash": "956325dead9598fb5d9f17c33e27032f" + }, + "apps/extension-chromium/src/vault/autofill/qso/mappingWizard.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "9a8066665bf00b11a0d40a57f0b47b95", + "semantic_hash": "9a8066665bf00b11a0d40a57f0b47b95" + }, + "apps/extension-chromium/src/vault/autofill/qso/qsoEngine.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "576ab5be08a91e3f0629ce38d796ada8", + "semantic_hash": "576ab5be08a91e3f0629ce38d796ada8" + }, + "apps/extension-chromium/src/vault/autofill/qso/qsoIcon.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "7f943547f690144b1aa9edb8229a0ac4", + "semantic_hash": "7f943547f690144b1aa9edb8229a0ac4" + }, + "apps/extension-chromium/src/vault/autofill/qso/qsoPicker.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "24f91678c754f995c186ccd054307669", + "semantic_hash": "24f91678c754f995c186ccd054307669" + }, + "apps/extension-chromium/src/vault/autofill/qso/remapIcon.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "6c0572a4c0c469743919a1368ace2dfc", + "semantic_hash": "6c0572a4c0c469743919a1368ace2dfc" + }, + "apps/extension-chromium/src/vault/autofill/qso/remapManager.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "23686e0afe9eeca659e69a44d7fd29ef", + "semantic_hash": "23686e0afe9eeca659e69a44d7fd29ef" + }, + "apps/extension-chromium/src/vault/autofill/qso/selectorStrategy.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "ebb2c39b7c2062f4b4ccf06f3690d4fd", + "semantic_hash": "ebb2c39b7c2062f4b4ccf06f3690d4fd" + }, + "apps/extension-chromium/src/vault/autofill/qsoState.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "61daea68eee139b9a2e0e72d4891f741", + "semantic_hash": "61daea68eee139b9a2e0e72d4891f741" + }, + "apps/extension-chromium/src/vault/autofill/quickSelect.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "ad9e9bc6729909d5a308c8f71612b39b", + "semantic_hash": "ad9e9bc6729909d5a308c8f71612b39b" + }, + "apps/extension-chromium/src/vault/autofill/saveBar.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "b1ffb64a44a02e0056c15163fe1dbe83", + "semantic_hash": "b1ffb64a44a02e0056c15163fe1dbe83" + }, + "apps/extension-chromium/src/vault/autofill/securityPosture.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "40a2af00b1a702ceb3312bb5f3f2648e", + "semantic_hash": "40a2af00b1a702ceb3312bb5f3f2648e" + }, + "apps/extension-chromium/src/vault/autofill/submitGuard.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "5e1a8345c9ff6bab38b0e89ced4bc2a1", + "semantic_hash": "5e1a8345c9ff6bab38b0e89ced4bc2a1" + }, + "apps/extension-chromium/src/vault/autofill/submitWatcher.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "588e4eabbd3c0d13cfc73d6ccdd4ef77", + "semantic_hash": "588e4eabbd3c0d13cfc73d6ccdd4ef77" + }, + "apps/extension-chromium/src/vault/autofill/tierConfig.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "de9e552c8134c09e23ccc3d892665568", + "semantic_hash": "de9e552c8134c09e23ccc3d892665568" + }, + "apps/extension-chromium/src/vault/autofill/toggleSync.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "325338410d7963950da1d4652bbdd120", + "semantic_hash": "325338410d7963950da1d4652bbdd120" + }, + "apps/extension-chromium/src/vault/autofill/vaultIndex.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "10bf88b649b57b497c46dd27d96a4963", + "semantic_hash": "10bf88b649b57b497c46dd27d96a4963" + }, + "apps/extension-chromium/src/vault/autofill/webMcpAdapter.test.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "08bf7b85ae0f3d7fe31d3c43caf72384", + "semantic_hash": "08bf7b85ae0f3d7fe31d3c43caf72384" + }, + "apps/extension-chromium/src/vault/autofill/webMcpAdapter.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "3b69948fe76365ba3a9485649d5d828f", + "semantic_hash": "3b69948fe76365ba3a9485649d5d828f" + }, + "apps/extension-chromium/src/vault/autofill/webMcpConstants.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "3ac3aa2cf7397d5a0c06c87c61ceffc9", + "semantic_hash": "3ac3aa2cf7397d5a0c06c87c61ceffc9" + }, + "apps/extension-chromium/src/vault/autofill/writeBoundary.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "f7627880b93433534634dc2b9dff489d", + "semantic_hash": "f7627880b93433534634dc2b9dff489d" + }, + "apps/extension-chromium/src/vault/autofill/writesKillSwitch.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "6d394d487636fcabb42426d093e0769c", + "semantic_hash": "6d394d487636fcabb42426d093e0769c" + }, + "apps/extension-chromium/src/vault/capabilities.ts": { + "mtime": 1786206352.1227148, + "ast_hash": "6541701a62b3514499a46d1955a70e44", + "semantic_hash": "6541701a62b3514499a46d1955a70e44" + }, + "apps/extension-chromium/src/vault/hsContext/HsContextDocumentReader.tsx": { + "mtime": 1786206352.1227148, + "ast_hash": "49eb412d2762956a743e4d55484aa754", + "semantic_hash": "49eb412d2762956a743e4d55484aa754" + }, + "apps/extension-chromium/src/vault/hsContext/HsContextDocumentUpload.tsx": { + "mtime": 1786206352.1227148, + "ast_hash": "04b9558a5754815d92d898163ca3288a", + "semantic_hash": "04b9558a5754815d92d898163ca3288a" + }, + "apps/extension-chromium/src/vault/hsContext/HsContextProfileEditor.tsx": { + "mtime": 1786206352.1227148, + "ast_hash": "14e069567471da03282e2c13e9f20bc5", + "semantic_hash": "14e069567471da03282e2c13e9f20bc5" + }, + "apps/extension-chromium/src/vault/hsContext/HsContextProfileList.tsx": { + "mtime": 1786206352.1227148, + "ast_hash": "58c8f97527c514f1f4e070d2dd5f73d1", + "semantic_hash": "58c8f97527c514f1f4e070d2dd5f73d1" + }, + "apps/extension-chromium/src/vault/hsContext/__tests__/hsContextDraftLogic.test.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "0e84b600ea22d699e150128fcf008fc1", + "semantic_hash": "0e84b600ea22d699e150128fcf008fc1" + }, + "apps/extension-chromium/src/vault/hsContext/hsContextDraftLogic.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "9df26b437dd4606706932b156ee46779", + "semantic_hash": "9df26b437dd4606706932b156ee46779" + }, + "apps/extension-chromium/src/vault/hsContextProfilesRpc.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "ac8d3d94d7ba156cdf191db662a285e3", + "semantic_hash": "ac8d3d94d7ba156cdf191db662a285e3" + }, + "apps/extension-chromium/src/vault/types.ts": { + "mtime": 1786206352.1267142, + "ast_hash": "6a1d915ffb23c3f2dc47ca64ff7bebaa", + "semantic_hash": "6a1d915ffb23c3f2dc47ca64ff7bebaa" + }, + "apps/extension-chromium/src/vault/vault-ui-typescript.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "e8624bae6a8f18dd7cba993ef8a7db57", + "semantic_hash": "e8624bae6a8f18dd7cba993ef8a7db57" + }, + "apps/extension-chromium/src/vite-env.d.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "27b1d1815bdcc0b341bd49a986c7861e", + "semantic_hash": "27b1d1815bdcc0b341bd49a986c7861e" + }, + "apps/extension-chromium/src/wrguard/components/EmailProvidersSection.remoteSyncBadge.test.tsx": { + "mtime": 1786206352.1307135, + "ast_hash": "c72d8f2a16fe6702395a964cf2d069e7", + "semantic_hash": "c72d8f2a16fe6702395a964cf2d069e7" + }, + "apps/extension-chromium/src/wrguard/components/EmailProvidersSection.tsx": { + "mtime": 1786206352.1307135, + "ast_hash": "6e21deb717904dcb4e8f014d15445f3e", + "semantic_hash": "6e21deb717904dcb4e8f014d15445f3e" + }, + "apps/extension-chromium/src/wrguard/components/IngestionTopologyExplainer.tsx": { + "mtime": 1786206352.1307135, + "ast_hash": "d8a03aebb4a3b3cf90adcdd2322660fd", + "semantic_hash": "d8a03aebb4a3b3cf90adcdd2322660fd" + }, + "apps/extension-chromium/src/wrguard/components/PoliciesOverviewSection.tsx": { + "mtime": 1786206352.1307135, + "ast_hash": "69318b4e4058783854875560f736c6f5", + "semantic_hash": "69318b4e4058783854875560f736c6f5" + }, + "apps/extension-chromium/src/wrguard/components/ProtectedSitesList.tsx": { + "mtime": 1786206352.1307135, + "ast_hash": "37a602ea690101877e91e52d92354c80", + "semantic_hash": "37a602ea690101877e91e52d92354c80" + }, + "apps/extension-chromium/src/wrguard/components/ProtectedSitesSection.tsx": { + "mtime": 1786206352.1307135, + "ast_hash": "499aa5185f2b3b6e06ce105518ee281f", + "semantic_hash": "499aa5185f2b3b6e06ce105518ee281f" + }, + "apps/extension-chromium/src/wrguard/components/RuntimeConfigLightbox.tsx": { + "mtime": 1786206352.1307135, + "ast_hash": "37f8cd4b32c683294f19c5d7a3092dea", + "semantic_hash": "37f8cd4b32c683294f19c5d7a3092dea" + }, + "apps/extension-chromium/src/wrguard/components/RuntimeControlsSection.tsx": { + "mtime": 1786206352.1307135, + "ast_hash": "fcd8b53c9e5708c816cd8d4cd85810f5", + "semantic_hash": "fcd8b53c9e5708c816cd8d4cd85810f5" + }, + "apps/extension-chromium/src/wrguard/components/WRGuardWorkspace.tsx": { + "mtime": 1786206352.1307135, + "ast_hash": "f28c62a9ff99412fb482559449552e61", + "semantic_hash": "f28c62a9ff99412fb482559449552e61" + }, + "apps/extension-chromium/src/wrguard/components/index.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "a947d8cb8b6d482f6becc25932001cb6", + "semantic_hash": "a947d8cb8b6d482f6becc25932001cb6" + }, + "apps/extension-chromium/src/wrguard/index.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "ee9ebaa49e5d360eb599c8bdfd4e72d8", + "semantic_hash": "ee9ebaa49e5d360eb599c8bdfd4e72d8" + }, + "apps/extension-chromium/src/wrguard/overlayProtection.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "33f82fc957f5572d943b71f9e389dd77", + "semantic_hash": "33f82fc957f5572d943b71f9e389dd77" + }, + "apps/extension-chromium/src/wrguard/types.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "88a9fb33561df249c77b2f9ba30a7a27", + "semantic_hash": "88a9fb33561df249c77b2f9ba30a7a27" + }, + "apps/extension-chromium/src/wrguard/useWRGuardStore.ts": { + "mtime": 1786206352.1307135, + "ast_hash": "ad75bce06d35e21f7f8852c6bcca25fd", + "semantic_hash": "ad75bce06d35e21f7f8852c6bcca25fd" + }, + "apps/extension-chromium/tsconfig.json": { + "mtime": 1786206352.134713, + "ast_hash": "2fb35898a24765bdbae73ad2e40bda47", + "semantic_hash": "2fb35898a24765bdbae73ad2e40bda47" + }, + "apps/extension-chromium/vite.config.ts": { + "mtime": 1786206352.134713, + "ast_hash": "40b9ce710d80257380d16a57df51c3a4", + "semantic_hash": "40b9ce710d80257380d16a57df51c3a4" + }, + "apps/extension-chromium/vitest.config.ts": { + "mtime": 1786206352.134713, + "ast_hash": "16d1a6a397b7d647163c9b1db709194c", + "semantic_hash": "16d1a6a397b7d647163c9b1db709194c" + }, + "debug-session-data.js": { + "mtime": 1786206352.134713, + "ast_hash": "01440bdb32ae837851bf7547b3e3e003", + "semantic_hash": "01440bdb32ae837851bf7547b3e3e003" + }, + "eslint.config.mjs": { + "mtime": 1786206352.1907043, + "ast_hash": "d22b60db90b4fc470f0b1fb57c8b93a8", + "semantic_hash": "d22b60db90b4fc470f0b1fb57c8b93a8" + }, + "fix-tabs-and-text.mjs": { + "mtime": 1786206352.1907043, + "ast_hash": "1fbd5396c2056195cbf0edd826343241", + "semantic_hash": "1fbd5396c2056195cbf0edd826343241" + }, + "install-pgadmin.ps1": { + "mtime": 1786206352.1907043, + "ast_hash": "12931e3c1ff15e43dcdf7b85455c5d84", + "semantic_hash": "12931e3c1ff15e43dcdf7b85455c5d84" + }, + "package.json": { + "mtime": 1786206352.1947038, + "ast_hash": "2e98352c89e6910d83afb885433aa809", + "semantic_hash": "2e98352c89e6910d83afb885433aa809" + }, + "packages/beap-pod/__tests__/beapStructuralValidator.test.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "bfc5861f8c14c9b3aceafbded086ca72", + "semantic_hash": "bfc5861f8c14c9b3aceafbded086ca72" + }, + "packages/beap-pod/package.json": { + "mtime": 1786206352.1947038, + "ast_hash": "55ef9638e3d47b972cfae867871bb0e4", + "semantic_hash": "55ef9638e3d47b972cfae867871bb0e4" + }, + "packages/beap-pod/src/beapStructuralValidator.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "69aea36ba89e0a9dfe079fd1eb5a8fbd", + "semantic_hash": "69aea36ba89e0a9dfe079fd1eb5a8fbd" + }, + "packages/beap-pod/src/index.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "48efad67c36282c3901ee673987af9eb", + "semantic_hash": "48efad67c36282c3901ee673987af9eb" + }, + "packages/beap-pod/src/podServer.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "3e386870d59ccef50f2dfe6b8b5a1945", + "semantic_hash": "3e386870d59ccef50f2dfe6b8b5a1945" + }, + "packages/beap-pod/tsconfig.json": { + "mtime": 1786206352.1947038, + "ast_hash": "5adb7ee8a46f1765cfda88f5dabccf41", + "semantic_hash": "5adb7ee8a46f1765cfda88f5dabccf41" + }, + "packages/beap-pod/vitest.config.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "e8875919d4a382f53bbd82ec54cb115d", + "semantic_hash": "e8875919d4a382f53bbd82ec54cb115d" + }, + "packages/coordination-service/__tests__/coordination.test.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "7f1e248eac39944b6fb8d9b95d164faf", + "semantic_hash": "7f1e248eac39944b6fb8d9b95d164faf" + }, + "packages/coordination-service/__tests__/p2pSignalSchema.test.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "830086e6264eff77be301788cfb1aaa7", + "semantic_hash": "830086e6264eff77be301788cfb1aaa7" + }, + "packages/coordination-service/__tests__/p2pSignalSchemaElectronAlignment.test.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "abc79d3733b1c2326ecce067d969d690", + "semantic_hash": "abc79d3733b1c2326ecce067d969d690" + }, + "packages/coordination-service/__tests__/pairing-code.test.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "744f44ebb51bf003468c318190973029", + "semantic_hash": "744f44ebb51bf003468c318190973029" + }, + "packages/coordination-service/__tests__/sandboxEgressGuard.test.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "085a1622ef9a1346c9263c454f3780bd", + "semantic_hash": "085a1622ef9a1346c9263c454f3780bd" + }, + "packages/coordination-service/__tests__/startup.test.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "069d92bd05479ae2e7cae1b44ff31df8", + "semantic_hash": "069d92bd05479ae2e7cae1b44ff31df8" + }, + "packages/coordination-service/__tests__/tierResolution.test.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "169f19d610ba783e9ae020aa47f8ac28", + "semantic_hash": "169f19d610ba783e9ae020aa47f8ac28" + }, + "packages/coordination-service/package.json": { + "mtime": 1786206352.1947038, + "ast_hash": "75c98418aac80d4d819c5ff21ec8d008", + "semantic_hash": "75c98418aac80d4d819c5ff21ec8d008" + }, + "packages/coordination-service/src/auth.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "3ab54b6e6b1ba19c84ba7af7cb9c3a87", + "semantic_hash": "3ab54b6e6b1ba19c84ba7af7cb9c3a87" + }, + "packages/coordination-service/src/cleanup.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "fc80fca63b5718d29d40c4be40d3e6fb", + "semantic_hash": "fc80fca63b5718d29d40c4be40d3e6fb" + }, + "packages/coordination-service/src/config.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "47a456583d151299e550718ea178c152", + "semantic_hash": "47a456583d151299e550718ea178c152" + }, + "packages/coordination-service/src/entitlements.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "a3ffbccc72a52fefdb3c0453cab79c97", + "semantic_hash": "a3ffbccc72a52fefdb3c0453cab79c97" + }, + "packages/coordination-service/src/handshakeRegistry.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "fb6c7d0d6ecd92b64dd4713f6dabff2e", + "semantic_hash": "fb6c7d0d6ecd92b64dd4713f6dabff2e" + }, + "packages/coordination-service/src/health.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "84b272a08dad6b5cf6fbaad291cabc45", + "semantic_hash": "84b272a08dad6b5cf6fbaad291cabc45" + }, + "packages/coordination-service/src/index.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "74501ec007de5d0cc6e17481d47a05b0", + "semantic_hash": "74501ec007de5d0cc6e17481d47a05b0" + }, + "packages/coordination-service/src/p2pSignal.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "2517cdcc3a86b7f88e7d71b68ec83500", + "semantic_hash": "2517cdcc3a86b7f88e7d71b68ec83500" + }, + "packages/coordination-service/src/pairingCodeRegistry.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "f2c7af8aa4759fc91a0203042e0c2d9e", + "semantic_hash": "f2c7af8aa4759fc91a0203042e0c2d9e" + }, + "packages/coordination-service/src/rateLimiter.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "969912f60e36f0543dd71235602f0759", + "semantic_hash": "969912f60e36f0543dd71235602f0759" + }, + "packages/coordination-service/src/server.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "c5bad5a755a3b2f27b4594b2935ddc67", + "semantic_hash": "c5bad5a755a3b2f27b4594b2935ddc67" + }, + "packages/coordination-service/src/store.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "289920c9a3d26e4800c39f0a6db25caf", + "semantic_hash": "289920c9a3d26e4800c39f0a6db25caf" + }, + "packages/coordination-service/src/tierResolution.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "f97c8d439779f0d9d81198d91c19319f", + "semantic_hash": "f97c8d439779f0d9d81198d91c19319f" + }, + "packages/coordination-service/src/wsManager.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "7c79656860fe05ab3c0cf2de144d60fe", + "semantic_hash": "7c79656860fe05ab3c0cf2de144d60fe" + }, + "packages/coordination-service/tsconfig.json": { + "mtime": 1786206352.1947038, + "ast_hash": "fe9d9693524e77ea29d089683ec37b05", + "semantic_hash": "fe9d9693524e77ea29d089683ec37b05" + }, + "packages/coordination-service/vitest.config.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "893fa0053f7ca6ccc4c434a903db2f26", + "semantic_hash": "893fa0053f7ca6ccc4c434a903db2f26" + }, + "packages/hello/package.json": { + "mtime": 1786206352.1947038, + "ast_hash": "146f52d20ec522197e9a1be4973ed0d3", + "semantic_hash": "146f52d20ec522197e9a1be4973ed0d3" + }, + "packages/hello/src/index.test.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "698d06553ccb9ddc30a03c4a8eaf08e2", + "semantic_hash": "698d06553ccb9ddc30a03c4a8eaf08e2" + }, + "packages/hello/tsconfig.json": { + "mtime": 1786206352.1947038, + "ast_hash": "10a573ed4cdd07131ef4745b6af89559", + "semantic_hash": "10a573ed4cdd07131ef4745b6af89559" + }, + "packages/ingestion-core/__tests__/ingestion-core.test.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "b0bcfc3a299cfb7b167d72da3b55f32f", + "semantic_hash": "b0bcfc3a299cfb7b167d72da3b55f32f" + }, + "packages/ingestion-core/__tests__/sandboxEgressClassification.test.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "0f9a1d1dacfb274f2e71d7917ab0cec3", + "semantic_hash": "0f9a1d1dacfb274f2e71d7917ab0cec3" + }, + "packages/ingestion-core/__tests__/sealedServiceRpcCapsuleValidation.test.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "84cfdc8bedcc32ac94d996058b3c5418", + "semantic_hash": "84cfdc8bedcc32ac94d996058b3c5418" + }, + "packages/ingestion-core/package.json": { + "mtime": 1786206352.1947038, + "ast_hash": "31c21cdbcef84d85bfb6459ac5b0da84", + "semantic_hash": "31c21cdbcef84d85bfb6459ac5b0da84" + }, + "packages/ingestion-core/src/beapDetection.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "796fd3091fa623b8931876cbd7d50125", + "semantic_hash": "796fd3091fa623b8931876cbd7d50125" + }, + "packages/ingestion-core/src/contentValidator.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "f074f169125858e4b267b9a7605d701d", + "semantic_hash": "f074f169125858e4b267b9a7605d701d" + }, + "packages/ingestion-core/src/distributionGate.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "e586aae54ba333cd20e218da278c4664", + "semantic_hash": "e586aae54ba333cd20e218da278c4664" + }, + "packages/ingestion-core/src/index.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "a3624e4d0343cd0cca660f2dd12bc828", + "semantic_hash": "a3624e4d0343cd0cca660f2dd12bc828" + }, + "packages/ingestion-core/src/ingestor.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "cdeaeeca8504e3620896ac41dcc69285", + "semantic_hash": "cdeaeeca8504e3620896ac41dcc69285" + }, + "packages/ingestion-core/src/pipeline.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "ee84056eb7872ecfc67de014b3d4cfcf", + "semantic_hash": "ee84056eb7872ecfc67de014b3d4cfcf" + }, + "packages/ingestion-core/src/plainTransform.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "363f11c4c66e35004be6451f30342574", + "semantic_hash": "363f11c4c66e35004be6451f30342574" + }, + "packages/ingestion-core/src/provenanceMetadata.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "c9d832b30ff894daab93260f0c4c2a1a", + "semantic_hash": "c9d832b30ff894daab93260f0c4c2a1a" + }, + "packages/ingestion-core/src/sandboxEgressClassification.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "51b30360a4d3e92c91df59083532d7c5", + "semantic_hash": "51b30360a4d3e92c91df59083532d7c5" + }, + "packages/ingestion-core/src/sealedServiceRpcConstants.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "10fbb9b9c3e260e2785a31e5341e0963", + "semantic_hash": "10fbb9b9c3e260e2785a31e5341e0963" + }, + "packages/ingestion-core/src/sealedValidation.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "5af82704086f5c215954d40b5ee969e9", + "semantic_hash": "5af82704086f5c215954d40b5ee969e9" + }, + "packages/ingestion-core/src/types.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "ab77ad3587eaf8f93ff78f8345c4989d", + "semantic_hash": "ab77ad3587eaf8f93ff78f8345c4989d" + }, + "packages/ingestion-core/src/validator.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "37ae687d6b565f342264a9977c44e8c5", + "semantic_hash": "37ae687d6b565f342264a9977c44e8c5" + }, + "packages/ingestion-core/tsconfig.json": { + "mtime": 1786206352.1947038, + "ast_hash": "5bf7dc80f52db42e6009d163c4e041a4", + "semantic_hash": "5bf7dc80f52db42e6009d163c4e041a4" + }, + "packages/ingestion-core/vitest.config.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "1e88099cc2ddbd982b84cbd7c21d75da", + "semantic_hash": "1e88099cc2ddbd982b84cbd7c21d75da" + }, + "packages/relay-server/__tests__/relay-server.test.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "69bff5c0816453f6ababa0e3cb05121b", + "semantic_hash": "69bff5c0816453f6ababa0e3cb05121b" + }, + "packages/relay-server/__tests__/sandboxEgressGuard.test.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "162df36a5fc9b7b254bfe8504d6f552a", + "semantic_hash": "162df36a5fc9b7b254bfe8504d6f552a" + }, + "packages/relay-server/package.json": { + "mtime": 1786206352.1947038, + "ast_hash": "b123933ee269a249511d8e258cfb12a3", + "semantic_hash": "b123933ee269a249511d8e258cfb12a3" + }, + "packages/relay-server/src/auth.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "62cbde2aaed3e4fdf4af8acbcfbd4d0a", + "semantic_hash": "62cbde2aaed3e4fdf4af8acbcfbd4d0a" + }, + "packages/relay-server/src/config.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "fb523d194d1654d19d08658e954466d7", + "semantic_hash": "fb523d194d1654d19d08658e954466d7" + }, + "packages/relay-server/src/health.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "25edde9d981c318f684e309b49e2bbd9", + "semantic_hash": "25edde9d981c318f684e309b49e2bbd9" + }, + "packages/relay-server/src/index.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "e2520c11c02cc7bf8d31c16f0e7f7929", + "semantic_hash": "e2520c11c02cc7bf8d31c16f0e7f7929" + }, + "packages/relay-server/src/rateLimiter.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "eca2e6c1358ad7560fca25d90ee3e6af", + "semantic_hash": "eca2e6c1358ad7560fca25d90ee3e6af" + }, + "packages/relay-server/src/server.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "551e9374766ca54bea0991307d2c247b", + "semantic_hash": "551e9374766ca54bea0991307d2c247b" + }, + "packages/relay-server/src/store.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "ef082df169bf6790d6eb58b661829967", + "semantic_hash": "ef082df169bf6790d6eb58b661829967" + }, + "packages/relay-server/tsconfig.json": { + "mtime": 1786206352.1947038, + "ast_hash": "13a101460fb244b7a4c5b7508f1776da", + "semantic_hash": "13a101460fb244b7a4c5b7508f1776da" + }, + "packages/relay-server/vitest.config.ts": { + "mtime": 1786206352.1947038, + "ast_hash": "bd25be7e25d164498c18e48281c78a73", + "semantic_hash": "bd25be7e25d164498c18e48281c78a73" + }, + "packages/shared-beap-ui/package.json": { + "mtime": 1786206352.198703, + "ast_hash": "464abeeaaca9df6bef0ae3a9c365749e", + "semantic_hash": "464abeeaaca9df6bef0ae3a9c365749e" + }, + "packages/shared-beap-ui/src/AttachmentPicker.tsx": { + "mtime": 1786206352.198703, + "ast_hash": "4f2d15a19b62bd897dc3215af553949e", + "semantic_hash": "4f2d15a19b62bd897dc3215af553949e" + }, + "packages/shared-beap-ui/src/BeapIdentityBadge.tsx": { + "mtime": 1786206352.198703, + "ast_hash": "08d32bb326735b89f57cee940fcdf235", + "semantic_hash": "08d32bb326735b89f57cee940fcdf235" + }, + "packages/shared-beap-ui/src/BeapMessageBody.tsx": { + "mtime": 1786206352.198703, + "ast_hash": "e5bf5497167be9e84f5f38ec5aa4be95", + "semantic_hash": "e5bf5497167be9e84f5f38ec5aa4be95" + }, + "packages/shared-beap-ui/src/CapsuleFields.tsx": { + "mtime": 1786206352.198703, + "ast_hash": "1b5c06a15a05038fd256ec802ed42e03", + "semantic_hash": "1b5c06a15a05038fd256ec802ed42e03" + }, + "packages/shared-beap-ui/src/SessionSelector.tsx": { + "mtime": 1786206352.198703, + "ast_hash": "5a0a8c7060e4118c57bb135e7c28f015", + "semantic_hash": "5a0a8c7060e4118c57bb135e7c28f015" + }, + "packages/shared-beap-ui/src/css.d.ts": { + "mtime": 1786206352.198703, + "ast_hash": "e8a285f18735bb060bd2ceaace6e1299", + "semantic_hash": "e8a285f18735bb060bd2ceaace6e1299" + }, + "packages/shared-beap-ui/src/index.ts": { + "mtime": 1786206352.198703, + "ast_hash": "7d0402f8655a8b0d9d24df7795b99a00", + "semantic_hash": "7d0402f8655a8b0d9d24df7795b99a00" + }, + "packages/shared-beap-ui/src/types.ts": { + "mtime": 1786206352.198703, + "ast_hash": "1b471d3a16678a0a65c5d012fb2452be", + "semantic_hash": "1b471d3a16678a0a65c5d012fb2452be" + }, + "packages/shared-beap-ui/tsconfig.json": { + "mtime": 1786206352.198703, + "ast_hash": "a8f702df471fd5d148805cf98ec6d961", + "semantic_hash": "a8f702df471fd5d148805cf98ec6d961" + }, + "packages/shared-extension/package.json": { + "mtime": 1786206352.198703, + "ast_hash": "62cbb4fe111e954961cffe1d74449e69", + "semantic_hash": "62cbb4fe111e954961cffe1d74449e69" + }, + "packages/shared-extension/src/index.ts": { + "mtime": 1786206352.198703, + "ast_hash": "4af3a46b29e14b4ad03f5c439429953b", + "semantic_hash": "4af3a46b29e14b4ad03f5c439429953b" + }, + "packages/shared-extension/src/storage/ChromeStorageAdapter.ts": { + "mtime": 1786206352.198703, + "ast_hash": "b44755fcaef7da02d571f81aa4b8b947", + "semantic_hash": "b44755fcaef7da02d571f81aa4b8b947" + }, + "packages/shared/package.json": { + "mtime": 1786206352.198703, + "ast_hash": "8cbf327ec4c691e2367bd4091dff6699", + "semantic_hash": "8cbf327ec4c691e2367bd4091dff6699" + }, + "packages/shared/src/handshake/activeHandshakeHealthIssue.ts": { + "mtime": 1786206352.198703, + "ast_hash": "53330b7ceb26076de5b773169d67f116", + "semantic_hash": "53330b7ceb26076de5b773169d67f116" + }, + "packages/shared/src/handshake/contextGovernance.ts": { + "mtime": 1786206352.198703, + "ast_hash": "0042874986d539a48fd8d05b86e1135c", + "semantic_hash": "0042874986d539a48fd8d05b86e1135c" + }, + "packages/shared/src/handshake/hsContextFieldValidation.ts": { + "mtime": 1786206352.198703, + "ast_hash": "b2d21c056c7bb8f01050a2eff8994cce", + "semantic_hash": "b2d21c056c7bb8f01050a2eff8994cce" + }, + "packages/shared/src/handshake/hsContextHardening.test.ts": { + "mtime": 1786206352.198703, + "ast_hash": "152c7809b59073327aa0bc24c713cdf8", + "semantic_hash": "152c7809b59073327aa0bc24c713cdf8" + }, + "packages/shared/src/handshake/index.ts": { + "mtime": 1786206352.198703, + "ast_hash": "0e5c28cd40b9c006449d7266b0b8819f", + "semantic_hash": "0e5c28cd40b9c006449d7266b0b8819f" + }, + "packages/shared/src/handshake/internalEndpointValidation.test.ts": { + "mtime": 1786206352.198703, + "ast_hash": "2d19e1d93fec1bdbe67581b26c0fa5fd", + "semantic_hash": "2d19e1d93fec1bdbe67581b26c0fa5fd" + }, + "packages/shared/src/handshake/internalEndpointValidation.ts": { + "mtime": 1786206352.198703, + "ast_hash": "19b7aca49040e71de1701cf03e7bf170", + "semantic_hash": "19b7aca49040e71de1701cf03e7bf170" + }, + "packages/shared/src/handshake/internalIdentityUi.test.ts": { + "mtime": 1786206352.198703, + "ast_hash": "73e381abb0ae953405768ef4e34f84b4", + "semantic_hash": "73e381abb0ae953405768ef4e34f84b4" + }, + "packages/shared/src/handshake/internalIdentityUi.ts": { + "mtime": 1786206352.198703, + "ast_hash": "a72ae035000462ae5395957e36f5a621", + "semantic_hash": "a72ae035000462ae5395957e36f5a621" + }, + "packages/shared/src/handshake/linkValidation.ts": { + "mtime": 1786206352.198703, + "ast_hash": "4118e17769021cc2472542cd7f9597cf", + "semantic_hash": "4118e17769021cc2472542cd7f9597cf" + }, + "packages/shared/src/handshake/policyUtils.test.ts": { + "mtime": 1786206352.198703, + "ast_hash": "8217e503a8c76893114b7a5940bfe3f9", + "semantic_hash": "8217e503a8c76893114b7a5940bfe3f9" + }, + "packages/shared/src/handshake/policyUtils.ts": { + "mtime": 1786206352.198703, + "ast_hash": "dfb3ce46c698461a46b7491d0088f514", + "semantic_hash": "dfb3ce46c698461a46b7491d0088f514" + }, + "packages/shared/src/handshake/receiverEmailValidation.test.ts": { + "mtime": 1786206352.198703, + "ast_hash": "14792902f3f3a51176cf4984eff6179f", + "semantic_hash": "14792902f3f3a51176cf4984eff6179f" + }, + "packages/shared/src/handshake/receiverEmailValidation.ts": { + "mtime": 1786206352.198703, + "ast_hash": "a14222e07939a29d0d8c8c880a188478", + "semantic_hash": "a14222e07939a29d0d8c8c880a188478" + }, + "packages/shared/src/handshake/types.ts": { + "mtime": 1786206352.198703, + "ast_hash": "d7bfec33df4657d7cecbc48d783e3df0", + "semantic_hash": "d7bfec33df4657d7cecbc48d783e3df0" + }, + "packages/shared/src/index.ts": { + "mtime": 1786206352.198703, + "ast_hash": "9753c7965e3e3f1c853259cee7490d60", + "semantic_hash": "9753c7965e3e3f1c853259cee7490d60" + }, + "packages/shared/src/ingestion/index.ts": { + "mtime": 1786206352.198703, + "ast_hash": "526e93a368096ce9c344f01b7aaefeb5", + "semantic_hash": "526e93a368096ce9c344f01b7aaefeb5" + }, + "packages/shared/src/ingestion/types.ts": { + "mtime": 1786206352.198703, + "ast_hash": "b92e5c56e7c942e6bd7bc06bad23290a", + "semantic_hash": "b92e5c56e7c942e6bd7bc06bad23290a" + }, + "packages/shared/src/security/sanitizeReturnTo.test.ts": { + "mtime": 1786206352.198703, + "ast_hash": "e033c501d1bc957542c59bb2134cec0d", + "semantic_hash": "e033c501d1bc957542c59bb2134cec0d" + }, + "packages/shared/src/security/sanitizeReturnTo.ts": { + "mtime": 1786206352.198703, + "ast_hash": "3e64c060b5a110f016fd69017ef942b1", + "semantic_hash": "3e64c060b5a110f016fd69017ef942b1" + }, + "packages/shared/src/storage/StorageAdapter.ts": { + "mtime": 1786206352.198703, + "ast_hash": "350922de3b96de0b5d83d8f1f74fc8de", + "semantic_hash": "350922de3b96de0b5d83d8f1f74fc8de" + }, + "packages/shared/src/vault/fieldTaxonomy.ts": { + "mtime": 1786206352.198703, + "ast_hash": "c2c1533a628609694ed6fa6b59bb3573", + "semantic_hash": "c2c1533a628609694ed6fa6b59bb3573" + }, + "packages/shared/src/vault/haMode.ts": { + "mtime": 1786206352.198703, + "ast_hash": "e03a34836aaba99af2b7c24e0c92505f", + "semantic_hash": "e03a34836aaba99af2b7c24e0c92505f" + }, + "packages/shared/src/vault/insertionPipeline.ts": { + "mtime": 1786206352.198703, + "ast_hash": "f66542ba1a005ca8f08a07f39cc9ac88", + "semantic_hash": "f66542ba1a005ca8f08a07f39cc9ac88" + }, + "packages/shared/src/vault/originPolicy.ts": { + "mtime": 1786206352.198703, + "ast_hash": "2e644ec4afd300b3dcf017cd68a97167", + "semantic_hash": "2e644ec4afd300b3dcf017cd68a97167" + }, + "packages/shared/src/vault/vaultCapabilities.test.ts": { + "mtime": 1786206352.198703, + "ast_hash": "e6183ebc93e3f9b12df6818858403b06", + "semantic_hash": "e6183ebc93e3f9b12df6818858403b06" + }, + "packages/shared/src/vault/vaultCapabilities.ts": { + "mtime": 1786206352.198703, + "ast_hash": "8cf4a4ac3b8ad4a9ea15473e3c6ff70d", + "semantic_hash": "8cf4a4ac3b8ad4a9ea15473e3c6ff70d" + }, + "packages/shared/src/wrChat/diffTrigger.ts": { + "mtime": 1786206352.198703, + "ast_hash": "794a8a9331906ba02a7d63ca423be0fb", + "semantic_hash": "794a8a9331906ba02a7d63ca423be0fb" + }, + "release-manifest.json": { + "mtime": 1786206352.2027025, + "ast_hash": "c141641219cd38b2e52a5da80939d13c", + "semantic_hash": "c141641219cd38b2e52a5da80939d13c" + }, + "scripts/check-inbox-validator-gate.sh": { + "mtime": 1786206352.2027025, + "ast_hash": "2918714bfc7ee9a814af9e01192f5ccc", + "semantic_hash": "2918714bfc7ee9a814af9e01192f5ccc" + }, + "scripts/check-self-call-loopback.cjs": { + "mtime": 1786206352.2027025, + "ast_hash": "77278573558edb05080f2571721dcd56", + "semantic_hash": "77278573558edb05080f2571721dcd56" + }, + "scripts/check-write-boundary.ps1": { + "mtime": 1786206352.2027025, + "ast_hash": "93995ad8af44caac828e1b44e2fae37f", + "semantic_hash": "93995ad8af44caac828e1b44e2fae37f" + }, + "scripts/check-write-boundary.sh": { + "mtime": 1786206352.2027025, + "ast_hash": "b32be2995a160ffb285bb7d0bab4c17b", + "semantic_hash": "b32be2995a160ffb285bb7d0bab4c17b" + }, + "scripts/check_braces.py": { + "mtime": 1786206352.2027025, + "ast_hash": "e46958d19971461ad672916fde43d842", + "semantic_hash": "e46958d19971461ad672916fde43d842" + }, + "scripts/run-native-db-tests.cjs": { + "mtime": 1786206352.2027025, + "ast_hash": "f2f70df3e272d528563d8b22e9ab15f0", + "semantic_hash": "f2f70df3e272d528563d8b22e9ab15f0" + }, + "scripts/session-build.cjs": { + "mtime": 1786206352.2027025, + "ast_hash": "19797d0141f39ce024642a38d814c63e", + "semantic_hash": "19797d0141f39ce024642a38d814c63e" + }, + "scripts/session-configure-remote.cjs": { + "mtime": 1786206352.2027025, + "ast_hash": "b5579374d3407734e5ad3e8003454854", + "semantic_hash": "b5579374d3407734e5ad3e8003454854" + }, + "scripts/session-start.cjs": { + "mtime": 1786206352.2027025, + "ast_hash": "03adf02d85a5f5ee738b37ebcd2fd202", + "semantic_hash": "03adf02d85a5f5ee738b37ebcd2fd202" + }, + "scripts/session-stop.cjs": { + "mtime": 1786206352.2027025, + "ast_hash": "70997e10a2c3c8d5f6a8c7a2be86610b", + "semantic_hash": "70997e10a2c3c8d5f6a8c7a2be86610b" + }, + "scripts/session/build.cjs": { + "mtime": 1786206352.2027025, + "ast_hash": "16cd587567bfadb126be58a5fb5ec42b", + "semantic_hash": "16cd587567bfadb126be58a5fb5ec42b" + }, + "scripts/session/configure-coordination-worker.cjs": { + "mtime": 1786206352.2027025, + "ast_hash": "5ec5683520f7396b9e6fdd2f147e8b03", + "semantic_hash": "5ec5683520f7396b9e6fdd2f147e8b03" + }, + "scripts/session/lib.cjs": { + "mtime": 1786206352.2027025, + "ast_hash": "012f9fadb69ad4fc8454f6b3d34efe40", + "semantic_hash": "012f9fadb69ad4fc8454f6b3d34efe40" + }, + "start-dev-full.ps1": { + "mtime": 1786206352.2027025, + "ast_hash": "9b4bc5130984dc38be4bfedeff5ae7c1", + "semantic_hash": "9b4bc5130984dc38be4bfedeff5ae7c1" + }, + "start-dev.ps1": { + "mtime": 1786206352.2027025, + "ast_hash": "31d4c038c53d88a54fb8c2373f570dc0", + "semantic_hash": "31d4c038c53d88a54fb8c2373f570dc0" + }, + "test/harness/sealed-storage.test.ts": { + "mtime": 1786206352.2027025, + "ast_hash": "c5a9a5c33000f721e70bdb8d2f28c50c", + "semantic_hash": "c5a9a5c33000f721e70bdb8d2f28c50c" + }, + "test/harness/sealed-storage.ts": { + "mtime": 1786206352.2027025, + "ast_hash": "342de2feffa6a236b5d4e1a18d5cc993", + "semantic_hash": "342de2feffa6a236b5d4e1a18d5cc993" + }, + "test/mocks/electron.ts": { + "mtime": 1786206352.2027025, + "ast_hash": "434af8fb1135768459424dbbbe27a277", + "semantic_hash": "434af8fb1135768459424dbbbe27a277" + }, + "test/setup.ts": { + "mtime": 1786206352.2027025, + "ast_hash": "77681eeb3c699656651b6f4b02fe9fe2", + "semantic_hash": "77681eeb3c699656651b6f4b02fe9fe2" + }, + "tsconfig.base.json": { + "mtime": 1786206352.2027025, + "ast_hash": "9c706c9ee4c583d915ed61e0ad41d5fb", + "semantic_hash": "9c706c9ee4c583d915ed61e0ad41d5fb" + }, + "verify-headless.ps1": { + "mtime": 1786206352.2027025, + "ast_hash": "b8beeb5f0dc9a12676c6080a3d61e07a", + "semantic_hash": "b8beeb5f0dc9a12676c6080a3d61e07a" + }, + "vitest-5a-output.json": { + "mtime": 1786206352.206702, + "ast_hash": "62d6c96a12db154c0e3ba80e17844a12", + "semantic_hash": "62d6c96a12db154c0e3ba80e17844a12" + }, + "vitest-audit-failures-flat.json": { + "mtime": 1786206352.206702, + "ast_hash": "0cc9abc244d51972c43f3ab9249860fa", + "semantic_hash": "0cc9abc244d51972c43f3ab9249860fa" + }, + "vitest-audit-failures1.json": { + "mtime": 1786206352.206702, + "ast_hash": "300069826ebbb35d2ab91ecfe05b19f5", + "semantic_hash": "300069826ebbb35d2ab91ecfe05b19f5" + }, + "vitest-audit-failures2.json": { + "mtime": 1786206352.206702, + "ast_hash": "c4ed89725116ff8570092de16b74685e", + "semantic_hash": "c4ed89725116ff8570092de16b74685e" + }, + "vitest-audit-run1.json": { + "mtime": 1786206352.2107012, + "ast_hash": "6d3e0b7e71a6b121e585e2e143526576", + "semantic_hash": "6d3e0b7e71a6b121e585e2e143526576" + }, + "vitest-audit-run2.json": { + "mtime": 1786206352.2147007, + "ast_hash": "8f17524507c1320c73b092723e0562fa", + "semantic_hash": "8f17524507c1320c73b092723e0562fa" + }, + "vitest-new81-failures.json": { + "mtime": 1786206352.2147007, + "ast_hash": "ff6b2bafc2f25b5c6b7c4c9dec86b41f", + "semantic_hash": "ff6b2bafc2f25b5c6b7c4c9dec86b41f" + }, + "vitest-triage-buckets.json": { + "mtime": 1786206352.2147007, + "ast_hash": "b6f05ea68215b25d392038a42054dfe4", + "semantic_hash": "b6f05ea68215b25d392038a42054dfe4" + }, + "vitest-triage-failures-flat.json": { + "mtime": 1786206352.2147007, + "ast_hash": "0fa6bb320f239699bad8214bc29e874f", + "semantic_hash": "0fa6bb320f239699bad8214bc29e874f" + }, + "vitest-triage-output.json": { + "mtime": 1786206352.2147007, + "ast_hash": "4040062d3bf2347aeb01342b91a8b5fe", + "semantic_hash": "4040062d3bf2347aeb01342b91a8b5fe" + }, + "vitest.config.ts": { + "mtime": 1786206352.2147007, + "ast_hash": "917805d9636aded83b80f9024d4825a4", + "semantic_hash": "917805d9636aded83b80f9024d4825a4" + }, + "wp-content/themes/blocksy-child/functions.php": { + "mtime": 1786206352.2147007, + "ast_hash": "de913f9cb33806ab15c8623eb7a7cf1c", + "semantic_hash": "de913f9cb33806ab15c8623eb7a7cf1c" + } +} \ No newline at end of file